diff --git a/.htaccess b/.htaccess
index 77f2036cea1dc20c657f006ed1d24b16e925b239..4c898d53e0e941900d5b09daa3a3049999a20e72 100644
--- a/.htaccess
+++ b/.htaccess
@@ -3,7 +3,7 @@ RewriteEngine on
 RewriteCond %{REQUEST_URI} !/(xhprof_html|ckeditor|exploit|\.well-known)
 RewriteCond %{REQUEST_FILENAME} !^.*/robots\.txt$ [NC]
 
-RewriteRule !(userfiles|public|tmp|temp|skins)/.*\.(js|ico|txt|gif|jpg|jpeg|png|css|xml|swf|mov|pdf|doc|docx|woff|eot|svg|ttf|xls|wsdl|mp3|m4v|ogg|ogv|epub|html|xhtml|asmx|zip|sql|bro|flv|mp4|webm|tgz)$ index.php [NC,NE]
+RewriteRule !(userfiles|public|tmp|temp|skins)/.*\.(js|ico|txt|gif|jpg|jpeg|png|css|xml|swf|mov|pdf|doc|docx|woff|eot|svg|ttf|xls|wsdl|mp3|m4v|ogg|ogv|epub|html|xhtml|asmx|zip|sql|bro|flv|mp4|webm|tgz|json)$ index.php [NC,NE]
 
 AddType application/x-javascript .js
 AddType text/css .css
diff --git a/VERSIONS_HOTLINE/61715 b/VERSIONS_HOTLINE/61715
new file mode 100644
index 0000000000000000000000000000000000000000..27188b172c3a743d9250c68512c3fac6c265b3cc
--- /dev/null
+++ b/VERSIONS_HOTLINE/61715
@@ -0,0 +1 @@
+ - ticket #61715 : Résultat de recherche : Mise à jour de la visualisation en frise chronologique pour supporter les vignettes en https
\ No newline at end of file
diff --git a/doc/extern_libs.org b/doc/extern_libs.org
index 4f69b803d5a08fc17a00bb6b6a72550a81b6ccca..2cd16595d0931259714aa0febcec3b0357928197 100644
--- a/doc/extern_libs.org
+++ b/doc/extern_libs.org
@@ -35,7 +35,7 @@
 | jQuery Image Cube                   | GPL / MIT                   |               | kiosque cube                                                         |                                                            | http://keith-wood.name/imageCube.html                                                                                          |
 | TableSorter                         | GPL / MIT                   |               | tri des tableaux                                                     |                                                            | https://github.com/Mottie/tablesorter                                                                                          |
 | XHProf                              | Apache Licence 2.0          |               | Profiling                                                            |                                                            | http://pecl.php.net/package/xhprof                                                                                             |
-| TimelineJS                          | MPL 2.0                     |               | Résultat recherche mode chronologique                                |                                                            | https://github.com/NUKnightLab/TimelineJS/tree/v2.25                                                                           |
+| TimelineJS                          | MPL 2.0                     |               | Résultat recherche mode chronologique                                | X bug fix of embed mode                                    | https://github.com/NUKnightLab/TimelineJS3/tree/3.5.1                                                                          |
 | DateTimepicker                      | MIT License                 |               | Choix de la date et de l'heure dans les articles                     | X ajout du support des dates courante sans partie d'heures | https://github.com/mugifly/jquery-simple-datetimepicker/                                                                       |
 | DataTables                          | MIT Licence                 |               | Ecran des variables                                                  |                                                            | http://www.datatables.net/                                                                                                     |
 | CodeMirror                          | MIT Licence                 |               | Edition code source javascript                                       |                                                            | http://codemirror.net                                                                                                          |
diff --git a/library/ZendAfi/View/Helper/ListeNotices/Chrono.php b/library/ZendAfi/View/Helper/ListeNotices/Chrono.php
index 38e60bb3350e9df1a66bb314319ec288c5fe1293..c9e2ab7738ad692d12c98bfd4d50c953ddb14d94 100644
--- a/library/ZendAfi/View/Helper/ListeNotices/Chrono.php
+++ b/library/ZendAfi/View/Helper/ListeNotices/Chrono.php
@@ -20,39 +20,33 @@
  */
 class ZendAfi_View_Helper_ListeNotices_Chrono extends ZendAfi_View_Helper_ListeNotices_Abstract {
   protected static $_id_counter = 0;
+  protected $_timeline_path;
 
   public function loadScript() {
     Class_ScriptLoader::getInstance()
-      ->addScript(BASE_URL.'/public/opac/TimelineJS-2.25/compiled/js/storyjs-embed.js');
+      ->addScript($this->_timeline_path . 'timeline-embed.js');
   }
 
-  public function listeNotices_Chrono($data, $preferences=[]) {
-    $this->loadScript();
-
 
+  public function listeNotices_Chrono($data, $preferences=[]) {
+    $this->_timeline_path = BASE_URL . '/public/opac/TimelineJS3-3.5.1/compiled/js/';
 
-    static::$_id_counter =  static::$_id_counter + 1;
-    $embed_id = 'liste_chrono_'.static::$_id_counter;
+    $this->loadScript();
 
+    static::$_id_counter = static::$_id_counter + 1;
+    $embed_id = 'liste_chrono_' . static::$_id_counter;
     $storyjs_params = [
-      'type' => 'timeline',
-      'embed_id' => $embed_id,
-      'width' => '100%',
-      'height' => (isset($preferences['op_hauteur']) ? $preferences['op_hauteur'] : 600),
-      'start_at_end' => true,
-      'start_zoom_adjust' => -4,
-      'source' => json_decode($this->view->listeNotices_ChronoSource($data, $preferences)),
-      'js' => BASE_URL.'/public/opac/TimelineJS-2.25/compiled/js/timeline.js',
-      'css' => BASE_URL.'/public/opac/TimelineJS-2.25/compiled/css/timeline.css',
-      'lang' => 'fr',
-      'debug' => false
-      ];
-
-    $html = '<script>$(function(){ createStoryJS('.json_encode($storyjs_params).')})</script>';
-    $html .= '<script></script>';
-
-
-    return $html.'<div class="liste_chrono" id="'.$embed_id.'"></div>';
+                       'embed_id' => $embed_id,
+                       'script_path' => $this->_timeline_path,
+                       'width' => '100%',
+                       'height' => (isset($preferences['op_hauteur']) ? $preferences['op_hauteur'] : 600),
+                       'start_at_end' => true,
+                       'events' => json_decode($this->view->listeNotices_ChronoSource($data, $preferences)),
+                       'lang' => 'fr',
+                       'debug' => false];
+
+    return
+      '<script>$(function(){ createStoryJS('.json_encode($storyjs_params).')})</script>'
+      . '<div class="liste_chrono" id="'.$embed_id.'"></div>';
   }
 }
-?>
\ No newline at end of file
diff --git a/library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php b/library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php
index 96a95c075d88bbbab28fdbd9edadf2998b88305c..88b63ef8ce16a16cf33a306cfb51b8657aadf362 100644
--- a/library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php
+++ b/library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php
@@ -18,11 +18,12 @@
  * along with BOKEH; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
  */
-class ZendAfi_View_Helper_ListeNotices_ChronoSource extends Zend_View_Helper_HtmlElement {
-  use Trait_Translator, Trait_NoticeVisitor;
+class ZendAfi_View_Helper_ListeNotices_ChronoSource
+  extends ZendAfi_View_Helper_BaseHelper{
+
+  use Trait_NoticeVisitor;
 
   protected
-    $_json,
     $_dates,
     $_current_date,
     $_preferences;
@@ -33,25 +34,20 @@ class ZendAfi_View_Helper_ListeNotices_ChronoSource extends Zend_View_Helper_Htm
 
     array_map([$this, 'visitNotice'], $notices);
 
-    $this->_json = ['timeline' => [
-        'type' => 'default',
-        'headline' => $this->_('Résultat de la recherche'),
-        'date' => $this->_dates,
-        ]
-      ];
-    return json_encode($this->_json);
+    return json_encode($this->_dates);
   }
 
 
   public function visitNotice($notice) {
     $this->_url_notice = $this->view->urlNotice($notice, $this->_preferences);
 
-    $this->_current_date = ['asset' => [],
-                            'startDate' => date('Y'),
-                            'headline' =>
-                            '<div>'.$this->view->tagAnchor($this->_url_notice, $notice->getTitrePrincipal()).'</div>'.
-                            '<div>'.$notice->getAuteurPrincipal().'</div>'
-      ];
+    $headline = $this->view->tagAnchor($this->_url_notice,
+                                       $notice->getTitrePrincipal())
+      . '<br/>' . $notice->getAuteurPrincipal();
+
+    $this->_current_date = ['start_date' => ['year' => date('Y')],
+                            'text' => ['headline' => $headline],
+                            'unique_id' => $notice->getId()];
 
     $notice->acceptVisitor($this);
 
@@ -61,19 +57,21 @@ class ZendAfi_View_Helper_ListeNotices_ChronoSource extends Zend_View_Helper_Htm
 
   public function visitAnnee($annee) {
     if ($annee)
-      $this->_current_date['startDate'] = $annee;
+      $this->_current_date['start_date']['year'] = $annee;
   }
 
 
   public function visitResume($resume) {
-    $this->_current_date['text'] = '<div>'.$this->view->tagAnchor($this->_url_notice, $this->_('[Voir la notice]')).'</div><p style="margin-top:5px">'.$resume.'</p>';
+    $this->_current_date['text']['text'] = $this->_tag('div', $this->view->tagAnchor($this->_url_notice, $this->_('[Voir la notice]')))
+      . $this->_tag('p', $resume, ['style' => 'margin-top:5px']);
   }
 
 
   public function visitTypeDoc($type_doc_id) {
-    $url_vignette = $this->view->getHelper('IconeSupport')->imageForSupport($type_doc_id);
-    $this->_current_date['asset']['thumbnail'] = $url_vignette;
-    $this->_current_date['asset']['media'] = $url_vignette;
+    $url_vignette = $this->view->getHelper('IconeSupport')
+                               ->imageForSupport($type_doc_id);
+    $this->_current_date['media']['thumbnail'] = $url_vignette;
+    $this->_current_date['media']['url'] = $url_vignette;
   }
 
 
@@ -81,15 +79,14 @@ class ZendAfi_View_Helper_ListeNotices_ChronoSource extends Zend_View_Helper_Htm
     if (!$url_vignette)
       return;
 
-    $this->_current_date['asset']['thumbnail'] = $url_vignette;
-    $this->_current_date['asset']['media'] = $url_vignette;
+    $this->_current_date['media']['thumbnail'] = $url_vignette;
+    $this->_current_date['media']['url'] = $url_vignette;
   }
 
   public function visitImage($url_image) {
     if (!$url_image)
       return;
 
-    $this->_current_date['asset']['media'] = $url_image;
+    $this->_current_date['media']['url'] = $url_image;
   }
-}
-?>
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/.gitignore b/public/opac/TimelineJS-2.25/.gitignore
deleted file mode 100644
index cb33b339502ea04c5864a3b72ef9fccaf61b169c..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/.gitignore
+++ /dev/null
@@ -1,16 +0,0 @@
-*.DS_Store
-.DS_Store*
-dev_examples/
-cdn/
-Embed.CDN.js
-Embed.CDN.Generator.js
-compiled/generator.html
-compiled/index.html
-compiled/generator-backup.html
-compiled/js/storyjs-embed-cdn.js
-compiled/js/storyjs-embed-generator.js
-compiled/css/timeline-generator.css
-*.tmproj
-*.tmproject
-tmtags
-source/gfx/Sprites/
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/.gitmodules b/public/opac/TimelineJS-2.25/.gitmodules
deleted file mode 100644
index 933337205ec9d8bbd51066e52c0f0c2d9e93ce5f..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/.gitmodules
+++ /dev/null
@@ -1,6 +0,0 @@
-[submodule "source/js/Core"]
-	path = source/js/Core
-	url = https://zachwise@github.com/VeriteCo/StoryJS-Core.git
-[submodule "source/less/Core"]
-	path = source/less/Core
-	url = https://zachwise@github.com/VeriteCo/StoryJS-Core-CSS.git
diff --git a/public/opac/TimelineJS-2.25/LICENSE b/public/opac/TimelineJS-2.25/LICENSE
deleted file mode 100644
index d061c361948fbb324a55d31ea14e8abb679041d3..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/LICENSE
+++ /dev/null
@@ -1,365 +0,0 @@
-This Source Code Form is subject to the terms of the Mozilla Public
-License, v. 2.0. If a copy of the MPL was not distributed with this
-file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-Mozilla Public License Version 2.0
-==================================
-
-1. Definitions
---------------
-
-1.1. "Contributor"
-    means each individual or legal entity that creates, contributes to
-    the creation of, or owns Covered Software.
-
-1.2. "Contributor Version"
-    means the combination of the Contributions of others (if any) used
-    by a Contributor and that particular Contributor's Contribution.
-
-1.3. "Contribution"
-    means Covered Software of a particular Contributor.
-
-1.4. "Covered Software"
-    means Source Code Form to which the initial Contributor has attached
-    the notice in Exhibit A, the Executable Form of such Source Code
-    Form, and Modifications of such Source Code Form, in each case
-    including portions thereof.
-
-1.5. "Incompatible With Secondary Licenses"
-    means
-
-    (a) that the initial Contributor has attached the notice described
-        in Exhibit B to the Covered Software; or
-
-    (b) that the Covered Software was made available under the terms of
-        version 1.1 or earlier of the License, but not also under the
-        terms of a Secondary License.
-
-1.6. "Executable Form"
-    means any form of the work other than Source Code Form.
-
-1.7. "Larger Work"
-    means a work that combines Covered Software with other material, in 
-    a separate file or files, that is not Covered Software.
-
-1.8. "License"
-    means this document.
-
-1.9. "Licensable"
-    means having the right to grant, to the maximum extent possible,
-    whether at the time of the initial grant or subsequently, any and
-    all of the rights conveyed by this License.
-
-1.10. "Modifications"
-    means any of the following:
-
-    (a) any file in Source Code Form that results from an addition to,
-        deletion from, or modification of the contents of Covered
-        Software; or
-
-    (b) any new file in Source Code Form that contains any Covered
-        Software.
-
-1.11. "Patent Claims" of a Contributor
-    means any patent claim(s), including without limitation, method,
-    process, and apparatus claims, in any patent Licensable by such
-    Contributor that would be infringed, but for the grant of the
-    License, by the making, using, selling, offering for sale, having
-    made, import, or transfer of either its Contributions or its
-    Contributor Version.
-
-1.12. "Secondary License"
-    means either the GNU General Public License, Version 2.0, the GNU
-    Lesser General Public License, Version 2.1, the GNU Affero General
-    Public License, Version 3.0, or any later versions of those
-    licenses.
-
-1.13. "Source Code Form"
-    means the form of the work preferred for making modifications.
-
-1.14. "You" (or "Your")
-    means an individual or a legal entity exercising rights under this
-    License. For legal entities, "You" includes any entity that
-    controls, is controlled by, or is under common control with You. For
-    purposes of this definition, "control" means (a) the power, direct
-    or indirect, to cause the direction or management of such entity,
-    whether by contract or otherwise, or (b) ownership of more than
-    fifty percent (50%) of the outstanding shares or beneficial
-    ownership of such entity.
-
-2. License Grants and Conditions
---------------------------------
-
-2.1. Grants
-
-Each Contributor hereby grants You a world-wide, royalty-free,
-non-exclusive license:
-
-(a) under intellectual property rights (other than patent or trademark)
-    Licensable by such Contributor to use, reproduce, make available,
-    modify, display, perform, distribute, and otherwise exploit its
-    Contributions, either on an unmodified basis, with Modifications, or
-    as part of a Larger Work; and
-
-(b) under Patent Claims of such Contributor to make, use, sell, offer
-    for sale, have made, import, and otherwise transfer either its
-    Contributions or its Contributor Version.
-
-2.2. Effective Date
-
-The licenses granted in Section 2.1 with respect to any Contribution
-become effective for each Contribution on the date the Contributor first
-distributes such Contribution.
-
-2.3. Limitations on Grant Scope
-
-The licenses granted in this Section 2 are the only rights granted under
-this License. No additional rights or licenses will be implied from the
-distribution or licensing of Covered Software under this License.
-Notwithstanding Section 2.1(b) above, no patent license is granted by a
-Contributor:
-
-(a) for any code that a Contributor has removed from Covered Software;
-    or
-
-(b) for infringements caused by: (i) Your and any other third party's
-    modifications of Covered Software, or (ii) the combination of its
-    Contributions with other software (except as part of its Contributor
-    Version); or
-
-(c) under Patent Claims infringed by Covered Software in the absence of
-    its Contributions.
-
-This License does not grant any rights in the trademarks, service marks,
-or logos of any Contributor (except as may be necessary to comply with
-the notice requirements in Section 3.4).
-
-2.4. Subsequent Licenses
-
-No Contributor makes additional grants as a result of Your choice to
-distribute the Covered Software under a subsequent version of this
-License (see Section 10.2) or under the terms of a Secondary License (if
-permitted under the terms of Section 3.3).
-
-2.5. Representation
-
-Each Contributor represents that the Contributor believes its
-Contributions are its original creation(s) or it has sufficient rights
-to grant the rights to its Contributions conveyed by this License.
-
-2.6. Fair Use
-
-This License is not intended to limit any rights You have under
-applicable copyright doctrines of fair use, fair dealing, or other
-equivalents.
-
-2.7. Conditions
-
-Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
-in Section 2.1.
-
-3. Responsibilities
--------------------
-
-3.1. Distribution of Source Form
-
-All distribution of Covered Software in Source Code Form, including any
-Modifications that You create or to which You contribute, must be under
-the terms of this License. You must inform recipients that the Source
-Code Form of the Covered Software is governed by the terms of this
-License, and how they can obtain a copy of this License. You may not
-attempt to alter or restrict the recipients' rights in the Source Code
-Form.
-
-3.2. Distribution of Executable Form
-
-If You distribute Covered Software in Executable Form then:
-
-(a) such Covered Software must also be made available in Source Code
-    Form, as described in Section 3.1, and You must inform recipients of
-    the Executable Form how they can obtain a copy of such Source Code
-    Form by reasonable means in a timely manner, at a charge no more
-    than the cost of distribution to the recipient; and
-
-(b) You may distribute such Executable Form under the terms of this
-    License, or sublicense it under different terms, provided that the
-    license for the Executable Form does not attempt to limit or alter
-    the recipients' rights in the Source Code Form under this License.
-
-3.3. Distribution of a Larger Work
-
-You may create and distribute a Larger Work under terms of Your choice,
-provided that You also comply with the requirements of this License for
-the Covered Software. If the Larger Work is a combination of Covered
-Software with a work governed by one or more Secondary Licenses, and the
-Covered Software is not Incompatible With Secondary Licenses, this
-License permits You to additionally distribute such Covered Software
-under the terms of such Secondary License(s), so that the recipient of
-the Larger Work may, at their option, further distribute the Covered
-Software under the terms of either this License or such Secondary
-License(s).
-
-3.4. Notices
-
-You may not remove or alter the substance of any license notices
-(including copyright notices, patent notices, disclaimers of warranty,
-or limitations of liability) contained within the Source Code Form of
-the Covered Software, except that You may alter any license notices to
-the extent required to remedy known factual inaccuracies.
-
-3.5. Application of Additional Terms
-
-You may choose to offer, and to charge a fee for, warranty, support,
-indemnity or liability obligations to one or more recipients of Covered
-Software. However, You may do so only on Your own behalf, and not on
-behalf of any Contributor. You must make it absolutely clear that any
-such warranty, support, indemnity, or liability obligation is offered by
-You alone, and You hereby agree to indemnify every Contributor for any
-liability incurred by such Contributor as a result of warranty, support,
-indemnity or liability terms You offer. You may include additional
-disclaimers of warranty and limitations of liability specific to any
-jurisdiction.
-
-4. Inability to Comply Due to Statute or Regulation
----------------------------------------------------
-
-If it is impossible for You to comply with any of the terms of this
-License with respect to some or all of the Covered Software due to
-statute, judicial order, or regulation then You must: (a) comply with
-the terms of this License to the maximum extent possible; and (b)
-describe the limitations and the code they affect. Such description must
-be placed in a text file included with all distributions of the Covered
-Software under this License. Except to the extent prohibited by statute
-or regulation, such description must be sufficiently detailed for a
-recipient of ordinary skill to be able to understand it.
-
-5. Termination
---------------
-
-5.1. The rights granted under this License will terminate automatically
-if You fail to comply with any of its terms. However, if You become
-compliant, then the rights granted under this License from a particular
-Contributor are reinstated (a) provisionally, unless and until such
-Contributor explicitly and finally terminates Your grants, and (b) on an
-ongoing basis, if such Contributor fails to notify You of the
-non-compliance by some reasonable means prior to 60 days after You have
-come back into compliance. Moreover, Your grants from a particular
-Contributor are reinstated on an ongoing basis if such Contributor
-notifies You of the non-compliance by some reasonable means, this is the
-first time You have received notice of non-compliance with this License
-from such Contributor, and You become compliant prior to 30 days after
-Your receipt of the notice.
-
-5.2. If You initiate litigation against any entity by asserting a patent
-infringement claim (excluding declaratory judgment actions,
-counter-claims, and cross-claims) alleging that a Contributor Version
-directly or indirectly infringes any patent, then the rights granted to
-You by any and all Contributors for the Covered Software under Section
-2.1 of this License shall terminate.
-
-5.3. In the event of termination under Sections 5.1 or 5.2 above, all
-end user license agreements (excluding distributors and resellers) which
-have been validly granted by You or Your distributors under this License
-prior to termination shall survive termination.
-
-************************************************************************
-*                                                                      *
-*  6. Disclaimer of Warranty                                           *
-*  -------------------------                                           *
-*                                                                      *
-*  Covered Software is provided under this License on an "as is"       *
-*  basis, without warranty of any kind, either expressed, implied, or  *
-*  statutory, including, without limitation, warranties that the       *
-*  Covered Software is free of defects, merchantable, fit for a        *
-*  particular purpose or non-infringing. The entire risk as to the     *
-*  quality and performance of the Covered Software is with You.        *
-*  Should any Covered Software prove defective in any respect, You     *
-*  (not any Contributor) assume the cost of any necessary servicing,   *
-*  repair, or correction. This disclaimer of warranty constitutes an   *
-*  essential part of this License. No use of any Covered Software is   *
-*  authorized under this License except under this disclaimer.         *
-*                                                                      *
-************************************************************************
-
-************************************************************************
-*                                                                      *
-*  7. Limitation of Liability                                          *
-*  --------------------------                                          *
-*                                                                      *
-*  Under no circumstances and under no legal theory, whether tort      *
-*  (including negligence), contract, or otherwise, shall any           *
-*  Contributor, or anyone who distributes Covered Software as          *
-*  permitted above, be liable to You for any direct, indirect,         *
-*  special, incidental, or consequential damages of any character      *
-*  including, without limitation, damages for lost profits, loss of    *
-*  goodwill, work stoppage, computer failure or malfunction, or any    *
-*  and all other commercial damages or losses, even if such party      *
-*  shall have been informed of the possibility of such damages. This   *
-*  limitation of liability shall not apply to liability for death or   *
-*  personal injury resulting from such party's negligence to the       *
-*  extent applicable law prohibits such limitation. Some               *
-*  jurisdictions do not allow the exclusion or limitation of           *
-*  incidental or consequential damages, so this exclusion and          *
-*  limitation may not apply to You.                                    *
-*                                                                      *
-************************************************************************
-
-8. Litigation
--------------
-
-Any litigation relating to this License may be brought only in the
-courts of a jurisdiction where the defendant maintains its principal
-place of business and such litigation shall be governed by laws of that
-jurisdiction, without reference to its conflict-of-law provisions.
-Nothing in this Section shall prevent a party's ability to bring
-cross-claims or counter-claims.
-
-9. Miscellaneous
-----------------
-
-This License represents the complete agreement concerning the subject
-matter hereof. If any provision of this License is held to be
-unenforceable, such provision shall be reformed only to the extent
-necessary to make it enforceable. Any law or regulation which provides
-that the language of a contract shall be construed against the drafter
-shall not be used to construe this License against a Contributor.
-
-10. Versions of the License
----------------------------
-
-10.1. New Versions
-
-Mozilla Foundation is the license steward. Except as provided in Section
-10.3, no one other than the license steward has the right to modify or
-publish new versions of this License. Each version will be given a
-distinguishing version number.
-
-10.2. Effect of New Versions
-
-You may distribute the Covered Software under the terms of the version
-of the License under which You originally received the Covered Software,
-or under the terms of any subsequent version published by the license
-steward.
-
-10.3. Modified Versions
-
-If you create software not governed by this License, and you want to
-create a new license for such software, you may create and use a
-modified version of this License if you rename the license and remove
-any references to the name of the license steward (except to note that
-such modified license differs from this License).
-
-10.4. Distributing Source Code Form that is Incompatible With Secondary
-Licenses
-
-If You choose to distribute Source Code Form that is Incompatible With
-Secondary Licenses under the terms of this version of the License, the
-notice described in Exhibit B of this License must be attached.
-
-
--------------------------------------------
-
-Map tiles by [Stamen Design](http://stamen.com "Stamen Design"), under 
-[CC BY 3.0](http://creativecommons.org/licenses/by/3.0 "CC BY 3.0"). 
-Data by [OpenStreetMap](http://openstreetmap.org "OpenStreetMap"), 
-under [CC BY SA](http://creativecommons.org/licenses/by-sa/3.0 "CC BY SA").
diff --git a/public/opac/TimelineJS-2.25/README.markdown b/public/opac/TimelineJS-2.25/README.markdown
deleted file mode 100644
index 13457e58e281b3aeb09696eaf731e800788ef4e4..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/README.markdown
+++ /dev/null
@@ -1,422 +0,0 @@
-**Table of Contents**
-
-- [TimelineJS](#timelinejs)
-	- [Document history with TimelineJS](#document-history-with-timelinejs)
-	- [Add it to your site](#add-it-to-your-site)
-		- [Using Inline (easiest)](#using-inline-easiest)
-		- [Using a method (advanced)](#using-a-method-advanced)
-	- [Config Options](#config-options)
-		- [Language](#language)
-		- [Start at End](#start-at-end)
-		- [Start at Slide](#start-at-slide)
-		- [Start Zoom Adjust](#start-zoom-adjust)
-		- [Hash Bookmark](#hash-bookmark)
-		- [Debug](#debug)
-		- [Map Style Types](#map-style-types)
-		- [Font Options](#font-options)
-			- [Font Combination Preview:](#font-combination-preview)
-	- [File Formats](#file-formats)
-		- [JSON:](#json)
-		- [JSONP :](#jsonp-)
-		- [Google Docs:](#google-docs)
-		- [Storify:](#storify)
-	- [Media](#media)
-	- [Best practices](#best-practices)
-	- [License](#license)
-	
-# TimelineJS 
-## Document history with TimelineJS
-
-There are lots of timeline tools on the web but they are almost all either
-hard on the eyes or hard to use. Create timelines that are at the same time
-beautiful and intuitive for users
-
-TimelineJS is great for pulling in media from different sources. Just throw in a
-link from Twitter, YouTube, Flickr, Vimeo, Google Maps or SoundCloud and
-TimelineJS will format it to fit perfectly. More media types will be supported
-in the future.
-
-Creating one is as easy as filling in a Google spreadsheet or as detailed as
-JSON.
- 
-## Add it to your site
-### Using Inline (*easiest*)
-Place the embed code where you want the timeline to show in the `<body>` of your site. See [Config Options](#config-options) for a full list of what you can set in the config.
-
-```html
-	<div id="timeline-embed"></div>
-	<script type="text/javascript">
-	    var timeline_config = {
-			width:				'100%',
-			height:				'600',
-			source:				'path_to_json/or_link_to_googlespreadsheet',
-			embed_id:			'timeline-embed',				//OPTIONAL USE A DIFFERENT DIV ID FOR EMBED
-			start_at_end: 		false,							//OPTIONAL START AT LATEST DATE
-			start_at_slide:		'4',							//OPTIONAL START AT SPECIFIC SLIDE
-			start_zoom_adjust:	'3',							//OPTIONAL TWEAK THE DEFAULT ZOOM LEVEL
-			hash_bookmark:		true,							//OPTIONAL LOCATION BAR HASHES
-			font:				'Bevan-PotanoSans',				//OPTIONAL FONT
-			debug:				true,							//OPTIONAL DEBUG TO CONSOLE
-			lang:				'fr',							//OPTIONAL LANGUAGE
-			maptype:			'watercolor',					//OPTIONAL MAP STYLE
-			css:				'path_to_css/timeline.css',		//OPTIONAL PATH TO CSS
-			js:					'path_to_js/timeline-min.js'	//OPTIONAL PATH TO JS
-		}
-	</script>
-	<script type="text/javascript" src="path_to_js/storyjs-embed.js"></script>
-```
-### Using a method (*advanced*)
-You could also initialize a new timeline using the `createStoryJS` method after `storyjs-embed.js` has been loaded
-```javascript
-	createStoryJS({
-		type:		'timeline',
-		width:		'800',
-		height:		'600',
-		source:		'path_to_json/or_link_to_googlespreadsheet',
-		embed_id:	'my-timeline'			// ID of the DIV you want to load the timeline into
-	});
-```
-
-Here's a simple example:
-
-```html
-	<head>
-		<!-- jQuery -->
-		<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
-		<!-- BEGIN TimelineJS -->
-		<script type="text/javascript" src="path_to_js/storyjs-embed.js"></script>
-		<script>
-			$(document).ready(function() {
-				createStoryJS({
-					type:		'timeline',
-					width:		'800',
-					height:		'600',
-					source:		'path_to_json/or_link_to_googlespreadsheet',
-					embed_id:	'my-timeline'
-				});
-			});
-		</script>
-		<!-- END TimelineJS -->
-	</head>
-	<body>	
-		<div id="my-timeline"></div>
-	</body>
-```
-
-	
-## Config Options
-Here are some of the options you can set in the config.
-
-### Source
-`source` Should be either the path to the JSON resource to load, or a JavaScript
-object corresponding to the Timeline model.
-
-Here is an example using a data object:
-
-```javascript
-
-	var dataObject = {timeline: {headline: "Headline", type: ... }}
-	createStoryJS({
-		type:		'timeline',
-		width:		'800',
-		height:		'600',
-		source:		dataObject,
-		embed_id:	'my-timeline'
-	});
-```
-
-If source is a string, we will try to automatically recognize resources that are
-Twitter searches, Google Spreadsheets or Storify stories. Failing that, we assume
-the source is either JSON or JSONP. If string matches on `.jsonp`, we will treat it
-as JSONP, otherwise, we will append `?callback=onJSONP_Data`. See more details below.
-
-### Language
-`lang`
-Localization
-*default is `en` English*
-Languages available:
-* `af` *Afrikaans*
-* `ar` *Arabic (beta)*
-* `bg` *Bulgarian*
-* `ca` *Catalan*
-* `cz` *Czech*
-* `da` *Danish*
-* `de` *German / Deutsch*
-* `el` *Greek*
-* `en` *English*
-* `es` *Spanish*
-* `eu` *Basque/ Euskara*
-* `fi` *Finnish*
-* `fo` *Faroese*
-* `fr` *French*
-* `gl` *Galician*
-* `hu` *Hungarian*
-* `hy` *Armenian*
-* `id` *Indonesian*
-* `is` *Icelandic*
-* `it` *Italian*
-* `iw` *Hebrew (beta)*
-* `ja` *Japanese*
-* `ka` *Georgian*
-* `ko` *Korean*
-* `lv` *Latvian*
-* `nl` *Dutch*
-* `no` *Norwegian*
-* `pl` *Polish*
-* `pt-br` *Brazilian Portuguese*
-* `pt` *Portuguese*
-* `ru` *Russian*
-* `sk` *Slovak*
-* `sl` *Slovenian*
-* `sr-cy` *Serbian (Cyrillic)*
-* `sr` *Serbian (Latin)*
-* `sv` *Swedish*
-* `ta` *Tamil*
-* `tl` *Tagalog*
-* `tr` *Turkish*
-* `zh-cn` *Chinese*
-* `zh-tw` *Taiwanese*
-
-
-Help us add more. Grab a copy of a language file and replace it with your language [Example language file](https://github.com/VeriteCo/StoryJS-Core/blob/master/Language/locale/en.js) and find your language's [two letter code here](http://spreadsheets.google.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&gid=1)
-
-###Start at End 
-`start_at_end`
-set to true to start the timeline on the last date.
-*default is false*
-
-###Start at Slide 
-`start_at_slide`
-You can tell TimelineJS to start at a specific slide number
-*default is 0*
-
-###Start Zoom Adjust
-`start_zoom_adjust`
-This will tweak the default zoom level. Equivilent to pressing the zoom in or zoom out button the specified number of times. Negative numbers zoom out.
-*default is 0*
-
-###Hash Bookmark 
-`hash_bookmark`
-set to true to allow bookmarking slides using the hash tag
-*default is false*
-
-###Debug 
-`debug`
-Will log events etc to the console.
-*default is false*
-
-
-###Map Style Types 
-Due to recent changes to the Google Maps API, you need a [API Key](https://developers.google.com/places/documentation/#Authentication) in order to use custom map types.
-`gmap_key:`
-*required in order to use maptype*
-
-`maptype:`
-* [Stamen Maps ](http://maps.stamen.com)
-	* `toner`
-	* `toner-lines`
-	* `toner-labels`
-	* `watercolor`
-	* `sterrain`
-		
-* Google Maps
-	* `ROADMAP`
-	* `TERRAIN`
-	* `HYBRID`
-	* `SATELLITE`
-
-###Font Options 
-`font:`
-* `Arvo-PTSans`
-* `Merriweather-NewsCycle`
-* `PoiretOne-Molengo`
-* `PTSerif-PTSans`
-* `DroidSerif-DroidSans`
-* `Lekton-Molengo`
-* `NixieOne-Ledger`
-* `AbrilFatface-Average`
-* `PlayfairDisplay-Muli`
-* `Rancho-Gudea`
-* `Bevan-PotanoSans`
-* `BreeSerif-OpenSans`
-* `SansitaOne-Kameron`
-* `Pacifico-Arimo`
-* Or make your own
-
-####Font Combination Preview:
-![Font Combination Preview](http://timeline.verite.co/gfx/font-options.png)
-
-## File Formats
-
-### JSON:
-
-JSON is the native data format for TimelineJS.
-
-Remember, JSON is picky. A misplaced comma or quotation mark can
-prevent the timeline from loading properly. 
-
-Here is the full model:
-```javascript
-
-{
-	"timeline":
-	{
-		"headline":"The Main Timeline Headline Goes here",
-		"type":"default",
-		"text":"<p>Intro body text goes here, some HTML is ok</p>",
-		"asset": {
-			"media":"http://yourdomain_or_socialmedialink_goes_here.jpg",
-			"credit":"Credit Name Goes Here",
-			"caption":"Caption text goes here"
-		},
-		"date": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"text":"<p>Body text goes here, some HTML is OK</p>",
-				"tag":"This is Optional",
-				"classname":"optionaluniqueclassnamecanbeaddedhere",
-				"asset": {
-					"media":"http://twitter.com/ArjunaSoriano/status/164181156147900416",
-					"thumbnail":"optional-32x32px.jpg",
-					"credit":"Credit Name Goes Here",
-					"caption":"Caption text goes here"
-				}
-			}
-		],
-		"era": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"text":"<p>Body text goes here, some HTML is OK</p>",
-				"tag":"This is Optional"
-			}
-			
-		]
-	}
-}
-```
-
-### JSONP :
-
-Timeline can use a variation of JSONP to allow you to easily load data across different domains.
-
-To allow this to happen, the file must end with the extension `.jsonp`
-
-Here is the full model:
-```javascript
-storyjs_jsonp_data = {
-	"timeline":
-	{
-		"headline":"The Main Timeline Headline Goes here",
-		"type":"default",
-		"text":"<p>Intro body text goes here, some HTML is ok</p>",
-		"asset": {
-			"media":"http://yourdomain_or_socialmedialink_goes_here.jpg",
-			"credit":"Credit Name Goes Here",
-			"caption":"Caption text goes here"
-		},
-		"date": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"text":"<p>Body text goes here, some HTML is OK</p>",
-				"tag":"This is Optional",
-				"classname":"optionaluniqueclassnamecanbeaddedhere",
-				"asset": {
-					"media":"http://twitter.com/ArjunaSoriano/status/164181156147900416",
-					"thumbnail":"optional-32x32px.jpg",
-					"credit":"Credit Name Goes Here",
-					"caption":"Caption text goes here"
-				}
-			}
-		],
-		"era": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"tag":"This is Optional"
-			}
-			
-		],
-		"chart": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"value":"28"
-			}
-			
-		]
-		
-	}
-}
-```
-
-### Google Docs:
-
-If you don’t want to mess with JSON, fire up Google Docs and build your
-timeline in a spreadsheet. It’s as simple as dropping a date, text, and links
-into the appropriate columns in TimelineJS’s template.
-
-You can find the template here: [TimelineJS Google Spreadsheet Template](https://drive.google.com/previewtemplate?id=0AppSVxABhnltdEhzQjQ4MlpOaldjTmZLclQxQWFTOUE&mode=public&pli=1#)
-
-There are only a couple things you need to know in order to create a timeline
-using Google Docs:
-
-  1. Make the spreadsheet public:   
-	Google Docs are automatically set to private but the spreadsheet must be
-	public.
-	
-	Click the blue “Share” button on the top right-hand corner. In the “Share
-	settings” window, you’ll see the private setting of the spreadsheet: click
-	“Change...”. In the Visibility options window, choose “Public on the Web” and
-	save.
-
-  2. Publish to the Web  
-	Under the File menu, select “Publish to the Web.”
-	
-	In the next window, check the box next to “Automatically republish when
-	changes are made.” Uncheck all other boxes. Click “start publishing.” This
-	will give you the URL to embed in your HTML file.
-
-  3. Copy/paste the Web URL into your TimelineJS HTML file  
-	After you publish the spreadsheet, Google Docs will generate a link to the
-	file. Copy the link for the Web Page option (as opposed to PDF, HTML, XLS,
-	etc.), then paste it into the timeline’s HTML file (see [Add it to your site](#add-it-to-your-site) )
-
-
-	
-### Storify:
-
-Support for Storify is still in it's early stages. It works though. Just paste a link to the storify story as the source.
-
-## Media
-
-Included in the zip file is a kitchen sink example. This timeline shows how to
-incorporate the different media types from different services like Twitter,
-YouTube, Flickr, Instagram, TwitPic, Wikipedia, Dailymotion, SoundCloud and Vimeo.
-
-Just copy and paste the address of the media from the browser bar
-into the media parameter. TimelineJS will auto-magically pull in the media via their api and
-format it.
-
-## Best practices
-
-Tips and tricks to best utilize TimelineJS
-
-  1. Keep it light - don’t get bogged down by text or other elements
-  2. Pick stories that have a strong chronological narrative. It does not work well for stories that need to jump around in the timeline.
-  3. Include events that build up to major occurrences, not just the major events.
-  4. Don't overwhelm the user. A timeline with hundreds of events is probably not the best use of the format.
-  
-## License
-This Source Code Form is subject to the terms of the Mozilla Public
-License, v. 2.0. If a copy of the MPL was not distributed with this
-file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-
diff --git a/public/opac/TimelineJS-2.25/codekit-config.json b/public/opac/TimelineJS-2.25/codekit-config.json
deleted file mode 100644
index c67dec34687bf471f8d3ad30998b57846903f607..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/codekit-config.json
+++ /dev/null
@@ -1,2761 +0,0 @@
-{
-  "CodeKitInfo" : "This is a CodeKit project configuration file. It is designed to sync project settings across multiple machines. Modifying the contents of this file can be a poor life decision if you don't know what you're doing. This file is not useful unless accompanied by the project that created it in CodeKit. For more information, see: http:\/\/incident57.com\/codekit",
-  "creatorBuild" : "8300",
-  "files" : {
-    "\/dev_examples\/archive\/index_backup.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 1,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/index_backup.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Language\/locale\/gl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/gl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/gl.js",
-      "fileType" : 64
-    },
-    "\/tests\/test_googlespreadsheet_biblical_ad.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_biblical_ad.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Core\/VMM.Util.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Util.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Util-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/Bevan-PotanoSans.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Bevan-PotanoSans.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/js\/locale\/ka.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ka.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ka-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/font\/SansitaOne-Kameron.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/SansitaOne-Kameron.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/compiled\/css\/timeline.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/timeline.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Language\/locale\/sk.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sk.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sk.js",
-      "fileType" : 64
-    },
-    "\/examples\/example_googlespreadsheet.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 1,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/examples\/example_googlespreadsheet.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/compiled\/js\/locale\/el.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/el.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/el-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/da.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/da.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/da-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/af.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/af.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/af-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Embed\/Embed.js" : {
-      "ignoreWasSetByUser" : 1,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Library\/LazyLoad.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/LazyLoad.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/LazyLoad-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/pt.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/is.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Embed\/Embed.LoadLib.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.LoadLib.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.LoadLib-min.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/hilton.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/hilton.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/hilton.jpg",
-      "initialSize" : 72463,
-      "fileType" : 4096
-    },
-    "\/compiled\/css\/themes\/font\/Rancho-Gudea.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Rancho-Gudea.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/dev_examples\/archive\/middle-east\/index.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/middle-east\/index.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/jade\/sections\/example-head.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/jade\/sections\/example-head.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/source\/jade\/sections\/example-head.html",
-      "fileType" : 512
-    },
-    "\/source\/less\/Core\/Font\/SansitaOne-Kameron.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/SansitaOne-Kameron.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/SansitaOne-Kameron.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/less\/Core\/Font\/NewsCycle-Merriweather.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/NewsCycle-Merriweather.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Media\/VMM.Media.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.Media.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.Media-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/en.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/en.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/VMM.Slider.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Slider.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Slider.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Language\/locale\/pt-br.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/pt-br.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br.js",
-      "fileType" : 64
-    },
-    "\/compiled\/generator.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 1,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/generator.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Language\/locale\/bg.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/bg.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/bg.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/velvet.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/velvet.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/velvet.jpg",
-      "initialSize" : 77001,
-      "fileType" : 4096
-    },
-    "\/compiled\/js\/locale\/it.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Mixins.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Mixins.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/Mixins.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Language\/locale\/eu.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/eu.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/eu.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/tests\/test_googlespreadsheet_bc_era_ages_epoch.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet_bc_era_ages_epoch.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_bc_era_ages_epoch.html",
-      "fileType" : 512
-    },
-    "\/compiled\/js\/locale\/zh-tw.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw-min.js",
-      "fileType" : 64
-    },
-    "\/examples\/example_jquery_load.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 1,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/examples\/example_jquery_load.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/compiled\/css\/themes\/font\/PT.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PT.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Core\/VMM.Date.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Date.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Date-min.js",
-      "fileType" : 64
-    },
-    "\/tests\/test_googlespreadsheet.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Language\/locale\/lv.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/lv.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/lv.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/example_json.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/example_json.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/examples\/example_json.html",
-      "fileType" : 512
-    },
-    "\/compiled\/js\/locale\/sr.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sr.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Slider\/VMM.Slider.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/timeline-dark.png" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png",
-      "initialSize" : 15505,
-      "fileType" : 8192
-    },
-    "\/compiled\/js\/locale\/de.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/de.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/de-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/storyjs-embed-generator.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator-min.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/example_storify.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/example_storify.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/examples\/example_storify.html",
-      "fileType" : 512
-    },
-    "\/source\/js\/Core\/Core\/VMM.Library.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Library.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Library-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/iw.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/iw.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/iw-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/nl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/nl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/compiled\/css\/themes\/timeline-dark@2x.png" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark@2x.png",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark@2x.png",
-      "initialSize" : 49145,
-      "fileType" : 8192
-    },
-    "\/compiled\/css\/themes\/font\/Arvo-PTSans.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Arvo-PTSans.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg",
-      "initialSize" : 79732,
-      "fileType" : 4096
-    },
-    "\/compiled\/css\/timeline.png" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/timeline.png",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/timeline.png",
-      "initialSize" : 15404,
-      "fileType" : 8192
-    },
-    "\/dev_examples\/archive\/taylor\/butterfield.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/butterfield.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/butterfield.jpg",
-      "initialSize" : 70444,
-      "fileType" : 4096
-    },
-    "\/dev_examples\/archive\/taylor\/oscar.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/oscar.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/oscar.jpg",
-      "initialSize" : 107669,
-      "fileType" : 4096
-    },
-    "\/source\/less\/Core\/Font\/Arvo-PTSans.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Arvo-PTSans.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Arvo-PTSans.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/less\/Core\/Font\/Pacifico-Arimo.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Pacifico-Arimo.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Language\/locale\/en.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/en.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/NixieOne-Ledger.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/NixieOne-Ledger.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/dev_examples\/archive\/taylor\/burton-2.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/burton-2.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/burton-2.jpg",
-      "initialSize" : 74788,
-      "fileType" : 4096
-    },
-    "\/compiled\/index.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 1,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/index.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/compiled\/js\/locale\/es.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/it.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/it.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/tests\/test_jsonp.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_jsonp.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/tests\/test_jsonp.html",
-      "fileType" : 512
-    },
-    "\/source\/less\/Core\/Font\/PTSerif-PTSans.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PTSerif-PTSans.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/jade\/example_jsonp.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/example_jsonp.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/examples\/example_jsonp.html",
-      "fileType" : 512
-    },
-    "\/source\/less\/Core\/Font\/Merriweather-NewsCycle.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Merriweather-NewsCycle.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/js\/locale\/sv.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sv.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sv-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Core\/VMM.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM-min.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/index.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/index.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/compiled\/index.html",
-      "fileType" : 512
-    },
-    "\/source\/js\/Core\/Core\/VMM.LoadLib.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.LoadLib.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.LoadLib-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/Lekton-Molengo.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Lekton-Molengo.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lekton-Molengo.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/js\/locale\/lv.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/lv.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/lv-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/eu.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/eu.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/eu-min.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/aids.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/aids.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/aids.jpg",
-      "initialSize" : 75647,
-      "fileType" : 4096
-    },
-    "\/dev_examples\/archive\/taylor\/broadway.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/broadway.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/broadway.jpg",
-      "initialSize" : 111700,
-      "fileType" : 4096
-    },
-    "\/source\/js\/Core\/Language\/locale\/sv.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sv.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sv.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/ja.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ja.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ja-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/timeline-min.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/VMM.TImeline.Min.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/VMM.TImeline.Min.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/GFX.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/GFX.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/GFX.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/VMM.Timeline.License.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.License.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.License-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/DroidSerif-DroidSans.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/DroidSerif-DroidSans.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/tests\/test_utc_firefox.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/tests\/test_utc_firefox.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Language\/locale\/fr.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fr.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/timeline@2x.png" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/timeline@2x.png",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/timeline@2x.png",
-      "initialSize" : 49364,
-      "fileType" : 8192
-    },
-    "\/source\/less\/VMM.Timeline.TimeNav.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/VMM.Timeline.TimeNav.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/css\/VMM.Timeline.TimeNav.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Language\/locale\/ta.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ta.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ta.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/VMM.Core.less" : {
-      "ignoreWasSetByUser" : 1,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Core.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Core.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/less\/Theme\/Dark.less" : {
-      "ignoreWasSetByUser" : 1,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Theme\/Dark.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/js\/locale\/ca.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ca.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ca-min.js",
-      "fileType" : 64
-    },
-    "\/examples\/example_storify.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 1,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/examples\/example_storify.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Language\/locale\/hu.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/hu.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hu.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/BreeSerif-OpenSans.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/BreeSerif-OpenSans.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/lib\/jquery-min.js" : {
-      "ignoreWasSetByUser" : 1,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/lib\/jquery-min.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/lib\/jquery-min-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Media\/VMM.TextElement.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.TextElement.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.TextElement-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/zh-cn.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/zh-cn.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-cn.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/ar.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ar.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ar-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Typography.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Typography.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/Typography.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/dev_examples\/archive\/taylor\/index.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/index.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Slider\/VMM.Slider.Slide.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.Slide.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.Slide-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/ko.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ko.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ko-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/pt-br.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Library\/bootstrap-tooltip.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/bootstrap-tooltip.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/bootstrap-tooltip-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Language\/locale\/is.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/is.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/timeline.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/timeline.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/VMM.Timeline.DataObj.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/pt.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/pt.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/ta.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ta.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ta-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/hu.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/hu.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hu-min.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/warner.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/warner.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/warner.jpg",
-      "initialSize" : 110210,
-      "fileType" : 4096
-    },
-    "\/source\/js\/Core\/Language\/locale\/es.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/es.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/nl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl-min.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/dame.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/dame.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/dame.jpg",
-      "initialSize" : 108781,
-      "fileType" : 4096
-    },
-    "\/compiled\/js\/locale\/gl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/gl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/gl-min.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/giant.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/giant.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/giant.jpg",
-      "initialSize" : 94410,
-      "fileType" : 4096
-    },
-    "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Library\/AES.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/AES.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/AES-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/AbrilFatface-Average.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/AbrilFatface-Average.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/css\/themes\/font\/Lora-Istok.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lora-Istok.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/dev_examples\/archive\/taylor\/sun.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/sun.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/sun.jpg",
-      "initialSize" : 47058,
-      "fileType" : 4096
-    },
-    "\/source\/js\/Core\/VMM.StoryJS.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/ko.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ko.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ko.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/timeline-generator.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/timeline-generator.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Core\/VMM.FileExtention.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.FileExtention.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.FileExtention-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/af.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/af.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/af.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/hy.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/hy.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hy-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/no.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/no.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/no-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/ru.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/VMM.Timeline.js" : {
-      "ignoreWasSetByUser" : 1,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.js",
-      "outputStyle" : 0,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/timeline.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/template_html\/index.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/template_html\/index.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Language\/locale\/el.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/el.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/el.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Embed\/Embed.CDN.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.CDN.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Media\/VMM.MediaType.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaType.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaType-min.js",
-      "fileType" : 64
-    },
-    "\/tests\/test_googlespreadsheet_bc_era_ages_epoch.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_bc_era_ages_epoch.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Language\/locale\/da.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/da.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/da.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Language\/locale\/sr-cy.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sr-cy.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-cy.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/sections\/embed-generator.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/jade\/sections\/embed-generator.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/source\/jade\/sections\/embed-generator.html",
-      "fileType" : 512
-    },
-    "\/tests\/test_jsonp.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/tests\/test_jsonp.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/VMM.StoryJS.License.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.License.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.License-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font.Default.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font.Default.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/Font.Default.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/js\/locale\/zh-cn.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-cn.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-cn-min.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/retire.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/retire.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/retire.jpg",
-      "initialSize" : 88811,
-      "fileType" : 4096
-    },
-    "\/source\/less\/Core\/Variables.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Variables.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/Variables.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/jade\/tests\/test_extra_html.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_extra_html.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/tests\/test_extra_html.html",
-      "fileType" : 512
-    },
-    "\/source\/jade\/example_googlespreadsheet.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/example_googlespreadsheet.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/examples\/example_googlespreadsheet.html",
-      "fileType" : 512
-    },
-    "\/dev_examples\/archive\/taylor\/fisher.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fisher.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fisher.jpg",
-      "initialSize" : 93019,
-      "fileType" : 4096
-    },
-    "\/dev_examples\/archive\/taylor\/burton.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/burton.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/burton.jpg",
-      "initialSize" : 85307,
-      "fileType" : 4096
-    },
-    "\/source\/js\/Core\/Language\/locale\/tl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/tl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tl.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/VMM.Timeline.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/VMM.Timeline.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/timeline.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Language\/locale\/ar.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ar.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ar.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/PoiretOne-Molengo.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PoiretOne-Molengo.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Language\/VMM.Language.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/VMM.Language.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Language\/VMM.Language-min.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/born.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/born.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/born.jpg",
-      "initialSize" : 50360,
-      "fileType" : 4096
-    },
-    "\/source\/js\/Core\/Language\/locale\/pl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/pl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pl.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/storyjs-embed.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Media\/VMM.ExternalAPI.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.ExternalAPI.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.ExternalAPI-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/tr.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/tr.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tr.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/fi.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fi.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fi-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/id.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/ka.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ka.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ka.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/fortensky.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fortensky.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fortensky.jpg",
-      "initialSize" : 99172,
-      "fileType" : 4096
-    },
-    "\/compiled\/js\/locale\/tl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/tl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tl-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Library\/Leaflet.js" : {
-      "ignoreWasSetByUser" : 1,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/Leaflet.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/Leaflet-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/no.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/no.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/no.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/hy.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/hy.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hy.js",
-      "fileType" : 64
-    },
-    "\/tests\/test_googlespreadsheet_minutes.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_minutes.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/js\/Core\/Language\/locale\/ru.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ru.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/id.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/id.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/fi.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fi.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fi.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/woolfe.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/woolfe.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/woolfe.jpg",
-      "initialSize" : 113102,
-      "fileType" : 4096
-    },
-    "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/compiled\/css\/themes\/font\/Lekton-Molengo.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lekton-Molengo.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/compiled\/js\/storyjs-embed-cdn.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/iw.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/iw.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/iw.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/tests\/test_googlespreadsheet_biblical_ad.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet_biblical_ad.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_biblical_ad.html",
-      "fileType" : 512
-    },
-    "\/compiled\/css\/themes\/timeline-texture.png" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-texture.png",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-texture.png",
-      "initialSize" : 42976,
-      "fileType" : 8192
-    },
-    "\/source\/jade\/tests\/test_googlespreadsheet_minutes.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet_minutes.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_minutes.html",
-      "fileType" : 512
-    },
-    "\/source\/js\/Core\/Language\/locale\/ca.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ca.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ca.js",
-      "fileType" : 64
-    },
-    "\/tests\/test_extra_html.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/tests\/test_extra_html.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/less\/Core\/Reset.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Reset.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/Reset.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/js\/locale\/bg.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/bg.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/bg-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/sr-cy.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-cy.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-cy-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/fo.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fo.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js",
-      "fileType" : 64
-    },
-    "\/dev_examples\/archive\/taylor\/todd.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/todd.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/todd.jpg",
-      "initialSize" : 103878,
-      "fileType" : 4096
-    },
-    "\/tests\/test_iframe_640.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/tests\/test_iframe_640.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/dev_examples\/archive\/taylor\/kennedy.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/kennedy.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/kennedy.jpg",
-      "initialSize" : 84946,
-      "fileType" : 4096
-    },
-    "\/source\/less\/Core\/Font\/PlayfairDisplay-Muli.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PlayfairDisplay-Muli.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Embed\/Embed.CDN.Generator.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.CDN.Generator.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/compiled\/js\/locale\/fo.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo-min.js",
-      "fileType" : 64
-    },
-    "\/examples\/example_json.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 1,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/examples\/example_json.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/source\/jade\/tests\/test_googlespreadsheet.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet.html",
-      "fileType" : 512
-    },
-    "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/compiled\/js\/locale\/tr.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/tr.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tr-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/pl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pl-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/cz.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/cz.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/tests\/test_utc_firefox.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_utc_firefox.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/tests\/test_utc_firefox.html",
-      "fileType" : 512
-    },
-    "\/source\/less\/Core\/Font\/Lora-Istok.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Lora-Istok.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lora-Istok.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Media\/VMM.MediaElement.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaElement.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaElement-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/sl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sl.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Core\/VMM.Browser.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Browser.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Browser-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/VMM.Timeline.TimeNav.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.TimeNav.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.TimeNav-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/dark.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Language\/locale\/de.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/de.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/de.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/Georgia-Helvetica.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Georgia-Helvetica.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/jade\/includes\/mixins.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/jade\/includes\/mixins.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/source\/jade\/includes\/mixins.html",
-      "fileType" : 512
-    },
-    "\/source\/less\/Core\/Font\/PT.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PT.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PT.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/compiled\/js\/locale\/fr.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr-min.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/tests\/test_iframe_640.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_iframe_640.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/tests\/test_iframe_640.html",
-      "fileType" : 512
-    },
-    "\/source\/less\/Core\/VMM.Tooltip.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Tooltip.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Tooltip.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/dev_examples\/archive\/taylor\/final.jpg" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/final.jpg",
-      "processed" : 0,
-      "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/final.jpg",
-      "initialSize" : 56926,
-      "fileType" : 4096
-    },
-    "\/source\/js\/Core\/Language\/locale\/zh-tw.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/zh-tw.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Language\/locale\/sr.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sr.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr.js",
-      "fileType" : 64
-    },
-    "\/examples\/example_jsonp.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/examples\/example_jsonp.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/source\/js\/Core\/Language\/locale\/ja.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ja.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ja.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Slider\/VMM.DragSlider.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.DragSlider.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.DragSlider-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 16
-    },
-    "\/compiled\/js\/locale\/sk.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sk.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sk-min.js",
-      "fileType" : 64
-    },
-    "\/source\/less\/Core\/Font\/Rancho-Gudea.less" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Rancho-Gudea.less",
-      "outputStyle" : 1,
-      "shouldRunBless" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Rancho-Gudea.css",
-      "strictImports" : 0,
-      "fileType" : 1,
-      "debugStyle" : 0
-    },
-    "\/source\/js\/Core\/Core\/VMM.Core.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Core.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Core-min.js",
-      "fileType" : 64
-    },
-    "\/source\/jade\/includes\/ascii.jade" : {
-      "ignoreWasSetByUser" : 1,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/jade\/includes\/ascii.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/source\/jade\/includes\/ascii.html",
-      "fileType" : 512
-    },
-    "\/source\/jade\/generator.jade" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 1,
-      "inputAbbreviatedPath" : "\/source\/jade\/generator.jade",
-      "outputStyle" : 0,
-      "compileDebug" : 1,
-      "outputAbbreviatedPath" : "\/compiled\/generator.html",
-      "fileType" : 512
-    },
-    "\/dev_examples\/archive\/kitchen-sink\/index.html" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 0,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/dev_examples\/archive\/kitchen-sink\/index.html",
-      "outputAbbreviatedPath" : "No Output Path",
-      "fileType" : 2048
-    },
-    "\/compiled\/js\/locale\/cz.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz-min.js",
-      "fileType" : 64
-    },
-    "\/compiled\/js\/locale\/sl.js" : {
-      "ignoreWasSetByUser" : 0,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sl.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sl-min.js",
-      "fileType" : 64
-    },
-    "\/source\/js\/Core\/Library\/jQuery\/easing.js" : {
-      "ignoreWasSetByUser" : 1,
-      "ignore" : 1,
-      "hidden" : 0,
-      "outputPathIsSetByUser" : 0,
-      "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/jQuery\/easing.js",
-      "outputStyle" : 1,
-      "syntaxCheckerStyle" : 0,
-      "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/jQuery\/easing-min.js",
-      "fileType" : 64
-    }
-  },
-  "manualImportLinks" : [
-
-  ],
-  "projectSettings" : {
-    "hamlNoEscapeInAttributes" : 0,
-    "kitAutoOutputPathStyle" : 0,
-    "lessOutputStyle" : 1,
-    "hamlAutoOutputPathReplace2" : "",
-    "draggedImportConcatenationStyle" : 1,
-    "jadeAutoOutputPathStyle" : 0,
-    "hamlEscapeHTMLCharacters" : 0,
-    "javascriptAutoOutputPathStyle" : 0,
-    "hamlOutputFormat" : 2,
-    "stylusAutoOutputPathReplace1" : "stylus",
-    "lessStrictImports" : 0,
-    "sassAutoOutputPathStyle" : 2,
-    "stylusAutoOutputPathReplace2" : "css",
-    "lessAutoOutputPathStyle" : 2,
-    "genericWebpageFileExtensionsString" : "html, xhtml, htm, shtml, shtm, php, jsp, asp, aspx, erb, ctp",
-    "coffeeMinifyOutput" : 1,
-    "javascriptOutputSuffix" : "-min",
-    "jadeOutputStyle" : 0,
-    "coffeeAutoOutputPathStyle" : 0,
-    "autoSyncProjectSettingsFile" : 1,
-    "lessAutoOutputPathReplace1" : "less",
-    "jadeAutoOutputPathReplace1" : "",
-    "lessAutoOutputPathRelativePath" : "..\/css",
-    "hamlAutoOutputPathRelativePath" : "",
-    "jsCheckerReservedNamesString" : "",
-    "javascriptOutputStyle" : 1,
-    "stylusDebugStyle" : 0,
-    "hamlUseCDATA" : false,
-    "hamlAutoOutputPathStyle" : 0,
-    "sassDebugStyle" : 0,
-    "hamlOutputStyle" : 0,
-    "stylusAutoOutputPathRelativePath" : "..\/css",
-    "jsCheckerIndent" : 4,
-    "kitAutoOutputPathRelativePath" : "",
-    "lessAutoOutputPathReplace2" : "css",
-    "jadeAutoOutputPathReplace2" : "",
-    "shouldRunBless" : 0,
-    "stylusAutoOutputPathStyle" : 2,
-    "coffeeCheckOutputStyle" : 1,
-    "slimOutputStyle" : 1,
-    "javascriptSyntaxCheckerStyle" : 0,
-    "sassAutoOutputPathReplace1" : "sass",
-    "slimAutoOutputPathReplace1" : "",
-    "sassOutputStyle" : 0,
-    "coffeeAutoOutputPathRelativePath" : "",
-    "slimCompileOnly" : 0,
-    "slimLogicless" : 0,
-    "uglifyIndent" : 4,
-    "jadeAutoOutputPathRelativePath" : "",
-    "hamlUseUnixNewlines" : 0,
-    "hamlAutoOutputPathReplace1" : "",
-    "javascriptAutoOutputPathReplace1" : "",
-    "stylusOutputStyle" : 0,
-    "javascriptAutoOutputPathReplace2" : "",
-    "sassAutoOutputPathRelativePath" : "..\/css",
-    "coffeeAutoOutputPathReplace1" : "",
-    "hamlUseDoubleQuotes" : 0,
-    "coffeeAutoOutputPathReplace2" : "",
-    "kitAutoOutputPathReplace1" : "",
-    "uglifyReservedNamesString" : "",
-    "coffeeOutputStyle" : 0,
-    "slimAutoOutputPathRelativePath" : "",
-    "jsHintFlags" : {
-      "onecase" : 0,
-      "immed" : 0,
-      "debug" : 0,
-      "evil" : 0,
-      "strict" : 0,
-      "multistr" : 0,
-      "couch" : 0,
-      "wsh" : 0,
-      "laxbreak" : 0,
-      "rhino" : 0,
-      "globalstrict" : 0,
-      "supernew" : 0,
-      "laxcomma" : 0,
-      "asi" : 0,
-      "es5" : 0,
-      "scripturl" : 0,
-      "dojo" : 0,
-      "bitwise" : 1,
-      "eqeqeq" : 1,
-      "shadow" : 0,
-      "expr" : 0,
-      "noarg" : 1,
-      "newcap" : 0,
-      "forin" : 0,
-      "regexdash" : 0,
-      "browser" : 1,
-      "node" : 0,
-      "eqnull" : 1,
-      "mootools" : 0,
-      "iterator" : 0,
-      "undef" : 1,
-      "latedef" : 1,
-      "nonstandard" : 0,
-      "trailing" : 1,
-      "jquery" : 1,
-      "loopfunc" : 0,
-      "boss" : 1,
-      "nonew" : 1,
-      "funcscope" : 0,
-      "regexp" : 1,
-      "lastsemic" : 0,
-      "smarttabs" : 0,
-      "devel" : 0,
-      "esnext" : 0,
-      "sub" : 0,
-      "curly" : 1,
-      "prototypejs" : 0,
-      "proto" : 0,
-      "plusplus" : 0,
-      "noempty" : 0
-    },
-    "jsLintFlags" : {
-      "white" : 1,
-      "bitwise" : 0,
-      "regexp" : 0,
-      "vars" : 0,
-      "anon" : 1,
-      "sub" : 0,
-      "stupid" : 1,
-      "nomen" : 0,
-      "unparam" : 0,
-      "newcap" : 1,
-      "'continue'" : 0,
-      "sloppy" : 0,
-      "fragment" : 1,
-      "undef" : 0,
-      "es5" : 0,
-      "browser" : 1,
-      "widget" : 0,
-      "properties" : 0,
-      "forin" : 0,
-      "plusplus" : 1,
-      "debug" : 0,
-      "eqeq" : 1,
-      "confusion" : 0,
-      "evil" : 0,
-      "on" : 1,
-      "cap" : 1,
-      "windows" : 0,
-      "devel" : 0,
-      "rhino" : 0,
-      "node" : 0,
-      "css" : 1
-    },
-    "uglifyFlags" : {
-      "no-mangle-functions" : 0,
-      "no-mangle" : 0,
-      "no-copyright" : 0,
-      "no-dead-code" : 0,
-      "inline-script" : 0,
-      "ascii" : 0,
-      "unsafe" : 0,
-      "mangle-toplevel" : 0,
-      "no-seqs" : 1,
-      "beautify" : 0,
-      "lift-vars" : 0,
-      "consolidate-primitive-values" : false,
-      "no-squeeze" : 0
-    },
-    "sassAutoOutputPathReplace2" : "css",
-    "slimAutoOutputPathReplace2" : "",
-    "jadeCompileDebug" : 1,
-    "slimRailsCompatible" : 0,
-    "kitAutoOutputPathReplace2" : "",
-    "lessDebugStyle" : 0,
-    "javascriptAutoOutputPathRelativePath" : "",
-    "slimAutoOutputPathStyle" : 0
-  },
-  "projectAttributes" : {
-    "bourbonEnabled" : 0,
-    "displayValue" : "TimelineJS",
-    "displayValueWasSetByUser" : 0,
-    "compassEnabled" : 0
-  }
-}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/dark.css b/public/opac/TimelineJS-2.25/compiled/css/themes/dark.css
deleted file mode 100644
index 773e8eacc7b7b2de2a229e02e4c1c6095b08e2af..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/dark.css
+++ /dev/null
@@ -1,284 +0,0 @@
-.vco-storyjs{}.vco-storyjs div *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
-.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6,.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs pre,.vco-storyjs a,.vco-storyjs abbr,.vco-storyjs acronym,.vco-storyjs address,.vco-storyjs cite,.vco-storyjs code,.vco-storyjs del,.vco-storyjs dfn,.vco-storyjs em,.vco-storyjs img,.vco-storyjs q,.vco-storyjs s,.vco-storyjs samp,.vco-storyjs small,.vco-storyjs strike,.vco-storyjs strong,.vco-storyjs sub,.vco-storyjs sup,.vco-storyjs tt,.vco-storyjs var,.vco-storyjs dd,.vco-storyjs dl,.vco-storyjs dt,.vco-storyjs li,.vco-storyjs ol,.vco-storyjs ul,.vco-storyjs fieldset,.vco-storyjs form,.vco-storyjs label,.vco-storyjs legend,.vco-storyjs button,.vco-storyjs table,.vco-storyjs caption,.vco-storyjs tbody,.vco-storyjs tfoot,.vco-storyjs thead,.vco-storyjs tr,.vco-storyjs th,.vco-storyjs td,.vco-storyjs .vco-container,.vco-storyjs .content-container,.vco-storyjs .media,.vco-storyjs .text,.vco-storyjs .vco-slider,.vco-storyjs .slider,.vco-storyjs .date,.vco-storyjs .title,.vco-storyjs .messege,.vco-storyjs .map,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .vco-feedback,.vco-storyjs .vco-feature,.vco-storyjs .toolbar,.vco-storyjs .marker,.vco-storyjs .dot,.vco-storyjs .line,.vco-storyjs .flag,.vco-storyjs .time,.vco-storyjs .era,.vco-storyjs .major,.vco-storyjs .minor,.vco-storyjs .vco-navigation,.vco-storyjs .start,.vco-storyjs .active{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;width:auto;float:none;}
-.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{clear:none;}
-.vco-storyjs table{border-collapse:collapse;border-spacing:0;}
-.vco-storyjs ol,.vco-storyjs ul{list-style:none;}
-.vco-storyjs q:before,.vco-storyjs q:after,.vco-storyjs blockquote:before,.vco-storyjs blockquote:after{content:"";}
-.vco-storyjs a:focus{outline:thin dotted;}
-.vco-storyjs a:hover,.vco-storyjs a:active{outline:0;}
-.vco-storyjs article,.vco-storyjs aside,.vco-storyjs details,.vco-storyjs figcaption,.vco-storyjs figure,.vco-storyjs footer,.vco-storyjs header,.vco-storyjs hgroup,.vco-storyjs nav,.vco-storyjs section{display:block;}
-.vco-storyjs audio,.vco-storyjs canvas,.vco-storyjs video{display:inline-block;*display:inline;*zoom:1;}
-.vco-storyjs audio:not([controls]){display:none;}
-.vco-storyjs div{max-width:none;}
-.vco-storyjs sub,.vco-storyjs sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
-.vco-storyjs sup{top:-0.5em;}
-.vco-storyjs sub{bottom:-0.25em;}
-.vco-storyjs img{border:0;-ms-interpolation-mode:bicubic;}
-.vco-storyjs button,.vco-storyjs input,.vco-storyjs select,.vco-storyjs textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;}
-.vco-storyjs button,.vco-storyjs input{line-height:normal;*overflow:visible;}
-.vco-storyjs button::-moz-focus-inner,.vco-storyjs input::-moz-focus-inner{border:0;padding:0;}
-.vco-storyjs button,.vco-storyjs input[type="button"],.vco-storyjs input[type="reset"],.vco-storyjs input[type="submit"]{cursor:pointer;-webkit-appearance:button;}
-.vco-storyjs input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
-.vco-storyjs input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
-.vco-storyjs textarea{overflow:auto;vertical-align:top;}
-.vco-storyjs{font-family:"Georgia",Times New Roman,Times,serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:"Georgia",Times New Roman,Times,serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:"Georgia",Times New Roman,Times,serif;}
-.timeline-tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
-.thumbnail{background-image:url(themes/timeline-dark.png?v3.4);}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.thumbnail{background-image:url(themes/timeline-dark@2x.png?v4.3);background-size:352px 260px;}}.vco-storyjs{font-size:15px;font-weight:normal;line-height:20px;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;}.vco-storyjs p{font-size:15px;font-weight:normal;line-height:20px;margin-bottom:20px;color:#aaaaaa;}.vco-storyjs p small{font-size:12px;line-height:17px;}
-.vco-storyjs p:first-child{margin-top:20px;}
-.vco-storyjs .vco-navigation p{color:#999999;}
-.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{margin-bottom:15px;}
-.vco-storyjs .vco-feature p{color:#aaaaaa;}
-.vco-storyjs .vco-feature blockquote,.vco-storyjs .vco-feature blockquote p{color:#ffffff;}
-.vco-storyjs .date a,.vco-storyjs .title a{color:#999999;}
-.vco-storyjs .hyphenate{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;}
-.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{font-weight:normal;color:#ffffff;text-transform:none;}.vco-storyjs h1 a,.vco-storyjs h2 a,.vco-storyjs h3 a,.vco-storyjs h4 a,.vco-storyjs h5 a,.vco-storyjs h6 a{color:#999999;}
-.vco-storyjs h1 small,.vco-storyjs h2 small,.vco-storyjs h3 small,.vco-storyjs h4 small,.vco-storyjs h5 small,.vco-storyjs h6 small{color:#999999;}
-.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-weight:bold;}
-.vco-storyjs h2.start{font-size:36px;line-height:38px;margin-bottom:15px;}
-.vco-storyjs h1{margin-bottom:15px;font-size:32px;line-height:34px;}.vco-storyjs h1 small{font-size:18px;}
-.vco-storyjs h2{margin-bottom:15px;font-size:28px;line-height:30px;}.vco-storyjs h2 small{font-size:14px;line-height:16px;}
-.vco-storyjs h2.date{font-size:16px;line-height:18px;margin-bottom:3.75px;color:#999999;}
-.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{line-height:40px;}.vco-storyjs h3 .active,.vco-storyjs h4 .active,.vco-storyjs h5 .active,.vco-storyjs h6 .active{color:#0bd4e3;}
-.vco-storyjs h3{font-size:28px;line-height:30px;}.vco-storyjs h3 small{font-size:14px;}
-.vco-storyjs h4{font-size:20px;line-height:22px;}.vco-storyjs h4 small{font-size:12px;}
-.vco-storyjs h5{font-size:16px;line-height:18px;}
-.vco-storyjs h6{font-size:13px;line-height:14px;text-transform:uppercase;}
-.vco-storyjs strong{font-weight:bold;font-style:inherit;}
-.vco-storyjs em{font-style:italic;font-weight:inherit;}
-.vco-storyjs Q{quotes:'„' '“';font-style:italic;}
-.vco-storyjs blockquote,.vco-storyjs blockquote p{font-size:24px;line-height:32px;text-align:left;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#ffffff;}
-.vco-storyjs .credit{color:#999999;text-align:right;font-size:10px;line-height:10px;display:block;margin:0 auto;clear:both;}
-.vco-storyjs .caption{text-align:left;margin-top:5px;color:#aaaaaa;font-size:11px;line-height:14px;clear:both;}
-.vco-storyjs.vco-right-to-left h1,.vco-storyjs.vco-right-to-left h2,.vco-storyjs.vco-right-to-left h3,.vco-storyjs.vco-right-to-left h4,.vco-storyjs.vco-right-to-left h5,.vco-storyjs.vco-right-to-left h6,.vco-storyjs.vco-right-to-left p,.vco-storyjs.vco-right-to-left blockquote,.vco-storyjs.vco-right-to-left pre,.vco-storyjs.vco-right-to-left a,.vco-storyjs.vco-right-to-left abbr,.vco-storyjs.vco-right-to-left acronym,.vco-storyjs.vco-right-to-left address,.vco-storyjs.vco-right-to-left cite,.vco-storyjs.vco-right-to-left code,.vco-storyjs.vco-right-to-left del,.vco-storyjs.vco-right-to-left dfn,.vco-storyjs.vco-right-to-left em,.vco-storyjs.vco-right-to-left img,.vco-storyjs.vco-right-to-left q,.vco-storyjs.vco-right-to-left s,.vco-storyjs.vco-right-to-left samp,.vco-storyjs.vco-right-to-left small,.vco-storyjs.vco-right-to-left strike,.vco-storyjs.vco-right-to-left strong,.vco-storyjs.vco-right-to-left sub,.vco-storyjs.vco-right-to-left sup,.vco-storyjs.vco-right-to-left tt,.vco-storyjs.vco-right-to-left var,.vco-storyjs.vco-right-to-left dd,.vco-storyjs.vco-right-to-left dl,.vco-storyjs.vco-right-to-left dt,.vco-storyjs.vco-right-to-left li,.vco-storyjs.vco-right-to-left ol,.vco-storyjs.vco-right-to-left ul,.vco-storyjs.vco-right-to-left fieldset,.vco-storyjs.vco-right-to-left form,.vco-storyjs.vco-right-to-left label,.vco-storyjs.vco-right-to-left legend,.vco-storyjs.vco-right-to-left button,.vco-storyjs.vco-right-to-left table,.vco-storyjs.vco-right-to-left caption,.vco-storyjs.vco-right-to-left tbody,.vco-storyjs.vco-right-to-left tfoot,.vco-storyjs.vco-right-to-left thead,.vco-storyjs.vco-right-to-left tr,.vco-storyjs.vco-right-to-left th,.vco-storyjs.vco-right-to-left td{direction:rtl;}
-.timeline-tooltip{position:absolute;z-index:205;display:block;visibility:visible;padding:5px;opacity:0;filter:alpha(opacity=0);font-size:15px;font-weight:bold;line-height:20px;font-size:12px;line-height:12px;}
-.timeline-tooltip.in{opacity:0.8;filter:alpha(opacity=80);}
-.timeline-tooltip.top{margin-top:-2px;}
-.timeline-tooltip.right{margin-left:2px;}
-.timeline-tooltip.bottom{margin-top:2px;}
-.timeline-tooltip.left{margin-left:-2px;}
-.timeline-tooltip.top .timeline-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
-.timeline-tooltip.left .timeline-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;}
-.timeline-tooltip.bottom .timeline-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;}
-.timeline-tooltip.right .timeline-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;}
-.timeline-tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
-.timeline-tooltip-arrow{position:absolute;width:0;height:0;}
-@media only screen and (max-width:480px),only screen and (max-device-width:480px){.vco-slider .nav-next,.vco-slider .nav-previous{display:none;}}@media (max-width:640px){}.vco-skinny .vco-slider .slider-item .content .layout-text-media .text .container{text-align:center !important;}
-.vco-skinny .vco-slider .slider-item .content .layout-text-media h2,.vco-skinny .vco-slider .slider-item .content .layout-text-media h3{display:block !important;width:100% !important;text-align:center !important;}
-.vco-skinny .vco-slider .slider-item .content .content-container{display:block;}.vco-skinny .vco-slider .slider-item .content .content-container .text{width:100%;max-width:100%;min-width:120px;display:block;}.vco-skinny .vco-slider .slider-item .content .content-container .text .container{display:block;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;}
-.vco-skinny .vco-slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:none;}.vco-skinny .vco-slider .slider-item .content .content-container .media .media-wrapper{margin-left:0px;margin-right:0px;width:100%;display:block;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous,.vco-skinny.vco-notouch .vco-slider .nav-next{z-index:203;}.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .title{filter:alpha(opacity=1);-khtml-opacity:0.01;-moz-opacity:0.01;opacity:0.01;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .icon{filter:alpha(opacity=15);-khtml-opacity:0.15;-moz-opacity:0.15;opacity:0.15;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px 0;width:24px;height:24px;overflow:hidden;margin-left:10px;}
-.vco-skinny.vco-notouch .vco-slider .nav-next .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px 0;width:24px;height:24px;overflow:hidden;margin-left:66px;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous:hover,.vco-skinny.vco-notouch .vco-slider .nav-next:hover{color:#aaaaaa !important;background-color:#aaaaaa;background-color:rgba(255, 255, 255, 0.65);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;font-weight:bold;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{padding-bottom:5px;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{padding-left:5px;padding-right:5px;}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.vco-skinny.vco-notouch .vco-slider .nav-previous .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-208px 0;width:24px;height:24px;overflow:hidden;} .vco-skinny.vco-notouch .vco-slider .nav-next .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-232px 0;width:24px;height:24px;overflow:hidden;}}.vco-slider{width:100%;height:100%;overflow:hidden;}.vco-slider .slider-container-mask{text-align:center;width:100%;height:100%;overflow:hidden;}.vco-slider .slider-container-mask .slider-container{position:absolute;top:0px;left:-2160px;width:100%;height:100%;text-align:center;display:block;}.vco-slider .slider-container-mask .slider-container .slider-item-container{display:table-cell;vertical-align:middle;}
-.vco-notouch .vco-slider .nav-previous:hover,.vco-notouch .vco-slider .nav-next:hover{color:#aaaaaa;cursor:pointer;}
-.vco-notouch .vco-slider .nav-previous:hover .icon{margin-left:10px;}
-.vco-notouch .vco-slider .nav-next:hover .icon{margin-left:66px;}
-.vco-notouch .vco-slider .slider-item .content .content-container .media .media-container .wikipedia h4 a:hover{color:#0bd4e3;text-decoration:none;}
-.vco-notouch .vco-slider .slider-item .content .content-container .created-at:hover{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover{text-decoration:none;}.vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover h5{text-decoration:underline;}
-.vco-slider img,.vco-slider embed,.vco-slider object,.vco-slider video,.vco-slider iframe{max-width:100%;}
-.vco-slider .nav-previous,.vco-slider .nav-next{position:absolute;top:0px;width:100px;color:#DBDBDB;font-size:11px;}.vco-slider .nav-previous .nav-container,.vco-slider .nav-next .nav-container{height:100px;width:100px;position:absolute;}
-.vco-slider .nav-previous .icon,.vco-slider .nav-next .icon{margin-top:12px;margin-bottom:15px;}
-.vco-slider .nav-previous .date,.vco-slider .nav-next .date,.vco-slider .nav-previous .title,.vco-slider .nav-next .title{line-height:14px;}.vco-slider .nav-previous .date a,.vco-slider .nav-next .date a,.vco-slider .nav-previous .title a,.vco-slider .nav-next .title a{color:#999999;}
-.vco-slider .nav-previous .date small,.vco-slider .nav-next .date small,.vco-slider .nav-previous .title small,.vco-slider .nav-next .title small{display:none;}
-.vco-slider .nav-previous .date,.vco-slider .nav-next .date{font-size:13px;line-height:13px;font-weight:bold;text-transform:uppercase;margin-bottom:5px;}
-.vco-slider .nav-previous .title,.vco-slider .nav-next .title{font-size:11px;line-height:13px;}
-.vco-slider .nav-previous{float:left;text-align:left;}.vco-slider .nav-previous .icon{margin-left:15px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px 0;width:24px;height:24px;overflow:hidden;}
-.vco-slider .nav-previous .date,.vco-slider .nav-previous .title{text-align:left;padding-left:15px;}
-.vco-slider .nav-next{float:right;text-align:right;}.vco-slider .nav-next .icon{margin-left:61px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px 0;width:24px;height:24px;overflow:hidden;}
-.vco-slider .nav-next .date,.vco-slider .nav-next .title{text-align:right;padding-right:15px;}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.vco-slider .nav-previous .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-160px 0;width:24px;height:24px;overflow:hidden;} .vco-slider .nav-next .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-184px 0;width:24px;height:24px;overflow:hidden;}}.vco-slider .slider-item{position:absolute;width:700px;height:100%;padding:0px;margin:0px;display:table;overflow-y:auto;}.vco-slider .slider-item .content{display:table-cell;vertical-align:middle;}.vco-slider .slider-item .content .pad-top .text .container{padding-top:15px;}
-.vco-slider .slider-item .content .pad-right .text .container{padding-right:15px;}
-.vco-slider .slider-item .content .pad-left .text .container{padding-left:30px;}
-.vco-slider .slider-item .content .pad-left .media.text-media .media-wrapper .media-container{border:none;background-color:#1a1a1a;}
-.vco-slider .slider-item .content .content-container{display:table;vertical-align:middle;}.vco-slider .slider-item .content .content-container .text{width:40%;max-width:50%;min-width:120px;display:table-cell;vertical-align:middle;}.vco-slider .slider-item .content .content-container .text .container{display:table-cell;vertical-align:middle;text-align:left;}.vco-slider .slider-item .content .content-container .text .container p{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;}
-.vco-slider .slider-item .content .content-container .text .container h2.date{font-size:15px;line-height:15px;font-weight:normal;}
-.vco-slider .slider-item .content .content-container .text .container .slide-tag{font-size:11px;font-weight:bold;color:#1a1a1a;background-color:#cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;vertical-align:baseline;white-space:nowrap;line-height:11px;padding:1px 3px 1px;margin-left:7.5px;margin-bottom:7.5px;}
-.vco-slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:left;}.vco-slider .slider-item .content .content-container .media .media-wrapper{display:inline-block;margin-left:auto;margin-right:auto;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container{display:inline-block;line-height:0px;padding:0px;max-height:100%;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image img{border:1px solid;border-color:#333333 #999999 #999999 #333333;background-color:#1a1a1a;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame iframe{background-color:#1a1a1a;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .soundcloud{border:0;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image{display:inline-block;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow{position:relative;z-index:1;background:#1a1a1a;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:before,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#999999;-webkit-box-shadow:0 15px 10px #999999;-moz-box-shadow:0 15px 10px #999999;box-shadow:0 15px 10px #999999;-webkit-transform:rotate(-2deg);-moz-transform:rotate(-2deg);-ms-transform:rotate(-2deg);-o-transform:rotate(-2deg);transform:rotate(-2deg);}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow::after{-webkit-transform:rotate(2deg);-moz-transform:rotate(2deg);-ms-transform:rotate(2deg);-o-transform:rotate(2deg);transform:rotate(2deg);right:10px;left:auto;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text{display:table;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container{display:table-cell;vertical-align:middle;font-size:15px;line-height:20px;color:#aaaaaa;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container p{margin-bottom:20px;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia{font-size:15px;line-height:20px;text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia .wiki-source{margin-bottom:15px;font-size:13px;line-height:19px;font-style:italic;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4{border-bottom:1px solid #333333;margin-bottom:5px;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4 a{color:#ffffff;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia p{font-size:13px;line-height:19px;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map{line-height:normal;z-index:200;text-align:left;background-color:#1a1a1a;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map img{max-height:none !important;max-width:none !important;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .google-map{height:100%;width:100%;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution{position:absolute;z-index:201;bottom:0px;width:100%;overflow:hidden;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text{height:19px;overflow:hidden;-webkit-user-select:none;line-height:19px;margin-right:60px;padding-left:65px;font-family:Arial,sans-serif;font-size:10px;color:#444;white-space:nowrap;color:#1a1a1a;text-shadow:1px 1px 1px #aaaaaa;text-align:center;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text a{color:#1a1a1a !important;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .credit{color:#999999;text-align:right;display:block;margin:0 auto;margin-top:6px;font-size:10px;line-height:13px;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .caption{text-align:left;margin-top:10px;color:#aaaaaa;font-size:11px;line-height:14px;text-rendering:optimizeLegibility;word-wrap:break-word;}
-.vco-slider .slider-item .content .content-container .media.text-media .media-wrapper .media-container{border:none;background-color:#1a1a1a;}
-.vco-slider .slider-item .content .content-container .created-at{width:24px;height:24px;overflow:hidden;margin-left:7.5px;margin-top:2px;display:inline-block;float:right;filter:alpha(opacity=25);-khtml-opacity:0.25;-moz-opacity:0.25;opacity:0.25;}
-.vco-slider .slider-item .content .content-container .storify .created-at{background-repeat:no-repeat;background-position:-328px -96px;}
-.vco-slider .slider-item .content .content-container .twitter .created-at{background-repeat:no-repeat;background-position:-256px -24px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content{font-size:13px;line-height:19px;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#aaaaaa;}.vco-slider .slider-item .content .content-container .googleplus .googleplus-content p{font-size:13px;line-height:19px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-title{font-size:24px;line-height:32px;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#ffffff;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-annotation{font-size:15px;line-height:20px;color:#ffffff;border-bottom:1px solid #e3e3e3;padding-bottom:7.5px;margin-bottom:7.5px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments{border-top:1px solid #e3e3e3;padding-top:15px;margin-top:15px;border-bottom:1px solid #e3e3e3;padding-bottom:15px;margin-bottom:15px;*zoom:1;}.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:before,.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:after{display:table;content:"";}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:after{clear:both;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments h5{margin-bottom:5px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments div{width:50%;padding-left:15px;display:inline-block;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments p{font-size:11px;line-height:14px;margin-bottom:5px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments img{float:left;display:block;bottom:0;left:0;margin:auto;position:relative;right:0;top:0;width:40%;}
-.vco-slider .slider-item .content .content-container .googleplus .proflinkPrefix{color:#0bd4e3;}
-.vco-slider .slider-item .content .content-container .googleplus .created-at{background-repeat:no-repeat;background-position:-208px -72px;}
-.vco-slider .slider-item .content .content-container .twitter,.vco-slider .slider-item .content .content-container .plain-text-quote,.vco-slider .slider-item .content .content-container .storify,.vco-slider .slider-item .content .content-container .googleplus{text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.vco-slider .slider-item .content .content-container .twitter blockquote,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote,.vco-slider .slider-item .content .content-container .storify blockquote,.vco-slider .slider-item .content .content-container .googleplus blockquote{color:#aaaaaa;}.vco-slider .slider-item .content .content-container .twitter blockquote p,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote p,.vco-slider .slider-item .content .content-container .storify blockquote p,.vco-slider .slider-item .content .content-container .googleplus blockquote p{font-size:24px;line-height:32px;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#ffffff;}
-.vco-slider .slider-item .content .content-container .twitter blockquote .quote-mark,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote .quote-mark,.vco-slider .slider-item .content .content-container .storify blockquote .quote-mark,.vco-slider .slider-item .content .content-container .googleplus blockquote .quote-mark{color:#aaaaaa;}
-.vco-slider .slider-item .content .content-container .twitter blockquote{font-size:15px;}.vco-slider .slider-item .content .content-container .twitter blockquote p{font-size:24px;}
-.vco-slider .slider-item .content .content-container.layout-text-media .text-media{border-top:1px solid #e3e3e3;padding-top:15px;padding-right:0;}
-.vco-slider .slider-item .content .content-container.layout-text-media.pad-left .text-media{padding-right:15px;padding-top:0;border-right:1px solid #e3e3e3;border-top:0px solid #e3e3e3;}
-.vco-slider .slider-item .content .content-container.layout-text{width:100%;}.vco-slider .slider-item .content .content-container.layout-text .text{width:100%;max-width:100%;}.vco-slider .slider-item .content .content-container.layout-text .text .container{display:block;vertical-align:middle;padding:0px;width:90%;text-align:left;margin-left:auto;margin-right:auto;}
-.vco-slider .slider-item .content .content-container.layout-media{width:100%;}.vco-slider .slider-item .content .content-container.layout-media .text{width:100%;height:100%;max-width:100%;display:block;text-align:center;}.vco-slider .slider-item .content .content-container.layout-media .text .container{display:block;text-align:center;width:100%;margin-left:none;margin-right:none;}
-.vco-slider .slider-item .content .content-container.layout-media .media{width:100%;min-width:50%;float:none;}.vco-slider .slider-item .content .content-container.layout-media .media .media-wrapper .media-container{margin-left:auto;margin-right:auto;line-height:0px;padding:0px;}
-.vco-slider .slider-item .content .content-container.layout-media .twitter,.vco-slider .slider-item .content .content-container.layout-media .wikipedia,.vco-slider .slider-item .content .content-container.layout-media .googleplus{max-width:70%;}
-.storyjs-embed{background-color:#1a1a1a;margin-bottom:20px;border:1px solid #333333;padding-top:20px;padding-bottom:20px;clear:both;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);-moz-box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);}
-.storyjs-embed.full-embed{overflow:hidden;border:0 !important;padding:0 !important;margin:0 !important;clear:both;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important;-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;}
-.storyjs-embed.sized-embed{overflow:hidden;border:1px solid #333333;padding-top:7px;padding-bottom:7px;margin:0 !important;clear:both;-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;}
-.vco-storyjs{width:100%;height:100%;padding:0px;margin:0px;background-color:#1a1a1a;position:absolute;z-index:100;clear:both;overflow:hidden;}.vco-storyjs .vmm-clear:before,.vco-storyjs .vmm-clear:after{content:"";display:table;}
-.vco-storyjs .vmm-clear:after{clear:both;}
-.vco-storyjs .vmm-clear{*zoom:1;}
-.vco-storyjs .vco-feature{width:100%;}.vco-storyjs .vco-feature .slider,.vco-storyjs .vco-feature .vco-slider{width:100%;float:left;position:relative;z-index:10;padding-top:15px;-webkit-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);}
-.vco-storyjs .vco-feedback{position:absolute;display:table;overflow:hidden;top:0px;left:0px;z-index:205;width:100%;height:100%;}
-.vco-storyjs div.vco-loading,.vco-storyjs div.vco-explainer{display:table;text-align:center;min-width:100px;margin-top:15px;height:100%;width:100%;background-color:#1a1a1a;}.vco-storyjs div.vco-loading .vco-loading-container,.vco-storyjs div.vco-explainer .vco-loading-container,.vco-storyjs div.vco-loading .vco-explainer-container,.vco-storyjs div.vco-explainer .vco-explainer-container{display:table-cell;vertical-align:middle;}.vco-storyjs div.vco-loading .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-loading-icon{display:block;background-repeat:no-repeat;vertical-align:middle;margin-left:auto;margin-right:auto;text-align:center;background-image:url(themes/loading.gif?v3.4);width:28px;height:28px;}
-.vco-storyjs div.vco-loading .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-gesture-icon{display:block;vertical-align:middle;margin-left:auto;margin-right:auto;text-align:center;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px -160px;width:48px;height:48px;}
-.vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message{display:block;}
-.vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message,.vco-storyjs div.vco-loading .vco-loading-container .vco-message p,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message p,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message p,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message p{text-align:center;font-size:11px;line-height:13px;text-transform:uppercase;margin-top:7.5px;margin-bottom:7.5px;}
-.vco-storyjs div.vco-explainer{background-color:transparent;}
-.vco-storyjs .vco-bezel{background-color:#aaaaaa;background-color:rgba(255, 255, 255, 0.8);width:80px;height:50px;padding:50px;padding-top:25px;padding:25px 20px 50px 20px;margin:auto;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}.vco-storyjs .vco-bezel .vco-message,.vco-storyjs .vco-bezel .vco-message p{color:#1a1a1a;font-weight:bold;}
-.vco-storyjs .vco-container.vco-main{position:absolute;top:0px;left:0px;padding-bottom:3px;width:auto;height:auto;margin:0px;clear:both;}
-.vco-storyjs img,.vco-storyjs embed,.vco-storyjs object,.vco-storyjs video,.vco-storyjs iframe{max-width:100%;}
-.vco-storyjs img{max-height:100%;border:1px solid #999999;}
-.vco-storyjs a{color:#0bd4e3;text-decoration:none;}
-.vco-storyjs a:hover{color:#07909a;text-decoration:underline;}
-.vco-storyjs .vcard{float:right;margin-bottom:15px;}.vco-storyjs .vcard a{color:#aaaaaa;}
-.vco-storyjs .vcard a:hover{text-decoration:none;}.vco-storyjs .vcard a:hover .fn{text-decoration:underline;}
-.vco-storyjs .vcard .fn,.vco-storyjs .vcard .nickname{padding-left:42px;}
-.vco-storyjs .vcard .fn{display:block;font-weight:bold;}
-.vco-storyjs .vcard .nickname{margin-top:1px;display:block;color:#aaaaaa;}
-.vco-storyjs .vcard .avatar{float:left;display:block;width:32px;height:32px;}.vco-storyjs .vcard .avatar img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
-.vco-storyjs .thumbnail{width:24px;height:24px;overflow:hidden;float:left;margin:0;margin-right:1px;margin-top:6px;border:0;padding:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-.vco-storyjs a.thumbnail:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-.vco-storyjs .thumbnail.thumb-plaintext{background-repeat:no-repeat;background-position:-280px -48px;}
-.vco-storyjs .thumbnail.thumb-quote{background-repeat:no-repeat;background-position:-232px -48px;}
-.vco-storyjs .thumbnail.thumb-document{background-repeat:no-repeat;background-position:-256px -48px;}
-.vco-storyjs .thumbnail.thumb-photo{background-repeat:no-repeat;background-position:-280px -24px;border:0;}.vco-storyjs .thumbnail.thumb-photo img{border:0px none #333333 !important;}
-.vco-storyjs .thumbnail.thumb-twitter{background-repeat:no-repeat;background-position:-256px -24px;}
-.vco-storyjs .thumbnail.thumb-vimeo{background-repeat:no-repeat;background-position:-328px -48px;}
-.vco-storyjs .thumbnail.thumb-vine{background-repeat:no-repeat;background-position:-232px -72px;}
-.vco-storyjs .thumbnail.thumb-youtube{background-repeat:no-repeat;background-position:-328px -72px;}
-.vco-storyjs .thumbnail.thumb-video{background-repeat:no-repeat;background-position:-328px -24px;}
-.vco-storyjs .thumbnail.thumb-audio{background-repeat:no-repeat;background-position:-304px -24px;}
-.vco-storyjs .thumbnail.thumb-map{background-repeat:no-repeat;background-position:-208px -48px;}
-.vco-storyjs .thumbnail.thumb-website{background-repeat:no-repeat;background-position:-232px -24px;}
-.vco-storyjs .thumbnail.thumb-link{background-repeat:no-repeat;background-position:-184px -72px;}
-.vco-storyjs .thumbnail.thumb-wikipedia{background-repeat:no-repeat;background-position:-184px -48px;}
-.vco-storyjs .thumbnail.thumb-storify{background-repeat:no-repeat;background-position:-328px -96px;}
-.vco-storyjs .thumbnail.thumb-googleplus{background-repeat:no-repeat;background-position:-208px -72px;}
-.vco-storyjs thumbnail.thumb-instagram{background-repeat:no-repeat;background-position:-208px -96px;}
-.vco-storyjs thumbnail.thumb-instagram-full{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -96px;width:48px;height:24px;}
-.vco-storyjs .thumb-storify-full{height:12px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -96px;width:48px;}
-.vco-storyjs .thumbnail-inline{width:16px;height:14px;overflow:hidden;display:inline-block;margin-right:1px;margin-left:3px;margin-top:2px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-storyjs .twitter .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px -96px;}
-.vco-storyjs .storify .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -96px;}
-.vco-storyjs .googleplus .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;}
-.vco-storyjs .zFront{z-index:204;}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.vco-storyjs div.vco-loading .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-loading-icon{background-image:url(themes/loading@2x.gif?v3.4);} .vco-storyjs div.vco-loading .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-gesture-icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-160px -160px;width:48px;height:48px;}}.vco-notouch .vco-navigation .vco-toolbar .zoom-in:hover,.vco-notouch .vco-navigation .vco-toolbar .zoom-out:hover,.vco-notouch .vco-navigation .vco-toolbar .back-home:hover{color:#0bd4e3;cursor:pointer;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-notouch .vco-navigation .timenav .content .marker.active:hover{cursor:default;}.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag .flag-content h3,.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag-small .flag-content h3{color:#0bd4e3;}
-.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag .flag-content h4,.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag-small .flag-content h4{color:#999999;}
-.vco-notouch .vco-navigation .timenav .content .marker:hover .line{z-index:24;background:#999999;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag:hover,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{cursor:pointer;}.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content h3,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3{color:#aaaaaa;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content h4,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h4{color:#aaaaaa;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content .thumbnail,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag:hover{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{height:56px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content{height:36px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3{margin-top:5px;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content{height:14px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content h3{margin-top:4px;}
-.vco-timeline .vco-navigation{clear:both;cursor:move;width:100%;height:200px;border-top:1px solid #e3e3e3;position:relative;}.vco-timeline .vco-navigation .vco-toolbar{position:absolute;top:45px;left:0px;z-index:202;background-color:#1a1a1a;border:1px solid #333333;-webkit-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);}.vco-timeline .vco-navigation .vco-toolbar .zoom-in,.vco-timeline .vco-navigation .vco-toolbar .zoom-out,.vco-timeline .vco-navigation .vco-toolbar .back-home{font-weight:normal;font-size:10px;line-height:20px;top:0px;z-index:202;width:18px;height:18px;color:#aaaaaa;text-align:center;font-weight:bold;border:1px solid #1a1a1a;padding:5px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .vco-toolbar .zoom-in .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px 0;width:24px;height:24px;}
-.vco-timeline .vco-navigation .vco-toolbar .zoom-out .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px 0;width:24px;height:24px;}
-.vco-timeline .vco-navigation .vco-toolbar .back-home .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px 0;width:24px;height:24px;}
-.vco-timeline .vco-navigation .vco-toolbar.touch{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;background-color:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in,.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out,.vco-timeline .vco-navigation .vco-toolbar.touch .back-home{width:40px;height:40px;padding:5px;background-color:#1a1a1a;border:1px solid #333333;-webkit-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -160px;width:40px;height:40px;}
-.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -160px;width:40px;height:40px;}
-.vco-timeline .vco-navigation .vco-toolbar.touch .back-home .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-304px -160px;width:40px;height:40px;}
-.vco-timeline .vco-navigation .timenav-background{position:absolute;cursor:move;top:0px;left:0px;height:150px;width:100%;background-color:#262626;}.vco-timeline .vco-navigation .timenav-background .timenav-interval-background{position:absolute;top:151px;left:0px;background:#1a1a1a;width:100%;height:49px;-webkit-box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);-moz-box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);}.vco-timeline .vco-navigation .timenav-background .timenav-interval-background .top-highlight{position:absolute;top:-1px;left:0px;z-index:30;width:100%;height:1px;background:#1a1a1a;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;-webkit-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);}
-.vco-timeline .vco-navigation .timenav-background .timenav-line{position:absolute;top:0px;left:50%;width:3px;height:150px;background-color:#0bd4e3;z-index:1;-webkit-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);}
-.vco-timeline .vco-navigation .timenav-background .timenav-indicator{position:absolute;top:-1px;left:50%;z-index:202;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px -48px;width:24px;height:24px;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag div{height:50px;display:table;}.vco-timeline .vco-navigation .timenav-background .timenav-tag div h3{display:table-cell;vertical-align:middle;padding-left:65px;font-size:15px;color:#0c0c0c;font-weight:bold;text-shadow:0px 1px 1px #727272;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half{height:25px;}.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half div{height:25px;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full{height:50px;}.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full div{height:50px;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-2,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-4,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-6{background:#2e2e2e;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-1,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-3,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-5{background:#262626;}
-.vco-timeline .vco-navigation .timenav{position:absolute;top:0px;left:-250px;z-index:1;}.vco-timeline .vco-navigation .timenav .content{position:relative;}.vco-timeline .vco-navigation .timenav .content .marker.start{display:none;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .dot{background:#0bd4e3;z-index:200;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .line{z-index:199;background:#0bd4e3;width:1px;}.vco-timeline .vco-navigation .timenav .content .marker.active .line .event-line{background:#0bd4e3;filter:alpha(opacity=75);-khtml-opacity:0.75;-moz-opacity:0.75;opacity:0.75;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small{z-index:200;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content{height:36px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3{color:#0bd4e3;margin-top:5px;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content .thumbnail,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row1,.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row2,.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row1,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row2,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row3{z-index:200;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content{height:14px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3{margin-top:4px;}
-.vco-timeline .vco-navigation .timenav .content .marker{position:absolute;top:0px;left:150px;display:block;}.vco-timeline .vco-navigation .timenav .content .marker .dot{position:absolute;top:150px;left:0px;display:block;width:6px;height:6px;background:#aaaaaa;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;z-index:21;}
-.vco-timeline .vco-navigation .timenav .content .marker .line{position:absolute;top:0px;left:3px;width:1px;height:150px;background-color:#333333;background-color:rgba(51, 51, 51, 0.5);-webkit-box-shadow:1px 0 0 rgba(26, 26, 26, 0.5);-moz-box-shadow:1px 0 0 rgba(26, 26, 26, 0.5);box-shadow:1px 0 0 rgba(26, 26, 26, 0.5);z-index:22;}.vco-timeline .vco-navigation .timenav .content .marker .line .event-line{position:absolute;z-index:22;left:0px;height:1px;width:1px;background:#0bd4e3;filter:alpha(opacity=15);-khtml-opacity:0.15;-moz-opacity:0.15;opacity:0.15;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag,.vco-timeline .vco-navigation .timenav .content .marker .flag-small{position:absolute;top:15px;left:3px;padding:0px;display:block;z-index:23;width:153px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content{padding:0px 7px 2px 6px;overflow:hidden;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3{font-weight:bold;font-size:15px;line-height:20px;font-size:11px;line-height:11px;color:#999999;margin-bottom:2px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3 small,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3 small{display:none;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h4,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h4{display:none;font-weight:normal;font-size:15px;line-height:20px;margin-top:5px;font-size:10px;line-height:10px;color:#aaaaaa;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h4 small,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h4 small{display:none;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content .thumbnail,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail{margin-bottom:15px;margin-right:3px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content .thumbnail img,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail img{width:22px;height:22px;max-height:none;max-width:none;border:0;border:1px solid #999999;padding:0;margin:0;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag{height:56px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 0;width:153px;height:53px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content{height:36px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3{margin-top:5px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -135px;width:153px;height:26px;}.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content{height:14px;}.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3{margin-top:4px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail{width:16px;height:10px;margin-right:1px;margin-top:6px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-plaintext{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-quote{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-document{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-photo{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-twitter{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vimeo{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vine{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-youtube{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-304px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-video{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-audio{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-304px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-map{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-website{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-link{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-wikipedia{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-storify{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-googleplus{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content thumbnail.thumb-instagram{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag.row1{z-index:25;top:48px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag.row2{z-index:24;top:96px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag.row3{z-index:23;top:1px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row1{z-index:28;top:24px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row2{z-index:27;top:48px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row3{z-index:26;top:72px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row4{z-index:25;top:96px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row5{z-index:24;top:120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row6{z-index:23;top:1px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag.zFront,.vco-timeline .vco-navigation .timenav .content .marker .flag-small.zFront{z-index:201;}
-.vco-timeline .vco-navigation .timenav .content .era{position:absolute;top:138px;left:150px;height:12px;display:block;overflow:hidden;}.vco-timeline .vco-navigation .timenav .content .era div{height:50px;width:100%;height:100%;line-height:0px;background:#262626;background:rgba(38, 38, 38, 0.33);}.vco-timeline .vco-navigation .timenav .content .era div h3,.vco-timeline .vco-navigation .timenav .content .era div h4{position:absolute;bottom:1px;padding-left:15px;font-size:15px;font-weight:bold;color:rgba(11, 212, 227, 0.35);text-shadow:0px 1px 1px #727272;}
-.vco-timeline .vco-navigation .timenav .content .era1 div{background:#e31a0b;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(227, 26, 11, 0.1);border-right:1px solid rgba(245, 58, 44, 0.05);}.vco-timeline .vco-navigation .timenav .content .era1 div h3,.vco-timeline .vco-navigation .timenav .content .era1 div h4{color:rgba(227, 26, 11, 0.35);text-shadow:0px 1px 1px #727272;}
-.vco-timeline .vco-navigation .timenav .content .era2 div{background:#e30b68;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(227, 11, 104, 0.1);border-right:1px solid rgba(245, 44, 131, 0.05);}.vco-timeline .vco-navigation .timenav .content .era2 div h3,.vco-timeline .vco-navigation .timenav .content .era2 div h4{color:rgba(227, 11, 104, 0.35);text-shadow:0px 1px 1px #727272;}
-.vco-timeline .vco-navigation .timenav .content .era3 div{background:#0b68e3;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(11, 104, 227, 0.1);border-right:1px solid rgba(44, 131, 245, 0.05);}.vco-timeline .vco-navigation .timenav .content .era3 div h3,.vco-timeline .vco-navigation .timenav .content .era3 div h4{color:rgba(11, 104, 227, 0.35);text-shadow:0px 1px 1px #727272;}
-.vco-timeline .vco-navigation .timenav .content .era4 div{background:#e3860b;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(227, 134, 11, 0.1);border-right:1px solid rgba(245, 158, 44, 0.05);}.vco-timeline .vco-navigation .timenav .content .era4 div h3,.vco-timeline .vco-navigation .timenav .content .era4 div h4{color:rgba(227, 134, 11, 0.35);text-shadow:0px 1px 1px #727272;}
-.vco-timeline .vco-navigation .timenav .content .era5 div{background:#0be386;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(11, 227, 134, 0.1);border-right:1px solid rgba(44, 245, 158, 0.05);}.vco-timeline .vco-navigation .timenav .content .era5 div h3,.vco-timeline .vco-navigation .timenav .content .era5 div h4{color:rgba(11, 227, 134, 0.35);text-shadow:0px 1px 1px #727272;}
-.vco-timeline .vco-navigation .timenav .content .era6 div{background:#0bd4e3;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(11, 212, 227, 0.1);border-right:1px solid rgba(44, 231, 245, 0.05);}.vco-timeline .vco-navigation .timenav .content .era6 div h3,.vco-timeline .vco-navigation .timenav .content .era6 div h4{color:rgba(11, 212, 227, 0.35);text-shadow:0px 1px 1px #727272;}
-.vco-timeline .vco-navigation .timenav .time{position:absolute;left:0px;top:150px;height:50px;background-color:#1a1a1a;line-height:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval-minor{max-width:none;height:6px;white-space:nowrap;position:absolute;top:-2px;left:8px;z-index:10;}.vco-timeline .vco-navigation .timenav .time .time-interval-minor .minor{position:relative;top:2px;display:inline-block;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAMCAMAAACdvocfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFzMzM////040VdgAAAAJ0Uk5T/wDltzBKAAAAEklEQVR42mJgYAQCBopJgAADAAbwADHy2qHzAAAAAElFTkSuQmCC);width:100px;height:6px;background-position:center top;white-space:nowrap;color:#aaaaaa;margin-top:0px;padding-top:0px;}
-.vco-timeline .vco-navigation .timenav .time .time-interval{white-space:nowrap;position:absolute;top:5px;left:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval div{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAMCAMAAACdvocfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFzMzM////040VdgAAAAJ0Uk5T/wDltzBKAAAAEklEQVR42mJgYAQCBopJgAADAAbwADHy2qHzAAAAAElFTkSuQmCC);background-position:left top;background-repeat:no-repeat;padding-top:6px;position:absolute;height:3px;left:0px;display:block;font-weight:normal;font-size:10px;line-height:20px;text-transform:uppercase;text-align:left;text-indent:0px;white-space:nowrap;color:#aaaaaa;margin-left:0px;margin-right:0px;margin-top:0px;z-index:2;}.vco-timeline .vco-navigation .timenav .time .time-interval div strong{font-weight:bold;color:#ffffff;}
-.vco-timeline .vco-navigation .timenav .time .time-interval div.era{font-weight:bold;padding-top:0px;margin-top:-3px;margin-left:2px;background-image:none;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era1{color:#e31a0b;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era2{color:#e30b68;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era3{color:#0b68e3;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era4{color:#e3860b;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era5{color:#0be386;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era6{color:#0bd4e3;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval-major{white-space:nowrap;position:absolute;top:5px;left:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval-major div{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAQAQMAAADtUYf0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyOTAzRjI3REIzNDcxMUUxQUQ3QUZCOThEODQ1NDhCNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyOTAzRjI3RUIzNDcxMUUxQUQ3QUZCOThEODQ1NDhCNyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjI5MDNGMjdCQjM0NzExRTFBRDdBRkI5OEQ4NDU0OEI3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjI5MDNGMjdDQjM0NzExRTFBRDdBRkI5OEQ4NDU0OEI3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+DPWNfQAAAANQTFRFzMzMylJEJwAAAAtJREFUCB1jYMAPAAAgAAHDvpOtAAAAAElFTkSuQmCC);background-position:left top;background-repeat:no-repeat;padding-top:15px;position:absolute;height:15px;left:0px;display:block;font-weight:bold;font-size:12px;line-height:20px;text-transform:uppercase;text-align:left;text-indent:0px;white-space:nowrap;color:#aaaaaa;margin-left:0px;margin-right:0px;margin-top:1px;z-index:5;}.vco-timeline .vco-navigation .timenav .time .time-interval-major div strong{font-weight:bold;color:#ffffff;}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.vco-notouch .vco-navigation .vco-toolbar .zoom-in .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-256px 0;width:24px;height:24px;} .vco-notouch .vco-navigation .vco-toolbar .zoom-out .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-280px 0;width:24px;height:24px;} .vco-notouch .vco-navigation .vco-toolbar .back-home .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-328px 0;width:24px;height:24px;} .vco-notouch .vco-navigation .vco-toolbar.touch .zoom-in .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-208px -160px;width:40px;height:40px;} .vco-notouch .vco-navigation .vco-toolbar.touch .zoom-out .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-256px -160px;width:40px;height:40px;} .vco-notouch .vco-navigation .vco-toolbar.touch .back-home .icon{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-304px -160px;width:40px;height:40px;} .vco-notouch .vco-navigation .timenav .content .marker .flag:hover{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} .vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} .vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;} .vco-notouch .vco-navigation .timenav-background .timenav-indicator{background-image:url(themes/timeline-dark@2x.png?v4.3);background-repeat:no-repeat;background-position:-160px -48px;width:24px;height:24px;}}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/AbrilFatface-Average.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/AbrilFatface-Average.css
deleted file mode 100644
index 8e53f97f53c93fe3dc2206cfa968b099bbc04c3c..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/AbrilFatface-Average.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Average',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Average',serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Average',serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Average',serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Average',serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Abril Fatface',cursive;}
-.timeline-tooltip{font-family:'Average',serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Arvo-PTSans.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/Arvo-PTSans.css
deleted file mode 100644
index 6ad3b5e59478debbdf1532fd2eacbf53e4676fa0..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Arvo-PTSans.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Arvo',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Arvo',serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Arvo',serif;}
-.timeline-tooltip{font-family:'PT Sans',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Bevan-PotanoSans.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/Bevan-PotanoSans.css
deleted file mode 100644
index c2ec6213593e9d8008e80eec31e645a1c8a7cfff..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Bevan-PotanoSans.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Pontano Sans',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Pontano Sans',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Pontano Sans',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Pontano Sans',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Pontano Sans',sans-serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Bevan',serif;}
-.timeline-tooltip{font-family:'Pontano Sans',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/BreeSerif-OpenSans.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/BreeSerif-OpenSans.css
deleted file mode 100644
index 04d88e3e5d0b0d9a7c80d76b2492e004769996e1..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/BreeSerif-OpenSans.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Bree Serif',Georgia,serif;}
-.timeline-tooltip{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/DroidSerif-DroidSans.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/DroidSerif-DroidSans.css
deleted file mode 100644
index 3db261563573703a8a24baec60de5814b8bbcf81..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/DroidSerif-DroidSans.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.vco-storyjs{font-family:'Droid Serif',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Droid Sans',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Droid Sans',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Droid Sans',sans-serif !important;}
-.vco-storyjs p{font-family:'Droid Sans',sans-serif !important;}
-.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Droid Serif',serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Droid Serif',serif;font-weight:700;}
-.timeline-tooltip{font-family:'Droid Sans',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Georgia-Helvetica.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/Georgia-Helvetica.css
deleted file mode 100644
index 386a2590b3f112e7b1ad2489cd52d5d3f80c1386..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Georgia-Helvetica.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:"Georgia",Times New Roman,Times,serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:"Georgia",Times New Roman,Times,serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:"Georgia",Times New Roman,Times,serif;}
-.timeline-tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Lekton-Molengo.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/Lekton-Molengo.css
deleted file mode 100644
index da051f61786033b36c6a5356e6495db7676413c8..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Lekton-Molengo.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Lekton',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Lekton',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Lekton',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Lekton',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Lekton',sans-serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Molengo',sans-serif;}
-.timeline-tooltip{font-family:'Lekton',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Lora-Istok.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/Lora-Istok.css
deleted file mode 100644
index f9feeaf4163986c6a561bc97ded20cce6bbe779a..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Lora-Istok.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Lora',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Istok Web',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Istok Web',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Istok Web',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Istok Web',sans-serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Lora',serif;font-weight:700;}
-.timeline-tooltip{font-family:'Istok Web',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Merriweather-NewsCycle.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/Merriweather-NewsCycle.css
deleted file mode 100644
index 350045735ec80e55f857c9eb5981813ae0b8ab36..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Merriweather-NewsCycle.css
+++ /dev/null
@@ -1,8 +0,0 @@
-.vco-storyjs{font-family:'Merriweather',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'News Cycle',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'News Cycle',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'News Cycle',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'News Cycle',sans-serif !important;}
-.vco-storyjs p{font-size:16px;line-height:22px;}
-.vco-storyjs .wikipedia p{font-size:14px !important;line-height:20px !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Merriweather',serif;font-weight:900;}
-.timeline-tooltip{font-family:'News Cycle',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/NewsCycle-Merriweather.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/NewsCycle-Merriweather.css
deleted file mode 100644
index 59e8e7f2a89a856b4448603da61ba1e39d565f86..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/NewsCycle-Merriweather.css
+++ /dev/null
@@ -1,8 +0,0 @@
-.vco-storyjs{font-family:'News Cycle',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'News Cycle',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'News Cycle',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'News Cycle',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Merriweather',serif !important;}
-.vco-storyjs p{font-size:16px;line-height:22px;}
-.vco-storyjs .wikipedia p{font-size:14px !important;line-height:20px !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'News Cycle',sans-serif;font-weight:900;}
-.timeline-tooltip{font-family:'News Cycle',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/NixieOne-Ledger.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/NixieOne-Ledger.css
deleted file mode 100644
index 6fd7bb12409888dceb52f541f1bb50ad52905c2e..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/NixieOne-Ledger.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Ledger',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Ledger',serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Ledger',serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Ledger',serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Ledger',serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Nixie One',cursive;}
-.timeline-tooltip{font-family:'Ledger',serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/PT.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/PT.css
deleted file mode 100644
index 0ca81f83ccb8063aec0940086946bad846804b9f..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/PT.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.vco-storyjs{font-family:'PT Serif',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'PT Serif',serif !important;}
-.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-style:italic;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'PT Sans Narrow',sans-serif;font-weight:700;}
-.timeline-tooltip{font-family:'PT Sans',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/PTSerif-PTSans.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/PTSerif-PTSans.css
deleted file mode 100644
index 80a5112340c37c77c7f191f44a8416de75ee5815..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/PTSerif-PTSans.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'PT Serif',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'PT Sans',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'PT Serif',serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'PT Sans',sans-serif;font-weight:700;}
-.timeline-tooltip{font-family:'PT Sans',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Pacifico-Arimo.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/Pacifico-Arimo.css
deleted file mode 100644
index 82fcc4889e7fd2e839d4c8a48477c2db7b3d198b..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Pacifico-Arimo.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Arimo',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Arimo',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Arimo',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Arimo',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Arimo',sans-serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Pacifico',cursive;}
-.timeline-tooltip{font-family:'Arimo',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/PlayfairDisplay-Muli.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/PlayfairDisplay-Muli.css
deleted file mode 100644
index 6c72bac8805b6a5fbd512b64c46f8d2aae0e8bbe..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/PlayfairDisplay-Muli.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Muli',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Muli',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Muli',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Muli',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Muli',sans-serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Playfair Display',serif;}
-.timeline-tooltip{font-family:'Muli',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/PoiretOne-Molengo.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/PoiretOne-Molengo.css
deleted file mode 100644
index 2ed7c3b6fbf090398851f7abfacc79ff1ef78f00..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/PoiretOne-Molengo.css
+++ /dev/null
@@ -1,8 +0,0 @@
-.vco-storyjs{font-family:'Poiret One',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Molengo',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Molengo',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Molengo',sans-serif !important;}
-.vco-storyjs p{font-family:'Molengo',sans-serif !important;font-size:16px !important;line-height:22px !important;}
-.vco-storyjs .wikipedia p{font-size:14px !important;line-height:20px !important;}
-.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Poiret One',serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Poiret One',serif;}
-.timeline-tooltip{font-family:'Molengo',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Rancho-Gudea.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/Rancho-Gudea.css
deleted file mode 100644
index b120c19f50d8a935689a5304405c51fc108e8352..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/Rancho-Gudea.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Gudea',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Gudea',sans-serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Gudea',sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Gudea',sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Gudea',sans-serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Rancho',cursive;}
-.timeline-tooltip{font-family:'Gudea',sans-serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/font/SansitaOne-Kameron.css b/public/opac/TimelineJS-2.25/compiled/css/themes/font/SansitaOne-Kameron.css
deleted file mode 100644
index a2857c71c73fd1c8f676cd48b22f27e8264a9436..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/themes/font/SansitaOne-Kameron.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.vco-storyjs{font-family:'Kameron',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Kameron',serif !important;}
-.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Kameron',serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Kameron',serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Kameron',serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Sansita One',cursive;}
-.timeline-tooltip{font-family:'Kameron',serif;}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-dark.png b/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-dark.png
deleted file mode 100644
index 92f09279a451a54990582dad8f7c4c6efdc8917b..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-dark.png and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-dark@2x.png b/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-dark@2x.png
deleted file mode 100644
index c2b30a8db9bdcf463fbc455a43ec9893787b7c59..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-dark@2x.png and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-texture.png b/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-texture.png
deleted file mode 100644
index a5e603e50473b70112f26eb02afd440ce1fda0bd..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/compiled/css/themes/timeline-texture.png and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/compiled/css/timeline.css b/public/opac/TimelineJS-2.25/compiled/css/timeline.css
deleted file mode 100644
index 88e46824b67db09757c4aef17764a118bbb08a4c..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/css/timeline.css
+++ /dev/null
@@ -1,284 +0,0 @@
-.vco-storyjs{}.vco-storyjs div *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
-.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6,.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs pre,.vco-storyjs a,.vco-storyjs abbr,.vco-storyjs acronym,.vco-storyjs address,.vco-storyjs cite,.vco-storyjs code,.vco-storyjs del,.vco-storyjs dfn,.vco-storyjs em,.vco-storyjs img,.vco-storyjs q,.vco-storyjs s,.vco-storyjs samp,.vco-storyjs small,.vco-storyjs strike,.vco-storyjs strong,.vco-storyjs sub,.vco-storyjs sup,.vco-storyjs tt,.vco-storyjs var,.vco-storyjs dd,.vco-storyjs dl,.vco-storyjs dt,.vco-storyjs li,.vco-storyjs ol,.vco-storyjs ul,.vco-storyjs fieldset,.vco-storyjs form,.vco-storyjs label,.vco-storyjs legend,.vco-storyjs button,.vco-storyjs table,.vco-storyjs caption,.vco-storyjs tbody,.vco-storyjs tfoot,.vco-storyjs thead,.vco-storyjs tr,.vco-storyjs th,.vco-storyjs td,.vco-storyjs .vco-container,.vco-storyjs .content-container,.vco-storyjs .media,.vco-storyjs .text,.vco-storyjs .vco-slider,.vco-storyjs .slider,.vco-storyjs .date,.vco-storyjs .title,.vco-storyjs .messege,.vco-storyjs .map,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .vco-feedback,.vco-storyjs .vco-feature,.vco-storyjs .toolbar,.vco-storyjs .marker,.vco-storyjs .dot,.vco-storyjs .line,.vco-storyjs .flag,.vco-storyjs .time,.vco-storyjs .era,.vco-storyjs .major,.vco-storyjs .minor,.vco-storyjs .vco-navigation,.vco-storyjs .start,.vco-storyjs .active{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;width:auto;float:none;}
-.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{clear:none;}
-.vco-storyjs table{border-collapse:collapse;border-spacing:0;}
-.vco-storyjs ol,.vco-storyjs ul{list-style:none;}
-.vco-storyjs q:before,.vco-storyjs q:after,.vco-storyjs blockquote:before,.vco-storyjs blockquote:after{content:"";}
-.vco-storyjs a:focus{outline:thin dotted;}
-.vco-storyjs a:hover,.vco-storyjs a:active{outline:0;}
-.vco-storyjs article,.vco-storyjs aside,.vco-storyjs details,.vco-storyjs figcaption,.vco-storyjs figure,.vco-storyjs footer,.vco-storyjs header,.vco-storyjs hgroup,.vco-storyjs nav,.vco-storyjs section{display:block;}
-.vco-storyjs audio,.vco-storyjs canvas,.vco-storyjs video{display:inline-block;*display:inline;*zoom:1;}
-.vco-storyjs audio:not([controls]){display:none;}
-.vco-storyjs div{max-width:none;}
-.vco-storyjs sub,.vco-storyjs sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
-.vco-storyjs sup{top:-0.5em;}
-.vco-storyjs sub{bottom:-0.25em;}
-.vco-storyjs img{border:0;-ms-interpolation-mode:bicubic;}
-.vco-storyjs button,.vco-storyjs input,.vco-storyjs select,.vco-storyjs textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;}
-.vco-storyjs button,.vco-storyjs input{line-height:normal;*overflow:visible;}
-.vco-storyjs button::-moz-focus-inner,.vco-storyjs input::-moz-focus-inner{border:0;padding:0;}
-.vco-storyjs button,.vco-storyjs input[type="button"],.vco-storyjs input[type="reset"],.vco-storyjs input[type="submit"]{cursor:pointer;-webkit-appearance:button;}
-.vco-storyjs input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
-.vco-storyjs input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
-.vco-storyjs textarea{overflow:auto;vertical-align:top;}
-.vco-storyjs{font-family:"Georgia",Times New Roman,Times,serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;}
-.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:"Georgia",Times New Roman,Times,serif !important;}
-.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:"Georgia",Times New Roman,Times,serif;}
-.timeline-tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
-.thumbnail{background-image:url(timeline.png?v4.4);}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.thumbnail{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;}}.vco-storyjs{font-size:15px;font-weight:normal;line-height:20px;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;}.vco-storyjs p{font-size:15px;font-weight:normal;line-height:20px;margin-bottom:20px;color:#666666;}.vco-storyjs p small{font-size:12px;line-height:17px;}
-.vco-storyjs p:first-child{margin-top:20px;}
-.vco-storyjs .vco-navigation p{color:#999999;}
-.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{margin-bottom:15px;}
-.vco-storyjs .vco-feature p{color:#666666;}
-.vco-storyjs .vco-feature blockquote,.vco-storyjs .vco-feature blockquote p{color:#000000;}
-.vco-storyjs .date a,.vco-storyjs .title a{color:#999999;}
-.vco-storyjs .hyphenate{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;}
-.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{font-weight:normal;color:#000000;text-transform:none;}.vco-storyjs h1 a,.vco-storyjs h2 a,.vco-storyjs h3 a,.vco-storyjs h4 a,.vco-storyjs h5 a,.vco-storyjs h6 a{color:#999999;}
-.vco-storyjs h1 small,.vco-storyjs h2 small,.vco-storyjs h3 small,.vco-storyjs h4 small,.vco-storyjs h5 small,.vco-storyjs h6 small{color:#999999;}
-.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-weight:bold;}
-.vco-storyjs h2.start{font-size:36px;line-height:38px;margin-bottom:15px;}
-.vco-storyjs h1{margin-bottom:15px;font-size:32px;line-height:34px;}.vco-storyjs h1 small{font-size:18px;}
-.vco-storyjs h2{margin-bottom:15px;font-size:28px;line-height:30px;}.vco-storyjs h2 small{font-size:14px;line-height:16px;}
-.vco-storyjs h2.date{font-size:16px;line-height:18px;margin-bottom:3.75px;color:#999999;}
-.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{line-height:40px;}.vco-storyjs h3 .active,.vco-storyjs h4 .active,.vco-storyjs h5 .active,.vco-storyjs h6 .active{color:#0088cc;}
-.vco-storyjs h3{font-size:28px;line-height:30px;}.vco-storyjs h3 small{font-size:14px;}
-.vco-storyjs h4{font-size:20px;line-height:22px;}.vco-storyjs h4 small{font-size:12px;}
-.vco-storyjs h5{font-size:16px;line-height:18px;}
-.vco-storyjs h6{font-size:13px;line-height:14px;text-transform:uppercase;}
-.vco-storyjs strong{font-weight:bold;font-style:inherit;}
-.vco-storyjs em{font-style:italic;font-weight:inherit;}
-.vco-storyjs Q{quotes:'„' '“';font-style:italic;}
-.vco-storyjs blockquote,.vco-storyjs blockquote p{font-size:24px;line-height:32px;text-align:left;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#000000;}
-.vco-storyjs .credit{color:#999999;text-align:right;font-size:10px;line-height:10px;display:block;margin:0 auto;clear:both;}
-.vco-storyjs .caption{text-align:left;margin-top:5px;color:#666666;font-size:11px;line-height:14px;clear:both;}
-.vco-storyjs.vco-right-to-left h1,.vco-storyjs.vco-right-to-left h2,.vco-storyjs.vco-right-to-left h3,.vco-storyjs.vco-right-to-left h4,.vco-storyjs.vco-right-to-left h5,.vco-storyjs.vco-right-to-left h6,.vco-storyjs.vco-right-to-left p,.vco-storyjs.vco-right-to-left blockquote,.vco-storyjs.vco-right-to-left pre,.vco-storyjs.vco-right-to-left a,.vco-storyjs.vco-right-to-left abbr,.vco-storyjs.vco-right-to-left acronym,.vco-storyjs.vco-right-to-left address,.vco-storyjs.vco-right-to-left cite,.vco-storyjs.vco-right-to-left code,.vco-storyjs.vco-right-to-left del,.vco-storyjs.vco-right-to-left dfn,.vco-storyjs.vco-right-to-left em,.vco-storyjs.vco-right-to-left img,.vco-storyjs.vco-right-to-left q,.vco-storyjs.vco-right-to-left s,.vco-storyjs.vco-right-to-left samp,.vco-storyjs.vco-right-to-left small,.vco-storyjs.vco-right-to-left strike,.vco-storyjs.vco-right-to-left strong,.vco-storyjs.vco-right-to-left sub,.vco-storyjs.vco-right-to-left sup,.vco-storyjs.vco-right-to-left tt,.vco-storyjs.vco-right-to-left var,.vco-storyjs.vco-right-to-left dd,.vco-storyjs.vco-right-to-left dl,.vco-storyjs.vco-right-to-left dt,.vco-storyjs.vco-right-to-left li,.vco-storyjs.vco-right-to-left ol,.vco-storyjs.vco-right-to-left ul,.vco-storyjs.vco-right-to-left fieldset,.vco-storyjs.vco-right-to-left form,.vco-storyjs.vco-right-to-left label,.vco-storyjs.vco-right-to-left legend,.vco-storyjs.vco-right-to-left button,.vco-storyjs.vco-right-to-left table,.vco-storyjs.vco-right-to-left caption,.vco-storyjs.vco-right-to-left tbody,.vco-storyjs.vco-right-to-left tfoot,.vco-storyjs.vco-right-to-left thead,.vco-storyjs.vco-right-to-left tr,.vco-storyjs.vco-right-to-left th,.vco-storyjs.vco-right-to-left td{direction:rtl;}
-.timeline-tooltip{position:absolute;z-index:205;display:block;visibility:visible;padding:5px;opacity:0;filter:alpha(opacity=0);font-size:15px;font-weight:bold;line-height:20px;font-size:12px;line-height:12px;}
-.timeline-tooltip.in{opacity:0.8;filter:alpha(opacity=80);}
-.timeline-tooltip.top{margin-top:-2px;}
-.timeline-tooltip.right{margin-left:2px;}
-.timeline-tooltip.bottom{margin-top:2px;}
-.timeline-tooltip.left{margin-left:-2px;}
-.timeline-tooltip.top .timeline-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
-.timeline-tooltip.left .timeline-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;}
-.timeline-tooltip.bottom .timeline-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;}
-.timeline-tooltip.right .timeline-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;}
-.timeline-tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
-.timeline-tooltip-arrow{position:absolute;width:0;height:0;}
-@media only screen and (max-width:480px),only screen and (max-device-width:480px){.vco-slider .nav-next,.vco-slider .nav-previous{display:none;}}@media (max-width:640px){}.vco-skinny .vco-slider .slider-item .content .layout-text-media .text .container{text-align:center !important;}
-.vco-skinny .vco-slider .slider-item .content .layout-text-media h2,.vco-skinny .vco-slider .slider-item .content .layout-text-media h3{display:block !important;width:100% !important;text-align:center !important;}
-.vco-skinny .vco-slider .slider-item .content .content-container{display:block;}.vco-skinny .vco-slider .slider-item .content .content-container .text{width:100%;max-width:100%;min-width:120px;display:block;}.vco-skinny .vco-slider .slider-item .content .content-container .text .container{display:block;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;}
-.vco-skinny .vco-slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:none;}.vco-skinny .vco-slider .slider-item .content .content-container .media .media-wrapper{margin-left:0px;margin-right:0px;width:100%;display:block;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous,.vco-skinny.vco-notouch .vco-slider .nav-next{z-index:203;}.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .title{filter:alpha(opacity=1);-khtml-opacity:0.01;-moz-opacity:0.01;opacity:0.01;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .icon{filter:alpha(opacity=15);-khtml-opacity:0.15;-moz-opacity:0.15;opacity:0.15;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous .icon{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-208px 0;width:24px;height:24px;overflow:hidden;margin-left:10px;}
-.vco-skinny.vco-notouch .vco-slider .nav-next .icon{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-232px 0;width:24px;height:24px;overflow:hidden;margin-left:66px;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous:hover,.vco-skinny.vco-notouch .vco-slider .nav-next:hover{color:#aaaaaa !important;background-color:#333333;background-color:rgba(0, 0, 0, 0.65);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;font-weight:bold;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{padding-bottom:5px;}
-.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{padding-left:5px;padding-right:5px;}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.vco-skinny.vco-notouch .vco-slider .nav-previous .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-208px 0;width:24px;height:24px;overflow:hidden;} .vco-skinny.vco-notouch .vco-slider .nav-next .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-232px 0;width:24px;height:24px;overflow:hidden;}}.vco-slider{width:100%;height:100%;overflow:hidden;}.vco-slider .slider-container-mask{text-align:center;width:100%;height:100%;overflow:hidden;}.vco-slider .slider-container-mask .slider-container{position:absolute;top:0px;left:-2160px;width:100%;height:100%;text-align:center;display:block;}.vco-slider .slider-container-mask .slider-container .slider-item-container{display:table-cell;vertical-align:middle;}
-.vco-notouch .vco-slider .nav-previous:hover,.vco-notouch .vco-slider .nav-next:hover{color:#333333;cursor:pointer;}
-.vco-notouch .vco-slider .nav-previous:hover .icon{margin-left:10px;}
-.vco-notouch .vco-slider .nav-next:hover .icon{margin-left:66px;}
-.vco-notouch .vco-slider .slider-item .content .content-container .media .media-container .wikipedia h4 a:hover{color:#0088cc;text-decoration:none;}
-.vco-notouch .vco-slider .slider-item .content .content-container .created-at:hover{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover{text-decoration:none;}.vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover h5{text-decoration:underline;}
-.vco-slider img,.vco-slider embed,.vco-slider object,.vco-slider video,.vco-slider iframe{max-width:100%;}
-.vco-slider .nav-previous,.vco-slider .nav-next{position:absolute;top:0px;width:100px;color:#DBDBDB;font-size:11px;}.vco-slider .nav-previous .nav-container,.vco-slider .nav-next .nav-container{height:100px;width:100px;position:absolute;}
-.vco-slider .nav-previous .icon,.vco-slider .nav-next .icon{margin-top:12px;margin-bottom:15px;}
-.vco-slider .nav-previous .date,.vco-slider .nav-next .date,.vco-slider .nav-previous .title,.vco-slider .nav-next .title{line-height:14px;}.vco-slider .nav-previous .date a,.vco-slider .nav-next .date a,.vco-slider .nav-previous .title a,.vco-slider .nav-next .title a{color:#999999;}
-.vco-slider .nav-previous .date small,.vco-slider .nav-next .date small,.vco-slider .nav-previous .title small,.vco-slider .nav-next .title small{display:none;}
-.vco-slider .nav-previous .date,.vco-slider .nav-next .date{font-size:13px;line-height:13px;font-weight:bold;text-transform:uppercase;margin-bottom:5px;}
-.vco-slider .nav-previous .title,.vco-slider .nav-next .title{font-size:11px;line-height:13px;}
-.vco-slider .nav-previous{float:left;text-align:left;}.vco-slider .nav-previous .icon{margin-left:15px;background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-160px 0;width:24px;height:24px;overflow:hidden;}
-.vco-slider .nav-previous .date,.vco-slider .nav-previous .title{text-align:left;padding-left:15px;}
-.vco-slider .nav-next{float:right;text-align:right;}.vco-slider .nav-next .icon{margin-left:61px;background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-184px 0;width:24px;height:24px;overflow:hidden;}
-.vco-slider .nav-next .date,.vco-slider .nav-next .title{text-align:right;padding-right:15px;}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.vco-slider .nav-previous .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-160px 0;width:24px;height:24px;overflow:hidden;} .vco-slider .nav-next .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-184px 0;width:24px;height:24px;overflow:hidden;}}.vco-slider .slider-item{position:absolute;width:700px;height:100%;padding:0px;margin:0px;display:table;overflow-y:auto;}.vco-slider .slider-item .content{display:table-cell;vertical-align:middle;}.vco-slider .slider-item .content .pad-top .text .container{padding-top:15px;}
-.vco-slider .slider-item .content .pad-right .text .container{padding-right:15px;}
-.vco-slider .slider-item .content .pad-left .text .container{padding-left:30px;}
-.vco-slider .slider-item .content .pad-left .media.text-media .media-wrapper .media-container{border:none;background-color:#ffffff;}
-.vco-slider .slider-item .content .content-container{display:table;vertical-align:middle;}.vco-slider .slider-item .content .content-container .text{width:40%;max-width:50%;min-width:120px;display:table-cell;vertical-align:middle;}.vco-slider .slider-item .content .content-container .text .container{display:table-cell;vertical-align:middle;text-align:left;}.vco-slider .slider-item .content .content-container .text .container p{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;}
-.vco-slider .slider-item .content .content-container .text .container h2.date{font-size:15px;line-height:15px;font-weight:normal;}
-.vco-slider .slider-item .content .content-container .text .container .slide-tag{font-size:11px;font-weight:bold;color:#ffffff;background-color:#cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;vertical-align:baseline;white-space:nowrap;line-height:11px;padding:1px 3px 1px;margin-left:7.5px;margin-bottom:7.5px;}
-.vco-slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:left;}.vco-slider .slider-item .content .content-container .media .media-wrapper{display:inline-block;margin-left:auto;margin-right:auto;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container{display:inline-block;line-height:0px;padding:0px;max-height:100%;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image img{border:1px solid;border-color:#cccccc #999999 #999999 #cccccc;background-color:#ffffff;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame iframe{background-color:#ffffff;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .soundcloud{border:0;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image{display:inline-block;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow{position:relative;z-index:1;background:#ffffff;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:before,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#999999;-webkit-box-shadow:0 15px 10px #999999;-moz-box-shadow:0 15px 10px #999999;box-shadow:0 15px 10px #999999;-webkit-transform:rotate(-2deg);-moz-transform:rotate(-2deg);-ms-transform:rotate(-2deg);-o-transform:rotate(-2deg);transform:rotate(-2deg);}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow::after{-webkit-transform:rotate(2deg);-moz-transform:rotate(2deg);-ms-transform:rotate(2deg);-o-transform:rotate(2deg);transform:rotate(2deg);right:10px;left:auto;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text{display:table;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container{display:table-cell;vertical-align:middle;font-size:15px;line-height:20px;color:#666666;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container p{margin-bottom:20px;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia{font-size:15px;line-height:20px;text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia .wiki-source{margin-bottom:15px;font-size:13px;line-height:19px;font-style:italic;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4{border-bottom:1px solid #cccccc;margin-bottom:5px;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4 a{color:#000000;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia p{font-size:13px;line-height:19px;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map{line-height:normal;z-index:200;text-align:left;background-color:#ffffff;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map img{max-height:none !important;max-width:none !important;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .google-map{height:100%;width:100%;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution{position:absolute;z-index:201;bottom:0px;width:100%;overflow:hidden;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text{height:19px;overflow:hidden;-webkit-user-select:none;line-height:19px;margin-right:60px;padding-left:65px;font-family:Arial,sans-serif;font-size:10px;color:#444;white-space:nowrap;color:#ffffff;text-shadow:1px 1px 1px #333333;text-align:center;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text a{color:#ffffff !important;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .credit{color:#999999;text-align:right;display:block;margin:0 auto;margin-top:6px;font-size:10px;line-height:13px;}
-.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .caption{text-align:left;margin-top:10px;color:#666666;font-size:11px;line-height:14px;text-rendering:optimizeLegibility;word-wrap:break-word;}
-.vco-slider .slider-item .content .content-container .media.text-media .media-wrapper .media-container{border:none;background-color:#ffffff;}
-.vco-slider .slider-item .content .content-container .created-at{width:24px;height:24px;overflow:hidden;margin-left:7.5px;margin-top:2px;display:inline-block;float:right;filter:alpha(opacity=25);-khtml-opacity:0.25;-moz-opacity:0.25;opacity:0.25;}
-.vco-slider .slider-item .content .content-container .storify .created-at{background-repeat:no-repeat;background-position:-328px -96px;}
-.vco-slider .slider-item .content .content-container .twitter .created-at{background-repeat:no-repeat;background-position:-256px -24px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content{font-size:13px;line-height:19px;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#666666;}.vco-slider .slider-item .content .content-container .googleplus .googleplus-content p{font-size:13px;line-height:19px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-title{font-size:24px;line-height:32px;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#000000;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-annotation{font-size:15px;line-height:20px;color:#000000;border-bottom:1px solid #e3e3e3;padding-bottom:7.5px;margin-bottom:7.5px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments{border-top:1px solid #e3e3e3;padding-top:15px;margin-top:15px;border-bottom:1px solid #e3e3e3;padding-bottom:15px;margin-bottom:15px;*zoom:1;}.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:before,.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:after{display:table;content:"";}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:after{clear:both;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments h5{margin-bottom:5px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments div{width:50%;padding-left:15px;display:inline-block;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments p{font-size:11px;line-height:14px;margin-bottom:5px;}
-.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments img{float:left;display:block;bottom:0;left:0;margin:auto;position:relative;right:0;top:0;width:40%;}
-.vco-slider .slider-item .content .content-container .googleplus .proflinkPrefix{color:#0088cc;}
-.vco-slider .slider-item .content .content-container .googleplus .created-at{background-repeat:no-repeat;background-position:-208px -72px;}
-.vco-slider .slider-item .content .content-container .twitter,.vco-slider .slider-item .content .content-container .plain-text-quote,.vco-slider .slider-item .content .content-container .storify,.vco-slider .slider-item .content .content-container .googleplus{text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.vco-slider .slider-item .content .content-container .twitter blockquote,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote,.vco-slider .slider-item .content .content-container .storify blockquote,.vco-slider .slider-item .content .content-container .googleplus blockquote{color:#666666;}.vco-slider .slider-item .content .content-container .twitter blockquote p,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote p,.vco-slider .slider-item .content .content-container .storify blockquote p,.vco-slider .slider-item .content .content-container .googleplus blockquote p{font-size:24px;line-height:32px;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#000000;}
-.vco-slider .slider-item .content .content-container .twitter blockquote .quote-mark,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote .quote-mark,.vco-slider .slider-item .content .content-container .storify blockquote .quote-mark,.vco-slider .slider-item .content .content-container .googleplus blockquote .quote-mark{color:#666666;}
-.vco-slider .slider-item .content .content-container .twitter blockquote{font-size:15px;}.vco-slider .slider-item .content .content-container .twitter blockquote p{font-size:24px;}
-.vco-slider .slider-item .content .content-container.layout-text-media .text-media{border-top:1px solid #e3e3e3;padding-top:15px;padding-right:0;}
-.vco-slider .slider-item .content .content-container.layout-text-media.pad-left .text-media{padding-right:15px;padding-top:0;border-right:1px solid #e3e3e3;border-top:0px solid #e3e3e3;}
-.vco-slider .slider-item .content .content-container.layout-text{width:100%;}.vco-slider .slider-item .content .content-container.layout-text .text{width:100%;max-width:100%;}.vco-slider .slider-item .content .content-container.layout-text .text .container{display:block;vertical-align:middle;padding:0px;width:90%;text-align:left;margin-left:auto;margin-right:auto;}
-.vco-slider .slider-item .content .content-container.layout-media{width:100%;}.vco-slider .slider-item .content .content-container.layout-media .text{width:100%;height:100%;max-width:100%;display:block;text-align:center;}.vco-slider .slider-item .content .content-container.layout-media .text .container{display:block;text-align:center;width:100%;margin-left:none;margin-right:none;}
-.vco-slider .slider-item .content .content-container.layout-media .media{width:100%;min-width:50%;float:none;}.vco-slider .slider-item .content .content-container.layout-media .media .media-wrapper .media-container{margin-left:auto;margin-right:auto;line-height:0px;padding:0px;}
-.vco-slider .slider-item .content .content-container.layout-media .twitter,.vco-slider .slider-item .content .content-container.layout-media .wikipedia,.vco-slider .slider-item .content .content-container.layout-media .googleplus{max-width:70%;}
-.storyjs-embed{background-color:#ffffff;margin-bottom:20px;border:1px solid #cccccc;padding-top:20px;padding-bottom:20px;clear:both;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);-moz-box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);}
-.storyjs-embed.full-embed{overflow:hidden;border:0 !important;padding:0 !important;margin:0 !important;clear:both;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important;-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;}
-.storyjs-embed.sized-embed{overflow:hidden;border:1px solid #cccccc;padding-top:7px;padding-bottom:7px;margin:0 !important;clear:both;-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;}
-.vco-storyjs{width:100%;height:100%;padding:0px;margin:0px;background-color:#ffffff;position:absolute;z-index:100;clear:both;overflow:hidden;}.vco-storyjs .vmm-clear:before,.vco-storyjs .vmm-clear:after{content:"";display:table;}
-.vco-storyjs .vmm-clear:after{clear:both;}
-.vco-storyjs .vmm-clear{*zoom:1;}
-.vco-storyjs .vco-feature{width:100%;}.vco-storyjs .vco-feature .slider,.vco-storyjs .vco-feature .vco-slider{width:100%;float:left;position:relative;z-index:10;padding-top:15px;-webkit-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);}
-.vco-storyjs .vco-feedback{position:absolute;display:table;overflow:hidden;top:0px;left:0px;z-index:205;width:100%;height:100%;}
-.vco-storyjs div.vco-loading,.vco-storyjs div.vco-explainer{display:table;text-align:center;min-width:100px;margin-top:15px;height:100%;width:100%;background-color:#ffffff;}.vco-storyjs div.vco-loading .vco-loading-container,.vco-storyjs div.vco-explainer .vco-loading-container,.vco-storyjs div.vco-loading .vco-explainer-container,.vco-storyjs div.vco-explainer .vco-explainer-container{display:table-cell;vertical-align:middle;}.vco-storyjs div.vco-loading .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-loading-icon{display:block;background-repeat:no-repeat;vertical-align:middle;margin-left:auto;margin-right:auto;text-align:center;background-image:url(loading.gif?v3.4);width:28px;height:28px;}
-.vco-storyjs div.vco-loading .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-gesture-icon{display:block;vertical-align:middle;margin-left:auto;margin-right:auto;text-align:center;background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-160px -160px;width:48px;height:48px;}
-.vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message{display:block;}
-.vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message,.vco-storyjs div.vco-loading .vco-loading-container .vco-message p,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message p,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message p,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message p{text-align:center;font-size:11px;line-height:13px;text-transform:uppercase;margin-top:7.5px;margin-bottom:7.5px;}
-.vco-storyjs div.vco-explainer{background-color:transparent;}
-.vco-storyjs .vco-bezel{background-color:#333333;background-color:rgba(0, 0, 0, 0.8);width:80px;height:50px;padding:50px;padding-top:25px;padding:25px 20px 50px 20px;margin:auto;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}.vco-storyjs .vco-bezel .vco-message,.vco-storyjs .vco-bezel .vco-message p{color:#ffffff;font-weight:bold;}
-.vco-storyjs .vco-container.vco-main{position:absolute;top:0px;left:0px;padding-bottom:3px;width:auto;height:auto;margin:0px;clear:both;}
-.vco-storyjs img,.vco-storyjs embed,.vco-storyjs object,.vco-storyjs video,.vco-storyjs iframe{max-width:100%;}
-.vco-storyjs img{max-height:100%;border:1px solid #999999;}
-.vco-storyjs a{color:#0088cc;text-decoration:none;}
-.vco-storyjs a:hover{color:#005580;text-decoration:underline;}
-.vco-storyjs .vcard{float:right;margin-bottom:15px;}.vco-storyjs .vcard a{color:#333333;}
-.vco-storyjs .vcard a:hover{text-decoration:none;}.vco-storyjs .vcard a:hover .fn{text-decoration:underline;}
-.vco-storyjs .vcard .fn,.vco-storyjs .vcard .nickname{padding-left:42px;}
-.vco-storyjs .vcard .fn{display:block;font-weight:bold;}
-.vco-storyjs .vcard .nickname{margin-top:1px;display:block;color:#666666;}
-.vco-storyjs .vcard .avatar{float:left;display:block;width:32px;height:32px;}.vco-storyjs .vcard .avatar img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
-.vco-storyjs .thumbnail{width:24px;height:24px;overflow:hidden;float:left;margin:0;margin-right:1px;margin-top:6px;border:0;padding:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-.vco-storyjs a.thumbnail:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-.vco-storyjs .thumbnail.thumb-plaintext{background-repeat:no-repeat;background-position:-280px -48px;}
-.vco-storyjs .thumbnail.thumb-quote{background-repeat:no-repeat;background-position:-232px -48px;}
-.vco-storyjs .thumbnail.thumb-document{background-repeat:no-repeat;background-position:-256px -48px;}
-.vco-storyjs .thumbnail.thumb-photo{background-repeat:no-repeat;background-position:-280px -24px;border:0;}.vco-storyjs .thumbnail.thumb-photo img{border:0px none #cccccc !important;}
-.vco-storyjs .thumbnail.thumb-twitter{background-repeat:no-repeat;background-position:-256px -24px;}
-.vco-storyjs .thumbnail.thumb-vimeo{background-repeat:no-repeat;background-position:-328px -48px;}
-.vco-storyjs .thumbnail.thumb-vine{background-repeat:no-repeat;background-position:-232px -72px;}
-.vco-storyjs .thumbnail.thumb-youtube{background-repeat:no-repeat;background-position:-328px -72px;}
-.vco-storyjs .thumbnail.thumb-video{background-repeat:no-repeat;background-position:-328px -24px;}
-.vco-storyjs .thumbnail.thumb-audio{background-repeat:no-repeat;background-position:-304px -24px;}
-.vco-storyjs .thumbnail.thumb-map{background-repeat:no-repeat;background-position:-208px -48px;}
-.vco-storyjs .thumbnail.thumb-website{background-repeat:no-repeat;background-position:-232px -24px;}
-.vco-storyjs .thumbnail.thumb-link{background-repeat:no-repeat;background-position:-184px -72px;}
-.vco-storyjs .thumbnail.thumb-wikipedia{background-repeat:no-repeat;background-position:-184px -48px;}
-.vco-storyjs .thumbnail.thumb-storify{background-repeat:no-repeat;background-position:-328px -96px;}
-.vco-storyjs .thumbnail.thumb-googleplus{background-repeat:no-repeat;background-position:-208px -72px;}
-.vco-storyjs thumbnail.thumb-instagram{background-repeat:no-repeat;background-position:-208px -96px;}
-.vco-storyjs thumbnail.thumb-instagram-full{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-232px -96px;width:48px;height:24px;}
-.vco-storyjs .thumb-storify-full{height:12px;background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-280px -96px;width:48px;}
-.vco-storyjs .thumbnail-inline{width:16px;height:14px;overflow:hidden;display:inline-block;margin-right:1px;margin-left:3px;margin-top:2px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-storyjs .twitter .thumbnail-inline{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-160px -96px;}
-.vco-storyjs .storify .thumbnail-inline{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-184px -96px;}
-.vco-storyjs .googleplus .thumbnail-inline{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-208px -96px;}
-.vco-storyjs .zFront{z-index:204;}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.vco-storyjs div.vco-loading .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-loading-icon{background-image:url(loading@2x.gif?v3.4);} .vco-storyjs div.vco-loading .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-gesture-icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-160px -160px;width:48px;height:48px;}}.vco-notouch .vco-navigation .vco-toolbar .zoom-in:hover,.vco-notouch .vco-navigation .vco-toolbar .zoom-out:hover,.vco-notouch .vco-navigation .vco-toolbar .back-home:hover{color:#0088cc;cursor:pointer;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-notouch .vco-navigation .timenav .content .marker.active:hover{cursor:default;}.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag .flag-content h3,.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag-small .flag-content h3{color:#0088cc;}
-.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag .flag-content h4,.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag-small .flag-content h4{color:#999999;}
-.vco-notouch .vco-navigation .timenav .content .marker:hover .line{z-index:24;background:#999999;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag:hover,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{cursor:pointer;}.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content h3,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3{color:#333333;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content h4,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h4{color:#aaaaaa;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content .thumbnail,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag:hover{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{height:56px;background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content{height:36px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3{margin-top:5px;}
-.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content{height:14px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content h3{margin-top:4px;}
-.vco-timeline .vco-navigation{clear:both;cursor:move;width:100%;height:200px;border-top:1px solid #e3e3e3;position:relative;}.vco-timeline .vco-navigation .vco-toolbar{position:absolute;top:45px;left:0px;z-index:202;background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);}.vco-timeline .vco-navigation .vco-toolbar .zoom-in,.vco-timeline .vco-navigation .vco-toolbar .zoom-out,.vco-timeline .vco-navigation .vco-toolbar .back-home{font-weight:normal;font-size:10px;line-height:20px;top:0px;z-index:202;width:18px;height:18px;color:#333333;text-align:center;font-weight:bold;border:1px solid #ffffff;padding:5px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .vco-toolbar .zoom-in .icon{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-256px 0;width:24px;height:24px;}
-.vco-timeline .vco-navigation .vco-toolbar .zoom-out .icon{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-280px 0;width:24px;height:24px;}
-.vco-timeline .vco-navigation .vco-toolbar .back-home .icon{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-328px 0;width:24px;height:24px;}
-.vco-timeline .vco-navigation .vco-toolbar.touch{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;background-color:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in,.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out,.vco-timeline .vco-navigation .vco-toolbar.touch .back-home{width:40px;height:40px;padding:5px;background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in .icon{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-208px -160px;width:40px;height:40px;}
-.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out .icon{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-256px -160px;width:40px;height:40px;}
-.vco-timeline .vco-navigation .vco-toolbar.touch .back-home .icon{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-304px -160px;width:40px;height:40px;}
-.vco-timeline .vco-navigation .timenav-background{position:absolute;cursor:move;top:0px;left:0px;height:150px;width:100%;background-color:#e9e9e9;}.vco-timeline .vco-navigation .timenav-background .timenav-interval-background{position:absolute;top:151px;left:0px;background:#ffffff;width:100%;height:49px;-webkit-box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);-moz-box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);}.vco-timeline .vco-navigation .timenav-background .timenav-interval-background .top-highlight{position:absolute;top:-1px;left:0px;z-index:30;width:100%;height:1px;background:#ffffff;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;-webkit-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);}
-.vco-timeline .vco-navigation .timenav-background .timenav-line{position:absolute;top:0px;left:50%;width:3px;height:150px;background-color:#0088cc;z-index:1;-webkit-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);}
-.vco-timeline .vco-navigation .timenav-background .timenav-indicator{position:absolute;top:-1px;left:50%;z-index:202;background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-160px -48px;width:24px;height:24px;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag div{height:50px;display:table;}.vco-timeline .vco-navigation .timenav-background .timenav-tag div h3{display:table-cell;vertical-align:middle;padding-left:65px;font-size:15px;color:#d0d0d0;font-weight:bold;text-shadow:0px 1px 1px #ffffff;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half{height:25px;}.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half div{height:25px;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full{height:50px;}.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full div{height:50px;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-2,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-4,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-6{background:#f1f1f1;}
-.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-1,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-3,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-5{background:#e9e9e9;}
-.vco-timeline .vco-navigation .timenav{position:absolute;top:0px;left:-250px;z-index:1;}.vco-timeline .vco-navigation .timenav .content{position:relative;}.vco-timeline .vco-navigation .timenav .content .marker.start{display:none;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .dot{background:#0088cc;z-index:200;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .line{z-index:199;background:#0088cc;width:1px;}.vco-timeline .vco-navigation .timenav .content .marker.active .line .event-line{background:#0088cc;filter:alpha(opacity=75);-khtml-opacity:0.75;-moz-opacity:0.75;opacity:0.75;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small{z-index:200;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content{height:36px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3{color:#0088cc;margin-top:5px;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content .thumbnail,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row1,.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row2,.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row1,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row2,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row3{z-index:200;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}
-.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content{height:14px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3{margin-top:4px;}
-.vco-timeline .vco-navigation .timenav .content .marker{position:absolute;top:0px;left:150px;display:block;}.vco-timeline .vco-navigation .timenav .content .marker .dot{position:absolute;top:150px;left:0px;display:block;width:6px;height:6px;background:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;z-index:21;}
-.vco-timeline .vco-navigation .timenav .content .marker .line{position:absolute;top:0px;left:3px;width:1px;height:150px;background-color:#cccccc;background-color:rgba(204, 204, 204, 0.5);-webkit-box-shadow:1px 0 0 rgba(255, 255, 255, 0.5);-moz-box-shadow:1px 0 0 rgba(255, 255, 255, 0.5);box-shadow:1px 0 0 rgba(255, 255, 255, 0.5);z-index:22;}.vco-timeline .vco-navigation .timenav .content .marker .line .event-line{position:absolute;z-index:22;left:0px;height:1px;width:1px;background:#0088cc;filter:alpha(opacity=15);-khtml-opacity:0.15;-moz-opacity:0.15;opacity:0.15;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag,.vco-timeline .vco-navigation .timenav .content .marker .flag-small{position:absolute;top:15px;left:3px;padding:0px;display:block;z-index:23;width:153px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content{padding:0px 7px 2px 6px;overflow:hidden;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3{font-weight:bold;font-size:15px;line-height:20px;font-size:11px;line-height:11px;color:#999999;margin-bottom:2px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3 small,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3 small{display:none;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h4,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h4{display:none;font-weight:normal;font-size:15px;line-height:20px;margin-top:5px;font-size:10px;line-height:10px;color:#aaaaaa;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h4 small,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h4 small{display:none;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content .thumbnail,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail{margin-bottom:15px;margin-right:3px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content .thumbnail img,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail img{width:22px;height:22px;max-height:none;max-width:none;border:0;border:1px solid #999999;padding:0;margin:0;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag{height:56px;background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:0 0;width:153px;height:53px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content{height:36px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3{margin-top:5px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:0 -135px;width:153px;height:26px;}.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content{height:14px;}.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3{margin-top:4px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail{width:16px;height:10px;margin-right:1px;margin-top:6px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-plaintext{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-280px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-quote{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-232px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-document{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-256px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-photo{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-280px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-twitter{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-256px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vimeo{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-328px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vine{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-160px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-youtube{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-304px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-video{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-328px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-audio{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-304px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-map{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-208px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-website{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-232px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-link{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-232px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-wikipedia{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-184px -120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-storify{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-184px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-googleplus{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-208px -130px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content thumbnail.thumb-instagram{background-image:url(timeline.png?v4.4);background-repeat:no-repeat;background-position:-208px -96px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag.row1{z-index:25;top:48px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag.row2{z-index:24;top:96px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag.row3{z-index:23;top:1px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row1{z-index:28;top:24px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row2{z-index:27;top:48px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row3{z-index:26;top:72px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row4{z-index:25;top:96px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row5{z-index:24;top:120px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row6{z-index:23;top:1px;}
-.vco-timeline .vco-navigation .timenav .content .marker .flag.zFront,.vco-timeline .vco-navigation .timenav .content .marker .flag-small.zFront{z-index:201;}
-.vco-timeline .vco-navigation .timenav .content .era{position:absolute;top:138px;left:150px;height:12px;display:block;overflow:hidden;}.vco-timeline .vco-navigation .timenav .content .era div{height:50px;width:100%;height:100%;line-height:0px;background:#e9e9e9;background:rgba(233, 233, 233, 0.33);}.vco-timeline .vco-navigation .timenav .content .era div h3,.vco-timeline .vco-navigation .timenav .content .era div h4{position:absolute;bottom:1px;padding-left:15px;font-size:15px;font-weight:bold;color:rgba(0, 136, 204, 0.35);text-shadow:0px 1px 1px #ffffff;}
-.vco-timeline .vco-navigation .timenav .content .era1 div{background:#cc4400;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(204, 68, 0, 0.1);border-right:1px solid rgba(255, 85, 0, 0.05);}.vco-timeline .vco-navigation .timenav .content .era1 div h3,.vco-timeline .vco-navigation .timenav .content .era1 div h4{color:rgba(204, 68, 0, 0.35);text-shadow:0px 1px 1px #ffffff;}
-.vco-timeline .vco-navigation .timenav .content .era2 div{background:#cc0022;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(204, 0, 34, 0.1);border-right:1px solid rgba(255, 0, 43, 0.05);}.vco-timeline .vco-navigation .timenav .content .era2 div h3,.vco-timeline .vco-navigation .timenav .content .era2 div h4{color:rgba(204, 0, 34, 0.35);text-shadow:0px 1px 1px #ffffff;}
-.vco-timeline .vco-navigation .timenav .content .era3 div{background:#0022cc;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(0, 34, 204, 0.1);border-right:1px solid rgba(0, 43, 255, 0.05);}.vco-timeline .vco-navigation .timenav .content .era3 div h3,.vco-timeline .vco-navigation .timenav .content .era3 div h4{color:rgba(0, 34, 204, 0.35);text-shadow:0px 1px 1px #ffffff;}
-.vco-timeline .vco-navigation .timenav .content .era4 div{background:#ccaa00;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(204, 170, 0, 0.1);border-right:1px solid rgba(255, 213, 0, 0.05);}.vco-timeline .vco-navigation .timenav .content .era4 div h3,.vco-timeline .vco-navigation .timenav .content .era4 div h4{color:rgba(204, 170, 0, 0.35);text-shadow:0px 1px 1px #ffffff;}
-.vco-timeline .vco-navigation .timenav .content .era5 div{background:#00ccaa;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(0, 204, 170, 0.1);border-right:1px solid rgba(0, 255, 213, 0.05);}.vco-timeline .vco-navigation .timenav .content .era5 div h3,.vco-timeline .vco-navigation .timenav .content .era5 div h4{color:rgba(0, 204, 170, 0.35);text-shadow:0px 1px 1px #ffffff;}
-.vco-timeline .vco-navigation .timenav .content .era6 div{background:#0088cc;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(0, 136, 204, 0.1);border-right:1px solid rgba(0, 170, 255, 0.05);}.vco-timeline .vco-navigation .timenav .content .era6 div h3,.vco-timeline .vco-navigation .timenav .content .era6 div h4{color:rgba(0, 136, 204, 0.35);text-shadow:0px 1px 1px #ffffff;}
-.vco-timeline .vco-navigation .timenav .time{position:absolute;left:0px;top:150px;height:50px;background-color:#ffffff;line-height:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval-minor{max-width:none;height:6px;white-space:nowrap;position:absolute;top:-2px;left:8px;z-index:10;}.vco-timeline .vco-navigation .timenav .time .time-interval-minor .minor{position:relative;top:2px;display:inline-block;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAMCAMAAACdvocfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFzMzM////040VdgAAAAJ0Uk5T/wDltzBKAAAAEklEQVR42mJgYAQCBopJgAADAAbwADHy2qHzAAAAAElFTkSuQmCC);width:100px;height:6px;background-position:center top;white-space:nowrap;color:#666666;margin-top:0px;padding-top:0px;}
-.vco-timeline .vco-navigation .timenav .time .time-interval{white-space:nowrap;position:absolute;top:5px;left:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval div{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAMCAMAAACdvocfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFzMzM////040VdgAAAAJ0Uk5T/wDltzBKAAAAEklEQVR42mJgYAQCBopJgAADAAbwADHy2qHzAAAAAElFTkSuQmCC);background-position:left top;background-repeat:no-repeat;padding-top:6px;position:absolute;height:3px;left:0px;display:block;font-weight:normal;font-size:10px;line-height:20px;text-transform:uppercase;text-align:left;text-indent:0px;white-space:nowrap;color:#666666;margin-left:0px;margin-right:0px;margin-top:0px;z-index:2;}.vco-timeline .vco-navigation .timenav .time .time-interval div strong{font-weight:bold;color:#000000;}
-.vco-timeline .vco-navigation .timenav .time .time-interval div.era{font-weight:bold;padding-top:0px;margin-top:-3px;margin-left:2px;background-image:none;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era1{color:#cc4400;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era2{color:#cc0022;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era3{color:#0022cc;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era4{color:#ccaa00;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era5{color:#00ccaa;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval .era6{color:#0088cc;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.vco-timeline .vco-navigation .timenav .time .time-interval-major{white-space:nowrap;position:absolute;top:5px;left:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval-major div{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAQAQMAAADtUYf0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyOTAzRjI3REIzNDcxMUUxQUQ3QUZCOThEODQ1NDhCNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyOTAzRjI3RUIzNDcxMUUxQUQ3QUZCOThEODQ1NDhCNyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjI5MDNGMjdCQjM0NzExRTFBRDdBRkI5OEQ4NDU0OEI3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjI5MDNGMjdDQjM0NzExRTFBRDdBRkI5OEQ4NDU0OEI3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+DPWNfQAAAANQTFRFzMzMylJEJwAAAAtJREFUCB1jYMAPAAAgAAHDvpOtAAAAAElFTkSuQmCC);background-position:left top;background-repeat:no-repeat;padding-top:15px;position:absolute;height:15px;left:0px;display:block;font-weight:bold;font-size:12px;line-height:20px;text-transform:uppercase;text-align:left;text-indent:0px;white-space:nowrap;color:#333333;margin-left:0px;margin-right:0px;margin-top:1px;z-index:5;}.vco-timeline .vco-navigation .timenav .time .time-interval-major div strong{font-weight:bold;color:#000000;}
-@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.vco-notouch .vco-navigation .vco-toolbar .zoom-in .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-256px 0;width:24px;height:24px;} .vco-notouch .vco-navigation .vco-toolbar .zoom-out .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-280px 0;width:24px;height:24px;} .vco-notouch .vco-navigation .vco-toolbar .back-home .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-328px 0;width:24px;height:24px;} .vco-notouch .vco-navigation .vco-toolbar.touch .zoom-in .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-208px -160px;width:40px;height:40px;} .vco-notouch .vco-navigation .vco-toolbar.touch .zoom-out .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-256px -160px;width:40px;height:40px;} .vco-notouch .vco-navigation .vco-toolbar.touch .back-home .icon{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-304px -160px;width:40px;height:40px;} .vco-notouch .vco-navigation .timenav .content .marker .flag:hover{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} .vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} .vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;} .vco-notouch .vco-navigation .timenav-background .timenav-indicator{background-image:url(timeline@2x.png?v4.4);background-size:352px 260px;background-repeat:no-repeat;background-position:-160px -48px;width:24px;height:24px;}}@media screen and (-webkit-max-device-pixel-ratio:1){}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){}@media screen and (max-device-width:480px) and (orientation:portrait){.storyjs-embed.full-embed{height:557px !important;width:320px !important;}.storyjs-embed.full-embed .vco-feature{height:356px !important;}}@media screen and (max-device-width:480px) and (orientation:landscape){.storyjs-embed.full-embed{height:409px !important;width:480px !important;}.storyjs-embed.full-embed .vco-feature{height:208px !important;}}@media screen and (min-device-width:481px) and (orientation:portrait){}@media screen and (min-device-width:481px) and (orientation:landscape){}@media (max-width:480px){}@media only screen and (max-width:480px){}
diff --git a/public/opac/TimelineJS-2.25/compiled/css/timeline.png b/public/opac/TimelineJS-2.25/compiled/css/timeline.png
deleted file mode 100644
index 857d0d19815d949ee5249ac90b05d5cde0551291..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/compiled/css/timeline.png and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/compiled/css/timeline@2x.png b/public/opac/TimelineJS-2.25/compiled/css/timeline@2x.png
deleted file mode 100644
index 41b4eb255a288552a13e0f23a76b28bb34333ead..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/compiled/css/timeline@2x.png and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/af.js b/public/opac/TimelineJS-2.25/compiled/js/locale/af.js
deleted file mode 100644
index 857d907620ecdfb44068fd6984a8c0ffbd80a9c9..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/af.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Afrikaans LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"af",api:{wikipedia:"af"},date:{month:["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"],month_abbr:["Jan.","Feb.","Maart","April","Mei","Junei","Julie","Aug.","Sept.","Okt.","Nov.","Des."],day:["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"],day_abbr:["Son.","Maan.","Dins.","Woen.","Don.","Vry.","Sat."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d mmmm yyyy'</small>'",full_long:"d mmm',' yyyy 'om' HH:MM",full_long_small_date:"HH:MM'<br/><small>d mmm yyyy'</small>'"},messages:{loading_timeline:"Die tydlyn laai... ",return_to_title:"Begin voor",expand_timeline:"Rek die tydlyn",contract_timeline:"Krimp die tydlyn",wikipedia:"Van Wikipedia, die gratis ensiklopedie",loading_content:"Die inhoud laai",loading:"Aan't laai"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/ar.js b/public/opac/TimelineJS-2.25/compiled/js/locale/ar.js
deleted file mode 100644
index 1bb0da99528b4e96e18e867b26e0fd2ca1f7dbb5..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/ar.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Arabic LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ar",right_to_left:!0,api:{wikipedia:"ar"},date:{month:["كانون الثاني","شباط","آذار","نيسان","أيار","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],month_abbr:["كانون الثاني","شباط","آذار","نيسان","أيار","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],day:["الأحد","الإثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],day_abbr:["الأحد","الإثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:SS TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"جاري التحميل... ",return_to_title:"العودة",expand_timeline:"تكبير العرض",contract_timeline:"الاتفاقية",wikipedia:"من ويكيبيديا, الموسوعة الحرة",loading_content:"تحميل المحتوى",loading:"تحميل"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/bg.js b/public/opac/TimelineJS-2.25/compiled/js/locale/bg.js
deleted file mode 100644
index 052a4ceea6ec358012136890e0554cded9829c67..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/bg.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Bulgarian LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"bg",api:{wikipedia:"bg"},date:{month:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],month_abbr:["Ян.","Фев.","Март","Апр.","Май","Юни","Юли","Авг.","Септ.","Окт.","Ноем.","Дек."],day:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],day_abbr:["Нед.","Пон.","Вт.","Ср.","Четв.","Пет.","Съб."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"h:MM:SS TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'d mmmm yyyy'</small>'",full_long:"d mmm yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'<br/><small>d mmm yyyy'</small>'"},messages:{loading_timeline:"Зареждане... ",return_to_title:"В началото",expand_timeline:"Разширяване",contract_timeline:"Свиване",wikipedia:"От Уикипедия, свободната енциклопедия",loading_content:"Съдържанието се зарежда",loading:"Зарежда се"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/ca.js b/public/opac/TimelineJS-2.25/compiled/js/locale/ca.js
deleted file mode 100644
index 3707446baa976c768c542346b9f512a9ccd5398d..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/ca.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Catalan LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ca",api:{wikipedia:"ca"},date:{month:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],month_abbr:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],day:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],day_abbr:["Dg.","Dl.","Dt.","Dc.","Dj.","Dv.","Ds."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"'<small>'d mmmm yyyy'</small>' HH:MM",full_long:"dddd',' d mmm yyyy HH:MM",full_long_small_date:"HH:MM'<br/><small>d mmm yyyy'</small>'"},messages:{loading_timeline:"Carregant cronologia...",return_to_title:"Tornar al títol",expand_timeline:"Ampliar la cronologia",contract_timeline:"Reduir la cronologia",wikipedia:"Des de Wikipedia, l'enciclopèdia lliure",loading_content:"Carregant contingut",loading:"Carregant"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/cz.js b/public/opac/TimelineJS-2.25/compiled/js/locale/cz.js
deleted file mode 100644
index 401e265dd194ce0b77efeeb6721e337d7335dd0a..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/cz.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Czech LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"cz",api:{wikipedia:"cs"},date:{month:["ledna","února","března","dubna","května","června","července","srpna","září","října","listopadu","prosince"],month_abbr:["Led","Úno","Bře","Dub","Kvě","Čen","Čec","Srp","Zář","Říj","Lis","Pro"],day:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],day_abbr:["Ne","Po","Út","St","Čt","Pá","So"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d. mmm ",full:"d. mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d. mmmm yyyy'</small>'",full_long:"dddd d. mmm yyyy 'v' HH:MM",full_long_small_date:"HH:MM'<br/><small>dddd d. mmm yyyy'</small>'"},messages:{loading_timeline:"Načítám časovou osu... ",return_to_title:"Zpět na začátek",expand_timeline:"Rozbalit časovou osu",contract_timeline:"Sbalit časovou osu",wikipedia:"Zdroj: otevřená encyklopedie Wikipedia",loading_content:"Nahrávám obsah",loading:"Nahrávám"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/da.js b/public/opac/TimelineJS-2.25/compiled/js/locale/da.js
deleted file mode 100644
index 4853ae15503adf484dbb90c7a448189c01dc0773..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/da.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Danish LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"da",api:{wikipedia:"da"},date:{month:["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"],month_abbr:["jan.","feb.","mar.","apr.","maj.","jun.","jul.","aug.","sep.","okt.","nov.","dec."],day:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],day_abbr:["sø.","ma.","ti.","on.","to.","fr.","lø."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d. mmm",full:"d. mmmm',' yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d. mmmm',' yyyy'</small>'",full_long:"dddd',' d. mmm',' yyyy 'um' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d. mmm yyyy'</small>'"},messages:{loading_timeline:"Henter tidslinie...",return_to_title:"Tilbage til titel",expand_timeline:"Udvid tidslinien",contract_timeline:"Træk tidslinien sammen",wikipedia:"Fra Wikipedia",loading_content:"Henter indhold",loading:"Henter"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/de.js b/public/opac/TimelineJS-2.25/compiled/js/locale/de.js
deleted file mode 100644
index 67bcdec1904b10dd3149a8216e5054e7188b347c..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/de.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* German / Deutsch LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"de",api:{wikipedia:"de"},date:{month:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],month_abbr:["Jan.","Feb.","März","Apr.","Mai","Juni","Juli","Aug.","Sept.","Okt.","Nov.","Dez."],day:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],day_abbr:["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d. mmm",full:"d. mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d. mmmm yyyy'</small>'",full_long:"dddd',' d. mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d. mmm yyyy'</small>'"},messages:{loading_timeline:"Chronologie wird geladen...",return_to_title:"Zurück zum Anfang",expand_timeline:"Chronologie vergrößern",contract_timeline:"Chronologie verkleinern",wikipedia:"Wikipedia, Die freie Enzyklopädie",loading_content:"Loading",loading:"Loading"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/el.js b/public/opac/TimelineJS-2.25/compiled/js/locale/el.js
deleted file mode 100644
index 7774898bba0ee071af9531d7bfb9f3891252fc22..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/el.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Greek LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"en",api:{wikipedia:"en"},date:{month:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],month_abbr:["Ιαν.","Φεβ.","Μαρ.","Απρ.","Μαη","Ιουν.","Ιουλ.","Αύγ.","Σεπτ.","Οκτ.","Νοεμ.","Δεκ."],day:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],day_abbr:["Κυρ.","Δευ.","Τρίτη.","Τετ.","Πεμπ.","Παρ.","Σαβ."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:SS TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Φόρτωση Timeline... ",return_to_title:"Επιστροφή στον Τίτλο",expand_timeline:"Μεγέθυνση",contract_timeline:"Contract Timeline",wikipedia:"From Wikipedia, the free encyclopedia",loading_content:"Φόρτωση Περιεχομένου",loading:"Γίνεται Φόρτωση"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/en-24hr.js b/public/opac/TimelineJS-2.25/compiled/js/locale/en-24hr.js
deleted file mode 100644
index b7ca617574f5ed672e48e6d3b6ed6c7def7a7725..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/en-24hr.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* English LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"en",api:{wikipedia:"en"},date:{month:["January","February","March","April","May","June","July","August","September","October","November","December"],month_abbr:["Jan.","Feb.","March","April","May","June","July","Aug.","Sept.","Oct.","Nov.","Dec."],day:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],day_abbr:["Sun.","Mon.","Tues.","Wed.","Thurs.","Fri.","Sat."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM TT",time_no_seconds_small_date:"HH:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' HH:MM TT",full_long_small_date:"HH:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Loading Timeline... ",return_to_title:"Return to Title",expand_timeline:"Expand Timeline",contract_timeline:"Contract Timeline",wikipedia:"From Wikipedia, the free encyclopedia",loading_content:"Loading Content",loading:"Loading"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/en.js b/public/opac/TimelineJS-2.25/compiled/js/locale/en.js
deleted file mode 100644
index c0c47b643fd565f6c54a8d724901245a239c7531..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/en.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* English LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"en",api:{wikipedia:"en"},date:{month:["January","February","March","April","May","June","July","August","September","October","November","December"],month_abbr:["Jan.","Feb.","March","April","May","June","July","Aug.","Sept.","Oct.","Nov.","Dec."],day:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],day_abbr:["Sun.","Mon.","Tues.","Wed.","Thurs.","Fri.","Sat."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Loading Timeline... ",return_to_title:"Return to Title",expand_timeline:"Expand Timeline",contract_timeline:"Contract Timeline",wikipedia:"From Wikipedia, the free encyclopedia",loading_content:"Loading Content",loading:"Loading"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/es.js b/public/opac/TimelineJS-2.25/compiled/js/locale/es.js
deleted file mode 100644
index 582f6de2726f777a3976ed3bf461816157dc4fa4..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/es.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Spanish LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"es",api:{wikipedia:"es"},date:{month:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],month_abbr:["Ene.","Feb.","Mar.","Abr.","May.","Jun.","Jul.","Ago.","Sep.","Oct.","Nov.","Dic."],day:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],day_abbr:["Dom.","Lun.","Mar.","Mié.","Jue.","Vie.","Sáb."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"'<small>'d mmmm yyyy'</small>' HH:MM",full_long:"dddd',' d mmm yyyy HH:MM",full_long_small_date:"HH:MM'<br/><small>d mmm yyyy'</small>'"},messages:{loading_timeline:"Cronología esta cargando",return_to_title:"Volver al título",expand_timeline:"Enlargar la cronología",contract_timeline:"Reducir la cronología",wikipedia:"Desde Wikipedia, la enciclopedia libre",loading_content:"cargando",loading:"cargando"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/eu.js b/public/opac/TimelineJS-2.25/compiled/js/locale/eu.js
deleted file mode 100644
index 027bd37c3ffede8ecae40fe68c689db29a263cd4..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/eu.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Basque/ Euskara LANGUAGE
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"eu",api:{wikipedia:"eu"},date:{month:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],month_abbr:["Urt.","Ots.","Mar.","Api.","Mai.","Eka.","Uzt.","Abu.","Ira.","Urr.","Aza.","Abe."],day:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata"],day_abbr:["Iga.","Asl.","Asr.","Asz.","Osg.","Osr.","Lar."]},dateformats:{year:"yyyy",month_short:"mmm",month:"yyyy'(e)ko' mmmm",full_short:"mmm'-'d",full:"yyyy'(e)ko' mmmm'k' d",time_short:"h:MM:SS TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br /><small>'yyyy'-'mmm'-'d'</small>",full_long:"yyyy'(e)ko' mmmm'ren' d'(e)an,' hh:MM TT'(r)etan'",full_long_small_date:"hh:MM TT'<br /><small>'yyyy'-'mmm'-'d'</small>"},messages:{loading_timeline:"Kronologia kargatzen...",return_to_title:"Titulura itzuli",expand_timeline:"Handiago ikusi",contract_timeline:"Txikiago ikusi",wikipedia:"Wikipedia entziklopedia libretik",loading_content:"Edukia kargatzen",loading:"Kargatzen"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/fi.js b/public/opac/TimelineJS-2.25/compiled/js/locale/fi.js
deleted file mode 100644
index 9288b5f622c71539cf42cb25d78f6e3ab272ca45..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/fi.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Finnish LANGUAGE
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"fi",api:{wikipedia:"fi"},date:{month:["tammikuuta","helmikuuta","maaliskuuta","huhtikuuta","toukokuuta","kesäkuuta","heinäkuuta","elokuuta","syyskuuta","lokakuuta","marraskuuta","joulukuuta"],month_abbr:["tammi","helmi","maalis","huhti","touko","kesä","heinä","elo","syys","loka","marras","joulu"],day:["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauauntai"],day_abbr:["su","ma","ti","ke","to","pe","la"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d. mmm",full:"d. mmmm yyyy",time_short:"h:MM:SS TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'d. mmmm yyyy'</small>'",full_long:"mmm d yyyy 'klo' h:MM TT",full_long_small_date:"h:MM TT'<br/><small>d. mmm yyyy'</small>'"},messages:{loading_timeline:"Ladataan aikajanaa… ",return_to_title:"Takaisin etusivulle",expand_timeline:"Laajenna aikajanaa",contract_timeline:"Tiivistä aikajanaa",wikipedia:"Wikipediasta",loading_content:"Ladataan sisältöä",loading:"Ladataan"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/fo.js b/public/opac/TimelineJS-2.25/compiled/js/locale/fo.js
deleted file mode 100644
index 2d6fa6ddbb47759ba48497e8b37dcd83018bf757..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/fo.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Faroese LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"fo",api:{wikipedia:"fo"},date:{month:["januar","februar","mars","aprÌl","mai","juni","juli","august","september","oktober","november","desember"],month_abbr:["jan.","febr.","mars","aprÌl","mai","juni","juli","aug.","sept.","okt.","nov.","des."],day:["sunnudagur","m·nadagur","t˝sdagur","mikudagur","hÛsdagur","frÌggjadagur","leygardagur"],day_abbr:["sun.","m·n.","t˝s.","mik.","hÛs.","frÌ.","ley."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d'.' mmm",full:"d'.' mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d'.' mmmm yyyy'</small>'",full_long:"d'.' mmmm yyyy 'klokkan' HH:MM",full_long_small_date:"HH:MM'<br/><small>'d'.' mmm yyyy'</small>'"},messages:{loading_timeline:"Lesur inn t&iacute;&eth;arr&aacute;s...",return_to_title:"V&iacute;&eth;ka t&iacute;&eth;arr&aacute;s...",expand_timeline:"Minka t&iacute;&eth;arr&aacute;s...",contract_timeline:"Minka t&iacute;&eth;arr&aacute;s",wikipedia:"Fr· Wikipedia",loading_content:"Lesur inn tilfar",loading:"Lesur inn"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/fr.js b/public/opac/TimelineJS-2.25/compiled/js/locale/fr.js
deleted file mode 100644
index 8ab777fc25f8381cae56a702120654a44f71ea02..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/fr.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* French LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"fr",api:{wikipedia:"fr"},date:{month:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],month_abbr:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","dec."],day:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],day_abbr:["Dim.","Lu.","Ma.","Me.","Jeu.","Vend.","Sam."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d mmmm yyyy'</small>'",full_long:"dddd',' d mmm yyyy 'à' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"},messages:{loading_timeline:"Chargement de la frise en cours... ",return_to_title:"Retour à la page d'accueil",expand_timeline:"Elargir la frise",contract_timeline:"Réduire la frise",wikipedia:"Extrait de Wikipedia, l'encyclopédie libre",loading_content:"Chargement",loading:"Chargement"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/gl.js b/public/opac/TimelineJS-2.25/compiled/js/locale/gl.js
deleted file mode 100644
index 33e8e207162bece86c2c3c79cde6189577758c1c..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/gl.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Galician LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"gl",api:{wikipedia:"gl"},date:{month:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],month_abbr:["Xan.","Feb.","Mar.","Abr.","Mai.","Xuñ.","Xul.","Ago.","Set.","Out.","Nov.","Dec."],day:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],day_abbr:["Dom.","Lun.","Mar.","Mér.","Xov.","Ven.","Sáb."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d mmmm yyyy'</small>'",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"},messages:{loading_timeline:"Cronoloxía esta cargando",return_to_title:"Volver ao título",expand_timeline:"Alongar a cronoloxía",contract_timeline:"Acurtar a cronoloxía",wikipedia:"Dende Wikipedia, a enciclopedia libre",loading_content:"cargando",loading:"cargando"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/hu.js b/public/opac/TimelineJS-2.25/compiled/js/locale/hu.js
deleted file mode 100644
index 986a8547d4c1695218dc0f553925456d1f0b8bcc..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/hu.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Hungarian LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"hu",api:{wikipedia:"hu"},date:{month:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],month_abbr:["Jan.","Febr.","Márc","Ápr.","Máj.","Jún.","Júl.","Aug.","Szept.","Okt.","Nov.","Dec."],day:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],day_abbr:["Vas.","Hétfő","Kedd","Szer.","Csüt.","Pén.","Szom."]},dateformats:{year:"yyyy",month_short:"mmm",month:"yyyy mmmm",full_short:"mmm d",full:"yyyy mmmm d",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM '<br/><small>'yyyy mmmm d'</small>'",full_long:"yyyy mmm d',' HH:MM",full_long_small_date:"HH:MM '<br/><small>yyyy mmm d'</small>'"},messages:{loading_timeline:"Az idővonal betöltése... ",return_to_title:"Vissza a címhez",expand_timeline:"Nagyítás",contract_timeline:"Kicsinyítés",wikipedia:"A Wikipédiából, a szabad enciklopédiából",loading_content:"Tartalom betöltése",loading:"Betöltés"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/hy.js b/public/opac/TimelineJS-2.25/compiled/js/locale/hy.js
deleted file mode 100644
index dd8ffc4d495cf3e1587ea20d383682d16af4d816..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/hy.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Armenian LANGUAGE
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"hy",api:{wikipedia:"hy"},date:{month:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],month_abbr:["Հնվ.","Փետ.","Մար","Ապր","Մայ","Հուն","Հուլ","Օգս.","Սեպ.","Հոկ.","Նոյ.","Դեկ."],day:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"],day_abbr:["Կի.","Եկ.","Եք.","Չո.","Հի.","Ու.","Շա."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm',' yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"H:MM",time_no_seconds_small_date:"H:MM'<br/><small>'d mmmm',' yyyy'</small>'",full_long:"d mmm',' yyyy 'at' H:MM",full_long_small_date:"H:MM '<br/><small>d mmm',' yyyy'</small>'"},messages:{loading_timeline:"Ժամանակագրությունը բեռնվում է... ",return_to_title:"Վերադառնալ վերնագրին",expand_timeline:"Լայնացնել ժամանակագրությունը",contract_timeline:"Նեղացնել ժամանակագրությունը",wikipedia:"Ըստ Վիքիպեդիա ազատ հանրագիտարանի",loading_content:"Բովանդակությունը բեռնվում է",loading:"Բեռնում"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/id.js b/public/opac/TimelineJS-2.25/compiled/js/locale/id.js
deleted file mode 100644
index 92f2b90aa1bf0a99f469b669be8ac2956d2dd4b4..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/id.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Indonesian LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"id",api:{wikipedia:"id"},date:{month:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],month_abbr:["Jan.","Feb.","Maret","April","Mei","Juni","July","Agus.","Sept.","Okt.","Nov.","Des."],day:["Ahad","Senin","Selasa","Rabu","Kamis","Jum'at","Sabtu"],day_abbr:["Ahad","Sen.","Sel.","Rabu","Kamis","Jum.","Sab."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:SS",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d mmmm yyyy'</small>'",full_long:"dddd',' d mmm yyyy 'pukul' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"},messages:{loading_timeline:"Memuat Timeline... ",return_to_title:"Kembali ke Judul",expand_timeline:"Kembangkan Timeline",contract_timeline:"Ciutkan Timeline",wikipedia:"dari Wikipedia, ensiklopedia bebas",loading_content:"Memuat Isi",loading:"Memuat"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/is.js b/public/opac/TimelineJS-2.25/compiled/js/locale/is.js
deleted file mode 100644
index 1166c4fa6c5aac7da17f2692c2f511125f8ac99c..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/is.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Icelandic LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"is",api:{wikipedia:"is"},date:{month:["janúar","febrúar","mars","apríl","maí","júní","júlí","ágúst","september","október","nóvember","desember"],month_abbr:["jan.","feb.","mars","apríl","maí","júní","júlí","ágúst","sept.","okt.","nóv.","des."],day:["sunnudagur","mánudagur","þriðjudagur","miðvikudagur","fimmtudagur","föstudagur","laugardagur"],day_abbr:["sun.","mán.","þri.","mið.","fim.","fös.","lau."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:SS TT",time_no_seconds_short:"hh:MM TT",time_no_seconds_small_date:"hh:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"dddd',' mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>'dddd',' mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Raða upp tímalínu... ",return_to_title:"Til baka á forsíðu",expand_timeline:"Stækka tímalínu",contract_timeline:"Minnka tímalínu",wikipedia:"From Wikipedia, the free encyclopedia",loading_content:"Raða",loading:"Raða"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/it.js b/public/opac/TimelineJS-2.25/compiled/js/locale/it.js
deleted file mode 100644
index 4b047acbe39ce65ce1bf95795980384acec14bad..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/it.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Italian LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"it",api:{wikipedia:"it"},date:{month:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],month_abbr:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],day:["Domenica","Lunedi","Martedi","Mercoledi","Giovedi","Venerdi","Sabato"],day_abbr:["Dom.","Lun.","Mar.","Mer.","Gio.","Ven.","Sab."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d mmmm yyyy'</small>'",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"},messages:{loading_timeline:"Loading Timeline... ",return_to_title:"Return to Title",expand_timeline:"Expand Timeline",contract_timeline:"Contract Timeline",wikipedia:"Wikipedia, L’enciclopedia libera",loading_content:"Loading Content",loading:"Loading"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/iw.js b/public/opac/TimelineJS-2.25/compiled/js/locale/iw.js
deleted file mode 100644
index 7555631c6a224b6759a495b94d206bf186ab5197..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/iw.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Hebrew (beta) LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"iw",right_to_left:!0,api:{wikipedia:"iw"},date:{month:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],month_abbr:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],day:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],day_abbr:["יום א'","יום ב'","יום ג'","יום ד'","יום ה'","יום ו'","שבת"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm,' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"d' mmm,' yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"טוען את ציר הזמן... ",return_to_title:"חזור לכותרת",expand_timeline:"הרחב את ציר הזמן",contract_timeline:"צמצם את ציר הזמן",wikipedia:"מויקיפדיה, האינציקלופדיה החופשית",loading_content:"התוכן בטעינה...",loading:"טוען..."}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/ja.js b/public/opac/TimelineJS-2.25/compiled/js/locale/ja.js
deleted file mode 100644
index 566d10a1d65c310c6bd166f10496b0774cda792a..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/ja.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Japanese LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ja",api:{wikipedia:"ja"},date:{month:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],month_abbr:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],day:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],day_abbr:["日","月","火","水","木","金","土"]},dateformats:{year:"yyyy年",month_short:"mmm",month:"yyyy年 m月d日 (ddd)",full_short:"yyyy年m月d日",full:"yyyy年 m月d日 (ddd)",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'yyyy年m月d日'</small>'",full_long:"yyyy年m月d日 H時M分s秒",full_long_small_date:"HH:MM:ss'<br/><small>'yyyy年m月d日'</small>'"},messages:{loading_timeline:"タイムラインをロードしています…",return_to_title:"タイトルへ戻ります",expand_timeline:"タイムラインを展開します",contract_timeline:"タイムラインを縮めます",wikipedia:"出典:フリー百科事典『ウィキペディア(Wikipedia)』",loading_content:"コンテンツをロードしています",loading:"ローディング"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/ka.js b/public/opac/TimelineJS-2.25/compiled/js/locale/ka.js
deleted file mode 100644
index edbccce9dc5c4bb0c40f1b18adeb564ae9ab78ae..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/ka.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Georgian LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ka",api:{wikipedia:"ka"},date:{month:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომბერი","ნოემბერი","დეკემბერი"],month_abbr:["იან.","თებ.","მარტი","აპრ","მაი.","ივნ.","ივლ.","აგვ.","სექ.","ოქტ.","ნოე.","დეკ."],day:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],day_abbr:["კვ.","ორ.","სამ.","ოთხ.","ხუთ.","პარ.","შაბ."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"იტვირთება თაიმლაინი... ",return_to_title:"დაბრუნდი თავში",expand_timeline:"გაშალე თაიმლაინი",contract_timeline:"Contract Timeline",wikipedia:"თავისუფალი ენციკლოპედია Wikipedia-დან",loading_content:"შინაარსის ჩამოტვირთვა",loading:"ჩამოტვირთვა"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/ko.js b/public/opac/TimelineJS-2.25/compiled/js/locale/ko.js
deleted file mode 100644
index 93019cd69e3049b94aee7c93aafdaf370b30c3f0..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/ko.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Korean LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ko",api:{wikipedia:"ko"},date:{month:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],month_abbr:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],day:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],day_abbr:["일","월","화","수","목","금","토"]},dateformats:{year:"yyyy",month_short:"mmm",month:"yyyy mmm",full_short:"mmm d",full:"yyyy mmm d ",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'yyyy mmm d'</small>'",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd','yyyy mmm d'</small>'"},messages:{loading_timeline:"타임라인을 불러오고 있습니다.... ",return_to_title:"첫화면으로",expand_timeline:"타임라인 확대",contract_timeline:"타임라인 축소",wikipedia:"출처: 위키피디아, 우리 모두의 백과사전",loading_content:"내용을 불러오고 있습니다.",loading:"불러오는중"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/lv.js b/public/opac/TimelineJS-2.25/compiled/js/locale/lv.js
deleted file mode 100644
index b7d8e6e7120a7da89120b3332d9557c96b1f59c1..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/lv.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Latvian LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"lv",api:{wikipedia:"lv"},date:{month:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],month_abbr:["Jan.","Feb.","Mar.","Apr.","Mai.","Jūn.","Jūl.","Aug.","Sep.","Okt.","Nov.","Dec."],day:["Svētdiena","Pirmdiena","Otrdiena","Trešdiena","Ceturtdiena","Piektdiena","Sestdiena"],day_abbr:["Sun.","Mon.","Tues.","Wed.","Thurs.","Fri.","Sat."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"d. mmmm',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"HH:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Ielādējas grafiks... ",return_to_title:"Atgriezties uz sākumu",expand_timeline:"Izvērst grafiku",contract_timeline:"Sašaurināt grafiku",wikipedia:"No Wikipedia, brīvās enciklopēdijas",loading_content:"Ielādējas saturs",loading:"Ielādējas"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/nl.js b/public/opac/TimelineJS-2.25/compiled/js/locale/nl.js
deleted file mode 100644
index 1d331160dbc0a50e9903e6f4b360667c85526580..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/nl.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Dutch LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"nl",api:{wikipedia:"nl"},date:{month:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],month_abbr:["jan","febr","maa","apr","mei","juni","juli","aug","sept","okt","nov","dec"],day:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],day_abbr:["zo","ma","di","wo","do","vr","za"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d mmmm yyyy'</small>'",full_long:"dddd',' d mmm yyyy 'om' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"},messages:{loading_timeline:"Tijdlijn laden ... ",return_to_title:"Terug naar het begin",expand_timeline:"Tijdlijn uitzoomen",contract_timeline:"Tijdlijn inzoomen",wikipedia:"From Wikipedia, the free encyclopedia",loading_content:"Inhoud laden",loading:"Laden"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/no.js b/public/opac/TimelineJS-2.25/compiled/js/locale/no.js
deleted file mode 100644
index 065c80a9438a4131ba726a201248d3f1e76032a3..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/no.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Norwegian LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"no",api:{wikipedia:"no"},date:{month:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],month_abbr:["Jan.","Feb.","Mars","Apr.","Mai","Juni","Juli","Aug.","Sep.","Okt.","Nov.","Des."],day:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],day_abbr:["Søn.","Man.","Tir.","Ons.","Tor.","Fre.","Lør."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d. mmm",full:"d. mmmm',' yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d. mmmm',' yyyy'</small>'",full_long:"dddd',' d. mmm',' yyyy 'kl.' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d. mmm',' yyyy'</small>'"},messages:{loading_timeline:"Laster timeline... ",return_to_title:"Tilbake til tittel",expand_timeline:"Utvid timeline",contract_timeline:"Krymp timeline",wikipedia:"Fra Wikipedia, den frie encyklopedi",loading_content:"Laster innhold",loading:"Laster"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/pl.js b/public/opac/TimelineJS-2.25/compiled/js/locale/pl.js
deleted file mode 100644
index 893f37de43bc71dbbf0935e88faa45a1f55cc104..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/pl.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Polish LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"pl",api:{wikipedia:"pl"},date:{month:["Stycznia","Lutego","Marca","Kwietnia","Maja","Czerwca","Lipca","Sierpnia","Września","Października","Listopada","Grudnia"],month_abbr:["Sty.","Lut.","Mar.","Kwi.","Maj.","Cze.","Lip.","Sie.","Wrz.","Paź.","Lis.","Gru."],day:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],day_abbr:["Nie.","Pon.","Wto.","Śro.","Czw.","Pią.","Sob."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d mmmm yyyy'</small>'",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"},messages:{loading_timeline:"Ładowanie Timeline... ",return_to_title:"Wróć do tytułu",expand_timeline:"Powiększ Timeline",contract_timeline:"Zmniejsz Timeline",wikipedia:"Z Wikipedii, wolnej encyklopedii",loading_content:"Ładowanie zawartości",loading:"Ładowanie"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/pt-br.js b/public/opac/TimelineJS-2.25/compiled/js/locale/pt-br.js
deleted file mode 100644
index de0fc4a2c3f9cd5042bc0bce1ec4bd7b3d99b8e4..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/pt-br.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Brazilian Portuguese LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"pt-br",api:{wikipedia:"pt"},date:{month:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],month_abbr:["Jan.","Fev.","Mar.","Abr.","Mai.","Jun.","Jul.","Ago.","Set.","Out.","Nov.","Dez."],day:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],day_abbr:["Dom.","Seg.","Ter.","Qua.","Qui.","Sex.","Sáb."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm 'de' yyyy",full_short:"d 'de' mmm",full:"d 'de' mmmm',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"hh:MM TT",time_no_seconds_small_date:"hh:MM TT'<br/><small>'d 'de' mmmm',' yyyy'</small>'",full_long:"dddd',' d 'de' mmm',' yyyy 'às' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>'dddd',' d 'de' mmm',' yyyy'</small>'"},messages:{loading_timeline:"Carregando Timeline... ",return_to_title:"Voltar para o título",expand_timeline:"Expandir Timeline",contract_timeline:"Contrair Timeline",wikipedia:"Wikipedia, A enciclopédia livre",loading_content:"Carregando Conteúdo",loading:"Carregando"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/pt.js b/public/opac/TimelineJS-2.25/compiled/js/locale/pt.js
deleted file mode 100644
index 4a6fb076fd0d3195af4c042105cf0af19fafc55c..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/pt.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Portuguese LANGUAGE
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"pt",api:{wikipedia:"pt"},date:{month:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],month_abbr:["Jan","Fev","Mar","Abr","Maio","Jun","Jul","Ago","Set","Out","Nov","Dez"],day:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sabado"],day_abbr:["Dom","Seg","Ter","Qua","Qui","Sex","Sab"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"A carregar a timeline... ",return_to_title:"Voltar ao Título",expand_timeline:"Expandir Timeline",contract_timeline:"Colapsar Timeline",wikipedia:"Wikipedia, A enciclopedia Livre.",loading_content:"A carregar o conteúdo",loading:"A carregar"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/ru.js b/public/opac/TimelineJS-2.25/compiled/js/locale/ru.js
deleted file mode 100644
index c35b48ab182f3b89559aba89de599460f48ced95..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/ru.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Russian LANGUAGE 
- ================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ru",api:{wikipedia:"ru"},date:{month:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],month_abbr:["Янв.","Фев.","Март","Апр.","Май","Июнь","Июль","Авг.","Сент.","Окт.","Нояб.","Дек."],day:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"],day_abbr:["Вск.","Пн.","Вт.","Ср.","Чт.","Пт.","Сб."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Загрузка... ",return_to_title:"Вернуться к заголовку",expand_timeline:"Увеличить",contract_timeline:"Уменьшить",wikipedia:"Из Wikipedia",loading_content:"Загрузка контента",loading:"Загрузка"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/sk.js b/public/opac/TimelineJS-2.25/compiled/js/locale/sk.js
deleted file mode 100644
index e247cbaf6c5dd0978cb8ffdd7b5a997e0dcaa3cc..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/sk.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Slovak LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"sk",api:{wikipedia:"sk"},date:{month:["Janu&#225;r","Febru&#225;r","Marec","Apr&#237;l","M&#225;j","J&#250;n","J&#250;l","August","September","Okt&#243;ber","November","December"],month_abbr:["Jan.","Feb.","Marec","Apr&#237;l","M&#225;j","J&#250;n","J&#250;l","Aug.","Sept.","Okt.","Nov.","Dec."],day:["Nede&#318;a","Pondelok","Utorok","Streda","&#352;tvrtok","Piatok","Sobota"],day_abbr:["Ned.","Pon.","Uto.","Str.","&#352;tv.","Pia.","Sob."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"d. mmmm',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Na&#269;&#237;tam &#269;asov&#250; os... ",return_to_title:"Sp&#228;&#357; na &#250;vod",expand_timeline:"Zv&#228;&#269;&#353;i&#357; &#269;asov&#250; os",contract_timeline:"Zmen&#353;i&#357; &#269;asov&#250; os",wikipedia:"Z Wikipedie, encyklop&#233;die zadarmo",loading_content:"Na&#269;&#237;tam obsah",loading:"Na&#269;&#237;tanie"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/sl.js b/public/opac/TimelineJS-2.25/compiled/js/locale/sl.js
deleted file mode 100644
index 80809b8ca0a61871ec783c18dadfd52956d9f361..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/sl.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Slovenian LANGUAGE SLOVENIAN
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"sl",api:{wikipedia:"sl"},date:{month:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],month_abbr:["Jan.","Feb.","Marec","April","Maj","Junij","July","Avg.","Sept.","Okt.","Nov.","Dec."],day:["Nedelja","Ponedeljek","Torek","Sreda","Čertek","Petek","Sobota"],day_abbr:["Ned.","Pon.","Tor.","Sre.","Čet.","Pet.","Sob."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM",time_no_seconds_small_date:"h:MM' 'd mmmm' 'yyyy",full_long:"d mmm yyyy 'ob' hh:MM",full_long_small_date:"hh:MM' d mmm yyyy"},messages:{loading_timeline:"Nalagam časovni trak... ",return_to_title:"Nazaj na naslov",expand_timeline:"Razširi časovni trak",contract_timeline:"Pokrči časovni trak",wikipedia:"Vir Wikipedija",loading_content:"Nalaganje vsebine",loading:"Nalaganje"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/sr-cy.js b/public/opac/TimelineJS-2.25/compiled/js/locale/sr-cy.js
deleted file mode 100644
index 8af02f91023f1314fbbcb753247ea2e1dda978e7..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/sr-cy.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Serbian (Cyrillic) LANGUAGE
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"рп",api:{wikipedia:"рп"},date:{month:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],month_abbr:["Јан.","Феб.","Март","Апр.","Мај","Јун","Јул","Авг.","Сеп.","Окт.","Нов.","Дец."],day:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],day_abbr:["Нед.","Пон.","Уто.","Сре.","Чет.","Пет.","Суб."]},dateformats:{year:"yyyy.",month_short:"mmm",month:"mmmm yyyy.",full_short:"d. mmm",full:"d. mmmm yyyy.",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d. mmmm yyyy.'</small>'",full_long:"d. mmm yyyy. 'u' HH:MM",full_long_small_date:"HH:MM'<br/><small>d. mmm yyyy.'</small>'"},messages:{loading_timeline:"Учитавање... ",return_to_title:"Почетак",expand_timeline:"Увећај",contract_timeline:"Умањи",wikipedia:"Из Википедије, слободне енциклопедије",loading_content:"Садржај се учитава",loading:"Учитава се"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/sr.js b/public/opac/TimelineJS-2.25/compiled/js/locale/sr.js
deleted file mode 100644
index 5e1a56e550eb30166622b07fc38693f39fa8f5bb..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/sr.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Serbian (Latin) LANGUAGE
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"sr",api:{wikipedia:"sr"},date:{month:["januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],month_abbr:["Jan.","Feb.","Mart","Apr.","Maj","Jun","Jul","Avg.","Sep.","Okt.","Nov.","Dec."],day:["Nedelja","Ponedeljak","Utorak","Sreda","Četvratk","Petak","Subota"],day_abbr:["Ned.","Pon.","Uto.","Sre.","Čet.","Pet.","Sub."]},dateformats:{year:"yyyy.",month_short:"mmm",month:"mmmm yyyy.",full_short:"d. mmm",full:"d. mmmm yyyy.",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d. mmmm yyyy.'</small>'",full_long:"d. mmm yyyy. 'u' HH:MM",full_long_small_date:"HH:MM'<br/><small>d. mmm yyyy.'</small>'"},messages:{loading_timeline:"Učitavanje... ",return_to_title:"Početak",expand_timeline:"Uvećaj",contract_timeline:"Umanji",wikipedia:"Iz Vikipedije, slobodne enciklopedije",loading_content:"Sadržaj se učitava",loading:"Učitava se"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/sv.js b/public/opac/TimelineJS-2.25/compiled/js/locale/sv.js
deleted file mode 100644
index 98a28d942e0feeb8a8f664f9e43b0c408c39b2f7..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/sv.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Swedish LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"sv",api:{wikipedia:"sv"},date:{month:["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"],month_abbr:["jan","febr","mars","april","maj","juni","juli","aug","sept","okt","nov","dec"],day:["söndag","måndag","tisdag","onsdag","torsdag","fredag","lördag"],day_abbr:["sön","mån","tis","ons","tors","fre","lör"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm',' yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"H:MM",time_no_seconds_small_date:"H:MM'<br/><small>'d mmmm',' yyyy'</small>'",full_long:"d mmm',' yyyy 'vid' H:MM",full_long_small_date:"H:MM'<br/><small>d mmm',' yyyy'</small>'"},messages:{loading_timeline:"Laddar tidslinje... ",return_to_title:"Tillbaka till start",expand_timeline:"Förstora tidslinje",contract_timeline:"Förminska tidslinje",wikipedia:"Från Wikipedia, den fria encyklopedin",loading_content:"Laddar innehåll",loading:"Laddar"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/ta.js b/public/opac/TimelineJS-2.25/compiled/js/locale/ta.js
deleted file mode 100644
index d2b66589d7353d3c3d183516e274fbce69592c1b..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/ta.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Tamil LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ta",api:{wikipedia:"ta"},date:{month:["ஜனவரி","பெப்ரவரி","மார்ச்","ஏப்ரல்","மே","ஜுன்","ஜுலை","ஆகஸ்ட்","செப்டம்பர்","ஒக்டோபர்","நவம்பர்","டிசம்பர்"],month_abbr:["ஜன.","பெப்.","மார்ச்","ஏப்ரல்","மே","ஜுன்","ஜுலை","ஆகஸ்ட்","செப்ட்.","ஒக்டோ.","நவம்பர்","டிசம்பர்"],day:["ஞாயிறு","திங்கள்","செவ்வாய்","புதன்","வியாழன்","வெள்ளி","சனி"],day_abbr:["ஞா","தி","செ","பு","வி","வெ","சனி"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"நேரக்கோடு தரவேறுகிறது.... ",return_to_title:"தலைப்பிற்குச் செல்ல",expand_timeline:"நேரக்கோட்டை விரிக்க",contract_timeline:"நேரக்கோட்டை சுருக்க",wikipedia:"கட்டற்ற கலைக்களஞ்சியம், விக்கிப்பீடியாவிலிருந்து",loading_content:"உள்ளடக்கம் தரவேறுகிறது...",loading:"தரவேறுகிறது"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/tl.js b/public/opac/TimelineJS-2.25/compiled/js/locale/tl.js
deleted file mode 100644
index cfb29126d0974456a13ecc8a014579f9e638f2b5..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/tl.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Tagalog LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"tl",api:{wikipedia:"tl"},date:{month:["Enemo","Pebrero","Marso","Abril","Mayo","Hunyo","Hulyo","Agosto","Setyembre","Oktubre","Nobyembre","Disyembre"],month_abbr:["Ene.","Peb.","Mar.","Abr.","Mayo","Hun.","Hul.","Ago.","Set.","Okt.","Nob.","Dis."],day:["Linggo","Lunes","Martes","Miyerkules","Huwebes","Biyernes","Sabado"],day_abbr:["Li.","L.","M.","Mi.","H.","B.","S."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Loading Timeline... ",return_to_title:"Return to Title",expand_timeline:"Expand Timeline",contract_timeline:"Contract Timeline",wikipedia:"Mula sa Wikipedia, ang malayang ensiklopedya",loading_content:"Loading Content",loading:"Loading"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/tr.js b/public/opac/TimelineJS-2.25/compiled/js/locale/tr.js
deleted file mode 100644
index 86d3e3d0042686a91305f195da6a0d7d42592326..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/tr.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Turkish LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"tr",api:{wikipedia:"tr"},date:{month:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],month_abbr:["Oca.","Şub.","Mar.","Nis.","May.","Haz.","Tem.","Ağu.","Eyl.","Eki.","Kas.","Ara."],day:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],day_abbr:["Paz.","Pzt.","Sal.","Çar.","Per.","Cum.","Cts."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm',' yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"H:MM",time_no_seconds_small_date:"H:MM'<br/><small>'d mmmm',' yyyy'</small>'",full_long:"d mmm',' yyyy 'at' H:MM",full_long_small_date:"H:MM '<br/><small>d mmm',' yyyy'</small>'"},messages:{loading_timeline:"Zaman Çizelgesi Yükleniyor... ",return_to_title:"Başlığa Dön",expand_timeline:"Zaman Çizelgesini Genişlet",contract_timeline:"Zaman Çizelgesini Daralt",wikipedia:"Wikipedia'dan, özgür ansiklopedi",loading_content:"İçerik Yükleniyor",loading:"Yükleniyor"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/zh-cn.js b/public/opac/TimelineJS-2.25/compiled/js/locale/zh-cn.js
deleted file mode 100644
index 6534c52ec42239d87a4e0cb72d72830edf1b3b51..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/zh-cn.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Chinese LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"zh-cn",api:{wikipedia:"zh"},date:{month:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],month_abbr:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],day:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],day_abbr:["周日","周一","周二","周三","周四","周五","周六"]},dateformats:{year:"yyyy年",month_short:"mmm",month:"yyyy年 mmmm",full_short:"mmm d",full:"yyyy年mmmm d日",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'yyyy年mmmm d日'</small>'",full_long:"dddd',' yyyy年 mmm d日'um' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' yyyy年 mmm d日'</small>'"},messages:{loading_timeline:"加载时间线... ",return_to_title:"回到开头",expand_timeline:"伸展时间",contract_timeline:"缩短时间",wikipedia:"来自维基百科,自由的百科全书",loading_content:"正在加载内容",loading:"加载中"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/locale/zh-tw.js b/public/opac/TimelineJS-2.25/compiled/js/locale/zh-tw.js
deleted file mode 100644
index 81cfde462611f39fa8c175a71e4b4b5958890e7b..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/locale/zh-tw.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Taiwanese LANGUAGE 
-================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"zh-tw",api:{wikipedia:"zh"},date:{month:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],month_abbr:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],day:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],day_abbr:["週日","週一","週二","週三","週四","週五","週六"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_short:"HH:MM:ss",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'<br/><small>'d mmmm yyyy'</small>'",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"},messages:{loading_timeline:"載入時間線... ",return_to_title:"回到開頭",expand_timeline:"展開時間",contract_timeline:"縮短時間",wikipedia:"擷取自維基百科, 自由之百科全書",loading_content:"載入內容",loading:"載入中"}});
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/storyjs-embed.js b/public/opac/TimelineJS-2.25/compiled/js/storyjs-embed.js
deleted file mode 100644
index 18cbb07c95be68f1a90f2b35095b4e168d837647..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/storyjs-embed.js
+++ /dev/null
@@ -1,45 +0,0 @@
-/*!
-	StoryJS
-	Designed and built by Zach Wise at VéritéCo
-
-	This Source Code Form is subject to the terms of the Mozilla Public
-	License, v. 2.0. If a copy of the MPL was not distributed with this
-	file, You can obtain one at http://mozilla.org/MPL/2.0/.
-*//* **********************************************
-     Begin LazyLoad.js
-********************************************** *//*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false *//*
-LazyLoad makes it easy and painless to lazily load one or more external
-JavaScript or CSS files on demand either during or after the rendering of a web
-page.
-
-Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile
-Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and
-are not officially supported.
-
-Visit https://github.com/rgrove/lazyload/ for more info.
-
-Copyright (c) 2011 Ryan Grove <ryan@wonko.com>
-All rights reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the 'Software'), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-@module lazyload
-@class LazyLoad
-@static
-@version 2.0.3 (git)
-*/function getEmbedScriptPath(e){var t=document.getElementsByTagName("script"),n="",r="";for(var i=0;i<t.length;i++)t[i].src.match(e)&&(n=t[i].src);n!=""&&(r="/");return n.split("?")[0].split("/").slice(0,-1).join("/")+r}function createStoryJS(e,t){function g(){LoadLib.js(h.js,y)}function y(){l.js=!0;h.lang!="en"?LazyLoad.js(c.locale,b):l.language=!0;x()}function b(){l.language=!0;x()}function w(){l.css=!0;x()}function E(){l.font.css=!0;x()}function S(){l.font.js=!0;x()}function x(){if(l.checks>40)return;l.checks++;if(l.js&&l.css&&l.font.css&&l.font.js&&l.language){if(!l.finished){l.finished=!0;N()}}else l.timeout=setTimeout("onloaded_check_again();",250)}function T(){var e="storyjs-embed";r=document.createElement("div");h.embed_id!=""?i=document.getElementById(h.embed_id):i=document.getElementById("timeline-embed");i.appendChild(r);r.setAttribute("id",h.id);if(h.width.toString().match("%"))i.style.width=h.width.split("%")[0]+"%";else{h.width=h.width-2;i.style.width=h.width+"px"}if(h.height.toString().match("%")){i.style.height=h.height;e+=" full-embed";i.style.height=h.height.split("%")[0]+"%"}else if(h.width.toString().match("%")){e+=" full-embed";h.height=h.height-16;i.style.height=h.height+"px"}else{e+=" sized-embed";h.height=h.height-16;i.style.height=h.height+"px"}i.setAttribute("class",e);i.setAttribute("className",e);r.style.position="relative"}function N(){VMM.debug=h.debug;n=new VMM.Timeline(h.id);n.init(h);o&&VMM.bindEvent(global,onHeadline,"HEADLINE")}var n,r,i,s,o=!1,u="2.24",a="1.7.1",f="",l={timeout:"",checks:0,finished:!1,js:!1,css:!1,jquery:!1,has_jquery:!1,language:!1,font:{css:!1,js:!1}},c={base:embed_path,css:embed_path+"css/",js:embed_path+"js/",locale:embed_path+"js/locale/",jquery:"http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js",font:{google:!1,css:embed_path+"css/themes/font/",js:"http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"}},h={version:u,debug:!1,type:"timeline",id:"storyjs",embed_id:"timeline-embed",embed:!0,width:"100%",height:"100%",source:"https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html",lang:"en",font:"default",css:c.css+"timeline.css?"+u,js:"",api_keys:{google:"",flickr:"",twitter:""},gmap_key:""},p=[{name:"Merriweather-NewsCycle",google:["News+Cycle:400,700:latin","Merriweather:400,700,900:latin"]},{name:"NewsCycle-Merriweather",google:["News+Cycle:400,700:latin","Merriweather:300,400,700:latin"]},{name:"PoiretOne-Molengo",google:["Poiret+One::latin","Molengo::latin"]},{name:"Arvo-PTSans",google:["Arvo:400,700,400italic:latin","PT+Sans:400,700,400italic:latin"]},{name:"PTSerif-PTSans",google:["PT+Sans:400,700,400italic:latin","PT+Serif:400,700,400italic:latin"]},{name:"PT",google:["PT+Sans+Narrow:400,700:latin","PT+Sans:400,700,400italic:latin","PT+Serif:400,700,400italic:latin"]},{name:"DroidSerif-DroidSans",google:["Droid+Sans:400,700:latin","Droid+Serif:400,700,400italic:latin"]},{name:"Lekton-Molengo",google:["Lekton:400,700,400italic:latin","Molengo::latin"]},{name:"NixieOne-Ledger",google:["Nixie+One::latin","Ledger::latin"]},{name:"AbrilFatface-Average",google:["Average::latin","Abril+Fatface::latin"]},{name:"PlayfairDisplay-Muli",google:["Playfair+Display:400,400italic:latin","Muli:300,400,300italic,400italic:latin"]},{name:"Rancho-Gudea",google:["Rancho::latin","Gudea:400,700,400italic:latin"]},{name:"Bevan-PotanoSans",google:["Bevan::latin","Pontano+Sans::latin"]},{name:"BreeSerif-OpenSans",google:["Bree+Serif::latin","Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800:latin"]},{name:"SansitaOne-Kameron",google:["Sansita+One::latin","Kameron:400,700:latin"]},{name:"Lora-Istok",google:["Lora:400,700,400italic,700italic:latin","Istok+Web:400,700,400italic,700italic:latin"]},{name:"Pacifico-Arimo",google:["Pacifico::latin","Arimo:400,700,400italic,700italic:latin"]}];if(typeof e=="object")for(s in e)Object.prototype.hasOwnProperty.call(e,s)&&(h[s]=e[s]);typeof t!="undefined"&&(h.source=t);if(typeof url_config=="object"){o=!0;h.source.match("docs.google.com")||h.source.match("json")||h.source.match("storify")||(h.source="https://docs.google.com/spreadsheet/pub?key="+h.source+"&output=html")}if(h.js.match("locale")){h.lang=h.js.split("locale/")[1].replace(".js","");h.js=c.js+"timeline-min.js?"+u}if(!h.js.match("/")){h.css=c.css+h.type+".css?"+u;h.js=c.js+h.type;h.debug?h.js+=".js?"+u:h.js+="-min.js?"+u;h.id="storyjs-"+h.type}h.lang.match("/")?c.locale=h.lang:c.locale=c.locale+h.lang+".js?"+u;T();LoadLib.css(h.css,w);if(h.font=="default"){l.font.js=!0;l.font.css=!0}else{var d;if(h.font.match("/")){d=h.font.split(".css")[0].split("/");c.font.name=d[d.length-1];c.font.css=h.font}else{c.font.name=h.font;c.font.css=c.font.css+h.font+".css?"+u}LoadLib.css(c.font.css,E);for(var v=0;v<p.length;v++)if(c.font.name==p[v].name){c.font.google=!0;WebFontConfig={google:{families:p[v].google}}}c.font.google?LoadLib.js(c.font.js,S):l.font.js=!0}try{l.has_jquery=jQuery;l.has_jquery=!0;if(l.has_jquery){var f=parseFloat(jQuery.fn.jquery);f<parseFloat(a)?l.jquery=!1:l.jquery=!0}}catch(m){l.jquery=!1}l.jquery?g():LoadLib.js(c.jquery,g);this.onloaded_check_again=function(){x()}}LazyLoad=function(e){function u(t,n){var r=e.createElement(t),i;for(i in n)n.hasOwnProperty(i)&&r.setAttribute(i,n[i]);return r}function a(e){var t=r[e],n,o;if(t){n=t.callback;o=t.urls;o.shift();i=0;if(!o.length){n&&n.call(t.context,t.obj);r[e]=null;s[e].length&&l(e)}}}function f(){var n=navigator.userAgent;t={async:e.createElement("script").async===!0};(t.webkit=/AppleWebKit\//.test(n))||(t.ie=/MSIE/.test(n))||(t.opera=/Opera/.test(n))||(t.gecko=/Gecko\//.test(n))||(t.unknown=!0)}function l(i,o,l,p,d){var v=function(){a(i)},m=i==="css",g=[],y,b,w,E,S,x;t||f();if(o){o=typeof o=="string"?[o]:o.concat();if(m||t.async||t.gecko||t.opera)s[i].push({urls:o,callback:l,obj:p,context:d});else for(y=0,b=o.length;y<b;++y)s[i].push({urls:[o[y]],callback:y===b-1?l:null,obj:p,context:d})}if(r[i]||!(E=r[i]=s[i].shift()))return;n||(n=e.head||e.getElementsByTagName("head")[0]);S=E.urls;for(y=0,b=S.length;y<b;++y){x=S[y];if(m)w=t.gecko?u("style"):u("link",{href:x,rel:"stylesheet"});else{w=u("script",{src:x});w.async=!1}w.className="lazyload";w.setAttribute("charset","utf-8");if(t.ie&&!m)w.onreadystatechange=function(){if(/loaded|complete/.test(w.readyState)){w.onreadystatechange=null;v()}};else if(m&&(t.gecko||t.webkit))if(t.webkit){E.urls[y]=w.href;h()}else{w.innerHTML='@import "'+x+'";';c(w)}else w.onload=w.onerror=v;g.push(w)}for(y=0,b=g.length;y<b;++y)n.appendChild(g[y])}function c(e){var t;try{t=!!e.sheet.cssRules}catch(n){i+=1;i<200?setTimeout(function(){c(e)},50):t&&a("css");return}a("css")}function h(){var e=r.css,t;if(e){t=o.length;while(--t>=0)if(o[t].href===e.urls[0]){a("css");break}i+=1;e&&(i<200?setTimeout(h,50):a("css"))}}var t,n,r={},i=0,s={css:[],js:[]},o=e.styleSheets;return{css:function(e,t,n,r){l("css",e,t,n,r)},js:function(e,t,n,r){l("js",e,t,n,r)}}}(this.document);LoadLib=function(e){function n(e){var n=0,r=!1;for(n=0;n<t.length;n++)t[n]==e&&(r=!0);if(r)return!0;t.push(e);return!1}var t=[];return{css:function(e,t,r,i){n(e)||LazyLoad.css(e,t,r,i)},js:function(e,t,r,i){n(e)||LazyLoad.js(e,t,r,i)}}}(this.document);var WebFontConfig;if(typeof embed_path=="undefined"||typeof embed_path=="undefined")var embed_path=getEmbedScriptPath("storyjs-embed.js").split("js/")[0];(function(){typeof url_config=="object"?createStoryJS(url_config):typeof timeline_config=="object"?createStoryJS(timeline_config):typeof storyjs_config=="object"?createStoryJS(storyjs_config):typeof config=="object"&&createStoryJS(config)})();
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/timeline-min.js b/public/opac/TimelineJS-2.25/compiled/js/timeline-min.js
deleted file mode 100644
index 6347fcac4a2c1a5c22171654141229446ca1e070..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/timeline-min.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/*!
-	TimelineJS
-	Version 2.17
-	Designed and built by Zach Wise at VéritéCo
-
-	This Source Code Form is subject to the terms of the Mozilla Public
-	License, v. 2.0. If a copy of the MPL was not distributed with this
-	file, You can obtain one at http://mozilla.org/MPL/2.0/.
-	
-*//* **********************************************
-     Begin VMM.StoryJS.License.js
-********************************************** *//*!
-	StoryJS
-	Designed and built by Zach Wise at VéritéCo
-
-	This Source Code Form is subject to the terms of the Mozilla Public
-	License, v. 2.0. If a copy of the MPL was not distributed with this
-	file, You can obtain one at http://mozilla.org/MPL/2.0/.
-*//* **********************************************
-     Begin VMM.js
-********************************************** *//**
-	* VéritéCo JS Core
-	* Designed and built by Zach Wise at VéritéCo zach@verite.co
-
-	* This Source Code Form is subject to the terms of the Mozilla Public
-	* License, v. 2.0. If a copy of the MPL was not distributed with this
-	* file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-*//*	Simple JavaScript Inheritance
-	By John Resig http://ejohn.org/
-	MIT Licensed.
-================================================== */function trace(e){VMM.debug&&(window.console?console.log(e):typeof jsTrace!="undefined"&&jsTrace.send(e))}function onYouTubePlayerAPIReady(){trace("GLOBAL YOUTUBE API CALLED");VMM.ExternalAPI.youtube.onAPIReady()}(function(){var e=!1,t=/xyz/.test(function(){xyz})?/\b_super\b/:/.*/;this.Class=function(){};Class.extend=function(n){function o(){!e&&this.init&&this.init.apply(this,arguments)}var r=this.prototype;e=!0;var i=new this;e=!1;for(var s in n)i[s]=typeof n[s]=="function"&&typeof r[s]=="function"&&t.test(n[s])?function(e,t){return function(){var n=this._super;this._super=r[e];var i=t.apply(this,arguments);this._super=n;return i}}(s,n[s]):n[s];o.prototype=i;o.prototype.constructor=o;o.extend=arguments.callee;return o}})();var global=function(){return this||(1,eval)("this")}();if(typeof VMM=="undefined"){var VMM=Class.extend({});VMM.debug=!0;VMM.master_config={init:function(){return this},sizes:{api:{width:0,height:0}},vp:"Pellentesque nibh felis, eleifend id, commodo in, interdum vitae, leo",api_keys_master:{flickr:"RAIvxHY4hE/Elm5cieh4X5ptMyDpj7MYIxziGxi0WGCcy1s+yr7rKQ==",google:"uQKadH1VMlCsp560gN2aOiMz4evWkl1s34yryl3F/9FJOsn+/948CbBUvKLN46U=",twitter:""},timers:{api:7e3},api:{pushques:[]},twitter:{active:!1,array:[],api_loaded:!1,que:[]},flickr:{active:!1,array:[],api_loaded:!1,que:[]},youtube:{active:!1,array:[],api_loaded:!1,que:[]},vimeo:{active:!1,array:[],api_loaded:!1,que:[]},vine:{active:!1,array:[],api_loaded:!1,que:[]},webthumb:{active:!1,array:[],api_loaded:!1,que:[]},googlemaps:{active:!1,map_active:!1,places_active:!1,array:[],api_loaded:!1,que:[]},googledocs:{active:!1,array:[],api_loaded:!1,que:[]},googleplus:{active:!1,array:[],api_loaded:!1,que:[]},wikipedia:{active:!1,array:[],api_loaded:!1,que:[],tries:0},soundcloud:{active:!1,array:[],api_loaded:!1,que:[]}}.init();VMM.createElement=function(e,t,n,r,i){var s="";if(e!=null&&e!=""){s+="<"+e;n!=null&&n!=""&&(s+=" class='"+n+"'");r!=null&&r!=""&&(s+=" "+r);i!=null&&i!=""&&(s+=" style='"+i+"'");s+=">";t!=null&&t!=""&&(s+=t);s=s+"</"+e+">"}return s};VMM.createMediaElement=function(e,t,n){var r="",i=!1;r+="<div class='media'>";if(e!=null&&e!=""){valid=!0;r+="<img src='"+e+"'>";n!=null&&n!=""&&(r+=VMM.createElement("div",n,"credit"));t!=null&&t!=""&&(r+=VMM.createElement("div",t,"caption"))}r+="</div>";return r};VMM.hideUrlBar=function(){var e=window,t=e.document;if(!location.hash||!e.addEventListener){window.scrollTo(0,1);var n=1,r=setInterval(function(){if(t.body){clearInterval(r);n="scrollTop"in t.body?t.body.scrollTop:1;e.scrollTo(0,n===1?0:1)}},15);e.addEventListener("load",function(){setTimeout(function(){e.scrollTo(0,n===1?0:1)},0)},!1)}}}Array.prototype.remove=function(e,t){var n=this.slice((t||e)+1||this.length);this.length=e<0?this.length+e:e;return this.push.apply(this,n)};Date.prototype.getWeek=function(){var e=new Date(this.getFullYear(),0,1);return Math.ceil(((this-e)/864e5+e.getDay()+1)/7)};Date.prototype.getDayOfYear=function(){var e=new Date(this.getFullYear(),0,1);return Math.ceil((this-e)/864e5)};var is={Null:function(e){return e===null},Undefined:function(e){return e===undefined},nt:function(e){return e===null||e===undefined},Function:function(e){return typeof e=="function"?e.constructor.toString().match(/Function/)!==null:!1},String:function(e){return typeof e=="string"?!0:typeof e=="object"?e.constructor.toString().match(/string/i)!==null:!1},Array:function(e){return typeof e=="object"?e.constructor.toString().match(/array/i)!==null||e.length!==undefined:!1},Boolean:function(e){return typeof e=="boolean"?!0:typeof e=="object"?e.constructor.toString().match(/boolean/i)!==null:!1},Date:function(e){return typeof e=="date"?!0:typeof e=="object"?e.constructor.toString().match(/date/i)!==null:!1},HTML:function(e){return typeof e=="object"?e.constructor.toString().match(/html/i)!==null:!1},Number:function(e){return typeof e=="number"?!0:typeof e=="object"?e.constructor.toString().match(/Number/)!==null:!1},Object:function(e){return typeof e=="object"?e.constructor.toString().match(/object/i)!==null:!1},RegExp:function(e){return typeof e=="function"?e.constructor.toString().match(/regexp/i)!==null:!1}},type={of:function(e){for(var t in is)if(is[t](e))return t.toLowerCase()}};if(typeof VMM!="undefined"){VMM.smoothScrollTo=function(e,t,n){if(typeof jQuery!="undefined"){var r="easein",i=1e3;t!=null&&(t<1?i=1:i=Math.round(t));n!=null&&n!=""&&(r=n);jQuery(window).scrollTop()!=VMM.Lib.offset(e).top&&VMM.Lib.animate("html,body",i,r,{scrollTop:VMM.Lib.offset(e).top})}};VMM.attachElement=function(e,t){typeof jQuery!="undefined"&&jQuery(e).html(t)};VMM.appendElement=function(e,t){typeof jQuery!="undefined"&&jQuery(e).append(t)};VMM.getHTML=function(e){var t;if(typeof jQuery!="undefined"){t=jQuery(e).html();return t}};VMM.getElement=function(e,t){var n;if(typeof jQuery!="undefined"){t?n=jQuery(e).parent().get(0):n=jQuery(e).get(0);return n}};VMM.bindEvent=function(e,t,n,r){var i,s="click",o={};n!=null&&n!=""&&(s=n);o!=null&&o!=""&&(o=r);typeof jQuery!="undefined"&&jQuery(e).bind(s,o,t)};VMM.unbindEvent=function(e,t,n){var r,i="click",s={};n!=null&&n!=""&&(i=n);typeof jQuery!="undefined"&&jQuery(e).unbind(i,t)};VMM.fireEvent=function(e,t,n){var r,i="click",s=[];t!=null&&t!=""&&(i=t);n!=null&&n!=""&&(s=n);typeof jQuery!="undefined"&&jQuery(e).trigger(i,s)};VMM.getJSON=function(e,t,n){if(typeof jQuery!="undefined"){jQuery.ajaxSetup({timeout:3e3});if(VMM.Browser.browser=="Explorer"&&parseInt(VMM.Browser.version,10)>=7&&window.XDomainRequest){trace("IE JSON");var r=e;if(r.match("^http://"))return jQuery.getJSON(r,t,n);if(r.match("^https://")){r=r.replace("https://","http://");return jQuery.getJSON(r,t,n)}return jQuery.getJSON(e,t,n)}return jQuery.getJSON(e,t,n)}};VMM.parseJSON=function(e){if(typeof jQuery!="undefined")return jQuery.parseJSON(e)};VMM.appendAndGetElement=function(e,t,n,r){var i,s="<div>",o="",u="",a="";t!=null&&t!=""&&(s=t);n!=null&&n!=""&&(o=n);r!=null&&r!=""&&(u=r);if(typeof jQuery!="undefined"){i=jQuery(t);i.addClass(o);i.html(u);jQuery(e).append(i)}return i};VMM.Lib={init:function(){return this},hide:function(e,t){t!=null&&t!=""?typeof jQuery!="undefined"&&jQuery(e).hide(t):typeof jQuery!="undefined"&&jQuery(e).hide()},remove:function(e){typeof jQuery!="undefined"&&jQuery(e).remove()},detach:function(e){typeof jQuery!="undefined"&&jQuery(e).detach()},append:function(e,t){typeof jQuery!="undefined"&&jQuery(e).append(t)},prepend:function(e,t){typeof jQuery!="undefined"&&jQuery(e).prepend(t)},show:function(e,t){t!=null&&t!=""?typeof jQuery!="undefined"&&jQuery(e).show(t):typeof jQuery!="undefined"&&jQuery(e).show()},load:function(e,t,n){var r={elem:e};r!=null&&r!=""&&(r=n);typeof jQuery!="undefined"&&jQuery(e).load(r,t)},addClass:function(e,t){typeof jQuery!="undefined"&&jQuery(e).addClass(t)},removeClass:function(e,t){typeof jQuery!="undefined"&&jQuery(e).removeClass(t)},attr:function(e,t,n){if(n!=null&&n!="")typeof jQuery!="undefined"&&jQuery(e).attr(t,n);else if(typeof jQuery!="undefined")return jQuery(e).attr(t)},prop:function(e,t,n){typeof jQuery=="undefined"||!/[1-9]\.[3-9].[1-9]/.test(jQuery.fn.jquery)?VMM.Lib.attribute(e,t,n):jQuery(e).prop(t,n)},attribute:function(e,t,n){if(n!=null&&n!="")typeof jQuery!="undefined"&&jQuery(e).attr(t,n);else if(typeof jQuery!="undefined")return jQuery(e).attr(t)},visible:function(e,t){if(t!=null)typeof jQuery!="undefined"&&(t?jQuery(e).show(0):jQuery(e).hide(0));else if(typeof jQuery!="undefined")return jQuery(e).is(":visible")?!0:!1},css:function(e,t,n){if(n!=null&&n!="")typeof jQuery!="undefined"&&jQuery(e).css(t,n);else if(typeof jQuery!="undefined")return jQuery(e).css(t)},cssmultiple:function(e,t){if(typeof jQuery!="undefined")return jQuery(e).css(t)},offset:function(e){var t;typeof jQuery!="undefined"&&(t=jQuery(e).offset());return t},position:function(e){var t;typeof jQuery!="undefined"&&(t=jQuery(e).position());return t},width:function(e,t){if(t!=null&&t!="")typeof jQuery!="undefined"&&jQuery(e).width(t);else if(typeof jQuery!="undefined")return jQuery(e).width()},height:function(e,t){if(t!=null&&t!="")typeof jQuery!="undefined"&&jQuery(e).height(t);else if(typeof jQuery!="undefined")return jQuery(e).height()},toggleClass:function(e,t){typeof jQuery!="undefined"&&jQuery(e).toggleClass(t)},each:function(e,t){typeof jQuery!="undefined"&&jQuery(e).each(t)},html:function(e,t){var n;if(typeof jQuery!="undefined"){n=jQuery(e).html();return n}if(t!=null&&t!="")typeof jQuery!="undefined"&&jQuery(e).html(t);else{var n;if(typeof jQuery!="undefined"){n=jQuery(e).html();return n}}},find:function(e,t){if(typeof jQuery!="undefined")return jQuery(e).find(t)},stop:function(e){typeof jQuery!="undefined"&&jQuery(e).stop()},delay_animate:function(e,t,n,r,i,s){if(VMM.Browser.device=="mobile"||VMM.Browser.device=="tablet"){var o=Math.round(n/1500*10)/10,u=o+"s";VMM.Lib.css(t,"-webkit-transition","all "+u+" ease");VMM.Lib.css(t,"-moz-transition","all "+u+" ease");VMM.Lib.css(t,"-o-transition","all "+u+" ease");VMM.Lib.css(t,"-ms-transition","all "+u+" ease");VMM.Lib.css(t,"transition","all "+u+" ease");VMM.Lib.cssmultiple(t,_att)}else typeof jQuery!="undefined"&&jQuery(t).delay(e).animate(i,{duration:n,easing:r})},animate:function(e,t,n,r,i,s){var o="easein",u=!1,a=1e3,f={};t!=null&&(t<1?a=1:a=Math.round(t));n!=null&&n!=""&&(o=n);i!=null&&i!=""&&(u=i);r!=null?f=r:f={opacity:0};if(VMM.Browser.device=="mobile"||VMM.Browser.device=="tablet"){var l=Math.round(a/1500*10)/10,c=l+"s";o=" cubic-bezier(0.33, 0.66, 0.66, 1)";for(x in f)if(Object.prototype.hasOwnProperty.call(f,x)){trace(x+" to "+f[x]);VMM.Lib.css(e,"-webkit-transition",x+" "+c+o);VMM.Lib.css(e,"-moz-transition",x+" "+c+o);VMM.Lib.css(e,"-o-transition",x+" "+c+o);VMM.Lib.css(e,"-ms-transition",x+" "+c+o);VMM.Lib.css(e,"transition",x+" "+c+o)}VMM.Lib.cssmultiple(e,f)}else typeof jQuery!="undefined"&&(s!=null&&s!=""?jQuery(e).animate(f,{queue:u,duration:a,easing:o,complete:s}):jQuery(e).animate(f,{queue:u,duration:a,easing:o}))}}}if(typeof jQuery!="undefined"){(function(e){window.XDomainRequest&&e.ajaxTransport(function(t){if(t.crossDomain&&t.async){if(t.timeout){t.xdrTimeout=t.timeout;delete t.timeout}var n;return{send:function(r,i){function o(t,r,s,o){n.onload=n.onerror=n.ontimeout=e.noop;n=undefined;i(t,r,s,o)}n=new XDomainRequest;n.open(t.type,t.url);n.onload=function(){o(200,"OK",{text:n.responseText},"Content-Type: "+n.contentType)};n.onerror=function(){o(404,"Not Found")};if(t.xdrTimeout){n.ontimeout=function(){o(0,"timeout")};n.timeout=t.xdrTimeout}n.send(t.hasContent&&t.data||null)},abort:function(){if(n){n.onerror=e.noop();n.abort()}}}}})})(jQuery);jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,t,n,r,i){return jQuery.easing[jQuery.easing.def](e,t,n,r,i)},easeInExpo:function(e,t,n,r,i){return t==0?n:r*Math.pow(2,10*(t/i-1))+n},easeOutExpo:function(e,t,n,r,i){return t==i?n+r:r*(-Math.pow(2,-10*t/i)+1)+n},easeInOutExpo:function(e,t,n,r,i){return t==0?n:t==i?n+r:(t/=i/2)<1?r/2*Math.pow(2,10*(t-1))+n:r/2*(-Math.pow(2,-10*--t)+2)+n},easeInQuad:function(e,t,n,r,i){return r*(t/=i)*t+n},easeOutQuad:function(e,t,n,r,i){return-r*(t/=i)*(t-2)+n},easeInOutQuad:function(e,t,n,r,i){return(t/=i/2)<1?r/2*t*t+n:-r/2*(--t*(t-2)-1)+n}})}if(typeof VMM!="undefined"&&typeof VMM.Browser=="undefined"){VMM.Browser={init:function(){this.browser=this.searchString(this.dataBrowser)||"An unknown browser";this.version=this.searchVersion(navigator.userAgent)||this.searchVersion(navigator.appVersion)||"an unknown version";this.OS=this.searchString(this.dataOS)||"an unknown OS";this.device=this.searchDevice(navigator.userAgent);this.orientation=this.searchOrientation(window.orientation)},searchOrientation:function(e){var t="";e==0||e==180?t="portrait":e==90||e==-90?t="landscape":t="normal";return t},searchDevice:function(e){var t="";e.match(/Android/i)||e.match(/iPhone|iPod/i)?t="mobile":e.match(/iPad/i)?t="tablet":e.match(/BlackBerry/i)||e.match(/IEMobile/i)?t="other mobile":t="desktop";return t},searchString:function(e){for(var t=0;t<e.length;t++){var n=e[t].string,r=e[t].prop;this.versionSearchString=e[t].versionSearch||e[t].identity;if(n){if(n.indexOf(e[t].subString)!=-1)return e[t].identity}else if(r)return e[t].identity}},searchVersion:function(e){var t=e.indexOf(this.versionSearchString);if(t==-1)return;return parseFloat(e.substring(t+this.versionSearchString.length+1))},dataBrowser:[{string:navigator.userAgent,subString:"Chrome",identity:"Chrome"},{string:navigator.userAgent,subString:"OmniWeb",versionSearch:"OmniWeb/",identity:"OmniWeb"},{string:navigator.vendor,subString:"Apple",identity:"Safari",versionSearch:"Version"},{prop:window.opera,identity:"Opera",versionSearch:"Version"},{string:navigator.vendor,subString:"iCab",identity:"iCab"},{string:navigator.vendor,subString:"KDE",identity:"Konqueror"},{string:navigator.userAgent,subString:"Firefox",identity:"Firefox"},{string:navigator.vendor,subString:"Camino",identity:"Camino"},{string:navigator.userAgent,subString:"Netscape",identity:"Netscape"},{string:navigator.userAgent,subString:"MSIE",identity:"Explorer",versionSearch:"MSIE"},{string:navigator.userAgent,subString:"Gecko",identity:"Mozilla",versionSearch:"rv"},{string:navigator.userAgent,subString:"Mozilla",identity:"Netscape",versionSearch:"Mozilla"}],dataOS:[{string:navigator.platform,subString:"Win",identity:"Windows"},{string:navigator.platform,subString:"Mac",identity:"Mac"},{string:navigator.userAgent,subString:"iPhone",identity:"iPhone/iPod"},{string:navigator.userAgent,subString:"iPad",identity:"iPad"},{string:navigator.platform,subString:"Linux",identity:"Linux"}]};VMM.Browser.init()}typeof VMM!="undefined"&&typeof VMM.FileExtention=="undefined"&&(VMM.FileExtention={googleDocType:function(e){var t=e.replace(/\s\s*$/,""),n="",r=["DOC","DOCX","XLS","XLSX","PPT","PPTX","PDF","PAGES","AI","PSD","TIFF","DXF","SVG","EPS","PS","TTF","XPS","ZIP","RAR"],i=!1;n=t.substr(t.length-5,5);for(var s=0;s<r.length;s++)if(n.toLowerCase().match(r[s].toString().toLowerCase())||t.match("docs.google.com"))i=!0;return i}});if(typeof VMM!="undefined"&&typeof VMM.Date=="undefined"){VMM.Date={init:function(){return this},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"},month:["January","February","March","April","May","June","July","August","September","October","November","December"],month_abbr:["Jan.","Feb.","March","April","May","June","July","Aug.","Sept.","Oct.","Nov.","Dec."],day:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],day_abbr:["Sun.","Mon.","Tues.","Wed.","Thurs.","Fri.","Sat."],hour:[1,2,3,4,5,6,7,8,9,10,11,12,1,2,3,4,5,6,7,8,9,10,11,12],hour_suffix:["am"],bc_format:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"dddd', 'h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"dddd',' mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'<br/><small>'dddd',' mmm d',' yyyy'</small>'"},setLanguage:function(e){trace("SET DATE LANGUAGE");VMM.Date.dateformats=e.dateformats;VMM.Date.month=e.date.month;VMM.Date.month_abbr=e.date.month_abbr;VMM.Date.day=e.date.day;VMM.Date.day_abbr=e.date.day_abbr;dateFormat.i18n.dayNames=e.date.day_abbr.concat(e.date.day);dateFormat.i18n.monthNames=e.date.month_abbr.concat(e.date.month)},parse:function(e,t){"use strict";var n,r,i,s,o={year:!1,month:!1,day:!1,hour:!1,minute:!1,second:!1,millisecond:!1};if(type.of(e)=="date"){trace("DEBUG THIS, ITs A DATE");n=e}else{n=new Date(0,0,1,0,0,0,0);if(e.match(/,/gi)){r=e.split(",");for(var u=0;u<r.length;u++)r[u]=parseInt(r[u],10);if(r[0]){n.setFullYear(r[0]);o.year=!0}if(r[1]){n.setMonth(r[1]-1);o.month=!0}if(r[2]){n.setDate(r[2]);o.day=!0}if(r[3]){n.setHours(r[3]);o.hour=!0}if(r[4]){n.setMinutes(r[4]);o.minute=!0}if(r[5]){n.setSeconds(r[5]);o.second=!0}if(r[6]){n.setMilliseconds(r[6]);o.millisecond=!0}}else if(e.match("/")){if(e.match(" ")){s=e.split(" ");if(e.match(":")){i=s[1].split(":");if(i[0]>=0){n.setHours(i[0]);o.hour=!0}if(i[1]>=0){n.setMinutes(i[1]);o.minute=!0}if(i[2]>=0){n.setSeconds(i[2]);o.second=!0}if(i[3]>=0){n.setMilliseconds(i[3]);o.millisecond=!0}}r=s[0].split("/")}else r=e.split("/");if(r[2]){n.setFullYear(r[2]);o.year=!0}if(r[0]>=0){n.setMonth(r[0]-1);o.month=!0}if(r[1]>=0)if(r[1].length>2){n.setFullYear(r[1]);o.year=!0}else{n.setDate(r[1]);o.day=!0}}else if(e.match("now")){var a=new Date;n.setFullYear(a.getFullYear());o.year=!0;n.setMonth(a.getMonth());o.month=!0;n.setDate(a.getDate());o.day=!0;if(e.match("hours")){n.setHours(a.getHours());o.hour=!0}if(e.match("minutes")){n.setHours(a.getHours());n.setMinutes(a.getMinutes());o.hour=!0;o.minute=!0}if(e.match("seconds")){n.setHours(a.getHours());n.setMinutes(a.getMinutes());n.setSeconds(a.getSeconds());o.hour=!0;o.minute=!0;o.second=!0}if(e.match("milliseconds")){n.setHours(a.getHours());n.setMinutes(a.getMinutes());n.setSeconds(a.getSeconds());n.setMilliseconds(a.getMilliseconds());o.hour=!0;o.minute=!0;o.second=!0;o.millisecond=!0}}else if(e.length<=8){o.year=!0;n.setFullYear(parseInt(e,10));n.setMonth(0);n.setDate(1);n.setHours(0);n.setMinutes(0);n.setSeconds(0);n.setMilliseconds(0)}else if(e.match("T"))if(navigator.userAgent.match(/MSIE\s(?!9.0)/)){s=e.split("T");if(e.match(":")){i=s[1].split(":");if(i[0]>=1){n.setHours(i[0]);o.hour=!0}if(i[1]>=1){n.setMinutes(i[1]);o.minute=!0}if(i[2]>=1){n.setSeconds(i[2]);o.second=!0}if(i[3]>=1){n.setMilliseconds(i[3]);o.millisecond=!0}}r=s[0].split("-");if(r[0]){n.setFullYear(r[0]);o.year=!0}if(r[1]>=0){n.setMonth(r[1]-1);o.month=!0}if(r[2]>=0){n.setDate(r[2]);o.day=!0}}else{n=new Date(Date.parse(e));o.year=!0;o.month=!0;o.day=!0;o.hour=!0;o.minute=!0;o.second=!0;o.millisecond=!0}else{o.year=!0;o.month=!0;o.day=!0;o.hour=!0;o.minute=!0;o.second=!0;o.millisecond=!0;n=new Date(parseInt(e.slice(0,4),10),parseInt(e.slice(4,6),10)-1,parseInt(e.slice(6,8),10),parseInt(e.slice(8,10),10),parseInt(e.slice(10,12),10))}}return t!=null&&t!=""?{date:n,precision:o}:n},prettyDate:function(e,t,n,r){var i,s,o,u,a=!1,f,l,c;if(r!=null&&r!=""&&typeof r!="undefined"){a=!0;trace("D2 "+r)}if(type.of(e)=="date"){type.of(n)=="object"?n.millisecond||n.second||n.minute?t?o=VMM.Date.dateformats.time_no_seconds_short:o=VMM.Date.dateformats.time_no_seconds_small_date:n.hour?t?o=VMM.Date.dateformats.time_no_seconds_short:o=VMM.Date.dateformats.time_no_seconds_small_date:n.day?t?o=VMM.Date.dateformats.full_short:o=VMM.Date.dateformats.full:n.month?t?o=VMM.Date.dateformats.month_short:o=VMM.Date.dateformats.month:n.year?o=VMM.Date.dateformats.year:o=VMM.Date.dateformats.year:e.getMonth()===0&&e.getDate()==1&&e.getHours()===0&&e.getMinutes()===0?o=VMM.Date.dateformats.year:e.getDate()<=1&&e.getHours()===0&&e.getMinutes()===0?t?o=VMM.Date.dateformats.month_short:o=VMM.Date.dateformats.month:e.getHours()===0&&e.getMinutes()===0?t?o=VMM.Date.dateformats.full_short:o=VMM.Date.dateformats.full:e.getMinutes()===0?t?o=VMM.Date.dateformats.time_no_seconds_short:o=VMM.Date.dateformats.time_no_seconds_small_date:t?o=VMM.Date.dateformats.time_no_seconds_short:o=VMM.Date.dateformats.full_long;i=dateFormat(e,o,!1);u=i.split(" ");for(var h=0;h<u.length;h++)if(parseInt(u[h],10)<0){trace("YEAR IS BC");f=u[h];l=Math.abs(parseInt(u[h],10));c=l.toString()+" B.C.";i=i.replace(f,c)}if(a){s=dateFormat(r,o,!1);u=s.split(" ");for(var p=0;p<u.length;p++)if(parseInt(u[p],10)<0){trace("YEAR IS BC");f=u[p];l=Math.abs(parseInt(u[p],10));c=l.toString()+" B.C.";s=s.replace(f,c)}}}else{trace("NOT A VALID DATE?");trace(e)}return a?i+" &mdash; "+s:i}}.init();var dateFormat=function(){var e=/d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g,t=/\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,n=/[^-+\dA-Z]/g,r=function(e,t){e=String(e);t=t||2;while(e.length<t)e="0"+e;return e};return function(i,s,o){var u=dateFormat;if(arguments.length==1&&Object.prototype.toString.call(i)=="[object String]"&&!/\d/.test(i)){s=i;i=undefined}isNaN(i)&&trace("invalid date "+i);s=String(u.masks[s]||s||u.masks["default"]);if(s.slice(0,4)=="UTC:"){s=s.slice(4);o=!0}var a=o?"getUTC":"get",f=i[a+"Date"](),l=i[a+"Day"](),c=i[a+"Month"](),h=i[a+"FullYear"](),p=i[a+"Hours"](),d=i[a+"Minutes"](),v=i[a+"Seconds"](),m=i[a+"Milliseconds"](),g=o?0:i.getTimezoneOffset(),y={d:f,dd:r(f),ddd:u.i18n.dayNames[l],dddd:u.i18n.dayNames[l+7],m:c+1,mm:r(c+1),mmm:u.i18n.monthNames[c],mmmm:u.i18n.monthNames[c+12],yy:String(h).slice(2),yyyy:h,h:p%12||12,hh:r(p%12||12),H:p,HH:r(p),M:d,MM:r(d),s:v,ss:r(v),l:r(m,3),L:r(m>99?Math.round(m/10):m),t:p<12?"a":"p",tt:p<12?"am":"pm",T:p<12?"A":"P",TT:p<12?"AM":"PM",Z:o?"UTC":(String(i).match(t)||[""]).pop().replace(n,""),o:(g>0?"-":"+")+r(Math.floor(Math.abs(g)/60)*100+Math.abs(g)%60,4),S:["th","st","nd","rd"][f%10>3?0:(f%100-f%10!=10)*f%10]};return s.replace(e,function(e){return e in y?y[e]:e.slice(1,e.length-1)})}}();dateFormat.masks={"default":"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:ss",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'"};dateFormat.i18n={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"]};Date.prototype.format=function(e,t){return dateFormat(this,e,t)}}typeof VMM!="undefined"&&typeof VMM.Util=="undefined"&&(VMM.Util={init:function(){return this},correctProtocol:function(e){var t=window.parent.location.protocol.toString(),n="",r=e.split("://",2);t.match("http")?n=t:n="https";return n+"://"+r[1]},mergeConfig:function(e,t){var n;for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e},getObjectAttributeByIndex:function(e,t){if(typeof e!="undefined"){var n=0;for(var r in e){if(t===n)return e[r];n++}return""}return""},ordinal:function(e){return["th","st","nd","rd"][!(e%10>3||Math.floor(e%100/10)==1)*(e%10)]},randomBetween:function(e,t){return Math.floor(Math.random()*(t-e+1)+e)},average:function(e){var t={mean:0,variance:0,deviation:0},n=e.length;for(var r,i=0,s=n;s--;i+=e[s]);for(r=t.mean=i/n,s=n,i=0;s--;i+=Math.pow(e[s]-r,2));return t.deviation=Math.sqrt(t.variance=i/n),t},customSort:function(e,t){var n=e,r=t;return n==r?0:n>r?1:-1},deDupeArray:function(e){var t,n=e.length,r=[],i={};for(t=0;t<n;t++)i[e[t]]=0;for(t in i)r.push(t);return r},number2money:function(e,t,n){var t=t!==null?t:!0,n=n!==null?n:!1,r=VMM.Math2.floatPrecision(e,2),i=this.niceNumber(r);!i.split(/\./g)[1]&&n&&(i+=".00");t&&(i="$"+i);return i},wordCount:function(e){var t=e+" ",n=/^[^A-Za-z0-9\'\-]+/gi,r=t.replace(n,""),i=/[^A-Za-z0-9\'\-]+/gi,s=r.replace(i," "),o=s.split(" "),u=o.length-1;t.length<2&&(u=0);return u},ratio:{fit:function(e,t,n,r){var i={width:0,height:0};i.width=e;i.height=Math.round(e/n*r);if(i.height>t){i.height=t;i.width=Math.round(t/r*n);i.width>e&&trace("FIT: DIDN'T FIT!!! ")}return i},r16_9:function(e,t){if(e!==null&&e!=="")return Math.round(t/16*9);if(t!==null&&t!=="")return Math.round(e/9*16)},r4_3:function(e,t){if(e!==null&&e!=="")return Math.round(t/4*3);if(t!==null&&t!=="")return Math.round(e/3*4)}},doubledigit:function(e){return(e<10?"0":"")+e},truncateWords:function(e,t,n){t||(t=30);n||(n=t);var r=/^[^A-Za-z0-9\'\-]+/gi,i=e.replace(r,""),s=i.split(" "),o=[];t=Math.min(s.length,t);n=Math.min(s.length,n);for(var u=0;u<t;u++)o.push(s[u]);for(var a=t;u<n;u++){var f=s[u];o.push(f);if(f.charAt(f.length-1)==".")break}return o.join(" ")},linkify:function(e,t,n){var r=/\b(?:https?|ftp):\/\/[a-z0-9-+&@#\/%?=~_|!:,.;]*[a-z0-9-+&@#\/%=~_|]/gim,i=/(^|[^\/])(www\.[\S]+(\b|$))/gim,s=/(([a-zA-Z0-9_\-\.]+)@[a-zA-Z_]+?(?:\.[a-zA-Z]{2,6}))+/gim;return e.replace(r,"<a target='_blank' href='$&' onclick='void(0)'>$&</a>").replace(i,"$1<a target='_blank' onclick='void(0)' href='http://$2'>$2</a>").replace(s,"<a target='_blank' onclick='void(0)' href='mailto:$1'>$1</a>")},linkify_with_twitter:function(e,t,n){function u(e){var t=/(\b(https?|ftp|file):\/\/([-A-Z0-9+&@#%?=~_|!:,.;]*)([-A-Z0-9+&@#%?\/=~_|!:,.;]*)[-A-Z0-9+&@#\/%=~_|])/ig;return e.replace(t,"<a href='$1' target='_blank'>$3</a>")}var r=/\b(?:https?|ftp):\/\/[a-z0-9-+&@#\/%?=~_|!:,.;]*[a-z0-9-+&@#\/%=~_|]/gim,i=/(\()((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]+)(\))|(\[)((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]+)(\])|(\{)((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]+)(\})|(<|&(?:lt|#60|#x3c);)((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]+)(>|&(?:gt|#62|#x3e);)|((?:^|[^=\s'"\]])\s*['"]?|[^=\s]\s+)(\b(?:ht|f)tps?:\/\/[a-z0-9\-._~!$'()*+,;=:\/?#[\]@%]+(?:(?!&(?:gt|#0*62|#x0*3e);|&(?:amp|apos|quot|#0*3[49]|#x0*2[27]);[.!&',:?;]?(?:[^a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]|$))&[a-z0-9\-._~!$'()*+,;=:\/?#[\]@%]*)*[a-z0-9\-_~$()*+=\/#[\]@%])/img,s='$1$4$7$10$13<a href="$2$5$8$11$14" class="hyphenate">$2$5$8$11$14</a>$3$6$9$12',o=/(^|[^\/])(www\.[\S]+(\b|$))/gim,a=/(([a-zA-Z0-9_\-\.]+)@[a-zA-Z_]+?(?:\.[a-zA-Z]{2,6}))+/gim,f=/\B@([\w-]+)/gm,l=/(#([\w]+))/g;return e.replace(i,s).replace(o,"$1<a target='_blank' class='hyphenate' onclick='void(0)' href='http://$2'>$2</a>").replace(a,"<a target='_blank' onclick='void(0)' href='mailto:$1'>$1</a>").replace(f,"<a href='http://twitter.com/$1' target='_blank' onclick='void(0)'>@$1</a>")},linkify_wikipedia:function(e){var t=/<i[^>]*>(.*?)<\/i>/gim;return e.replace(t,"<a target='_blank' href='http://en.wikipedia.org/wiki/$&' onclick='void(0)'>$&</a>").replace(/<i\b[^>]*>/gim,"").replace(/<\/i>/gim,"").replace(/<b\b[^>]*>/gim,"").replace(/<\/b>/gim,"")},unlinkify:function(e){if(!e)return e;e=e.replace(/<a\b[^>]*>/i,"");e=e.replace(/<\/a>/i,"");return e},untagify:function(e){if(!e)return e;e=e.replace(/<\s*\w.*?>/g,"");return e},nl2br:function(e){return e.replace(/(\r\n|[\r\n]|\\n|\\r)/g,"<br/>")},unique_ID:function(e){var t=function(e){return Math.floor(Math.random()*e)},n=function(){var e="abcdefghijklmnopqurstuvwxyzABCDEFGHIJKLMNOPQURSTUVWXYZ";return e.substr(t(62),1)},r=function(e){var t="";for(var r=0;r<e;r++)t+=n();return t};return r(e)},isEven:function(e){return e%2===0?!0:!1},getUrlVars:function(e){var t=e.toString();t.match("&#038;")?t=t.replace("&#038;","&"):t.match("&#38;")?t=t.replace("&#38;","&"):t.match("&amp;")&&(t=t.replace("&amp;","&"));var n=[],r,i=t.slice(t.indexOf("?")+1).split("&");for(var s=0;s<i.length;s++){r=i[s].split("=");n.push(r[0]);n[r[0]]=r[1]}return n},toHTML:function(e){e=this.nl2br(e);e=this.linkify(e);return e.replace(/\s\s/g,"&nbsp;&nbsp;")},toCamelCase:function(e,t){t!==!1&&(t=!0);var n=(t?e.toLowerCase():e).split(" ");for(var r=0;r<n.length;r++)n[r]=n[r].substr(0,1).toUpperCase()+n[r].substr(1);return n.join(" ")},properQuotes:function(e){return e.replace(/\"([^\"]*)\"/gi,"&#8220;$1&#8221;")},niceNumber:function(e){e+="";x=e.split(".");x1=x[0];x2=x.length>1?"."+x[1]:"";var t=/(\d+)(\d{3})/;while(t.test(x1))x1=x1.replace(t,"$1,$2");return x1+x2},toTitleCase:function(e){if(VMM.Browser.browser=="Explorer"&&parseInt(VMM.Browser.version,10)>=7)return e.replace("_","%20");var t={__smallWords:["a","an","and","as","at","but","by","en","for","if","in","of","on","or","the","to","v[.]?","via","vs[.]?"],init:function(){this.__smallRE=this.__smallWords.join("|");this.__lowerCaseWordsRE=new RegExp("\\b("+this.__smallRE+")\\b","gi");this.__firstWordRE=new RegExp("^([^a-zA-Z0-9 \\r\\n\\t]*)("+this.__smallRE+")\\b","gi");this.__lastWordRE=new RegExp("\\b("+this.__smallRE+")([^a-zA-Z0-9 \\r\\n\\t]*)$","gi")},toTitleCase:function(e){var t="",n=e.split(/([:.;?!][ ]|(?:[ ]|^)["“])/);for(var r=0;r<n.length;++r){var i=n[r];i=i.replace(/\b([a-zA-Z][a-z.'’]*)\b/g,this.__titleCaseDottedWordReplacer);i=i.replace(this.__lowerCaseWordsRE,this.__lowerReplacer);i=i.replace(this.__firstWordRE,this.__firstToUpperCase);i=i.replace(this.__lastWordRE,this.__firstToUpperCase);t+=i}t=t.replace(/ V(s?)\. /g," v$1. ");t=t.replace(/(['’])S\b/g,"$1s");t=t.replace(/\b(AT&T|Q&A)\b/ig,this.__upperReplacer);return t},__titleCaseDottedWordReplacer:function(e){return e.match(/[a-zA-Z][.][a-zA-Z]/)?e:t.__firstToUpperCase(e)},__lowerReplacer:function(e){return e.toLowerCase()},__upperReplacer:function(e){return e.toUpperCase()},__firstToUpperCase:function(e){var t=e.split(/(^[^a-zA-Z0-9]*[a-zA-Z0-9])(.*)$/);t[1]&&(t[1]=t[1].toUpperCase());return t.join("")}};t.init();e=e.replace(/_/g," ");e=t.toTitleCase(e);return e}}.init());LazyLoad=function(e){function u(t,n){var r=e.createElement(t),i;for(i in n)n.hasOwnProperty(i)&&r.setAttribute(i,n[i]);return r}function a(e){var t=r[e],n,o;if(t){n=t.callback;o=t.urls;o.shift();i=0;if(!o.length){n&&n.call(t.context,t.obj);r[e]=null;s[e].length&&l(e)}}}function f(){var n=navigator.userAgent;t={async:e.createElement("script").async===!0};(t.webkit=/AppleWebKit\//.test(n))||(t.ie=/MSIE/.test(n))||(t.opera=/Opera/.test(n))||(t.gecko=/Gecko\//.test(n))||(t.unknown=!0)}function l(i,o,l,p,d){var v=function(){a(i)},m=i==="css",g=[],y,b,w,E,S,x;t||f();if(o){o=typeof o=="string"?[o]:o.concat();if(m||t.async||t.gecko||t.opera)s[i].push({urls:o,callback:l,obj:p,context:d});else for(y=0,b=o.length;y<b;++y)s[i].push({urls:[o[y]],callback:y===b-1?l:null,obj:p,context:d})}if(r[i]||!(E=r[i]=s[i].shift()))return;n||(n=e.head||e.getElementsByTagName("head")[0]);S=E.urls;for(y=0,b=S.length;y<b;++y){x=S[y];if(m)w=t.gecko?u("style"):u("link",{href:x,rel:"stylesheet"});else{w=u("script",{src:x});w.async=!1}w.className="lazyload";w.setAttribute("charset","utf-8");if(t.ie&&!m)w.onreadystatechange=function(){if(/loaded|complete/.test(w.readyState)){w.onreadystatechange=null;v()}};else if(m&&(t.gecko||t.webkit))if(t.webkit){E.urls[y]=w.href;h()}else{w.innerHTML='@import "'+x+'";';c(w)}else w.onload=w.onerror=v;g.push(w)}for(y=0,b=g.length;y<b;++y)n.appendChild(g[y])}function c(e){var t;try{t=!!e.sheet.cssRules}catch(n){i+=1;i<200?setTimeout(function(){c(e)},50):t&&a("css");return}a("css")}function h(){var e=r.css,t;if(e){t=o.length;while(--t>=0)if(o[t].href===e.urls[0]){a("css");break}i+=1;e&&(i<200?setTimeout(h,50):a("css"))}}var t,n,r={},i=0,s={css:[],js:[]},o=e.styleSheets;return{css:function(e,t,n,r){l("css",e,t,n,r)},js:function(e,t,n,r){l("js",e,t,n,r)}}}(this.document);LoadLib=function(e){function n(e){var n=0,r=!1;for(n=0;n<t.length;n++)t[n]==e&&(r=!0);if(r)return!0;t.push(e);return!1}var t=[];return{css:function(e,t,r,i){n(e)||LazyLoad.css(e,t,r,i)},js:function(e,t,r,i){n(e)||LazyLoad.js(e,t,r,i)}}}(this.document);typeof VMM!="undefined"&&typeof VMM.Language=="undefined"&&(VMM.Language={lang:"en",api:{wikipedia:"en"},date:{month:["January","February","March","April","May","June","July","August","September","October","November","December"],month_abbr:["Jan.","Feb.","March","April","May","June","July","Aug.","Sept.","Oct.","Nov.","Dec."],day:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],day_abbr:["Sun.","Mon.","Tues.","Wed.","Thurs.","Fri.","Sat."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy"
-,full_short:"mmm d",full:"mmmm d',' yyyy",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'<br/><small>mmm d',' yyyy'</small>'"},messages:{loading_timeline:"Loading Timeline... ",return_to_title:"Return to Title",expand_timeline:"Expand Timeline",contract_timeline:"Contract Timeline",wikipedia:"From Wikipedia, the free encyclopedia",loading_content:"Loading Content",loading:"Loading"}});typeof VMM!="undefined"&&typeof VMM.ExternalAPI=="undefined"&&(VMM.ExternalAPI={keys:{google:"",flickr:"",twitter:""},keys_master:{vp:"Pellentesque nibh felis, eleifend id, commodo in, interdum vitae, leo",flickr:"RAIvxHY4hE/Elm5cieh4X5ptMyDpj7MYIxziGxi0WGCcy1s+yr7rKQ==",google:"jwNGnYw4hE9lmAez4ll0QD+jo6SKBJFknkopLS4FrSAuGfIwyj57AusuR0s8dAo=",twitter:""},init:function(){return this},setKeys:function(e){VMM.ExternalAPI.keys=e},pushQues:function(){VMM.master_config.googlemaps.active&&VMM.ExternalAPI.googlemaps.pushQue();VMM.master_config.youtube.active&&VMM.ExternalAPI.youtube.pushQue();VMM.master_config.soundcloud.active&&VMM.ExternalAPI.soundcloud.pushQue();VMM.master_config.googledocs.active&&VMM.ExternalAPI.googledocs.pushQue();VMM.master_config.googleplus.active&&VMM.ExternalAPI.googleplus.pushQue();VMM.master_config.wikipedia.active&&VMM.ExternalAPI.wikipedia.pushQue();VMM.master_config.vimeo.active&&VMM.ExternalAPI.vimeo.pushQue();VMM.master_config.vine.active&&VMM.ExternalAPI.vine.pushQue();VMM.master_config.twitter.active&&VMM.ExternalAPI.twitter.pushQue();VMM.master_config.flickr.active&&VMM.ExternalAPI.flickr.pushQue();VMM.master_config.webthumb.active&&VMM.ExternalAPI.webthumb.pushQue()},twitter:{tweetArray:[],get:function(e){var t={mid:e.id,id:e.uid};VMM.master_config.twitter.que.push(t);VMM.master_config.twitter.active=!0},create:function(e,t){var n=e.mid.toString(),r={twitterid:e.mid},i="http://api.twitter.com/1/statuses/show.json?id="+e.mid+"&include_entities=true&callback=?";VMM.ExternalAPI.twitter.getOEmbed(e,t)},errorTimeOut:function(e){trace("TWITTER JSON ERROR TIMEOUT "+e.mid);VMM.attachElement("#"+e.id.toString(),VMM.MediaElement.loadingmessage("Still waiting on Twitter: "+e.mid));VMM.getJSON("http://api.twitter.com/1/account/rate_limit_status.json",function(t){trace("REMAINING TWITTER API CALLS "+t.remaining_hits);trace("TWITTER RATE LIMIT WILL RESET AT "+t.reset_time);var n="";if(t.remaining_hits==0){n="<p>You've reached the maximum number of tweets you can load in an hour.</p>";n+="<p>You can view tweets again starting at: <br/>"+t.reset_time+"</p>"}else n="<p>Still waiting on Twitter. "+e.mid+"</p>";VMM.attachElement("#"+e.id.toString(),VMM.MediaElement.loadingmessage(n))})},errorTimeOutOembed:function(e){trace("TWITTER JSON ERROR TIMEOUT "+e.mid);VMM.attachElement("#"+e.id.toString(),VMM.MediaElement.loadingmessage("Still waiting on Twitter: "+e.mid))},pushQue:function(){if(VMM.master_config.twitter.que.length>0){VMM.ExternalAPI.twitter.create(VMM.master_config.twitter.que[0],VMM.ExternalAPI.twitter.pushQue);VMM.master_config.twitter.que.remove(0)}},getOEmbed:function(e,t){var n="http://api.twitter.com/1/statuses/oembed.json?id="+e.mid+"&omit_script=true&include_entities=true&callback=?",r=setTimeout(VMM.ExternalAPI.twitter.errorTimeOutOembed,VMM.master_config.timers.api,e);VMM.getJSON(n,function(t){var n="",r="";n+=t.html.split("</p>&mdash;")[0]+"</p></blockquote>";r=t.author_url.split("twitter.com/")[1];n+="<div class='vcard author'>";n+="<a class='screen-name url' href='"+t.author_url+"' target='_blank'>";n+="<span class='avatar'></span>";n+="<span class='fn'>"+t.author_name+"</span>";n+="<span class='nickname'>@"+r+"<span class='thumbnail-inline'></span></span>";n+="</a>";n+="</div>";VMM.attachElement("#"+e.id.toString(),n);VMM.attachElement("#text_thumb_"+e.id.toString(),t.html);VMM.attachElement("#marker_content_"+e.id.toString(),t.html)}).error(function(t,n,i){trace("TWITTER error");trace("TWITTER ERROR: "+n+" "+t.responseText);clearTimeout(r);VMM.attachElement("#"+e.id,VMM.MediaElement.loadingmessage("ERROR LOADING TWEET "+e.mid))}).success(function(e){clearTimeout(r);clearTimeout(callback_timeout);t()})},getHTML:function(e){var t="http://api.twitter.com/1/statuses/oembed.json?id="+e+"&omit_script=true&include_entities=true&callback=?";VMM.getJSON(t,VMM.ExternalAPI.twitter.onJSONLoaded)},onJSONLoaded:function(e){trace("TWITTER JSON LOADED");var t=e.id;VMM.attachElement("#"+t,VMM.Util.linkify_with_twitter(e.html))},parseTwitterDate:function(e){var t=new Date(Date.parse(e));return t},prettyParseTwitterDate:function(e){var t=new Date(Date.parse(e));return VMM.Date.prettyDate(t,!0)},getTweets:function(e){var t=[],n=e.length;for(var r=0;r<e.length;r++){var i="";e[r].tweet.match("status/")?i=e[r].tweet.split("status/")[1]:e[r].tweet.match("statuses/")?i=e[r].tweet.split("statuses/")[1]:i="";var s="http://api.twitter.com/1/statuses/show.json?id="+i+"&include_entities=true&callback=?";VMM.getJSON(s,function(e){var r={},i="<div class='twitter'><blockquote><p>",s=VMM.Util.linkify_with_twitter(e.text,"_blank");i+=s;i+="</p>";i+="— "+e.user.name+" (<a href='https://twitter.com/"+e.user.screen_name+"'>@"+e.user.screen_name+"</a>) <a href='https://twitter.com/"+e.user.screen_name+"/status/"+e.id+"'>"+VMM.ExternalAPI.twitter.prettyParseTwitterDate(e.created_at)+" </a></blockquote></div>";r.content=i;r.raw=e;t.push(r);if(t.length==n){var o={tweetdata:t};VMM.fireEvent(global,"TWEETSLOADED",o)}}).success(function(){trace("second success")}).error(function(){trace("error")}).complete(function(){trace("complete")})}},getTweetSearch:function(e,t){var n=40;t!=null&&t!=""&&(n=t);var r="http://search.twitter.com/search.json?q="+e+"&rpp="+n+"&include_entities=true&result_type=mixed",i=[];VMM.getJSON(r,function(e){for(var t=0;t<e.results.length;t++){var n={},r="<div class='twitter'><blockquote><p>",s=VMM.Util.linkify_with_twitter(e.results[t].text,"_blank");r+=s;r+="</p>";r+="— "+e.results[t].from_user_name+" (<a href='https://twitter.com/"+e.results[t].from_user+"'>@"+e.results[t].from_user+"</a>) <a href='https://twitter.com/"+e.results[t].from_user+"/status/"+e.id+"'>"+VMM.ExternalAPI.twitter.prettyParseTwitterDate(e.results[t].created_at)+" </a></blockquote></div>";n.content=r;n.raw=e.results[t];i.push(n)}var o={tweetdata:i};VMM.fireEvent(global,"TWEETSLOADED",o)})},prettyHTML:function(e,t){var e=e.toString(),n={twitterid:e},r="http://api.twitter.com/1/statuses/show.json?id="+e+"&include_entities=true&callback=?",i=setTimeout(VMM.ExternalAPI.twitter.errorTimeOut,VMM.master_config.timers.api,e);VMM.getJSON(r,VMM.ExternalAPI.twitter.formatJSON).error(function(t,n,r){trace("TWITTER error");trace("TWITTER ERROR: "+n+" "+t.responseText);VMM.attachElement("#twitter_"+e,"<p>ERROR LOADING TWEET "+e+"</p>")}).success(function(e){clearTimeout(i);t&&VMM.ExternalAPI.twitter.secondaryMedia(e)})},formatJSON:function(e){var t=e.id_str,n="<blockquote><p>",r=VMM.Util.linkify_with_twitter(e.text,"_blank");n+=r;n+="</p></blockquote>";n+="<div class='vcard author'>";n+="<a class='screen-name url' href='https://twitter.com/"+e.user.screen_name+"' data-screen-name='"+e.user.screen_name+"' target='_blank'>";n+="<span class='avatar'><img src=' "+e.user.profile_image_url+"'  alt=''></span>";n+="<span class='fn'>"+e.user.name+"</span>";n+="<span class='nickname'>@"+e.user.screen_name+"<span class='thumbnail-inline'></span></span>";n+="</a>";n+="</div>";typeof e.entities.media!="undefined"&&e.entities.media[0].type=="photo"&&(n+="<img src=' "+e.entities.media[0].media_url+"'  alt=''>");VMM.attachElement("#twitter_"+t.toString(),n);VMM.attachElement("#text_thumb_"+t.toString(),e.text)}},googlemaps:{maptype:"toner",setMapType:function(e){e!=""&&(VMM.ExternalAPI.googlemaps.maptype=e)},get:function(e){var t,n,r;e.vars=VMM.Util.getUrlVars(e.id);VMM.ExternalAPI.keys.google!=""?n=VMM.ExternalAPI.keys.google:n=Aes.Ctr.decrypt(VMM.ExternalAPI.keys_master.google,VMM.ExternalAPI.keys_master.vp,256);r="http://maps.googleapis.com/maps/api/js?key="+n+"&v=3.9&libraries=places&sensor=false&callback=VMM.ExternalAPI.googlemaps.onMapAPIReady";if(VMM.master_config.googlemaps.active)VMM.master_config.googlemaps.que.push(e);else{VMM.master_config.googlemaps.que.push(e);VMM.master_config.googlemaps.api_loaded||LoadLib.js(r,function(){trace("Google Maps API Library Loaded")})}},create:function(e){VMM.ExternalAPI.googlemaps.createAPIMap(e)},createiFrameMap:function(e){var t=e.id+"&output=embed",n="",r=e.uid.toString()+"_gmap";n+="<div class='google-map' id='"+r+"' style='width=100%;height=100%;'>";n+="<iframe width='100%' height='100%' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='"+t+"'></iframe>";n+="</div>";VMM.attachElement("#"+e.uid,n)},createAPIMap:function(e){function d(e){if(e in VMM.ExternalAPI.googlemaps.map_providers){t=VMM.ExternalAPI.googlemaps.map_attribution[VMM.ExternalAPI.googlemaps.map_providers[e].attribution];return VMM.ExternalAPI.googlemaps.map_providers[e]}if(VMM.ExternalAPI.googlemaps.defaultType(e)){trace("GOOGLE MAP DEFAULT TYPE");return google.maps.MapTypeId[e.toUpperCase()]}trace("Not a maptype: "+e)}function v(){var t=new google.maps.Geocoder,n=VMM.Util.getUrlVars(e.id).q,i;if(n.match("loc:")){var s=n.split(":")[1].split("+");u=new google.maps.LatLng(parseFloat(s[0]),parseFloat(s[1]));l=!0}t.geocode({address:n},function(e,t){if(t==google.maps.GeocoderStatus.OK){i=new google.maps.Marker({map:r,position:e[0].geometry.location});typeof e[0].geometry.viewport!="undefined"?r.fitBounds(e[0].geometry.viewport):typeof e[0].geometry.bounds!="undefined"?r.fitBounds(e[0].geometry.bounds):r.setCenter(e[0].geometry.location);l&&r.panTo(u);c&&r.setZoom(f)}else{trace("Geocode for "+n+" was not successful for the following reason: "+t);trace("TRYING PLACES SEARCH");l&&r.panTo(u);c&&r.setZoom(f);m()}})}function m(){function h(t,i){if(i==google.maps.places.PlacesServiceStatus.OK){for(var s=0;s<t.length;s++);if(l)r.panTo(u);else if(t.length>=1){r.panTo(t[0].geometry.location);c&&r.setZoom(f)}}else{trace("Place search for "+n.query+" was not successful for the following reason: "+i);trace("YOU MAY NEED A GOOGLE MAPS API KEY IN ORDER TO USE THIS FEATURE OF TIMELINEJS");trace("FIND OUT HOW TO GET YOUR KEY HERE: https://developers.google.com/places/documentation/#Authentication");if(l){r.panTo(u);c&&r.setZoom(f)}else{trace("USING SIMPLE IFRAME MAP EMBED");e.id[0].match("https")&&(e.id=e.url[0].replace("https","http"));VMM.ExternalAPI.googlemaps.createiFrameMap(e)}}}function p(e){var t,n;n=e.geometry.location;t=new google.maps.Marker({map:r,position:e.geometry.location});google.maps.event.addListener(t,"click",function(){i.setContent(e.name);i.open(r,this)})}var t,n,i,s,o,a;place_search=new google.maps.places.PlacesService(r);i=new google.maps.InfoWindow;n={query:"",types:["country","neighborhood","political","locality","geocode"]};type.of(VMM.Util.getUrlVars(e.id)["q"])=="string"&&(n.query=VMM.Util.getUrlVars(e.id).q);if(l){n.location=u;n.radius="15000"}else{o=new google.maps.LatLng(-89.999999,-179.999999);a=new google.maps.LatLng(89.999999,179.999999);s=new google.maps.LatLngBounds(o,a)}place_search.textSearch(n,h)}function g(){var t,n,i=!1;trace("LOADING PLACES API FOR GOOGLE MAPS");if(VMM.ExternalAPI.keys.google!=""){t=VMM.ExternalAPI.keys.google;i=!0}else{trace("YOU NEED A GOOGLE MAPS API KEY IN ORDER TO USE THIS FEATURE OF TIMELINEJS");trace("FIND OUT HOW TO GET YOUR KEY HERE: https://developers.google.com/places/documentation/#Authentication")}n="https://maps.googleapis.com/maps/api/place/textsearch/json?key="+t+"&sensor=false&language="+e.lang+"&";type.of(VMM.Util.getUrlVars(e.id)["q"])=="string"&&(n+="query="+VMM.Util.getUrlVars(e.id).q);l&&(n+="&location="+u);if(i)VMM.getJSON(n,function(t){trace("PLACES JSON");var n="",i="",s="",o="";trace(t);if(t.status=="OVER_QUERY_LIMIT"){trace("OVER_QUERY_LIMIT");if(l){r.panTo(u);c&&r.setZoom(f)}else{trace("DOING TRADITIONAL MAP IFRAME EMBED UNTIL QUERY LIMIT RESTORED");h=!0;VMM.ExternalAPI.googlemaps.createiFrameMap(e)}}else{if(t.results.length>=1){s=new google.maps.LatLng(parseFloat(t.results[0].geometry.viewport.northeast.lat),parseFloat(t.results[0].geometry.viewport.northeast.lng));o=new google.maps.LatLng(parseFloat(t.results[0].geometry.viewport.southwest.lat),parseFloat(t.results[0].geometry.viewport.southwest.lng));i=new google.maps.LatLngBounds(o,s);r.fitBounds(i)}else trace("NO RESULTS");l&&r.panTo(u);c&&r.setZoom(f)}}).error(function(e,t,n){trace("PLACES JSON ERROR");trace("PLACES JSON ERROR: "+t+" "+e.responseText)}).success(function(e){trace("PLACES JSON SUCCESS")});else if(l){r.panTo(u);c&&r.setZoom(f)}else{trace("DOING TRADITIONAL MAP IFRAME EMBED BECAUSE NO GOOGLE MAP API KEY WAS PROVIDED");VMM.ExternalAPI.googlemaps.createiFrameMap(e)}}function y(){var t,n,i,s;t=e.id+"&output=kml";t=t.replace("&output=embed","");n=new google.maps.KmlLayer(t,{preserveViewport:!0});i=new google.maps.InfoWindow;n.setMap(r);google.maps.event.addListenerOnce(n,"defaultviewport_changed",function(){l?r.panTo(u):r.fitBounds(n.getDefaultViewport());c&&r.setZoom(f)});google.maps.event.addListener(n,"click",function(e){function t(e){i.setContent(e);i.open(r)}s=e.featureData.description;t(s)})}var t="",n,r,i,s=e.uid.toString()+"_gmap",o="",u=new google.maps.LatLng(41.875696,-87.624207),a,f=11,l=!1,c=!1,h=!1,p;google.maps.VeriteMapType=function(e){if(VMM.ExternalAPI.googlemaps.defaultType(e))return google.maps.MapTypeId[e.toUpperCase()];var t=d(e);return google.maps.ImageMapType.call(this,{getTileUrl:function(e,n){var r=(n+e.x+e.y)%VMM.ExternalAPI.googlemaps.map_subdomains.length;return[t.url.replace("{S}",VMM.ExternalAPI.googlemaps.map_subdomains[r]).replace("{Z}",n).replace("{X}",e.x).replace("{Y}",e.y).replace("{z}",n).replace("{x}",e.x).replace("{y}",e.y)]},tileSize:new google.maps.Size(256,256),name:e,minZoom:t.minZoom,maxZoom:t.maxZoom})};google.maps.VeriteMapType.prototype=new google.maps.ImageMapType("_");VMM.ExternalAPI.googlemaps.maptype!=""?VMM.ExternalAPI.googlemaps.defaultType(VMM.ExternalAPI.googlemaps.maptype)?n=google.maps.MapTypeId[VMM.ExternalAPI.googlemaps.maptype.toUpperCase()]:n=VMM.ExternalAPI.googlemaps.maptype:n="toner";if(type.of(VMM.Util.getUrlVars(e.id)["ll"])=="string"){l=!0;a=VMM.Util.getUrlVars(e.id).ll.split(",");u=new google.maps.LatLng(parseFloat(a[0]),parseFloat(a[1]))}else if(type.of(VMM.Util.getUrlVars(e.id)["sll"])=="string"){a=VMM.Util.getUrlVars(e.id).sll.split(",");u=new google.maps.LatLng(parseFloat(a[0]),parseFloat(a[1]))}if(type.of(VMM.Util.getUrlVars(e.id)["z"])=="string"){c=!0;f=parseFloat(VMM.Util.getUrlVars(e.id).z)}i={zoom:f,draggable:!1,disableDefaultUI:!0,mapTypeControl:!1,zoomControl:!0,zoomControlOptions:{style:google.maps.ZoomControlStyle.SMALL,position:google.maps.ControlPosition.TOP_RIGHT},center:u,mapTypeId:n,mapTypeControlOptions:{mapTypeIds:[n]}};VMM.attachElement("#"+e.uid,"<div class='google-map' id='"+s+"' style='width=100%;height=100%;'></div>");r=new google.maps.Map(document.getElementById(s),i);if(!VMM.ExternalAPI.googlemaps.defaultType(VMM.ExternalAPI.googlemaps.maptype)){r.mapTypes.set(n,new google.maps.VeriteMapType(n));o="<div class='map-attribution'><div class='attribution-text'>"+t+"</div></div>";VMM.appendElement("#"+s,o)}type.of(VMM.Util.getUrlVars(e.id)["msid"])=="string"?y():type.of(VMM.Util.getUrlVars(e.id)["q"])=="string"&&v()},pushQue:function(){for(var e=0;e<VMM.master_config.googlemaps.que.length;e++)VMM.ExternalAPI.googlemaps.create(VMM.master_config.googlemaps.que[e]);VMM.master_config.googlemaps.que=[]},onMapAPIReady:function(){VMM.master_config.googlemaps.map_active=!0;VMM.master_config.googlemaps.places_active=!0;VMM.ExternalAPI.googlemaps.onAPIReady()},onPlacesAPIReady:function(){VMM.master_config.googlemaps.places_active=!0;VMM.ExternalAPI.googlemaps.onAPIReady()},onAPIReady:function(){if(!VMM.master_config.googlemaps.active&&VMM.master_config.googlemaps.map_active&&VMM.master_config.googlemaps.places_active){VMM.master_config.googlemaps.active=!0;VMM.ExternalAPI.googlemaps.pushQue()}},defaultType:function(e){return e.toLowerCase()=="satellite"||e.toLowerCase()=="hybrid"||e.toLowerCase()=="terrain"||e.toLowerCase()=="roadmap"?!0:!1},map_subdomains:["","a.","b.","c.","d."],map_attribution:{stamen:"Map tiles by <a href='http://stamen.com'>Stamen Design</a>, under <a href='http://creativecommons.org/licenses/by/3.0'>CC BY 3.0</a>. Data by <a href='http://openstreetmap.org'>OpenStreetMap</a>, under <a href='http://creativecommons.org/licenses/by-sa/3.0'>CC BY SA</a>.",apple:"Map data &copy; 2012  Apple, Imagery &copy; 2012 Apple"},map_providers:{toner:{url:"http://{S}tile.stamen.com/toner/{Z}/{X}/{Y}.png",minZoom:0,maxZoom:20,attribution:"stamen"},"toner-lines":{url:"http://{S}tile.stamen.com/toner-lines/{Z}/{X}/{Y}.png",minZoom:0,maxZoom:20,attribution:"stamen"},"toner-labels":{url:"http://{S}tile.stamen.com/toner-labels/{Z}/{X}/{Y}.png",minZoom:0,maxZoom:20,attribution:"stamen"},sterrain:{url:"http://{S}tile.stamen.com/terrain/{Z}/{X}/{Y}.jpg",minZoom:4,maxZoom:20,attribution:"stamen"},apple:{url:"http://gsp2.apple.com/tile?api=1&style=slideshow&layers=default&lang=en_US&z={z}&x={x}&y={y}&v=9",minZoom:4,maxZoom:14,attribution:"apple"},watercolor:{url:"http://{S}tile.stamen.com/watercolor/{Z}/{X}/{Y}.jpg",minZoom:3,maxZoom:16,attribution:"stamen"}}},googleplus:{get:function(e){var t,n={user:e.user,activity:e.id,id:e.uid};VMM.master_config.googleplus.que.push(n);VMM.master_config.googleplus.active=!0},create:function(e,t){var n="",r="",i="",s="",o="",u,a;googleplus_timeout=setTimeout(VMM.ExternalAPI.googleplus.errorTimeOut,VMM.master_config.timers.api,e),callback_timeout=setTimeout(t,VMM.master_config.timers.api,e);VMM.master_config.Timeline.api_keys.google!=""?r=VMM.master_config.Timeline.api_keys.google:r=Aes.Ctr.decrypt(VMM.master_config.api_keys_master.google,VMM.master_config.vp,256);u="https://www.googleapis.com/plus/v1/people/"+e.user+"/activities/public?alt=json&maxResults=100&fields=items(id,url)&key="+r;n="GOOGLE PLUS API CALL";VMM.getJSON(u,function(t){for(var u=0;u<t.items.length;u++){trace("loop");if(t.items[u].url.split("posts/")[1]==e.activity){trace("FOUND IT!!");i=t.items[u].id;a="https://www.googleapis.com/plus/v1/activities/"+i+"?alt=json&key="+r;VMM.getJSON(a,function(t){trace(t);if(typeof t.annotation!="undefined"){s+="<div class='googleplus-annotation'>'"+t.annotation+"</div>";s+=t.object.content}else s+=t.object.content;if(typeof t.object.attachments!="undefined"){for(var r=0;r<t.object.attachments.length;r++){if(t.object.attachments[r].objectType=="photo")o="<a href='"+t.object.url+"' target='_blank'>"+"<img src='"+t.object.attachments[r].image.url+"' class='article-thumb'></a>"+o;else if(t.object.attachments[r].objectType=="video"){o="<img src='"+t.object.attachments[r].image.url+"' class='article-thumb'>"+o;o+="<div>";o+="<a href='"+t.object.attachments[r].url+"' target='_blank'>";o+="<h5>"+t.object.attachments[r].displayName+"</h5>";o+="</a>";o+="</div>"}else if(t.object.attachments[r].objectType=="article"){o+="<div>";o+="<a href='"+t.object.attachments[r].url+"' target='_blank'>";o+="<h5>"+t.object.attachments[r].displayName+"</h5>";o+="<p>"+t.object.attachments[r].content+"</p>";o+="</a>";o+="</div>"}trace(t.object.attachments[r])}o="<div class='googleplus-attachments'>"+o+"</div>"}n="<div class='googleplus-content'>"+s+o+"</div>";n+="<div class='vcard author'><a class='screen-name url' href='"+t.url+"' target='_blank'>";n+="<span class='avatar'><img src='"+t.actor.image.url+"' style='max-width: 32px; max-height: 32px;'></span>";n+="<span class='fn'>"+t.actor.displayName+"</span>";n+="<span class='nickname'><span class='thumbnail-inline'></span></span>";n+="</a></div>";VMM.attachElement("#googleplus_"+e.activity,n)});break}}}).error(function(t,n,r){var i=VMM.parseJSON(t.responseText);trace(i.error.message);VMM.attachElement("#googleplus_"+e.activity,VMM.MediaElement.loadingmessage("<p>ERROR LOADING GOOGLE+ </p><p>"+i.error.message+"</p>"))}).success(function(e){clearTimeout(googleplus_timeout);clearTimeout(callback_timeout);t()})},pushQue:function(){if(VMM.master_config.googleplus.que.length>0){VMM.ExternalAPI.googleplus.create(VMM.master_config.googleplus.que[0],VMM.ExternalAPI.googleplus.pushQue);VMM.master_config.googleplus.que.remove(0)}},errorTimeOut:function(e){trace("GOOGLE+ JSON ERROR TIMEOUT "+e.activity);VMM.attachElement("#googleplus_"+e.activity,VMM.MediaElement.loadingmessage("<p>Still waiting on GOOGLE+ </p><p>"+e.activity+"</p>"))}},googledocs:{get:function(e){VMM.master_config.googledocs.que.push(e);VMM.master_config.googledocs.active=!0},create:function(e){var t="";e.id.match(/docs.google.com/i)?t="<iframe class='doc' frameborder='0' width='100%' height='100%' src='"+e.id+"&amp;embedded=true'></iframe>":t="<iframe class='doc' frameborder='0' width='100%' height='100%' src='http://docs.google.com/viewer?url="+e.id+"&amp;embedded=true'></iframe>";VMM.attachElement("#"+e.uid,t)},pushQue:function(){for(var e=0;e<VMM.master_config.googledocs.que.length;e++)VMM.ExternalAPI.googledocs.create(VMM.master_config.googledocs.que[e]);VMM.master_config.googledocs.que=[]}},flickr:{get:function(e){VMM.master_config.flickr.que.push(e);VMM.master_config.flickr.active=!0},create:function(e,t){var n,r=setTimeout(t,VMM.master_config.timers.api,e);typeof VMM.master_config.Timeline!="undefined"&&VMM.master_config.Timeline.api_keys.flickr!=""?n=VMM.master_config.Timeline.api_keys.flickr:n=Aes.Ctr.decrypt(VMM.master_config.api_keys_master.flickr,VMM.master_config.vp,256);var i="http://api.flickr.com/services/rest/?method=flickr.photos.getSizes&api_key="+n+"&photo_id="+e.id+"&format=json&jsoncallback=?";VMM.getJSON(i,function(t){var n=t.sizes.size[0].url.split("photos/")[1].split("/")[1],r="#"+e.uid,i="#"+e.uid+"_thumb",s,o,u=!1,a="Large";a=VMM.ExternalAPI.flickr.sizes(VMM.master_config.sizes.api.height);for(var f=0;f<t.sizes.size.length;f++)if(t.sizes.size[f].label==a){u=!0;s=t.sizes.size[f].source}u||(s=t.sizes.size[t.sizes.size.length-2].source);o=t.sizes.size[0].source;VMM.Lib.attr(r,"src",s);VMM.attachElement(i,"<img src='"+o+"'>")}).error(function(e,t,n){trace("FLICKR error");trace("FLICKR ERROR: "+t+" "+e.responseText)}).success(function(e){clearTimeout(r);t()})},pushQue:function(){if(VMM.master_config.flickr.que.length>0){VMM.ExternalAPI.flickr.create(VMM.master_config.flickr.que[0],VMM.ExternalAPI.flickr.pushQue);VMM.master_config.flickr.que.remove(0)}},sizes:function(e){var t="";e<=75?t="Thumbnail":e<=180?t="Small":e<=240?t="Small 320":e<=375?t="Medium":e<=480?t="Medium 640":e<=600?t="Large":t="Large";return t}},instagram:{get:function(e,t){return t?"http://instagr.am/p/"+e.id+"/media/?size=t":"http://instagr.am/p/"+e.id+"/media/?size="+VMM.ExternalAPI.instagram.sizes(VMM.master_config.sizes.api.height)},sizes:function(e){var t="";e<=150?t="t":e<=306?t="m":t="l";return t}},soundcloud:{get:function(e){VMM.master_config.soundcloud.que.push(e);VMM.master_config.soundcloud.active=!0},create:function(e,t){var n="http://soundcloud.com/oembed?url="+e.id+"&format=js&callback=?";VMM.getJSON(n,function(n){VMM.attachElement("#"+e.uid,n.html);t()})},pushQue:function(){if(VMM.master_config.soundcloud.que.length>0){VMM.ExternalAPI.soundcloud.create(VMM.master_config.soundcloud.que[0],VMM.ExternalAPI.soundcloud.pushQue);VMM.master_config.soundcloud.que.remove(0)}}},wikipedia:{get:function(e){VMM.master_config.wikipedia.que.push(e);VMM.master_config.wikipedia.active=!0},create:function(e,t){var n="http://"+e.lang+".wikipedia.org/w/api.php?action=query&prop=extracts&redirects=&titles="+e.id+"&exintro=1&format=json&callback=?";callback_timeout=setTimeout(t,VMM.master_config.timers.api,e);if(VMM.Browser.browser=="Explorer"&&parseInt(VMM.Browser.version,10)>=7&&window.XDomainRequest){var r="<h4><a href='http://"+VMM.master_config.language.api.wikipedia+".wikipedia.org/wiki/"+e.id+"' target='_blank'>"+e.url+"</a></h4>";r+="<span class='wiki-source'>"+VMM.master_config.language.messages.wikipedia+"</span>";r+="<p>Wikipedia entry unable to load using Internet Explorer 8 or below.</p>";VMM.attachElement("#"+e.uid,r)}VMM.getJSON(n,function(t){if(t.query){var n,r,i="",s="",o=1,u=[];n=VMM.Util.getObjectAttributeByIndex(t.query.pages,0).extract;r=VMM.Util.getObjectAttributeByIndex(t.query.pages,0).title;n.match("<p>")?u=n.split("<p>"):u.push(n);for(var a=0;a<u.length;a++)a+1<=o&&a+1<u.length&&(s+="<p>"+u[a+1]);i="<h4><a href='http://"+VMM.master_config.language.api.wikipedia+".wikipedia.org/wiki/"+r+"' target='_blank'>"+r+"</a></h4>";i+="<span class='wiki-source'>"+VMM.master_config.language.messages.wikipedia+"</span>";i+=VMM.Util.linkify_wikipedia(s);n.match("REDIRECT")||VMM.attachElement("#"+e.uid,i)}}).error(function(n,r,i){trace("WIKIPEDIA error");trace("WIKIPEDIA ERROR: "+r+" "+n.responseText);trace(i);VMM.attachElement("#"+e.uid,VMM.MediaElement.loadingmessage("<p>Wikipedia is not responding</p>"));clearTimeout(callback_timeout);if(VMM.master_config.wikipedia.tries<4){trace("WIKIPEDIA ATTEMPT "+VMM.master_config.wikipedia.tries);trace(e);VMM.master_config.wikipedia.tries++;VMM.ExternalAPI.wikipedia.create(e,t)}else t()}).success(function(e){VMM.master_config.wikipedia.tries=0;clearTimeout(callback_timeout);t()})},pushQue:function(){if(VMM.master_config.wikipedia.que.length>0){trace("WIKIPEDIA PUSH QUE "+VMM.master_config.wikipedia.que.length);VMM.ExternalAPI.wikipedia.create(VMM.master_config.wikipedia.que[0],VMM.ExternalAPI.wikipedia.pushQue);VMM.master_config.wikipedia.que.remove(0)}}},youtube:{get:function(e){var t="http://gdata.youtube.com/feeds/api/videos/"+e.id+"?v=2&alt=jsonc&callback=?";VMM.master_config.youtube.que.push(e);VMM.master_config.youtube.active||VMM.master_config.youtube.api_loaded||LoadLib.js("http://www.youtube.com/player_api",function(){trace("YouTube API Library Loaded")});VMM.getJSON(t,function(t){VMM.ExternalAPI.youtube.createThumb(t,e)})},create:function(e){if(typeof e.start!="undefined"){var t=e.start.toString(),n=0,r=0;if(t.match("m")){n=parseInt(t.split("m")[0],10);r=parseInt(t.split("m")[1].split("s")[0],10);e.start=n*60+r}else e.start=0}else e.start=0;var i={active:!1,player:{},name:e.uid,playing:!1,hd:!1};typeof e.hd!="undefined"&&(i.hd=!0);i.player[e.id]=new YT.Player(e.uid,{height:"390",width:"640",playerVars:{enablejsapi:1,color:"white",showinfo:0,theme:"light",start:e.start,rel:0},videoId:e.id,events:{onReady:VMM.ExternalAPI.youtube.onPlayerReady,onStateChange:VMM.ExternalAPI.youtube.onStateChange}});VMM.master_config.youtube.array.push(i)},createThumb:function(e,t){trace("CREATE THUMB");trace(e);trace(t);if(typeof e.data!="undefined"){var n="#"+t.uid+"_thumb";VMM.attachElement(n,"<img src='"+e.data.thumbnail.sqDefault+"'>")}},pushQue:function(){for(var e=0;e<VMM.master_config.youtube.que.length;e++)VMM.ExternalAPI.youtube.create(VMM.master_config.youtube.que[e]);VMM.master_config.youtube.que=[]},onAPIReady:function(){VMM.master_config.youtube.active=!0;VMM.ExternalAPI.youtube.pushQue()},stopPlayers:function(){for(var e=0;e<VMM.master_config.youtube.array.length;e++)if(VMM.master_config.youtube.array[e].playing){var t=VMM.master_config.youtube.array[e].name;VMM.master_config.youtube.array[e].player[t].stopVideo()}},onStateChange:function(e){for(var t=0;t<VMM.master_config.youtube.array.length;t++){var n=VMM.master_config.youtube.array[t].name;if(VMM.master_config.youtube.array[t].player[n]==e.target&&e.data==YT.PlayerState.PLAYING){VMM.master_config.youtube.array[t].playing=!0;trace(VMM.master_config.youtube.array[t].hd);VMM.master_config.youtube.array[t].hd}}},onPlayerReady:function(e){}},vimeo:{get:function(e){VMM.master_config.vimeo.que.push(e);VMM.master_config.vimeo.active=!0},create:function(e,t){trace("VIMEO CREATE");var n="http://vimeo.com/api/v2/video/"+e.id+".json",r="http://player.vimeo.com/video/"+e.id+"?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff";VMM.getJSON(n,function(n){VMM.ExternalAPI.vimeo.createThumb(n,e);t()});VMM.attachElement("#"+e.uid,"<iframe autostart='false' frameborder='0' width='100%' height='100%' src='"+r+"'></iframe>")},createThumb:function(e,t){trace("VIMEO CREATE THUMB");var n="#"+t.uid+"_thumb";VMM.attachElement(n,"<img src='"+e[0].thumbnail_small+"'>")},pushQue:function(){if(VMM.master_config.vimeo.que.length>0){VMM.ExternalAPI.vimeo.create(VMM.master_config.vimeo.que[0],VMM.ExternalAPI.vimeo.pushQue);VMM.master_config.vimeo.que.remove(0)}}},vine:{get:function(e){VMM.master_config.vine.que.push(e);VMM.master_config.vine.active=!0},create:function(e,t){trace("VINE CREATE");var n="https://vine.co/v/"+e.id+"/embed/simple";VMM.attachElement("#"+e.uid,"<iframe frameborder='0' width='100%' height='100%' src='"+n+"'></iframe><script async src='http://platform.vine.co/static/scripts/embed.js' charset='utf-8'></script>")},pushQue:function(){if(VMM.master_config.vine.que.length>0){VMM.ExternalAPI.vine.create(VMM.master_config.vine.que[0],VMM.ExternalAPI.vine.pushQue);VMM.master_config.vine.que.remove(0)}}},webthumb:{get:function(e,t){VMM.master_config.webthumb.que.push(e);VMM.master_config.webthumb.active=!0},sizes:function(e){var t="";e<=150?t="t":e<=306?t="m":t="l";return t},create:function(e){trace("WEB THUMB CREATE");var t="http://free.pagepeeker.com/v2/thumbs.php?";url=e.id.replace("http://","");VMM.attachElement("#"+e.uid,"<a href='"+e.id+"' target='_blank'><img src='"+t+"size=x&url="+url+"'></a>");VMM.attachElement("#"+e.uid+"_thumb","<img src='"+t+"size=t&url="+url+"'>")},pushQue:function(){for(var e=0;e<VMM.master_config.webthumb.que.length;e++)VMM.ExternalAPI.webthumb.create(VMM.master_config.webthumb.que[e]);VMM.master_config.webthumb.que=[]}}}.init());typeof VMM!="undefined"&&typeof VMM.MediaElement=="undefined"&&(VMM.MediaElement={init:function(){return this},loadingmessage:function(e){return"<div class='vco-loading'><div class='vco-loading-container'><div class='vco-loading-icon'></div><div class='vco-message'><p>"+e+"</p></div></div></div>"},thumbnail:function(e,t,n,r){var i=16,s=24,o="";t!=null&&t!=""&&(i=t);n!=null&&n!=""&&(s=n);r!=null&&r!=""&&(o=r);if(e.media!=null&&e.media!=""){var u=!0,a="",f=VMM.MediaType(e.media);if(e.thumbnail!=null&&e.thumbnail!=""){trace("CUSTOM THUMB");a="<div class='thumbnail thumb-custom' id='"+r+"_custom_thumb'><img src='"+e.thumbnail+"'></div>";return a}if(f.type=="image"){a="<div class='thumbnail thumb-photo'></div>";return a}if(f.type=="flickr"){a="<div class='thumbnail thumb-photo' id='"+r+"_thumb'></div>";return a}if(f.type=="instagram"){a="<div class='thumbnail thumb-instagram' id='"+r+"_thumb'><img src='"+VMM.ExternalAPI.instagram.get(f.id,!0)+"'></div>";return a}if(f.type=="youtube"){a="<div class='thumbnail thumb-youtube' id='"+r+"_thumb'></div>";return a}if(f.type=="googledoc"){a="<div class='thumbnail thumb-document'></div>";return a}if(f.type=="vimeo"){a="<div class='thumbnail thumb-vimeo' id='"+r+"_thumb'></div>";return a}if(f.type=="vine"){a="<div class='thumbnail thumb-vine'></div>";return a}if(f.type=="dailymotion"){a="<div class='thumbnail thumb-video'></div>";return a}if(f.type=="twitter"){a="<div class='thumbnail thumb-twitter'></div>";return a}if(f.type=="twitter-ready"){a="<div class='thumbnail thumb-twitter'></div>";return a}if(f.type=="soundcloud"){a="<div class='thumbnail thumb-audio'></div>";return a}if(f.type=="google-map"){a="<div class='thumbnail thumb-map'></div>";return a}if(f.type=="googleplus"){a="<div class='thumbnail thumb-googleplus'></div>";return a}if(f.type=="wikipedia"){a="<div class='thumbnail thumb-wikipedia'></div>";return a}if(f.type=="storify"){a="<div class='thumbnail thumb-storify'></div>";return a}if(f.type=="quote"){a="<div class='thumbnail thumb-quote'></div>";return a}if(f.type=="iframe"){a="<div class='thumbnail thumb-video'></div>";return a}if(f.type=="unknown"){f.id.match("blockquote")?a="<div class='thumbnail thumb-quote'></div>":a="<div class='thumbnail thumb-plaintext'></div>";return a}if(f.type=="website"){a="<div class='thumbnail thumb-website' id='"+r+"_thumb'></div>";return a}a="<div class='thumbnail thumb-plaintext'></div>";return a}},create:function(e,t){var n=!1,r=VMM.MediaElement.loadingmessage(VMM.master_config.language.messages.loading+"...");if(e.media!=null&&e.media!=""){var i="",s="",o="",u="",a=!1,f;f=VMM.MediaType(e.media);f.uid=t;n=!0;e.credit!=null&&e.credit!=""&&(o="<div class='credit'>"+VMM.Util.linkify_with_twitter(e.credit,"_blank")+"</div>");e.caption!=null&&e.caption!=""&&(s="<div class='caption'>"+VMM.Util.linkify_with_twitter(e.caption,"_blank")+"</div>");if(f.type=="image"){f.id.match("https://")&&(f.id=f.id.replace("https://","http://"));i="<div class='media-image media-shadow'><img src='"+f.id+"' class='media-image'></div>"
-}else if(f.type=="flickr"){i="<div class='media-image media-shadow'><a href='"+f.link+"' target='_blank'><img id='"+t+"'></a></div>";VMM.ExternalAPI.flickr.get(f)}else if(f.type=="instagram")i="<div class='media-image media-shadow'><a href='"+f.link+"' target='_blank'><img src='"+VMM.ExternalAPI.instagram.get(f)+"'></a></div>";else if(f.type=="googledoc"){i="<div class='media-frame media-shadow doc' id='"+f.uid+"'>"+r+"</div>";VMM.ExternalAPI.googledocs.get(f)}else if(f.type=="youtube"){i="<div class='media-shadow'><div class='media-frame video youtube' id='"+f.uid+"'>"+r+"</div></div>";VMM.ExternalAPI.youtube.get(f)}else if(f.type=="vimeo"){i="<div class='media-shadow media-frame video vimeo' id='"+f.uid+"'>"+r+"</div>";VMM.ExternalAPI.vimeo.get(f)}else if(f.type=="dailymotion")i="<div class='media-shadow'><iframe class='media-frame video dailymotion' autostart='false' frameborder='0' width='100%' height='100%' src='http://www.dailymotion.com/embed/video/"+f.id+"'></iframe></div>";else if(f.type=="vine"){i="<div class='media-shadow media-frame video vine' id='"+f.uid+"'>"+r+"</div>";VMM.ExternalAPI.vine.get(f)}else if(f.type=="twitter"){i="<div class='twitter' id='"+f.uid+"'>"+r+"</div>";a=!0;VMM.ExternalAPI.twitter.get(f)}else if(f.type=="twitter-ready"){a=!0;i=f.id}else if(f.type=="soundcloud"){i="<div class='media-frame media-shadow soundcloud' id='"+f.uid+"'>"+r+"</div>";VMM.ExternalAPI.soundcloud.get(f)}else if(f.type=="google-map"){i="<div class='media-frame media-shadow map' id='"+f.uid+"'>"+r+"</div>";VMM.ExternalAPI.googlemaps.get(f)}else if(f.type=="googleplus"){u="googleplus_"+f.id;i="<div class='googleplus' id='"+u+"'>"+r+"</div>";a=!0;VMM.ExternalAPI.googleplus.get(f)}else if(f.type=="wikipedia"){i="<div class='wikipedia' id='"+f.uid+"'>"+r+"</div>";a=!0;VMM.ExternalAPI.wikipedia.get(f)}else if(f.type=="storify"){a=!0;i="<div class='plain-text-quote'>"+f.id+"</div>"}else if(f.type=="iframe"){a=!0;i="<div class='media-shadow'><iframe class='media-frame video' autostart='false' frameborder='0' width='100%' height='100%' src='"+f.id+"'></iframe></div>"}else if(f.type=="quote"){a=!0;i="<div class='plain-text-quote'>"+f.id+"</div>"}else if(f.type=="unknown"){trace("NO KNOWN MEDIA TYPE FOUND TRYING TO JUST PLACE THE HTML");a=!0;i="<div class='plain-text'><div class='container'>"+VMM.Util.properQuotes(f.id)+"</div></div>"}else if(f.type=="website"){i="<div class='media-shadow website' id='"+f.uid+"'>"+r+"</div>";VMM.ExternalAPI.webthumb.get(f)}else{trace("NO KNOWN MEDIA TYPE FOUND");trace(f.type)}i="<div class='media-container' >"+i+o+s+"</div>";return a?"<div class='text-media'><div class='media-wrapper'>"+i+"</div></div>":"<div class='media-wrapper'>"+i+"</div>"}}}.init());typeof VMM!="undefined"&&typeof VMM.MediaType=="undefined"&&(VMM.MediaType=function(e){var t=e.replace(/^\s\s*/,"").replace(/\s\s*$/,""),n=!1,r={type:"unknown",id:"",start:0,hd:!1,link:"",lang:VMM.Language.lang,uniqueid:VMM.Util.unique_ID(6)};if(t.match("div class='twitter'")){r.type="twitter-ready";r.id=t;n=!0}else if(t.match("(www.)?youtube|youtu.be")){t.match("v=")?r.id=VMM.Util.getUrlVars(t).v:t.match("/embed/")?r.id=t.split("embed/")[1].split(/[?&]/)[0]:t.match(/v\/|v=|youtu\.be\//)?r.id=t.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0]:trace("YOUTUBE IN URL BUT NOT A VALID VIDEO");r.start=VMM.Util.getUrlVars(t).t;r.hd=VMM.Util.getUrlVars(t).hd;r.type="youtube";n=!0}else if(t.match("(player.)?vimeo.com")){r.type="vimeo";r.id=t.split(/video\/|\/\/vimeo\.com\//)[1].split(/[?&]/)[0];n=!0}else if(t.match("(www.)?dailymotion.com")){r.id=t.split(/video\/|\/\/dailymotion\.com\//)[1];r.type="dailymotion";n=!0}else if(t.match("(www.)?vine.co")){trace("VINE");if(t.match("vine.co/v/")){r.id=t.split("vine.co/v/")[1];trace(r.id)}trace(t);r.type="vine";n=!0}else if(t.match("(player.)?soundcloud.com")){r.type="soundcloud";r.id=t;n=!0}else if(t.match("(www.)?twitter.com")&&t.match("status")){t.match("status/")?r.id=t.split("status/")[1]:t.match("statuses/")?r.id=t.split("statuses/")[1]:r.id="";r.type="twitter";n=!0}else if(t.match("maps.google")&&!t.match("staticmap")){r.type="google-map";r.id=t.split(/src=['|"][^'|"]*?['|"]/gi);n=!0}else if(t.match("plus.google")){r.type="googleplus";r.id=t.split("/posts/")[1];t.split("/posts/")[0].match("u/0/")?r.user=t.split("u/0/")[1].split("/posts")[0]:r.user=t.split("google.com/")[1].split("/posts/")[0];n=!0}else if(t.match("flickr.com/photos")){r.type="flickr";r.id=t.split("photos/")[1].split("/")[1];r.link=t;n=!0}else if(t.match("instagr.am/p/")){r.type="instagram";r.link=t;r.id=t.split("/p/")[1].split("/")[0];n=!0}else if(t.match(/jpg|jpeg|png|gif/i)||t.match("staticmap")||t.match("yfrog.com")||t.match("twitpic.com")){r.type="image";r.id=t;n=!0}else if(VMM.FileExtention.googleDocType(t)){r.type="googledoc";r.id=t;n=!0}else if(t.match("(www.)?wikipedia.org")){r.type="wikipedia";var i=t.split("wiki/")[1].split("#")[0].replace("_"," ");r.id=i.replace(" ","%20");r.lang=t.split("//")[1].split(".wikipedia")[0];n=!0}else if(t.indexOf("http://")==0){r.type="website";r.id=t;n=!0}else if(t.match("storify")){r.type="storify";r.id=t;n=!0}else if(t.match("blockquote")){r.type="quote";r.id=t;n=!0}else if(t.match("iframe")){r.type="iframe";trace("IFRAME");trace(t.match(/src\=([^\s]*)\s/)[1].split(/"/)[1]);r.id=t.match(/src\=([^\s]*)\s/)[1].split(/"/)[1];n=!0}else{trace("unknown media");r.type="unknown";r.id=t;n=!0}if(n)return r;trace("No valid media id detected");trace(t);return!1});typeof VMM!="undefined"&&typeof VMM.TextElement=="undefined"&&(VMM.TextElement={init:function(){return this},create:function(e){return e}}.init());typeof VMM!="undefined"&&typeof VMM.DragSlider=="undefined"&&(VMM.DragSlider=function(){function o(e,n){VMM.bindEvent(e,a,t.down,{element:n,delement:e});VMM.bindEvent(e,f,t.up,{element:n,delement:e});VMM.bindEvent(e,u,t.leave,{element:n,delement:e})}function u(n){VMM.unbindEvent(n.data.delement,l,t.move);e.touch||n.preventDefault();n.stopPropagation();if(e.sliding){e.sliding=!1;h(n.data.element,n.data.delement,n);return!1}return!0}function a(t){c(t.data.element,t.data.delement,t);e.touch||t.preventDefault();return!0}function f(t){e.touch||t.preventDefault();if(e.sliding){e.sliding=!1;h(t.data.element,t.data.delement,t);return!1}return!0}function l(e){p(e.data.element,e)}function c(n,r,i){if(e.touch){trace("IS TOUCH");VMM.Lib.css(n,"-webkit-transition-duration","0");e.pagex.start=i.originalEvent.touches[0].screenX;e.pagey.start=i.originalEvent.touches[0].screenY}else{e.pagex.start=i.pageX;e.pagey.start=i.pageY}e.left.start=v(n);e.time.start=(new Date).getTime();VMM.Lib.stop(n);VMM.bindEvent(r,l,t.move,{element:n})}function h(e,n,r){VMM.unbindEvent(n,l,t.move);d(e,r)}function p(t,n){var r,i;e.sliding=!0;if(e.touch){e.pagex.end=n.originalEvent.touches[0].screenX;e.pagey.end=n.originalEvent.touches[0].screenY}else{e.pagex.end=n.pageX;e.pagey.end=n.pageY}e.left.end=v(t);r=-(e.pagex.start-e.pagex.end-e.left.start);if(Math.abs(e.pagey.start)-Math.abs(e.pagey.end)>10){trace("SCROLLING Y");trace(Math.abs(e.pagey.start)-Math.abs(e.pagey.end))}if(Math.abs(r-e.left.start)>10){VMM.Lib.css(t,"left",r);n.preventDefault();n.stopPropagation()}}function d(t,n){var r={left:e.left.end,left_adjust:0,change:{x:0},time:((new Date).getTime()-e.time.start)*10,time_adjust:((new Date).getTime()-e.time.start)*10},o=3e3;e.touch&&(o=6e3);r.change.x=o*(Math.abs(e.pagex.end)-Math.abs(e.pagex.start));r.left_adjust=Math.round(r.change.x/r.time);r.left=Math.min(r.left+r.left_adjust);if(e.constraint)if(r.left>e.constraint.left){r.left=e.constraint.left;r.time>5e3&&(r.time=5e3)}else if(r.left<e.constraint.right){r.left=e.constraint.right;r.time>5e3&&(r.time=5e3)}VMM.fireEvent(i,"DRAGUPDATE",[r]);s||r.time>0&&(e.touch?VMM.Lib.animate(t,r.time,"easeOutCirc",{left:r.left}):VMM.Lib.animate(t,r.time,e.ease,{left:r.left}))}function v(e){return parseInt(VMM.Lib.css(e,"left").substring(0,VMM.Lib.css(e,"left").length-2),10)}var e={element:"",element_move:"",constraint:"",sliding:!1,pagex:{start:0,end:0},pagey:{start:0,end:0},left:{start:0,end:0},time:{start:0,end:0},touch:!1,ease:"easeOutExpo"},t={down:"mousedown",up:"mouseup",leave:"mouseleave",move:"mousemove"},n={down:"mousedown",up:"mouseup",leave:"mouseleave",move:"mousemove"},r={down:"touchstart",up:"touchend",leave:"mouseleave",move:"touchmove"},i=this,s=!1;this.createPanel=function(i,u,a,f,l){e.element=i;e.element_move=u;l!=null&&l!=""&&(s=l);a!=null&&a!=""?e.constraint=a:e.constraint=!1;f?e.touch=f:e.touch=!1;trace("TOUCH"+e.touch);e.touch?t=r:t=n;o(e.element,e.element_move)};this.updateConstraint=function(t){trace("updateConstraint");e.constraint=t};this.cancelSlide=function(n){VMM.unbindEvent(e.element,l,t.move);return!0}});typeof VMM!="undefined"&&typeof VMM.Slider=="undefined"&&(VMM.Slider=function(e,t){function S(){trace("onConfigSet")}function x(e,t){var r=!0,i=!1;e!=null&&(r=e);t!=null&&(i=t);m=n.slider.width;n.slider.nav.height=VMM.Lib.height(E.prevBtnContainer);VMM.Browser.device=="mobile"||m<=640?n.slider.content.padding=10:n.slider.content.padding=n.slider.content.padding_default;n.slider.content.width=m-n.slider.content.padding*2;VMM.Lib.width(u,h.length*n.slider.content.width);i&&VMM.Lib.css(o,"left",h[v].leftpos());B();j();VMM.Lib.css(E.nextBtn,"left",m-n.slider.nav.width);VMM.Lib.height(E.prevBtn,n.slider.height);VMM.Lib.height(E.nextBtn,n.slider.height);VMM.Lib.css(E.nextBtnContainer,"top",n.slider.height/2-n.slider.nav.height/2+10);VMM.Lib.css(E.prevBtnContainer,"top",n.slider.height/2-n.slider.nav.height/2+10);VMM.Lib.height(s,n.slider.height);VMM.Lib.width(s,m);r&&I(v,"linear",1);v==0&&VMM.Lib.visible(E.prevBtn,!1)}function T(e,t){trace("DRAG FINISH");trace(t.left_adjust);trace(n.slider.width/2);if(t.left_adjust<0)if(Math.abs(t.left_adjust)>n.slider.width/2)if(v==h.length-1)q();else{I(v+1,"easeOutExpo");O()}else q();else if(Math.abs(t.left_adjust)>n.slider.width/2)if(v==0)q();else{I(v-1,"easeOutExpo");O()}else q()}function N(e){if(v==h.length-1)q();else{I(v+1);O()}}function C(e){if(v==0)q();else{I(v-1);O()}}function k(e){switch(e.keyCode){case 39:N(e);break;case 37:C(e)}}function L(e,t){if(p.length==0)for(var r=0;r<h.length;r++)p.push(h[r].leftpos());if(typeof t.left=="number"){var i=t.left,s=-h[v].leftpos();i<s-n.slider_width/3?N():i>s+n.slider_width/3?C():VMM.Lib.animate(o,n.duration,n.ease,{left:s})}else VMM.Lib.animate(o,n.duration,n.ease,{left:s});typeof t.top=="number"&&VMM.Lib.animate(o,n.duration,n.ease,{top:-t.top})}function A(e){z()}function O(){n.current_slide=v;VMM.fireEvent(w,"UPDATE")}function M(e){c=e}function _(e){var t=0;VMM.attachElement(u,"");h=[];for(t=0;t<e.length;t++){var n=new VMM.Slider.Slide(e[t],u);h.push(n)}}function D(e){var t=0;if(e)P();else{for(t=0;t<h.length;t++)h[t].clearTimers();r=setTimeout(P,n.duration)}}function P(){var e=0;for(e=0;e<h.length;e++)h[e].enqueue=!0;for(e=0;e<n.preload;e++){if(!(v+e>h.length-1)){h[v+e].show();h[v+e].enqueue=!1}if(!(v-e<0)){h[v-e].show();h[v-e].enqueue=!1}}if(h.length>50)for(e=0;e<h.length;e++)h[e].enqueue&&h[e].hide();B()}function H(e){}function B(){var e=0,t=".slider-item .layout-text-media .media .media-container ",r=".slider-item .layout-media .media .media-container ",i=".slider-item .media .media-container",s=".slider-item .media .media-container .media-shadow .caption",o=!1,u={text_media:{width:n.slider.content.width/100*60,height:n.slider.height-60,video:{width:0,height:0},text:{width:n.slider.content.width/100*40-30,height:n.slider.height}},media:{width:n.slider.content.width,height:n.slider.height-110,video:{width:0,height:0}}};if(VMM.Browser.device=="mobile"||m<641)o=!0;VMM.master_config.sizes.api.width=u.media.width;VMM.master_config.sizes.api.height=u.media.height;u.text_media.video=VMM.Util.ratio.fit(u.text_media.width,u.text_media.height,16,9);u.media.video=VMM.Util.ratio.fit(u.media.width,u.media.height,16,9);VMM.Lib.css(".slider-item","width",n.slider.content.width);VMM.Lib.height(".slider-item",n.slider.height);if(o){u.text_media.width=n.slider.content.width-n.slider.content.padding*2;u.media.width=n.slider.content.width-n.slider.content.padding*2;u.text_media.height=n.slider.height/100*50-50;u.media.height=n.slider.height/100*70-40;u.text_media.video=VMM.Util.ratio.fit(u.text_media.width,u.text_media.height,16,9);u.media.video=VMM.Util.ratio.fit(u.media.width,u.media.height,16,9);VMM.Lib.css(".slider-item .layout-text-media .text","width","100%");VMM.Lib.css(".slider-item .layout-text-media .text","display","block");VMM.Lib.css(".slider-item .layout-text-media .text .container","display","block");VMM.Lib.css(".slider-item .layout-text-media .text .container","width",u.media.width);VMM.Lib.css(".slider-item .layout-text-media .text .container .start","width","auto");VMM.Lib.css(".slider-item .layout-text-media .media","float","none");VMM.Lib.addClass(".slider-item .content-container","pad-top");VMM.Lib.css(".slider-item .media blockquote p","line-height","18px");VMM.Lib.css(".slider-item .media blockquote p","font-size","16px");VMM.Lib.css(".slider-item","overflow-y","auto")}else{VMM.Lib.css(".slider-item .layout-text-media .text","width","40%");VMM.Lib.css(".slider-item .layout-text-media .text","display","table-cell");VMM.Lib.css(".slider-item .layout-text-media .text .container","display","table-cell");VMM.Lib.css(".slider-item .layout-text-media .text .container","width","auto");VMM.Lib.css(".slider-item .layout-text-media .text .container .start","width",u.text_media.text.width);VMM.Lib.removeClass(".slider-item .content-container","pad-top");VMM.Lib.css(".slider-item .layout-text-media .media","float","left");VMM.Lib.css(".slider-item .layout-text-media","display","table");VMM.Lib.css(".slider-item .media blockquote p","line-height","36px");VMM.Lib.css(".slider-item .media blockquote p","font-size","28px");VMM.Lib.css(".slider-item","display","table");VMM.Lib.css(".slider-item","overflow-y","auto")}VMM.Lib.css(t+".media-frame","max-width",u.text_media.width);VMM.Lib.height(t+".media-frame",u.text_media.height);VMM.Lib.width(t+".media-frame",u.text_media.width);VMM.Lib.css(t+"img","max-height",u.text_media.height);VMM.Lib.css(r+"img","max-height",u.media.height);VMM.Lib.css(t+"img","max-width",u.text_media.width);VMM.Lib.css(t+".avatar img","max-width",32);VMM.Lib.css(t+".avatar img","max-height",32);VMM.Lib.css(r+".avatar img","max-width",32);VMM.Lib.css(r+".avatar img","max-height",32);VMM.Lib.css(t+".article-thumb","max-width","50%");VMM.Lib.css(r+".article-thumb","max-width",200);VMM.Lib.width(t+".media-frame",u.text_media.video.width);VMM.Lib.height(t+".media-frame",u.text_media.video.height);VMM.Lib.width(r+".media-frame",u.media.video.width);VMM.Lib.height(r+".media-frame",u.media.video.height);VMM.Lib.css(r+".media-frame","max-height",u.media.video.height);VMM.Lib.css(r+".media-frame","max-width",u.media.video.width);VMM.Lib.height(r+".soundcloud",168);VMM.Lib.height(t+".soundcloud",168);VMM.Lib.width(r+".soundcloud",u.media.width);VMM.Lib.width(t+".soundcloud",u.text_media.width);VMM.Lib.css(i+".soundcloud","max-height",168);VMM.Lib.height(t+".map",u.text_media.height);VMM.Lib.width(t+".map",u.text_media.width);VMM.Lib.css(r+".map","max-height",u.media.height);VMM.Lib.width(r+".map",u.media.width);VMM.Lib.height(t+".doc",u.text_media.height);VMM.Lib.width(t+".doc",u.text_media.width);VMM.Lib.height(r+".doc",u.media.height);VMM.Lib.width(r+".doc",u.media.width);VMM.Lib.width(r+".wikipedia",u.media.width);VMM.Lib.width(r+".twitter",u.media.width);VMM.Lib.width(r+".plain-text-quote",u.media.width);VMM.Lib.width(r+".plain-text",u.media.width);VMM.Lib.css(i,"max-width",u.media.width);VMM.Lib.css(t+".caption","max-width",u.text_media.video.width);VMM.Lib.css(r+".caption","max-width",u.media.video.width);for(e=0;e<h.length;e++){h[e].layout(o);h[e].content_height()>n.slider.height+20?h[e].css("display","block"):h[e].css("display","table")}}function j(){var e=0,t=0;for(t=0;t<h.length;t++){e=t*(n.slider.width+n.spacing);h[t].leftpos(e)}}function F(e){var t="linear",r=0;for(r=0;r<h.length;r++)r==v?h[r].animate(n.duration,t,{opacity:1}):r==v-1||r==v+1?h[r].animate(n.duration,t,{opacity:.1}):h[r].opacity(e)}function I(e,t,r,s,u){var a=n.ease,f=n.duration,l=!1,p=!1,d="",m;VMM.ExternalAPI.youtube.stopPlayers();v=e;m=h[v].leftpos();v==0&&(p=!0);v+1>=h.length&&(l=!0);t!=null&&t!=""&&(a=t);r!=null&&r!=""&&(f=r);if(VMM.Browser.device=="mobile"){VMM.Lib.visible(E.prevBtn,!1);VMM.Lib.visible(E.nextBtn,!1)}else{if(p)VMM.Lib.visible(E.prevBtn,!1);else{VMM.Lib.visible(E.prevBtn,!0);d=VMM.Util.unlinkify(c[v-1].title);if(n.type=="timeline")if(typeof c[v-1].date=="undefined"){VMM.attachElement(E.prevDate,d);VMM.attachElement(E.prevTitle,"")}else{VMM.attachElement(E.prevDate,VMM.Date.prettyDate(c[v-1].startdate,!1,c[v-1].precisiondate));VMM.attachElement(E.prevTitle,d)}else VMM.attachElement(E.prevTitle,d)}if(l)VMM.Lib.visible(E.nextBtn,!1);else{VMM.Lib.visible(E.nextBtn,!0);d=VMM.Util.unlinkify(c[v+1].title);if(n.type=="timeline")if(typeof c[v+1].date=="undefined"){VMM.attachElement(E.nextDate,d);VMM.attachElement(E.nextTitle,"")}else{VMM.attachElement(E.nextDate,VMM.Date.prettyDate(c[v+1].startdate,!1,c[v+1].precisiondate));VMM.attachElement(E.nextTitle,d)}else VMM.attachElement(E.nextTitle,d)}}if(s)VMM.Lib.css(o,"left",-(m-n.slider.content.padding));else{VMM.Lib.stop(o);VMM.Lib.animate(o,f,a,{left:-(m-n.slider.content.padding)})}u&&VMM.fireEvent(w,"LOADED");if(h[v].height()>n.slider_height)VMM.Lib.css(".slider","overflow-y","scroll");else{VMM.Lib.css(w,"overflow-y","hidden");var g=0;try{g=VMM.Lib.prop(w,"scrollHeight");VMM.Lib.animate(w,f,a,{scrollTop:g-VMM.Lib.height(w)})}catch(y){g=VMM.Lib.height(w)}}D();VMM.fireEvent(i,"MESSAGE","TEST")}function q(){VMM.Lib.stop(o);VMM.Lib.animate(o,n.duration,"easeOutExpo",{left:-h[v].leftpos()+n.slider.content.padding})}function R(e,t,n){trace("showMessege "+t);VMM.attachElement(f,"<div class='vco-explainer'><div class='vco-explainer-container'><div class='vco-bezel'><div class='vco-gesture-icon'></div><div class='vco-message'><p>"+t+"</p></div></div></div></div>")}function U(){VMM.Lib.animate(f,n.duration,n.ease,{opacity:0},z)}function z(){VMM.Lib.detach(f)}function W(){var e="<div class='icon'>&nbsp;</div>";E.nextBtn=VMM.appendAndGetElement(i,"<div>","nav-next");E.prevBtn=VMM.appendAndGetElement(i,"<div>","nav-previous");E.nextBtnContainer=VMM.appendAndGetElement(E.nextBtn,"<div>","nav-container",e);E.prevBtnContainer=VMM.appendAndGetElement(E.prevBtn,"<div>","nav-container",e);if(n.type=="timeline"){E.nextDate=VMM.appendAndGetElement(E.nextBtnContainer,"<div>","date","");E.prevDate=VMM.appendAndGetElement(E.prevBtnContainer,"<div>","date","")}E.nextTitle=VMM.appendAndGetElement(E.nextBtnContainer,"<div>","title","");E.prevTitle=VMM.appendAndGetElement(E.prevBtnContainer,"<div>","title","");VMM.bindEvent(".nav-next",N);VMM.bindEvent(".nav-previous",C);VMM.bindEvent(window,k,"keydown")}function X(){var e=3e3;VMM.attachElement(w,"");i=VMM.getElement(w);s=VMM.appendAndGetElement(i,"<div>","slider-container-mask");o=VMM.appendAndGetElement(s,"<div>","slider-container");u=VMM.appendAndGetElement(o,"<div>","slider-item-container");W();_(c);if(VMM.Browser.device=="tablet"||VMM.Browser.device=="mobile"){n.duration=500;e=1e3;a=new VMM.DragSlider;a.createPanel(i,o,"",n.touch,!0);VMM.bindEvent(a,T,"DRAGUPDATE");f=VMM.appendAndGetElement(s,"<div>","vco-feedback","");R(null,"Swipe to Navigate");VMM.Lib.height(f,n.slider.height);VMM.bindEvent(f,A);VMM.bindEvent(f,A,"touchend")}x(!1,!0);VMM.Lib.visible(E.prevBtn,!1);I(n.current_slide,"easeOutExpo",e,!0,!0);b=!0}var n,r,i,s,o,u,a,f,l={},c=[],h=[],p=[],d="",v=0,m=960,g={move:!1,x:10,y:0,off:0,dampen:48},y="",b=!1,w=e,E={nextBtn:"",prevBtn:"",nextDate:"",prevDate:"",nextTitle:"",prevTitle:""};typeof t!="undefined"?n=t:n={preload:4,current_slide:0,interval:10,something:0,width:720,height:400,ease:"easeInOutExpo",duration:1e3,timeline:!1,spacing:15,slider:{width:720,height:400,content:{width:720,height:400,padding:120,padding_default:120},nav:{width:100,height:200}}};this.ver="0.6";n.slider.width=n.width;n.slider.height=n.height;this.init=function(e){h=[];p=[];typeof e!="undefined"?this.setData(e):trace("WAITING ON DATA")};this.width=function(e){if(e==null||e=="")return n.slider.width;n.slider.width=e;x()};this.height=function(e){if(e==null||e=="")return n.slider.height;n.slider.height=e;x()};this.setData=function(e){if(typeof e!="undefined"){c=e;X()}else trace("NO DATA")};this.getData=function(){return c};this.setConfig=function(e){typeof e!="undefined"?n=e:trace("NO CONFIG DATA")};this.getConfig=function(){return n};this.setSize=function(e,t){e!=null&&(n.slider.width=e);t!=null&&(n.slider.height=t);b&&x()};this.active=function(){return b};this.getCurrentNumber=function(){return v};this.setSlide=function(e){I(e)}});typeof VMM.Slider!="undefined"&&(VMM.Slider.Slide=function(e,t){var n,r,i,s,o,u,a=e,f={},o="",l="",c=!1,h=!1,p=!1,d=!0,v=!1,m="slide_",g=0,y={pushque:"",render:"",relayout:"",remove:"",skinny:!1},b={pushque:500,render:100,relayout:100,remove:3e4};m+=a.uniqueid;this.enqueue=d;this.id=m;o=VMM.appendAndGetElement(t,"<div>","slider-item");if(typeof a.classname!="undefined"){trace("HAS CLASSNAME");VMM.Lib.addClass(o,a.classname)}else{trace("NO CLASSNAME");trace(a)}u={slide:"",text:"",media:"",media_element:"",layout:"content-container layout",has:{headline:!1,text:!1,media:!1}};this.show=function(e){d=!1;y.skinny=e;v=!1;clearTimeout(y.remove);if(!c)if(h){clearTimeout(y.relayout);y.relayout=setTimeout(S,b.relayout)}else w(e)};this.hide=function(){if(c&&!v){v=!0;clearTimeout(y.remove);y.remove=setTimeout(E,b.remove)}};this.clearTimers=function(){clearTimeout(y.relayout);clearTimeout(y.pushque);clearTimeout(y.render)};this.layout=function(e){c&&h&&x(e)};this.elem=function(){return o};this.position=function(){return VMM.Lib.position(o)};this.leftpos=function(e){if(typeof e=="undefined")return VMM.Lib.position(o).left;VMM.Lib.css(o,"left",e)};this.animate=function(e,t,n){VMM.Lib.animate(o,e,t,n)};this.css=function(e,t){VMM.Lib.css(o,e,t)};this.opacity=function(e){VMM.Lib.css(o,"opacity",e)};this.width=function(){return VMM.Lib.width(o)};this.height=function(){return VMM.Lib.height(o)};this.content_height=function(){var e=VMM.Lib.find(o,".content")[0];return e!="undefined"&&e!=null?VMM.Lib.height(e):0};var w=function(e){trace("RENDER "+m);c=!0;h=!0;y.skinny=e;T();clearTimeout(y.pushque);clearTimeout(y.render);y.pushque=setTimeout(VMM.ExternalAPI.pushQues,b.pushque)},E=function(){trace("REMOVE SLIDE TIMER FINISHED");c=!1;VMM.Lib.detach(r);VMM.Lib.detach(n)},S=function(){c=!0;x(y.skinny,!0)},x=function(e,t){if(u.has.text){if(e){if(!p||t){VMM.Lib.removeClass(i,"pad-left");VMM.Lib.detach(r);VMM.Lib.detach(n);VMM.Lib.append(i,r);VMM.Lib.append(i,n);p=!0}}else if(p||t){VMM.Lib.addClass(i,"pad-left");VMM.Lib.detach(r);VMM.Lib.detach(n);VMM.Lib.append(i,n);VMM.Lib.append(i,r);p=!1}}else if(t){if(u.has.headline){VMM.Lib.detach(r);VMM.Lib.append(i,r)}VMM.Lib.detach(n);VMM.Lib.append(i,n)}},T=function(){trace("BUILDSLIDE");s=VMM.appendAndGetElement(o,"<div>","content");i=VMM.appendAndGetElement(s,"<div>");if(a.startdate!=null&&a.startdate!=""&&type.of(a.startdate)=="date"&&a.type!="start"){var e=VMM.Date.prettyDate(a.startdate,!1,a.precisiondate),t=VMM.Date.prettyDate(a.enddate,!1,a.precisiondate),f="";a.tag!=null&&a.tag!=""&&(f=VMM.createElement("span",a.tag,"slide-tag"));e!=t?u.text+=VMM.createElement("h2",e+" &mdash; "+t+f,"date"):u.text+=VMM.createElement("h2",e+f,"date")}if(a.headline!=null&&a.headline!=""){u.has.headline=!0;a.type=="start"?u.text+=VMM.createElement("h2",VMM.Util.linkify_with_twitter(a.headline,"_blank"),"start"):u.text+=VMM.createElement("h3",VMM.Util.linkify_with_twitter(a.headline,"_blank"))}if(a.text!=null&&a.text!=""){u.has.text=!0;u.text+=VMM.createElement("p",VMM.Util.linkify_with_twitter(a.text,"_blank"))}if(u.has.text||u.has.headline){u.text=VMM.createElement("div",u.text,"container");r=VMM.appendAndGetElement(i,"<div>","text",VMM.TextElement.create(u.text))}a.needs_slug;if(a.asset!=null&&a.asset!=""&&a.asset.media!=null&&a.asset.media!=""){u.has.media=!0;n=VMM.appendAndGetElement(i,"<div>","media",VMM.MediaElement.create(a.asset,a.uniqueid))}u.has.text&&(u.layout+="-text");u.has.media&&(u.layout+="-media");if(u.has.text)if(y.skinny){VMM.Lib.addClass(i,u.layout);p=!0}else{VMM.Lib.addClass(i,u.layout);VMM.Lib.addClass(i,"pad-left");VMM.Lib.detach(r);VMM.Lib.append(i,r)}else VMM.Lib.addClass(i,u.layout)}});var Aes={};Aes.cipher=function(e,t){var n=4,r=t.length/n-1,i=[[],[],[],[]];for(var s=0;s<4*n;s++)i[s%4][Math.floor(s/4)]=e[s];i=Aes.addRoundKey(i,t,0,n);for(var o=1;o<r;o++){i=Aes.subBytes(i,n);i=Aes.shiftRows(i,n);i=Aes.mixColumns(i,n);i=Aes.addRoundKey(i,t,o,n)}i=Aes.subBytes(i,n);i=Aes.shiftRows(i,n);i=Aes.addRoundKey(i,t,r,n);var u=new Array(4*n);for(var s=0;s<4*n;s++)u[s]=i[s%4][Math.floor(s/4)];return u};Aes.keyExpansion=function(e){var t=4,n=e.length/4,r=n+6,i=new Array(t*(r+1)),s=new Array(4);for(var o=0;o<n;o++){var u=[e[4*o],e[4*o+1],e[4*o+2],e[4*o+3]];i[o]=u}for(var o=n;o<t*(r+1);o++){i[o]=new Array(4);for(var a=0;a<4;a++)s[a]=i[o-1][a];if(o%n==0){s=Aes.subWord(Aes.rotWord(s));for(var a=0;a<4;a++)s[a]^=Aes.rCon[o/n][a]}else n>6&&o%n==4&&(s=Aes.subWord(s));for(var a=0;a<4;a++)i[o][a]=i[o-n][a]^s[a]}return i};Aes.subBytes=function(e,t){for(var n=0;n<4;n++)for(var r=0;r<t;r++)e[n][r]=Aes.sBox[e[n][r]];return e};Aes.shiftRows=function(e,t){var n=new Array(4);for(var r=1;r<4;r++){for(var i=0;i<4;i++)n[i]=e[r][(i+r)%t];for(var i=0;i<4;i++)e[r][i]=n[i]}return e};Aes.mixColumns=function(e,t){for(var n=0;n<4;n++){var r=new Array(4),i=new Array(4);for(var s=0;s<4;s++){r[s]=e[s][n];i[s]=e[s][n]&128?e[s][n]<<1^283:e[s][n]<<1}e[0][n]=i[0]^r[1]^i[1]^r[2]^r[3];e[1][n]=r[0]^i[1]^r[2]^i[2]^r[3];e[2][n]=r[0]^r[1]^i[2]^r[3]^i[3];e[3][n]=r[0]^i[0]^r[1]^r[2]^i[3]}return e};Aes.addRoundKey=function(e,t,n,r){for(var i=0;i<4;i++)for(var s=0;s<r;s++)e[i][s]^=t[n*4+s][i];return e};Aes.subWord=function(e){for(var t=0;t<4;t++)e[t]=Aes.sBox[e[t]];return e};Aes.rotWord=function(e){var t=e[0];for(var n=0;n<3;n++)e[n]=e[n+1];e[3]=t;return e};Aes.sBox=[99,124,119,123,242,107,111,197,48,1,103,43,254,215,171,118,202,130,201,125,250,89,71,240,173,212,162,175,156,164,114,192,183,253,147,38,54,63,247,204,52,165,229,241,113,216,49,21,4,199,35,195,24,150,5,154,7,18,128,226,235,39,178,117,9,131,44,26,27,110,90,160,82,59,214,179,41,227,47,132,83,209,0,237,32,252,177,91,106,203,190,57,74,76,88,207,208,239,170,251,67,77,51,133,69,249,2,127,80,60,159,168,81,163,64,143,146,157,56,245,188,182,218,33,16,255,243,210,205,12,19,236,95,151,68,23,196,167,126,61,100,93,25,115,96,129,79,220,34,42,144,136,70,238,184,20,222,94,11,219,224,50,58,10,73,6,36,92,194,211,172,98,145,149,228,121,231,200,55,109,141,213,78,169,108,86,244,234,101,122,174,8,186,120,37,46,28,166,180,198,232,221,116,31,75,189,139,138,112,62,181,102,72,3,246,14,97,53,87,185,134,193,29,158,225,248,152,17,105,217,142,148,155,30,135,233,206,85,40,223,140,161,137,13,191,230,66,104,65,153,45,15,176,84,187,22];Aes.rCon=[[0,0,0,0],[1,0,0,0],[2,0,0,0],[4,0,0,0],[8,0,0,0],[16,0,0,0],[32,0,0,0],[64,0,0,0],[128,0,0,0],[27,0,0,0],[54,0,0,0]];Aes.Ctr={};Aes.Ctr.encrypt=function(e,t,n){var r=16;if(n!=128&&n!=192&&n!=256)return"";e=Utf8.encode(e);t=Utf8.encode(t);var i=n/8,s=new Array(i);for(var o=0;o<i;o++)s[o]=isNaN(t.charCodeAt(o))?0:t.charCodeAt(o);var u=Aes.cipher(s,Aes.keyExpansion(s));u=u.concat(u.slice(0,i-16));var a=new Array(r),f=(new Date).getTime(),l=f%1e3,c=Math.floor(f/1e3),h=Math.floor(Math.random()*65535);for(var o=0;o<2;o++)a[o]=l>>>o*8&255;for(var o=0;o<2;o++)a[o+2]=h>>>o*8&255;for(var o=0;o<4;o++)a[o+4]=c>>>o*8&255;var p="";for(var o=0;o<8;o++)p+=String.fromCharCode(a[o]);var d=Aes.keyExpansion(u),v=Math.ceil(e.length/r),m=new Array(v);for(var g=0;g<v;g++){for(var y=0;y<4;y++)a[15-y]=g>>>y*8&255;for(var y=0;y<4;y++)a[15-y-4]=g/4294967296>>>y*8;var b=Aes.cipher(a,d),w=g<v-1?r:(e.length-1)%r+1,E=new Array(w);for(var o=0;o<w;o++){E[o]=b[o]^e.charCodeAt(g*r+o);E[o]=String.fromCharCode(E[o])}m[g]=E.join("")}var S=p+m.join("");S=Base64.encode(S);return S};Aes.Ctr.decrypt=function(e,t,n){var r=16;if(n!=128&&n!=192&&n!=256)return"";e=Base64.decode(e);t=Utf8.encode(t);var i=n/8,s=new Array(i);for(var o=0;o<i;o++)s[o]=isNaN(t.charCodeAt(o))?0:t.charCodeAt(o);var u=Aes.cipher(s,Aes.keyExpansion(s));u=u.concat(u.slice(0,i-16));var a=new Array(8);ctrTxt=e.slice(0,8);for(var o=0;o<8;o++)a[o]=ctrTxt.charCodeAt(o);var f=Aes.keyExpansion(u),l=Math.ceil((e.length-8)/r),c=new Array(l);for(var h=0;h<l;h++)c[h]=e.slice(8+h*r,8+h*r+r);e=c;var p=new Array(e.length);for(var h=0;h<l;h++){for(var d=0;d<4;d++)a[15-d]=h>>>d*8&255;for(var d=0;d<4;d++)a[15-d-4]=(h+1)/4294967296-1>>>d*8&255;var v=Aes.cipher(a,f),m=new Array(e[h].length);for(var o=0;o<e[h].length;o++){m[o]=v[o]^e[h].charCodeAt(o);m[o]=String.fromCharCode(m[o])}p[h]=m.join("")}var g=p.join("");g=Utf8.decode(g);return g};var Base64={};Base64.code="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";Base64.encode=function(e,t){t=typeof t=="undefined"?!1:t;var n,r,i,s,o,u,a,f,l=[],c="",h,p,d,v=Base64.code;p=t?e.encodeUTF8():e;h=p.length%3;if(h>0)while(h++<3){c+="=";p+="\0"}for(h=0;h<p.length;h+=3){n=p.charCodeAt(h);r=p.charCodeAt(h+1);i=p.charCodeAt(h+2);s=n<<16|r<<8|i;o=s>>18&63;u=s>>12&63;a=s>>6&63;f=s&63;l[h/3]=v.charAt(o)+v.charAt(u)+v.charAt(a)+v.charAt(f)}d=l.join("");d=d.slice(0,d.length-c.length)+c;return d};Base64.decode=function(e,t){t=typeof t=="undefined"?!1:t;var n,r,i,s,o,u,a,f,l=[],c,h,p=Base64.code;h=t?e.decodeUTF8():e;for(var d=0;d<h.length;d+=4){s=p.indexOf(h.charAt(d));o=p.indexOf(h.charAt(d+1));u=p.indexOf(h.charAt(d+2));a=p.indexOf(h.charAt(d+3));f=s<<18|o<<12|u<<6|a;n=f>>>16&255;r=f>>>8&255;i=f&255;l[d/4]=String.fromCharCode(n,r,i);a==64&&(l[d/4]=String.fromCharCode(n,r));u==64&&(l[d/4]=String.fromCharCode(n))}c=l.join("");return t?c.decodeUTF8():c};var Utf8={};Utf8.encode=function(e){var t=e.replace(/[\u0080-\u07ff]/g,function(e){var t=e.charCodeAt(0);return String.fromCharCode(192|t>>6,128|t&63)});t=t.replace(/[\u0800-\uffff]/g,function(e){var t=e.charCodeAt(0);return String.fromCharCode(224|t>>12,128|t>>6&63,128|t&63)});return t};Utf8.decode=function(e){var t=e.replace(/[\u00e0-\u00ef][\u0080-\u00bf][\u0080-\u00bf]/g,function(e){var t=(e.charCodeAt(0)&15)<<12|(e.charCodeAt(1)&63)<<6|e.charCodeAt(2)&63;return String.fromCharCode(t)});t=t.replace(/[\u00c0-\u00df][\u0080-\u00bf]/g,function(e){var t=(e.charCodeAt(0)&31)<<6|e.charCodeAt(1)&63;return String.fromCharCode(t)});return t};!function(e){"use strict";var t=function(e,t){this.init("tooltip",e,t)};t.prototype={constructor:t,init:function(t,n,r){var i,s;this.type=t;this.$element=e(n);this.options=this.getOptions(r);this.enabled=!0;if(this.options.trigger!="manual"){i=this.options.trigger=="hover"?"mouseenter":"focus";s=this.options.trigger=="hover"?"mouseleave":"blur";this.$element.on(i,this.options.selector,e.proxy(this.enter,this));this.$element.on(s,this.options.selector,e.proxy(this.leave,this))}this.options.selector?this._options=e.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(t){t=e.extend({},e.fn[this.type].defaults,t,this.$element.data());t.delay&&typeof t.delay=="number"&&(t.delay={show:t.delay,hide:t.delay});return t},enter:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);if(!n.options.delay||!n.options.delay.show)n.show();else{n.hoverState="in";setTimeout(function(){n.hoverState=="in"&&n.show()},n.options.delay.show)}},leave:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);if(!n.options.delay||!n.options.delay.hide)n.hide();else{n.hoverState="out";setTimeout(function(){n.hoverState=="out"&&n.hide()},n.options.delay.hide)}},show:function(){var e,t,n,r,i,s,o;if(this.hasContent()&&this.enabled){e=this.tip();this.setContent();this.options.animation&&e.addClass("fade");s=typeof this.options.placement=="function"?this.options.placement.call(this,e[0],this.$element[0]):this.options.placement;t=/in/.test(s);e.remove().css({top:0,left:0,display:"block"}).appendTo(t?this.$element:document.body);n=this.getPosition(t);r=e[0].offsetWidth;i=e[0].offsetHeight;switch(t?s.split(" ")[1]:s){case"bottom":o={top:n.top+n.height,left:n.left+n.width/2-r/2};break;case"top":o={top:n.top-i,left:n.left+n.width/2-r/2};break;case"left":o={top:n.top+n.height/2-i/2,left:n.left-r};break;case"right":o={top:n.top+n.height/2-i/2,left:n.left+n.width}}e.css(o).addClass(s).addClass("in")}},setContent:function(){var e=this.tip();e.find(".timeline-tooltip-inner").html(this.getTitle());e.removeClass("fade in top bottom left right")},hide:function(){function r(){var t=setTimeout(function(){n.off(e.support
-.transition.end).remove()},500);n.one(e.support.transition.end,function(){clearTimeout(t);n.remove()})}var t=this,n=this.tip();n.removeClass("in");e.support.transition&&this.$tip.hasClass("fade")?r():n.remove()},fixTitle:function(){var e=this.$element;(e.attr("title")||typeof e.attr("data-original-title")!="string")&&e.attr("data-original-title",e.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(t){return e.extend({},t?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var e,t=this.$element,n=this.options;e=t.attr("data-original-title")||(typeof n.title=="function"?n.title.call(t[0]):n.title);e=e.toString().replace(/(^\s*|\s*$)/,"");return e},tip:function(){return this.$tip=this.$tip||e(this.options.template)},validate:function(){if(!this.$element[0].parentNode){this.hide();this.$element=null;this.options=null}},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(){this[this.tip().hasClass("in")?"hide":"show"]()}};e.fn.tooltip=function(n){return this.each(function(){var r=e(this),i=r.data("tooltip"),s=typeof n=="object"&&n;i||r.data("tooltip",i=new t(this,s));typeof n=="string"&&i[n]()})};e.fn.tooltip.Constructor=t;e.fn.tooltip.defaults={animation:!0,delay:0,selector:!1,placement:"top",trigger:"hover",title:"",template:'<div class="timeline-tooltip"><div class="timeline-tooltip-arrow"></div><div class="timeline-tooltip-inner"></div></div>'}}(window.jQuery);typeof VMM!="undefined"&&typeof VMM.StoryJS=="undefined"&&(VMM.StoryJS=function(){this.init=function(e){}});if(typeof VMM!="undefined"&&typeof VMM.Timeline=="undefined"){VMM.Timeline=function(e,t,n){function S(e){typeof embed_config=="object"&&(timeline_config=embed_config);if(typeof timeline_config=="object"){trace("HAS TIMELINE CONFIG");m=VMM.Util.mergeConfig(m,timeline_config)}else typeof e=="object"&&(m=VMM.Util.mergeConfig(m,e));if(VMM.Browser.device=="mobile"||VMM.Browser.device=="tablet")m.touch=!0;m.nav.width=m.width;m.nav.height=200;m.feature.width=m.width;m.feature.height=m.height-m.nav.height;m.nav.zoom.adjust=parseInt(m.start_zoom_adjust,10);VMM.Timeline.Config=m;VMM.master_config.Timeline=VMM.Timeline.Config;this.events=m.events;m.gmap_key!=""&&(m.api_keys.google=m.gmap_key);trace("VERSION "+m.version);c=m.version}function x(){r=VMM.getElement(h);VMM.Lib.addClass(r,"vco-timeline");VMM.Lib.addClass(r,"vco-storyjs");i=VMM.appendAndGetElement(r,"<div>","vco-container vco-main");s=VMM.appendAndGetElement(i,"<div>","vco-feature");u=VMM.appendAndGetElement(s,"<div>","vco-slider");a=VMM.appendAndGetElement(i,"<div>","vco-navigation");o=VMM.appendAndGetElement(r,"<div>","vco-feedback","");typeof m.language.right_to_left!="undefined"&&VMM.Lib.addClass(r,"vco-right-to-left");f=new VMM.Slider(u,m);l=new VMM.Timeline.TimeNav(a);g?VMM.Lib.width(r,m.width):m.width=VMM.Lib.width(r);y?VMM.Lib.height(r,m.height):m.height=VMM.Lib.height(r);m.touch?VMM.Lib.addClass(r,"vco-touch"):VMM.Lib.addClass(r,"vco-notouch")}function T(e,t){trace("onDataReady");d=t.timeline;type.of(d.era)!="array"&&(d.era=[]);W()}function N(){U()}function C(){z();f.setSize(m.feature.width,m.feature.height);l.setSize(m.width,m.height);j()&&H()}function k(e){m.loaded.slider=!0;L()}function L(e){m.loaded.percentloaded=m.loaded.percentloaded+25;m.loaded.slider&&m.loaded.timenav&&q()}function A(e){m.loaded.timenav=!0;L()}function O(e){w=!0;m.current_slide=f.getCurrentNumber();D(m.current_slide);l.setMarker(m.current_slide,m.ease,m.duration)}function M(e){w=!0;m.current_slide=l.getCurrentNumber();D(m.current_slide);f.setSlide(m.current_slide)}function _(e){if(e<=v.length-1&&e>=0){m.current_slide=e;f.setSlide(m.current_slide);l.setMarker(m.current_slide,m.ease,m.duration)}}function D(e){m.hash_bookmark&&(window.location.hash="#"+e.toString())}function P(){}function H(){var e="",t=B(window.orientation);VMM.Browser.device=="mobile"?t=="portrait"?e="width=device-width; initial-scale=0.5, maximum-scale=0.5":t=="landscape"?e="width=device-width; initial-scale=0.5, maximum-scale=0.5":e="width=device-width, initial-scale=1, maximum-scale=1.0":VMM.Browser.device=="tablet";document.getElementById("viewport")}function B(e){var t="";e==0||e==180?t="portrait":e==90||e==-90?t="landscape":t="normal";return t}function j(){var e=B(window.orientation);if(e==m.orientation)return!1;m.orientation=e;return!0}function F(e){VMM.getJSON(e,function(e){d=VMM.Timeline.DataObj.getData(e);VMM.fireEvent(global,m.events.data_ready)})}function I(e,t,n){trace("showMessege "+t);n?VMM.attachElement(o,t):VMM.attachElement(o,VMM.MediaElement.loadingmessage(t))}function q(){VMM.Lib.animate(o,m.duration,m.ease*4,{opacity:0},R)}function R(){VMM.Lib.detach(o)}function U(){parseInt(m.start_at_slide)>0&&m.current_slide==0&&(m.current_slide=parseInt(m.start_at_slide));m.start_at_end&&m.current_slide==0&&(m.current_slide=v.length-1);if(b){b=!0;VMM.fireEvent(global,m.events.messege,"Internet Explorer "+VMM.Browser.version+" is not supported by TimelineJS. Please update your browser to version 8 or higher.")}else{R();C();VMM.bindEvent(u,k,"LOADED");VMM.bindEvent(a,A,"LOADED");VMM.bindEvent(u,O,"UPDATE");VMM.bindEvent(a,M,"UPDATE");f.init(v);l.init(v,d.era);VMM.bindEvent(global,C,m.events.resize)}}function z(){trace("UPDATE SIZE");m.width=VMM.Lib.width(r);m.height=VMM.Lib.height(r);m.nav.width=m.width;m.feature.width=m.width;m.feature.height=m.height-m.nav.height-3;VMM.Browser.device=="mobile";m.width<641?VMM.Lib.addClass(r,"vco-skinny"):VMM.Lib.removeClass(r,"vco-skinny")}function W(){v=[];VMM.fireEvent(global,m.events.messege,"Building Dates");z();for(var e=0;e<d.date.length;e++)if(d.date[e].startDate!=null&&d.date[e].startDate!=""){var t={},n=VMM.Date.parse(d.date[e].startDate,!0),r;t.startdate=n.date;t.precisiondate=n.precision;if(!isNaN(t.startdate)){d.date[e].endDate!=null&&d.date[e].endDate!=""?t.enddate=VMM.Date.parse(d.date[e].endDate):t.enddate=t.startdate;t.needs_slug=!1;d.date[e].headline==""&&d.date[e].slug!=null&&d.date[e].slug!=""&&(t.needs_slug=!0);t.title=d.date[e].headline;t.headline=d.date[e].headline;t.type=d.date[e].type;t.date=VMM.Date.prettyDate(t.startdate,!1,t.precisiondate);t.asset=d.date[e].asset;t.fulldate=t.startdate.getTime();t.text=d.date[e].text;t.content="";t.tag=d.date[e].tag;t.slug=d.date[e].slug;t.uniqueid=VMM.Util.unique_ID(7);t.classname=d.date[e].classname;v.push(t)}}d.type!="storify"&&v.sort(function(e,t){return e.fulldate-t.fulldate});if(d.headline!=null&&d.headline!=""&&d.text!=null&&d.text!=""){var i,n,t={},s=0,o;if(typeof d.startDate!="undefined"){n=VMM.Date.parse(d.startDate,!0);i=n.date}else i=!1;trace("HAS STARTPAGE");trace(i);if(i&&i<v[0].startdate)t.startdate=new Date(i);else{o=v[0].startdate;t.startdate=new Date(v[0].startdate);o.getMonth()===0&&o.getDate()==1&&o.getHours()===0&&o.getMinutes()===0?t.startdate.setFullYear(o.getFullYear()-1):o.getDate()<=1&&o.getHours()===0&&o.getMinutes()===0?t.startdate.setMonth(o.getMonth()-1):o.getHours()===0&&o.getMinutes()===0?t.startdate.setDate(o.getDate()-1):o.getMinutes()===0?t.startdate.setHours(o.getHours()-1):t.startdate.setMinutes(o.getMinutes()-1)}t.uniqueid=VMM.Util.unique_ID(7);t.enddate=t.startdate;t.precisiondate=n.precision;t.title=d.headline;t.headline=d.headline;t.text=d.text;t.type="start";t.date=VMM.Date.prettyDate(d.startDate,!1,t.precisiondate);t.asset=d.asset;t.slug=!1;t.needs_slug=!1;t.fulldate=t.startdate.getTime();m.embed&&VMM.fireEvent(global,m.events.headline,t.headline);v.unshift(t)}d.type!="storify"&&v.sort(function(e,t){return e.fulldate-t.fulldate});N()}var r,i,s,o,u,a,f,l,c="2.x",h="#timelinejs",p={},d={},v=[],m={},g=!1,y=!1,b=!1,w=!1;type.of(e)=="string"?e.match("#")?h=e:h="#"+e:h="#timelinejs";m={embed:!1,events:{data_ready:"DATAREADY",messege:"MESSEGE",headline:"HEADLINE",slide_change:"SLIDE_CHANGE",resize:"resize"},id:h,source:"nothing",type:"timeline",touch:!1,orientation:"normal",maptype:"toner",version:"2.x",preload:4,current_slide:0,hash_bookmark:!1,start_at_end:!1,start_at_slide:0,start_zoom_adjust:0,start_page:!1,api_keys:{google:"",flickr:"",twitter:""},interval:10,something:0,width:960,height:540,spacing:15,loaded:{slider:!1,timenav:!1,percentloaded:0},nav:{start_page:!1,interval_width:200,density:4,minor_width:0,minor_left:0,constraint:{left:0,right:0,right_min:0,right_max:0},zoom:{adjust:0},multiplier:{current:6,min:.1,max:50},rows:[1,1,1],width:960,height:200,marker:{width:150,height:50}},feature:{width:960,height:540},slider:{width:720,height:400,content:{width:720,height:400,padding:130,padding_default:130},nav:{width:100,height:200}},ease:"easeInOutExpo",duration:1e3,gmap_key:"",language:VMM.Language};if(t!=null&&t!=""){m.width=t;g=!0}if(n!=null&&n!=""){m.height=n;y=!0}if(window.location.hash){var E=window.location.hash.substring(1);isNaN(E)||(m.current_slide=parseInt(E))}window.onhashchange=function(){var e=window.location.hash.substring(1);m.hash_bookmark?w?_(parseInt(e)):w=!1:_(parseInt(e))};this.init=function(e,t){trace("INIT");H();S(e);x();type.of(t)=="string"&&(m.source=t);VMM.Date.setLanguage(m.language);VMM.master_config.language=m.language;VMM.ExternalAPI.setKeys(m.api_keys);VMM.ExternalAPI.googlemaps.setMapType(m.maptype);VMM.bindEvent(global,T,m.events.data_ready);VMM.bindEvent(global,I,m.events.messege);VMM.fireEvent(global,m.events.messege,m.language.messages.loading_timeline);(VMM.Browser.browser=="Explorer"||VMM.Browser.browser=="MSIE")&&parseInt(VMM.Browser.version,10)<=7&&(b=!0);type.of(m.source)=="string"||type.of(m.source)=="object"?VMM.Timeline.DataObj.getData(m.source):VMM.fireEvent(global,m.events.messege,"No data source provided")};this.iframeLoaded=function(){trace("iframeLoaded")};this.reload=function(e){trace("Load new timeline data"+e);VMM.fireEvent(global,m.events.messege,m.language.messages.loading_timeline);d={};VMM.Timeline.DataObj.getData(e);m.current_slide=0;f.setSlide(0);l.setMarker(0,m.ease,m.duration)}};VMM.Timeline.Config={}}typeof VMM.Timeline!="undefined"&&typeof VMM.Timeline.TimeNav=="undefined"&&(VMM.Timeline.TimeNav=function(e,t,n){function U(){trace("onConfigSet")}function z(e){b.nav.constraint.left=b.width/2;b.nav.constraint.right=b.nav.constraint.right_min-b.width/2;y.updateConstraint(b.nav.constraint);VMM.Lib.css(h,"left",Math.round(b.width/2)+2);VMM.Lib.css(p,"left",Math.round(b.width/2)-8);Y(b.current_slide,b.ease,b.duration,!0,e)}function W(){VMM.fireEvent(x,"UPDATE")}function X(){y.cancelSlide();if(b.nav.multiplier.current>b.nav.multiplier.min){b.nav.multiplier.current<=1?b.nav.multiplier.current=b.nav.multiplier.current-.25:b.nav.multiplier.current>5?b.nav.multiplier.current>16?b.nav.multiplier.current=Math.round(b.nav.multiplier.current-10):b.nav.multiplier.current=Math.round(b.nav.multiplier.current-4):b.nav.multiplier.current=Math.round(b.nav.multiplier.current-1);b.nav.multiplier.current<=0&&(b.nav.multiplier.current=b.nav.multiplier.min);K()}}function V(){y.cancelSlide();if(b.nav.multiplier.current<b.nav.multiplier.max){b.nav.multiplier.current>4?b.nav.multiplier.current>16?b.nav.multiplier.current=Math.round(b.nav.multiplier.current+10):b.nav.multiplier.current=Math.round(b.nav.multiplier.current+4):b.nav.multiplier.current=Math.round(b.nav.multiplier.current+1);b.nav.multiplier.current>=b.nav.multiplier.max&&(b.nav.multiplier.current=b.nav.multiplier.max);K()}}function $(e){y.cancelSlide();Y(0);W()}function J(e){var t=0,n=0;e||(e=window.event);e.originalEvent&&(e=e.originalEvent);if(typeof e.wheelDeltaX!="undefined"){t=e.wheelDeltaY/6;Math.abs(e.wheelDeltaX)>Math.abs(e.wheelDeltaY)?t=e.wheelDeltaX/6:t=0}if(t){e.preventDefault&&e.preventDefault();e.returnValue=!1}n=VMM.Lib.position(r).left+t;n>b.nav.constraint.left?n=b.width/2:n<b.nav.constraint.right&&(n=b.nav.constraint.right);VMM.Lib.css(r,"left",n)}function K(){trace("config.nav.multiplier "+b.nav.multiplier.current);ut(!0);at(!0);ft(a,k,!0,!0);ft(f,L,!0);b.nav.constraint.left=b.width/2;b.nav.constraint.right=b.nav.constraint.right_min-b.width/2;y.updateConstraint(b.nav.constraint)}function Q(e){y.cancelSlide();Y(e.data.number);W()}function G(e){VMM.Lib.toggleClass(e.data.elem,"zFront")}function Y(e,t,n,i,s){trace("GO TO MARKER");var o=b.ease,u=b.duration,a=!1,f=!1;O=e;H.left=b.width/2-C[O].pos_left;H.visible.left=Math.abs(H.left)-100;H.visible.right=Math.abs(H.left)+b.width+100;O==0&&(f=!0);O+1==C.length&&(a=!0);t!=null&&t!=""&&(o=t);n!=null&&n!=""&&(u=n);for(var l=0;l<C.length;l++)VMM.Lib.removeClass(C[l].marker,"active");if(b.start_page&&C[0].type=="start"){VMM.Lib.visible(C[0].marker,!1);VMM.Lib.addClass(C[0].marker,"start")}VMM.Lib.addClass(C[O].marker,"active");VMM.Lib.stop(r);VMM.Lib.animate(r,u,o,{left:H.left})}function Z(e,t){VMM.Lib.animate(r,t.time/2,b.ease,{left:t.left})}function et(){var e=0,t=0,n=0,r=[],i=0;for(i=0;i<C.length;i++)if(T[i].type!="start"){var s=ot(F,C[i].relative_pos),e=t;t=s.begin;n=t-e;r.push(n)}return VMM.Util.average(r).mean}function tt(){var e=0,t=0,n="",r=0,i=[],s=!0,o=0;for(o=0;o<T.length;o++)if(T[o].type=="start")trace("DATA DATE IS START");else{n=T[o].startdate;e=t;t=n;r=t-e;i.push(r)}return VMM.Util.average(i)}function nt(){var e=b.nav.multiplier.current,t=0;for(t=0;t<e;t++)et()<75&&b.nav.multiplier.current>1&&(b.nav.multiplier.current=b.nav.multiplier.current-1)}function rt(){var e=it(T[0].startdate),t=it(T[T.length-1].enddate);R.eon.type="eon";R.eon.first=e.eons;R.eon.base=Math.floor(e.eons);R.eon.last=t.eons;R.eon.number=S.eons;R.eon.multiplier=B.eons;R.eon.minor=B.eons;R.era.type="era";R.era.first=e.eras;R.era.base=Math.floor(e.eras);R.era.last=t.eras;R.era.number=S.eras;R.era.multiplier=B.eras;R.era.minor=B.eras;R.epoch.type="epoch";R.epoch.first=e.epochs;R.epoch.base=Math.floor(e.epochs);R.epoch.last=t.epochs;R.epoch.number=S.epochs;R.epoch.multiplier=B.epochs;R.epoch.minor=B.epochs;R.age.type="age";R.age.first=e.ages;R.age.base=Math.floor(e.ages);R.age.last=t.ages;R.age.number=S.ages;R.age.multiplier=B.ages;R.age.minor=B.ages;R.millenium.type="millenium";R.millenium.first=e.milleniums;R.millenium.base=Math.floor(e.milleniums);R.millenium.last=t.milleniums;R.millenium.number=S.milleniums;R.millenium.multiplier=B.millenium;R.millenium.minor=B.millenium;R.century.type="century";R.century.first=e.centuries;R.century.base=Math.floor(e.centuries);R.century.last=t.centuries;R.century.number=S.centuries;R.century.multiplier=B.century;R.century.minor=B.century;R.decade.type="decade";R.decade.first=e.decades;R.decade.base=Math.floor(e.decades);R.decade.last=t.decades;R.decade.number=S.decades;R.decade.multiplier=B.decade;R.decade.minor=B.decade;R.year.type="year";R.year.first=e.years;R.year.base=Math.floor(e.years);R.year.last=t.years;R.year.number=S.years;R.year.multiplier=1;R.year.minor=B.month;R.month.type="month";R.month.first=e.months;R.month.base=Math.floor(e.months);R.month.last=t.months;R.month.number=S.months;R.month.multiplier=1;R.month.minor=Math.round(B.week);R.week.type="week";R.week.first=e.weeks;R.week.base=Math.floor(e.weeks);R.week.last=t.weeks;R.week.number=S.weeks;R.week.multiplier=1;R.week.minor=7;R.day.type="day";R.day.first=e.days;R.day.base=Math.floor(e.days);R.day.last=t.days;R.day.number=S.days;R.day.multiplier=1;R.day.minor=24;R.hour.type="hour";R.hour.first=e.hours;R.hour.base=Math.floor(e.hours);R.hour.last=t.hours;R.hour.number=S.hours;R.hour.multiplier=1;R.hour.minor=60;R.minute.type="minute";R.minute.first=e.minutes;R.minute.base=Math.floor(e.minutes);R.minute.last=t.minutes;R.minute.number=S.minutes;R.minute.multiplier=1;R.minute.minor=60;R.second.type="decade";R.second.first=e.seconds;R.second.base=Math.floor(e.seconds);R.second.last=t.seconds;R.second.number=S.seconds;R.second.multiplier=1;R.second.minor=10}function it(e,t){var n={};n.days=e/j.day;n.weeks=n.days/j.week;n.months=n.days/j.month;n.years=n.months/j.year;n.hours=n.days*j.hour;n.minutes=n.days*j.minute;n.seconds=n.days*j.second;n.decades=n.years/j.decade;n.centuries=n.years/j.century;n.milleniums=n.years/j.millenium;n.ages=n.years/j.age;n.epochs=n.years/j.epoch;n.eras=n.years/j.era;n.eons=n.years/j.eon;return n}function st(e,t,n){var r,i,s=e.type,o={start:"",end:"",type:s};r=it(t);o.start=t.months;s=="eon"?o.start=r.eons:s=="era"?o.start=r.eras:s=="epoch"?o.start=r.epochs:s=="age"?o.start=r.ages:s=="millenium"?o.start=t.milleniums:s=="century"?o.start=r.centuries:s=="decade"?o.start=r.decades:s=="year"?o.start=r.years:s=="month"?o.start=r.months:s=="week"?o.start=r.weeks:s=="day"?o.start=r.days:s=="hour"?o.start=r.hours:s=="minute"&&(o.start=r.minutes);if(type.of(n)=="date"){i=it(n);o.end=n.months;s=="eon"?o.end=i.eons:s=="era"?o.end=i.eras:s=="epoch"?o.end=i.epochs:s=="age"?o.end=i.ages:s=="millenium"?o.end=n.milleniums:s=="century"?o.end=i.centuries:s=="decade"?o.end=i.decades:s=="year"?o.end=i.years:s=="month"?o.end=i.months:s=="week"?o.end=i.weeks:s=="day"?o.end=i.days:s=="hour"?o.end=i.hours:s=="minute"&&(o.end=i.minutes)}else o.end=o.start;return o}function ot(e,t){return{begin:(t.start-F.base)*(b.nav.interval_width/b.nav.multiplier.current),end:(t.end-F.base)*(b.nav.interval_width/b.nav.multiplier.current)}}function ut(e){var t=2,n=0,i=-2,s=0,o=0,u=150,a=6,f=0,l=b.width,c=[],h=6,p={left:H.visible.left-l,right:H.visible.right+l},d=0,v=0;b.nav.minor_width=b.width;VMM.Lib.removeClass(".flag","row1");VMM.Lib.removeClass(".flag","row2");VMM.Lib.removeClass(".flag","row3");for(d=0;d<C.length;d++){var m,g=C[d],y=ot(F,C[d].relative_pos),w=0,E=!1,S={id:d,pos:0,row:0},x=0;y.begin=Math.round(y.begin+i);y.end=Math.round(y.end+i);m=Math.round(y.end-y.begin);g.pos_left=y.begin;if(O==d){H.left=b.width/2-y;H.visible.left=Math.abs(H.left);H.visible.right=Math.abs(H.left)+b.width;p.left=H.visible.left-l;p.right=H.visible.right+l}Math.abs(y.begin)>=p.left&&Math.abs(y.begin)<=p.right&&(E=!0);if(e){VMM.Lib.stop(g.marker);VMM.Lib.animate(g.marker,b.duration/2,b.ease,{left:y.begin})}else{VMM.Lib.stop(g.marker);VMM.Lib.css(g.marker,"left",y.begin)}d==O&&(f=y.begin);if(m>5){VMM.Lib.css(g.lineevent,"height",a);VMM.Lib.css(g.lineevent,"top",u);e?VMM.Lib.animate(g.lineevent,b.duration/2,b.ease,{width:m}):VMM.Lib.css(g.lineevent,"width",m)}if(A.length>0){for(v=0;v<A.length;v++)if(v<b.nav.rows.current.length&&g.tag==A[v]){t=v;if(v==b.nav.rows.current.length-1){trace("ON LAST ROW");VMM.Lib.addClass(g.flag,"flag-small-last")}}w=b.nav.rows.current[t]}else{if(y.begin-n.begin<b.nav.marker.width+b.spacing)if(t<b.nav.rows.current.length-1)t++;else{t=0;s++}else{s=1;t=1}w=b.nav.rows.current[t]}n=y;S.pos=y;S.row=t;c.push(S);c.length>h&&c.remove(0);if(e){VMM.Lib.stop(g.flag);VMM.Lib.animate(g.flag,b.duration,b.ease,{top:w})}else{VMM.Lib.stop(g.flag);VMM.Lib.css(g.flag,"top",w)}b.start_page&&C[d].type=="start"&&VMM.Lib.visible(g.marker,!1);y>b.nav.minor_width&&(b.nav.minor_width=y);y<b.nav.minor_left&&(b.nav.minor_left=y)}if(e){VMM.Lib.stop(r);VMM.Lib.animate(r,b.duration/2,b.ease,{left:b.width/2-f})}}function at(e){var t=0,n=0;for(t=0;t<N.length;t++){var r=N[t],i=ot(F,r.relative_pos),s=0,o=0,u=b.nav.marker.height*b.nav.rows.full.length,a=i.end-i.begin;if(r.tag!=""){u=b.nav.marker.height*b.nav.rows.full.length/b.nav.rows.current.length;for(n=0;n<A.length;n++)n<b.nav.rows.current.length&&r.tag==A[n]&&(o=n);s=b.nav.rows.current[o]}else s=-1;if(e){VMM.Lib.stop(r.content);VMM.Lib.stop(r.text_content);VMM.Lib.animate(r.content,b.duration/2,b.ease,{top:s,left:i.begin,width:a,height:u});VMM.Lib.animate(r.text_content,b.duration/2,b.ease,{left:i.begin})}else{VMM.Lib.stop(r.content);VMM.Lib.stop(r.text_content);VMM.Lib.css(r.content,"left",i.begin);VMM.Lib.css(r.content,"width",a);VMM.Lib.css(r.content,"height",u);VMM.Lib.css(r.content,"top",s);VMM.Lib.css(r.text_content,"left",i.begin)}}}function ft(e,t,n,r){var s=0,o=0,u=b.width,a={left:H.visible.left-u,right:H.visible.right+u};not_too_many=!0,i=0;b.nav.minor_left=0;if(t.length>100){not_too_many=!1;trace("TOO MANY "+t.length)}for(i=0;i<t.length;i++){var f=t[i].element,l=t[i].date,c=t[i].visible,h=ot(F,t[i].relative_pos),p=h.begin,v=t[i].animation,m=!0,g=!1,y=50;v.pos=p;v.animate=!1;Math.abs(p)>=a.left&&Math.abs(p)<=a.right&&(g=!0);b.nav.multiplier.current>16&&r?m=!1:p-s<65&&(p-s<35?i%4==0?p==0&&(m=!1):m=!1:VMM.Util.isEven(i)||(m=!1));if(m){if(t[i].is_detached){VMM.Lib.append(e,f);t[i].is_detached=!1}}else{t[i].is_detached=!0;VMM.Lib.detach(f)}if(c)if(!m){v.opacity="0";n&&not_too_many&&(v.animate=!0);t[i].interval_visible=!1}else{v.opacity="100";n&&g&&(v.animate=!0)}else{v.opacity="100";if(m){n&&not_too_many?v.animate=!0:n&&g&&(v.animate=!0);t[i].interval_visible=!0}else n&&not_too_many&&(v.animate=!0)}s=p;p>b.nav.minor_width&&(b.nav.minor_width=p);p<b.nav.minor_left&&(b.nav.minor_left=p);if(v.animate)VMM.Lib.animate(f,b.duration/2,b.ease,{opacity:v.opacity,left:v.pos});else{VMM.Lib.css(f,"opacity",v.opacity);VMM.Lib.css(f,"left",p)}}b.nav.constraint.right_min=-b.nav.minor_width+b.width;b.nav.constraint.right=b.nav.constraint.right_min+b.width/2;VMM.Lib.css(d,"left",b.nav.minor_left-b.width/2);VMM.Lib.width(d,b.nav.minor_width+b.width+Math.abs(b.nav.minor_left))}function lt(e,t,n){var r=0,i=!0,s=0,o=0,u,a,f,l=Math.ceil(e.number)+2,c={flag:!1,offset:0},h=0;VMM.attachElement(n,"");e.date=new Date(T[0].startdate.getFullYear(),0,1,0,0,0);u=e.date.getTimezoneOffset();for(h=0;h<l;h++){trace(e.type);var p=!1,v={element:VMM.appendAndGetElement(n,"<div>",e.classname),date:new Date(T[0].startdate.getFullYear(),0,1,0,0,0),visible:!1,date_string:"",type:e.interval_type,relative_pos:0,is_detached:!1,animation:{animate:!1,pos:"",opacity:"100"}};if(e.type=="eon"){i&&(a=Math.floor(T[0].startdate.getFullYear()/5e8)*5e8);v.date.setFullYear(a+r*5e8);p=!0}else if(e.type=="era"){i&&(a=Math.floor(T[0].startdate.getFullYear()/1e8)*1e8);v.date.setFullYear(a+r*1e8);p=!0}else if(e.type=="epoch"){i&&(a=Math.floor(T[0].startdate.getFullYear()/1e7)*1e7);v.date.setFullYear(a+r*1e7);p=!0}else if(e.type=="age"){i&&(a=Math.floor(T[0].startdate.getFullYear()/1e6)*1e6);v.date.setFullYear(a+r*1e6);p=!0}else if(e.type=="millenium"){i&&(a=Math.floor(T[0].startdate.getFullYear()/1e3)*1e3);v.date.setFullYear(a+r*1e3);p=!0}else if(e.type=="century"){i&&(a=Math.floor(T[0].startdate.getFullYear()/100)*100);v.date.setFullYear(a+r*100);p=!0}else if(e.type=="decade"){i&&(a=Math.floor(T[0].startdate.getFullYear()/10)*10);v.date.setFullYear(a+r*10);p=!0}else if(e.type=="year"){i&&(a=T[0].startdate.getFullYear());v.date.setFullYear(a+r);p=!0}else if(e.type=="month"){i&&(a=T[0].startdate.getMonth());v.date.setMonth(a+r)}else if(e.type=="week"){i&&(a=T[0].startdate.getMonth());v.date.setMonth(T[0].startdate.getMonth());v.date.setDate(a+r*7)}else if(e.type=="day"){i&&(a=T[0].startdate.getDate());v.date.setMonth(T[0].startdate.getMonth());v.date.setDate(a+r)}else if(e.type=="hour"){i&&(a=T[0].startdate.getHours());v.date.setMonth(T[0].startdate.getMonth());v.date.setDate(T[0].startdate.getDate());v.date.setHours(a+r)}else if(e.type=="minute"){i&&(a=T[0].startdate.getMinutes());v.date.setMonth(T[0].startdate.getMonth());v.date.setDate(T[0].startdate.getDate());v.date.setHours(T[0].startdate.getHours());v.date.setMinutes(a+r)}else if(e.type=="second"){i&&(a=T[0].startdate.getSeconds());v.date.setMonth(T[0].startdate.getMonth());v.date.setDate(T[0].startdate.getDate());v.date.setHours(T[0].startdate.getHours());v.date.setMinutes(T[0].startdate.getMinutes());v.date.setSeconds(a+r)}else if(e.type=="millisecond"){i&&(a=T[0].startdate.getMilliseconds());v.date.setMonth(T[0].startdate.getMonth());v.date.setDate(T[0].startdate.getDate());v.date.setHours(T[0].startdate.getHours());v.date.setMinutes(T[0].startdate.getMinutes());v.date.setSeconds(T[0].startdate.getSeconds());v.date.setMilliseconds(a+r)}if(VMM.Browser.browser=="Firefox")if(v.date.getFullYear()=="1970"&&v.date.getTimezoneOffset()!=u){trace("FIREFOX 1970 TIMEZONE OFFSET "+v.date.getTimezoneOffset()+" SHOULD BE "+u);trace(e.type+" "+e.date);c.offset=v.date.getTimezoneOffset()/60;c.flag=!0;v.date.setHours(v.date.getHours()+c.offset)}else if(c.flag){c.flag=!1;v.date.setHours(v.date.getHours()+c.offset);p&&(c.flag=!0)}p?v.date.getFullYear()<0?v.date_string=Math.abs(v.date.getFullYear()).toString()+" B.C.":v.date_string=v.date.getFullYear():v.date_string=VMM.Date.prettyDate(v.date,!0);r+=1;i=!1;v.relative_pos=st(F,v.date);s=v.relative_pos.begin;v.relative_pos.begin>o&&(o=v.relative_pos.begin);VMM.appendElement(v.element,v.date_string);VMM.Lib.css(v.element,"text-indent",-(VMM.Lib.width(v.element)/2));VMM.Lib.css(v.element,"opacity","0");t.push(v)}VMM.Lib.width(d,o);ft(n,t)}function ct(){var e=0,t=0;VMM.attachElement(x,"");r=VMM.appendAndGetElement(x,"<div>","timenav");s=VMM.appendAndGetElement(r,"<div>","content");o=VMM.appendAndGetElement(r,"<div>","time");u=VMM.appendAndGetElement(o,"<div>","time-interval-minor");d=VMM.appendAndGetElement(u,"<div>","minor");f=VMM.appendAndGetElement(o,"<div>","time-interval-major");a=VMM.appendAndGetElement(o,"<div>","time-interval");l=VMM.appendAndGetElement(x,"<div>","timenav-background");h=VMM.appendAndGetElement(l,"<div>","timenav-line");p=VMM.appendAndGetElement(l,"<div>","timenav-indicator");c=VMM.appendAndGetElement(l,"<div>","timenav-interval-background","<div class='top-highlight'></div>");v=VMM.appendAndGetElement(x,"<div>","vco-toolbar");ht();pt();dt();nt();ut(!1);at();ft(a,k,!1,!0);ft(f,L);if(b.start_page){$backhome=VMM.appendAndGetElement(v,"<div>","back-home","<div class='icon'></div>");VMM.bindEvent(".back-home",$,"click");VMM.Lib.attribute($backhome,"title",VMM.master_config.language.messages.return_to_title);VMM.Lib.attribute($backhome,"rel","timeline-tooltip")}y=new VMM.DragSlider;y.createPanel(x,r,b.nav.constraint,b.touch);if(b.touch&&b.start_page){VMM.Lib.addClass(v,"touch");VMM.Lib.css(v,"top",55);VMM.Lib.css(v,"left",10)}else{b.start_page&&VMM.Lib.css(v,"top",27);m=VMM.appendAndGetElement(v,"<div>","zoom-in","<div class='icon'></div>");g=VMM.appendAndGetElement(v,"<div>","zoom-out","<div class='icon'></div>");VMM.bindEvent(m,X,"click");VMM.bindEvent(g,V,"click");VMM.Lib.attribute(m,"title",VMM.master_config.language.messages.expand_timeline);VMM.Lib.attribute(m,"rel","timeline-tooltip");VMM.Lib.attribute(g,"title",VMM.master_config.language.messages.contract_timeline);VMM.Lib.attribute(g,"rel","timeline-tooltip");v.tooltip({selector:"div[rel=timeline-tooltip]",placement:"right"});VMM.bindEvent(x,J,"DOMMouseScroll");VMM.bindEvent(x,J,"mousewheel")}if(b.nav.zoom.adjust!=0)if(b.nav.zoom.adjust<0)for(e=0;e<Math.abs(b.nav.zoom.adjust);e++)V();else for(t=0;t<b.nav.zoom.adjust;t++)X();M=!0;z(!0);VMM.fireEvent(x,"LOADED")}function ht(){var e=0,t=0;S=it(T[T.length-1].enddate-T[0].startdate,!0);trace(S);rt();if(S.centuries>T.length/b.nav.density){F=R.century;I=R.millenium;q=R.decade}else if(S.decades>T.length/b.nav.density){F=R.decade;I=R.century;q=R.year}else if(S.years>T.length/b.nav.density){F=R.year;I=R.decade;q=R.month}else if(S.months>T.length/b.nav.density){F=R.month;I=R.year;q=R.day}else if(S.days>T.length/b.nav.density){F=R.day;I=R.month;q=R.hour}else if(S.hours>T.length/b.nav.density){F=R.hour;I=R.day;q=R.minute}else if(S.minutes>T.length/b.nav.density){F=R.minute;I=R.hour;q=R.second}else if(S.seconds>T.length/b.nav.density){F=R.second;I=R.minute;q=R.second}else{trace("NO IDEA WHAT THE TYPE SHOULD BE");F=R.day;I=R.month;q=R.hour}trace("INTERVAL TYPE: "+F.type);trace("INTERVAL MAJOR TYPE: "+I.type);lt(F,k,a);lt(I,L,f);for(e=0;e<k.length;e++)for(t=0;t<L.length;t++)k[e].date_string==L[t].date_string&&VMM.attachElement(k[e].element,"")}function pt(){var e=2,t=0,n=0,r=0,i=0,o=0;C=[];N=[];for(r=0;r<T.length;r++){var u,a,f,c,h,p,d,v="",m=!1;u=VMM.appendAndGetElement(s,"<div>","marker");a=VMM.appendAndGetElement(u,"<div>","flag");f=VMM.appendAndGetElement(a,"<div>","flag-content");c=VMM.appendAndGetElement(u,"<div>","dot");h=VMM.appendAndGetElement(u,"<div>","line");p=VMM.appendAndGetElement(h,"<div>","event-line");_marker_relative_pos=st(F,T[r].startdate,T[r].enddate);_marker_thumb="";T[r].asset!=null&&T[r].asset!=""?VMM.appendElement(f,VMM.MediaElement.thumbnail(T[r].asset,24,24,T[r].uniqueid)):VMM.appendElement(f,"<div style='margin-right:7px;height:50px;width:2px;float:left;'></div>");if(T[r].title==""||T[r].title==" "){trace("TITLE NOTHING");if(typeof T[r].slug!="undefined"&&T[r].slug!=""){trace("SLUG");v=VMM.Util.untagify(T[r].slug);m=!0}else{var g=VMM.MediaType(T[r].asset.media);if(g.type=="quote"||g.type=="unknown"){v=VMM.Util.untagify(g.id);m=!0}else m=!1}}else if(T[r].title!=""||T[r].title!=" "){trace(T[r].title);v=VMM.Util.untagify(T[r].title);m=!0}else trace("TITLE SLUG NOT FOUND "+T[r].slug);if(m)VMM.appendElement(f,"<h3>"+v+"</h3>");else{VMM.appendElement(f,"<h3>"+v+"</h3>");VMM.appendElement(f,"<h3 id='marker_content_"+T[r].uniqueid+"'>"+v+"</h3>")}VMM.Lib.attr(u,"id",("marker_"+T[r].uniqueid).toString());VMM.bindEvent(a,Q,"",{number:r});VMM.bindEvent(a,G,"mouseenter mouseleave",{number:r,elem:a});d={marker:u,flag:a,lineevent:p,type:"marker",full:!0,relative_pos:_marker_relative_pos,tag:T[r].tag,pos_left:0};if(T[r].type=="start"){trace("BUILD MARKER HAS START PAGE");b.start_page=!0;d.type="start"}T[r].type=="storify"&&(d.type="storify");T[r].tag&&A.push(T[r].tag);C.push(d)}A=VMM.Util.deDupeArray(A);A.length>3?b.nav.rows.current=b.nav.rows.half:b.nav.rows.current=b.nav.rows.full;for(i=0;i<A.length;i++)if(i<b.nav.rows.current.length){var y=VMM.appendAndGetElement(l,"<div>","timenav-tag");VMM.Lib.addClass(y,"timenav-tag-row-"+(i+1));A.length>3?VMM.Lib.addClass(y,"timenav-tag-size-half"):VMM.Lib.addClass(y,"timenav-tag-size-full");VMM.appendElement(y,"<div><h3>"+A[i]+"</h3></div>")}if(A.length>3)for(o=0;o<C.length;o++){VMM.Lib.addClass(C[o].flag,"flag-small");C[o].full=!1}}function dt(){var e=6,t=0,n=0;for(n=0;n<_.length;n++){var r={content:VMM.appendAndGetElement(s,"<div>","era"),text_content:VMM.appendAndGetElement(a,"<div>","era"),startdate:VMM.Date.parse(_[n].startDate),enddate:VMM.Date.parse(_[n].endDate),title:_[n].headline,uniqueid:VMM.Util.unique_ID(6),tag:"",relative_pos:""},i=VMM.Date.prettyDate(r.startdate),o=VMM.Date.prettyDate(r.enddate),u="<div>&nbsp;</div>";typeof _[n].tag!="undefined"&&(r.tag=_[n].tag);r.relative_pos=st(F,r.startdate,r.enddate);VMM.Lib.attr(r.content,"id",r.uniqueid);VMM.Lib.attr(r.text_content,"id",r.uniqueid+"_text");VMM.Lib.addClass(r.content,"era"+(t+1));VMM.Lib.addClass(r.text_content,"era"+(t+1));t<e?t++:t=0;VMM.appendElement(r.content,u);VMM.appendElement(r.text_content,VMM.Util.unlinkify(r.title));N.push(r)}}trace("VMM.Timeline.TimeNav");var r,s,o,u,a,f,l,c,h,p,d,v,m,g,y,b=VMM.Timeline.Config,w,E={},S={},x=e,T=[],N=[],C=[],k=[],L=[],A=[],O=0,M=!1,_,D,P={interval_position:""},H={left:"",visible:{left:"",right:""}},B={day:24,month:12,year:10,hour:60,minute:60,second:1e3,decade:10,century:100,millenium:1e3,age:1e6,epoch:1e7,era:1e8,eon:5e8,week:4.34812141,days_in_month:30.4368499,days_in_week:7,weeks_in_month:4.34812141,weeks_in_year:52.177457,days_in_year:365.242199,hours_in_day:24},j={day:864e5,week:7,month:30.4166666667,year:12,hour:24,minute:1440,second:86400,decade:10,century:100,millenium:1e3,age:1e6,epoch:1e7,era:1e8,eon:5e8},F={type:"year",number:10,first:1970,last:2011,multiplier:100,classname:"_idd",interval_type:"interval"},I={type:"year",number:10,first:1970,last:2011,multiplier:100,classname:"major",interval_type:"interval major"},q={type:"year",number:10,first:1970,last:2011,multiplier:100,classname:"_dd_minor",interval_type:"interval minor"},R={day:{},month:{},year:{},hour:{},minute:{},second:{},decade:{},century:{},millenium:{},week:{},age:{},epoch:{},era:{},eon:{}};w=b.nav.marker.height/2;b.nav.rows={full:[1,w*2,w*4],half:[1,w,w*2,w*3,w*4,w*5],current:[]};t!=null&&t!=""&&(b.nav.width=t);n!=null&&n!=""&&(b.nav.height=n);this.init=function(e,t){trace("VMM.Timeline.TimeNav init");typeof e!="undefined"?this.setData(e,t):trace("WAITING ON DATA")};this.setData=function(e,t){if(typeof e!="undefined"){T={};T=e;_=t;ct()}else trace("NO DATA")};this.setSize=function(e,t){e!=null&&(b.width=e);t!=null&&(b.height=t);M&&z()};this.setMarker=function(e,t,n,r){Y(e,t,n)};this.getCurrentNumber=function(){return O}});typeof VMM.Timeline!="undefined"&&typeof VMM.Timeline.DataObj=="undefined"&&(VMM.Timeline.DataObj={data_obj:{},model_array:[],getData:function(e){VMM.Timeline.DataObj.data_obj={};VMM.fireEvent(global,VMM.Timeline.Config.events.messege,VMM.Timeline.Config.language.messages.loading_timeline);if(type.of(e)=="object"){trace("DATA SOURCE: JSON OBJECT");VMM.Timeline.DataObj.parseJSON(e)}else if(type.of(e)=="string")if(e.match("%23")){trace("DATA SOURCE: TWITTER SEARCH");VMM.Timeline.DataObj.model.tweets.getData("%23medill")}else if(e.match("spreadsheet")){trace("DATA SOURCE: GOOGLE SPREADSHEET"
-);VMM.Timeline.DataObj.model.googlespreadsheet.getData(e)}else if(e.match("storify.com")){trace("DATA SOURCE: STORIFY");VMM.Timeline.DataObj.model.storify.getData(e)}else if(e.match(".jsonp")){trace("DATA SOURCE: JSONP");LoadLib.js(e,VMM.Timeline.DataObj.onJSONPLoaded)}else{trace("DATA SOURCE: JSON");var t="";e.indexOf("?")>-1?t=e+"&callback=onJSONP_Data":t=e+"?callback=onJSONP_Data";VMM.getJSON(t,VMM.Timeline.DataObj.parseJSON)}else if(type.of(e)=="html"){trace("DATA SOURCE: HTML");VMM.Timeline.DataObj.parseHTML(e)}else trace("DATA SOURCE: UNKNOWN")},onJSONPLoaded:function(){trace("JSONP IS LOADED");VMM.fireEvent(global,VMM.Timeline.Config.events.data_ready,storyjs_jsonp_data)},parseHTML:function(e){trace("parseHTML");trace("WARNING: THIS IS STILL ALPHA AND WILL NOT WORK WITH ID's other than #timeline");var t=VMM.Timeline.DataObj.data_template_obj;if(VMM.Lib.find("#timeline section","time")[0]){t.timeline.startDate=VMM.Lib.html(VMM.Lib.find("#timeline section","time")[0]);t.timeline.headline=VMM.Lib.html(VMM.Lib.find("#timeline section","h2"));t.timeline.text=VMM.Lib.html(VMM.Lib.find("#timeline section","article"));var n=!1;if(VMM.Lib.find("#timeline section","figure img").length!=0){n=!0;t.timeline.asset.media=VMM.Lib.attr(VMM.Lib.find("#timeline section","figure img"),"src")}else if(VMM.Lib.find("#timeline section","figure a").length!=0){n=!0;t.timeline.asset.media=VMM.Lib.attr(VMM.Lib.find("#timeline section","figure a"),"href")}if(n){VMM.Lib.find("#timeline section","cite").length!=0&&(t.timeline.asset.credit=VMM.Lib.html(VMM.Lib.find("#timeline section","cite")));VMM.Lib.find(this,"figcaption").length!=0&&(t.timeline.asset.caption=VMM.Lib.html(VMM.Lib.find("#timeline section","figcaption")))}}VMM.Lib.each("#timeline li",function(e,n){var r=!1,i={type:"default",startDate:"",headline:"",text:"",asset:{media:"",credit:"",caption:""},tags:"Optional"};if(VMM.Lib.find(this,"time")!=0){r=!0;i.startDate=VMM.Lib.html(VMM.Lib.find(this,"time")[0]);VMM.Lib.find(this,"time")[1]&&(i.endDate=VMM.Lib.html(VMM.Lib.find(this,"time")[1]));i.headline=VMM.Lib.html(VMM.Lib.find(this,"h3"));i.text=VMM.Lib.html(VMM.Lib.find(this,"article"));var s=!1;if(VMM.Lib.find(this,"figure img").length!=0){s=!0;i.asset.media=VMM.Lib.attr(VMM.Lib.find(this,"figure img"),"src")}else if(VMM.Lib.find(this,"figure a").length!=0){s=!0;i.asset.media=VMM.Lib.attr(VMM.Lib.find(this,"figure a"),"href")}if(s){VMM.Lib.find(this,"cite").length!=0&&(i.asset.credit=VMM.Lib.html(VMM.Lib.find(this,"cite")));VMM.Lib.find(this,"figcaption").length!=0&&(i.asset.caption=VMM.Lib.html(VMM.Lib.find(this,"figcaption")))}trace(i);t.timeline.date.push(i)}});VMM.fireEvent(global,VMM.Timeline.Config.events.data_ready,t)},parseJSON:function(e){trace("parseJSON");if(e.timeline.type=="default"){trace("DATA SOURCE: JSON STANDARD TIMELINE");VMM.fireEvent(global,VMM.Timeline.Config.events.data_ready,e)}else if(e.timeline.type=="twitter"){trace("DATA SOURCE: JSON TWEETS");VMM.Timeline.DataObj.model_Tweets.buildData(e)}else{trace("DATA SOURCE: UNKNOWN JSON");trace(type.of(e.timeline))}},model:{googlespreadsheet:{getData:function(e){function u(){t=VMM.getJSON(i,function(e){clearTimeout(s);VMM.Timeline.DataObj.model.googlespreadsheet.buildData(e)}).error(function(e,t,n){trace("Google Docs ERROR");trace("Google Docs ERROR: "+t+" "+e.responseText)}).success(function(e){clearTimeout(s)})}var t,n,r,i,s,o=0;n=VMM.Util.getUrlVars(e).key;r=VMM.Util.getUrlVars(e).worksheet;typeof r=="undefined"&&(r="od6");i="https://spreadsheets.google.com/feeds/list/"+n+"/"+r+"/public/values?alt=json";s=setTimeout(function(){trace("Google Docs timeout "+i);trace(i);if(o<3){VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Still waiting on Google Docs, trying again "+o);o++;t.abort();u()}else VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Google Docs is not responding")},16e3);u()},buildData:function(e){function r(e){return typeof e!="undefined"?e.$t:""}var t=VMM.Timeline.DataObj.data_template_obj,n=!1;VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Parsing Google Doc Data");if(typeof e.feed.entry!="undefined"){n=!0;for(var i=0;i<e.feed.entry.length;i++){var s=e.feed.entry[i],o="";typeof s.gsx$type!="undefined"?o=s.gsx$type.$t:typeof s.gsx$titleslide!="undefined"&&(o=s.gsx$titleslide.$t);if(o.match("start")||o.match("title")){t.timeline.startDate=r(s.gsx$startdate);t.timeline.headline=r(s.gsx$headline);t.timeline.asset.media=r(s.gsx$media);t.timeline.asset.caption=r(s.gsx$mediacaption);t.timeline.asset.credit=r(s.gsx$mediacredit);t.timeline.text=r(s.gsx$text);t.timeline.type="google spreadsheet"}else if(o.match("era")){var u={startDate:r(s.gsx$startdate),endDate:r(s.gsx$enddate),headline:r(s.gsx$headline),text:r(s.gsx$text),tag:r(s.gsx$tag)};t.timeline.era.push(u)}else{var a={type:"google spreadsheet",startDate:r(s.gsx$startdate),endDate:r(s.gsx$enddate),headline:r(s.gsx$headline),text:r(s.gsx$text),tag:r(s.gsx$tag),asset:{media:r(s.gsx$media),credit:r(s.gsx$mediacredit),caption:r(s.gsx$mediacaption),thumbnail:r(s.gsx$mediathumbnail)}};t.timeline.date.push(a)}}}if(n){VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Finished Parsing Data");VMM.fireEvent(global,VMM.Timeline.Config.events.data_ready,t)}else{VMM.fireEvent(global,VMM.Timeline.Config.events.messege,VMM.Language.messages.loading+" Google Doc Data (cells)");trace("There may be too many entries. Still trying to load data. Now trying to load cells to avoid Googles limitation on cells");VMM.Timeline.DataObj.model.googlespreadsheet.getDataCells(e.feed.link[0].href)}},getDataCells:function(e){function o(){t=VMM.getJSON(r,function(e){clearTimeout(i);VMM.Timeline.DataObj.model.googlespreadsheet.buildDataCells(e)}).error(function(e,t,n){trace("Google Docs ERROR");trace("Google Docs ERROR: "+t+" "+e.responseText)}).success(function(e){clearTimeout(i)})}var t,n,r,i,s=0;n=VMM.Util.getUrlVars(e).key;r="https://spreadsheets.google.com/feeds/cells/"+n+"/od6/public/values?alt=json";i=setTimeout(function(){trace("Google Docs timeout "+r);trace(r);if(s<3){VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Still waiting on Google Docs, trying again "+s);s++;t.abort();o()}else VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Google Docs is not responding")},16e3);o()},buildDataCells:function(e){function a(e){return typeof e!="undefined"?e.$t:""}var t=VMM.Timeline.DataObj.data_template_obj,n=!1,r=["timeline"],i=[],s=0,o=0,u=0;VMM.fireEvent(global,VMM.Timeline.Config.events.messege,VMM.Language.messages.loading_timeline+" Parsing Google Doc Data (cells)");if(typeof e.feed.entry!="undefined"){n=!0;for(o=0;o<e.feed.entry.length;o++){var f=e.feed.entry[o];parseInt(f.gs$cell.row)>s&&(s=parseInt(f.gs$cell.row))}for(var o=0;o<s+1;o++){var l={type:"",startDate:"",endDate:"",headline:"",text:"",tag:"",asset:{media:"",credit:"",caption:"",thumbnail:""}};i.push(l)}for(o=0;o<e.feed.entry.length;o++){var f=e.feed.entry[o],c="",h="",p={content:a(f.gs$cell),col:f.gs$cell.col,row:f.gs$cell.row,name:""};if(p.row==1){p.content=="Start Date"?h="startDate":p.content=="End Date"?h="endDate":p.content=="Headline"?h="headline":p.content=="Text"?h="text":p.content=="Media"?h="media":p.content=="Media Credit"?h="credit":p.content=="Media Caption"?h="caption":p.content=="Media Thumbnail"?h="thumbnail":p.content=="Type"?h="type":p.content=="Tag"&&(h="tag");r.push(h)}else{p.name=r[p.col];i[p.row][p.name]=p.content}}for(o=0;o<i.length;o++){var l=i[o];if(l.type.match("start")||l.type.match("title")){t.timeline.startDate=l.startDate;t.timeline.headline=l.headline;t.timeline.asset.media=l.media;t.timeline.asset.caption=l.caption;t.timeline.asset.credit=l.credit;t.timeline.text=l.text;t.timeline.type="google spreadsheet"}else if(l.type.match("era")){var d={startDate:l.startDate,endDate:l.endDate,headline:l.headline,text:l.text,tag:l.tag};t.timeline.era.push(d)}else{var l={type:"google spreadsheet",startDate:l.startDate,endDate:l.endDate,headline:l.headline,text:l.text,tag:l.tag,asset:{media:l.media,credit:l.credit,caption:l.caption,thumbnail:l.thumbnail}};t.timeline.date.push(l)}}}if(n){VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Finished Parsing Data");VMM.fireEvent(global,VMM.Timeline.Config.events.data_ready,t)}else VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Unable to load Google Doc data source")}},storify:{getData:function(e){var t,n,r;VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Loading Storify...");t=e.split("storify.com/")[1];n="http://api.storify.com/v1/stories/"+t+"?per_page=300&callback=?";r=setTimeout(function(){trace("STORIFY timeout");VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Storify is not responding")},6e3);VMM.getJSON(n,VMM.Timeline.DataObj.model.storify.buildData).error(function(e,t,n){trace("STORIFY error");trace("STORIFY ERROR: "+t+" "+e.responseText)}).success(function(e){clearTimeout(r)})},buildData:function(e){VMM.fireEvent(global,VMM.Timeline.Config.events.messege,"Parsing Data");var t=VMM.Timeline.DataObj.data_template_obj;t.timeline.startDate=new Date(e.content.date.created);t.timeline.headline=e.content.title;trace(e);var n="",r=e.content.author.username,i="";if(typeof e.content.author.name!="undefined"){r=e.content.author.name;i=e.content.author.username+"&nbsp;"}typeof e.content.description!="undefined"&&e.content.description!=null&&(n+=e.content.description);n+="<div class='storify'>";n+="<div class='vcard author'><a class='screen-name url' href='"+e.content.author.permalink+"' target='_blank'>";n+="<span class='avatar'><img src='"+e.content.author.avatar+"' style='max-width: 32px; max-height: 32px;'></span>";n+="<span class='fn'>"+r+"</span>";n+="<span class='nickname'>"+i+"<span class='thumbnail-inline'></span></span>";n+="</a>";n+="</div>";n+="</div>";t.timeline.text=n;t.timeline.asset.media=e.content.thumbnail;t.timeline.type="storify";for(var s=0;s<e.content.elements.length;s++){var o=e.content.elements[s],u=!1,a=new Date(o.posted_at);trace(o.type);var f={type:"storify",startDate:o.posted_at,endDate:o.posted_at,headline:" ",slug:"",text:"",asset:{media:"",credit:"",caption:""}};if(o.type=="image"){if(typeof o.source.name!="undefined")if(o.source.name=="flickr"){f.asset.media="http://flickr.com/photos/"+o.meta.pathalias+"/"+o.meta.id+"/";f.asset.credit="<a href='"+f.asset.media+"'>"+o.attribution.name+"</a>";f.asset.credit+=" on <a href='"+o.source.href+"'>"+o.source.name+"</a>"}else if(o.source.name=="instagram"){f.asset.media=o.permalink;f.asset.credit="<a href='"+o.permalink+"'>"+o.attribution.name+"</a>";f.asset.credit+=" on <a href='"+o.source.href+"'>"+o.source.name+"</a>"}else{f.asset.credit="<a href='"+o.permalink+"'>"+o.attribution.name+"</a>";typeof o.source.href!="undefined"&&(f.asset.credit+=" on <a href='"+o.source.href+"'>"+o.source.name+"</a>");f.asset.media=o.data.image.src}else{f.asset.credit="<a href='"+o.permalink+"'>"+o.attribution.name+"</a>";f.asset.media=o.data.image.src}f.slug=o.attribution.name;if(typeof o.data.image.caption!="undefined"&&o.data.image.caption!="undefined"){f.asset.caption=o.data.image.caption;f.slug=o.data.image.caption}}else if(o.type=="quote"){if(o.permalink.match("twitter")){f.asset.media=o.permalink;f.slug=VMM.Util.untagify(o.data.quote.text)}else if(o.permalink.match("storify")){u=!0;f.asset.media="<blockquote>"+o.data.quote.text.replace(/<\s*\/?\s*b\s*.*?>/g,"")+"</blockquote>"}}else if(o.type=="link"){f.headline=o.data.link.title;f.text=o.data.link.description;o.data.link.thumbnail!="undefined"&&o.data.link.thumbnail!=""?f.asset.media=o.data.link.thumbnail:f.asset.media=o.permalink;f.asset.caption="<a href='"+o.permalink+"' target='_blank'>"+o.data.link.title+"</a>";f.slug=o.data.link.title}else if(o.type=="text"){if(o.permalink.match("storify")){u=!0;var l=e.content.author.username,c="";if(typeof o.attribution.name!="undefined"){r=o.attribution.name;i=o.attribution.username+"&nbsp;"}var h="<div class='storify'>";h+="<blockquote><p>"+o.data.text.replace(/<\s*\/?\s*b\s*.*?>/g,"")+"</p></blockquote>";h+="<div class='vcard author'><a class='screen-name url' href='"+o.attribution.href+"' target='_blank'>";h+="<span class='avatar'><img src='"+o.attribution.thumbnail+"' style='max-width: 32px; max-height: 32px;'></span>";h+="<span class='fn'>"+r+"</span>";h+="<span class='nickname'>"+i+"<span class='thumbnail-inline'></span></span>";h+="</a></div></div>";f.text=h;if(s+1>=e.content.elements.length)f.startDate=e.content.elements[s-1].posted_at;else if(e.content.elements[s+1].type=="text"&&e.content.elements[s+1].permalink.match("storify"))if(s+2>=e.content.elements.length)f.startDate=e.content.elements[s-1].posted_at;else if(e.content.elements[s+2].type=="text"&&e.content.elements[s+2].permalink.match("storify"))if(s+3>=e.content.elements.length)f.startDate=e.content.elements[s-1].posted_at;else if(e.content.elements[s+3].type=="text"&&e.content.elements[s+3].permalink.match("storify"))f.startDate=e.content.elements[s-1].posted_at;else{trace("LEVEL 3");f.startDate=e.content.elements[s+3].posted_at}else{trace("LEVEL 2");f.startDate=e.content.elements[s+2].posted_at}else{trace("LEVEL 1");f.startDate=e.content.elements[s+1].posted_at}f.endDate=f.startDate}}else if(o.type=="video"){f.headline=o.data.video.title;f.asset.caption=o.data.video.description;f.asset.caption=o.source.username;f.asset.media=o.data.video.src}else{trace("NO MATCH ");trace(o)}u&&(f.slug=VMM.Util.untagify(o.data.text));t.timeline.date.push(f)}VMM.fireEvent(global,VMM.Timeline.Config.events.data_ready,t)}},tweets:{type:"twitter",buildData:function(e){VMM.bindEvent(global,VMM.Timeline.DataObj.model.tweets.onTwitterDataReady,"TWEETSLOADED");VMM.ExternalAPI.twitter.getTweets(e.timeline.tweets)},getData:function(e){VMM.bindEvent(global,VMM.Timeline.DataObj.model.tweets.onTwitterDataReady,"TWEETSLOADED");VMM.ExternalAPI.twitter.getTweetSearch(e)},onTwitterDataReady:function(e,t){var n=VMM.Timeline.DataObj.data_template_obj;for(var r=0;r<t.tweetdata.length;r++){var i={type:"tweets",startDate:"",headline:"",text:"",asset:{media:"",credit:"",caption:""},tags:"Optional"};i.startDate=t.tweetdata[r].raw.created_at;type.of(t.tweetdata[r].raw.from_user_name)?i.headline=t.tweetdata[r].raw.from_user_name+" (<a href='https://twitter.com/"+t.tweetdata[r].raw.from_user+"'>"+"@"+t.tweetdata[r].raw.from_user+"</a>)":i.headline=t.tweetdata[r].raw.user.name+" (<a href='https://twitter.com/"+t.tweetdata[r].raw.user.screen_name+"'>"+"@"+t.tweetdata[r].raw.user.screen_name+"</a>)";i.asset.media=t.tweetdata[r].content;n.timeline.date.push(i)}VMM.fireEvent(global,VMM.Timeline.Config.events.data_ready,n)}}},data_template_obj:{timeline:{headline:"",description:"",asset:{media:"",credit:"",caption:""},date:[],era:[]}},date_obj:{startDate:"2012,2,2,11,30",headline:"",text:"",asset:{media:"http://youtu.be/vjVfu8-Wp6s",credit:"",caption:""},tags:"Optional"}});VMM.debug=!1;
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/compiled/js/timeline.js b/public/opac/TimelineJS-2.25/compiled/js/timeline.js
deleted file mode 100644
index 41365f3b7b0330b27a3cffe2094286788c6c8981..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/js/timeline.js
+++ /dev/null
@@ -1,10009 +0,0 @@
-/*!
-	TimelineJS
-	Version 2.17
-	Designed and built by Zach Wise at VéritéCo
-
-	This Source Code Form is subject to the terms of the Mozilla Public
-	License, v. 2.0. If a copy of the MPL was not distributed with this
-	file, You can obtain one at http://mozilla.org/MPL/2.0/.
-	
-*/
-
-/* **********************************************
-     Begin VMM.StoryJS.License.js
-********************************************** */
-
-/*!
-	StoryJS
-	Designed and built by Zach Wise at VéritéCo
-
-	This Source Code Form is subject to the terms of the Mozilla Public
-	License, v. 2.0. If a copy of the MPL was not distributed with this
-	file, You can obtain one at http://mozilla.org/MPL/2.0/.
-*/
-
-/* **********************************************
-     Begin VMM.js
-********************************************** */
-
-/**
-	* VéritéCo JS Core
-	* Designed and built by Zach Wise at VéritéCo zach@verite.co
-
-	* This Source Code Form is subject to the terms of the Mozilla Public
-	* License, v. 2.0. If a copy of the MPL was not distributed with this
-	* file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-*/  
-
-
-/*	Simple JavaScript Inheritance
-	By John Resig http://ejohn.org/
-	MIT Licensed.
-================================================== */
-(function() {
-	var initializing = false,
-	fnTest = /xyz/.test(function() {
-		xyz;
-		}) ? /\b_super\b/: /.*/;
-		// The base Class implementation (does nothing)
-	this.Class = function() {};
-
-    // Create a new Class that inherits from this class
-	Class.extend = function(prop) {
-		var _super = this.prototype;
-
-        // Instantiate a base class (but only create the instance,
-        // don't run the init constructor)
-		initializing = true;
-		var prototype = new this();
-		initializing = false;
-
-        // Copy the properties over onto the new prototype
-		for (var name in prop) {
-            // Check if we're overwriting an existing function
-			prototype[name] = typeof prop[name] == "function" &&
-			typeof _super[name] == "function" && fnTest.test(prop[name]) ?
-			(function(name, fn) {
-				return function() {
-					var tmp = this._super;
-
-					// Add a new ._super() method that is the same method
-					// but on the super-class
-					this._super = _super[name];
-
-					// The method only need to be bound temporarily, so we
-					// remove it when we're done executing
-					var ret = fn.apply(this, arguments);
-					this._super = tmp;
-
-					return ret;
-				};
-			})(name, prop[name]) :
-			prop[name];
-		}
-
-		// The dummy class constructor
-		function Class() {
-			// All construction is actually done in the init method
-			if (!initializing && this.init)
-			this.init.apply(this, arguments);
-		}
-
-		// Populate our constructed prototype object
-		Class.prototype = prototype;
-
-		// Enforce the constructor to be what we expect
-		Class.prototype.constructor = Class;
-
-		// And make this class extendable
-		Class.extend = arguments.callee;
-
-		return Class;
-    };
-})();
-
-/*	Access to the Global Object
-	access the global object without hard-coding the identifier window
-================================================== */
-var global = (function () {
-   return this || (1,eval)('this');
-}());
-
-/* VMM
-================================================== */
-if (typeof VMM == 'undefined') {
-	
-	/* Main Scope Container
-	================================================== */
-	//var VMM = {};
-	var VMM = Class.extend({});
-	
-	/* Debug
-	================================================== */
-	VMM.debug = true;
-	
-	/* Master Config
-	================================================== */
-	
-	VMM.master_config = ({
-		
-		init: function() {
-			return this;
-		},
-		
-		sizes: {
-			api: {
-				width:			0,
-				height:			0
-			}
-		},
-		
-		vp:				"Pellentesque nibh felis, eleifend id, commodo in, interdum vitae, leo",
-		
-		api_keys_master: {
-			flickr:		"RAIvxHY4hE/Elm5cieh4X5ptMyDpj7MYIxziGxi0WGCcy1s+yr7rKQ==",
-			//google:		"jwNGnYw4hE9lmAez4ll0QD+jo6SKBJFknkopLS4FrSAuGfIwyj57AusuR0s8dAo=",
-			google:		"uQKadH1VMlCsp560gN2aOiMz4evWkl1s34yryl3F/9FJOsn+/948CbBUvKLN46U=",
-			twitter:	""
-		},
-		
-		timers: {
-			api:			7000
-		},
-		
-		api:	{
-			pushques:		[]
-			
-		},
-		
-		twitter: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		flickr: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		youtube: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		vimeo: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		vine: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		webthumb: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		googlemaps: {
-			active:			false,
-			map_active:		false,
-			places_active:	false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		googledocs: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		googleplus: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		},
-		
-		wikipedia: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[],
-			tries:			0
-		},
-		
-		soundcloud: {
-			active:			false,
-			array:			[],
-			api_loaded:		false,
-			que:			[]
-		}
-		
-	}).init();
-	
-	//VMM.createElement(tag, value, cName, attrs, styles);
-	VMM.createElement = function(tag, value, cName, attrs, styles) {
-		
-		var ce = "";
-		
-		if (tag != null && tag != "") {
-			
-			// TAG
-			ce += "<" + tag;
-			if (cName != null && cName != "") {
-				ce += " class='" + cName + "'";
-			};
-			
-			if (attrs != null && attrs != "") {
-				ce += " " + attrs;
-			};
-			
-			if (styles != null && styles != "") {
-				ce += " style='" + styles + "'";
-			};
-			
-			ce += ">";
-			
-			if (value != null && value != "") {
-				ce += value;
-			}
-			
-			// CLOSE TAG
-			ce = ce + "</" + tag + ">";
-		}
-		
-		return ce;
-		
-    };
-
-	VMM.createMediaElement = function(media, caption, credit) {
-		
-		var ce = "";
-		
-		var _valid = false;
-		
-		ce += "<div class='media'>";
-		
-		if (media != null && media != "") {
-			
-			valid = true;
-			
-			ce += "<img src='" + media + "'>";
-			
-			// CREDIT
-			if (credit != null && credit != "") {
-				ce += VMM.createElement("div", credit, "credit");
-			}
-			
-			// CAPTION
-			if (caption != null && caption != "") {
-				ce += VMM.createElement("div", caption, "caption");
-			}
-
-		}
-		
-		ce += "</div>";
-		
-		return ce;
-		
-    };
-
-	// Hide URL Bar for iOS and Android by Scott Jehl
-	// https://gist.github.com/1183357
-
-	VMM.hideUrlBar = function () {
-		var win = window,
-			doc = win.document;
-
-		// If there's a hash, or addEventListener is undefined, stop here
-		if( !location.hash || !win.addEventListener ){
-
-			//scroll to 1
-			window.scrollTo( 0, 1 );
-			var scrollTop = 1,
-
-			//reset to 0 on bodyready, if needed
-			bodycheck = setInterval(function(){
-				if( doc.body ){
-					clearInterval( bodycheck );
-					scrollTop = "scrollTop" in doc.body ? doc.body.scrollTop : 1;
-					win.scrollTo( 0, scrollTop === 1 ? 0 : 1 );
-				}	
-			}, 15 );
-
-			win.addEventListener( "load", function(){
-				setTimeout(function(){
-					//reset to hide addr bar at onload
-					win.scrollTo( 0, scrollTop === 1 ? 0 : 1 );
-				}, 0);
-			}, false );
-		}
-	};
-	
-
-}
-
-/* Trace (console.log)
-================================================== */
-function trace( msg ) {
-	if (VMM.debug) {
-		if (window.console) {
-			console.log(msg);
-		} else if ( typeof( jsTrace ) != 'undefined' ) {
-			jsTrace.send( msg );
-		} else {
-			//alert(msg);
-		}
-	}
-}
-
-/*	Array Remove - By John Resig (MIT Licensed)
-	http://ejohn.org/blog/javascript-array-remove/
-================================================== */
-Array.prototype.remove = function(from, to) {
-  var rest = this.slice((to || from) + 1 || this.length);
-  this.length = from < 0 ? this.length + from : from;
-  return this.push.apply(this, rest);
-}
-
-/* Extending Date to include Week
-================================================== */
-Date.prototype.getWeek = function() {
-	var onejan = new Date(this.getFullYear(),0,1);
-	return Math.ceil((((this - onejan) / 86400000) + onejan.getDay()+1)/7);
-}
-
-/* Extending Date to include Day of Year
-================================================== */
-Date.prototype.getDayOfYear = function() {
-	var onejan = new Date(this.getFullYear(),0,1);
-	return Math.ceil((this - onejan) / 86400000);
-}
-
-/* A MORE SPECIFIC TYPEOF();
-//	http://rolandog.com/archives/2007/01/18/typeof-a-more-specific-typeof/
-================================================== */
-// type.of()
-var is={
-	Null:function(a){return a===null;},
-	Undefined:function(a){return a===undefined;},
-	nt:function(a){return(a===null||a===undefined);},
-	Function:function(a){return(typeof(a)==="function")?a.constructor.toString().match(/Function/)!==null:false;},
-	String:function(a){return(typeof(a)==="string")?true:(typeof(a)==="object")?a.constructor.toString().match(/string/i)!==null:false;},
-	Array:function(a){return(typeof(a)==="object")?a.constructor.toString().match(/array/i)!==null||a.length!==undefined:false;},
-	Boolean:function(a){return(typeof(a)==="boolean")?true:(typeof(a)==="object")?a.constructor.toString().match(/boolean/i)!==null:false;},
-	Date:function(a){return(typeof(a)==="date")?true:(typeof(a)==="object")?a.constructor.toString().match(/date/i)!==null:false;},
-	HTML:function(a){return(typeof(a)==="object")?a.constructor.toString().match(/html/i)!==null:false;},
-	Number:function(a){return(typeof(a)==="number")?true:(typeof(a)==="object")?a.constructor.toString().match(/Number/)!==null:false;},
-	Object:function(a){return(typeof(a)==="object")?a.constructor.toString().match(/object/i)!==null:false;},
-	RegExp:function(a){return(typeof(a)==="function")?a.constructor.toString().match(/regexp/i)!==null:false;}
-};
-var type={
-	of:function(a){
-		for(var i in is){
-			if(is[i](a)){
-				return i.toLowerCase();
-			}
-		}
-	}
-};
-
-
-
-
-
-/* **********************************************
-     Begin VMM.Library.js
-********************************************** */
-
-/*	* LIBRARY ABSTRACTION
-================================================== */
-if(typeof VMM != 'undefined') {
-	
-	VMM.smoothScrollTo = function(elem, duration, ease) {
-		if( typeof( jQuery ) != 'undefined' ){
-			var _ease		= "easein",
-				_duration	= 1000;
-		
-			if (duration != null) {
-				if (duration < 1) {
-					_duration = 1;
-				} else {
-					_duration = Math.round(duration);
-				}
-				
-			}
-			
-			if (ease != null && ease != "") {
-				_ease = ease;
-			}
-			
-			if (jQuery(window).scrollTop() != VMM.Lib.offset(elem).top) {
-				VMM.Lib.animate('html,body', _duration, _ease, {scrollTop: VMM.Lib.offset(elem).top})
-			}
-			
-		}
-		
-	};
-	
-	VMM.attachElement = function(element, content) {
-		if( typeof( jQuery ) != 'undefined' ){
-			jQuery(element).html(content);
-		}
-		
-	};
-	
-	VMM.appendElement = function(element, content) {
-		
-		if( typeof( jQuery ) != 'undefined' ){
-			jQuery(element).append(content);
-		}
-		
-	};
-	
-	VMM.getHTML = function(element) {
-		var e;
-		if( typeof( jQuery ) != 'undefined' ){
-			e = jQuery(element).html();
-			return e;
-		}
-		
-	};
-	
-	VMM.getElement = function(element, p) {
-		var e;
-		if( typeof( jQuery ) != 'undefined' ){
-			if (p) {
-				e = jQuery(element).parent().get(0);
-				
-			} else {
-				e = jQuery(element).get(0);
-			}
-			return e;
-		}
-		
-	};
-	
-	VMM.bindEvent = function(element, the_handler, the_event_type, event_data) {
-		var e;
-		var _event_type = "click";
-		var _event_data = {};
-		
-		if (the_event_type != null && the_event_type != "") {
-			_event_type = the_event_type;
-		}
-		
-		if (_event_data != null && _event_data != "") {
-			_event_data = event_data;
-		}
-		
-		if( typeof( jQuery ) != 'undefined' ){
-			jQuery(element).bind(_event_type, _event_data, the_handler);
-			
-			//return e;
-		}
-		
-	};
-	
-	VMM.unbindEvent = function(element, the_handler, the_event_type) {
-		var e;
-		var _event_type = "click";
-		var _event_data = {};
-		
-		if (the_event_type != null && the_event_type != "") {
-			_event_type = the_event_type;
-		}
-		
-		if( typeof( jQuery ) != 'undefined' ){
-			jQuery(element).unbind(_event_type, the_handler);
-			
-			//return e;
-		}
-		
-	};
-	
-	VMM.fireEvent = function(element, the_event_type, the_data) {
-		var e;
-		var _event_type = "click";
-		var _data = [];
-		
-		if (the_event_type != null && the_event_type != "") {
-			_event_type = the_event_type;
-		}
-		if (the_data != null && the_data != "") {
-			_data = the_data;
-		}
-		
-		if( typeof( jQuery ) != 'undefined' ){
-			jQuery(element).trigger(_event_type, _data);
-			
-			//return e;
-		}
-		
-	};
-	
-	VMM.getJSON = function(url, data, callback) {
-		if( typeof( jQuery ) != 'undefined' ){
-			jQuery.ajaxSetup({
-			     timeout: 3000
-			});
-			/* CHECK FOR IE
-			================================================== */
-			if ( VMM.Browser.browser == "Explorer" && parseInt(VMM.Browser.version, 10) >= 7 && window.XDomainRequest) {
-				trace("IE JSON");
-				var ie_url = url;
-				if (ie_url.match('^http://')){
-					return jQuery.getJSON(ie_url, data, callback);
-				} else if (ie_url.match('^https://')) {
-					ie_url = ie_url.replace("https://","http://");
-					return jQuery.getJSON(ie_url, data, callback);
-				} else {
-					return jQuery.getJSON(url, data, callback);
-				}
-				
-			} else {
-				return jQuery.getJSON(url, data, callback);
-
-			}
-		}
-	}
-	
-	VMM.parseJSON = function(the_json) {
-		if( typeof( jQuery ) != 'undefined' ){
-			return jQuery.parseJSON(the_json);
-		}
-	}
-	
-	// ADD ELEMENT AND RETURN IT
-	VMM.appendAndGetElement = function(append_to_element, tag, cName, content) {
-		var e,
-			_tag		= "<div>",
-			_class		= "",
-			_content	= "",
-			_id			= "";
-		
-		if (tag != null && tag != "") {
-			_tag = tag;
-		}
-		
-		if (cName != null && cName != "") {
-			_class = cName;
-		}
-		
-		if (content != null && content != "") {
-			_content = content;
-		}
-		
-		if( typeof( jQuery ) != 'undefined' ){
-			
-			e = jQuery(tag);
-			
-			e.addClass(_class);
-			e.html(_content);
-			
-			jQuery(append_to_element).append(e);
-			
-		}
-		
-		return e;
-		
-	};
-	
-	VMM.Lib = {
-		
-		init: function() {
-			return this;
-		},
-		
-		hide: function(element, duration) {
-			if (duration != null && duration != "") {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).hide(duration);
-				}
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).hide();
-				}
-			}
-			
-		},
-		
-		remove: function(element) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).remove();
-			}
-		},
-		
-		detach: function(element) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).detach();
-			}
-		},
-		
-		append: function(element, value) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).append(value);
-			}
-		},
-		
-		prepend: function(element, value) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).prepend(value);
-			}
-		},
-		
-		show: function(element, duration) {
-			if (duration != null && duration != "") {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).show(duration);
-				}
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).show();
-				}
-			}
-			
-		},
-		
-		load: function(element, callback_function, event_data) {
-			var _event_data = {elem:element}; // return element by default
-			if (_event_data != null && _event_data != "") {
-				_event_data = event_data;
-			}
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).load(_event_data, callback_function);
-			}
-		},
-		
-		addClass: function(element, cName) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).addClass(cName);
-			}
-		},
-		
-		removeClass: function(element, cName) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).removeClass(cName);
-			}
-		},
-		
-		attr: function(element, aName, value) {
-			if (value != null && value != "") {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).attr(aName, value);
-				}
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					return jQuery(element).attr(aName);
-				}
-			}
-		},
-		
-		prop: function(element, aName, value) {
-			if (typeof jQuery == 'undefined' || !/[1-9]\.[3-9].[1-9]/.test(jQuery.fn.jquery)) {
-			    VMM.Lib.attribute(element, aName, value);
-			} else {
-				jQuery(element).prop(aName, value);
-			}
-		},
-		
-		attribute: function(element, aName, value) {
-			
-			if (value != null && value != "") {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).attr(aName, value);
-				}
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					return jQuery(element).attr(aName);
-				}
-			}
-		},
-		
-		visible: function(element, show) {
-			if (show != null) {
-				if( typeof( jQuery ) != 'undefined' ){
-					if (show) {
-						jQuery(element).show(0);
-					} else {
-						jQuery(element).hide(0);
-					}
-				}
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					if ( jQuery(element).is(':visible')){
-						return true;
-					} else {
-						return false;
-					}
-				}
-			}
-		},
-		
-		css: function(element, prop, value) {
-
-			if (value != null && value != "") {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).css(prop, value);
-				}
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					return jQuery(element).css(prop);
-				}
-			}
-		},
-		
-		cssmultiple: function(element, propval) {
-
-			if( typeof( jQuery ) != 'undefined' ){
-				return jQuery(element).css(propval);
-			}
-		},
-		
-		offset: function(element) {
-			var p;
-			if( typeof( jQuery ) != 'undefined' ){
-				p = jQuery(element).offset();
-			}
-			return p;
-		},
-		
-		position: function(element) {
-			var p;
-			if( typeof( jQuery ) != 'undefined' ){
-				p = jQuery(element).position();
-			}
-			return p;
-		},
-		
-		width: function(element, s) {
-			if (s != null && s != "") {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).width(s);
-				}
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					return jQuery(element).width();
-				}
-			}
-		},
-		
-		height: function(element, s) {
-			if (s != null && s != "") {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).height(s);
-				}
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					return jQuery(element).height();
-				}
-			}
-		},
-		
-		toggleClass: function(element, cName) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).toggleClass(cName);
-			}
-		},
-		
-		each:function(element, return_function) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).each(return_function);
-			}
-			
-		},
-		
-		html: function(element, str) {
-			var e;
-			if( typeof( jQuery ) != 'undefined' ){
-				e = jQuery(element).html();
-				return e;
-			}
-			
-			if (str != null && str != "") {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).html(str);
-				}
-			} else {
-				var e;
-				if( typeof( jQuery ) != 'undefined' ){
-					e = jQuery(element).html();
-					return e;
-				}
-			}
-
-		},
-		
-		find: function(element, selec) {
-			if( typeof( jQuery ) != 'undefined' ){
-				return jQuery(element).find(selec);
-			}
-		},
-		
-		stop: function(element) {
-			if( typeof( jQuery ) != 'undefined' ){
-				jQuery(element).stop();
-			}
-		},
-		
-		delay_animate: function(delay, element, duration, ease, att, callback_function) {
-			if (VMM.Browser.device == "mobile" || VMM.Browser.device == "tablet") {
-				var _tdd		= Math.round((duration/1500)*10)/10,
-					__duration	= _tdd + 's';
-					
-				VMM.Lib.css(element, '-webkit-transition', 'all '+ __duration + ' ease');
-				VMM.Lib.css(element, '-moz-transition', 'all '+ __duration + ' ease');
-				VMM.Lib.css(element, '-o-transition', 'all '+ __duration + ' ease');
-				VMM.Lib.css(element, '-ms-transition', 'all '+ __duration + ' ease');
-				VMM.Lib.css(element, 'transition', 'all '+ __duration + ' ease');
-				VMM.Lib.cssmultiple(element, _att);
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					jQuery(element).delay(delay).animate(att, {duration:duration, easing:ease} );
-				}
-			}
-			
-		},
-		
-		animate: function(element, duration, ease, att, que, callback_function) {
-			
-			var _ease		= "easein",
-				_que		= false,
-				_duration	= 1000,
-				_att		= {};
-			
-			if (duration != null) {
-				if (duration < 1) {
-					_duration = 1;
-				} else {
-					_duration = Math.round(duration);
-				}
-				
-			}
-			
-			if (ease != null && ease != "") {
-				_ease = ease;
-			}
-			
-			if (que != null && que != "") {
-				_que = que;
-			}
-			
-			
-			if (att != null) {
-				_att = att
-			} else {
-				_att = {opacity: 0}
-			}
-			
-			
-			if (VMM.Browser.device == "mobile" || VMM.Browser.device == "tablet") {
-				
-				var _tdd		= Math.round((_duration/1500)*10)/10,
-					__duration	= _tdd + 's';
-					
-				_ease = " cubic-bezier(0.33, 0.66, 0.66, 1)";
-				//_ease = " ease-in-out";
-				for (x in _att) {
-					if (Object.prototype.hasOwnProperty.call(_att, x)) {
-						trace(x + " to " + _att[x]);
-						VMM.Lib.css(element, '-webkit-transition',  x + ' ' + __duration + _ease);
-						VMM.Lib.css(element, '-moz-transition', x + ' ' + __duration + _ease);
-						VMM.Lib.css(element, '-o-transition', x + ' ' + __duration + _ease);
-						VMM.Lib.css(element, '-ms-transition', x + ' ' + __duration + _ease);
-						VMM.Lib.css(element, 'transition', x + ' ' + __duration + _ease);
-					}
-				}
-				
-				VMM.Lib.cssmultiple(element, _att);
-				
-			} else {
-				if( typeof( jQuery ) != 'undefined' ){
-					if (callback_function != null && callback_function != "") {
-						jQuery(element).animate(_att, {queue:_que, duration:_duration, easing:_ease, complete:callback_function} );
-					} else {
-						jQuery(element).animate(_att, {queue:_que, duration:_duration, easing:_ease} );
-					}
-				}
-			}
-			
-		}
-		
-	}
-}
-
-if( typeof( jQuery ) != 'undefined' ){
-	
-	/*	XDR AJAX EXTENTION FOR jQuery
-		https://github.com/jaubourg/ajaxHooks/blob/master/src/ajax/xdr.js
-	================================================== */
-	(function( jQuery ) {
-		if ( window.XDomainRequest ) {
-			jQuery.ajaxTransport(function( s ) {
-				if ( s.crossDomain && s.async ) {
-					if ( s.timeout ) {
-						s.xdrTimeout = s.timeout;
-						delete s.timeout;
-					}
-					var xdr;
-					return {
-						send: function( _, complete ) {
-							function callback( status, statusText, responses, responseHeaders ) {
-								xdr.onload = xdr.onerror = xdr.ontimeout = jQuery.noop;
-								xdr = undefined;
-								complete( status, statusText, responses, responseHeaders );
-							}
-							xdr = new XDomainRequest();
-							xdr.open( s.type, s.url );
-							xdr.onload = function() {
-								callback( 200, "OK", { text: xdr.responseText }, "Content-Type: " + xdr.contentType );
-							};
-							xdr.onerror = function() {
-								callback( 404, "Not Found" );
-							};
-							if ( s.xdrTimeout ) {
-								xdr.ontimeout = function() {
-									callback( 0, "timeout" );
-								};
-								xdr.timeout = s.xdrTimeout;
-							}
-							xdr.send( ( s.hasContent && s.data ) || null );
-						},
-						abort: function() {
-							if ( xdr ) {
-								xdr.onerror = jQuery.noop();
-								xdr.abort();
-							}
-						}
-					};
-				}
-			});
-		}
-	})( jQuery );
-	
-	/*	jQuery Easing v1.3
-		http://gsgd.co.uk/sandbox/jquery/easing/
-	================================================== */
-	jQuery.easing['jswing'] = jQuery.easing['swing'];
-
-	jQuery.extend( jQuery.easing, {
-		def: 'easeOutQuad',
-		swing: function (x, t, b, c, d) {
-			//alert(jQuery.easing.default);
-			return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
-		},
-		easeInExpo: function (x, t, b, c, d) {
-			return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
-		},
-		easeOutExpo: function (x, t, b, c, d) {
-			return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
-		},
-		easeInOutExpo: function (x, t, b, c, d) {
-			if (t==0) return b;
-			if (t==d) return b+c;
-			if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
-			return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
-		},
-		easeInQuad: function (x, t, b, c, d) {
-			return c*(t/=d)*t + b;
-		},
-		easeOutQuad: function (x, t, b, c, d) {
-			return -c *(t/=d)*(t-2) + b;
-		},
-		easeInOutQuad: function (x, t, b, c, d) {
-			if ((t/=d/2) < 1) return c/2*t*t + b;
-			return -c/2 * ((--t)*(t-2) - 1) + b;
-		}
-	});
-}
-
-
-/* **********************************************
-     Begin VMM.Browser.js
-********************************************** */
-
-/*	* DEVICE AND BROWSER DETECTION
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.Browser == 'undefined') {
-	
-	VMM.Browser = {
-		init: function () {
-			this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
-			this.version = this.searchVersion(navigator.userAgent)
-				|| this.searchVersion(navigator.appVersion)
-				|| "an unknown version";
-			this.OS = this.searchString(this.dataOS) || "an unknown OS";
-			this.device = this.searchDevice(navigator.userAgent);
-			this.orientation = this.searchOrientation(window.orientation);
-		},
-		searchOrientation: function(orientation) {
-			var orient = "";
-			if ( orientation == 0  || orientation == 180) {  
-				orient = "portrait";
-			} else if ( orientation == 90 || orientation == -90) {  
-				orient = "landscape";
-			} else {
-				orient = "normal";
-			}
-			return orient;
-		},
-		searchDevice: function(d) {
-			var device = "";
-			if (d.match(/Android/i) || d.match(/iPhone|iPod/i)) {
-				device = "mobile";
-			} else if (d.match(/iPad/i)) {
-				device = "tablet";
-			} else if (d.match(/BlackBerry/i) || d.match(/IEMobile/i)) {
-				device = "other mobile";
-			} else {
-				device = "desktop";
-			}
-			return device;
-		},
-		searchString: function (data) {
-			for (var i=0;i<data.length;i++)	{
-				var dataString	= data[i].string,
-					dataProp	= data[i].prop;
-					
-				this.versionSearchString = data[i].versionSearch || data[i].identity;
-				
-				if (dataString) {
-					if (dataString.indexOf(data[i].subString) != -1) {
-						return data[i].identity;
-					}
-				} else if (dataProp) {
-					return data[i].identity;
-				}
-			}
-		},
-		searchVersion: function (dataString) {
-			var index = dataString.indexOf(this.versionSearchString);
-			if (index == -1) return;
-			return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
-		},
-		dataBrowser: [
-			{
-				string: navigator.userAgent,
-				subString: "Chrome",
-				identity: "Chrome"
-			},
-			{ 	string: navigator.userAgent,
-				subString: "OmniWeb",
-				versionSearch: "OmniWeb/",
-				identity: "OmniWeb"
-			},
-			{
-				string: navigator.vendor,
-				subString: "Apple",
-				identity: "Safari",
-				versionSearch: "Version"
-			},
-			{
-				prop: window.opera,
-				identity: "Opera",
-				versionSearch: "Version"
-			},
-			{
-				string: navigator.vendor,
-				subString: "iCab",
-				identity: "iCab"
-			},
-			{
-				string: navigator.vendor,
-				subString: "KDE",
-				identity: "Konqueror"
-			},
-			{
-				string: navigator.userAgent,
-				subString: "Firefox",
-				identity: "Firefox"
-			},
-			{
-				string: navigator.vendor,
-				subString: "Camino",
-				identity: "Camino"
-			},
-			{		// for newer Netscapes (6+)
-				string: navigator.userAgent,
-				subString: "Netscape",
-				identity: "Netscape"
-			},
-			{
-				string: navigator.userAgent,
-				subString: "MSIE",
-				identity: "Explorer",
-				versionSearch: "MSIE"
-			},
-			{
-				string: navigator.userAgent,
-				subString: "Gecko",
-				identity: "Mozilla",
-				versionSearch: "rv"
-			},
-			{ 		// for older Netscapes (4-)
-				string: navigator.userAgent,
-				subString: "Mozilla",
-				identity: "Netscape",
-				versionSearch: "Mozilla"
-			}
-		],
-		dataOS : [
-			{
-				string: navigator.platform,
-				subString: "Win",
-				identity: "Windows"
-			},
-			{
-				string: navigator.platform,
-				subString: "Mac",
-				identity: "Mac"
-			},
-			{
-				string: navigator.userAgent,
-				subString: "iPhone",
-				identity: "iPhone/iPod"
-		    },
-			{
-				string: navigator.userAgent,
-				subString: "iPad",
-				identity: "iPad"
-		    },
-			{
-				string: navigator.platform,
-				subString: "Linux",
-				identity: "Linux"
-			}
-		]
-
-	}
-	VMM.Browser.init();
-}
-
-/* **********************************************
-     Begin VMM.FileExtention.js
-********************************************** */
-
-/*	* File Extention
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.FileExtention == 'undefined') {
-	VMM.FileExtention = {
-		googleDocType: function(url) {
-			var fileName			= url.replace(/\s\s*$/, ''),
-				fileExtension		= "",
-				validFileExtensions = ["DOC","DOCX","XLS","XLSX","PPT","PPTX","PDF","PAGES","AI","PSD","TIFF","DXF","SVG","EPS","PS","TTF","XPS","ZIP","RAR"],
-				flag				= false;
-				
-			fileExtension = fileName.substr(fileName.length - 5, 5);
-			
-			for (var i = 0; i < validFileExtensions.length; i++) {
-				if (fileExtension.toLowerCase().match(validFileExtensions[i].toString().toLowerCase()) || fileName.match("docs.google.com") ) {
-					flag = true;
-				}
-			}
-			return flag;
-		}
-	}
-}
-
-/* **********************************************
-     Begin VMM.Date.js
-********************************************** */
-
-/*	* Utilities and Useful Functions
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.Date == 'undefined') {
-	
-	VMM.Date = ({
-		
-		init: function() {
-			return this;
-		},
-		
-		dateformats: {
-			year: "yyyy",
-			month_short: "mmm",
-			month: "mmmm yyyy",
-			full_short: "mmm d",
-			full: "mmmm d',' yyyy",
-			time_no_seconds_short: "h:MM TT",
-			time_no_seconds_small_date: "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
-			full_long: "mmm d',' yyyy 'at' hh:MM TT",
-			full_long_small_date: "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
-		},
-			
-		month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
-		month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
-		day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
-		day_abbr: ["Sun.", "Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."],
-		hour: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
-		hour_suffix: ["am"],
-			
-		//B.C.
-		bc_format: {
-			year: "yyyy",
-			month_short: "mmm",
-			month: "mmmm yyyy",
-			full_short: "mmm d",
-			full: "mmmm d',' yyyy",
-			time_no_seconds_short: "h:MM TT",
-			time_no_seconds_small_date: "dddd', 'h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
-			full_long: "dddd',' mmm d',' yyyy 'at' hh:MM TT",
-			full_long_small_date: "hh:MM TT'<br/><small>'dddd',' mmm d',' yyyy'</small>'"
-		},
-			
-		setLanguage: function(lang) {
-			trace("SET DATE LANGUAGE");
-			VMM.Date.dateformats		=	lang.dateformats;	
-			VMM.Date.month				=	lang.date.month;
-			VMM.Date.month_abbr			=	lang.date.month_abbr;
-			VMM.Date.day				=	lang.date.day;
-			VMM.Date.day_abbr			=	lang.date.day_abbr;
-			dateFormat.i18n.dayNames	=	lang.date.day_abbr.concat(lang.date.day);
-			dateFormat.i18n.monthNames	=	lang.date.month_abbr.concat(lang.date.month);
-		},
-			
-		parse: function(d, precision) {
-			"use strict";
-			var date,
-				date_array,
-				time_array,
-				time_parse,
-				p = {
-					year: 			false,
-					month: 			false,
-					day: 			false,
-					hour: 			false,
-					minute: 		false,
-					second: 		false,
-					millisecond: 	false
-				};
-				
-			if (type.of(d) == "date") {
-				trace("DEBUG THIS, ITs A DATE");
-				date = d;
-			} else {
-				date = new Date(0, 0, 1, 0, 0, 0, 0);
-				
-				if ( d.match(/,/gi) ) {
-					date_array = d.split(",");
-					for(var i = 0; i < date_array.length; i++) {
-						date_array[i] = parseInt(date_array[i], 10);
-					}
-					if (date_array[0]) {	
-						date.setFullYear(date_array[0]);
-						p.year = true;
-					}
-					if (date_array[1]) {
-						date.setMonth(date_array[1] - 1);
-						p.month = true;
-					}
-					if (date_array[2]) {
-						date.setDate(date_array[2]);
-						p.day = true;
-					}
-					if (date_array[3]) {
-						date.setHours(date_array[3]);
-						p.hour = true;
-					}
-					if (date_array[4]) {
-						date.setMinutes(date_array[4]);
-						p.minute = true;
-					}
-					if (date_array[5]) {
-						date.setSeconds(date_array[5]);
-						p.second = true;
-					}
-					if (date_array[6]) {
-						date.setMilliseconds(date_array[6]);
-						p.millisecond = true;
-					}
-				} else if (d.match("/")) {
-					if (d.match(" ")) {
-						
-						time_parse = d.split(" ");
-						if (d.match(":")) {
-							time_array = time_parse[1].split(":");
-							if (time_array[0] >= 0 ) {
-								date.setHours(time_array[0]);
-								p.hour = true;
-							}
-							if (time_array[1] >= 0) {
-								date.setMinutes(time_array[1]);
-								p.minute = true;
-							}
-							if (time_array[2] >= 0) {
-								date.setSeconds(time_array[2]);
-								p.second = true;
-							}
-							if (time_array[3] >= 0) {
-								date.setMilliseconds(time_array[3]);
-								p.millisecond = true;
-							}
-						}
-						date_array = time_parse[0].split("/");
-					} else {
-						date_array = d.split("/");
-					}
-					if (date_array[2]) {
-						date.setFullYear(date_array[2]);
-						p.year = true;
-					}
-					if (date_array[0] >= 0) {
-						date.setMonth(date_array[0] - 1);
-						p.month = true;
-					}
-					if (date_array[1] >= 0) {
-						if (date_array[1].length > 2) {
-							date.setFullYear(date_array[1]);
-							p.year = true;
-						} else {
-							date.setDate(date_array[1]);
-							p.day = true;
-						}
-					}
-				} else if (d.match("now")) {
-					var now = new Date();	
-									
-					date.setFullYear(now.getFullYear());
-					p.year = true;
-					
-					date.setMonth(now.getMonth());
-					p.month = true;
-					
-					date.setDate(now.getDate());
-					p.day = true;
-					
-					if (d.match("hours")) {
-						date.setHours(now.getHours());
-						p.hour = true;
-					}
-					if (d.match("minutes")) {
-						date.setHours(now.getHours());
-						date.setMinutes(now.getMinutes());
-						p.hour = true;
-						p.minute = true;
-					}
-					if (d.match("seconds")) {
-						date.setHours(now.getHours());
-						date.setMinutes(now.getMinutes());
-						date.setSeconds(now.getSeconds());
-						p.hour = true;
-						p.minute = true;
-						p.second = true;
-					}
-					if (d.match("milliseconds")) {
-						date.setHours(now.getHours());
-						date.setMinutes(now.getMinutes());
-						date.setSeconds(now.getSeconds());
-						date.setMilliseconds(now.getMilliseconds());
-						p.hour = true;
-						p.minute = true;
-						p.second = true;
-						p.millisecond = true;
-					}
-				} else if (d.length <= 8) {
-					p.year = true;
-					date.setFullYear(parseInt(d, 10));
-					date.setMonth(0);
-					date.setDate(1);
-					date.setHours(0);
-					date.setMinutes(0);
-					date.setSeconds(0);
-					date.setMilliseconds(0);
-				} else if (d.match("T")) {
-					if (navigator.userAgent.match(/MSIE\s(?!9.0)/)) {
-					    // IE 8 < Won't accept dates with a "-" in them.
-						time_parse = d.split("T");
-						if (d.match(":")) {
-							time_array = time_parse[1].split(":");
-							if (time_array[0] >= 1) {
-								date.setHours(time_array[0]);
-								p.hour = true;
-							}
-							if (time_array[1] >= 1) {
-								date.setMinutes(time_array[1]);
-								p.minute = true;
-							}
-							if (time_array[2] >= 1) {
-								date.setSeconds(time_array[2]);
-								p.second = true;
-							}
-							if (time_array[3] >= 1) {
-								date.setMilliseconds(time_array[3]);
-								p.millisecond = true;
-							}
-						}
-						date_array = time_parse[0].split("-");
-						if (date_array[0]) {
-							date.setFullYear(date_array[0]);
-							p.year = true;
-						}
-						if (date_array[1] >= 0) {
-							date.setMonth(date_array[1] - 1);
-							p.month = true;
-						}
-						if (date_array[2] >= 0) {
-							date.setDate(date_array[2]);
-							p.day = true;
-						}
-						
-					} else {
-						date = new Date(Date.parse(d));
-						p.year = true;
-						p.month = true;
-						p.day = true;
-						p.hour = true;
-						p.minute = true;
-						p.second = true;
-						p.millisecond = true;
-					}
-				} else {
-					p.year = true;
-					p.month = true;
-					p.day = true;
-					p.hour = true;
-					p.minute = true;
-					p.second = true;
-					p.millisecond = true;
-					date = new Date(
-						parseInt(d.slice(0,4), 10), 
-						parseInt(d.slice(4,6), 10) - 1, 
-						parseInt(d.slice(6,8), 10), 
-						parseInt(d.slice(8,10), 10), 
-						parseInt(d.slice(10,12), 10)
-					);
-				}
-				
-			}
-			
-			if (precision != null && precision != "") {
-				return {
-					date: 		date,
-					precision: 	p
-				};
-			} else {
-				return date;
-			}
-		},
-		
-		
-			
-		prettyDate: function(d, is_abbr, p, d2) {
-			var _date,
-				_date2,
-				format,
-				bc_check,
-				is_pair = false,
-				bc_original,
-				bc_number,
-				bc_string;
-				
-			if (d2 != null && d2 != "" && typeof d2 != 'undefined') {
-				is_pair = true;
-				trace("D2 " + d2);
-			}
-			
-			
-			if (type.of(d) == "date") {
-				
-				if (type.of(p) == "object") {
-					if (p.millisecond || p.second || p.minute) {
-						// YEAR MONTH DAY HOUR MINUTE
-						if (is_abbr){
-							format = VMM.Date.dateformats.time_no_seconds_short; 
-						} else {
-							format = VMM.Date.dateformats.time_no_seconds_small_date;
-						}
-					} else if (p.hour) {
-						// YEAR MONTH DAY HOUR
-						if (is_abbr) {
-							format = VMM.Date.dateformats.time_no_seconds_short;
-						} else {
-							format = VMM.Date.dateformats.time_no_seconds_small_date;
-						}
-					} else if (p.day) {
-						// YEAR MONTH DAY
-						if (is_abbr) {
-							format = VMM.Date.dateformats.full_short;
-						} else {
-							format = VMM.Date.dateformats.full;
-						}
-					} else if (p.month) {
-						// YEAR MONTH
-						if (is_abbr) {
-							format = VMM.Date.dateformats.month_short;
-						} else {
-							format = VMM.Date.dateformats.month;
-						}
-					} else if (p.year) {
-						format = VMM.Date.dateformats.year;
-					} else {
-						format = VMM.Date.dateformats.year;
-					}
-					
-				} else {
-					
-					if (d.getMonth() === 0 && d.getDate() == 1 && d.getHours() === 0 && d.getMinutes() === 0 ) {
-						// YEAR ONLY
-						format = VMM.Date.dateformats.year;
-					} else if (d.getDate() <= 1 && d.getHours() === 0 && d.getMinutes() === 0) {
-						// YEAR MONTH
-						if (is_abbr) {
-							format = VMM.Date.dateformats.month_short;
-						} else {
-							format = VMM.Date.dateformats.month;
-						}
-					} else if (d.getHours() === 0 && d.getMinutes() === 0) {
-						// YEAR MONTH DAY
-						if (is_abbr) {
-							format = VMM.Date.dateformats.full_short;
-						} else {
-							format = VMM.Date.dateformats.full;
-						}
-					} else  if (d.getMinutes() === 0) {
-						// YEAR MONTH DAY HOUR
-						if (is_abbr) {
-							format = VMM.Date.dateformats.time_no_seconds_short;
-						} else {
-							format = VMM.Date.dateformats.time_no_seconds_small_date;
-						}
-					} else {
-						// YEAR MONTH DAY HOUR MINUTE
-						if (is_abbr){
-							format = VMM.Date.dateformats.time_no_seconds_short; 
-						} else {
-							format = VMM.Date.dateformats.full_long; 
-						}
-					}
-				}
-				
-				_date = dateFormat(d, format, false);
-				//_date = "Jan"
-				bc_check = _date.split(" ");
-					
-				// BC TIME SUPPORT
-				for(var i = 0; i < bc_check.length; i++) {
-					if ( parseInt(bc_check[i], 10) < 0 ) {
-						trace("YEAR IS BC");
-						bc_original	= bc_check[i];
-						bc_number	= Math.abs( parseInt(bc_check[i], 10) );
-						bc_string	= bc_number.toString() + " B.C.";
-						_date		= _date.replace(bc_original, bc_string);
-					}
-				}
-					
-					
-				if (is_pair) {
-					_date2 = dateFormat(d2, format, false);
-					bc_check = _date2.split(" ");
-					// BC TIME SUPPORT
-					for(var j = 0; j < bc_check.length; j++) {
-						if ( parseInt(bc_check[j], 10) < 0 ) {
-							trace("YEAR IS BC");
-							bc_original	= bc_check[j];
-							bc_number	= Math.abs( parseInt(bc_check[j], 10) );
-							bc_string	= bc_number.toString() + " B.C.";
-							_date2			= _date2.replace(bc_original, bc_string);
-						}
-					}
-						
-				}
-			} else {
-				trace("NOT A VALID DATE?");
-				trace(d);
-			}
-				
-			if (is_pair) {
-				return _date + " &mdash; " + _date2;
-			} else {
-				return _date;
-			}
-		}
-		
-	}).init();
-	
-	/*
-	 * Date Format 1.2.3
-	 * (c) 2007-2009 Steven Levithan <stevenlevithan.com>
-	 * MIT license
-	 *
-	 * Includes enhancements by Scott Trenda <scott.trenda.net>
-	 * and Kris Kowal <cixar.com/~kris.kowal/>
-	 *
-	 * Accepts a date, a mask, or a date and a mask.
-	 * Returns a formatted version of the given date.
-	 * The date defaults to the current date/time.
-	 * The mask defaults to dateFormat.masks.default.
-	 */
-
-	var dateFormat = function () {
-		var	token = /d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g,
-			timezone = /\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,
-			timezoneClip = /[^-+\dA-Z]/g,
-			pad = function (val, len) {
-				val = String(val);
-				len = len || 2;
-				while (val.length < len) val = "0" + val;
-				return val;
-			};
-
-		// Regexes and supporting functions are cached through closure
-		return function (date, mask, utc) {
-			var dF = dateFormat;
-
-			// You can't provide utc if you skip other args (use the "UTC:" mask prefix)
-			if (arguments.length == 1 && Object.prototype.toString.call(date) == "[object String]" && !/\d/.test(date)) {
-				mask = date;
-				date = undefined;
-			}
-
-			// Passing date through Date applies Date.parse, if necessary
-			// Caused problems in IE
-			// date = date ? new Date(date) : new Date;
-			if (isNaN(date)) {
-				trace("invalid date " + date);
-				//return "";
-			} 
-
-			mask = String(dF.masks[mask] || mask || dF.masks["default"]);
-
-			// Allow setting the utc argument via the mask
-			if (mask.slice(0, 4) == "UTC:") {
-				mask = mask.slice(4);
-				utc = true;
-			}
-
-			var	_ = utc ? "getUTC" : "get",
-				d = date[_ + "Date"](),
-				D = date[_ + "Day"](),
-				m = date[_ + "Month"](),
-				y = date[_ + "FullYear"](),
-				H = date[_ + "Hours"](),
-				M = date[_ + "Minutes"](),
-				s = date[_ + "Seconds"](),
-				L = date[_ + "Milliseconds"](),
-				o = utc ? 0 : date.getTimezoneOffset(),
-				flags = {
-					d:    d,
-					dd:   pad(d),
-					ddd:  dF.i18n.dayNames[D],
-					dddd: dF.i18n.dayNames[D + 7],
-					m:    m + 1,
-					mm:   pad(m + 1),
-					mmm:  dF.i18n.monthNames[m],
-					mmmm: dF.i18n.monthNames[m + 12],
-					yy:   String(y).slice(2),
-					yyyy: y,
-					h:    H % 12 || 12,
-					hh:   pad(H % 12 || 12),
-					H:    H,
-					HH:   pad(H),
-					M:    M,
-					MM:   pad(M),
-					s:    s,
-					ss:   pad(s),
-					l:    pad(L, 3),
-					L:    pad(L > 99 ? Math.round(L / 10) : L),
-					t:    H < 12 ? "a"  : "p",
-					tt:   H < 12 ? "am" : "pm",
-					T:    H < 12 ? "A"  : "P",
-					TT:   H < 12 ? "AM" : "PM",
-					Z:    utc ? "UTC" : (String(date).match(timezone) || [""]).pop().replace(timezoneClip, ""),
-					o:    (o > 0 ? "-" : "+") + pad(Math.floor(Math.abs(o) / 60) * 100 + Math.abs(o) % 60, 4),
-					S:    ["th", "st", "nd", "rd"][d % 10 > 3 ? 0 : (d % 100 - d % 10 != 10) * d % 10]
-				};
-
-			return mask.replace(token, function ($0) {
-				return $0 in flags ? flags[$0] : $0.slice(1, $0.length - 1);
-			});
-		};
-	}();
-
-	// Some common format strings
-	dateFormat.masks = {
-		"default":      "ddd mmm dd yyyy HH:MM:ss",
-		shortDate:      "m/d/yy",
-		mediumDate:     "mmm d, yyyy",
-		longDate:       "mmmm d, yyyy",
-		fullDate:       "dddd, mmmm d, yyyy",
-		shortTime:      "h:MM TT",
-		mediumTime:     "h:MM:ss TT",
-		longTime:       "h:MM:ss TT Z",
-		isoDate:        "yyyy-mm-dd",
-		isoTime:        "HH:MM:ss",
-		isoDateTime:    "yyyy-mm-dd'T'HH:MM:ss",
-		isoUtcDateTime: "UTC:yyyy-mm-dd'T'HH:MM:ss'Z'"
-	};
-
-	// Internationalization strings
-	dateFormat.i18n = {
-		dayNames: [
-			"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat",
-			"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
-		],
-		monthNames: [
-			"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
-			"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
-		]
-	};
-
-	// For convenience...
-	Date.prototype.format = function (mask, utc) {
-		return dateFormat(this, mask, utc);
-	};
-	
-}
-
-/* **********************************************
-     Begin VMM.Util.js
-********************************************** */
-
-/*	* Utilities and Useful Functions
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.Util == 'undefined') {
-	
-	VMM.Util = ({
-		
-		init: function() {
-			return this;
-		},
-		
-		/*	* CORRECT PROTOCOL (DOES NOT WORK)
-		================================================== */
-		correctProtocol: function(url) {
-			var loc = (window.parent.location.protocol).toString(),
-				prefix = "",
-				the_url = url.split("://", 2);
-			
-			if (loc.match("http")) {
-				prefix = loc;
-			} else {
-				prefix = "https";
-			}
-			
-			return prefix + "://" + the_url[1];
-			
-		},
-		
-		/*	* MERGE CONFIG
-		================================================== */
-		mergeConfig: function(config_main, config_to_merge) {
-			var x;
-			for (x in config_to_merge) {
-				if (Object.prototype.hasOwnProperty.call(config_to_merge, x)) {
-					config_main[x] = config_to_merge[x];
-				}
-			}
-			return config_main;
-		},
-		
-		/*	* GET OBJECT ATTRIBUTE BY INDEX
-		================================================== */
-		getObjectAttributeByIndex: function(obj, index) {
-			if(typeof obj != 'undefined') {
-				var i = 0;
-				for (var attr in obj){
-					if (index === i){
-						return obj[attr];
-					}
-					i++;
-				}
-				return "";
-			} else {
-				return "";
-			}
-			
-		},
-		
-		/*	* ORDINAL
-		================================================== */
-		ordinal: function(n) {
-		    return ["th","st","nd","rd"][(!( ((n%10) >3) || (Math.floor(n%100/10)==1)) ) * (n%10)]; 
-		},
-		
-		/*	* RANDOM BETWEEN
-		================================================== */
-		//VMM.Util.randomBetween(1, 3)
-		randomBetween: function(min, max) {
-			return Math.floor(Math.random() * (max - min + 1) + min);
-		},
-		
-		/*	* AVERAGE
-			* http://jsfromhell.com/array/average
-			* var x = VMM.Util.average([2, 3, 4]);
-			* VMM.Util.average([2, 3, 4]).mean
-		================================================== */
-		average: function(a) {
-		    var r = {mean: 0, variance: 0, deviation: 0}, t = a.length;
-		    for(var m, s = 0, l = t; l--; s += a[l]);
-		    for(m = r.mean = s / t, l = t, s = 0; l--; s += Math.pow(a[l] - m, 2));
-		    return r.deviation = Math.sqrt(r.variance = s / t), r;
-		},
-		
-		/*	* CUSTOM SORT
-		================================================== */
-		customSort: function(a, b) {
-			var a1= a, b1= b;
-			if(a1== b1) return 0;
-			return a1> b1? 1: -1;
-		},
-		
-		/*	* Remove Duplicates from Array
-		================================================== */
-		deDupeArray: function(arr) {
-			var i,
-				len=arr.length,
-				out=[],
-				obj={};
-
-			for (i=0;i<len;i++) {
-				obj[arr[i]]=0;
-			}
-			for (i in obj) {
-				out.push(i);
-			}
-			return out;
-		},
-		
-		/*	* Given an int or decimal, turn that into string in $xxx,xxx.xx format.
-		================================================== */
-		number2money: function(n, symbol, padding) {
-			var symbol = (symbol !== null) ? symbol : true; // add $
-			var padding = (padding !== null) ? padding : false; //pad with .00
-			var number = VMM.Math2.floatPrecision(n,2); // rounded correctly to two digits, if decimals passed
-			var formatted = this.niceNumber(number);
-			// no decimal and padding is enabled
-			if (!formatted.split(/\./g)[1] && padding) formatted = formatted + ".00";
-			// add money sign
-			if (symbol) formatted = "$"+formatted;
-			return formatted;
-		},
-		
-		/*	* Returns a word count number
-		================================================== */
-		wordCount: function(s) {
-			var fullStr = s + " ";
-			var initial_whitespace_rExp = /^[^A-Za-z0-9\'\-]+/gi;
-			var left_trimmedStr = fullStr.replace(initial_whitespace_rExp, "");
-			var non_alphanumerics_rExp = /[^A-Za-z0-9\'\-]+/gi;
-			var cleanedStr = left_trimmedStr.replace(non_alphanumerics_rExp, " ");
-			var splitString = cleanedStr.split(" ");
-			var word_count = splitString.length -1;
-			if (fullStr.length <2) {
-				word_count = 0;
-			}
-			return word_count;
-		},
-		
-		ratio: {
-			fit: function(w, h, ratio_w, ratio_h) {
-				//VMM.Util.ratio.fit(w, h, ratio_w, ratio_h).width;
-				var _fit = {width:0,height:0};
-				// TRY WIDTH FIRST
-				_fit.width = w;
-				//_fit.height = Math.round((h / ratio_h) * ratio_w);
-				_fit.height = Math.round((w / ratio_w) * ratio_h);
-				if (_fit.height > h) {
-					_fit.height = h;
-					//_fit.width = Math.round((w / ratio_w) * ratio_h);
-					_fit.width = Math.round((h / ratio_h) * ratio_w);
-					
-					if (_fit.width > w) {
-						trace("FIT: DIDN'T FIT!!! ")
-					}
-				}
-				
-				return _fit;
-				
-			},
-			r16_9: function(w,h) {
-				//VMM.Util.ratio.r16_9(w, h) // Returns corresponding number
-				if (w !== null && w !== "") {
-					return Math.round((h / 16) * 9);
-				} else if (h !== null && h !== "") {
-					return Math.round((w / 9) * 16);
-				}
-			},
-			r4_3: function(w,h) {
-				if (w !== null && w !== "") {
-					return Math.round((h / 4) * 3);
-				} else if (h !== null && h !== "") {
-					return Math.round((w / 3) * 4);
-				}
-			}
-		},
-		
-		doubledigit: function(n) {
-			return (n < 10 ? '0' : '') + n;
-		},
-		
-		/*	* Returns a truncated segement of a long string of between min and max words. If possible, ends on a period (otherwise goes to max).
-		================================================== */
-		truncateWords: function(s, min, max) {
-			
-			if (!min) min = 30;
-			if (!max) max = min;
-			
-			var initial_whitespace_rExp = /^[^A-Za-z0-9\'\-]+/gi;
-			var left_trimmedStr = s.replace(initial_whitespace_rExp, "");
-			var words = left_trimmedStr.split(" ");
-			
-			var result = [];
-			
-			min = Math.min(words.length, min);
-			max = Math.min(words.length, max);
-			
-			for (var i = 0; i<min; i++) {
-				result.push(words[i]);
-			}		
-			
-			for (var j = min; i<max; i++) {
-				var word = words[i];
-				
-				result.push(word);
-				
-				if (word.charAt(word.length-1) == '.') {
-					break;
-				}
-			}		
-			
-			return (result.join(' '));
-		},
-		
-		/*	* Turns plain text links into real links
-		================================================== */
-		linkify: function(text,targets,is_touch) {
-			
-			// http://, https://, ftp://
-			var urlPattern = /\b(?:https?|ftp):\/\/[a-z0-9-+&@#\/%?=~_|!:,.;]*[a-z0-9-+&@#\/%=~_|]/gim;
-
-			// www. sans http:// or https://
-			var pseudoUrlPattern = /(^|[^\/])(www\.[\S]+(\b|$))/gim;
-
-			// Email addresses
-			var emailAddressPattern = /(([a-zA-Z0-9_\-\.]+)@[a-zA-Z_]+?(?:\.[a-zA-Z]{2,6}))+/gim;
-			
-
-			return text
-				.replace(urlPattern, "<a target='_blank' href='$&' onclick='void(0)'>$&</a>")
-				.replace(pseudoUrlPattern, "$1<a target='_blank' onclick='void(0)' href='http://$2'>$2</a>")
-				.replace(emailAddressPattern, "<a target='_blank' onclick='void(0)' href='mailto:$1'>$1</a>");
-		},
-		
-		linkify_with_twitter: function(text,targets,is_touch) {
-			
-			// http://, https://, ftp://
-			var urlPattern = /\b(?:https?|ftp):\/\/[a-z0-9-+&@#\/%?=~_|!:,.;]*[a-z0-9-+&@#\/%=~_|]/gim;
-			var url_pattern = /(\()((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]+)(\))|(\[)((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]+)(\])|(\{)((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]+)(\})|(<|&(?:lt|#60|#x3c);)((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]+)(>|&(?:gt|#62|#x3e);)|((?:^|[^=\s'"\]])\s*['"]?|[^=\s]\s+)(\b(?:ht|f)tps?:\/\/[a-z0-9\-._~!$'()*+,;=:\/?#[\]@%]+(?:(?!&(?:gt|#0*62|#x0*3e);|&(?:amp|apos|quot|#0*3[49]|#x0*2[27]);[.!&',:?;]?(?:[^a-z0-9\-._~!$&'()*+,;=:\/?#[\]@%]|$))&[a-z0-9\-._~!$'()*+,;=:\/?#[\]@%]*)*[a-z0-9\-_~$()*+=\/#[\]@%])/img;
-			var url_replace = '$1$4$7$10$13<a href="$2$5$8$11$14" class="hyphenate">$2$5$8$11$14</a>$3$6$9$12';
-			
-			// www. sans http:// or https://
-			var pseudoUrlPattern = /(^|[^\/])(www\.[\S]+(\b|$))/gim;
-			function replaceURLWithHTMLLinks(text) {
-			    var exp = /(\b(https?|ftp|file):\/\/([-A-Z0-9+&@#%?=~_|!:,.;]*)([-A-Z0-9+&@#%?\/=~_|!:,.;]*)[-A-Z0-9+&@#\/%=~_|])/ig;
-			    return text.replace(exp, "<a href='$1' target='_blank'>$3</a>");
-			}
-			// Email addresses
-			var emailAddressPattern = /(([a-zA-Z0-9_\-\.]+)@[a-zA-Z_]+?(?:\.[a-zA-Z]{2,6}))+/gim;
-			
-			//var twitterHandlePattern = /(@([\w]+))/g;
-			var twitterHandlePattern = /\B@([\w-]+)/gm;
-			var twitterSearchPattern = /(#([\w]+))/g;
-
-			return text
-				//.replace(urlPattern, "<a target='_blank' href='$&' onclick='void(0)'>$&</a>")
-				.replace(url_pattern, url_replace)
-				.replace(pseudoUrlPattern, "$1<a target='_blank' class='hyphenate' onclick='void(0)' href='http://$2'>$2</a>")
-				.replace(emailAddressPattern, "<a target='_blank' onclick='void(0)' href='mailto:$1'>$1</a>")
-				.replace(twitterHandlePattern, "<a href='http://twitter.com/$1' target='_blank' onclick='void(0)'>@$1</a>");
-				
-				// TURN THIS BACK ON TO AUTOMAGICALLY LINK HASHTAGS TO TWITTER SEARCH
-				//.replace(twitterSearchPattern, "<a href='http://twitter.com/#search?q=%23$2' target='_blank' 'void(0)'>$1</a>");
-		},
-		
-		linkify_wikipedia: function(text) {
-			
-			var urlPattern = /<i[^>]*>(.*?)<\/i>/gim;
-			return text
-				.replace(urlPattern, "<a target='_blank' href='http://en.wikipedia.org/wiki/$&' onclick='void(0)'>$&</a>")
-				.replace(/<i\b[^>]*>/gim, "")
-				.replace(/<\/i>/gim, "")
-				.replace(/<b\b[^>]*>/gim, "")
-				.replace(/<\/b>/gim, "");
-		},
-		
-		/*	* Turns plain text links into real links
-		================================================== */
-		// VMM.Util.unlinkify();
-		unlinkify: function(text) {
-			if(!text) return text;
-			text = text.replace(/<a\b[^>]*>/i,"");
-			text = text.replace(/<\/a>/i, "");
-			return text;
-		},
-		
-		untagify: function(text) {
-			if (!text) {
-				return text;
-			}
-			text = text.replace(/<\s*\w.*?>/g,"");
-			return text;
-		},
-		
-		/*	* TK
-		================================================== */
-		nl2br: function(text) {
-			return text.replace(/(\r\n|[\r\n]|\\n|\\r)/g,"<br/>");
-		},
-		
-		/*	* Generate a Unique ID
-		================================================== */
-		// VMM.Util.unique_ID(size);
-		unique_ID: function(size) {
-			
-			var getRandomNumber = function(range) {
-				return Math.floor(Math.random() * range);
-			};
-
-			var getRandomChar = function() {
-				var chars = "abcdefghijklmnopqurstuvwxyzABCDEFGHIJKLMNOPQURSTUVWXYZ";
-				return chars.substr( getRandomNumber(62), 1 );
-			};
-
-			var randomID = function(size) {
-				var str = "";
-				for(var i = 0; i < size; i++) {
-					str += getRandomChar();
-				}
-				return str;
-			};
-			
-			return randomID(size);
-		},
-		/*	* Tells you if a number is even or not
-		================================================== */
-		// VMM.Util.isEven(n)
-		isEven: function(n){
-			return (n%2 === 0) ? true : false;
-		},
-		/*	* Get URL Variables
-		================================================== */
-		//	var somestring = VMM.Util.getUrlVars(str_url)["varname"];
-		getUrlVars: function(string) {
-			
-			var str = string.toString();
-			
-			if (str.match('&#038;')) { 
-				str = str.replace("&#038;", "&");
-			} else if (str.match('&#38;')) {
-				str = str.replace("&#38;", "&");
-			} else if (str.match('&amp;')) {
-				str = str.replace("&amp;", "&");
-			}
-			
-			var vars = [], hash;
-			var hashes = str.slice(str.indexOf('?') + 1).split('&');
-			for(var i = 0; i < hashes.length; i++) {
-				hash = hashes[i].split('=');
-				vars.push(hash[0]);
-				vars[hash[0]] = hash[1];
-			}
-			
-			
-			return vars;
-		},
-
-		/*	* Cleans up strings to become real HTML
-		================================================== */
-		toHTML: function(text) {
-			
-			text = this.nl2br(text);
-			text = this.linkify(text);
-			
-			return text.replace(/\s\s/g,"&nbsp;&nbsp;");
-		},
-		
-		/*	* Returns text strings as CamelCase
-		================================================== */
-		toCamelCase: function(s,forceLowerCase) {
-			
-			if(forceLowerCase !== false) forceLowerCase = true;
-			
-			var sps = ((forceLowerCase) ? s.toLowerCase() : s).split(" ");
-			
-			for(var i=0; i<sps.length; i++) {
-				
-				sps[i] = sps[i].substr(0,1).toUpperCase() + sps[i].substr(1);
-			}
-			
-			return sps.join(" ");
-		},
-		
-		/*	* Replaces dumb quote marks with smart ones
-		================================================== */
-		properQuotes: function(str) {
-			return str.replace(/\"([^\"]*)\"/gi,"&#8220;$1&#8221;");
-		},
-		/*	* Add Commas to numbers
-		================================================== */
-		niceNumber: function(nStr){
-			nStr += '';
-			x = nStr.split('.');
-			x1 = x[0];
-			x2 = x.length > 1 ? '.' + x[1] : '';
-			var rgx = /(\d+)(\d{3})/;
-			while (rgx.test(x1)) {
-				x1 = x1.replace(rgx, '$1' + ',' + '$2');
-			}
-			return x1 + x2;
-		},
-		/*	* Transform text to Title Case
-		================================================== */
-		toTitleCase: function(t){
-			if ( VMM.Browser.browser == "Explorer" && parseInt(VMM.Browser.version, 10) >= 7) {
-				return t.replace("_", "%20");
-			} else {
-				var __TitleCase = {
-					__smallWords: ['a', 'an', 'and', 'as', 'at', 'but','by', 'en', 'for', 'if', 'in', 'of', 'on', 'or','the', 'to', 'v[.]?', 'via', 'vs[.]?'],
-
-					init: function() {
-						this.__smallRE = this.__smallWords.join('|');
-						this.__lowerCaseWordsRE = new RegExp('\\b(' + this.__smallRE + ')\\b', 'gi');
-						this.__firstWordRE = new RegExp('^([^a-zA-Z0-9 \\r\\n\\t]*)(' + this.__smallRE + ')\\b', 'gi');
-						this.__lastWordRE = new RegExp('\\b(' + this.__smallRE + ')([^a-zA-Z0-9 \\r\\n\\t]*)$', 'gi');
-					},
-
-					toTitleCase: function(string) {
-						var line = '';
-
-						var split = string.split(/([:.;?!][ ]|(?:[ ]|^)["“])/);
-
-						for (var i = 0; i < split.length; ++i) {
-							var s = split[i];
-
-							s = s.replace(/\b([a-zA-Z][a-z.'’]*)\b/g,this.__titleCaseDottedWordReplacer);
-
-			 				// lowercase the list of small words
-							s = s.replace(this.__lowerCaseWordsRE, this.__lowerReplacer);
-
-							// if the first word in the title is a small word then capitalize it
-							s = s.replace(this.__firstWordRE, this.__firstToUpperCase);
-
-							// if the last word in the title is a small word, then capitalize it
-							s = s.replace(this.__lastWordRE, this.__firstToUpperCase);
-
-							line += s;
-						}
-
-						// special cases
-						line = line.replace(/ V(s?)\. /g, ' v$1. ');
-						line = line.replace(/(['’])S\b/g, '$1s');
-						line = line.replace(/\b(AT&T|Q&A)\b/ig, this.__upperReplacer);
-
-						return line;
-					},
-
-					__titleCaseDottedWordReplacer: function (w) {
-						return (w.match(/[a-zA-Z][.][a-zA-Z]/)) ? w : __TitleCase.__firstToUpperCase(w);
-					},
-
-					__lowerReplacer: function (w) { return w.toLowerCase() },
-
-					__upperReplacer: function (w) { return w.toUpperCase() },
-
-					__firstToUpperCase: function (w) {
-						var split = w.split(/(^[^a-zA-Z0-9]*[a-zA-Z0-9])(.*)$/);
-						if (split[1]) {
-							split[1] = split[1].toUpperCase();
-						}
-					
-						return split.join('');
-					
-					
-					}
-				};
-
-				__TitleCase.init();
-			
-				t = t.replace(/_/g," ");
-				t = __TitleCase.toTitleCase(t);
-			
-				return t;
-				
-			}
-			
-		}
-		
-	}).init();
-}
-
-/* **********************************************
-     Begin LazyLoad.js
-********************************************** */
-
-/*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false */
-
-/*
-LazyLoad makes it easy and painless to lazily load one or more external
-JavaScript or CSS files on demand either during or after the rendering of a web
-page.
-
-Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile
-Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and
-are not officially supported.
-
-Visit https://github.com/rgrove/lazyload/ for more info.
-
-Copyright (c) 2011 Ryan Grove <ryan@wonko.com>
-All rights reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the 'Software'), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-@module lazyload
-@class LazyLoad
-@static
-@version 2.0.3 (git)
-*/
-
-LazyLoad = (function (doc) {
-  // -- Private Variables ------------------------------------------------------
-
-  // User agent and feature test information.
-  var env,
-
-  // Reference to the <head> element (populated lazily).
-  head,
-
-  // Requests currently in progress, if any.
-  pending = {},
-
-  // Number of times we've polled to check whether a pending stylesheet has
-  // finished loading. If this gets too high, we're probably stalled.
-  pollCount = 0,
-
-  // Queued requests.
-  queue = {css: [], js: []},
-
-  // Reference to the browser's list of stylesheets.
-  styleSheets = doc.styleSheets;
-
-  // -- Private Methods --------------------------------------------------------
-
-  /**
-  Creates and returns an HTML element with the specified name and attributes.
-
-  @method createNode
-  @param {String} name element name
-  @param {Object} attrs name/value mapping of element attributes
-  @return {HTMLElement}
-  @private
-  */
-  function createNode(name, attrs) {
-    var node = doc.createElement(name), attr;
-
-    for (attr in attrs) {
-      if (attrs.hasOwnProperty(attr)) {
-        node.setAttribute(attr, attrs[attr]);
-      }
-    }
-
-    return node;
-  }
-
-  /**
-  Called when the current pending resource of the specified type has finished
-  loading. Executes the associated callback (if any) and loads the next
-  resource in the queue.
-
-  @method finish
-  @param {String} type resource type ('css' or 'js')
-  @private
-  */
-  function finish(type) {
-    var p = pending[type],
-        callback,
-        urls;
-
-    if (p) {
-      callback = p.callback;
-      urls     = p.urls;
-
-      urls.shift();
-      pollCount = 0;
-
-      // If this is the last of the pending URLs, execute the callback and
-      // start the next request in the queue (if any).
-      if (!urls.length) {
-        callback && callback.call(p.context, p.obj);
-        pending[type] = null;
-        queue[type].length && load(type);
-      }
-    }
-  }
-
-  /**
-  Populates the <code>env</code> variable with user agent and feature test
-  information.
-
-  @method getEnv
-  @private
-  */
-  function getEnv() {
-    var ua = navigator.userAgent;
-
-    env = {
-      // True if this browser supports disabling async mode on dynamically
-      // created script nodes. See
-      // http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order
-      async: doc.createElement('script').async === true
-    };
-
-    (env.webkit = /AppleWebKit\//.test(ua))
-      || (env.ie = /MSIE/.test(ua))
-      || (env.opera = /Opera/.test(ua))
-      || (env.gecko = /Gecko\//.test(ua))
-      || (env.unknown = true);
-  }
-
-  /**
-  Loads the specified resources, or the next resource of the specified type
-  in the queue if no resources are specified. If a resource of the specified
-  type is already being loaded, the new request will be queued until the
-  first request has been finished.
-
-  When an array of resource URLs is specified, those URLs will be loaded in
-  parallel if it is possible to do so while preserving execution order. All
-  browsers support parallel loading of CSS, but only Firefox and Opera
-  support parallel loading of scripts. In other browsers, scripts will be
-  queued and loaded one at a time to ensure correct execution order.
-
-  @method load
-  @param {String} type resource type ('css' or 'js')
-  @param {String|Array} urls (optional) URL or array of URLs to load
-  @param {Function} callback (optional) callback function to execute when the
-    resource is loaded
-  @param {Object} obj (optional) object to pass to the callback function
-  @param {Object} context (optional) if provided, the callback function will
-    be executed in this object's context
-  @private
-  */
-  function load(type, urls, callback, obj, context) {
-    var _finish = function () { finish(type); },
-        isCSS   = type === 'css',
-        nodes   = [],
-        i, len, node, p, pendingUrls, url;
-
-    env || getEnv();
-
-    if (urls) {
-      // If urls is a string, wrap it in an array. Otherwise assume it's an
-      // array and create a copy of it so modifications won't be made to the
-      // original.
-      urls = typeof urls === 'string' ? [urls] : urls.concat();
-
-      // Create a request object for each URL. If multiple URLs are specified,
-      // the callback will only be executed after all URLs have been loaded.
-      //
-      // Sadly, Firefox and Opera are the only browsers capable of loading
-      // scripts in parallel while preserving execution order. In all other
-      // browsers, scripts must be loaded sequentially.
-      //
-      // All browsers respect CSS specificity based on the order of the link
-      // elements in the DOM, regardless of the order in which the stylesheets
-      // are actually downloaded.
-      if (isCSS || env.async || env.gecko || env.opera) {
-        // Load in parallel.
-        queue[type].push({
-          urls    : urls,
-          callback: callback,
-          obj     : obj,
-          context : context
-        });
-      } else {
-        // Load sequentially.
-        for (i = 0, len = urls.length; i < len; ++i) {
-          queue[type].push({
-            urls    : [urls[i]],
-            callback: i === len - 1 ? callback : null, // callback is only added to the last URL
-            obj     : obj,
-            context : context
-          });
-        }
-      }
-    }
-
-    // If a previous load request of this type is currently in progress, we'll
-    // wait our turn. Otherwise, grab the next item in the queue.
-    if (pending[type] || !(p = pending[type] = queue[type].shift())) {
-      return;
-    }
-
-    head || (head = doc.head || doc.getElementsByTagName('head')[0]);
-    pendingUrls = p.urls;
-
-    for (i = 0, len = pendingUrls.length; i < len; ++i) {
-      url = pendingUrls[i];
-
-      if (isCSS) {
-          node = env.gecko ? createNode('style') : createNode('link', {
-            href: url,
-            rel : 'stylesheet'
-          });
-      } else {
-        node = createNode('script', {src: url});
-        node.async = false;
-      }
-
-      node.className = 'lazyload';
-      node.setAttribute('charset', 'utf-8');
-
-      if (env.ie && !isCSS) {
-        node.onreadystatechange = function () {
-          if (/loaded|complete/.test(node.readyState)) {
-            node.onreadystatechange = null;
-            _finish();
-          }
-        };
-      } else if (isCSS && (env.gecko || env.webkit)) {
-        // Gecko and WebKit don't support the onload event on link nodes.
-        if (env.webkit) {
-          // In WebKit, we can poll for changes to document.styleSheets to
-          // figure out when stylesheets have loaded.
-          p.urls[i] = node.href; // resolve relative URLs (or polling won't work)
-          pollWebKit();
-        } else {
-          // In Gecko, we can import the requested URL into a <style> node and
-          // poll for the existence of node.sheet.cssRules. Props to Zach
-          // Leatherman for calling my attention to this technique.
-          node.innerHTML = '@import "' + url + '";';
-          pollGecko(node);
-        }
-      } else {
-        node.onload = node.onerror = _finish;
-      }
-
-      nodes.push(node);
-    }
-
-    for (i = 0, len = nodes.length; i < len; ++i) {
-      head.appendChild(nodes[i]);
-    }
-  }
-
-  /**
-  Begins polling to determine when the specified stylesheet has finished loading
-  in Gecko. Polling stops when all pending stylesheets have loaded or after 10
-  seconds (to prevent stalls).
-
-  Thanks to Zach Leatherman for calling my attention to the @import-based
-  cross-domain technique used here, and to Oleg Slobodskoi for an earlier
-  same-domain implementation. See Zach's blog for more details:
-  http://www.zachleat.com/web/2010/07/29/load-css-dynamically/
-
-  @method pollGecko
-  @param {HTMLElement} node Style node to poll.
-  @private
-  */
-  function pollGecko(node) {
-    var hasRules;
-
-    try {
-      // We don't really need to store this value or ever refer to it again, but
-      // if we don't store it, Closure Compiler assumes the code is useless and
-      // removes it.
-      hasRules = !!node.sheet.cssRules;
-    } catch (ex) {
-      // An exception means the stylesheet is still loading.
-      pollCount += 1;
-
-      if (pollCount < 200) {
-        setTimeout(function () { pollGecko(node); }, 50);
-      } else {
-        // We've been polling for 10 seconds and nothing's happened. Stop
-        // polling and finish the pending requests to avoid blocking further
-        // requests.
-        hasRules && finish('css');
-      }
-
-      return;
-    }
-
-    // If we get here, the stylesheet has loaded.
-    finish('css');
-  }
-
-  /**
-  Begins polling to determine when pending stylesheets have finished loading
-  in WebKit. Polling stops when all pending stylesheets have loaded or after 10
-  seconds (to prevent stalls).
-
-  @method pollWebKit
-  @private
-  */
-  function pollWebKit() {
-    var css = pending.css, i;
-
-    if (css) {
-      i = styleSheets.length;
-
-      // Look for a stylesheet matching the pending URL.
-      while (--i >= 0) {
-        if (styleSheets[i].href === css.urls[0]) {
-          finish('css');
-          break;
-        }
-      }
-
-      pollCount += 1;
-
-      if (css) {
-        if (pollCount < 200) {
-          setTimeout(pollWebKit, 50);
-        } else {
-          // We've been polling for 10 seconds and nothing's happened, which may
-          // indicate that the stylesheet has been removed from the document
-          // before it had a chance to load. Stop polling and finish the pending
-          // request to prevent blocking further requests.
-          finish('css');
-        }
-      }
-    }
-  }
-
-  return {
-
-    /**
-    Requests the specified CSS URL or URLs and executes the specified
-    callback (if any) when they have finished loading. If an array of URLs is
-    specified, the stylesheets will be loaded in parallel and the callback
-    will be executed after all stylesheets have finished loading.
-
-    @method css
-    @param {String|Array} urls CSS URL or array of CSS URLs to load
-    @param {Function} callback (optional) callback function to execute when
-      the specified stylesheets are loaded
-    @param {Object} obj (optional) object to pass to the callback function
-    @param {Object} context (optional) if provided, the callback function
-      will be executed in this object's context
-    @static
-    */
-    css: function (urls, callback, obj, context) {
-      load('css', urls, callback, obj, context);
-    },
-
-    /**
-    Requests the specified JavaScript URL or URLs and executes the specified
-    callback (if any) when they have finished loading. If an array of URLs is
-    specified and the browser supports it, the scripts will be loaded in
-    parallel and the callback will be executed after all scripts have
-    finished loading.
-
-    Currently, only Firefox and Opera support parallel loading of scripts while
-    preserving execution order. In other browsers, scripts will be
-    queued and loaded one at a time to ensure correct execution order.
-
-    @method js
-    @param {String|Array} urls JS URL or array of JS URLs to load
-    @param {Function} callback (optional) callback function to execute when
-      the specified scripts are loaded
-    @param {Object} obj (optional) object to pass to the callback function
-    @param {Object} context (optional) if provided, the callback function
-      will be executed in this object's context
-    @static
-    */
-    js: function (urls, callback, obj, context) {
-      load('js', urls, callback, obj, context);
-    }
-
-  };
-})(this.document);
-
-
-/* **********************************************
-     Begin VMM.LoadLib.js
-********************************************** */
-
-/*
-	LoadLib
-	Designed and built by Zach Wise digitalartwork.net
-*/
-
-/*	* CodeKit Import
-	* http://incident57.com/codekit/
-================================================== */
-// @codekit-prepend "../Library/LazyLoad.js";
-
-LoadLib = (function (doc) {
-	var loaded	= [];
-	
-	function isLoaded(url) {
-		
-		var i			= 0,
-			has_loaded	= false;
-		
-		for (i = 0; i < loaded.length; i++) {
-			if (loaded[i] == url) {
-				has_loaded = true;
-			}
-		}
-		
-		if (has_loaded) {
-			return true;
-		} else {
-			loaded.push(url);
-			return false;
-		}
-		
-	}
-	
-	return {
-		
-		css: function (urls, callback, obj, context) {
-			if (!isLoaded(urls)) {
-				LazyLoad.css(urls, callback, obj, context);
-			}
-		},
-
-		js: function (urls, callback, obj, context) {
-			if (!isLoaded(urls)) {
-				LazyLoad.js(urls, callback, obj, context);
-			}
-		}
-    };
-	
-})(this.document);
-
-
-/* **********************************************
-     Begin VMM.Core.js
-********************************************** */
-
-/* VeriteCo Core
-================================================== */
-
-/*	* CodeKit Import
-	* http://incident57.com/codekit/
-================================================== */
-// @codekit-prepend "VMM.js";
-// @codekit-prepend "VMM.Library.js";
-// @codekit-prepend "VMM.Browser.js";
-// @codekit-prepend "VMM.FileExtention.js";
-// @codekit-prepend "VMM.Date.js";
-// @codekit-prepend "VMM.Util.js";
-// @codekit-prepend "VMM.LoadLib.js";
-// @codekit-prepend "VMM.Language.js";
-
-
-
-/* **********************************************
-     Begin VMM.Language.js
-********************************************** */
-
-/* DEFAULT LANGUAGE 
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.Language == 'undefined') {
-	VMM.Language = {
-		lang: "en",
-		api: {
-			wikipedia: "en"
-		},
-		date: {
-			month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
-			month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
-			day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
-			day_abbr: ["Sun.","Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."]
-		}, 
-		dateformats: {
-			year: "yyyy",
-			month_short: "mmm",
-			month: "mmmm yyyy",
-			full_short: "mmm d",
-			full: "mmmm d',' yyyy",
-			time_no_seconds_short: "h:MM TT",
-			time_no_seconds_small_date: "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
-			full_long: "mmm d',' yyyy 'at' h:MM TT",
-			full_long_small_date: "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
-		},
-		messages: {
-			loading_timeline: "Loading Timeline... ",
-			return_to_title: "Return to Title",
-			expand_timeline: "Expand Timeline",
-			contract_timeline: "Contract Timeline",
-			wikipedia: "From Wikipedia, the free encyclopedia",
-			loading_content: "Loading Content",
-			loading: "Loading"
-		}
-	}
-};
-
-/* **********************************************
-     Begin VMM.ExternalAPI.js
-********************************************** */
-
-/* External API
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.ExternalAPI == 'undefined') {
-	
-	VMM.ExternalAPI = ({
-		
-		keys: {
-			google:				"",
-			flickr:				"",
-			twitter:			""
-		},
-		
-		keys_master: {
-			vp:			"Pellentesque nibh felis, eleifend id, commodo in, interdum vitae, leo",
-			flickr:		"RAIvxHY4hE/Elm5cieh4X5ptMyDpj7MYIxziGxi0WGCcy1s+yr7rKQ==",
-			google:		"jwNGnYw4hE9lmAez4ll0QD+jo6SKBJFknkopLS4FrSAuGfIwyj57AusuR0s8dAo=",
-			twitter:	""
-		},
-		
-		init: function() {
-			return this;
-		},
-		
-		setKeys: function(d) {
-			VMM.ExternalAPI.keys	= d;
-		},
-		
-		pushQues: function() {
-			
-			if (VMM.master_config.googlemaps.active) {
-				VMM.ExternalAPI.googlemaps.pushQue();
-			}
-			if (VMM.master_config.youtube.active) {
-				VMM.ExternalAPI.youtube.pushQue();
-			}
-			if (VMM.master_config.soundcloud.active) {
-				VMM.ExternalAPI.soundcloud.pushQue();
-			}
-			if (VMM.master_config.googledocs.active) {
-				VMM.ExternalAPI.googledocs.pushQue();
-			}
-			if (VMM.master_config.googleplus.active) {
-				VMM.ExternalAPI.googleplus.pushQue();
-			}
-			if (VMM.master_config.wikipedia.active) {
-				VMM.ExternalAPI.wikipedia.pushQue();
-			}
-			if (VMM.master_config.vimeo.active) {
-				VMM.ExternalAPI.vimeo.pushQue();
-			}
-			if (VMM.master_config.vine.active) {
-				VMM.ExternalAPI.vine.pushQue();
-			}
-			if (VMM.master_config.twitter.active) {
-				VMM.ExternalAPI.twitter.pushQue();
-			}
-			if (VMM.master_config.flickr.active) {
-				VMM.ExternalAPI.flickr.pushQue();
-			}
-			if (VMM.master_config.webthumb.active) {
-				VMM.ExternalAPI.webthumb.pushQue();
-			}
-		},
-		
-		twitter: {
-			tweetArray: [],
-			
-			get: function(m) {
-				var tweet = {mid: m.id, id: m.uid};
-				VMM.master_config.twitter.que.push(tweet);
-				VMM.master_config.twitter.active = true;
-				//VMM.master_config.api.pushques.push(VMM.ExternalAPI.twitter.pushQue);
-				
-			},
-			
-			create: function(tweet, callback) {
-				
-				var id				= tweet.mid.toString(),
-					error_obj		= { twitterid: tweet.mid },
-					the_url			= "http://api.twitter.com/1/statuses/show.json?id=" + tweet.mid + "&include_entities=true&callback=?";
-					//twitter_timeout	= setTimeout(VMM.ExternalAPI.twitter.errorTimeOut, VMM.master_config.timers.api, tweet),
-					//callback_timeout= setTimeout(callback, VMM.master_config.timers.api, tweet);
-				
-				VMM.ExternalAPI.twitter.getOEmbed(tweet, callback);
-				
-				/*
-				// Disabled thanks to twitter's new api
-				
-				VMM.getJSON(the_url, function(d) {
-					var id		= d.id_str,
-						twit	= "<blockquote><p>",
-						td		= VMM.Util.linkify_with_twitter(d.text, "_blank");
-					
-					//	TWEET CONTENT	
-					twit += td;
-					twit += "</p></blockquote>";
-					
-					//	TWEET MEDIA
-					if (typeof d.entities.media != 'undefined') {
-						if (d.entities.media[0].type == "photo") {
-							//twit += "<img src=' " + d.entities.media[0].media_url + "'  alt=''>"
-						}
-					}
-					
-					//	TWEET AUTHOR
-					twit += "<div class='vcard author'>";
-					twit += "<a class='screen-name url' href='https://twitter.com/" + d.user.screen_name + "' data-screen-name='" + d.user.screen_name + "' target='_blank'>";
-					twit += "<span class='avatar'><img src=' " + d.user.profile_image_url + "'  alt=''></span>";
-					twit += "<span class='fn'>" + d.user.name + "</span>";
-					twit += "<span class='nickname'>@" + d.user.screen_name + "<span class='thumbnail-inline'></span></span>";
-					twit += "</a>";
-					twit += "</div>";
-				
-					
-				
-					VMM.attachElement("#"+tweet.id.toString(), twit );
-					VMM.attachElement("#text_thumb_"+tweet.id.toString(), d.text );
-					VMM.attachElement("#marker_content_" + tweet.id.toString(), d.text );
-					
-				})
-				.error(function(jqXHR, textStatus, errorThrown) {
-					trace("TWITTER error");
-					trace("TWITTER ERROR: " + textStatus + " " + jqXHR.responseText);
-					VMM.attachElement("#"+tweet.id, VMM.MediaElement.loadingmessage("ERROR LOADING TWEET " + tweet.mid) );
-				})
-				.success(function(d) {
-					clearTimeout(twitter_timeout);
-					clearTimeout(callback_timeout);
-					callback();
-				});
-				
-				*/
-			},
-			
-			errorTimeOut: function(tweet) {
-				trace("TWITTER JSON ERROR TIMEOUT " + tweet.mid);
-				VMM.attachElement("#"+tweet.id.toString(), VMM.MediaElement.loadingmessage("Still waiting on Twitter: " + tweet.mid) );
-				// CHECK RATE STATUS
-				VMM.getJSON("http://api.twitter.com/1/account/rate_limit_status.json", function(d) {
-					trace("REMAINING TWITTER API CALLS " + d.remaining_hits);
-					trace("TWITTER RATE LIMIT WILL RESET AT " + d.reset_time);
-					var mes = "";
-					if (d.remaining_hits == 0) {
-						mes		= 	"<p>You've reached the maximum number of tweets you can load in an hour.</p>";
-						mes 	+=	"<p>You can view tweets again starting at: <br/>" + d.reset_time + "</p>";
-					} else {
-						mes		=	"<p>Still waiting on Twitter. " + tweet.mid + "</p>";
-						//mes 	= 	"<p>Tweet " + id + " was not found.</p>";
-					}
-					VMM.attachElement("#"+tweet.id.toString(), VMM.MediaElement.loadingmessage(mes) );
-				});
-				
-			},
-			
-			errorTimeOutOembed: function(tweet) {
-				trace("TWITTER JSON ERROR TIMEOUT " + tweet.mid);
-				VMM.attachElement("#"+tweet.id.toString(), VMM.MediaElement.loadingmessage("Still waiting on Twitter: " + tweet.mid) );
-			},
-			
-			pushQue: function() {
-				if (VMM.master_config.twitter.que.length > 0) {
-					VMM.ExternalAPI.twitter.create(VMM.master_config.twitter.que[0], VMM.ExternalAPI.twitter.pushQue);
-					VMM.master_config.twitter.que.remove(0);
-				}
-			},
-						
-			getOEmbed: function(tweet, callback) {
-				
-				var the_url = "http://api.twitter.com/1/statuses/oembed.json?id=" + tweet.mid + "&omit_script=true&include_entities=true&callback=?",
-					twitter_timeout	= setTimeout(VMM.ExternalAPI.twitter.errorTimeOutOembed, VMM.master_config.timers.api, tweet);
-					//callback_timeout= setTimeout(callback, VMM.master_config.timers.api, tweet);
-				
-				VMM.getJSON(the_url, function(d) {
-					var twit	= "",
-						tuser	= "";
-					
-					
-					//	TWEET CONTENT
-					twit += d.html.split("<\/p>\&mdash;")[0] + "</p></blockquote>";
-					tuser = d.author_url.split("twitter.com\/")[1];
-					
-					
-					//	TWEET AUTHOR
-					twit += "<div class='vcard author'>";
-					twit += "<a class='screen-name url' href='" + d.author_url + "' target='_blank'>";
-					twit += "<span class='avatar'></span>";
-					twit += "<span class='fn'>" + d.author_name + "</span>";
-					twit += "<span class='nickname'>@" + tuser + "<span class='thumbnail-inline'></span></span>";
-					twit += "</a>";
-					twit += "</div>";
-					
-					VMM.attachElement("#"+tweet.id.toString(), twit );
-					VMM.attachElement("#text_thumb_"+tweet.id.toString(), d.html );
-					VMM.attachElement("#marker_content_" + tweet.id.toString(), d.html );
-				})
-				.error(function(jqXHR, textStatus, errorThrown) {
-					trace("TWITTER error");
-					trace("TWITTER ERROR: " + textStatus + " " + jqXHR.responseText);
-					clearTimeout(twitter_timeout);
-					//clearTimeout(callback_timeout);
-					VMM.attachElement("#"+tweet.id, VMM.MediaElement.loadingmessage("ERROR LOADING TWEET " + tweet.mid) );
-				})
-				.success(function(d) {
-					clearTimeout(twitter_timeout);
-					clearTimeout(callback_timeout);
-					callback();
-				});
-				
-			},
-			
-			getHTML: function(id) {
-				//var the_url = document.location.protocol + "//api.twitter.com/1/statuses/oembed.json?id=" + id+ "&callback=?";
-				var the_url = "http://api.twitter.com/1/statuses/oembed.json?id=" + id+ "&omit_script=true&include_entities=true&callback=?";
-				VMM.getJSON(the_url, VMM.ExternalAPI.twitter.onJSONLoaded);
-			},
-			
-			onJSONLoaded: function(d) {
-				trace("TWITTER JSON LOADED");
-				var id = d.id;
-				VMM.attachElement("#"+id, VMM.Util.linkify_with_twitter(d.html) );
-			},
-			
-			parseTwitterDate: function(d) {
-				var date = new Date(Date.parse(d));
-				/*
-				var t = d.replace(/(\d{1,2}[:]\d{2}[:]\d{2}) (.*)/, '$2 $1');
-				t = t.replace(/(\+\S+) (.*)/, '$2 $1');
-				var date = new Date(Date.parse(t)).toLocaleDateString();
-				var time = new Date(Date.parse(t)).toLocaleTimeString();
-				*/
-				return date;
-			},
-			
-			prettyParseTwitterDate: function(d) {
-				var date = new Date(Date.parse(d));
-				return VMM.Date.prettyDate(date, true);
-			},
-			
-			getTweets: function(tweets) {
-				var tweetArray = [];
-				var number_of_tweets = tweets.length;
-				
-				for(var i = 0; i < tweets.length; i++) {
-					
-					var twitter_id = "";
-					
-					
-					/* FIND THE TWITTER ID
-					================================================== */
-					if (tweets[i].tweet.match("status\/")) {
-						twitter_id = tweets[i].tweet.split("status\/")[1];
-					} else if (tweets[i].tweet.match("statuses\/")) {
-						twitter_id = tweets[i].tweet.split("statuses\/")[1];
-					} else {
-						twitter_id = "";
-					}
-					
-					/* FETCH THE DATA
-					================================================== */
-					var the_url = "http://api.twitter.com/1/statuses/show.json?id=" + twitter_id + "&include_entities=true&callback=?";
-					VMM.getJSON(the_url, function(d) {
-						
-						var tweet = {}
-						/* FORMAT RESPONSE
-						================================================== */
-						var twit = "<div class='twitter'><blockquote><p>";
-						var td = VMM.Util.linkify_with_twitter(d.text, "_blank");
-						twit += td;
-						twit += "</p>";
-						
-						twit += "— " + d.user.name + " (<a href='https://twitter.com/" + d.user.screen_name + "'>@" + d.user.screen_name + "</a>) <a href='https://twitter.com/" + d.user.screen_name + "/status/" + d.id + "'>" + VMM.ExternalAPI.twitter.prettyParseTwitterDate(d.created_at) + " </a></blockquote></div>";
-						
-						tweet.content = twit;
-						tweet.raw = d;
-						
-						tweetArray.push(tweet);
-						
-						
-						/* CHECK IF THATS ALL OF THEM
-						================================================== */
-						if (tweetArray.length == number_of_tweets) {
-							var the_tweets = {tweetdata: tweetArray}
-							VMM.fireEvent(global, "TWEETSLOADED", the_tweets);
-						}
-					})
-					.success(function() { trace("second success"); })
-					.error(function() { trace("error"); })
-					.complete(function() { trace("complete"); });
-					
-				}
-					
-				
-			},
-			
-			getTweetSearch: function(tweets, number_of_tweets) {
-				var _number_of_tweets = 40;
-				if (number_of_tweets != null && number_of_tweets != "") {
-					_number_of_tweets = number_of_tweets;
-				}
-				
-				var the_url = "http://search.twitter.com/search.json?q=" + tweets + "&rpp=" + _number_of_tweets + "&include_entities=true&result_type=mixed";
-				var tweetArray = [];
-				VMM.getJSON(the_url, function(d) {
-					
-					/* FORMAT RESPONSE
-					================================================== */
-					for(var i = 0; i < d.results.length; i++) {
-						var tweet = {}
-						var twit = "<div class='twitter'><blockquote><p>";
-						var td = VMM.Util.linkify_with_twitter(d.results[i].text, "_blank");
-						twit += td;
-						twit += "</p>";
-						twit += "— " + d.results[i].from_user_name + " (<a href='https://twitter.com/" + d.results[i].from_user + "'>@" + d.results[i].from_user + "</a>) <a href='https://twitter.com/" + d.results[i].from_user + "/status/" + d.id + "'>" + VMM.ExternalAPI.twitter.prettyParseTwitterDate(d.results[i].created_at) + " </a></blockquote></div>";
-						tweet.content = twit;
-						tweet.raw = d.results[i];
-						tweetArray.push(tweet);
-					}
-					var the_tweets = {tweetdata: tweetArray}
-					VMM.fireEvent(global, "TWEETSLOADED", the_tweets);
-				});
-				
-			},
-			
-			prettyHTML: function(id, secondary) {
-				var id = id.toString();
-				var error_obj = {
-					twitterid: id
-				};
-				var the_url = "http://api.twitter.com/1/statuses/show.json?id=" + id + "&include_entities=true&callback=?";
-				var twitter_timeout = setTimeout(VMM.ExternalAPI.twitter.errorTimeOut, VMM.master_config.timers.api, id);
-				
-				VMM.getJSON(the_url, VMM.ExternalAPI.twitter.formatJSON)
-					.error(function(jqXHR, textStatus, errorThrown) {
-						trace("TWITTER error");
-						trace("TWITTER ERROR: " + textStatus + " " + jqXHR.responseText);
-						VMM.attachElement("#twitter_"+id, "<p>ERROR LOADING TWEET " + id + "</p>" );
-					})
-					.success(function(d) {
-						clearTimeout(twitter_timeout);
-						if (secondary) {
-							VMM.ExternalAPI.twitter.secondaryMedia(d);
-						}
-					});
-			},
-			
-			
-			
-			formatJSON: function(d) {
-				var id = d.id_str;
-				
-				var twit = "<blockquote><p>";
-				var td = VMM.Util.linkify_with_twitter(d.text, "_blank");
-				//td = td.replace(/(@([\w]+))/g,"<a href='http://twitter.com/$2' target='_blank'>$1</a>");
-				//td = td.replace(/(#([\w]+))/g,"<a href='http://twitter.com/#search?q=%23$2' target='_blank'>$1</a>");
-				twit += td;
-				twit += "</p></blockquote>";
-				//twit += " <a href='https://twitter.com/" + d.user.screen_name + "/status/" + d.id_str + "' target='_blank' alt='link to original tweet' title='link to original tweet'>" + "<span class='created-at'></span>" + " </a>";
-				
-				twit += "<div class='vcard author'>";
-				twit += "<a class='screen-name url' href='https://twitter.com/" + d.user.screen_name + "' data-screen-name='" + d.user.screen_name + "' target='_blank'>";
-				twit += "<span class='avatar'><img src=' " + d.user.profile_image_url + "'  alt=''></span>";
-				twit += "<span class='fn'>" + d.user.name + "</span>";
-				twit += "<span class='nickname'>@" + d.user.screen_name + "<span class='thumbnail-inline'></span></span>";
-				twit += "</a>";
-				twit += "</div>";
-				
-				if (typeof d.entities.media != 'undefined') {
-					if (d.entities.media[0].type == "photo") {
-						twit += "<img src=' " + d.entities.media[0].media_url + "'  alt=''>"
-					}
-				}
-				
-				VMM.attachElement("#twitter_"+id.toString(), twit );
-				VMM.attachElement("#text_thumb_"+id.toString(), d.text );
-				
-			}
-			
-			
-		},
-		
-		googlemaps: {
-			
-			maptype: "toner",
-			
-			setMapType: function(d) {
-				if (d != "") {
-					VMM.ExternalAPI.googlemaps.maptype = d;
-				}
-			},
-			
-			get: function(m) {
-				var timer, 
-					api_key,
-					map_url;
-				
-				m.vars = VMM.Util.getUrlVars(m.id);
-				
-				if (VMM.ExternalAPI.keys.google != "") {
-					api_key = VMM.ExternalAPI.keys.google;
-				} else {
-					api_key = Aes.Ctr.decrypt(VMM.ExternalAPI.keys_master.google, VMM.ExternalAPI.keys_master.vp, 256);
-				}
-				
-				
-				/*
-					Investigating a google map api change on the latest release that causes custom map types to stop working
-					http://stackoverflow.com/questions/13486271/google-map-markermanager-cannot-call-method-substr-of-undefined
-					soulution is to use api ver 3.9
-				*/
-				map_url = "http://maps.googleapis.com/maps/api/js?key=" + api_key + "&v=3.9&libraries=places&sensor=false&callback=VMM.ExternalAPI.googlemaps.onMapAPIReady";
-				
-				if (VMM.master_config.googlemaps.active) {
-					VMM.master_config.googlemaps.que.push(m);
-				} else {
-					VMM.master_config.googlemaps.que.push(m);
-					
-					if (VMM.master_config.googlemaps.api_loaded) {
-						
-					} else {
-						LoadLib.js(map_url, function() {
-							trace("Google Maps API Library Loaded");
-						});
-					}
-				}
-			},
-			
-			create: function(m) {
-				VMM.ExternalAPI.googlemaps.createAPIMap(m);
-			},
-			
-			createiFrameMap: function(m) {
-				var embed_url		= m.id + "&output=embed",
-					mc				= "",
-					unique_map_id	= m.uid.toString() + "_gmap";
-					
-				mc				+= "<div class='google-map' id='" + unique_map_id + "' style='width=100%;height=100%;'>";
-				mc				+= "<iframe width='100%' height='100%' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='" + embed_url + "'></iframe>";
-				mc				+= "</div>";
-				
-				VMM.attachElement("#" + m.uid, mc);
-				
-			},
-			
-			createAPIMap: function(m) {
-				var map_attribution	= "",
-					layer,
-					map,
-					map_options,
-					unique_map_id			= m.uid.toString() + "_gmap",
-					map_attribution_html	= "",
-					location				= new google.maps.LatLng(41.875696,-87.624207),
-					latlong,
-					zoom					= 11,
-					has_location			= false,
-					has_zoom				= false,
-					api_limit				= false,
-					map_bounds;
-					
-				
-				function mapProvider(name) {
-					if (name in VMM.ExternalAPI.googlemaps.map_providers) {
-						map_attribution = VMM.ExternalAPI.googlemaps.map_attribution[VMM.ExternalAPI.googlemaps.map_providers[name].attribution];
-						return VMM.ExternalAPI.googlemaps.map_providers[name];
-					} else {
-						if (VMM.ExternalAPI.googlemaps.defaultType(name)) {
-							trace("GOOGLE MAP DEFAULT TYPE");
-							return google.maps.MapTypeId[name.toUpperCase()];
-						} else {
-							trace("Not a maptype: " + name );
-						}
-					}
-				}
-				
-				google.maps.VeriteMapType = function(name) {
-					if (VMM.ExternalAPI.googlemaps.defaultType(name)) {
-						return google.maps.MapTypeId[name.toUpperCase()];
-					} else {
-						var provider = 			mapProvider(name);
-						return google.maps.ImageMapType.call(this, {
-							"getTileUrl": function(coord, zoom) {
-								var index = 	(zoom + coord.x + coord.y) % VMM.ExternalAPI.googlemaps.map_subdomains.length;
-								return [
-									provider.url
-										.replace("{S}", VMM.ExternalAPI.googlemaps.map_subdomains[index])
-										.replace("{Z}", zoom)
-										.replace("{X}", coord.x)
-										.replace("{Y}", coord.y)
-										.replace("{z}", zoom)
-										.replace("{x}", coord.x)
-										.replace("{y}", coord.y)
-								];
-							},
-							"tileSize": 		new google.maps.Size(256, 256),
-							"name":				name,
-							"minZoom":			provider.minZoom,
-							"maxZoom":			provider.maxZoom
-						});
-					}
-				};
-				
-				google.maps.VeriteMapType.prototype = new google.maps.ImageMapType("_");
-				
-				/* Make the Map
-				================================================== */
-				
-				if (VMM.ExternalAPI.googlemaps.maptype != "") {
-					if (VMM.ExternalAPI.googlemaps.defaultType(VMM.ExternalAPI.googlemaps.maptype)) {
-						layer				=	google.maps.MapTypeId[VMM.ExternalAPI.googlemaps.maptype.toUpperCase()];
-					} else {
-						layer				=	VMM.ExternalAPI.googlemaps.maptype;
-					}
-				} else {
-					layer					=	"toner";
-				}
-				
-				
-				if (type.of(VMM.Util.getUrlVars(m.id)["ll"]) == "string") {
-					has_location			= true;
-					latlong					= VMM.Util.getUrlVars(m.id)["ll"].split(",");
-					location				= new google.maps.LatLng(parseFloat(latlong[0]),parseFloat(latlong[1]));
-					
-				} else if (type.of(VMM.Util.getUrlVars(m.id)["sll"]) == "string") {
-					latlong					= VMM.Util.getUrlVars(m.id)["sll"].split(",");
-					location				= new google.maps.LatLng(parseFloat(latlong[0]),parseFloat(latlong[1]));
-				} 
-				
-				if (type.of(VMM.Util.getUrlVars(m.id)["z"]) == "string") {
-					has_zoom				=	true;
-					zoom					=	parseFloat(VMM.Util.getUrlVars(m.id)["z"]);
-				}
-				
-				map_options = {
-					zoom:						zoom,
-					draggable: 					false, 
-					disableDefaultUI:			true,
-					mapTypeControl:				false,
-					zoomControl:				true,
-					zoomControlOptions: {
-						style:					google.maps.ZoomControlStyle.SMALL,
-						position:				google.maps.ControlPosition.TOP_RIGHT
-					},
-					center: 					location,
-					mapTypeId:					layer,
-					mapTypeControlOptions: {
-				        mapTypeIds:				[layer]
-				    }
-				}
-				
-				VMM.attachElement("#" + m.uid, "<div class='google-map' id='" + unique_map_id + "' style='width=100%;height=100%;'></div>");
-				
-				map		= new google.maps.Map(document.getElementById(unique_map_id), map_options);
-				
-				if (VMM.ExternalAPI.googlemaps.defaultType(VMM.ExternalAPI.googlemaps.maptype)) {
-					
-				} else {
-					map.mapTypes.set(layer, new google.maps.VeriteMapType(layer));
-					// ATTRIBUTION
-					map_attribution_html =	"<div class='map-attribution'><div class='attribution-text'>" + map_attribution + "</div></div>";
-					VMM.appendElement("#"+unique_map_id, map_attribution_html);
-				}
-				
-				// DETERMINE IF KML IS POSSIBLE 
-				if (type.of(VMM.Util.getUrlVars(m.id)["msid"]) == "string") {
-					loadKML();
-				} else {
-					//loadPlaces();
-					if (type.of(VMM.Util.getUrlVars(m.id)["q"]) == "string") {
-						geocodePlace();
-					} 
-				}
-				
-				// GEOCODE
-				function geocodePlace() {
-
-
-					
-					var geocoder	= new google.maps.Geocoder(),
-						address		= VMM.Util.getUrlVars(m.id)["q"],
-						marker;
-						
-					if (address.match("loc:")) {
-						var address_latlon = address.split(":")[1].split("+");
-						location = new google.maps.LatLng(parseFloat(address_latlon[0]),parseFloat(address_latlon[1]));
-						has_location = true;
-					}
-						
-					geocoder.geocode( { 'address': address}, function(results, status) {
-						if (status == google.maps.GeocoderStatus.OK) {
-							
-							marker = new google.maps.Marker({
-								map: map,
-								position: results[0].geometry.location
-							});
-							
-							// POSITION MAP
-							//map.setCenter(results[0].geometry.location);
-							//map.panTo(location);
-							if (typeof results[0].geometry.viewport != 'undefined') {
-								map.fitBounds(results[0].geometry.viewport);
-							} else if (typeof results[0].geometry.bounds != 'undefined') {
-								map.fitBounds(results[0].geometry.bounds);
-							} else {
-								map.setCenter(results[0].geometry.location);
-							}
-							
-							if (has_location) {
-								map.panTo(location);
-							}
-							if (has_zoom) {
-								map.setZoom(zoom);
-							}
-							
-						} else {
-							trace("Geocode for " + address + " was not successful for the following reason: " + status);
-							trace("TRYING PLACES SEARCH");
-							
-							if (has_location) {
-								map.panTo(location);
-							}
-							if (has_zoom) {
-								map.setZoom(zoom);
-							}
-							
-							loadPlaces();
-						}
-					});
-				}
-				
-				// PLACES
-				function loadPlaces() {
-					var place,
-						search_request,
-						infowindow,
-						search_bounds,
-						bounds_sw,
-						bounds_ne;
-					
-					place_search	= new google.maps.places.PlacesService(map);
-					infowindow		= new google.maps.InfoWindow();
-					
-					search_request = {
-						query:		"",
-						types:		['country', 'neighborhood', 'political', 'locality', 'geocode']
-					};
-					
-					if (type.of(VMM.Util.getUrlVars(m.id)["q"]) == "string") {
-						search_request.query	= VMM.Util.getUrlVars(m.id)["q"];
-					}
-					
-					if (has_location) {
-						search_request.location	= location;
-						search_request.radius	= "15000";
-					} else {
-						bounds_sw = new google.maps.LatLng(-89.999999,-179.999999);
-						bounds_ne = new google.maps.LatLng(89.999999,179.999999);
-						search_bounds = new google.maps.LatLngBounds(bounds_sw,bounds_ne);
-						
-						//search_request.location	= search_bounds;
-					}
-					
-					place_search.textSearch(search_request, placeResults);
-					
-					function placeResults(results, status) {
-						
-						if (status == google.maps.places.PlacesServiceStatus.OK) {
-							
-							for (var i = 0; i < results.length; i++) {
-								//createMarker(results[i]);
-							}
-							
-							if (has_location) {
-								map.panTo(location);
-							} else {
-								if (results.length >= 1) {
-									map.panTo(results[0].geometry.location);
-									if (has_zoom) {
-										map.setZoom(zoom);
-									}
-								} 
-							}
-							
-							
-						} else {
-							trace("Place search for " + search_request.query + " was not successful for the following reason: " + status);
-							// IF There's a problem loading the map, load a simple iFrame version instead
-							trace("YOU MAY NEED A GOOGLE MAPS API KEY IN ORDER TO USE THIS FEATURE OF TIMELINEJS");
-							trace("FIND OUT HOW TO GET YOUR KEY HERE: https://developers.google.com/places/documentation/#Authentication");
-							
-							
-							if (has_location) {
-								map.panTo(location);
-								if (has_zoom) {
-									map.setZoom(zoom);
-								}
-							} else {
-								trace("USING SIMPLE IFRAME MAP EMBED");
-								if (m.id[0].match("https")) { 
-									m.id = m.url[0].replace("https", "http");
-								}
-								VMM.ExternalAPI.googlemaps.createiFrameMap(m);
-							}
-							
-						}
-						
-					}
-					
-					function createMarker(place) {
-						var marker, placeLoc;
-						
-						placeLoc = place.geometry.location;
-						marker = new google.maps.Marker({
-							map: map,
-							position: place.geometry.location
-						});
-
-						google.maps.event.addListener(marker, 'click', function() {
-							infowindow.setContent(place.name);
-							infowindow.open(map, this);
-						});
-					}
-					
-				}
-				
-				function loadPlacesAlt() {
-					var api_key,
-						places_url,
-						has_key		= false;
-						
-					trace("LOADING PLACES API FOR GOOGLE MAPS");
-						
-					if (VMM.ExternalAPI.keys.google != "") {
-						api_key	= VMM.ExternalAPI.keys.google;
-						has_key	= true;
-					} else {
-						trace("YOU NEED A GOOGLE MAPS API KEY IN ORDER TO USE THIS FEATURE OF TIMELINEJS");
-						trace("FIND OUT HOW TO GET YOUR KEY HERE: https://developers.google.com/places/documentation/#Authentication");
-					}
-					
-					places_url		= "https://maps.googleapis.com/maps/api/place/textsearch/json?key=" + api_key + "&sensor=false&language=" + m.lang + "&";
-					
-					if (type.of(VMM.Util.getUrlVars(m.id)["q"]) == "string") {
-						places_url	+= "query=" + VMM.Util.getUrlVars(m.id)["q"];
-					}
-					
-					if (has_location) {
-						places_url	+= "&location=" + location;
-					} 
-					
-					if (has_key) {
-						VMM.getJSON(places_url, function(d) {
-							trace("PLACES JSON");
-						
-							var places_location 	= "",
-								places_bounds		= "",
-								places_bounds_ne	= "",
-								places_bounds_sw	= "";
-						
-							trace(d);
-						
-							if (d.status == "OVER_QUERY_LIMIT") {
-								trace("OVER_QUERY_LIMIT");
-								if (has_location) {
-									map.panTo(location);
-									if (has_zoom) {
-										map.setZoom(zoom);
-									}
-								} else {
-									trace("DOING TRADITIONAL MAP IFRAME EMBED UNTIL QUERY LIMIT RESTORED");
-									api_limit = true;
-									VMM.ExternalAPI.googlemaps.createiFrameMap(m);
-								}
-							
-							} else {
-								if (d.results.length >= 1) {
-									//location = new google.maps.LatLng(parseFloat(d.results[0].geometry.location.lat),parseFloat(d.results[0].geometry.location.lng));
-									//map.panTo(location);
-							
-									places_bounds_ne	= new google.maps.LatLng(parseFloat(d.results[0].geometry.viewport.northeast.lat),parseFloat(d.results[0].geometry.viewport.northeast.lng));
-									places_bounds_sw	= new google.maps.LatLng(parseFloat(d.results[0].geometry.viewport.southwest.lat),parseFloat(d.results[0].geometry.viewport.southwest.lng));
-							
-									places_bounds = new google.maps.LatLngBounds(places_bounds_sw, places_bounds_ne)
-									map.fitBounds(places_bounds);
-							
-								} else {
-									trace("NO RESULTS");
-								}
-						
-								if (has_location) {
-									map.panTo(location);
-								} 
-								if (has_zoom) {
-									map.setZoom(zoom);
-								}
-							}
-						
-						})
-						.error(function(jqXHR, textStatus, errorThrown) {
-							trace("PLACES JSON ERROR");
-							trace("PLACES JSON ERROR: " + textStatus + " " + jqXHR.responseText);
-						})
-						.success(function(d) {
-							trace("PLACES JSON SUCCESS");
-						});
-					} else {
-						if (has_location) {
-							map.panTo(location);
-							if (has_zoom) {
-								map.setZoom(zoom);
-							}
-						} else {
-							trace("DOING TRADITIONAL MAP IFRAME EMBED BECAUSE NO GOOGLE MAP API KEY WAS PROVIDED");
-							VMM.ExternalAPI.googlemaps.createiFrameMap(m);
-						}
-					}
-					
-					
-				}
-				
-				// KML
-				function loadKML() {
-					var kml_url, kml_layer, infowindow, text;
-					
-					kml_url				= m.id + "&output=kml";
-					kml_url				= kml_url.replace("&output=embed", "");
-					kml_layer			= new google.maps.KmlLayer(kml_url, {preserveViewport:true});
-					infowindow			= new google.maps.InfoWindow();
-					kml_layer.setMap(map);
-					
-					google.maps.event.addListenerOnce(kml_layer, "defaultviewport_changed", function() {
-					   
-						if (has_location) {
-							map.panTo(location);
-						} else {
-							map.fitBounds(kml_layer.getDefaultViewport() );
-						}
-						if (has_zoom) {
-							map.setZoom(zoom);
-						}
-					});
-					
-					google.maps.event.addListener(kml_layer, 'click', function(kmlEvent) {
-						text			= kmlEvent.featureData.description;
-						showInfoWindow(text);
-						
-						function showInfoWindow(c) {
-							infowindow.setContent(c);
-							infowindow.open(map);
-						}
-					});
-				}
-				
-				
-			},
-			
-			pushQue: function() {
-				for(var i = 0; i < VMM.master_config.googlemaps.que.length; i++) {
-					VMM.ExternalAPI.googlemaps.create(VMM.master_config.googlemaps.que[i]);
-				}
-				VMM.master_config.googlemaps.que = [];
-			},
-			
-			onMapAPIReady: function() {
-				VMM.master_config.googlemaps.map_active = true;
-				VMM.master_config.googlemaps.places_active = true;
-				VMM.ExternalAPI.googlemaps.onAPIReady();
-			},
-			
-			onPlacesAPIReady: function() {
-				VMM.master_config.googlemaps.places_active = true;
-				VMM.ExternalAPI.googlemaps.onAPIReady();
-			},
-			
-			onAPIReady: function() {
-				if (!VMM.master_config.googlemaps.active) {
-					if (VMM.master_config.googlemaps.map_active && VMM.master_config.googlemaps.places_active) {
-						VMM.master_config.googlemaps.active = true;
-						VMM.ExternalAPI.googlemaps.pushQue();
-					}
-				}
-			},
-			
-			defaultType: function(name) {
-				if (name.toLowerCase() == "satellite" || name.toLowerCase() == "hybrid" || name.toLowerCase() == "terrain" || name.toLowerCase() == "roadmap") {
-					return true;
-				} else {
-					return false;
-				}
-			},
-			
-			map_subdomains: ["", "a.", "b.", "c.", "d."],
-			
-			map_attribution: {
-				"stamen": 			"Map tiles by <a href='http://stamen.com'>Stamen Design</a>, under <a href='http://creativecommons.org/licenses/by/3.0'>CC BY 3.0</a>. Data by <a href='http://openstreetmap.org'>OpenStreetMap</a>, under <a href='http://creativecommons.org/licenses/by-sa/3.0'>CC BY SA</a>.",
-				"apple": 			"Map data &copy; 2012  Apple, Imagery &copy; 2012 Apple"
-			},
-									
-			map_providers: {
-				"toner": {
-					"url": 			"http://{S}tile.stamen.com/toner/{Z}/{X}/{Y}.png",
-					"minZoom": 		0,
-					"maxZoom": 		20,
-					"attribution": 	"stamen"
-					
-				},
-				"toner-lines": {
-					"url": 			"http://{S}tile.stamen.com/toner-lines/{Z}/{X}/{Y}.png",
-					"minZoom": 		0,
-					"maxZoom": 		20,
-					"attribution": 	"stamen"
-				},
-				"toner-labels": {
-					"url": 			"http://{S}tile.stamen.com/toner-labels/{Z}/{X}/{Y}.png",
-					"minZoom": 		0,
-					"maxZoom": 		20,
-					"attribution": 	"stamen"
-				},
-				"sterrain": {
-					"url": 			"http://{S}tile.stamen.com/terrain/{Z}/{X}/{Y}.jpg",
-					"minZoom": 		4,
-					"maxZoom": 		20,
-					"attribution": 	"stamen"
-				},
-				"apple": {
-					"url": 			"http://gsp2.apple.com/tile?api=1&style=slideshow&layers=default&lang=en_US&z={z}&x={x}&y={y}&v=9",
-					"minZoom": 		4,
-					"maxZoom": 		14,
-					"attribution": 	"apple"
-				},
-				"watercolor": {
-					"url": 			"http://{S}tile.stamen.com/watercolor/{Z}/{X}/{Y}.jpg",
-					"minZoom": 		3,
-					"maxZoom": 		16,
-					"attribution": 	"stamen"
-				}
-			}
-		},
-		
-		googleplus: {
-			
-			get: function(m) {
-				var api_key;
-				var gplus = {user: m.user, activity: m.id, id: m.uid};
-				
-				VMM.master_config.googleplus.que.push(gplus);
-				VMM.master_config.googleplus.active = true;
-			},
-			
-			create: function(gplus, callback) {
-				var mediaElem			= "",
-					api_key				= "",
-					g_activity			= "",
-					g_content			= "",
-					g_attachments		= "",
-					gperson_api_url,
-					gactivity_api_url;
-					googleplus_timeout	= setTimeout(VMM.ExternalAPI.googleplus.errorTimeOut, VMM.master_config.timers.api, gplus),
-					callback_timeout	= setTimeout(callback, VMM.master_config.timers.api, gplus);
-					
-				
-				if (VMM.master_config.Timeline.api_keys.google != "") {
-					api_key = VMM.master_config.Timeline.api_keys.google;
-				} else {
-					api_key = Aes.Ctr.decrypt(VMM.master_config.api_keys_master.google, VMM.master_config.vp, 256);
-				}
-				
-				gperson_api_url = "https://www.googleapis.com/plus/v1/people/" + gplus.user + "/activities/public?alt=json&maxResults=100&fields=items(id,url)&key=" + api_key;
-				
-				//mediaElem	=	"<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + gplus.url + "&amp;embedded=true'></iframe>";
-				mediaElem = "GOOGLE PLUS API CALL";
-				
-				VMM.getJSON(gperson_api_url, function(p_data) {
-					for(var i = 0; i < p_data.items.length; i++) {
-						trace("loop");
-						if (p_data.items[i].url.split("posts/")[1] == gplus.activity) {
-							trace("FOUND IT!!");
-							
-							g_activity = p_data.items[i].id;
-							gactivity_api_url = "https://www.googleapis.com/plus/v1/activities/" + g_activity + "?alt=json&key=" + api_key;
-							
-							VMM.getJSON(gactivity_api_url, function(a_data) {
-								trace(a_data);
-								//a_data.url
-								//a_data.image.url
-								//a_data.actor.displayName
-								//a_data.provider.title
-								//a_data.object.content
-								
-								//g_content		+=	"<h4>" + a_data.title + "</h4>";
-								
-								if (typeof a_data.annotation != 'undefined') {
-									g_content	+=	"<div class='googleplus-annotation'>'" + a_data.annotation + "</div>";
-									g_content	+=	a_data.object.content;
-								} else {
-									g_content	+=	a_data.object.content;
-								}
-								
-								if (typeof a_data.object.attachments != 'undefined') {
-									
-									//g_attachments	+=	"<div class='googleplus-attachemnts'>";
-									
-									for(var k = 0; k < a_data.object.attachments.length; k++) {
-										if (a_data.object.attachments[k].objectType == "photo") {
-											g_attachments	=	"<a href='" + a_data.object.url + "' target='_blank'>" + "<img src='" + a_data.object.attachments[k].image.url + "' class='article-thumb'></a>" + g_attachments;
-										} else if (a_data.object.attachments[k].objectType == "video") {
-											g_attachments	=	"<img src='" + a_data.object.attachments[k].image.url + "' class='article-thumb'>" + g_attachments;
-											g_attachments	+=	"<div>";
-											g_attachments	+=	"<a href='" + a_data.object.attachments[k].url + "' target='_blank'>"
-											g_attachments	+=	"<h5>" + a_data.object.attachments[k].displayName + "</h5>";
-											//g_attachments	+=	"<p>" + a_data.object.attachments[k].content + "</p>";
-											g_attachments	+=	"</a>";
-											g_attachments	+=	"</div>";
-										} else if (a_data.object.attachments[k].objectType == "article") {
-											g_attachments	+=	"<div>";
-											g_attachments	+=	"<a href='" + a_data.object.attachments[k].url + "' target='_blank'>"
-											g_attachments	+=	"<h5>" + a_data.object.attachments[k].displayName + "</h5>";
-											g_attachments	+=	"<p>" + a_data.object.attachments[k].content + "</p>";
-											g_attachments	+=	"</a>";
-											g_attachments	+=	"</div>";
-										}
-										
-										trace(a_data.object.attachments[k]);
-									}
-									
-									g_attachments	=	"<div class='googleplus-attachments'>" + g_attachments + "</div>";
-								}
-								
-								//mediaElem		=	"<div class='googleplus'>";
-								mediaElem		=	"<div class='googleplus-content'>" + g_content + g_attachments + "</div>";
-
-								mediaElem		+=	"<div class='vcard author'><a class='screen-name url' href='" + a_data.url + "' target='_blank'>";
-								mediaElem		+=	"<span class='avatar'><img src='" + a_data.actor.image.url + "' style='max-width: 32px; max-height: 32px;'></span>"
-								mediaElem		+=	"<span class='fn'>" + a_data.actor.displayName + "</span>";
-								mediaElem		+=	"<span class='nickname'><span class='thumbnail-inline'></span></span>";
-								mediaElem		+=	"</a></div>";
-								
-								VMM.attachElement("#googleplus_" + gplus.activity, mediaElem);
-								
-								
-							});
-							
-							break;
-						}
-					}
-					
-					
-					
-				})
-				.error(function(jqXHR, textStatus, errorThrown) {
-					var error_obj = VMM.parseJSON(jqXHR.responseText);
-					trace(error_obj.error.message);
-					VMM.attachElement("#googleplus_" + gplus.activity, VMM.MediaElement.loadingmessage("<p>ERROR LOADING GOOGLE+ </p><p>" + error_obj.error.message + "</p>"));
-				})
-				.success(function(d) {
-					clearTimeout(googleplus_timeout);
-					clearTimeout(callback_timeout);
-					callback();
-				});
-				
-				
-				
-			},
-			
-			pushQue: function() {
-				if (VMM.master_config.googleplus.que.length > 0) {
-					VMM.ExternalAPI.googleplus.create(VMM.master_config.googleplus.que[0], VMM.ExternalAPI.googleplus.pushQue);
-					VMM.master_config.googleplus.que.remove(0);
-				}
-				/*
-				for(var i = 0; i < VMM.master_config.googleplus.que.length; i++) {
-					VMM.ExternalAPI.googleplus.create(VMM.master_config.googleplus.que[i]);
-				}
-				VMM.master_config.googleplus.que = [];
-				*/
-			},
-			
-			errorTimeOut: function(gplus) {
-				trace("GOOGLE+ JSON ERROR TIMEOUT " + gplus.activity);
-				VMM.attachElement("#googleplus_" + gplus.activity, VMM.MediaElement.loadingmessage("<p>Still waiting on GOOGLE+ </p><p>" + gplus.activity + "</p>"));
-				
-			}
-			
-		},
-		
-		googledocs: {
-			
-			get: function(m) {
-				VMM.master_config.googledocs.que.push(m);
-				VMM.master_config.googledocs.active = true;
-			},
-			
-			create: function(m) {
-				var mediaElem = ""; 
-				if (m.id.match(/docs.google.com/i)) {
-					mediaElem	=	"<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + m.id + "&amp;embedded=true'></iframe>";
-				} else {
-					mediaElem	=	"<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + "http://docs.google.com/viewer?url=" + m.id + "&amp;embedded=true'></iframe>";
-				}
-				VMM.attachElement("#"+m.uid, mediaElem);
-			},
-			
-			pushQue: function() {
-				
-				for(var i = 0; i < VMM.master_config.googledocs.que.length; i++) {
-					VMM.ExternalAPI.googledocs.create(VMM.master_config.googledocs.que[i]);
-				}
-				VMM.master_config.googledocs.que = [];
-			}
-		
-		},
-		
-		flickr: {
-			
-			get: function(m) {
-				VMM.master_config.flickr.que.push(m);
-				VMM.master_config.flickr.active = true;
-			},
-			
-			create: function(m, callback) {
-				var api_key,
-					callback_timeout= setTimeout(callback, VMM.master_config.timers.api, m);
-					
-				if (typeof VMM.master_config.Timeline != 'undefined' && VMM.master_config.Timeline.api_keys.flickr != "") {
-					api_key = VMM.master_config.Timeline.api_keys.flickr;
-				} else {
-					api_key = Aes.Ctr.decrypt(VMM.master_config.api_keys_master.flickr, VMM.master_config.vp, 256)
-				}
-				var the_url = "http://api.flickr.com/services/rest/?method=flickr.photos.getSizes&api_key=" + api_key + "&photo_id=" + m.id + "&format=json&jsoncallback=?";
-				
-				VMM.getJSON(the_url, function(d) {
-					var flickr_id = d.sizes.size[0].url.split("photos\/")[1].split("/")[1];
-				
-					var flickr_large_id = "#" + m.uid,
-						flickr_thumb_id = "#" + m.uid + "_thumb";
-						//flickr_thumb_id = "flickr_" + uid + "_thumb";
-				
-					var flickr_img_size,
-						flickr_img_thumb,
-						flickr_size_found = false,
-						flickr_best_size = "Large";
-				
-					flickr_best_size = VMM.ExternalAPI.flickr.sizes(VMM.master_config.sizes.api.height);
-					for(var i = 0; i < d.sizes.size.length; i++) {
-						if (d.sizes.size[i].label == flickr_best_size) {
-							
-							flickr_size_found = true;
-							flickr_img_size = d.sizes.size[i].source;
-						}
-					}
-					if (!flickr_size_found) {
-						flickr_img_size = d.sizes.size[d.sizes.size.length - 2].source;
-					}
-				
-					flickr_img_thumb = d.sizes.size[0].source;
-					VMM.Lib.attr(flickr_large_id, "src", flickr_img_size);
-					//VMM.attachElement(flickr_large_id, "<a href='" + flick.link + "' target='_blank'><img src='" + flickr_img_size + "'></a>");
-					VMM.attachElement(flickr_thumb_id, "<img src='" + flickr_img_thumb + "'>");
-					
-				})
-				.error(function(jqXHR, textStatus, errorThrown) {
-					trace("FLICKR error");
-					trace("FLICKR ERROR: " + textStatus + " " + jqXHR.responseText);
-				})
-				.success(function(d) {
-					clearTimeout(callback_timeout);
-					callback();
-				});
-				
-			},
-			
-			pushQue: function() {
-				if (VMM.master_config.flickr.que.length > 0) {
-					VMM.ExternalAPI.flickr.create(VMM.master_config.flickr.que[0], VMM.ExternalAPI.flickr.pushQue);
-					VMM.master_config.flickr.que.remove(0);
-				}
-			},
-			
-			sizes: function(s) {
-				var _size = "";
-				if (s <= 75) {
-					_size = "Thumbnail";
-				} else if (s <= 180) {
-					_size = "Small";
-				} else if (s <= 240) {
-					_size = "Small 320";
-				} else if (s <= 375) {
-					_size = "Medium";
-				} else if (s <= 480) {
-					_size = "Medium 640";
-				} else if (s <= 600) {
-					_size = "Large";
-				} else {
-					_size = "Large";
-				}
-				
-				return _size;
-			}
-			
-		},
-		
-		instagram: {
-			get: function(m, thumb) {
-				if (thumb) {
-					return "http://instagr.am/p/" + m.id + "/media/?size=t";
-				} else {
-					return "http://instagr.am/p/" + m.id + "/media/?size=" + VMM.ExternalAPI.instagram.sizes(VMM.master_config.sizes.api.height);
-				}
-			},
-			
-			sizes: function(s) {
-				var _size = "";
-				if (s <= 150) {
-					_size = "t";
-				} else if (s <= 306) {
-					_size = "m";
-				} else {
-					_size = "l";
-				}
-				
-				return _size;
-			}
-		},
-		
-		soundcloud: {
-			
-			get: function(m) {
-				VMM.master_config.soundcloud.que.push(m);
-				VMM.master_config.soundcloud.active = true;
-			},
-			
-			create: function(m, callback) {
-				var the_url = "http://soundcloud.com/oembed?url=" + m.id + "&format=js&callback=?";
-				VMM.getJSON(the_url, function(d) {
-					VMM.attachElement("#"+m.uid, d.html);
-					callback();
-				});
-			},
-			
-			pushQue: function() {
-				if (VMM.master_config.soundcloud.que.length > 0) {
-					VMM.ExternalAPI.soundcloud.create(VMM.master_config.soundcloud.que[0], VMM.ExternalAPI.soundcloud.pushQue);
-					VMM.master_config.soundcloud.que.remove(0);
-				}
-			}
-			
-		},
-		
-		wikipedia: {
-			
-			get: function(m) {
-				VMM.master_config.wikipedia.que.push(m);
-				VMM.master_config.wikipedia.active = true;
-			},
-			
-			create: function(m, callback) {
-				var the_url = "http://" + m.lang + ".wikipedia.org/w/api.php?action=query&prop=extracts&redirects=&titles=" + m.id + "&exintro=1&format=json&callback=?";
-				callback_timeout= setTimeout(callback, VMM.master_config.timers.api, m);
-				
-				if ( VMM.Browser.browser == "Explorer" && parseInt(VMM.Browser.version, 10) >= 7 && window.XDomainRequest) {
-					var temp_text	=	"<h4><a href='http://" + VMM.master_config.language.api.wikipedia + ".wikipedia.org/wiki/" + m.id + "' target='_blank'>" + m.url + "</a></h4>";
-					temp_text		+=	"<span class='wiki-source'>" + VMM.master_config.language.messages.wikipedia + "</span>";
-					temp_text		+=	"<p>Wikipedia entry unable to load using Internet Explorer 8 or below.</p>";
-					VMM.attachElement("#"+m.uid, temp_text );
-				}
-				
-				VMM.getJSON(the_url, function(d) {
-					if (d.query) {
-						var wiki_extract,
-							wiki_title, 
-							_wiki = "", 
-							wiki_text = "", 
-							wiki_number_of_paragraphs = 1, 
-							wiki_text_array = [];
-						
-						wiki_extract = VMM.Util.getObjectAttributeByIndex(d.query.pages, 0).extract;
-						wiki_title = VMM.Util.getObjectAttributeByIndex(d.query.pages, 0).title;
-						
-						if (wiki_extract.match("<p>")) {
-							wiki_text_array = wiki_extract.split("<p>");
-						} else {
-							wiki_text_array.push(wiki_extract);
-						}
-					
-						for(var i = 0; i < wiki_text_array.length; i++) {
-							if (i+1 <= wiki_number_of_paragraphs && i+1 < wiki_text_array.length) {
-								wiki_text	+= "<p>" + wiki_text_array[i+1];
-							}
-						}
-					
-						_wiki		=	"<h4><a href='http://" + VMM.master_config.language.api.wikipedia + ".wikipedia.org/wiki/" + wiki_title + "' target='_blank'>" + wiki_title + "</a></h4>";
-						_wiki		+=	"<span class='wiki-source'>" + VMM.master_config.language.messages.wikipedia + "</span>";
-						_wiki		+=	VMM.Util.linkify_wikipedia(wiki_text);
-					
-						if (wiki_extract.match("REDIRECT")) {
-						
-						} else {
-							VMM.attachElement("#"+m.uid, _wiki );
-						}
-					}
-					//callback();
-				})
-				.error(function(jqXHR, textStatus, errorThrown) {
-					trace("WIKIPEDIA error");
-					trace("WIKIPEDIA ERROR: " + textStatus + " " + jqXHR.responseText);
-					trace(errorThrown);
-					
-					VMM.attachElement("#"+m.uid, VMM.MediaElement.loadingmessage("<p>Wikipedia is not responding</p>"));
-					// TRY AGAIN?
-					clearTimeout(callback_timeout);
-					if (VMM.master_config.wikipedia.tries < 4) {
-						trace("WIKIPEDIA ATTEMPT " + VMM.master_config.wikipedia.tries);
-						trace(m);
-						VMM.master_config.wikipedia.tries++;
-						VMM.ExternalAPI.wikipedia.create(m, callback);
-					} else {
-						callback();
-					}
-					
-				})
-				.success(function(d) {
-					VMM.master_config.wikipedia.tries = 0;
-					clearTimeout(callback_timeout);
-					callback();
-				});
-				
-				
-			},
-			
-			pushQue: function() {
-				
-				if (VMM.master_config.wikipedia.que.length > 0) {
-					trace("WIKIPEDIA PUSH QUE " + VMM.master_config.wikipedia.que.length);
-					VMM.ExternalAPI.wikipedia.create(VMM.master_config.wikipedia.que[0], VMM.ExternalAPI.wikipedia.pushQue);
-					VMM.master_config.wikipedia.que.remove(0);
-				}
-
-			}
-			
-		},
-		
-		youtube: {
-			
-			get: function(m) {
-				var the_url = "http://gdata.youtube.com/feeds/api/videos/" + m.id + "?v=2&alt=jsonc&callback=?";
-					
-				VMM.master_config.youtube.que.push(m);
-				
-				if (!VMM.master_config.youtube.active) {
-					if (!VMM.master_config.youtube.api_loaded) {
-						LoadLib.js('http://www.youtube.com/player_api', function() {
-							trace("YouTube API Library Loaded");
-						});
-					}
-				}
-				
-				// THUMBNAIL
-				VMM.getJSON(the_url, function(d) {
-					VMM.ExternalAPI.youtube.createThumb(d, m)
-				});
-				
-			},
-			
-			create: function(m) {
-				if (typeof(m.start) != 'undefined') {
-					
-					var vidstart			= m.start.toString(),
-						vid_start_minutes	= 0,
-						vid_start_seconds	= 0;
-						
-					if (vidstart.match('m')) {
-						vid_start_minutes = parseInt(vidstart.split("m")[0], 10);
-						vid_start_seconds = parseInt(vidstart.split("m")[1].split("s")[0], 10);
-						m.start = (vid_start_minutes * 60) + vid_start_seconds;
-					} else {
-						m.start = 0;
-					}
-				} else {
-					m.start = 0;
-				}
-				
-				var p = {
-					active: 				false,
-					player: 				{},
-					name:					m.uid,
-					playing:				false,
-					hd:						false
-				};
-				
-				if (typeof(m.hd) != 'undefined') {
-					p.hd = true;
-				}
-				
-				p.player[m.id] = new YT.Player(m.uid, {
-					height: 				'390',
-					width: 					'640',
-					playerVars: {
-						enablejsapi:		1,
-						color: 				'white',
-						showinfo:			0,
-						theme:				'light',
-						start:				m.start,
-						rel:				0
-					},
-					videoId: m.id,
-					events: {
-						'onReady': 			VMM.ExternalAPI.youtube.onPlayerReady,
-						'onStateChange': 	VMM.ExternalAPI.youtube.onStateChange
-					}
-				});
-				
-				VMM.master_config.youtube.array.push(p);
-			},
-			
-			createThumb: function(d, m) {
-				trace("CREATE THUMB");
-				trace(d);
-				trace(m);
-				if (typeof d.data != 'undefined') {
-					var thumb_id = "#" + m.uid + "_thumb";
-					VMM.attachElement(thumb_id, "<img src='" + d.data.thumbnail.sqDefault + "'>");
-					
-				}
-			},
-			
-			pushQue: function() {
-				for(var i = 0; i < VMM.master_config.youtube.que.length; i++) {
-					VMM.ExternalAPI.youtube.create(VMM.master_config.youtube.que[i]);
-				}
-				VMM.master_config.youtube.que = [];
-			},
-			
-			onAPIReady: function() {
-				VMM.master_config.youtube.active = true;
-				VMM.ExternalAPI.youtube.pushQue();
-			},
-			
-			stopPlayers: function() {
-				for(var i = 0; i < VMM.master_config.youtube.array.length; i++) {
-					if (VMM.master_config.youtube.array[i].playing) {
-						var the_name = VMM.master_config.youtube.array[i].name;
-						VMM.master_config.youtube.array[i].player[the_name].stopVideo();
-					}
-				}
-			},
-			
-			onStateChange: function(e) {
-				for(var i = 0; i < VMM.master_config.youtube.array.length; i++) {
-					var the_name = VMM.master_config.youtube.array[i].name;
-					if (VMM.master_config.youtube.array[i].player[the_name] == e.target) {
-						if (e.data == YT.PlayerState.PLAYING) {
-							VMM.master_config.youtube.array[i].playing = true;
-							trace(VMM.master_config.youtube.array[i].hd)
-							if (VMM.master_config.youtube.array[i].hd) {
-								// SET TO HD
-								// DOESN'T WORK AS OF NOW
-								//VMM.master_config.youtube.array[i].player.setPlaybackQuality("hd720");
-							}
-						}
-					}
-				}
-			},
-			
-			onPlayerReady: function(e) {
-				
-			}
-			
-			
-		},
-		
-		vimeo: {
-			
-			get: function(m) {
-				VMM.master_config.vimeo.que.push(m);
-				VMM.master_config.vimeo.active = true;
-			},
-			
-			create: function(m, callback) {
-				trace("VIMEO CREATE");
-				
-				// THUMBNAIL
-				var thumb_url	= "http://vimeo.com/api/v2/video/" + m.id + ".json",
-					video_url	= "http://player.vimeo.com/video/" + m.id + "?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff";
-					
-				VMM.getJSON(thumb_url, function(d) {
-					VMM.ExternalAPI.vimeo.createThumb(d, m);
-					callback();
-				});
-				
-				
-				// VIDEO
-				VMM.attachElement("#" + m.uid, "<iframe autostart='false' frameborder='0' width='100%' height='100%' src='" + video_url + "'></iframe>");
-				
-			},
-			
-			createThumb: function(d, m) {
-				trace("VIMEO CREATE THUMB");
-				var thumb_id = "#" + m.uid + "_thumb";
-				VMM.attachElement(thumb_id, "<img src='" + d[0].thumbnail_small + "'>");
-			},
-			
-			pushQue: function() {
-				if (VMM.master_config.vimeo.que.length > 0) {
-					VMM.ExternalAPI.vimeo.create(VMM.master_config.vimeo.que[0], VMM.ExternalAPI.vimeo.pushQue);
-					VMM.master_config.vimeo.que.remove(0);
-				}
-			}
-			
-		},
-		
-		vine: {
-			
-			get: function(m) {
-				VMM.master_config.vine.que.push(m);
-				VMM.master_config.vine.active = true;
-			},
-			
-			create: function(m, callback) {
-				trace("VINE CREATE");				
-				
-				var video_url	= "https://vine.co/v/" + m.id + "/embed/simple";
-					
-				
-				
-				// VIDEO
-				// TODO: NEED TO ADD ASYNC SCRIPT TO TIMELINE FLOW
-				VMM.attachElement("#" + m.uid, "<iframe frameborder='0' width='100%' height='100%' src='" + video_url + "'></iframe><script async src='http://platform.vine.co/static/scripts/embed.js' charset='utf-8'></script>");
-				
-			},
-			
-			pushQue: function() {
-				if (VMM.master_config.vine.que.length > 0) {
-					VMM.ExternalAPI.vine.create(VMM.master_config.vine.que[0], VMM.ExternalAPI.vine.pushQue);
-					VMM.master_config.vine.que.remove(0);
-				}
-			}
-			
-		},
-		
-		webthumb: {
-			
-			get: function(m, thumb) {
-				VMM.master_config.webthumb.que.push(m);
-				VMM.master_config.webthumb.active = true;
-			},
-			
-			sizes: function(s) {
-				var _size = "";
-				if (s <= 150) {
-					_size = "t";
-				} else if (s <= 306) {
-					_size = "m";
-				} else {
-					_size = "l";
-				}
-				
-				return _size;
-			},
-			
-			create: function(m) {
-				trace("WEB THUMB CREATE");
-				
-				var thumb_url	= "http://free.pagepeeker.com/v2/thumbs.php?";
-					url			= m.id.replace("http://", "");//.split("/")[0];
-					
-				// Main Image
-				VMM.attachElement("#" + m.uid, "<a href='" + m.id + "' target='_blank'><img src='" + thumb_url + "size=x&url=" + url + "'></a>");
-				
-				// Thumb
-				VMM.attachElement("#" + m.uid + "_thumb", "<img src='" + thumb_url + "size=t&url=" + url + "'>");
-			},
-			
-			pushQue: function() {
-				for(var i = 0; i < VMM.master_config.webthumb.que.length; i++) {
-					VMM.ExternalAPI.webthumb.create(VMM.master_config.webthumb.que[i]);
-				}
-				VMM.master_config.webthumb.que = [];
-			}
-		}
-	
-	}).init();
-	
-}
-
-/*  YOUTUBE API READY
-	Can't find a way to customize this callback and keep it in the VMM namespace
-	Youtube wants it to be this function. 
-================================================== */
-function onYouTubePlayerAPIReady() {
-	trace("GLOBAL YOUTUBE API CALLED")
-	VMM.ExternalAPI.youtube.onAPIReady();
-}
-
-/* **********************************************
-     Begin VMM.MediaElement.js
-********************************************** */
-
-/* MediaElement
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.MediaElement == 'undefined') {
-	
-	VMM.MediaElement = ({
-		
-		init: function() {
-			return this;
-		},
-		
-		loadingmessage: function(m) {
-			return "<div class='vco-loading'><div class='vco-loading-container'><div class='vco-loading-icon'></div>" + "<div class='vco-message'><p>" + m + "</p></div></div></div>";
-		},
-		
-		thumbnail: function(data, w, h, uid) {
-			var _w		= 16,
-				_h		= 24,
-				_uid	= "";
-				
-			if (w != null && w != "") {_w = w};
-			if (h != null && h != "") {_h = h};
-			if (uid != null && uid != "") {_uid = uid};
-			
-			if (data.media != null && data.media != "") {
-				var _valid		= true,
-					mediaElem	= "",
-					m			= VMM.MediaType(data.media); //returns an object with .type and .id
-					
-				// DETERMINE THUMBNAIL OR ICON
-				if (data.thumbnail != null && data.thumbnail != "") {
-					trace("CUSTOM THUMB");
-					mediaElem		=	"<div class='thumbnail thumb-custom' id='" + uid + "_custom_thumb'><img src='" + data.thumbnail + "'></div>";
-					return mediaElem;
-				} else if (m.type == "image") {
-					mediaElem		=	"<div class='thumbnail thumb-photo'></div>";
-					return mediaElem;
-				} else if (m.type	==	"flickr") {
-					mediaElem		=	"<div class='thumbnail thumb-photo' id='" + uid + "_thumb'></div>";
-					return mediaElem;
-				} else if (m.type	==	"instagram") {
-					mediaElem		=	"<div class='thumbnail thumb-instagram' id='" + uid + "_thumb'><img src='" + VMM.ExternalAPI.instagram.get(m.id, true) + "'></div>";
-					return mediaElem;
-				} else if (m.type	==	"youtube") {
-					mediaElem		=	"<div class='thumbnail thumb-youtube' id='" + uid + "_thumb'></div>";
-					return mediaElem;
-				} else if (m.type	==	"googledoc") {
-					mediaElem		=	"<div class='thumbnail thumb-document'></div>";
-					return mediaElem;
-				} else if (m.type	==	"vimeo") {
-					mediaElem		=	"<div class='thumbnail thumb-vimeo' id='" + uid + "_thumb'></div>";
-					return mediaElem;
-				} else if (m.type  ==  "vine") {
-					mediaElem		=  "<div class='thumbnail thumb-vine'></div>";
-					return mediaElem;
-				} else if (m.type  ==  "dailymotion") {
-					mediaElem		=  "<div class='thumbnail thumb-video'></div>";
-					return mediaElem;
-				} else if (m.type	==	"twitter"){
-					mediaElem		=	"<div class='thumbnail thumb-twitter'></div>";
-					return mediaElem;
-				} else if (m.type	==	"twitter-ready") {
-					mediaElem		=	"<div class='thumbnail thumb-twitter'></div>";
-					return mediaElem;
-				} else if (m.type	==	"soundcloud") {
-					mediaElem		=	"<div class='thumbnail thumb-audio'></div>";
-					return mediaElem;
-				} else if (m.type	==	"google-map") {
-					mediaElem		=	"<div class='thumbnail thumb-map'></div>";
-					return mediaElem;
-				} else if (m.type		==	"googleplus") {
-					mediaElem		=	"<div class='thumbnail thumb-googleplus'></div>";
-					return mediaElem;
-				} else if (m.type	==	"wikipedia") {
-					mediaElem		=	"<div class='thumbnail thumb-wikipedia'></div>";
-					return mediaElem;
-				} else if (m.type	==	"storify") {
-					mediaElem		=	"<div class='thumbnail thumb-storify'></div>";
-					return mediaElem;
-				} else if (m.type	==	"quote") {
-					mediaElem		=	"<div class='thumbnail thumb-quote'></div>";
-					return mediaElem;
-				} else if (m.type	==	"iframe") {
-					mediaElem		=	"<div class='thumbnail thumb-video'></div>";
-					return mediaElem;
-				} else if (m.type	==	"unknown") {
-					if (m.id.match("blockquote")) {
-						mediaElem	=	"<div class='thumbnail thumb-quote'></div>";
-					} else {
-						mediaElem	=	"<div class='thumbnail thumb-plaintext'></div>";
-					}
-					return mediaElem;
-				} else if (m.type	==	"website") {
-					mediaElem		=	"<div class='thumbnail thumb-website' id='" + uid + "_thumb'></div>";
-					return mediaElem;
-				} else {
-					mediaElem = "<div class='thumbnail thumb-plaintext'></div>";
-					return mediaElem;
-				}
-			} 
-		},
-		
-		create: function(data, uid) {
-			var _valid = false,
-				//loading_messege			=	"<span class='messege'><p>" + VMM.master_config.language.messages.loading + "</p></span>";
-				loading_messege			=	VMM.MediaElement.loadingmessage(VMM.master_config.language.messages.loading + "...");
-			
-			if (data.media != null && data.media != "") {
-				var mediaElem = "", captionElem = "", creditElem = "", _id = "", isTextMedia = false, m;
-				
-				m = VMM.MediaType(data.media); //returns an object with .type and .id
-				m.uid = uid;
-				_valid = true;
-				
-			// CREDIT
-				if (data.credit != null && data.credit != "") {
-					creditElem			=	"<div class='credit'>" + VMM.Util.linkify_with_twitter(data.credit, "_blank") + "</div>";
-				}
-			// CAPTION
-				if (data.caption != null && data.caption != "") {
-					captionElem			=	"<div class='caption'>" + VMM.Util.linkify_with_twitter(data.caption, "_blank") + "</div>";
-				}
-			// IMAGE
-				if (m.type				==	"image") {
-					if (m.id.match("https://")) {
-						m.id = m.id.replace("https://","http://");
-					}
-					mediaElem			=	"<div class='media-image media-shadow'><img src='" + m.id + "' class='media-image'></div>";
-			// FLICKR
-				} else if (m.type		==	"flickr") {
-					//mediaElem			=	"<div class='media-image media-shadow' id='" + uid + "'>" + loading_messege + "</div>";
-					mediaElem			=	"<div class='media-image media-shadow'><a href='" + m.link + "' target='_blank'><img id='" + uid + "'></a></div>";
-					VMM.ExternalAPI.flickr.get(m);
-			// INSTAGRAM
-				} else if (m.type		==	"instagram") {
-					mediaElem			=	"<div class='media-image media-shadow'><a href='" + m.link + "' target='_blank'><img src='" + VMM.ExternalAPI.instagram.get(m) + "'></a></div>";
-					//VMM.ExternalAPI.instagram.get(m.id, uid);
-			// GOOGLE DOCS
-				} else if (m.type		==	"googledoc") {
-					mediaElem			=	"<div class='media-frame media-shadow doc' id='" + m.uid + "'>" + loading_messege + "</div>";
-					VMM.ExternalAPI.googledocs.get(m);
-			// YOUTUBE
-				} else if (m.type		==	"youtube") {
-					mediaElem			=	"<div class='media-shadow'><div class='media-frame video youtube' id='" + m.uid + "'>" + loading_messege + "</div></div>";
-					VMM.ExternalAPI.youtube.get(m);
-			// VIMEO
-				} else if (m.type		==	"vimeo") {
-					mediaElem			=	"<div class='media-shadow media-frame video vimeo' id='" + m.uid + "'>" + loading_messege + "</div>";
-					VMM.ExternalAPI.vimeo.get(m);
-			// DAILYMOTION
-				} else if (m.type		==	"dailymotion") {
-					mediaElem			=	"<div class='media-shadow'><iframe class='media-frame video dailymotion' autostart='false' frameborder='0' width='100%' height='100%' src='http://www.dailymotion.com/embed/video/" + m.id + "'></iframe></div>";
-			// VINE
-				} else if (m.type		==	"vine") {
-					mediaElem			=	"<div class='media-shadow media-frame video vine' id='" + m.uid + "'>" + loading_messege + "</div>";
-					VMM.ExternalAPI.vine.get(m);
-			// TWITTER
-				} else if (m.type		==	"twitter"){
-					mediaElem			=	"<div class='twitter' id='" + m.uid + "'>" + loading_messege + "</div>";
-					isTextMedia			=	true;
-					VMM.ExternalAPI.twitter.get(m);
-			// TWITTER
-				} else if (m.type		==	"twitter-ready") {
-					isTextMedia			=	true;
-					mediaElem			=	m.id;
-			// SOUNDCLOUD
-				} else if (m.type		==	"soundcloud") {
-					mediaElem			=	"<div class='media-frame media-shadow soundcloud' id='" + m.uid + "'>" + loading_messege + "</div>";
-					VMM.ExternalAPI.soundcloud.get(m);
-			// GOOGLE MAPS
-				} else if (m.type		==	"google-map") {
-					mediaElem			=	"<div class='media-frame media-shadow map' id='" + m.uid + "'>" + loading_messege + "</div>";
-					VMM.ExternalAPI.googlemaps.get(m);
-			// GOOGLE PLUS
-				} else if (m.type		==	"googleplus") {
-					_id					=	"googleplus_" + m.id;
-					mediaElem			=	"<div class='googleplus' id='" + _id + "'>" + loading_messege + "</div>";
-					isTextMedia			=	true;
-					VMM.ExternalAPI.googleplus.get(m);
-			// WIKIPEDIA
-				} else if (m.type		==	"wikipedia") {
-					mediaElem			=	"<div class='wikipedia' id='" + m.uid + "'>" + loading_messege + "</div>";
-					isTextMedia			=	true;
-					VMM.ExternalAPI.wikipedia.get(m);
-			// STORIFY
-				} else if (m.type		==	"storify") { 
-					isTextMedia			=	true;
-					mediaElem			=	"<div class='plain-text-quote'>" + m.id + "</div>";
-			// IFRAME
-				} else if (m.type		==	"iframe") { 
-					isTextMedia			=	true;
-					mediaElem			=	"<div class='media-shadow'><iframe class='media-frame video' autostart='false' frameborder='0' width='100%' height='100%' src='" + m.id + "'></iframe></div>";
-			// QUOTE
-				} else if (m.type		==	"quote") { 
-					isTextMedia			=	true;
-					mediaElem			=	"<div class='plain-text-quote'>" + m.id + "</div>";
-			// UNKNOWN
-				} else if (m.type		==	"unknown") { 
-					trace("NO KNOWN MEDIA TYPE FOUND TRYING TO JUST PLACE THE HTML"); 
-					isTextMedia			=	true;
-					mediaElem			=	"<div class='plain-text'><div class='container'>" + VMM.Util.properQuotes(m.id) + "</div></div>";
-			// WEBSITE
-				} else if (m.type		==	"website") { 
-					
-					mediaElem			=	"<div class='media-shadow website' id='" + m.uid + "'>" + loading_messege + "</div>";
-					VMM.ExternalAPI.webthumb.get(m);
-					//mediaElem			=	"<div class='media-shadow website'><a href='" + m.id + "' target='_blank'>" + "<img src='http://api1.thumbalizr.com/?url=" + m.id.replace(/[\./]$/g, "") + "&width=300' class='media-image'></a></div>";
-					
-			// NO MATCH
-				} else {
-					trace("NO KNOWN MEDIA TYPE FOUND");
-					trace(m.type);
-				}
-				
-			// WRAP THE MEDIA ELEMENT
-				mediaElem				=	"<div class='media-container' >" + mediaElem + creditElem + captionElem + "</div>";
-			// RETURN
-				if (isTextMedia) {
-					return "<div class='text-media'><div class='media-wrapper'>" + mediaElem + "</div></div>";
-				} else {
-					return "<div class='media-wrapper'>" + mediaElem + "</div>";
-				}
-				
-			};
-			
-		}
-		
-	}).init();
-}
-
-/* **********************************************
-     Begin VMM.MediaType.js
-********************************************** */
-
-/*	MediaType
-	Determines the type of media the url string is.
-	returns an object with .type and .id
-	the id is a key piece of information needed to make
-	the request of the api.
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.MediaType == 'undefined') {
-	
-	VMM.MediaType = function(_d) {
-		var d		= _d.replace(/^\s\s*/, '').replace(/\s\s*$/, ''),
-			success	= false,
-			media	= {
-				type:		"unknown",
-				id:			"",
-				start:		0,
-				hd:			false,
-				link:		"",
-				lang:		VMM.Language.lang,
-				uniqueid:	VMM.Util.unique_ID(6)
-			};
-		
-		if (d.match("div class='twitter'")) {
-			media.type = "twitter-ready";
-		    media.id = d;
-		    success = true;
-		} else if (d.match('(www.)?youtube|youtu\.be')) {
-			if (d.match('v=')) {
-				media.id	= VMM.Util.getUrlVars(d)["v"];
-			} else if (d.match('\/embed\/')) {
-				media.id	= d.split("embed\/")[1].split(/[?&]/)[0];
-			} else if (d.match(/v\/|v=|youtu\.be\//)){
-				media.id	= d.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0];
-			} else {
-				trace("YOUTUBE IN URL BUT NOT A VALID VIDEO");
-			}
-			media.start	= VMM.Util.getUrlVars(d)["t"];
-			media.hd	= VMM.Util.getUrlVars(d)["hd"];
-		    media.type = "youtube";
-		    success = true;
-		} else if (d.match('(player.)?vimeo\.com')) {
-		    media.type = "vimeo";
-		    media.id = d.split(/video\/|\/\/vimeo\.com\//)[1].split(/[?&]/)[0];;
-		    success = true;
-	    } else if (d.match('(www.)?dailymotion\.com')) {
-			media.id = d.split(/video\/|\/\/dailymotion\.com\//)[1];
-			media.type = "dailymotion";
-			success = true;
-	    } else if (d.match('(www.)?vine\.co')) {
-			trace("VINE");
-			//https://vine.co/v/b55LOA1dgJU
-			if (d.match("vine.co/v/")) {
-				media.id = d.split("vine.co/v/")[1];
-				trace(media.id);
-			}
-			trace(d);
-			media.type = "vine";
-			success = true;
-		} else if (d.match('(player.)?soundcloud\.com')) {
-			media.type = "soundcloud";
-			media.id = d;
-			success = true;
-		} else if (d.match('(www.)?twitter\.com') && d.match('status') ) {
-			if (d.match("status\/")) {
-				media.id = d.split("status\/")[1];
-			} else if (d.match("statuses\/")) {
-				media.id = d.split("statuses\/")[1];
-			} else {
-				media.id = "";
-			}
-			media.type = "twitter";
-			success = true;
-		} else if (d.match("maps.google") && !d.match("staticmap")) {
-			media.type = "google-map";
-		    media.id = d.split(/src=['|"][^'|"]*?['|"]/gi);
-			success = true;
-		} else if (d.match("plus.google")) {
-			media.type = "googleplus";
-		    media.id = d.split("/posts/")[1];
-			//https://plus.google.com/u/0/112374836634096795698/posts/bRJSvCb5mUU
-			//https://plus.google.com/107096716333816995401/posts/J5iMpEDHWNL
-			if (d.split("/posts/")[0].match("u/0/")) {
-				media.user = d.split("u/0/")[1].split("/posts")[0];
-			} else {
-				media.user = d.split("google.com/")[1].split("/posts/")[0];
-			}
-			success = true;
-		} else if (d.match("flickr.com/photos")) {
-			media.type = "flickr";
-			media.id = d.split("photos\/")[1].split("/")[1];
-			media.link = d;
-			success = true;
-		} else if (d.match("instagr.am/p/")) {
-			media.type = "instagram";
-			media.link = d;
-			media.id = d.split("\/p\/")[1].split("/")[0];
-			success = true;
-		} else if (d.match(/jpg|jpeg|png|gif/i) || d.match("staticmap") || d.match("yfrog.com") || d.match("twitpic.com")) {
-			media.type = "image";
-			media.id = d;
-			success = true;
-		} else if (VMM.FileExtention.googleDocType(d)) {
-			media.type = "googledoc";
-			media.id = d;
-			success = true;
-		} else if (d.match('(www.)?wikipedia\.org')) {
-			media.type = "wikipedia";
-			//media.id = d.split("wiki\/")[1];
-			var wiki_id = d.split("wiki\/")[1].split("#")[0].replace("_", " ");
-			media.id = wiki_id.replace(" ", "%20");
-			media.lang = d.split("//")[1].split(".wikipedia")[0];
-			success = true;
-		} else if (d.indexOf('http://') == 0) {
-			media.type = "website";
-			media.id = d;
-			success = true;
-		} else if (d.match('storify')) {
-			media.type = "storify";
-			media.id = d;
-			success = true;
-		} else if (d.match('blockquote')) {
-			media.type = "quote";
-			media.id = d;
-			success = true;
-		} else if (d.match('iframe')) {
-			media.type = "iframe";
-			trace("IFRAME")
-			trace( d.match(/src\=([^\s]*)\s/)[1].split(/"/)[1]);
-			media.id = d.match(/src\=([^\s]*)\s/)[1].split(/"/)[1];
-			success = true;
-		} else {
-			trace("unknown media");  
-			media.type = "unknown";
-			media.id = d;
-			success = true;
-		}
-		
-		if (success) { 
-			return media;
-		} else {
-			trace("No valid media id detected");
-			trace(d);
-		}
-		return false;
-	}
-}
-
-/* **********************************************
-     Begin VMM.TextElement.js
-********************************************** */
-
-/* TextElement
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.TextElement == 'undefined') {
-	
-	VMM.TextElement = ({
-		
-		init: function() {
-			return this;
-		},
-		
-		create: function(data) {
-			return data;
-		}
-		
-	}).init();
-}
-
-/* **********************************************
-     Begin VMM.Media.js
-********************************************** */
-
-/* Media
-================================================== */
-
-/*	* CodeKit Import
-	* http://incident57.com/codekit/
-================================================== */
-// @codekit-prepend "VMM.ExternalAPI.js";
-// @codekit-prepend "VMM.MediaElement.js";
-// @codekit-prepend "VMM.MediaType.js";
-// @codekit-prepend "VMM.TextElement.js";
-
-
-/* **********************************************
-     Begin VMM.DragSlider.js
-********************************************** */
-
-/* DRAG SLIDER
-================================================== */
-if(typeof VMM != 'undefined' && typeof VMM.DragSlider == 'undefined') {
-
-	VMM.DragSlider = function() {
-		var drag = {
-			element:		"",
-			element_move:	"",
-			constraint:		"",
-			sliding:		false,
-			pagex: {
-				start:		0,
-				end:		0
-			},
-			pagey: {
-				start:		0,
-				end:		0
-			},
-			left: {
-				start:		0,
-				end:		0
-			},
-			time: {
-				start:		0,
-				end:		0
-			},
-			touch:			false,
-			ease:			"easeOutExpo"
-		},
-		dragevent = {
-			down:		"mousedown",
-			up:			"mouseup",
-			leave:		"mouseleave",
-			move:		"mousemove"
-		},
-		mousedrag = {
-			down:		"mousedown",
-			up:			"mouseup",
-			leave:		"mouseleave",
-			move:		"mousemove"
-		},
-		touchdrag = {
-			down:		"touchstart",
-			up:			"touchend",
-			leave:		"mouseleave",
-			move:		"touchmove"
-		},
-		dragslider		= this,
-		is_sticky		= false;
-		
-		/* PUBLIC FUNCTIONS
-		================================================== */
-		this.createPanel = function(drag_object, move_object, constraint, touch, sticky) {
-			drag.element		= drag_object;
-			drag.element_move	= move_object;
-			//dragslider			= drag_object;
-			if ( sticky != null && sticky != "") {
-				is_sticky = sticky;
-			}
-			if ( constraint != null && constraint != "") {
-				drag.constraint = constraint;
-			} else {
-				drag.constraint = false;
-			}
-			if ( touch) {
-				drag.touch = touch;
-			} else {
-				drag.touch = false;
-			}
-			trace("TOUCH" + drag.touch);
-			if (drag.touch) {
-				dragevent = touchdrag;
-			} else {
-				dragevent = mousedrag;
-			}
-			
-			makeDraggable(drag.element, drag.element_move);
-		}
-		
-		this.updateConstraint = function(constraint) {
-			trace("updateConstraint");
-			drag.constraint = constraint;
-		}
-		
-		this.cancelSlide = function(e) {
-			VMM.unbindEvent(drag.element, onDragMove, dragevent.move);
-			return true;
-		}
-		
-		/* PRIVATE FUNCTIONS
-		================================================== */
-		function makeDraggable(drag_object, move_object) {
-			
-			VMM.bindEvent(drag_object, onDragStart, dragevent.down, {element: move_object, delement: drag_object});
-			VMM.bindEvent(drag_object, onDragEnd, dragevent.up, {element: move_object, delement: drag_object});
-			VMM.bindEvent(drag_object, onDragLeave, dragevent.leave, {element: move_object, delement: drag_object});
-			
-	    }
-		
-		function onDragLeave(e) {
-			VMM.unbindEvent(e.data.delement, onDragMove, dragevent.move);
-			if (!drag.touch) {
-				e.preventDefault();
-			}
-			e.stopPropagation();
-			if (drag.sliding) {
-				drag.sliding = false;
-				dragEnd(e.data.element, e.data.delement, e);
-				return false;
-			} else {
-				return true;
-			}
-		}
-		
-		function onDragStart(e) {
-			dragStart(e.data.element, e.data.delement, e);
-			if (!drag.touch) {
-				e.preventDefault();
-			}
-			//e.stopPropagation();
-			return true;
-		}
-		
-		function onDragEnd(e) {
-			if (!drag.touch) {
-				e.preventDefault();
-			}
-			//e.stopPropagation();
-			if (drag.sliding) {
-				drag.sliding = false;
-				dragEnd(e.data.element, e.data.delement, e);
-				return false;
-			} else {
-				return true;
-			}
-		}
-		
-		function onDragMove(e) {
-			dragMove(e.data.element, e);
-			
-		}
-		
-		function dragStart(elem, delem, e) {
-			if (drag.touch) {
-				trace("IS TOUCH")
-				VMM.Lib.css(elem, '-webkit-transition-duration', '0');
-				drag.pagex.start = e.originalEvent.touches[0].screenX;
-				drag.pagey.start = e.originalEvent.touches[0].screenY;
-			} else {
-				drag.pagex.start = e.pageX;
-				drag.pagey.start = e.pageY;
-			}
-			drag.left.start = getLeft(elem);
-			drag.time.start = new Date().getTime();
-			
-			VMM.Lib.stop(elem);
-			VMM.bindEvent(delem, onDragMove, dragevent.move, {element: elem});
-
-	    }
-		
-		function dragEnd(elem, delem, e) {
-			VMM.unbindEvent(delem, onDragMove, dragevent.move);
-			dragMomentum(elem, e);
-		}
-		
-		function dragMove(elem, e) {
-			var drag_to, drag_to_y;
-			drag.sliding = true;
-			if (drag.touch) {
-				drag.pagex.end = e.originalEvent.touches[0].screenX;
-				drag.pagey.end = e.originalEvent.touches[0].screenY;
-			} else {
-				drag.pagex.end = e.pageX;
-				drag.pagey.end = e.pageY;
-			}
-			
-			drag.left.end	= getLeft(elem);
-			drag_to			= -(drag.pagex.start - drag.pagex.end - drag.left.start);
-			
-			
-			if (Math.abs(drag.pagey.start) - Math.abs(drag.pagey.end) > 10) {
-				trace("SCROLLING Y")
-				trace(Math.abs(drag.pagey.start) - Math.abs(drag.pagey.end));
-			}
-			if (Math.abs(drag_to - drag.left.start) > 10) {
-				VMM.Lib.css(elem, 'left', drag_to);
-				e.preventDefault();
-				e.stopPropagation();
-			}
-		}
-		
-		function dragMomentum(elem, e) {
-			var drag_info = {
-					left:			drag.left.end,
-					left_adjust:	0,
-					change: {
-						x:			0
-					},
-					time:			(new Date().getTime() - drag.time.start) * 10,
-					time_adjust:	(new Date().getTime() - drag.time.start) * 10
-				},
-				multiplier = 3000;
-				
-			if (drag.touch) {
-				multiplier = 6000;
-			}
-			
-			drag_info.change.x = multiplier * (Math.abs(drag.pagex.end) - Math.abs(drag.pagex.start));
-			
-			
-			drag_info.left_adjust = Math.round(drag_info.change.x / drag_info.time);
-			
-			drag_info.left = Math.min(drag_info.left + drag_info.left_adjust);
-			
-			if (drag.constraint) {
-				if (drag_info.left > drag.constraint.left) {
-					drag_info.left = drag.constraint.left;
-					if (drag_info.time > 5000) {
-						drag_info.time = 5000;
-					}
-				} else if (drag_info.left < drag.constraint.right) {
-					drag_info.left = drag.constraint.right;
-					if (drag_info.time > 5000) {
-						drag_info.time = 5000;
-					}
-				}
-			}
-			
-			VMM.fireEvent(dragslider, "DRAGUPDATE", [drag_info]);
-			
-			if (!is_sticky) {
-				if (drag_info.time > 0) {
-					if (drag.touch) {
-						VMM.Lib.animate(elem, drag_info.time, "easeOutCirc", {"left": drag_info.left});
-					} else {
-						VMM.Lib.animate(elem, drag_info.time, drag.ease, {"left": drag_info.left});
-					}
-				}
-			}
-		}
-		
-		function getLeft(elem) {
-			return parseInt(VMM.Lib.css(elem, 'left').substring(0, VMM.Lib.css(elem, 'left').length - 2), 10);
-		}
-		
-	}
-}
-
-/* **********************************************
-     Begin VMM.Slider.js
-********************************************** */
-
-/* Slider
-================================================== */
-/*	* CodeKit Import
-	* http://incident57.com/codekit/
-================================================== */
-// @codekit-append "VMM.Slider.Slide.js";
-
-if(typeof VMM != 'undefined' && typeof VMM.Slider == 'undefined') {
-	
-	VMM.Slider = function(parent, parent_config) {
-		
-		var config,
-			timer,
-			$slider,
-			$slider_mask,
-			$slider_container,
-			$slides_items,
-			$dragslide,
-			$explainer,
-			events				= {},
-			data				= [],
-			slides				= [],
-			slide_positions		= [],
-			slides_content		= "",
-			current_slide		= 0,
-			current_width		= 960,
-			touch = {
-				move:			false,
-				x:				10,
-				y:				0,
-				off:			0,
-				dampen:			48
-			},
-			content				= "",
-			_active				= false,
-			layout				= parent,
-			navigation = {
-				nextBtn:		"",
-				prevBtn:		"",
-				nextDate:		"",
-				prevDate:		"",
-				nextTitle:		"",
-				prevTitle:		""
-			};
-		
-		// CONFIG
-		if(typeof parent_config != 'undefined') {
-			config	= parent_config;
-		} else {
-			config	= {
-				preload:			4,
-				current_slide:		0,
-				interval:			10, 
-				something:			0, 
-				width:				720, 
-				height:				400, 
-				ease:				"easeInOutExpo", 
-				duration:			1000, 
-				timeline:			false, 
-				spacing:			15,
-				slider: {
-					width:			720, 
-					height:			400, 
-					content: {
-						width:		720, 
-						height:		400, 
-						padding:	120,
-						padding_default: 120
-					}, 
-					nav: {
-						width:		100, 
-						height:		200
-					} 
-				} 
-			};
-		}
-		
-		/* PUBLIC VARS
-		================================================== */
-		this.ver = "0.6";
-		
-		config.slider.width		= config.width;
-		config.slider.height	= config.height;
-		
-		/* PUBLIC FUNCTIONS
-		================================================== */
-		this.init = function(d) {
-			slides			= [];
-			slide_positions	= [];
-			
-			if(typeof d != 'undefined') {
-				this.setData(d);
-			} else {
-				trace("WAITING ON DATA");
-			}
-		};
-		
-		this.width = function(w) {
-			if (w != null && w != "") {
-				config.slider.width = w;
-				reSize();
-			} else {
-				return config.slider.width;
-			}
-		}
-		
-		this.height = function(h) {
-			if (h != null && h != "") {
-				config.slider.height = h;
-				reSize();
-			} else {
-				return config.slider.height;
-			}
-		}
-		
-		/* GETTERS AND SETTERS
-		================================================== */
-		this.setData = function(d) {
-			if(typeof d != 'undefined') {
-				data = d;
-				build();
-			} else{
-				trace("NO DATA");
-			}
-		};
-		
-		this.getData = function() {
-			return data;
-		};
-		
-		this.setConfig = function(d) {
-			if(typeof d != 'undefined') {
-				config = d;
-			} else{
-				trace("NO CONFIG DATA");
-			}
-		}
-		
-		this.getConfig = function() {
-			return config;
-		};
-		
-		this.setSize = function(w, h) {
-			if (w != null) {config.slider.width = w};
-			if (h != null) {config.slider.height = h};
-			if (_active) {
-				reSize();
-			}
-			
-		}
-		
-		this.active = function() {
-			return _active;
-		};
-		
-		this.getCurrentNumber = function() {
-			return current_slide;
-		};
-		
-		this.setSlide = function(n) {
-			goToSlide(n);
-		};
-		
-		/* ON EVENT
-		================================================== */
-		function onConfigSet() {
-			trace("onConfigSet");
-		};
-		
-		function reSize(go_to_slide, from_start) {
-			var _go_to_slide	= true,
-				_from_start		= false;
-			
-			if (go_to_slide != null) {_go_to_slide = go_to_slide};
-			if (from_start != null) {_from_start = from_start};
-			
-			current_width = config.slider.width;
-			
-			config.slider.nav.height = VMM.Lib.height(navigation.prevBtnContainer);
-			
-			// Handle smaller sizes
-			if (VMM.Browser.device == "mobile" || current_width <= 640) {
-				config.slider.content.padding	= 10;
-			} else {
-				config.slider.content.padding	= config.slider.content.padding_default;
-			}
-			
-			config.slider.content.width = current_width - (config.slider.content.padding *2);
-			
-			VMM.Lib.width($slides_items, (slides.length * config.slider.content.width));
-			
-			if (_from_start) {
-				VMM.Lib.css($slider_container, "left", slides[current_slide].leftpos());
-			}
-			
-			// RESIZE SLIDES
-			sizeSlides();
-			
-			// POSITION SLIDES
-			positionSlides();
-			
-			// POSITION NAV
-			VMM.Lib.css(navigation.nextBtn, "left", (current_width - config.slider.nav.width));
-			VMM.Lib.height(navigation.prevBtn, config.slider.height);
-			VMM.Lib.height(navigation.nextBtn, config.slider.height);
-			VMM.Lib.css(navigation.nextBtnContainer, "top", ( (config.slider.height/2) - (config.slider.nav.height/2) ) + 10 );
-			VMM.Lib.css(navigation.prevBtnContainer, "top", ( (config.slider.height/2) - (config.slider.nav.height/2) ) + 10 );
-			
-			// Animate Changes
-			VMM.Lib.height($slider_mask, config.slider.height);
-			VMM.Lib.width($slider_mask, current_width);
-			
-			if (_go_to_slide) {
-				goToSlide(current_slide, "linear", 1);
-			};
-			
-			if (current_slide == 0) {
-				VMM.Lib.visible(navigation.prevBtn, false);
-			}
-			
-		}
-		
-		function onDragFinish(e, d) {
-			trace("DRAG FINISH");
-			trace(d.left_adjust);
-			trace((config.slider.width / 2));
-			
-			if (d.left_adjust < 0 ) {
-				if (Math.abs(d.left_adjust) > (config.slider.width / 2) ) {
-					//onNextClick(e);
-					if (current_slide == slides.length - 1) {
-						backToCurrentSlide();
-					} else {
-						goToSlide(current_slide+1, "easeOutExpo");
-						upDate();
-					}
-				} else {
-					backToCurrentSlide();
-					
-				}
-			} else if (Math.abs(d.left_adjust) > (config.slider.width / 2) ) {
-				if (current_slide == 0) {
-					backToCurrentSlide();
-				} else {
-					goToSlide(current_slide-1, "easeOutExpo");
-					upDate();
-				}
-			} else {
-				backToCurrentSlide();
-			}
-				
-			
-			
-		}
-		/* NAVIGATION
-		================================================== */
-		function onNextClick(e) {
-			if (current_slide == slides.length - 1) {
-				backToCurrentSlide();
-			} else {
-				goToSlide(current_slide+1);
-				upDate();
-			}
-		}
-		
-		function onPrevClick(e) {
-			if (current_slide == 0) {
-				backToCurrentSlide();
-			} else {
-				goToSlide(current_slide-1);
-				upDate();
-			}
-		}
-
-		function onKeypressNav(e) {
-			switch(e.keyCode) {
-				case 39:
-					// RIGHT ARROW
-					onNextClick(e);
-					break;
-				case 37:
-					// LEFT ARROW
-					onPrevClick(e);
-					break;
-			}
-		}
-		
-		function onTouchUpdate(e, b) {
-			if (slide_positions.length == 0) {
-				for(var i = 0; i < slides.length; i++) {
-					slide_positions.push( slides[i].leftpos() );
-				}
-			}
-			if (typeof b.left == "number") {
-				var _pos = b.left;
-				var _slide_pos = -(slides[current_slide].leftpos());
-				if (_pos < _slide_pos - (config.slider_width/3)) {
-					onNextClick();
-				} else if (_pos > _slide_pos + (config.slider_width/3)) {
-					onPrevClick();
-				} else {
-					VMM.Lib.animate($slider_container, config.duration, config.ease, {"left": _slide_pos });
-				}
-			} else {
-				VMM.Lib.animate($slider_container, config.duration, config.ease, {"left": _slide_pos });
-			}
-			
-			if (typeof b.top == "number") {
-				VMM.Lib.animate($slider_container, config.duration, config.ease, {"top": -b.top});
-			} else {
-				
-			}
-		};
-		
-		function onExplainerClick(e) {
-			detachMessege();
-		}
-		
-		/* UPDATE
-		================================================== */
-		function upDate() {
-			config.current_slide = current_slide;
-			VMM.fireEvent(layout, "UPDATE");
-		};
-		
-		/* GET DATA
-		================================================== */
-		function getData(d) {
-			data = d;
-		};
-		
-		/* BUILD SLIDES
-		================================================== */
-		function buildSlides(d) {
-			var i	= 0;
-			
-			VMM.attachElement($slides_items, "");
-			slides = [];
-			
-			for(i = 0; i < d.length; i++) {
-				var _slide = new VMM.Slider.Slide(d[i], $slides_items);
-				//_slide.show();
-				slides.push(_slide);
-			}
-		}
-		
-		function preloadSlides(skip) {
-			var i	= 0;
-			
-			if (skip) {
-				preloadTimeOutSlides();
-			} else {
-				for(i = 0; i < slides.length; i++) {
-					slides[i].clearTimers();
-				}
-				timer = setTimeout(preloadTimeOutSlides, config.duration);
-				
-			}
-		}
-		
-		function preloadTimeOutSlides() {
-			var i = 0;
-			
-			for(i = 0; i < slides.length; i++) {
-				slides[i].enqueue = true;
-			}
-			
-			for(i = 0; i < config.preload; i++) {
-				if ( !((current_slide + i) > slides.length - 1)) {
-					slides[current_slide + i].show();
-					slides[current_slide + i].enqueue = false;
-				}
-				if ( !( (current_slide - i) < 0 ) ) {
-					slides[current_slide - i].show();
-					slides[current_slide - i].enqueue = false;
-				}
-			}
-			
-			if (slides.length > 50) {
-				for(i = 0; i < slides.length; i++) {
-					if (slides[i].enqueue) {
-						slides[i].hide();
-					}
-				}
-			}
-			
-			sizeSlides();
-		}
-		
-		function sizeSlide(slide_id) {
-			
-		}
-		
-		/* SIZE SLIDES
-		================================================== */
-		function sizeSlides() {
-			var i						= 0,
-				layout_text_media		= ".slider-item .layout-text-media .media .media-container ",
-				layout_media			= ".slider-item .layout-media .media .media-container ",
-				layout_both				= ".slider-item .media .media-container",
-				layout_caption			= ".slider-item .media .media-container .media-shadow .caption",
-				is_skinny				= false,
-				mediasize = {
-					text_media: {
-						width: 			(config.slider.content.width/100) * 60,
-						height: 		config.slider.height - 60,
-						video: {
-							width:		0,
-							height:		0
-						},
-						text: {
-							width:		((config.slider.content.width/100) * 40) - 30,
-							height:		config.slider.height
-						}
-					},
-					media: {
-						width: 			config.slider.content.width,
-						height: 		config.slider.height - 110,
-						video: {
-							width: 		0,
-							height: 	0
-						}
-					}
-				};
-				
-			// Handle smaller sizes
-			if (VMM.Browser.device == "mobile" || current_width < 641) {
-				is_skinny = true;
-
-			} 
-			
-			VMM.master_config.sizes.api.width	= mediasize.media.width;
-			VMM.master_config.sizes.api.height	= mediasize.media.height;
-			
-			mediasize.text_media.video			= VMM.Util.ratio.fit(mediasize.text_media.width, mediasize.text_media.height, 16, 9);
-			mediasize.media.video				= VMM.Util.ratio.fit(mediasize.media.width, mediasize.media.height, 16, 9);
-			
-			VMM.Lib.css(".slider-item", "width", config.slider.content.width );
-			VMM.Lib.height(".slider-item", config.slider.height);
-			
-			
-			
-			if (is_skinny) {
-				
-				mediasize.text_media.width = 	config.slider.content.width - (config.slider.content.padding*2);
-				mediasize.media.width = 		config.slider.content.width - (config.slider.content.padding*2);
-				mediasize.text_media.height = 	((config.slider.height/100) * 50 ) - 50;
-				mediasize.media.height = 		((config.slider.height/100) * 70 ) - 40;
-				
-				mediasize.text_media.video = 	VMM.Util.ratio.fit(mediasize.text_media.width, mediasize.text_media.height, 16, 9);
-				mediasize.media.video = 		VMM.Util.ratio.fit(mediasize.media.width, mediasize.media.height, 16, 9);
-				
-				VMM.Lib.css(".slider-item .layout-text-media .text", "width", "100%" );
-				VMM.Lib.css(".slider-item .layout-text-media .text", "display", "block" );
-				VMM.Lib.css(".slider-item .layout-text-media .text .container", "display", "block" );
-				VMM.Lib.css(".slider-item .layout-text-media .text .container", "width", mediasize.media.width );
-				VMM.Lib.css(".slider-item .layout-text-media .text .container .start", "width", "auto" );
-				
-				VMM.Lib.css(".slider-item .layout-text-media .media", "float", "none" );
-				VMM.Lib.addClass(".slider-item .content-container", "pad-top");
-				
-				VMM.Lib.css(".slider-item .media blockquote p", "line-height", "18px" );
-				VMM.Lib.css(".slider-item .media blockquote p", "font-size", "16px" );
-				
-				VMM.Lib.css(".slider-item", "overflow-y", "auto" );
-				
-				
-			} else {
-				
-				VMM.Lib.css(".slider-item .layout-text-media .text", "width", "40%" );
-				VMM.Lib.css(".slider-item .layout-text-media .text", "display", "table-cell" );
-				VMM.Lib.css(".slider-item .layout-text-media .text .container", "display", "table-cell" );
-				VMM.Lib.css(".slider-item .layout-text-media .text .container", "width", "auto" );
-				VMM.Lib.css(".slider-item .layout-text-media .text .container .start", "width", mediasize.text_media.text.width );
-				//VMM.Lib.addClass(".slider-item .content-container", "pad-left");
-				VMM.Lib.removeClass(".slider-item .content-container", "pad-top");
-				
-				VMM.Lib.css(".slider-item .layout-text-media .media", "float", "left" );
-				VMM.Lib.css(".slider-item .layout-text-media", "display", "table" );
-				
-				VMM.Lib.css(".slider-item .media blockquote p", "line-height", "36px" );
-				VMM.Lib.css(".slider-item .media blockquote p", "font-size", "28px" );
-				
-				VMM.Lib.css(".slider-item", "display", "table" );
-				VMM.Lib.css(".slider-item", "overflow-y", "auto" );
-			}
-			
-			// MEDIA FRAME
-			VMM.Lib.css(	layout_text_media + ".media-frame", 		"max-width", 	mediasize.text_media.width);
-			VMM.Lib.height(	layout_text_media + ".media-frame", 						mediasize.text_media.height);
-			VMM.Lib.width(	layout_text_media + ".media-frame", 						mediasize.text_media.width);
-			
-			// WEBSITES
-			//VMM.Lib.css(	layout_both + 		".website", 			"max-width", 	300 );
-			
-			// IMAGES
-			VMM.Lib.css(	layout_text_media + "img", 					"max-height", 	mediasize.text_media.height );
-			VMM.Lib.css(	layout_media + 		"img", 					"max-height", 	mediasize.media.height );
-			
-			// FIX FOR NON-WEBKIT BROWSERS
-			VMM.Lib.css(	layout_text_media + "img", 					"max-width", 	mediasize.text_media.width );
-			VMM.Lib.css(	layout_text_media + ".avatar img", "max-width", 			32 );
-			VMM.Lib.css(	layout_text_media + ".avatar img", "max-height", 			32 );
-			VMM.Lib.css(	layout_media + 		".avatar img", "max-width", 			32 );
-			VMM.Lib.css(	layout_media + 		".avatar img", "max-height", 			32 );
-			
-			VMM.Lib.css(	layout_text_media + ".article-thumb", "max-width", 			"50%" );
-			//VMM.Lib.css(	layout_text_media + ".article-thumb", "max-height", 		100 );
-			VMM.Lib.css(	layout_media + 		".article-thumb", "max-width", 			200 );
-			//VMM.Lib.css(	layout_media + 		".article-thumb", "max-height", 		100 );
-			
-			
-			// IFRAME FULL SIZE VIDEO
-			VMM.Lib.width(	layout_text_media + ".media-frame", 						mediasize.text_media.video.width);
-			VMM.Lib.height(	layout_text_media + ".media-frame", 						mediasize.text_media.video.height);
-			VMM.Lib.width(	layout_media + 		".media-frame", 						mediasize.media.video.width);
-			VMM.Lib.height(	layout_media + 		".media-frame", 						mediasize.media.video.height);
-			VMM.Lib.css(	layout_media + 		".media-frame", 		"max-height", 	mediasize.media.video.height);
-			VMM.Lib.css(	layout_media + 		".media-frame", 		"max-width", 	mediasize.media.video.width);
-			
-			// SOUNDCLOUD
-			VMM.Lib.height(	layout_media + 		".soundcloud", 							168);
-			VMM.Lib.height(	layout_text_media + ".soundcloud", 							168);
-			VMM.Lib.width(	layout_media + 		".soundcloud", 							mediasize.media.width);
-			VMM.Lib.width(	layout_text_media + ".soundcloud", 							mediasize.text_media.width);
-			VMM.Lib.css(	layout_both + 		".soundcloud", 			"max-height", 	168 );
-			
-			// MAPS
-			VMM.Lib.height(	layout_text_media	+ ".map", 								mediasize.text_media.height);
-			VMM.Lib.width(	layout_text_media	+ ".map", 								mediasize.text_media.width);
-			VMM.Lib.css(	layout_media		+ ".map", 				"max-height", 	mediasize.media.height);
-			VMM.Lib.width(	layout_media		+ ".map", 								mediasize.media.width);
-			
-			
-			// DOCS
-			VMM.Lib.height(	layout_text_media + ".doc", 								mediasize.text_media.height);
-			VMM.Lib.width(	layout_text_media	+ ".doc", 								mediasize.text_media.width);
-			VMM.Lib.height(	layout_media + 		".doc", 								mediasize.media.height);
-			VMM.Lib.width(	layout_media		+ ".doc", 								mediasize.media.width);
-			
-			// IE8 NEEDS THIS
-			VMM.Lib.width(	layout_media + 		".wikipedia", 							mediasize.media.width);
-			VMM.Lib.width(	layout_media + 		".twitter", 							mediasize.media.width);
-			VMM.Lib.width(	layout_media + 		".plain-text-quote", 					mediasize.media.width);
-			VMM.Lib.width(	layout_media + 		".plain-text", 							mediasize.media.width);
-			
-			VMM.Lib.css(	layout_both, 		"max-width", 							mediasize.media.width);
-			
-			
-			// CAPTION WIDTH
-			VMM.Lib.css( layout_text_media + 	".caption",	"max-width",	mediasize.text_media.video.width);
-			VMM.Lib.css( layout_media + 		".caption",	"max-width",	mediasize.media.video.width);
-			//VMM.Lib.css( layout_text_media + 	".caption",	"max-width",	mediasize.text_media.width);
-			//VMM.Lib.css( layout_media + 		".caption",	"max-width",	mediasize.media.width);
-			
-			// MAINTAINS VERTICAL CENTER IF IT CAN
-			for(i = 0; i < slides.length; i++) {
-				
-				slides[i].layout(is_skinny);
-				
-				if (slides[i].content_height() > config.slider.height + 20) {
-					slides[i].css("display", "block");
-				} else {
-					slides[i].css("display", "table");
-				}
-			}
-			
-		}
-		
-		/* POSITION SLIDES
-		================================================== */
-		function positionSlides() {
-			var pos = 0,
-				i	= 0;
-				
-			for(i = 0; i < slides.length; i++) {
-				pos = i * (config.slider.width+config.spacing);
-				slides[i].leftpos(pos);
-			}
-		}
-		
-		/* OPACITY SLIDES
-		================================================== */
-		function opacitySlides(n) {
-			var _ease	= "linear",
-				i		= 0;
-				
-			for(i = 0; i < slides.length; i++) {
-				if (i == current_slide) {
-					slides[i].animate(config.duration, _ease, {"opacity": 1});
-				} else if (i == current_slide - 1 || i == current_slide + 1) {
-					slides[i].animate(config.duration, _ease, {"opacity": 0.1});
-				} else {
-					slides[i].opacity(n);
-				}
-			}
-		}
-		
-		/* GO TO SLIDE
-			goToSlide(n, ease, duration);
-		================================================== */
-		function goToSlide(n, ease, duration, fast, firstrun) {
-			var _ease		= config.ease,
-				_duration	= config.duration,
-				is_last		= false,
-				is_first	= false,
-				_title		= "",
-				_pos;
-			
-			/* STOP ANY VIDEO PLAYERS ACTIVE
-			================================================== */
-			VMM.ExternalAPI.youtube.stopPlayers();
-			
-			// Set current slide
-			current_slide	= n;
-			_pos			= slides[current_slide].leftpos();
-			
-			
-			if (current_slide == 0) {is_first = true};
-			if (current_slide +1 >= slides.length) {is_last = true};
-			if (ease != null && ease != "") {_ease = ease};
-			if (duration != null && duration != "") {_duration = duration};
-			
-			/*	NAVIGATION
-				set proper nav titles and dates etc.
-			================================================== */
-			// Handle smaller sizes
-			if (VMM.Browser.device == "mobile") {
-			//if (VMM.Browser.device == "mobile" || current_width <= 640) {
-				VMM.Lib.visible(navigation.prevBtn, false);
-				VMM.Lib.visible(navigation.nextBtn, false);
-			} else {
-				if (is_first) {
-					VMM.Lib.visible(navigation.prevBtn, false);
-				} else {
-					VMM.Lib.visible(navigation.prevBtn, true);
-					_title = VMM.Util.unlinkify(data[current_slide - 1].title)
-					if (config.type == "timeline") {
-						if(typeof data[current_slide - 1].date === "undefined") {
-							VMM.attachElement(navigation.prevDate, _title);
-							VMM.attachElement(navigation.prevTitle, "");
-						} else {
-							VMM.attachElement(navigation.prevDate, VMM.Date.prettyDate(data[current_slide - 1].startdate, false, data[current_slide - 1].precisiondate));
-							VMM.attachElement(navigation.prevTitle, _title);
-						}
-					} else {
-						VMM.attachElement(navigation.prevTitle, _title);
-					}
-				
-				}
-				if (is_last) {
-					VMM.Lib.visible(navigation.nextBtn, false);
-				} else {
-					VMM.Lib.visible(navigation.nextBtn, true);
-					_title = VMM.Util.unlinkify(data[current_slide + 1].title);
-					if (config.type == "timeline") {
-						if(typeof data[current_slide + 1].date === "undefined") {
-							VMM.attachElement(navigation.nextDate, _title);
-							VMM.attachElement(navigation.nextTitle, "");
-						} else {
-							VMM.attachElement(navigation.nextDate, VMM.Date.prettyDate(data[current_slide + 1].startdate, false, data[current_slide + 1].precisiondate) );
-							VMM.attachElement(navigation.nextTitle, _title);
-						}
-					} else {
-						VMM.attachElement(navigation.nextTitle,  _title);
-					}
-				
-				}
-			}
-			
-			
-			/* ANIMATE SLIDE
-			================================================== */
-			if (fast) {
-				VMM.Lib.css($slider_container, "left", -(_pos - config.slider.content.padding));	
-			} else{
-				VMM.Lib.stop($slider_container);
-				VMM.Lib.animate($slider_container, _duration, _ease, {"left": -(_pos - config.slider.content.padding)});
-			}
-			
-			if (firstrun) {
-				VMM.fireEvent(layout, "LOADED");
-			}
-			
-			/* SET Vertical Scoll
-			================================================== */
-			if (slides[current_slide].height() > config.slider_height) {
-				VMM.Lib.css(".slider", "overflow-y", "scroll" );
-			} else {
-				VMM.Lib.css(layout, "overflow-y", "hidden" );
-				var scroll_height = 0;
-				try {
-					scroll_height = VMM.Lib.prop(layout, "scrollHeight");
-					VMM.Lib.animate(layout, _duration, _ease, {scrollTop: scroll_height - VMM.Lib.height(layout) });
-				}
-				catch(err) {
-					scroll_height = VMM.Lib.height(layout);
-				}
-			}
-			
-			preloadSlides();
-			VMM.fireEvent($slider, "MESSAGE", "TEST");
-		}
-
-		function backToCurrentSlide() {
-			VMM.Lib.stop($slider_container);
-			VMM.Lib.animate($slider_container, config.duration, "easeOutExpo", {"left": -(slides[current_slide].leftpos()) +  config.slider.content.padding} );
-		}
-		
-		/* MESSEGES 
-		================================================== */
-		function showMessege(e, msg, other) {
-			trace("showMessege " + msg);
-			//VMM.attachElement($timeline, $feedback);
-			VMM.attachElement($explainer, "<div class='vco-explainer'><div class='vco-explainer-container'><div class='vco-bezel'><div class='vco-gesture-icon'></div>" + "<div class='vco-message'><p>" + msg + "</p></div></div></div></div>");
-		};
-		
-		function hideMessege() {
-			VMM.Lib.animate($explainer, config.duration, config.ease, {"opacity": 0}, detachMessege);
-		};
-		
-		function detachMessege() {
-			VMM.Lib.detach($explainer);
-		}
-		
-		/* BUILD NAVIGATION
-		================================================== */
-		function buildNavigation() {
-			
-			var temp_icon = "<div class='icon'>&nbsp;</div>";
-			
-			navigation.nextBtn = VMM.appendAndGetElement($slider, "<div>", "nav-next");
-			navigation.prevBtn = VMM.appendAndGetElement($slider, "<div>", "nav-previous");
-			navigation.nextBtnContainer = VMM.appendAndGetElement(navigation.nextBtn, "<div>", "nav-container", temp_icon);
-			navigation.prevBtnContainer = VMM.appendAndGetElement(navigation.prevBtn, "<div>", "nav-container", temp_icon);
-			if (config.type == "timeline") {
-				navigation.nextDate = VMM.appendAndGetElement(navigation.nextBtnContainer, "<div>", "date", "");
-				navigation.prevDate = VMM.appendAndGetElement(navigation.prevBtnContainer, "<div>", "date", "");
-			}
-			navigation.nextTitle = VMM.appendAndGetElement(navigation.nextBtnContainer, "<div>", "title", "");
-			navigation.prevTitle = VMM.appendAndGetElement(navigation.prevBtnContainer, "<div>", "title", "");
-			
-			VMM.bindEvent(".nav-next", onNextClick);
-			VMM.bindEvent(".nav-previous", onPrevClick);
-			VMM.bindEvent(window, onKeypressNav, 'keydown');
-			
-		}
-		
-		/* BUILD
-		================================================== */
-		function build() {
-			var __duration = 3000;
-			// Clear out existing content
-			VMM.attachElement(layout, "");
-			
-			// Get DOM Objects to local objects
-			$slider				= VMM.getElement(layout);
-			$slider_mask		= VMM.appendAndGetElement($slider, "<div>", "slider-container-mask");
-			$slider_container	= VMM.appendAndGetElement($slider_mask, "<div>", "slider-container");
-			$slides_items		= VMM.appendAndGetElement($slider_container, "<div>", "slider-item-container");
-			
-			
-			// BUILD NAVIGATION
-			buildNavigation();
-
-			// ATTACH SLIDES
-			buildSlides(data);
-			
-			/* MAKE SLIDER DRAGGABLE/TOUCHABLE
-			================================================== */
-			
-			if (VMM.Browser.device == "tablet" || VMM.Browser.device == "mobile") {
-				// Different Animation duration for touch
-				config.duration = 500;
-				__duration = 1000;
-				
-				// Make touchable
-				$dragslide = new VMM.DragSlider();
-				$dragslide.createPanel($slider, $slider_container, "", config.touch, true);
-				VMM.bindEvent($dragslide, onDragFinish, 'DRAGUPDATE');
-				
-				// EXPLAINER
-				$explainer = VMM.appendAndGetElement($slider_mask, "<div>", "vco-feedback", "");
-				showMessege(null, "Swipe to Navigate");
-				VMM.Lib.height($explainer, config.slider.height);
-				VMM.bindEvent($explainer, onExplainerClick);
-				VMM.bindEvent($explainer, onExplainerClick, 'touchend');
-			}
-			
-			reSize(false, true);
-			
-			
-			VMM.Lib.visible(navigation.prevBtn, false);
-			goToSlide(config.current_slide, "easeOutExpo", __duration, true, true);
-			
-			_active = true;
-		};
-		
-	};
-	
-}
-
-
-
-
-
-
-/* **********************************************
-     Begin VMM.Slider.Slide.js
-********************************************** */
-
-/* Slider Slide 
-================================================== */
-
-if (typeof VMM.Slider != 'undefined') {
-	VMM.Slider.Slide = function(d, _parent) {
-		
-		var $media, $text, $slide, $wrap, element, c,
-			data		= d,
-			slide		= {},
-			element		= "",
-			media		= "",
-			loaded		= false,
-			preloaded	= false,
-			is_skinny	= false,
-			_enqueue	= true,
-			_removeque	= false,
-			_id			= "slide_",
-			_class		= 0,
-			timer		= {pushque:"", render:"", relayout:"", remove:"", skinny:false},
-			times		= {pushque:500, render:100, relayout:100, remove:30000};
-		
-		_id				= _id + data.uniqueid;
-		this.enqueue	= _enqueue;
-		this.id			= _id;
-		
-		
-		element		=	VMM.appendAndGetElement(_parent, "<div>", "slider-item");
-		
-		if (typeof data.classname != 'undefined') {
-			trace("HAS CLASSNAME");
-			VMM.Lib.addClass(element, data.classname);
-		} else {
-			trace("NO CLASSNAME");
-			trace(data);
-		}
-		
-		c = {slide:"", text: "", media: "", media_element: "", layout: "content-container layout", has: { headline: false, text: false, media: false }};
-		
-		/* PUBLIC
-		================================================== */
-		this.show = function(skinny) {
-			_enqueue = false;
-			timer.skinny = skinny;
-			_removeque = false;
-			clearTimeout(timer.remove);
-			
-			if (!loaded) {
-				if (preloaded) {
-					clearTimeout(timer.relayout);
-					timer.relayout = setTimeout(reloadLayout, times.relayout);
-				} else {
-					render(skinny);
-				}
-			}
-		};
-		
-		this.hide = function() {
-			if (loaded && !_removeque) {
-				_removeque = true;
-				clearTimeout(timer.remove);
-				timer.remove = setTimeout(removeSlide, times.remove);
-			}
-		};
-		
-		this.clearTimers = function() {
-			//clearTimeout(timer.remove);
-			clearTimeout(timer.relayout);
-			clearTimeout(timer.pushque);
-			clearTimeout(timer.render);
-		};
-		
-		this.layout = function(skinny) {
-			if (loaded && preloaded) {
-				reLayout(skinny);
-			}
-		};
-		
-		this.elem = function() {	
-			return element;
-		};
-		
-		this.position = function() {
-			return VMM.Lib.position(element);
-		};
-		
-		this.leftpos = function(p) {
-			if(typeof p != 'undefined') {
-				VMM.Lib.css(element, "left", p);
-			} else {
-				return VMM.Lib.position(element).left
-			}
-		};
-		
-		this.animate = function(d, e, p) {
-			VMM.Lib.animate(element, d, e, p);
-		};
-		
-		this.css = function(p, v) {
-			VMM.Lib.css(element, p, v );
-		}
-		
-		this.opacity = function(p) {
-			VMM.Lib.css(element, "opacity", p);	
-		}
-		
-		this.width = function() {
-			return VMM.Lib.width(element);
-		};
-		
-		this.height = function() {
-			return VMM.Lib.height(element);
-		};
-		
-		this.content_height = function () {
-			var ch = VMM.Lib.find( element, ".content")[0];
-			
-			if (ch != 'undefined' && ch != null) {
-				return VMM.Lib.height(ch);
-			} else {
-				return 0;
-			}
-		}
-		
-		/* PRIVATE
-		================================================== */
-		var render = function(skinny) {
-			trace("RENDER " + _id);
-			
-			loaded = true;
-			preloaded = true;
-			timer.skinny = skinny;
-			
-			buildSlide();
-			
-			clearTimeout(timer.pushque);
-			clearTimeout(timer.render);
-			timer.pushque = setTimeout(VMM.ExternalAPI.pushQues, times.pushque);
-			
-		};
-		
-		var removeSlide = function() {
-			//VMM.attachElement(element, "");
-			trace("REMOVE SLIDE TIMER FINISHED");
-			loaded = false;
-			VMM.Lib.detach($text);
-			VMM.Lib.detach($media);
-			
-		};
-		
-		var reloadLayout = function() {
-			loaded = true;
-			reLayout(timer.skinny, true);
-		};
-		
-		var reLayout = function(skinny, reload) {
-			if (c.has.text)	{
-				if (skinny) {
-					if (!is_skinny || reload) {
-						VMM.Lib.removeClass($slide, "pad-left");
-						VMM.Lib.detach($text);
-						VMM.Lib.detach($media);
-						VMM.Lib.append($slide, $text);
-						VMM.Lib.append($slide, $media);
-						is_skinny = true;
-					} 
-				} else {
-					if (is_skinny || reload) {
-						VMM.Lib.addClass($slide, "pad-left");
-						VMM.Lib.detach($text);
-						VMM.Lib.detach($media);
-						VMM.Lib.append($slide, $media);
-						VMM.Lib.append($slide, $text);
-						is_skinny = false;
-						
-					} 
-				}
-			} else if (reload) {
-				if (c.has.headline) {
-					VMM.Lib.detach($text);
-					VMM.Lib.append($slide, $text);
-				}
-				VMM.Lib.detach($media);
-				VMM.Lib.append($slide, $media);
-			}
-		}
-		
-		var buildSlide = function() {
-			trace("BUILDSLIDE");
-			$wrap	= VMM.appendAndGetElement(element, "<div>", "content");
-			$slide	= VMM.appendAndGetElement($wrap, "<div>");
-			
-			/* DATE
-			================================================== */
-			if (data.startdate != null && data.startdate != "") {
-				if (type.of(data.startdate) == "date") {
-					if (data.type != "start") {
-						var st	= VMM.Date.prettyDate(data.startdate, false, data.precisiondate);
-						var en	= VMM.Date.prettyDate(data.enddate, false, data.precisiondate);
-						var tag	= "";
-						/* TAG / CATEGORY
-						================================================== */
-						if (data.tag != null && data.tag != "") {
-							tag		= VMM.createElement("span", data.tag, "slide-tag");
-						}
-						
-						if (st != en) {
-							c.text += VMM.createElement("h2", st + " &mdash; " + en + tag, "date");
-						} else {
-							c.text += VMM.createElement("h2", st + tag, "date");
-						}
-					}
-				}
-			}
-			
-			/* HEADLINE
-			================================================== */
-			if (data.headline != null && data.headline != "") {
-				c.has.headline	=	true;
-				if (data.type == "start") {
-					c.text		+=	VMM.createElement("h2", VMM.Util.linkify_with_twitter(data.headline, "_blank"), "start");
-				} else { 
-					c.text		+=	VMM.createElement("h3", VMM.Util.linkify_with_twitter(data.headline, "_blank"));
-				}
-			}
-			
-			/* TEXT
-			================================================== */
-			if (data.text != null && data.text != "") {
-				c.has.text		=  true;
-				c.text			+= VMM.createElement("p", VMM.Util.linkify_with_twitter(data.text, "_blank"));
-			}
-			
-			if (c.has.text || c.has.headline) {
-				c.text		= VMM.createElement("div", c.text, "container");
-				//$text		=	VMM.appendAndGetElement($slide, "<div>", "text", c.text);
-				
-				$text		= VMM.appendAndGetElement($slide, "<div>", "text", VMM.TextElement.create(c.text));
-				
-			}
-			
-			/* SLUG
-			================================================== */
-			if (data.needs_slug) {
-				
-			}
-			
-			/* MEDIA
-			================================================== */
-			if (data.asset != null && data.asset != "") {
-				if (data.asset.media != null && data.asset.media != "") {
-					c.has.media	= true;
-					$media		= VMM.appendAndGetElement($slide, "<div>", "media", VMM.MediaElement.create(data.asset, data.uniqueid));
-				}
-			}
-			
-			/* COMBINE
-			================================================== */
-			if (c.has.text)	{ c.layout		+=	"-text"		};
-			if (c.has.media){ c.layout		+=	"-media"	};
-
-			if (c.has.text)	{
-				if (timer.skinny) {
-					VMM.Lib.addClass($slide, c.layout);
-					is_skinny = true;
-				} else {
-					VMM.Lib.addClass($slide, c.layout);
-					VMM.Lib.addClass($slide, "pad-left");
-					VMM.Lib.detach($text);
-					VMM.Lib.append($slide, $text);
-				}
-				
-			} else {
-				VMM.Lib.addClass($slide, c.layout);
-			}
-			
-			
-		};
-		
-	}
-	
-};
-
-
-/* **********************************************
-     Begin AES.js
-********************************************** */
-
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-/*  AES implementation in JavaScript (c) Chris Veness 2005-2011                                   */
-/*   - see http://csrc.nist.gov/publications/PubsFIPS.html#197                                    */
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-
-var Aes = {};  // Aes namespace
-
-/**
- * AES Cipher function: encrypt 'input' state with Rijndael algorithm
- *   applies Nr rounds (10/12/14) using key schedule w for 'add round key' stage
- *
- * @param {Number[]} input 16-byte (128-bit) input state array
- * @param {Number[][]} w   Key schedule as 2D byte-array (Nr+1 x Nb bytes)
- * @returns {Number[]}     Encrypted output state array
- */
-Aes.cipher = function(input, w) {    // main Cipher function [§5.1]
-  var Nb = 4;               // block size (in words): no of columns in state (fixed at 4 for AES)
-  var Nr = w.length/Nb - 1; // no of rounds: 10/12/14 for 128/192/256-bit keys
-
-  var state = [[],[],[],[]];  // initialise 4xNb byte-array 'state' with input [§3.4]
-  for (var i=0; i<4*Nb; i++) state[i%4][Math.floor(i/4)] = input[i];
-
-  state = Aes.addRoundKey(state, w, 0, Nb);
-
-  for (var round=1; round<Nr; round++) {
-    state = Aes.subBytes(state, Nb);
-    state = Aes.shiftRows(state, Nb);
-    state = Aes.mixColumns(state, Nb);
-    state = Aes.addRoundKey(state, w, round, Nb);
-  }
-
-  state = Aes.subBytes(state, Nb);
-  state = Aes.shiftRows(state, Nb);
-  state = Aes.addRoundKey(state, w, Nr, Nb);
-
-  var output = new Array(4*Nb);  // convert state to 1-d array before returning [§3.4]
-  for (var i=0; i<4*Nb; i++) output[i] = state[i%4][Math.floor(i/4)];
-  return output;
-}
-
-/**
- * Perform Key Expansion to generate a Key Schedule
- *
- * @param {Number[]} key Key as 16/24/32-byte array
- * @returns {Number[][]} Expanded key schedule as 2D byte-array (Nr+1 x Nb bytes)
- */
-Aes.keyExpansion = function(key) {  // generate Key Schedule (byte-array Nr+1 x Nb) from Key [§5.2]
-  var Nb = 4;            // block size (in words): no of columns in state (fixed at 4 for AES)
-  var Nk = key.length/4  // key length (in words): 4/6/8 for 128/192/256-bit keys
-  var Nr = Nk + 6;       // no of rounds: 10/12/14 for 128/192/256-bit keys
-
-  var w = new Array(Nb*(Nr+1));
-  var temp = new Array(4);
-
-  for (var i=0; i<Nk; i++) {
-    var r = [key[4*i], key[4*i+1], key[4*i+2], key[4*i+3]];
-    w[i] = r;
-  }
-
-  for (var i=Nk; i<(Nb*(Nr+1)); i++) {
-    w[i] = new Array(4);
-    for (var t=0; t<4; t++) temp[t] = w[i-1][t];
-    if (i % Nk == 0) {
-      temp = Aes.subWord(Aes.rotWord(temp));
-      for (var t=0; t<4; t++) temp[t] ^= Aes.rCon[i/Nk][t];
-    } else if (Nk > 6 && i%Nk == 4) {
-      temp = Aes.subWord(temp);
-    }
-    for (var t=0; t<4; t++) w[i][t] = w[i-Nk][t] ^ temp[t];
-  }
-
-  return w;
-}
-
-/*
- * ---- remaining routines are private, not called externally ----
- */
- 
-Aes.subBytes = function(s, Nb) {    // apply SBox to state S [§5.1.1]
-  for (var r=0; r<4; r++) {
-    for (var c=0; c<Nb; c++) s[r][c] = Aes.sBox[s[r][c]];
-  }
-  return s;
-}
-
-Aes.shiftRows = function(s, Nb) {    // shift row r of state S left by r bytes [§5.1.2]
-  var t = new Array(4);
-  for (var r=1; r<4; r++) {
-    for (var c=0; c<4; c++) t[c] = s[r][(c+r)%Nb];  // shift into temp copy
-    for (var c=0; c<4; c++) s[r][c] = t[c];         // and copy back
-  }          // note that this will work for Nb=4,5,6, but not 7,8 (always 4 for AES):
-  return s;  // see asmaes.sourceforge.net/rijndael/rijndaelImplementation.pdf
-}
-
-Aes.mixColumns = function(s, Nb) {   // combine bytes of each col of state S [§5.1.3]
-  for (var c=0; c<4; c++) {
-    var a = new Array(4);  // 'a' is a copy of the current column from 's'
-    var b = new Array(4);  // 'b' is a•{02} in GF(2^8)
-    for (var i=0; i<4; i++) {
-      a[i] = s[i][c];
-      b[i] = s[i][c]&0x80 ? s[i][c]<<1 ^ 0x011b : s[i][c]<<1;
-
-    }
-    // a[n] ^ b[n] is a•{03} in GF(2^8)
-    s[0][c] = b[0] ^ a[1] ^ b[1] ^ a[2] ^ a[3]; // 2*a0 + 3*a1 + a2 + a3
-    s[1][c] = a[0] ^ b[1] ^ a[2] ^ b[2] ^ a[3]; // a0 * 2*a1 + 3*a2 + a3
-    s[2][c] = a[0] ^ a[1] ^ b[2] ^ a[3] ^ b[3]; // a0 + a1 + 2*a2 + 3*a3
-    s[3][c] = a[0] ^ b[0] ^ a[1] ^ a[2] ^ b[3]; // 3*a0 + a1 + a2 + 2*a3
-  }
-  return s;
-}
-
-Aes.addRoundKey = function(state, w, rnd, Nb) {  // xor Round Key into state S [§5.1.4]
-  for (var r=0; r<4; r++) {
-    for (var c=0; c<Nb; c++) state[r][c] ^= w[rnd*4+c][r];
-  }
-  return state;
-}
-
-Aes.subWord = function(w) {    // apply SBox to 4-byte word w
-  for (var i=0; i<4; i++) w[i] = Aes.sBox[w[i]];
-  return w;
-}
-
-Aes.rotWord = function(w) {    // rotate 4-byte word w left by one byte
-  var tmp = w[0];
-  for (var i=0; i<3; i++) w[i] = w[i+1];
-  w[3] = tmp;
-  return w;
-}
-
-// sBox is pre-computed multiplicative inverse in GF(2^8) used in subBytes and keyExpansion [§5.1.1]
-Aes.sBox =  [0x63,0x7c,0x77,0x7b,0xf2,0x6b,0x6f,0xc5,0x30,0x01,0x67,0x2b,0xfe,0xd7,0xab,0x76,
-             0xca,0x82,0xc9,0x7d,0xfa,0x59,0x47,0xf0,0xad,0xd4,0xa2,0xaf,0x9c,0xa4,0x72,0xc0,
-             0xb7,0xfd,0x93,0x26,0x36,0x3f,0xf7,0xcc,0x34,0xa5,0xe5,0xf1,0x71,0xd8,0x31,0x15,
-             0x04,0xc7,0x23,0xc3,0x18,0x96,0x05,0x9a,0x07,0x12,0x80,0xe2,0xeb,0x27,0xb2,0x75,
-             0x09,0x83,0x2c,0x1a,0x1b,0x6e,0x5a,0xa0,0x52,0x3b,0xd6,0xb3,0x29,0xe3,0x2f,0x84,
-             0x53,0xd1,0x00,0xed,0x20,0xfc,0xb1,0x5b,0x6a,0xcb,0xbe,0x39,0x4a,0x4c,0x58,0xcf,
-             0xd0,0xef,0xaa,0xfb,0x43,0x4d,0x33,0x85,0x45,0xf9,0x02,0x7f,0x50,0x3c,0x9f,0xa8,
-             0x51,0xa3,0x40,0x8f,0x92,0x9d,0x38,0xf5,0xbc,0xb6,0xda,0x21,0x10,0xff,0xf3,0xd2,
-             0xcd,0x0c,0x13,0xec,0x5f,0x97,0x44,0x17,0xc4,0xa7,0x7e,0x3d,0x64,0x5d,0x19,0x73,
-             0x60,0x81,0x4f,0xdc,0x22,0x2a,0x90,0x88,0x46,0xee,0xb8,0x14,0xde,0x5e,0x0b,0xdb,
-             0xe0,0x32,0x3a,0x0a,0x49,0x06,0x24,0x5c,0xc2,0xd3,0xac,0x62,0x91,0x95,0xe4,0x79,
-             0xe7,0xc8,0x37,0x6d,0x8d,0xd5,0x4e,0xa9,0x6c,0x56,0xf4,0xea,0x65,0x7a,0xae,0x08,
-             0xba,0x78,0x25,0x2e,0x1c,0xa6,0xb4,0xc6,0xe8,0xdd,0x74,0x1f,0x4b,0xbd,0x8b,0x8a,
-             0x70,0x3e,0xb5,0x66,0x48,0x03,0xf6,0x0e,0x61,0x35,0x57,0xb9,0x86,0xc1,0x1d,0x9e,
-             0xe1,0xf8,0x98,0x11,0x69,0xd9,0x8e,0x94,0x9b,0x1e,0x87,0xe9,0xce,0x55,0x28,0xdf,
-             0x8c,0xa1,0x89,0x0d,0xbf,0xe6,0x42,0x68,0x41,0x99,0x2d,0x0f,0xb0,0x54,0xbb,0x16];
-
-// rCon is Round Constant used for the Key Expansion [1st col is 2^(r-1) in GF(2^8)] [§5.2]
-Aes.rCon = [ [0x00, 0x00, 0x00, 0x00],
-             [0x01, 0x00, 0x00, 0x00],
-             [0x02, 0x00, 0x00, 0x00],
-             [0x04, 0x00, 0x00, 0x00],
-             [0x08, 0x00, 0x00, 0x00],
-             [0x10, 0x00, 0x00, 0x00],
-             [0x20, 0x00, 0x00, 0x00],
-             [0x40, 0x00, 0x00, 0x00],
-             [0x80, 0x00, 0x00, 0x00],
-             [0x1b, 0x00, 0x00, 0x00],
-             [0x36, 0x00, 0x00, 0x00] ]; 
-
-
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-/*  AES Counter-mode implementation in JavaScript (c) Chris Veness 2005-2011                      */
-/*   - see http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf                       */
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-
-Aes.Ctr = {};  // Aes.Ctr namespace: a subclass or extension of Aes
-
-/** 
- * Encrypt a text using AES encryption in Counter mode of operation
- *
- * Unicode multi-byte character safe
- *
- * @param {String} plaintext Source text to be encrypted
- * @param {String} password  The password to use to generate a key
- * @param {Number} nBits     Number of bits to be used in the key (128, 192, or 256)
- * @returns {string}         Encrypted text
- */
-Aes.Ctr.encrypt = function(plaintext, password, nBits) {
-  var blockSize = 16;  // block size fixed at 16 bytes / 128 bits (Nb=4) for AES
-  if (!(nBits==128 || nBits==192 || nBits==256)) return '';  // standard allows 128/192/256 bit keys
-  plaintext = Utf8.encode(plaintext);
-  password = Utf8.encode(password);
-  //var t = new Date();  // timer
-	
-  // use AES itself to encrypt password to get cipher key (using plain password as source for key 
-  // expansion) - gives us well encrypted key (though hashed key might be preferred for prod'n use)
-  var nBytes = nBits/8;  // no bytes in key (16/24/32)
-  var pwBytes = new Array(nBytes);
-  for (var i=0; i<nBytes; i++) {  // use 1st 16/24/32 chars of password for key
-    pwBytes[i] = isNaN(password.charCodeAt(i)) ? 0 : password.charCodeAt(i);
-  }
-  var key = Aes.cipher(pwBytes, Aes.keyExpansion(pwBytes));  // gives us 16-byte key
-  key = key.concat(key.slice(0, nBytes-16));  // expand key to 16/24/32 bytes long
-
-  // initialise 1st 8 bytes of counter block with nonce (NIST SP800-38A §B.2): [0-1] = millisec, 
-  // [2-3] = random, [4-7] = seconds, together giving full sub-millisec uniqueness up to Feb 2106
-  var counterBlock = new Array(blockSize);
-  
-  var nonce = (new Date()).getTime();  // timestamp: milliseconds since 1-Jan-1970
-  var nonceMs = nonce%1000;
-  var nonceSec = Math.floor(nonce/1000);
-  var nonceRnd = Math.floor(Math.random()*0xffff);
-  
-  for (var i=0; i<2; i++) counterBlock[i]   = (nonceMs  >>> i*8) & 0xff;
-  for (var i=0; i<2; i++) counterBlock[i+2] = (nonceRnd >>> i*8) & 0xff;
-  for (var i=0; i<4; i++) counterBlock[i+4] = (nonceSec >>> i*8) & 0xff;
-  
-  // and convert it to a string to go on the front of the ciphertext
-  var ctrTxt = '';
-  for (var i=0; i<8; i++) ctrTxt += String.fromCharCode(counterBlock[i]);
-
-  // generate key schedule - an expansion of the key into distinct Key Rounds for each round
-  var keySchedule = Aes.keyExpansion(key);
-  
-  var blockCount = Math.ceil(plaintext.length/blockSize);
-  var ciphertxt = new Array(blockCount);  // ciphertext as array of strings
-  
-  for (var b=0; b<blockCount; b++) {
-    // set counter (block #) in last 8 bytes of counter block (leaving nonce in 1st 8 bytes)
-    // done in two stages for 32-bit ops: using two words allows us to go past 2^32 blocks (68GB)
-    for (var c=0; c<4; c++) counterBlock[15-c] = (b >>> c*8) & 0xff;
-    for (var c=0; c<4; c++) counterBlock[15-c-4] = (b/0x100000000 >>> c*8)
-
-    var cipherCntr = Aes.cipher(counterBlock, keySchedule);  // -- encrypt counter block --
-    
-    // block size is reduced on final block
-    var blockLength = b<blockCount-1 ? blockSize : (plaintext.length-1)%blockSize+1;
-    var cipherChar = new Array(blockLength);
-    
-    for (var i=0; i<blockLength; i++) {  // -- xor plaintext with ciphered counter char-by-char --
-      cipherChar[i] = cipherCntr[i] ^ plaintext.charCodeAt(b*blockSize+i);
-      cipherChar[i] = String.fromCharCode(cipherChar[i]);
-    }
-    ciphertxt[b] = cipherChar.join(''); 
-  }
-
-  // Array.join is more efficient than repeated string concatenation in IE
-  var ciphertext = ctrTxt + ciphertxt.join('');
-  ciphertext = Base64.encode(ciphertext);  // encode in base64
-  
-  //alert((new Date()) - t);
-  return ciphertext;
-}
-
-/** 
- * Decrypt a text encrypted by AES in counter mode of operation
- *
- * @param {String} ciphertext Source text to be encrypted
- * @param {String} password   The password to use to generate a key
- * @param {Number} nBits      Number of bits to be used in the key (128, 192, or 256)
- * @returns {String}          Decrypted text
- */
-Aes.Ctr.decrypt = function(ciphertext, password, nBits) {
-  var blockSize = 16;  // block size fixed at 16 bytes / 128 bits (Nb=4) for AES
-  if (!(nBits==128 || nBits==192 || nBits==256)) return '';  // standard allows 128/192/256 bit keys
-  ciphertext = Base64.decode(ciphertext);
-  password = Utf8.encode(password);
-  //var t = new Date();  // timer
-  
-  // use AES to encrypt password (mirroring encrypt routine)
-  var nBytes = nBits/8;  // no bytes in key
-  var pwBytes = new Array(nBytes);
-  for (var i=0; i<nBytes; i++) {
-    pwBytes[i] = isNaN(password.charCodeAt(i)) ? 0 : password.charCodeAt(i);
-  }
-  var key = Aes.cipher(pwBytes, Aes.keyExpansion(pwBytes));
-  key = key.concat(key.slice(0, nBytes-16));  // expand key to 16/24/32 bytes long
-
-  // recover nonce from 1st 8 bytes of ciphertext
-  var counterBlock = new Array(8);
-  ctrTxt = ciphertext.slice(0, 8);
-  for (var i=0; i<8; i++) counterBlock[i] = ctrTxt.charCodeAt(i);
-  
-  // generate key schedule
-  var keySchedule = Aes.keyExpansion(key);
-
-  // separate ciphertext into blocks (skipping past initial 8 bytes)
-  var nBlocks = Math.ceil((ciphertext.length-8) / blockSize);
-  var ct = new Array(nBlocks);
-  for (var b=0; b<nBlocks; b++) ct[b] = ciphertext.slice(8+b*blockSize, 8+b*blockSize+blockSize);
-  ciphertext = ct;  // ciphertext is now array of block-length strings
-
-  // plaintext will get generated block-by-block into array of block-length strings
-  var plaintxt = new Array(ciphertext.length);
-
-  for (var b=0; b<nBlocks; b++) {
-    // set counter (block #) in last 8 bytes of counter block (leaving nonce in 1st 8 bytes)
-    for (var c=0; c<4; c++) counterBlock[15-c] = ((b) >>> c*8) & 0xff;
-    for (var c=0; c<4; c++) counterBlock[15-c-4] = (((b+1)/0x100000000-1) >>> c*8) & 0xff;
-
-    var cipherCntr = Aes.cipher(counterBlock, keySchedule);  // encrypt counter block
-
-    var plaintxtByte = new Array(ciphertext[b].length);
-    for (var i=0; i<ciphertext[b].length; i++) {
-      // -- xor plaintxt with ciphered counter byte-by-byte --
-      plaintxtByte[i] = cipherCntr[i] ^ ciphertext[b].charCodeAt(i);
-      plaintxtByte[i] = String.fromCharCode(plaintxtByte[i]);
-    }
-    plaintxt[b] = plaintxtByte.join('');
-  }
-
-  // join array of blocks into single plaintext string
-  var plaintext = plaintxt.join('');
-  plaintext = Utf8.decode(plaintext);  // decode from UTF8 back to Unicode multi-byte chars
-  
-  //alert((new Date()) - t);
-  return plaintext;
-}
-
-
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-/*  Base64 class: Base 64 encoding / decoding (c) Chris Veness 2002-2011                          */
-/*    note: depends on Utf8 class                                                                 */
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-
-var Base64 = {};  // Base64 namespace
-
-Base64.code = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
-
-/**
- * Encode string into Base64, as defined by RFC 4648 [http://tools.ietf.org/html/rfc4648]
- * (instance method extending String object). As per RFC 4648, no newlines are added.
- *
- * @param {String} str The string to be encoded as base-64
- * @param {Boolean} [utf8encode=false] Flag to indicate whether str is Unicode string to be encoded 
- *   to UTF8 before conversion to base64; otherwise string is assumed to be 8-bit characters
- * @returns {String} Base64-encoded string
- */ 
-Base64.encode = function(str, utf8encode) {  // http://tools.ietf.org/html/rfc4648
-  utf8encode =  (typeof utf8encode == 'undefined') ? false : utf8encode;
-  var o1, o2, o3, bits, h1, h2, h3, h4, e=[], pad = '', c, plain, coded;
-  var b64 = Base64.code;
-   
-  plain = utf8encode ? str.encodeUTF8() : str;
-  
-  c = plain.length % 3;  // pad string to length of multiple of 3
-  if (c > 0) { while (c++ < 3) { pad += '='; plain += '\0'; } }
-  // note: doing padding here saves us doing special-case packing for trailing 1 or 2 chars
-   
-  for (c=0; c<plain.length; c+=3) {  // pack three octets into four hexets
-    o1 = plain.charCodeAt(c);
-    o2 = plain.charCodeAt(c+1);
-    o3 = plain.charCodeAt(c+2);
-      
-    bits = o1<<16 | o2<<8 | o3;
-      
-    h1 = bits>>18 & 0x3f;
-    h2 = bits>>12 & 0x3f;
-    h3 = bits>>6 & 0x3f;
-    h4 = bits & 0x3f;
-
-    // use hextets to index into code string
-    e[c/3] = b64.charAt(h1) + b64.charAt(h2) + b64.charAt(h3) + b64.charAt(h4);
-  }
-  coded = e.join('');  // join() is far faster than repeated string concatenation in IE
-  
-  // replace 'A's from padded nulls with '='s
-  coded = coded.slice(0, coded.length-pad.length) + pad;
-   
-  return coded;
-}
-
-/**
- * Decode string from Base64, as defined by RFC 4648 [http://tools.ietf.org/html/rfc4648]
- * (instance method extending String object). As per RFC 4648, newlines are not catered for.
- *
- * @param {String} str The string to be decoded from base-64
- * @param {Boolean} [utf8decode=false] Flag to indicate whether str is Unicode string to be decoded 
- *   from UTF8 after conversion from base64
- * @returns {String} decoded string
- */ 
-Base64.decode = function(str, utf8decode) {
-  utf8decode =  (typeof utf8decode == 'undefined') ? false : utf8decode;
-  var o1, o2, o3, h1, h2, h3, h4, bits, d=[], plain, coded;
-  var b64 = Base64.code;
-
-  coded = utf8decode ? str.decodeUTF8() : str;
-  
-  
-  for (var c=0; c<coded.length; c+=4) {  // unpack four hexets into three octets
-    h1 = b64.indexOf(coded.charAt(c));
-    h2 = b64.indexOf(coded.charAt(c+1));
-    h3 = b64.indexOf(coded.charAt(c+2));
-    h4 = b64.indexOf(coded.charAt(c+3));
-      
-    bits = h1<<18 | h2<<12 | h3<<6 | h4;
-      
-    o1 = bits>>>16 & 0xff;
-    o2 = bits>>>8 & 0xff;
-    o3 = bits & 0xff;
-    
-    d[c/4] = String.fromCharCode(o1, o2, o3);
-    // check for padding
-    if (h4 == 0x40) d[c/4] = String.fromCharCode(o1, o2);
-    if (h3 == 0x40) d[c/4] = String.fromCharCode(o1);
-  }
-  plain = d.join('');  // join() is far faster than repeated string concatenation in IE
-   
-  return utf8decode ? plain.decodeUTF8() : plain; 
-}
-
-
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-/*  Utf8 class: encode / decode between multi-byte Unicode characters and UTF-8 multiple          */
-/*              single-byte character encoding (c) Chris Veness 2002-2011                         */
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-
-var Utf8 = {};  // Utf8 namespace
-
-/**
- * Encode multi-byte Unicode string into utf-8 multiple single-byte characters 
- * (BMP / basic multilingual plane only)
- *
- * Chars in range U+0080 - U+07FF are encoded in 2 chars, U+0800 - U+FFFF in 3 chars
- *
- * @param {String} strUni Unicode string to be encoded as UTF-8
- * @returns {String} encoded string
- */
-Utf8.encode = function(strUni) {
-  // use regular expressions & String.replace callback function for better efficiency 
-  // than procedural approaches
-  var strUtf = strUni.replace(
-      /[\u0080-\u07ff]/g,  // U+0080 - U+07FF => 2 bytes 110yyyyy, 10zzzzzz
-      function(c) { 
-        var cc = c.charCodeAt(0);
-        return String.fromCharCode(0xc0 | cc>>6, 0x80 | cc&0x3f); }
-    );
-  strUtf = strUtf.replace(
-      /[\u0800-\uffff]/g,  // U+0800 - U+FFFF => 3 bytes 1110xxxx, 10yyyyyy, 10zzzzzz
-      function(c) { 
-        var cc = c.charCodeAt(0); 
-        return String.fromCharCode(0xe0 | cc>>12, 0x80 | cc>>6&0x3F, 0x80 | cc&0x3f); }
-    );
-  return strUtf;
-}
-
-/**
- * Decode utf-8 encoded string back into multi-byte Unicode characters
- *
- * @param {String} strUtf UTF-8 string to be decoded back to Unicode
- * @returns {String} decoded string
- */
-Utf8.decode = function(strUtf) {
-  // note: decode 3-byte chars first as decoded 2-byte strings could appear to be 3-byte char!
-  var strUni = strUtf.replace(
-      /[\u00e0-\u00ef][\u0080-\u00bf][\u0080-\u00bf]/g,  // 3-byte chars
-      function(c) {  // (note parentheses for precence)
-        var cc = ((c.charCodeAt(0)&0x0f)<<12) | ((c.charCodeAt(1)&0x3f)<<6) | ( c.charCodeAt(2)&0x3f); 
-        return String.fromCharCode(cc); }
-    );
-  strUni = strUni.replace(
-      /[\u00c0-\u00df][\u0080-\u00bf]/g,                 // 2-byte chars
-      function(c) {  // (note parentheses for precence)
-        var cc = (c.charCodeAt(0)&0x1f)<<6 | c.charCodeAt(1)&0x3f;
-        return String.fromCharCode(cc); }
-    );
-  return strUni;
-}
-
-/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
-
-/* **********************************************
-     Begin bootstrap-tooltip.js
-********************************************** */
-
-/* ===========================================================
- * bootstrap-tooltip.js v2.0.1
- * http://twitter.github.com/bootstrap/javascript.html#tooltips
- * Inspired by the original jQuery.tipsy by Jason Frame
- * ===========================================================
- * Copyright 2012 Twitter, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ========================================================== */
-
-!function( $ ) {
-
-  "use strict"
-
- /* TOOLTIP PUBLIC CLASS DEFINITION
-  * =============================== */
-
-  var Tooltip = function ( element, options ) {
-    this.init('tooltip', element, options)
-  }
-
-  Tooltip.prototype = {
-
-    constructor: Tooltip
-
-  , init: function ( type, element, options ) {
-      var eventIn
-        , eventOut
-
-      this.type = type
-      this.$element = $(element)
-      this.options = this.getOptions(options)
-      this.enabled = true
-
-      if (this.options.trigger != 'manual') {
-        eventIn  = this.options.trigger == 'hover' ? 'mouseenter' : 'focus'
-        eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur'
-        this.$element.on(eventIn, this.options.selector, $.proxy(this.enter, this))
-        this.$element.on(eventOut, this.options.selector, $.proxy(this.leave, this))
-      }
-
-      this.options.selector ?
-        (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
-        this.fixTitle()
-    }
-
-  , getOptions: function ( options ) {
-      options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data())
-
-      if (options.delay && typeof options.delay == 'number') {
-        options.delay = {
-          show: options.delay
-        , hide: options.delay
-        }
-      }
-
-      return options
-    }
-
-  , enter: function ( e ) {
-      var self = $(e.currentTarget)[this.type](this._options).data(this.type)
-
-      if (!self.options.delay || !self.options.delay.show) {
-        self.show()
-      } else {
-        self.hoverState = 'in'
-        setTimeout(function() {
-          if (self.hoverState == 'in') {
-            self.show()
-          }
-        }, self.options.delay.show)
-      }
-    }
-
-  , leave: function ( e ) {
-      var self = $(e.currentTarget)[this.type](this._options).data(this.type)
-
-      if (!self.options.delay || !self.options.delay.hide) {
-        self.hide()
-      } else {
-        self.hoverState = 'out'
-        setTimeout(function() {
-          if (self.hoverState == 'out') {
-            self.hide()
-          }
-        }, self.options.delay.hide)
-      }
-    }
-
-  , show: function () {
-      var $tip
-        , inside
-        , pos
-        , actualWidth
-        , actualHeight
-        , placement
-        , tp
-
-      if (this.hasContent() && this.enabled) {
-        $tip = this.tip()
-        this.setContent()
-
-        if (this.options.animation) {
-          $tip.addClass('fade')
-        }
-
-        placement = typeof this.options.placement == 'function' ?
-          this.options.placement.call(this, $tip[0], this.$element[0]) :
-          this.options.placement
-
-        inside = /in/.test(placement)
-
-        $tip
-          .remove()
-          .css({ top: 0, left: 0, display: 'block' })
-          .appendTo(inside ? this.$element : document.body)
-
-        pos = this.getPosition(inside)
-
-        actualWidth = $tip[0].offsetWidth
-        actualHeight = $tip[0].offsetHeight
-
-        switch (inside ? placement.split(' ')[1] : placement) {
-          case 'bottom':
-            tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
-            break
-          case 'top':
-            tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
-            break
-          case 'left':
-            tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
-            break
-          case 'right':
-            tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
-            break
-        }
-
-        $tip
-          .css(tp)
-          .addClass(placement)
-          .addClass('in')
-      }
-    }
-
-  , setContent: function () {
-      var $tip = this.tip()
-      $tip.find('.timeline-tooltip-inner').html(this.getTitle())
-      $tip.removeClass('fade in top bottom left right')
-    }
-
-  , hide: function () {
-      var that = this
-        , $tip = this.tip()
-
-      $tip.removeClass('in')
-
-      function removeWithAnimation() {
-        var timeout = setTimeout(function () {
-          $tip.off($.support.transition.end).remove()
-        }, 500)
-
-        $tip.one($.support.transition.end, function () {
-          clearTimeout(timeout)
-          $tip.remove()
-        })
-      }
-
-      $.support.transition && this.$tip.hasClass('fade') ?
-        removeWithAnimation() :
-        $tip.remove()
-    }
-
-  , 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') || '').removeAttr('title')
-      }
-    }
-
-  , hasContent: function () {
-      return this.getTitle()
-    }
-
-  , getPosition: function (inside) {
-      return $.extend({}, (inside ? {top: 0, left: 0} : this.$element.offset()), {
-        width: this.$element[0].offsetWidth
-      , height: this.$element[0].offsetHeight
-      })
-    }
-
-  , getTitle: function () {
-      var title
-        , $e = this.$element
-        , o = this.options
-
-      title = $e.attr('data-original-title')
-        || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
-
-      title = title.toString().replace(/(^\s*|\s*$)/, "")
-
-      return title
-    }
-
-  , tip: function () {
-      return this.$tip = this.$tip || $(this.options.template)
-    }
-
-  , validate: function () {
-      if (!this.$element[0].parentNode) {
-        this.hide()
-        this.$element = null
-        this.options = null
-      }
-    }
-
-  , enable: function () {
-      this.enabled = true
-    }
-
-  , disable: function () {
-      this.enabled = false
-    }
-
-  , toggleEnabled: function () {
-      this.enabled = !this.enabled
-    }
-
-  , toggle: function () {
-      this[this.tip().hasClass('in') ? 'hide' : 'show']()
-    }
-
-  }
-
-
- /* TOOLTIP PLUGIN DEFINITION
-  * ========================= */
-
-  $.fn.timeline_tooltip = function ( option ) {
-    return this.each(function () {
-      var $this = $(this)
-        , data = $this.data('tooltip')
-        , options = typeof option == 'object' && option
-      if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))
-      if (typeof option == 'string') data[option]()
-    })
-  }
-
-  $.fn.timeline_tooltip.Constructor = Tooltip
-
-  $.fn.timeline_tooltip.defaults = {
-    animation: true
-  , delay: 0
-  , selector: false
-  , placement: 'top'
-  , trigger: 'hover'
-  , title: ''
-  , template: '<div class="timeline-tooltip"><div class="timeline-tooltip-arrow"></div><div class="timeline-tooltip-inner"></div></div>'
-  }
-
-}( window.jQuery );
-
-/* **********************************************
-     Begin VMM.StoryJS.js
-********************************************** */
-
-/* VeriteCo StoryJS
-================================================== */
-
-/*	* CodeKit Import
-	* http://incident57.com/codekit/
-================================================== */
-// @codekit-prepend "VMM.StoryJS.License.js";
-// @codekit-prepend "Core/VMM.Core.js";
-// @codekit-prepend "Language/VMM.Language.js";
-// @codekit-prepend "Media/VMM.Media.js";
-// @codekit-prepend "Slider/VMM.DragSlider.js";
-// @codekit-prepend "Slider/VMM.Slider.js";
-// @codekit-prepend "Library/AES.js";
-// @codekit-prepend "Library/bootstrap-tooltip.js";
-
-
-if(typeof VMM != 'undefined' && typeof VMM.StoryJS == 'undefined') {
-	
-	VMM.StoryJS = function() {  
-		
-		/* PRIVATE VARS
-		================================================== */
-		
-		/* PUBLIC FUNCTIONS
-		================================================== */
-		this.init = function(d) {
-			
-		};
-		
-	}
-}
-
-
-/* **********************************************
-     Begin VMM.Timeline.js
-********************************************** */
-
-/**
-	* TimelineJS
-	* Designed and built by Zach Wise at VéritéCo
-
-	* This Source Code Form is subject to the terms of the Mozilla Public
-	* License, v. 2.0. If a copy of the MPL was not distributed with this
-	* file, You can obtain one at http://mozilla.org/MPL/2.0/.
-*/  
-
-/*	* CodeKit Import
-	* http://incident57.com/codekit/
-================================================== */
-// @codekit-prepend "VMM.Timeline.License.js";
-
-// @codekit-prepend "Core/VMM.StoryJS.js";
-
-// @codekit-append "VMM.Timeline.TimeNav.js";
-// @codekit-append "VMM.Timeline.DataObj.js";
-
-
-/* Timeline
-================================================== */
-
-if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
-	
-	VMM.Timeline = function(_timeline_id, w, h) {
-		
-		var $timeline,
-			$container,
-			$feature,
-			$feedback,
-			$slider,
-			$navigation,
-			slider,
-			timenav,
-			version		= "2.x",
-			timeline_id	= "#timelinejs",
-			events		= {},
-			data		= {},
-			_dates		= [],
-			config		= {},
-			has_width	= false,
-			has_height	= false,
-			ie7			= false,
-			is_moving	= false;
-		
-
-		if (type.of(_timeline_id) == "string") {
-			if (_timeline_id.match("#")) {
-				timeline_id	= _timeline_id;
-			} else {
-				timeline_id	= "#" + _timeline_id;
-			}
-		} else {
-			timeline_id		= "#timelinejs";
-		}
-		
-		
-		/* CONFIG
-		================================================== */
-		config = {
-			embed:					false,
-			events: {
-				data_ready:			"DATAREADY",
-				messege:			"MESSEGE",
-				headline:			"HEADLINE",
-				slide_change:		"SLIDE_CHANGE",
-				resize:				"resize"
-			},
-			id: 					timeline_id,
-			source:					"nothing",
-			type: 					"timeline",
-			touch:					false,
-			orientation: 			"normal", 
-			maptype: 				"toner",
-			version: 				"2.x", 
-			preload:				4,
-			current_slide:			0,
-			hash_bookmark:			false,
-			start_at_end: 			false,
-			start_at_slide:			0,
-			start_zoom_adjust:		0,
-			start_page: 			false,
-			api_keys: {
-				google:				"",
-				flickr:				"",
-				twitter:			""
-			},
-			interval: 				10,
-			something: 				0,
-			width: 					960,
-			height: 				540,
-			spacing: 				15,
-			loaded: {
-				slider: 			false, 
-				timenav: 			false, 
-				percentloaded: 		0
-			},
-			nav: {
-				start_page: 		false,
-				interval_width: 	200,
-				density: 			4,
-				minor_width: 		0,
-				minor_left:			0,
-				constraint: {
-					left:			0,
-					right:			0,
-					right_min:		0,
-					right_max:		0
-				},
-				zoom: {
-					adjust:			0
-				},
-				multiplier: {
-					current: 		6,
-					min: 			.1,
-					max: 			50
-				},
-				rows: 				[1, 1, 1],
-				width: 				960,
-				height: 			200,
-				marker: {
-					width: 			150,
-					height: 		50
-				}
-			},
-			feature: {
-				width: 				960,
-				height: 			540
-			},
-			slider: {
-				width: 				720,
-				height: 			400,
-				content: {
-					width: 			720,
-					height: 		400,
-					padding: 		130,
-					padding_default:130
-				},
-				nav: {
-					width: 			100,
-					height: 		200
-				}
-			},
-			ease: 					"easeInOutExpo",
-			duration: 				1000,
-			gmap_key: 				"",
-			language: 				VMM.Language
-		};
-		
-		if ( w != null && w != "") {
-			config.width = w;
-			has_width = true;
-		} 
-
-		if ( h != null && h != "") {
-			config.height = h;
-			has_height = true;
-		}
-		
-		if(window.location.hash) {
-			 var hash					=	window.location.hash.substring(1);
-			 if (!isNaN(hash)) {
-			 	 config.current_slide	=	parseInt(hash);
-			 }
-		}
-		
-		window.onhashchange = function () {
-			var hash					=	window.location.hash.substring(1);
-			if (config.hash_bookmark) {
-				if (is_moving) {
-					goToEvent(parseInt(hash));
-				} else {
-					is_moving = false;
-				}
-			} else {
-				goToEvent(parseInt(hash));
-			}
-		}
-		
-		/* CREATE CONFIG
-		================================================== */
-		function createConfig(conf) {
-			
-			// APPLY SUPPLIED CONFIG TO TIMELINE CONFIG
-			if (typeof embed_config == 'object') {
-				timeline_config = embed_config;
-			}
-			if (typeof timeline_config == 'object') {
-				trace("HAS TIMELINE CONFIG");
-				config = VMM.Util.mergeConfig(config, timeline_config);
-			} else if (typeof conf == 'object') {
-				config = VMM.Util.mergeConfig(config, conf);
-			}
-			
-			if (VMM.Browser.device == "mobile" || VMM.Browser.device == "tablet") {
-				config.touch = true;
-			}
-			
-			config.nav.width			= config.width;
-			config.nav.height			= 200;
-			config.feature.width		= config.width;
-			config.feature.height		= config.height - config.nav.height;
-			config.nav.zoom.adjust		= parseInt(config.start_zoom_adjust, 10);
-			VMM.Timeline.Config			= config;
-			VMM.master_config.Timeline	= VMM.Timeline.Config;
-			this.events					= config.events;
-			
-			if (config.gmap_key != "") {
-				config.api_keys.google = config.gmap_key;
-			}
-			
-			trace("VERSION " + config.version);
-			version = config.version;
-		}
-		
-		/* CREATE TIMELINE STRUCTURE
-		================================================== */
-		function createStructure() {
-			// CREATE DOM STRUCTURE
-			$timeline	= VMM.getElement(timeline_id);
-			VMM.Lib.addClass($timeline, "vco-timeline");
-			VMM.Lib.addClass($timeline, "vco-storyjs");
-			
-			$container	= VMM.appendAndGetElement($timeline, "<div>", "vco-container vco-main");
-			$feature	= VMM.appendAndGetElement($container, "<div>", "vco-feature");
-			$slider		= VMM.appendAndGetElement($feature, "<div>", "vco-slider");
-			$navigation	= VMM.appendAndGetElement($container, "<div>", "vco-navigation");
-			$feedback	= VMM.appendAndGetElement($timeline, "<div>", "vco-feedback", "");
-			
-			
-			if (typeof config.language.right_to_left != 'undefined') {
-				VMM.Lib.addClass($timeline, "vco-right-to-left");
-			}
-			
-			slider		= new VMM.Slider($slider, config);
-			timenav		= new VMM.Timeline.TimeNav($navigation);
-			
-			if (!has_width) {
-				config.width = VMM.Lib.width($timeline);
-			} else {
-				VMM.Lib.width($timeline, config.width);
-			}
-
-			if (!has_height) {
-				config.height = VMM.Lib.height($timeline);
-			} else {
-				VMM.Lib.height($timeline, config.height);
-			}
-			
-			if (config.touch) {
-				VMM.Lib.addClass($timeline, "vco-touch");
-			} else {
-				VMM.Lib.addClass($timeline, "vco-notouch");
-			}
-			
-			
-		}
-		
-		/* ON EVENT
-		================================================== */
-
-		function onDataReady(e, d) {
-			trace("onDataReady");
-			data = d.timeline;
-			
-			if (type.of(data.era) != "array") {
-				data.era = [];
-			}
-			
-			buildDates();
-			
-		};
-		
-		function onDatesProcessed() {
-			build();
-		}
-		
-		function reSize() {
-			
-			updateSize();
-			
-			slider.setSize(config.feature.width, config.feature.height);
-			timenav.setSize(config.width, config.height);
-			if (orientationChange()) {
-				setViewport();
-			}
-			
-		};
-		
-		function onSliderLoaded(e) {
-			config.loaded.slider = true;
-			onComponentLoaded();
-		};
-		
-		function onComponentLoaded(e) {
-			config.loaded.percentloaded = config.loaded.percentloaded + 25;
-			
-			if (config.loaded.slider && config.loaded.timenav) {
-				hideMessege();
-			}
-		}
-		
-		function onTimeNavLoaded(e) {
-			config.loaded.timenav = true;
-			onComponentLoaded();
-		}
-		
-		function onSlideUpdate(e) {
-			is_moving = true;
-			config.current_slide = slider.getCurrentNumber();
-			setHash(config.current_slide);
-			timenav.setMarker(config.current_slide, config.ease,config.duration);
-		};
-		
-		function onMarkerUpdate(e) {
-			is_moving = true;
-			config.current_slide = timenav.getCurrentNumber();
-			setHash(config.current_slide);
-			slider.setSlide(config.current_slide);
-		};
-		
-		function goToEvent(n) {
-			if (n <= _dates.length - 1 && n >= 0) {
-				config.current_slide = n;
-				slider.setSlide(config.current_slide);
-				timenav.setMarker(config.current_slide, config.ease,config.duration);
-			} 
-		}
-		
-		function setHash(n) {
-			if (config.hash_bookmark) {
-				window.location.hash = "#" + n.toString();
-			}
-		}
-		
-		function getViewport() {
-			
-		}
-		
-		function setViewport() {
-			var viewport_content		= "",
-				viewport_orientation	= searchOrientation(window.orientation);
-			
-			if (VMM.Browser.device == "mobile") {
-				if (viewport_orientation == "portrait") {
-					//viewport_content	= "width=device-width; initial-scale=0.75, maximum-scale=0.75";
-					viewport_content	= "width=device-width; initial-scale=0.5, maximum-scale=0.5";
-				} else if (viewport_orientation == "landscape") {
-					viewport_content	= "width=device-width; initial-scale=0.5, maximum-scale=0.5";
-				} else {
-					viewport_content	= "width=device-width, initial-scale=1, maximum-scale=1.0";
-				}
-			} else if (VMM.Browser.device == "tablet") {
-				//viewport_content		= "width=device-width, initial-scale=1, maximum-scale=1.0";
-			}
-			
-			if (document.getElementById("viewport")) {
-				//VMM.Lib.attr("#viewport", "content", viewport_content);
-			} else {
-				//VMM.appendElement("head", "<meta id='viewport' name='viewport' content=" + viewport_content + "/>");
-			}
-
-		}
-		
-		/* ORIENTATION
-		================================================== */
-		function searchOrientation(orientation) {
-			var orient = "";
-			
-			if ( orientation == 0  || orientation == 180) {  
-				orient = "portrait";
-			} else if ( orientation == 90 || orientation == -90) {  
-				orient = "landscape";
-			} else {
-				orient = "normal";
-			}
-			
-			return orient;
-		}
-		
-		function orientationChange() {
-			var orientation	= searchOrientation(window.orientation);
-			
-			if (orientation == config.orientation) {
-				return false;
-			} else {
-				config.orientation = orientation;
-				return true;
-			}
-			
-		}
-		
-		
-		/* PUBLIC FUNCTIONS
-		================================================== */
-		this.init = function(c, _data) {
-			trace('INIT');
-			setViewport();
-			createConfig(c);
-			createStructure();
-			
-			if (type.of(_data) == "string") {
-				config.source	= _data;
-			}
-			
-			// LANGUAGE
-			VMM.Date.setLanguage(config.language);
-			VMM.master_config.language = config.language;
-			
-			// EXTERNAL API
-			VMM.ExternalAPI.setKeys(config.api_keys);
-			VMM.ExternalAPI.googlemaps.setMapType(config.maptype);
-			
-			// EVENTS
-			VMM.bindEvent(global, onDataReady, config.events.data_ready);
-			VMM.bindEvent(global, showMessege, config.events.messege);
-			
-			VMM.fireEvent(global, config.events.messege, config.language.messages.loading_timeline);
-			
-			/* GET DATA
-			================================================== */
-			if (VMM.Browser.browser == "Explorer" || VMM.Browser.browser == "MSIE") {
-				if ( parseInt(VMM.Browser.version, 10) <= 7 ) {
-					ie7 = true;
-				}
-			}
-			
-			if (type.of(config.source) == "string" || type.of(config.source) == "object") {
-				VMM.Timeline.DataObj.getData(config.source);
-			} else {
-				VMM.fireEvent(global, config.events.messege, "No data source provided");
-				//VMM.Timeline.DataObj.getData(VMM.getElement(timeline_id));
-			}
-			
-			
-		};
-		
-		this.iframeLoaded = function() {
-			trace("iframeLoaded");
-		};
-		
-		this.reload = function(_d) {
-			trace("Load new timeline data" + _d);
-			VMM.fireEvent(global, config.events.messege, config.language.messages.loading_timeline);
-			data = {};
-			VMM.Timeline.DataObj.getData(_d);
-			config.current_slide = 0;
-			slider.setSlide(0);
-			timenav.setMarker(0, config.ease,config.duration);
-		};
-		
-		/* DATA 
-		================================================== */
-		function getData(url) {
-			VMM.getJSON(url, function(d) {
-				data = VMM.Timeline.DataObj.getData(d);
-				VMM.fireEvent(global, config.events.data_ready);
-			});
-		};
-		
-		/* MESSEGES 
-		================================================== */
-		function showMessege(e, msg, other) {
-			trace("showMessege " + msg);
-			//VMM.attachElement($timeline, $feedback);
-			if (other) {
-				VMM.attachElement($feedback, msg);
-			} else{
-				VMM.attachElement($feedback, VMM.MediaElement.loadingmessage(msg));
-			}
-		};
-		
-		function hideMessege() {
-			VMM.Lib.animate($feedback, config.duration, config.ease*4, {"opacity": 0}, detachMessege);
-		};
-		
-		function detachMessege() {
-			VMM.Lib.detach($feedback);
-		}
-		
-		/* BUILD DISPLAY
-		================================================== */
-		function build() {
-			
-			// START AT SLIDE
-			if (parseInt(config.start_at_slide) > 0 && config.current_slide == 0) {
-				config.current_slide = parseInt(config.start_at_slide); 
-			}
-			// START AT END
-			if (config.start_at_end && config.current_slide == 0) {
-				config.current_slide = _dates.length - 1;
-			}
-			
-			
-			// IE7
-			if (ie7) {
-				ie7 = true;
-				VMM.fireEvent(global, config.events.messege, "Internet Explorer " + VMM.Browser.version + " is not supported by TimelineJS. Please update your browser to version 8 or higher.");
-			} else {
-				
-				detachMessege();
-				reSize();
-				
-				// EVENT LISTENERS
-				VMM.bindEvent($slider, onSliderLoaded, "LOADED");
-				VMM.bindEvent($navigation, onTimeNavLoaded, "LOADED");
-				VMM.bindEvent($slider, onSlideUpdate, "UPDATE");
-				VMM.bindEvent($navigation, onMarkerUpdate, "UPDATE");
-				
-				// INITIALIZE COMPONENTS
-				slider.init(_dates);
-				timenav.init(_dates, data.era);
-			
-				// RESIZE EVENT LISTENERS
-				VMM.bindEvent(global, reSize, config.events.resize);
-				
-				
-				
-			}
-			
-			
-		};
-		
-		function updateSize() {
-			trace("UPDATE SIZE");
-			config.width = VMM.Lib.width($timeline);
-			config.height = VMM.Lib.height($timeline);
-			
-			config.nav.width = config.width;
-			config.feature.width = config.width;
-			
-			config.feature.height = config.height - config.nav.height - 3;
-			
-			if (VMM.Browser.device == "mobile") {
-				/*
-				if (VMM.Browser.orientation == "portrait") {
-					config.feature.height	= 480;
-					config.height			= 480 + config.nav.height;
-				} else if(VMM.Browser.orientation == "landscape") {
-					config.feature.height	= 320;
-					config.height			= 320 + config.nav.height;
-				} else {
-					config.feature.height = config.height - config.nav.height - 3;
-				}
-				*/
-			}
-			
-			if (config.width < 641) {
-				VMM.Lib.addClass($timeline, "vco-skinny");
-			} else {
-				VMM.Lib.removeClass($timeline, "vco-skinny");
-			}
-			
-		};
-		
-		// BUILD DATE OBJECTS
-		function buildDates() {
-			
-			_dates = [];
-			VMM.fireEvent(global, config.events.messege, "Building Dates");
-			updateSize();
-			
-			for(var i = 0; i < data.date.length; i++) {
-				
-				if (data.date[i].startDate != null && data.date[i].startDate != "") {
-					
-					var _date		= {},
-						do_start	= VMM.Date.parse(data.date[i].startDate, true),
-						do_end;
-						
-					_date.startdate		= do_start.date;
-					_date.precisiondate	= do_start.precision;
-					
-					if (!isNaN(_date.startdate)) {
-						
-					
-						// END DATE
-						if (data.date[i].endDate != null && data.date[i].endDate != "") {
-							_date.enddate = VMM.Date.parse(data.date[i].endDate);
-						} else {
-							_date.enddate = _date.startdate;
-						}
-						
-						_date.needs_slug = false;
-						
-						if (data.date[i].headline == "") {
-							if (data.date[i].slug != null && data.date[i].slug != "") {
-								_date.needs_slug = true;
-							}
-						}
-						
-						_date.title				= data.date[i].headline;
-						_date.headline			= data.date[i].headline;
-						_date.type				= data.date[i].type;
-						_date.date				= VMM.Date.prettyDate(_date.startdate, false, _date.precisiondate);
-						_date.asset				= data.date[i].asset;
-						_date.fulldate			= _date.startdate.getTime();
-						_date.text				= data.date[i].text;
-						_date.content			= "";
-						_date.tag				= data.date[i].tag;
-						_date.slug				= data.date[i].slug;
-						_date.uniqueid			= VMM.Util.unique_ID(7);
-						_date.classname			= data.date[i].classname;
-						
-						
-						_dates.push(_date);
-					} 
-					
-				}
-				
-			};
-			
-			/* CUSTOM SORT
-			================================================== */
-			if (data.type != "storify") {
-				_dates.sort(function(a, b){
-					return a.fulldate - b.fulldate
-				});
-			}
-			
-			/* CREATE START PAGE IF AVAILABLE
-			================================================== */
-			if (data.headline != null && data.headline != "" && data.text != null && data.text != "") {
-
-				var startpage_date,
-					do_start,
-					_date			= {},
-					td_num			= 0,
-					td;
-					
-				if (typeof data.startDate != 'undefined') {
-					do_start		= VMM.Date.parse(data.startDate, true);
-					startpage_date	= do_start.date;
-				} else {
-					startpage_date = false;
-				}
-				trace("HAS STARTPAGE");
-				trace(startpage_date);
-				
-				if (startpage_date && startpage_date < _dates[0].startdate) {
-					_date.startdate = new Date(startpage_date);
-				} else {
-					td = _dates[0].startdate;
-					_date.startdate = new Date(_dates[0].startdate);
-				
-					if (td.getMonth() === 0 && td.getDate() == 1 && td.getHours() === 0 && td.getMinutes() === 0 ) {
-						// trace("YEAR ONLY");
-						_date.startdate.setFullYear(td.getFullYear() - 1);
-					} else if (td.getDate() <= 1 && td.getHours() === 0 && td.getMinutes() === 0) {
-						// trace("YEAR MONTH");
-						_date.startdate.setMonth(td.getMonth() - 1);
-					} else if (td.getHours() === 0 && td.getMinutes() === 0) {
-						// trace("YEAR MONTH DAY");
-						_date.startdate.setDate(td.getDate() - 1);
-					} else  if (td.getMinutes() === 0) {
-						// trace("YEAR MONTH DAY HOUR");
-						_date.startdate.setHours(td.getHours() - 1);
-					} else {
-						// trace("YEAR MONTH DAY HOUR MINUTE");
-						_date.startdate.setMinutes(td.getMinutes() - 1);
-					}
-				}
-				
-				_date.uniqueid		= VMM.Util.unique_ID(7);
-				_date.enddate		= _date.startdate;
-				_date.precisiondate	= do_start.precision;
-				_date.title			= data.headline;
-				_date.headline		= data.headline;
-				_date.text			= data.text;
-				_date.type			= "start";
-				_date.date			= VMM.Date.prettyDate(data.startDate, false, _date.precisiondate);
-				_date.asset			= data.asset;
-				_date.slug			= false;
-				_date.needs_slug	= false;
-				_date.fulldate		= _date.startdate.getTime();
-				
-				if (config.embed) {
-					VMM.fireEvent(global, config.events.headline, _date.headline);
-				}
-				
-				_dates.unshift(_date);
-			}
-			
-			/* CUSTOM SORT
-			================================================== */
-			if (data.type != "storify") {
-				_dates.sort(function(a, b){
-					return a.fulldate - b.fulldate
-				});
-			}
-			
-			onDatesProcessed();
-		}
-		
-	};
-
-	VMM.Timeline.Config = {};
-	
-};
-
-/* **********************************************
-     Begin VMM.Timeline.TimeNav.js
-********************************************** */
-
-/* 	TimeNav
-	This class handles the bottom timeline navigation.
-	It requires the VMM.Util class and VMM.Date class
-================================================== */
-
-if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefined') {
-	
-	VMM.Timeline.TimeNav = function(parent, content_width, content_height) {
-		trace("VMM.Timeline.TimeNav");
-		
-		var $timenav, $content, $time, $timeintervalminor, $timeinterval, $timeintervalmajor, $timebackground, 
-			$timeintervalbackground, $timenavline, $timenavindicator, $timeintervalminor_minor, $toolbar, $zoomin, $zoomout, $dragslide,
-			config					= VMM.Timeline.Config,
-			row_height,
-			events					= {},
-			timespan				= {},
-			layout					= parent,
-			data					= [],
-			era_markers				= [],
-			markers					= [],
-			interval_array			= [],
-			interval_major_array	= [],
-			tags					= [],
-			current_marker			= 0,
-			_active					= false,
-			eras,
-			content,
-			timeouts = {
-				interval_position:	""
-			},
-			timenav_pos = {
-				left:				"",
-				visible: {
-					left:			"",
-					right:			""
-				}
-			},
-			timelookup = {
-				day:			24,
-				month:			12,
-				year:			10,
-				hour:			60,
-				minute:			60,
-				second:			1000,
-				decade:			10,
-				century:		100,
-				millenium:		1000,
-				age:			1000000,
-				epoch:			10000000,
-				era:			100000000,
-				eon:			500000000,
-				week:			4.34812141,
-				days_in_month:	30.4368499,
-				days_in_week:	7,
-				weeks_in_month:	4.34812141,
-				weeks_in_year:	52.177457,
-				days_in_year:	365.242199,
-				hours_in_day:	24
-			},
-			dateFractionBrowser = {
-				day:			86400000,
-				week:			7,
-				month:			30.4166666667,
-				year:			12,
-				hour:			24,
-				minute:			1440,
-				second:			86400,
-				decade:			10,
-				century:		100,
-				millenium:		1000,
-				age:			1000000,
-				epoch:			10000000,
-				era:			100000000,
-				eon:			500000000
-			},
-			interval = {
-				type:			"year",
-				number:			10,
-				first:			1970,
-				last:			2011,
-				multiplier:		100,
-				classname:		"_idd",
-				interval_type:	"interval"
-			},
-			interval_major = {
-				type:			"year",
-				number:			10,
-				first:			1970,
-				last:			2011,
-				multiplier:		100,
-				classname:		"major",
-				interval_type:	"interval major"
-			},
-			interval_macro = {
-				type:			"year",
-				number:			10,
-				first:			1970,
-				last:			2011,
-				multiplier:		100,
-				classname:		"_dd_minor",
-				interval_type:	"interval minor"
-			},
-			interval_calc = {
-				day: {},
-				month: {},
-				year: {},
-				hour: {},
-				minute: {},
-				second: {},
-				decade: {},
-				century: {},
-				millenium: {},
-				week: {},
-				age: {},
-				epoch: {},
-				era: {},
-				eon: {}
-			};
-		
-		
-		/* ADD to Config
-		================================================== */
-		row_height			=	config.nav.marker.height/2;
-		config.nav.rows = {
-			full:				[1, row_height*2, row_height*4],
-			half:				[1, row_height, row_height*2, row_height*3, row_height*4, row_height*5],
-			current:			[]
-		}
-		
-		if (content_width != null && content_width != "") {
-			config.nav.width	= 	content_width;
-		} 
-		if (content_height != null && content_height != "") {
-			config.nav.height	= 	content_height;
-		}
-		
-		/* INIT
-		================================================== */
-		this.init = function(d,e) {
-			trace('VMM.Timeline.TimeNav init');
-			// need to evaluate d
-			// some function to determine type of data and prepare it
-			if(typeof d != 'undefined') {
-				this.setData(d, e);
-			} else {
-				trace("WAITING ON DATA");
-			}
-		};
-		
-		/* GETTERS AND SETTERS
-		================================================== */
-		this.setData = function(d,e) {
-			if(typeof d != 'undefined') {
-				data = {};
-				data = d;
-				eras = e;
-				build();
-			} else{
-				trace("NO DATA");
-			}
-		};
-		
-		this.setSize = function(w, h) {
-			if (w != null) {config.width = w};
-			if (h != null) {config.height = h};
-			if (_active) {
-				reSize();
-			}
-
-			
-		}
-		
-		this.setMarker = function(n, ease, duration, fast) {
-			goToMarker(n, ease, duration);
-		}
-		
-		this.getCurrentNumber = function() {
-			return current_marker;
-		}
-		
-		/* ON EVENT
-		================================================== */
-		
-		function onConfigSet() {
-			trace("onConfigSet");
-		};
-		
-		function reSize(firstrun) {
-			config.nav.constraint.left = (config.width/2);
-			config.nav.constraint.right = config.nav.constraint.right_min - (config.width/2);
-			$dragslide.updateConstraint(config.nav.constraint);
-			
-			VMM.Lib.css($timenavline, "left", Math.round(config.width/2)+2);
-			VMM.Lib.css($timenavindicator, "left", Math.round(config.width/2)-8);
-			goToMarker(config.current_slide, config.ease, config.duration, true, firstrun);
-		};
-		
-		function upDate() {
-			VMM.fireEvent(layout, "UPDATE");
-		}
-		
-		function onZoomIn() {
-			
-			$dragslide.cancelSlide();
-			if (config.nav.multiplier.current > config.nav.multiplier.min) {
-				if (config.nav.multiplier.current <= 1) {
-					config.nav.multiplier.current = config.nav.multiplier.current - .25;
-				} else {
-					if (config.nav.multiplier.current > 5) {
-						if (config.nav.multiplier.current > 16) {
-							config.nav.multiplier.current = Math.round(config.nav.multiplier.current - 10);
-						} else {
-							config.nav.multiplier.current = Math.round(config.nav.multiplier.current - 4);
-						}
-					} else {
-						config.nav.multiplier.current = Math.round(config.nav.multiplier.current - 1);
-					}
-					
-				}
-				if (config.nav.multiplier.current <= 0) {
-					config.nav.multiplier.current = config.nav.multiplier.min;
-				}
-				refreshTimeline();
-			}
-		}
-		
-		function onZoomOut() {
-			$dragslide.cancelSlide();
-			if (config.nav.multiplier.current < config.nav.multiplier.max) {
-				if (config.nav.multiplier.current > 4) {
-					if (config.nav.multiplier.current > 16) {
-						config.nav.multiplier.current = Math.round(config.nav.multiplier.current + 10);
-					} else {
-						config.nav.multiplier.current = Math.round(config.nav.multiplier.current + 4);
-					}
-				} else {
-					config.nav.multiplier.current = Math.round(config.nav.multiplier.current + 1);
-				}
-				
-				if (config.nav.multiplier.current >= config.nav.multiplier.max) {
-					config.nav.multiplier.current = config.nav.multiplier.max;
-				}
-				refreshTimeline();
-			}
-		}
-		
-		function onBackHome(e) {
-			$dragslide.cancelSlide();
-			goToMarker(0);
-			upDate();
-		}
-		
-		function onMouseScroll(e) {
-			var delta		= 0,
-				scroll_to	= 0;
-			if (!e) {
-				e = window.event;
-			}
-			if (e.originalEvent) {
-				e = e.originalEvent;
-			}
-			
-			// Browsers unable to differntiate between up/down and left/right scrolling
-			/*
-			if (e.wheelDelta) {
-				delta = e.wheelDelta/6;
-			} else if (e.detail) {
-				delta = -e.detail*12;
-			}
-			*/
-			
-			// Webkit and browsers able to differntiate between up/down and left/right scrolling
-			if (typeof e.wheelDeltaX != 'undefined' ) {
-				delta = e.wheelDeltaY/6;
-				if (Math.abs(e.wheelDeltaX) > Math.abs(e.wheelDeltaY)) {
-					delta = e.wheelDeltaX/6;
-				} else {
-					//delta = e.wheelDeltaY/6;
-					delta = 0;
-				}
-			}
-			if (delta) {
-				if (e.preventDefault) {
-					 e.preventDefault();
-				}
-				e.returnValue = false;
-			}
-			// Stop from scrolling too far
-			scroll_to = VMM.Lib.position($timenav).left + delta;
-			
-			if (scroll_to > config.nav.constraint.left) {
-				scroll_to = config.width/2;
-			} else if (scroll_to < config.nav.constraint.right) {
-				scroll_to = config.nav.constraint.right;
-			}
-			
-			//VMM.Lib.stop($timenav);
-			//VMM.Lib.animate($timenav, config.duration/2, "linear", {"left": scroll_to});
-			VMM.Lib.css($timenav, "left", scroll_to);	
-		}
-		
-		function refreshTimeline() {
-			trace("config.nav.multiplier " + config.nav.multiplier.current);
-			positionMarkers(true);
-			positionEras(true);
-			positionInterval($timeinterval, interval_array, true, true);
-			positionInterval($timeintervalmajor, interval_major_array, true);
-			config.nav.constraint.left = (config.width/2);
-			config.nav.constraint.right = config.nav.constraint.right_min - (config.width/2);
-			$dragslide.updateConstraint(config.nav.constraint);
-		};
-		
-		/* MARKER EVENTS
-		================================================== */
-		function onMarkerClick(e) {
-			$dragslide.cancelSlide();
-			goToMarker(e.data.number);
-			upDate();
-		};
-		
-		function onMarkerHover(e) {
-			VMM.Lib.toggleClass(e.data.elem, "zFront");
-		};
-		
-		function goToMarker(n, ease, duration, fast, firstrun) {
-			trace("GO TO MARKER");
-			var _ease		= config.ease,
-				_duration	= config.duration,
-				is_last		= false,
-				is_first	= false;
-			
-			current_marker = 	n;
-			
-			timenav_pos.left			= (config.width/2) - markers[current_marker].pos_left
-			timenav_pos.visible.left	= Math.abs(timenav_pos.left) - 100;
-			timenav_pos.visible.right	= Math.abs(timenav_pos.left) + config.width + 100;
-			
-			if (current_marker == 0) {
-				is_first = true;
-			}
-			if (current_marker +1 == markers.length) {
-				is_last = true
-			}
-			if (ease != null && ease != "") {_ease = ease};
-			if (duration != null && duration != "") {_duration = duration};
-			
-			// set marker style
-			for(var i = 0; i < markers.length; i++) {
-				VMM.Lib.removeClass(markers[i].marker, "active");
-			}
-			
-			if (config.start_page && markers[0].type == "start") {
-				VMM.Lib.visible(markers[0].marker, false);
-				VMM.Lib.addClass(markers[0].marker, "start");
-			}
-			
-			VMM.Lib.addClass(markers[current_marker].marker, "active");
-			
-			// ANIMATE MARKER
-			VMM.Lib.stop($timenav);
-			VMM.Lib.animate($timenav, _duration, _ease, {"left": timenav_pos.left});
-			
-		}
-		
-		/* TOUCH EVENTS
-		================================================== */
-		function onTouchUpdate(e, b) {
-			VMM.Lib.animate($timenav, b.time/2, config.ease, {"left": b.left});
-		};
-		
-		/* CALCULATIONS
-		================================================== */
-		function averageMarkerPositionDistance() {
-			var last_pos	= 0,
-				pos			= 0,
-				pos_dif		= 0,
-				mp_diff		= [],
-				i			= 0;
-			
-			for(i = 0; i < markers.length; i++) {
-				if (data[i].type == "start") {
-					
-				} else {
-					var _pos = positionOnTimeline(interval, markers[i].relative_pos),
-					last_pos = pos;
-					pos = _pos.begin;
-					pos_dif = pos - last_pos;
-					mp_diff.push(pos_dif);
-				}
-			}
-			return VMM.Util.average(mp_diff).mean;
-		}
-		
-		function averageDateDistance() {
-			var last_dd			= 0,
-				dd				= 0,
-				_dd				= "",
-				date_dif		= 0,
-				date_diffs		= [],
-				is_first_date	= true,
-				i				= 0;
-			
-			for(i = 0; i < data.length; i++) {
-				if (data[i].type == "start") {
-					trace("DATA DATE IS START")
-				} else {
-					_dd			= data[i].startdate;
-					last_dd		= dd;
-					dd			= _dd;
-					date_dif	= dd - last_dd;
-					date_diffs.push(date_dif);
-				}
-			}
-			
-			return VMM.Util.average(date_diffs);
-		}
-		
-		function calculateMultiplier() {
-			var temp_multiplier	= config.nav.multiplier.current,
-				i				= 0;
-				
-			for(i = 0; i < temp_multiplier; i++) {
-				if (averageMarkerPositionDistance() < 75) {
-					if (config.nav.multiplier.current > 1) {
-						config.nav.multiplier.current = (config.nav.multiplier.current - 1);
-					}
-				}
-			}
-			
-		}
-		
-		function calculateInterval() {
-			// NEED TO REWRITE ALL OF THIS
-			var _first								= getDateFractions(data[0].startdate),
-				_last								= getDateFractions(data[data.length - 1].enddate);
-			
-			// EON
-			interval_calc.eon.type					=	"eon";
-			interval_calc.eon.first					=	_first.eons;
-			interval_calc.eon.base					=	Math.floor(_first.eons);
-			interval_calc.eon.last					=	_last.eons;
-			interval_calc.eon.number				=	timespan.eons;
-			interval_calc.eon.multiplier		 	=	timelookup.eons;
-			interval_calc.eon.minor					=	timelookup.eons;
-			
-			// ERA
-			interval_calc.era.type					=	"era";
-			interval_calc.era.first					=	_first.eras;
-			interval_calc.era.base					=	Math.floor(_first.eras);
-			interval_calc.era.last					=	_last.eras;
-			interval_calc.era.number				=	timespan.eras;
-			interval_calc.era.multiplier		 	=	timelookup.eras;
-			interval_calc.era.minor					=	timelookup.eras;
-			
-			// EPOCH
-			interval_calc.epoch.type				=	"epoch";
-			interval_calc.epoch.first				=	_first.epochs;
-			interval_calc.epoch.base				=	Math.floor(_first.epochs);
-			interval_calc.epoch.last				=	_last.epochs;
-			interval_calc.epoch.number				=	timespan.epochs;
-			interval_calc.epoch.multiplier		 	=	timelookup.epochs;
-			interval_calc.epoch.minor				=	timelookup.epochs;
-			
-			// AGE
-			interval_calc.age.type					=	"age";
-			interval_calc.age.first					=	_first.ages;
-			interval_calc.age.base					=	Math.floor(_first.ages);
-			interval_calc.age.last					=	_last.ages;
-			interval_calc.age.number				=	timespan.ages;
-			interval_calc.age.multiplier		 	=	timelookup.ages;
-			interval_calc.age.minor					=	timelookup.ages;
-			
-			// MILLENIUM
-			interval_calc.millenium.type 			=	"millenium";
-			interval_calc.millenium.first			=	_first.milleniums;
-			interval_calc.millenium.base			=	Math.floor(_first.milleniums);
-			interval_calc.millenium.last			=	_last.milleniums;
-			interval_calc.millenium.number			=	timespan.milleniums;
-			interval_calc.millenium.multiplier	 	=	timelookup.millenium;
-			interval_calc.millenium.minor			=	timelookup.millenium;
-			
-			// CENTURY
-			interval_calc.century.type 				= "century";
-			interval_calc.century.first 			= _first.centuries;
-			interval_calc.century.base 				= Math.floor(_first.centuries);
-			interval_calc.century.last 				= _last.centuries;
-			interval_calc.century.number 			= timespan.centuries;
-			interval_calc.century.multiplier	 	= timelookup.century;
-			interval_calc.century.minor 			= timelookup.century;
-			
-			// DECADE
-			interval_calc.decade.type 				= "decade";
-			interval_calc.decade.first 				= _first.decades;
-			interval_calc.decade.base 				= Math.floor(_first.decades);
-			interval_calc.decade.last 				= _last.decades;
-			interval_calc.decade.number 			= timespan.decades;
-			interval_calc.decade.multiplier 		= timelookup.decade;
-			interval_calc.decade.minor 				= timelookup.decade;
-			
-			// YEAR
-			interval_calc.year.type					= "year";
-			interval_calc.year.first 				= _first.years;
-			interval_calc.year.base 				= Math.floor(_first.years);
-			interval_calc.year.last					= _last.years;
-			interval_calc.year.number 				= timespan.years;
-			interval_calc.year.multiplier 			= 1;
-			interval_calc.year.minor 				= timelookup.month;
-			
-			// MONTH
-			interval_calc.month.type 				= "month";
-			interval_calc.month.first 				= _first.months;
-			interval_calc.month.base 				= Math.floor(_first.months);
-			interval_calc.month.last 				= _last.months;
-			interval_calc.month.number 				= timespan.months;
-			interval_calc.month.multiplier 			= 1;
-			interval_calc.month.minor 				= Math.round(timelookup.week);
-			
-			// WEEK
-			// NOT DONE
-			interval_calc.week.type 				= "week";
-			interval_calc.week.first 				= _first.weeks;
-			interval_calc.week.base 				= Math.floor(_first.weeks);
-			interval_calc.week.last 				= _last.weeks;
-			interval_calc.week.number 				= timespan.weeks;
-			interval_calc.week.multiplier 			= 1;
-			interval_calc.week.minor 				= 7;
-			
-			// DAY
-			interval_calc.day.type 					= "day";
-			interval_calc.day.first 				= _first.days;
-			interval_calc.day.base	 				= Math.floor(_first.days);
-			interval_calc.day.last 					= _last.days;
-			interval_calc.day.number 				= timespan.days;
-			interval_calc.day.multiplier 			= 1;
-			interval_calc.day.minor 				= 24;
-			
-			// HOUR
-			interval_calc.hour.type 				= "hour";
-			interval_calc.hour.first 				= _first.hours;
-			interval_calc.hour.base 				= Math.floor(_first.hours);
-			interval_calc.hour.last 				= _last.hours;
-			interval_calc.hour.number 				= timespan.hours;
-			interval_calc.hour.multiplier 			= 1;
-			interval_calc.hour.minor 				= 60;
-			
-			// MINUTE
-			interval_calc.minute.type 				= "minute";
-			interval_calc.minute.first 				= _first.minutes;
-			interval_calc.minute.base 				= Math.floor(_first.minutes);
-			interval_calc.minute.last 				= _last.minutes;
-			interval_calc.minute.number 			= timespan.minutes;
-			interval_calc.minute.multiplier 		= 1;
-			interval_calc.minute.minor 				= 60;
-			
-			// SECOND
-			interval_calc.second.type 				= "decade";
-			interval_calc.second.first 				= _first.seconds;
-			interval_calc.second.base 				= Math.floor(_first.seconds);
-			interval_calc.second.last 				= _last.seconds;
-			interval_calc.second.number 			= timespan.seconds;
-			interval_calc.second.multiplier 		= 1;
-			interval_calc.second.minor 				= 10;
-		}
-		
-		function getDateFractions(the_date, is_utc) {
-			
-			var _time = {};
-			_time.days			=		the_date		/	dateFractionBrowser.day;
-			_time.weeks 		=		_time.days		/	dateFractionBrowser.week;
-			_time.months 		=		_time.days		/	dateFractionBrowser.month;
-			_time.years 		=		_time.months 	/	dateFractionBrowser.year;
-			_time.hours 		=		_time.days		*	dateFractionBrowser.hour;
-			_time.minutes 		=		_time.days		*	dateFractionBrowser.minute;
-			_time.seconds 		=		_time.days		*	dateFractionBrowser.second;
-			_time.decades 		=		_time.years		/	dateFractionBrowser.decade;
-			_time.centuries 	=		_time.years		/	dateFractionBrowser.century;
-			_time.milleniums 	=		_time.years		/	dateFractionBrowser.millenium;
-			_time.ages			=		_time.years		/	dateFractionBrowser.age;
-			_time.epochs		=		_time.years		/	dateFractionBrowser.epoch;
-			_time.eras			=		_time.years		/	dateFractionBrowser.era;
-			_time.eons			=		_time.years		/	dateFractionBrowser.eon;
-			
-			/*
-			trace("AGES "		 + 		_time.ages);
-			trace("EPOCHS "		 + 		_time.epochs);
-			trace("MILLENIUMS "  + 		_time.milleniums);
-			trace("CENTURIES "	 + 		_time.centuries);
-			trace("DECADES "	 + 		_time.decades);
-			trace("YEARS "		 + 		_time.years);
-			trace("MONTHS "		 + 		_time.months);
-			trace("WEEKS "		 + 		_time.weeks);
-			trace("DAYS "		 + 		_time.days);
-			trace("HOURS "		 + 		_time.hours);
-			trace("MINUTES "	 + 		_time.minutes);
-			trace("SECONDS "	 + 		_time.seconds);
-			*/
-			return _time;
-		}
-		
-		/*	POSITION
-			Positions elements on the timeline based on date
-			relative to the calculated interval
-		================================================== */
-		function positionRelative(_interval, first, last) {
-			var _first,
-				_last,
-				_type			= _interval.type,
-				timerelative = {
-					start:		"",
-					end:		"",
-					type:		_type
-				};
-			
-			/* FIRST
-			================================================== */
-			_first					= getDateFractions(first);
-			timerelative.start		= first.months;
-			
-			if (_type == "eon") {
-				timerelative.start	= _first.eons;
-			} else if (_type == "era") {
-				timerelative.start	= _first.eras;
-			} else if (_type == "epoch") {
-				timerelative.start	= _first.epochs;
-			} else if (_type == "age") {
-				timerelative.start	= _first.ages;
-			} else if (_type == "millenium") {
-				timerelative.start	= first.milleniums;
-			} else if (_type == "century") {
-				timerelative.start	= _first.centuries;
-			} else if (_type == "decade") {
-				timerelative.start	= _first.decades;
-			} else if (_type == "year") {
-				timerelative.start	= _first.years;
-			} else if (_type == "month") {
-				timerelative.start	= _first.months;
-			} else if (_type == "week") {
-				timerelative.start	= _first.weeks;
-			} else if (_type == "day") {
-				timerelative.start	= _first.days;
-			} else if (_type == "hour") {
-				timerelative.start	= _first.hours;
-			} else if (_type == "minute") {
-				timerelative.start	= _first.minutes;
-			}
-			
-			/* LAST
-			================================================== */
-			if (type.of(last) == "date") {
-				
-				_last					= getDateFractions(last);
-				timerelative.end		= last.months;
-				
-				if (_type == "eon") {
-					timerelative.end	= _last.eons;
-				} else if (_type == "era") {
-					timerelative.end	= _last.eras;
-				} else if (_type == "epoch") {
-					timerelative.end	= _last.epochs;
-				} else if (_type == "age") {
-					timerelative.end	= _last.ages;
-				} else if (_type == "millenium") {
-					timerelative.end	= last.milleniums;
-				} else if (_type == "century") {
-					timerelative.end	= _last.centuries;
-				} else if (_type == "decade") {
-					timerelative.end	= _last.decades;
-				} else if (_type == "year") {
-					timerelative.end	= _last.years;
-				} else if (_type == "month") {
-					timerelative.end	= _last.months;
-				} else if (_type == "week") {
-					timerelative.end	= _last.weeks;
-				} else if (_type == "day") {
-					timerelative.end	= _last.days;
-				} else if (_type == "hour") {
-					timerelative.end	= _last.hours;
-				} else if (_type == "minute") {
-					timerelative.end	= _last.minutes;
-				}
-				
-			} else {
-				
-				timerelative.end		= timerelative.start;
-				
-			}
-			
-			return timerelative
-		}
-		
-		function positionOnTimeline(the_interval, timerelative) {
-			return {
-				begin:	(timerelative.start	-	interval.base) * (config.nav.interval_width / config.nav.multiplier.current), 
-				end:	(timerelative.end	-	interval.base) * (config.nav.interval_width / config.nav.multiplier.current)
-			};
-		}
-		
-		function positionMarkers(is_animated) {
-			
-			var row						= 2,
-				previous_pos			= 0,
-				pos_offset				= -2,
-				row_depth				= 0,
-				row_depth_sub			= 0,
-				line_last_height_pos	= 150,
-				line_height				= 6,
-				cur_mark				= 0,
-				in_view_margin			= config.width,
-				pos_cache_array			= [],
-				pos_cache_max			= 6,
-				in_view = {
-					left:				timenav_pos.visible.left - in_view_margin,
-					right:				timenav_pos.visible.right + in_view_margin
-				},
-				i						= 0,
-				k						= 0;
-				
-			config.nav.minor_width = config.width;
-			
-			VMM.Lib.removeClass(".flag", "row1");
-			VMM.Lib.removeClass(".flag", "row2");
-			VMM.Lib.removeClass(".flag", "row3");
-			
-			for(i = 0; i < markers.length; i++) {
-				
-				var line,
-					marker				= markers[i],
-					pos					= positionOnTimeline(interval, markers[i].relative_pos),
-					row_pos				= 0,
-					is_in_view			= false,
-					pos_cache_obj		= {id: i, pos: 0, row: 0},
-					pos_cache_close		= 0;
-				
-				
-				// COMPENSATE FOR DATES BEING POITIONED IN THE MIDDLE
-				pos.begin				= Math.round(pos.begin +  pos_offset);
-				pos.end					= Math.round(pos.end + pos_offset);
-				line					= Math.round(pos.end - pos.begin);
-				marker.pos_left			= pos.begin;
-				
-				if (current_marker == i) {
-					timenav_pos.left			= (config.width/2) - pos;
-					timenav_pos.visible.left	= Math.abs(timenav_pos.left);
-					timenav_pos.visible.right	= Math.abs(timenav_pos.left) + config.width;
-					in_view.left				= timenav_pos.visible.left - in_view_margin;
-					in_view.right				= timenav_pos.visible.right + in_view_margin;
-				}
-				
-				if (Math.abs(pos.begin) >= in_view.left && Math.abs(pos.begin) <= in_view.right ) {
-					is_in_view = true;
-				}
-				
-				// APPLY POSITION TO MARKER
-				if (is_animated) {
-					VMM.Lib.stop(marker.marker);
-					VMM.Lib.animate(marker.marker, config.duration/2, config.ease, {"left": pos.begin});
-				} else {
-					VMM.Lib.stop(marker.marker);
-					VMM.Lib.css(marker.marker, "left", pos.begin);
-				}
-				
-				if (i == current_marker) {
-					cur_mark = pos.begin;
-				}
-				
-				// EVENT LENGTH LINE
-				if (line > 5) {
-					VMM.Lib.css(marker.lineevent, "height", line_height);
-					VMM.Lib.css(marker.lineevent, "top", line_last_height_pos);
-					if (is_animated) {
-						VMM.Lib.animate(marker.lineevent, config.duration/2, config.ease, {"width": line});
-					} else {
-						VMM.Lib.css(marker.lineevent, "width", line);
-					}
-				}
-				
-				// CONTROL ROW POSITION
-				if (tags.length > 0) {
-					
-					for (k = 0; k < tags.length; k++) {
-						if (k < config.nav.rows.current.length) {
-							if (marker.tag == tags[k]) {
-								row = k;
-								if (k == config.nav.rows.current.length - 1) {
-									trace("ON LAST ROW");
-									VMM.Lib.addClass(marker.flag, "flag-small-last");
-								}
-							}
-						}
-					}
-					row_pos = config.nav.rows.current[row];
-				} else {
-					
-					if (pos.begin - previous_pos.begin < (config.nav.marker.width + config.spacing)) {
-						if (row < config.nav.rows.current.length - 1) {
-							row ++;
-						
-						} else {
-							row = 0;
-							row_depth ++;
-						}
-					} else {
-						row_depth = 1;
-						row = 1;
-					}
-					row_pos = config.nav.rows.current[row];
-					
-				}
-				
-				// SET LAST MARKER POSITION
-				previous_pos = pos;
-				
-				// POSITION CACHE
-				pos_cache_obj.pos = pos;
-				pos_cache_obj.row = row;
-				pos_cache_array.push(pos_cache_obj);
-				if (pos_cache_array.length > pos_cache_max) {
-					pos_cache_array.remove(0);
-				}
-				
-				//if (is_animated && is_in_view) {
-				if (is_animated) {
-					VMM.Lib.stop(marker.flag);
-					VMM.Lib.animate(marker.flag, config.duration, config.ease, {"top": row_pos});
-				} else {
-					VMM.Lib.stop(marker.flag);
-					VMM.Lib.css(marker.flag, "top", row_pos);
-				}
-				
-				// IS THE MARKER A REPRESENTATION OF A START SCREEN?
-				if (config.start_page && markers[i].type == "start") {
-					VMM.Lib.visible(marker.marker, false);
-					
-				}
-				
-				if (pos > config.nav.minor_width) {
-					config.nav.minor_width = pos;
-				}
-				
-				if (pos < config.nav.minor_left) {
-					config.nav.minor_left = pos;
-				}
-				
-			}
-			
-			// ANIMATE THE TIMELINE TO ADJUST TO CHANGES
-			if (is_animated) {
-				VMM.Lib.stop($timenav);
-				VMM.Lib.animate($timenav, config.duration/2, config.ease, {"left": (config.width/2) - (cur_mark)});
-			} else {
-				
-			}
-			
-			//VMM.Lib.delay_animate(config.duration, $timenav, config.duration/2, config.ease, {"left": (config.width/2) - (cur_mark)});
-			
-		
-		}
-		
-		function positionEras(is_animated) {
-			var i	= 0,
-				p	= 0;
-				
-			for(i = 0; i < era_markers.length; i++) {
-				var era			= era_markers[i],
-					pos			= positionOnTimeline(interval, era.relative_pos),
-					row_pos		= 0,
-					row			= 0,
-					era_height	= config.nav.marker.height * config.nav.rows.full.length,
-					era_length	= pos.end - pos.begin;
-					
-				// CONTROL ROW POSITION
-				if (era.tag != "") {
-					era_height = (config.nav.marker.height * config.nav.rows.full.length) / config.nav.rows.current.length;
-					for (p = 0; p < tags.length; p++) {
-						if (p < config.nav.rows.current.length) {
-							if (era.tag == tags[p]) {
-								row = p;
-							}
-						}
-					}
-					row_pos = config.nav.rows.current[row];
-					
-				} else {
-					row_pos = -1;
-				}
-				
-				// APPLY POSITION TO MARKER
-				if (is_animated) {
-					VMM.Lib.stop(era.content);
-					VMM.Lib.stop(era.text_content);
-					VMM.Lib.animate(era.content, config.duration/2, config.ease, {"top": row_pos, "left": pos.begin, "width": era_length, "height":era_height});
-					VMM.Lib.animate(era.text_content, config.duration/2, config.ease, {"left": pos.begin});
-				} else {
-					VMM.Lib.stop(era.content);
-					VMM.Lib.stop(era.text_content);
-					VMM.Lib.css(era.content, "left", pos.begin);
-					VMM.Lib.css(era.content, "width", era_length);
-					VMM.Lib.css(era.content, "height", era_height);
-					VMM.Lib.css(era.content, "top", row_pos);
-					VMM.Lib.css(era.text_content, "left", pos.begin);
-					
-				}
-
-			}
-		}
-		
-		function positionInterval(the_main_element, the_intervals, is_animated, is_minor) {
-			
-			var last_position		= 0,
-				last_position_major	= 0,
-				//in_view_margin		= (config.nav.minor_width/config.nav.multiplier.current)/2,
-				in_view_margin		= config.width,
-				in_view = {
-					left:			timenav_pos.visible.left - in_view_margin,
-					right:			timenav_pos.visible.right + in_view_margin
-				}
-				not_too_many		= true,
-				i					= 0;
-			
-			config.nav.minor_left = 0;
-				
-			if (the_intervals.length > 100) {
-				not_too_many = false;
-				trace("TOO MANY " + the_intervals.length);
-			}
-			
-			
-			for(i = 0; i < the_intervals.length; i++) {
-				var _interval			= the_intervals[i].element,
-					_interval_date		= the_intervals[i].date,
-					_interval_visible	= the_intervals[i].visible,
-					_pos				= positionOnTimeline(interval, the_intervals[i].relative_pos),
-					pos					= _pos.begin,
-					_animation			= the_intervals[i].animation,
-					is_visible			= true,
-					is_in_view			= false,
-					pos_offset			= 50;
-				
-				
-				_animation.pos			= pos;
-				_animation.animate		= false;
-				
-				if (Math.abs(pos) >= in_view.left && Math.abs(pos) <= in_view.right ) {
-					is_in_view = true;
-				}
-				
-				if (true) {
-					
-					// CONDENSE WHAT IS DISPLAYED
-					if (config.nav.multiplier.current > 16 && is_minor) {
-						is_visible = false;
-					} else {
-						if ((pos - last_position) < 65 ) {
-							if ((pos - last_position) < 35 ) {
-								if (i%4 == 0) {
-									if (pos == 0) {
-										is_visible = false;
-									}
-								} else {
-									is_visible = false;
-								}
-							} else {
-								if (!VMM.Util.isEven(i)) {
-									is_visible = false;
-								}
-							}
-						}
-					}
-					
-					if (is_visible) {
-						if (the_intervals[i].is_detached) {
-							VMM.Lib.append(the_main_element, _interval);
-							the_intervals[i].is_detached = false;
-						}
-					} else {
-						the_intervals[i].is_detached = true;
-						VMM.Lib.detach(_interval);
-					}
-					
-					
-					if (_interval_visible) {
-						if (!is_visible) {
-							_animation.opacity	= "0";
-							if (is_animated && not_too_many) {
-								_animation.animate	= true;
-							}
-							the_intervals[i].interval_visible = false;
-						} else {
-							_animation.opacity	= "100";
-							if (is_animated && is_in_view) {
-								_animation.animate	= true;
-							}
-						}
-					} else {
-						_animation.opacity	= "100";
-						if (is_visible) {
-							if (is_animated && not_too_many) {
-								_animation.animate	= true;
-							} else {
-								if (is_animated && is_in_view) {
-									_animation.animate	= true;
-								}
-							}
-							the_intervals[i].interval_visible = true;
-						} else {
-							if (is_animated && not_too_many) {
-								_animation.animate	= true;
-							}
-						}
-					}
-				
-					last_position = pos;
-				
-					if (pos > config.nav.minor_width) {
-						config.nav.minor_width = pos;
-					}
-					
-					if (pos < config.nav.minor_left) {
-						config.nav.minor_left = pos;
-					}
-					
-				}
-				
-				if (_animation.animate) {
-					VMM.Lib.animate(_interval, config.duration/2, config.ease, {opacity: _animation.opacity, left: _animation.pos});
-				} else {
-					VMM.Lib.css(_interval, "opacity", _animation.opacity);
-					VMM.Lib.css(_interval, "left", pos);
-				}
-			}
-			
-			config.nav.constraint.right_min = -(config.nav.minor_width)+(config.width);
-			config.nav.constraint.right = config.nav.constraint.right_min + (config.width/2);
-			
-			VMM.Lib.css($timeintervalminor_minor, "left", config.nav.minor_left - (config.width)/2);
-			VMM.Lib.width($timeintervalminor_minor, (config.nav.minor_width)+(config.width) + Math.abs(config.nav.minor_left) );
-			
-		}
-		
-		/* Interval Elements
-		================================================== */
-		function createIntervalElements(_interval, _array, _element_parent) {
-			
-			var inc_time			= 0,
-				_first_run			= true,
-				_last_pos			= 0,
-				_largest_pos		= 0,
-				_timezone_offset,
-				_first_date,
-				_last_date,
-				int_number			= Math.ceil(_interval.number) + 2,
-				firefox = {
-					flag:			false,
-					offset:			0
-				},
-				i					= 0;
-			
-			VMM.attachElement(_element_parent, "");
-			
-			_interval.date = new Date(data[0].startdate.getFullYear(), 0, 1, 0,0,0);
-			_timezone_offset = _interval.date.getTimezoneOffset();
-			
-			for(i = 0; i < int_number; i++) {
-				trace(_interval.type);
-				var _is_year			= false,
-					int_obj = {
-						element: 		VMM.appendAndGetElement(_element_parent, "<div>", _interval.classname),
-						date: 			new Date(data[0].startdate.getFullYear(), 0, 1, 0,0,0),
-						visible: 		false,
-						date_string:	"",
-						type: 			_interval.interval_type,
-						relative_pos:	0,
-						is_detached:	false,
-						animation: {
-							animate:	false,
-							pos:		"",
-							opacity:	"100"
-						
-						}
-					};
-				
-				if (_interval.type == "eon") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 500000000) * 500000000;
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 500000000));
-					_is_year = true;
-				} else if (_interval.type == "era") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 100000000) * 100000000;
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 100000000));
-					_is_year = true;
-				} else if (_interval.type == "epoch") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 10000000) * 10000000
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 10000000));
-					_is_year = true;
-				} else if (_interval.type == "age") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 1000000) * 1000000
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 1000000));
-					_is_year = true;
-				} else if (_interval.type == "millenium") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 1000) * 1000;
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 1000));
-					_is_year = true;
-				} else if (_interval.type == "century") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 100) * 100
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 100));
-					_is_year = true;
-				} else if (_interval.type == "decade") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 10) * 10;
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 10));
-					_is_year = true;
-				} else if (_interval.type == "year") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getFullYear();
-					}
-					int_obj.date.setFullYear(_first_date + inc_time);
-					_is_year = true;
-				} else if (_interval.type == "month") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getMonth();
-					}
-					int_obj.date.setMonth(_first_date + inc_time);
-				} else if (_interval.type == "week") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getMonth();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(_first_date + (inc_time * 7) );
-				} else if (_interval.type == "day") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getDate();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(_first_date + inc_time);
-				} else if (_interval.type == "hour") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getHours();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(data[0].startdate.getDate());
-					int_obj.date.setHours(_first_date + inc_time);
-				} else if (_interval.type == "minute") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getMinutes();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(data[0].startdate.getDate());
-					int_obj.date.setHours(data[0].startdate.getHours());
-					int_obj.date.setMinutes(_first_date + inc_time);
-				} else if (_interval.type == "second") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getSeconds();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(data[0].startdate.getDate());
-					int_obj.date.setHours(data[0].startdate.getHours());
-					int_obj.date.setMinutes(data[0].startdate.getMinutes());
-					int_obj.date.setSeconds(_first_date + inc_time);
-				}	else if (_interval.type == "millisecond") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getMilliseconds();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(data[0].startdate.getDate());
-					int_obj.date.setHours(data[0].startdate.getHours());
-					int_obj.date.setMinutes(data[0].startdate.getMinutes());
-					int_obj.date.setSeconds(data[0].startdate.getSeconds());
-					int_obj.date.setMilliseconds(_first_date + inc_time);
-				}
-				
-				// FIX WEIRD FIREFOX BUG FOR GMT TIME FORMATTING
-				if (VMM.Browser.browser == "Firefox") {
-					if (int_obj.date.getFullYear() == "1970" && int_obj.date.getTimezoneOffset() != _timezone_offset) {
-						
-						trace("FIREFOX 1970 TIMEZONE OFFSET " + int_obj.date.getTimezoneOffset() + " SHOULD BE " + _timezone_offset);
-						trace(_interval.type + " " + _interval.date);
-						
-						// try and fix firefox bug, if not the flag will catch it
-						firefox.offset = (int_obj.date.getTimezoneOffset()/60);
-						firefox.flag = true;
-						int_obj.date.setHours(int_obj.date.getHours() + firefox.offset );
-						
-					} else if (firefox.flag) {
-						// catch the bug the second time around
-						firefox.flag = false;
-						int_obj.date.setHours(int_obj.date.getHours() + firefox.offset );
-						if (_is_year) {
-							firefox.flag = true;
-						}
-					}
-					
-				}
-				
-				if (_is_year) {
-					if ( int_obj.date.getFullYear() < 0 ) {
-						int_obj.date_string = 	Math.abs( int_obj.date.getFullYear() ).toString() + " B.C.";
-					} else {
-						int_obj.date_string = int_obj.date.getFullYear();
-					}
-				} else {
-					int_obj.date_string = VMM.Date.prettyDate(int_obj.date, true);
-				}
-				
-				// Increment Time
-				inc_time = inc_time + 1;
-				
-				// No longer first run
-				_first_run = false;
-				
-				int_obj.relative_pos = positionRelative(interval, int_obj.date);
-				_last_pos = int_obj.relative_pos.begin;
-				if (int_obj.relative_pos.begin > _largest_pos) {
-					_largest_pos = int_obj.relative_pos.begin;
-				}
-				
-				// Add the time string to the element and position it.
-				VMM.appendElement(int_obj.element, int_obj.date_string);
-				VMM.Lib.css(int_obj.element, "text-indent", -(VMM.Lib.width(int_obj.element)/2));
-				VMM.Lib.css(int_obj.element, "opacity", "0");
-				
-				// add the interval element to the array
-				_array.push(int_obj);
-				
-			}
-			
-			VMM.Lib.width($timeintervalminor_minor, _largest_pos);
-			
-			positionInterval(_element_parent, _array);
-			
-			
-			
-		}
-		
-		/* BUILD
-		================================================== */
-		function build() {
-			var i	= 0,
-				j	= 0;
-				
-			VMM.attachElement(layout, "");
-			
-			$timenav					= VMM.appendAndGetElement(layout, "<div>", "timenav");
-			$content					= VMM.appendAndGetElement($timenav, "<div>", "content");
-			$time						= VMM.appendAndGetElement($timenav, "<div>", "time");
-			$timeintervalminor			= VMM.appendAndGetElement($time, "<div>", "time-interval-minor");
-			$timeintervalminor_minor	= VMM.appendAndGetElement($timeintervalminor, "<div>", "minor");
-			$timeintervalmajor			= VMM.appendAndGetElement($time, "<div>", "time-interval-major");
-			$timeinterval				= VMM.appendAndGetElement($time, "<div>", "time-interval");
-			$timebackground				= VMM.appendAndGetElement(layout, "<div>", "timenav-background");
-			$timenavline				= VMM.appendAndGetElement($timebackground, "<div>", "timenav-line");
-			$timenavindicator			= VMM.appendAndGetElement($timebackground, "<div>", "timenav-indicator");
-			$timeintervalbackground		= VMM.appendAndGetElement($timebackground, "<div>", "timenav-interval-background", "<div class='top-highlight'></div>");
-			$toolbar					= VMM.appendAndGetElement(layout, "<div>", "vco-toolbar");
-			
-			
-			buildInterval();
-			buildMarkers();
-			buildEras();
-			calculateMultiplier();
-			positionMarkers(false);
-			positionEras();
-			
-			positionInterval($timeinterval, interval_array, false, true);
-			positionInterval($timeintervalmajor, interval_major_array);
-			
-			
-			if (config.start_page) {
-				$backhome = VMM.appendAndGetElement($toolbar, "<div>", "back-home", "<div class='icon'></div>");
-				VMM.bindEvent(".back-home", onBackHome, "click");
-				VMM.Lib.attribute($backhome, "title", VMM.master_config.language.messages.return_to_title);
-				VMM.Lib.attribute($backhome, "rel", "timeline-tooltip");
-				
-			}
-			
-			
-			// MAKE TIMELINE DRAGGABLE/TOUCHABLE
-			$dragslide = new VMM.DragSlider;
-			$dragslide.createPanel(layout, $timenav, config.nav.constraint, config.touch);
-			
-			
-			
-			if (config.touch && config.start_page) {
-				VMM.Lib.addClass($toolbar, "touch");
-				VMM.Lib.css($toolbar, "top", 55);
-				VMM.Lib.css($toolbar, "left", 10);
-			} else {
-				if (config.start_page) {
-					VMM.Lib.css($toolbar, "top", 27);
-				}
-				$zoomin		= VMM.appendAndGetElement($toolbar, "<div>", "zoom-in", "<div class='icon'></div>");
-				$zoomout	= VMM.appendAndGetElement($toolbar, "<div>", "zoom-out", "<div class='icon'></div>");
-				// ZOOM EVENTS
-				VMM.bindEvent($zoomin, onZoomIn, "click");
-				VMM.bindEvent($zoomout, onZoomOut, "click");
-				// TOOLTIP
-				VMM.Lib.attribute($zoomin, "title", VMM.master_config.language.messages.expand_timeline);
-				VMM.Lib.attribute($zoomin, "rel", "timeline-tooltip");
-				VMM.Lib.attribute($zoomout, "title", VMM.master_config.language.messages.contract_timeline);
-				VMM.Lib.attribute($zoomout, "rel", "timeline-tooltip");
-				$toolbar.tooltip({selector: "div[rel=timeline-tooltip]", placement: "right"});
-				
-				
-				// MOUSE EVENTS
-				VMM.bindEvent(layout, onMouseScroll, 'DOMMouseScroll');
-				VMM.bindEvent(layout, onMouseScroll, 'mousewheel');
-			}
-			
-			
-			
-			// USER CONFIGURABLE ADJUSTMENT TO DEFAULT ZOOM
-			if (config.nav.zoom.adjust != 0) {
-				if (config.nav.zoom.adjust < 0) {
-					for(i = 0; i < Math.abs(config.nav.zoom.adjust); i++) {
-						onZoomOut();
-					}
-				} else {
-					for(j = 0; j < config.nav.zoom.adjust; j++) {
-						onZoomIn();
-					}
-				}
-			}
-			
-			//VMM.fireEvent(layout, "LOADED");
-			_active = true;
-			
-			reSize(true);
-			VMM.fireEvent(layout, "LOADED");
-			
-		};
-		
-		function buildInterval() {
-			var i	= 0,
-				j	= 0;
-			// CALCULATE INTERVAL
-			timespan = getDateFractions((data[data.length - 1].enddate) - (data[0].startdate), true);
-			trace(timespan);
-			calculateInterval();
-
-			/* DETERMINE DEFAULT INTERVAL TYPE
-				millenium, ages, epoch, era and eon are not optimized yet. They may never be.
-			================================================== */
-			/*
-			if (timespan.eons				>		data.length / config.nav.density) {
-				interval					=		interval_calc.eon;
-				interval_major				=		interval_calc.eon;
-				interval_macro				=		interval_calc.era;
-			} else if (timespan.eras		>		data.length / config.nav.density) {
-				interval					=		interval_calc.era;
-				interval_major				=		interval_calc.eon;
-				interval_macro				=		interval_calc.epoch;
-			} else if (timespan.epochs		>		data.length / config.nav.density) {
-				interval					=		interval_calc.epoch;
-				interval_major				=		interval_calc.era;
-				interval_macro				=		interval_calc.age;
-			} else if (timespan.ages		>		data.length / config.nav.density) {
-				interval					=		interval_calc.ages;
-				interval_major				=		interval_calc.epoch;
-				interval_macro				=		interval_calc.millenium;
-			} else if (timespan.milleniums			>		data.length / config.nav.density) {
-				interval					=		interval_calc.millenium;
-				interval_major				=		interval_calc.age;
-				interval_macro				=		interval_calc.century;
-			} else 
-			*/
-			if (timespan.centuries			>		data.length / config.nav.density) {
-				interval					=		interval_calc.century;
-				interval_major				=		interval_calc.millenium;
-				interval_macro				=		interval_calc.decade;
-			} else if (timespan.decades		>		data.length / config.nav.density) {
-				interval					=		interval_calc.decade;
-				interval_major				=		interval_calc.century;
-				interval_macro				=		interval_calc.year;
-			} else if (timespan.years		>		data.length / config.nav.density) {	
-				interval					=		interval_calc.year;
-				interval_major				=		interval_calc.decade;
-				interval_macro				=		interval_calc.month;
-			} else if (timespan.months		>		data.length / config.nav.density) {
-				interval					=		interval_calc.month;
-				interval_major				=		interval_calc.year;
-				interval_macro				=		interval_calc.day;
-			} else if (timespan.days		>		data.length / config.nav.density) {
-				interval					=		interval_calc.day;
-				interval_major				=		interval_calc.month;
-				interval_macro				=		interval_calc.hour;
-			} else if (timespan.hours		>		data.length / config.nav.density) {
-				interval					=		interval_calc.hour;
-				interval_major				=		interval_calc.day;
-				interval_macro				=		interval_calc.minute;
-			} else if (timespan.minutes		>		data.length / config.nav.density) {
-				interval					=		interval_calc.minute;
-				interval_major				=		interval_calc.hour;
-				interval_macro				=		interval_calc.second;
-			} else if (timespan.seconds		>		data.length / config.nav.density) {
-				interval					=		interval_calc.second;
-				interval_major				=		interval_calc.minute;
-				interval_macro				=		interval_calc.second;
-			} else {
-				trace("NO IDEA WHAT THE TYPE SHOULD BE");
-				interval					=		interval_calc.day;
-				interval_major				=		interval_calc.month;
-				interval_macro				=		interval_calc.hour;
-			}
-			
-			trace("INTERVAL TYPE: " + interval.type);
-			trace("INTERVAL MAJOR TYPE: " + interval_major.type);
-			
-			createIntervalElements(interval, interval_array, $timeinterval);
-			createIntervalElements(interval_major, interval_major_array, $timeintervalmajor);
-			
-			// Cleanup duplicate interval elements between normal and major
-			for(i = 0; i < interval_array.length; i++) {
-				for(j = 0; j < interval_major_array.length; j++) {
-					if (interval_array[i].date_string == interval_major_array[j].date_string) {
-						VMM.attachElement(interval_array[i].element, "");
-					}
-				}
-			}
-		}
-		
-		function buildMarkers() {
-			
-			var row			= 2,
-				lpos		= 0,
-				row_depth	= 0,
-				i			= 0,
-				k			= 0,
-				l			= 0;
-				
-				
-			markers			= [];
-			era_markers		= [];
-			
-			for(i = 0; i < data.length; i++) {
-				
-				var _marker,
-					_marker_flag,
-					_marker_content,
-					_marker_dot,
-					_marker_line,
-					_marker_line_event,
-					_marker_obj,
-					_marker_title		= "",
-					has_title			= false;
-				
-				
-				_marker					= VMM.appendAndGetElement($content, "<div>", "marker");
-				_marker_flag			= VMM.appendAndGetElement(_marker, "<div>", "flag");
-				_marker_content			= VMM.appendAndGetElement(_marker_flag, "<div>", "flag-content");
-				_marker_dot				= VMM.appendAndGetElement(_marker, "<div>", "dot");
-				_marker_line			= VMM.appendAndGetElement(_marker, "<div>", "line");
-				_marker_line_event		= VMM.appendAndGetElement(_marker_line, "<div>", "event-line");
-				_marker_relative_pos	= positionRelative(interval, data[i].startdate, data[i].enddate);
-				_marker_thumb			= "";
-				
-				// THUMBNAIL
-				if (data[i].asset != null && data[i].asset != "") {
-					VMM.appendElement(_marker_content, VMM.MediaElement.thumbnail(data[i].asset, 24, 24, data[i].uniqueid));
-				} else {
-					VMM.appendElement(_marker_content, "<div style='margin-right:7px;height:50px;width:2px;float:left;'></div>");
-				}
-				
-				// ADD DATE AND TITLE
-				if (data[i].title == "" || data[i].title == " " ) {
-					trace("TITLE NOTHING")
-					if (typeof data[i].slug != 'undefined' && data[i].slug != "") {
-						trace("SLUG")
-						_marker_title = VMM.Util.untagify(data[i].slug);
-						has_title = true;
-					} else {
-						var m = VMM.MediaType(data[i].asset.media);
-						if (m.type == "quote" || m.type == "unknown") {
-							_marker_title = VMM.Util.untagify(m.id);
-							has_title = true;
-						} else {
-							has_title = false;
-						}
-					}
-				} else if (data[i].title != "" || data[i].title != " ") {
-					trace(data[i].title)
-					_marker_title = VMM.Util.untagify(data[i].title);
-					has_title = true;
-				} else {
-					trace("TITLE SLUG NOT FOUND " + data[i].slug)
-				}
-				
-				if (has_title) {
-					VMM.appendElement(_marker_content, "<h3>" + _marker_title + "</h3>");
-				} else {
-					VMM.appendElement(_marker_content, "<h3>" + _marker_title + "</h3>");
-					VMM.appendElement(_marker_content, "<h3 id='marker_content_" + data[i].uniqueid + "'>" + _marker_title + "</h3>");
-				}
-				
-				// ADD ID
-				VMM.Lib.attr(_marker, "id", ( "marker_" + data[i].uniqueid).toString() );
-				
-				// MARKER CLICK
-				VMM.bindEvent(_marker_flag, onMarkerClick, "", {number: i});
-				VMM.bindEvent(_marker_flag, onMarkerHover, "mouseenter mouseleave", {number: i, elem:_marker_flag});
-				
-				_marker_obj = {
-					marker: 			_marker,
-					flag: 				_marker_flag,
-					lineevent: 			_marker_line_event,
-					type: 				"marker",
-					full:				true,
-					relative_pos:		_marker_relative_pos,
-					tag:				data[i].tag,
-					pos_left:			0
-				};
-				
-				
-				if (data[i].type == "start") {
-					trace("BUILD MARKER HAS START PAGE");
-					config.start_page = true;
-					_marker_obj.type = "start";
-				}
-				
-				if (data[i].type == "storify") {
-					_marker_obj.type = "storify";
-				}
-				
-				
-				if (data[i].tag) {
-					tags.push(data[i].tag);
-				}
-				
-				markers.push(_marker_obj);
-				
-				
-				
-			}
-			
-			// CREATE TAGS
-			tags = VMM.Util.deDupeArray(tags);
-			if (tags.length > 3) {
-				config.nav.rows.current = config.nav.rows.half;
-			} else {
-				config.nav.rows.current = config.nav.rows.full;
-			}
-			for(k = 0; k < tags.length; k++) {
-				if (k < config.nav.rows.current.length) {
-					var tag_element = VMM.appendAndGetElement($timebackground, "<div>", "timenav-tag");
-					VMM.Lib.addClass(tag_element, "timenav-tag-row-" + (k+1));
-					if (tags.length > 3) {
-						VMM.Lib.addClass(tag_element, "timenav-tag-size-half");
-					} else {
-						VMM.Lib.addClass(tag_element, "timenav-tag-size-full");
-					}
-					VMM.appendElement(tag_element, "<div><h3>" + tags[k] + "</h3></div>");
-				}
-				
-			}
-			
-			// RESIZE FLAGS IF NEEDED
-			if (tags.length > 3) {
-				for(l = 0; l < markers.length; l++) {
-					VMM.Lib.addClass(markers[l].flag, "flag-small");
-					markers[l].full = false;
-				}
-			}
-
-			
-		}
-		
-		function buildEras() {
-			var number_of_colors	= 6,
-				current_color		= 0,
-				j					= 0;
-			// CREATE ERAS
-			for(j = 0; j < eras.length; j++) {
-				var era = {
-						content: 			VMM.appendAndGetElement($content, "<div>", "era"),
-						text_content: 		VMM.appendAndGetElement($timeinterval, "<div>", "era"),
-						startdate: 			VMM.Date.parse(eras[j].startDate),
-						enddate: 			VMM.Date.parse(eras[j].endDate),
-						title: 				eras[j].headline,
-						uniqueid: 			VMM.Util.unique_ID(6),
-						tag:				"",
-						relative_pos:	 	""
-					},
-					st						= VMM.Date.prettyDate(era.startdate),
-					en						= VMM.Date.prettyDate(era.enddate),
-					era_text				= "<div>&nbsp;</div>";
-					
-				if (typeof eras[j].tag != "undefined") {
-					era.tag = eras[j].tag;
-				}
-				
-				era.relative_pos = positionRelative(interval, era.startdate, era.enddate);
-				
-				VMM.Lib.attr(era.content, "id", era.uniqueid);
-				VMM.Lib.attr(era.text_content, "id", era.uniqueid + "_text");
-				
-				// Background Color
-				VMM.Lib.addClass(era.content, "era"+(current_color+1));
-				VMM.Lib.addClass(era.text_content, "era"+(current_color+1));
-				
-				if (current_color < number_of_colors) {
-					current_color++;
-				} else {
-					current_color = 0;
-				}
-				
-				VMM.appendElement(era.content, era_text);
-				VMM.appendElement(era.text_content, VMM.Util.unlinkify(era.title));
-				
-				era_markers.push(era);
-				
-			}
-			
-		}
-		
-	};
-	
-}
-
-/* **********************************************
-     Begin VMM.Timeline.DataObj.js
-********************************************** */
-
-/*	TIMELINE SOURCE DATA PROCESSOR
-================================================== */
-
-if (typeof VMM.Timeline !== 'undefined' && typeof VMM.Timeline.DataObj == 'undefined') {
-	VMM.Timeline.DataObj = {
-		data_obj: {},
-		model_array: [],
-		getData: function (raw_data) {
-			VMM.Timeline.DataObj.data_obj = {};
-			VMM.fireEvent(global, VMM.Timeline.Config.events.messege, VMM.Timeline.Config.language.messages.loading_timeline);
-			if (type.of(raw_data) == "object") {
-				trace("DATA SOURCE: JSON OBJECT");
-				VMM.Timeline.DataObj.parseJSON(raw_data);
-			} else if (type.of(raw_data) == "string") {
-				if (raw_data.match("%23")) {
-					trace("DATA SOURCE: TWITTER SEARCH");
-					VMM.Timeline.DataObj.model.tweets.getData("%23medill");
-				} else if (	raw_data.match("spreadsheet") ) {
-					trace("DATA SOURCE: GOOGLE SPREADSHEET");
-					VMM.Timeline.DataObj.model.googlespreadsheet.getData(raw_data);
-				} else if (raw_data.match("storify.com")) {
-					trace("DATA SOURCE: STORIFY");
-					VMM.Timeline.DataObj.model.storify.getData(raw_data);
-					//http://api.storify.com/v1/stories/number10gov/g8-and-nato-chicago-summit
-				} else if (raw_data.match("\.jsonp")) {
-					trace("DATA SOURCE: JSONP");
-					LoadLib.js(raw_data, VMM.Timeline.DataObj.onJSONPLoaded);
-				} else {
-					trace("DATA SOURCE: JSON");
-					var req = "";
-					if (raw_data.indexOf("?") > -1) {
-						req = raw_data + "&callback=onJSONP_Data";
-					} else {
-						req = raw_data + "?callback=onJSONP_Data";
-					}
-					VMM.getJSON(req, VMM.Timeline.DataObj.parseJSON);
-				}
-			} else if (type.of(raw_data) == "html") {
-				trace("DATA SOURCE: HTML");
-				VMM.Timeline.DataObj.parseHTML(raw_data);
-			} else {
-				trace("DATA SOURCE: UNKNOWN");
-			}
-			
-		},
-		
-		onJSONPLoaded: function() {
-			trace("JSONP IS LOADED");
-			VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, storyjs_jsonp_data);
-		},
-		
-		parseHTML: function (d) {
-			trace("parseHTML");
-			trace("WARNING: THIS IS STILL ALPHA AND WILL NOT WORK WITH ID's other than #timeline");
-			var _data_obj = VMM.Timeline.DataObj.data_template_obj;
-			
-			/*	Timeline start slide
-			================================================== */
-			if (VMM.Lib.find("#timeline section", "time")[0]) {
-				_data_obj.timeline.startDate = VMM.Lib.html(VMM.Lib.find("#timeline section", "time")[0]);
-				_data_obj.timeline.headline = VMM.Lib.html(VMM.Lib.find("#timeline section", "h2"));
-				_data_obj.timeline.text = VMM.Lib.html(VMM.Lib.find("#timeline section", "article"));
-				
-				var found_main_media = false;
-				
-				if (VMM.Lib.find("#timeline section", "figure img").length != 0) {
-					found_main_media = true;
-					_data_obj.timeline.asset.media = VMM.Lib.attr(VMM.Lib.find("#timeline section", "figure img"), "src");
-				} else if (VMM.Lib.find("#timeline section", "figure a").length != 0) {
-					found_main_media = true;
-					_data_obj.timeline.asset.media = VMM.Lib.attr(VMM.Lib.find("#timeline section", "figure a"), "href");
-				} else {
-					//trace("NOT FOUND");
-				}
-
-				if (found_main_media) {
-					if (VMM.Lib.find("#timeline section", "cite").length != 0) {
-						_data_obj.timeline.asset.credit = VMM.Lib.html(VMM.Lib.find("#timeline section", "cite"));
-					}
-					if (VMM.Lib.find(this, "figcaption").length != 0) {
-						_data_obj.timeline.asset.caption = VMM.Lib.html(VMM.Lib.find("#timeline section", "figcaption"));
-					}
-				}
-			}
-			
-			/*	Timeline Date Slides
-			================================================== */
-			VMM.Lib.each("#timeline li", function(i, elem){
-				
-				var valid_date = false;
-				
-				var _date = {
-					"type":"default",
-					"startDate":"",
-		            "headline":"",
-		            "text":"",
-		            "asset":
-		            {
-		                "media":"",
-		                "credit":"",
-		                "caption":""
-		            },
-		            "tags":"Optional"
-				};
-				
-				if (VMM.Lib.find(this, "time") != 0) {
-					
-					valid_date = true;
-					
-					_date.startDate = VMM.Lib.html(VMM.Lib.find(this, "time")[0]);
-
-					if (VMM.Lib.find(this, "time")[1]) {
-						_date.endDate = VMM.Lib.html(VMM.Lib.find(this, "time")[1]);
-					}
-
-					_date.headline = VMM.Lib.html(VMM.Lib.find(this, "h3"));
-
-					_date.text = VMM.Lib.html(VMM.Lib.find(this, "article"));
-
-					var found_media = false;
-					if (VMM.Lib.find(this, "figure img").length != 0) {
-						found_media = true;
-						_date.asset.media = VMM.Lib.attr(VMM.Lib.find(this, "figure img"), "src");
-					} else if (VMM.Lib.find(this, "figure a").length != 0) {
-						found_media = true;
-						_date.asset.media = VMM.Lib.attr(VMM.Lib.find(this, "figure a"), "href");
-					} else {
-						//trace("NOT FOUND");
-					}
-
-					if (found_media) {
-						if (VMM.Lib.find(this, "cite").length != 0) {
-							_date.asset.credit = VMM.Lib.html(VMM.Lib.find(this, "cite"));
-						}
-						if (VMM.Lib.find(this, "figcaption").length != 0) {
-							_date.asset.caption = VMM.Lib.html(VMM.Lib.find(this, "figcaption"));
-						}
-					}
-					
-					trace(_date);
-					_data_obj.timeline.date.push(_date);
-					
-				}
-				
-			});
-			
-			VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, _data_obj);
-			
-		},
-		
-		parseJSON: function(d) {
-			trace("parseJSON");
-			if (d.timeline.type == "default") {
-				trace("DATA SOURCE: JSON STANDARD TIMELINE");
-				VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, d);
-			} else if (d.timeline.type == "twitter") {
-				trace("DATA SOURCE: JSON TWEETS");
-				VMM.Timeline.DataObj.model_Tweets.buildData(d);
-				
-			} else {
-				trace("DATA SOURCE: UNKNOWN JSON");
-				trace(type.of(d.timeline));
-			};
-		},
-		
-		/*	MODEL OBJECTS 
-			New Types of Data can be formatted for the timeline here
-		================================================== */
-		
-		model: {
-			
-			googlespreadsheet: {
-				
-				getData: function(raw) {
-					var getjsondata, key, worksheet, url, timeout, tries = 0;
-					
-					key	= VMM.Util.getUrlVars(raw)["key"];
-					worksheet = VMM.Util.getUrlVars(raw)["worksheet"];
-					if (typeof worksheet == "undefined") worksheet = "od6";
-					
-					url	= "https://spreadsheets.google.com/feeds/list/" + key + "/" + worksheet + "/public/values?alt=json";
-					
-					timeout = setTimeout(function() {
-						trace("Google Docs timeout " + url);
-						trace(url);
-						if (tries < 3) {
-							VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Still waiting on Google Docs, trying again " + tries);
-							tries ++;
-							getjsondata.abort()
-							requestJsonData();
-						} else {
-							VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Google Docs is not responding");
-						}
-					}, 16000);
-					
-					function requestJsonData() {
-						getjsondata = VMM.getJSON(url, function(d) {
-							clearTimeout(timeout);
-							VMM.Timeline.DataObj.model.googlespreadsheet.buildData(d);
-						})
-							.error(function(jqXHR, textStatus, errorThrown) {
-								trace("Google Docs ERROR");
-								trace("Google Docs ERROR: " + textStatus + " " + jqXHR.responseText);
-							})
-							.success(function(d) {
-								clearTimeout(timeout);
-							});
-					}
-					
-					requestJsonData();
-				},
-				
-				buildData: function(d) {
-					var data_obj	= VMM.Timeline.DataObj.data_template_obj,
-						is_valid	= false;
-					
-					VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Parsing Google Doc Data");
-					
-					function getGVar(v) {
-						if (typeof v != 'undefined') {
-							return v.$t;
-						} else {
-							return "";
-						}
-					}
-					if (typeof d.feed.entry != 'undefined') {
-						is_valid = true;
-						
-						for(var i = 0; i < d.feed.entry.length; i++) {
-							var dd		= d.feed.entry[i],
-								dd_type	= "";
-						
-							if (typeof dd.gsx$type != 'undefined') {
-								dd_type = dd.gsx$type.$t;
-							} else if (typeof dd.gsx$titleslide != 'undefined') {
-								dd_type = dd.gsx$titleslide.$t;
-							}
-						
-							if (dd_type.match("start") || dd_type.match("title") ) {
-								data_obj.timeline.startDate		= getGVar(dd.gsx$startdate);
-								data_obj.timeline.headline		= getGVar(dd.gsx$headline);
-								data_obj.timeline.asset.media	= getGVar(dd.gsx$media);
-								data_obj.timeline.asset.caption	= getGVar(dd.gsx$mediacaption);
-								data_obj.timeline.asset.credit	= getGVar(dd.gsx$mediacredit);
-								data_obj.timeline.text			= getGVar(dd.gsx$text);
-								data_obj.timeline.type			= "google spreadsheet";
-							} else if (dd_type.match("era")) {
-								var era = {
-									startDate:		getGVar(dd.gsx$startdate),
-									endDate:		getGVar(dd.gsx$enddate),
-									headline:		getGVar(dd.gsx$headline),
-									text:			getGVar(dd.gsx$text),
-									tag:			getGVar(dd.gsx$tag)
-								}
-								data_obj.timeline.era.push(era);
-							} else {
-								var date = {
-										type:			"google spreadsheet",
-										startDate:		getGVar(dd.gsx$startdate),
-										endDate:		getGVar(dd.gsx$enddate),
-										headline:		getGVar(dd.gsx$headline),
-										text:			getGVar(dd.gsx$text),
-										tag:			getGVar(dd.gsx$tag),
-										asset: {
-											media:		getGVar(dd.gsx$media),
-											credit:		getGVar(dd.gsx$mediacredit),
-											caption:	getGVar(dd.gsx$mediacaption),
-											thumbnail:	getGVar(dd.gsx$mediathumbnail)
-										}
-								};
-							
-								data_obj.timeline.date.push(date);
-							}
-						};
-						
-					} else {
-						
-					}
-					
-					
-					if (is_valid) {
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Finished Parsing Data");
-						VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, data_obj);
-					} else {
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, VMM.Language.messages.loading + " Google Doc Data (cells)");
-						trace("There may be too many entries. Still trying to load data. Now trying to load cells to avoid Googles limitation on cells");
-						VMM.Timeline.DataObj.model.googlespreadsheet.getDataCells(d.feed.link[0].href);
-					}
-				},
-				
-				getDataCells: function(raw) {
-					var getjsondata, key, url, timeout, tries = 0;
-					
-					key	= VMM.Util.getUrlVars(raw)["key"];
-					url	= "https://spreadsheets.google.com/feeds/cells/" + key + "/od6/public/values?alt=json";
-					
-					timeout = setTimeout(function() {
-						trace("Google Docs timeout " + url);
-						trace(url);
-						if (tries < 3) {
-							VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Still waiting on Google Docs, trying again " + tries);
-							tries ++;
-							getjsondata.abort()
-							requestJsonData();
-						} else {
-							VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Google Docs is not responding");
-						}
-					}, 16000);
-					
-					function requestJsonData() {
-						getjsondata = VMM.getJSON(url, function(d) {
-							clearTimeout(timeout);
-							VMM.Timeline.DataObj.model.googlespreadsheet.buildDataCells(d);
-						})
-							.error(function(jqXHR, textStatus, errorThrown) {
-								trace("Google Docs ERROR");
-								trace("Google Docs ERROR: " + textStatus + " " + jqXHR.responseText);
-							})
-							.success(function(d) {
-								clearTimeout(timeout);
-							});
-					}
-					
-					requestJsonData();
-				},
-				
-				buildDataCells: function(d) {
-					var data_obj	= VMM.Timeline.DataObj.data_template_obj,
-						is_valid	= false,
-						cellnames	= ["timeline"],
-						list 		= [],
-						max_row		= 0,
-						i			= 0,
-						k			= 0;
-					
-					VMM.fireEvent(global, VMM.Timeline.Config.events.messege, VMM.Language.messages.loading_timeline + " Parsing Google Doc Data (cells)");
-					
-					function getGVar(v) {
-						if (typeof v != 'undefined') {
-							return v.$t;
-						} else {
-							return "";
-						}
-					}
-					
-					if (typeof d.feed.entry != 'undefined') {
-						is_valid = true;
-						
-						// DETERMINE NUMBER OF ROWS
-						for(i = 0; i < d.feed.entry.length; i++) {
-							var dd				= d.feed.entry[i];
-							
-							if (parseInt(dd.gs$cell.row) > max_row) {
-								max_row = parseInt(dd.gs$cell.row);
-							}
-						}
-						
-						// CREATE OBJECT FOR EACH ROW
-						for(var i = 0; i < max_row + 1; i++) {
-							var date = {
-								type:			"",
-								startDate:		"",
-								endDate:		"",
-								headline:		"",
-								text:			"",
-								tag:			"",
-								asset: {
-									media:		"",
-									credit:		"",
-									caption:	"",
-									thumbnail:	""
-								}
-							};
-							list.push(date);
-						}
-						
-						// PREP GOOGLE DOC CELL DATA TO EVALUATE
-						for(i = 0; i < d.feed.entry.length; i++) {
-							var dd				= d.feed.entry[i],
-								dd_type			= "",
-								column_name		= "",
-								cell = {
-									content: 	getGVar(dd.gs$cell),
-									col: 		dd.gs$cell.col,
-									row: 		dd.gs$cell.row,
-									name: 		""
-								};
-								
-							//trace(cell);
-							
-							if (cell.row == 1) {
-								if (cell.content == "Start Date") {
-									column_name = "startDate";
-								} else if (cell.content == "End Date") {
-									column_name = "endDate";
-								} else if (cell.content == "Headline") {
-									column_name = "headline";
-								} else if (cell.content == "Text") {
-									column_name = "text";
-								} else if (cell.content == "Media") {
-									column_name = "media";
-								} else if (cell.content == "Media Credit") {
-									column_name = "credit";
-								} else if (cell.content == "Media Caption") {
-									column_name = "caption";
-								} else if (cell.content == "Media Thumbnail") {
-									column_name = "thumbnail";
-								} else if (cell.content == "Type") {
-									column_name = "type";
-								} else if (cell.content == "Tag") {
-									column_name = "tag";
-								}
-								
-								cellnames.push(column_name);
-								
-							} else {
-								cell.name = cellnames[cell.col];
-								list[cell.row][cell.name] = cell.content;
-							}
-							
-						};
-						
-
-						for(i = 0; i < list.length; i++) {
-							var date	= list[i];
-							
-							if (date.type.match("start") || date.type.match("title") ) {
-								data_obj.timeline.startDate		= date.startDate;
-								data_obj.timeline.headline		= date.headline;
-								data_obj.timeline.asset.media	= date.media;
-								data_obj.timeline.asset.caption	= date.caption;
-								data_obj.timeline.asset.credit	= date.credit;
-								data_obj.timeline.text			= date.text;
-								data_obj.timeline.type			= "google spreadsheet";
-							} else if (date.type.match("era")) {
-								var era = {
-									startDate:		date.startDate,
-									endDate:		date.endDate,
-									headline:		date.headline,
-									text:			date.text,
-									tag:			date.tag
-								}
-								data_obj.timeline.era.push(era);
-							} else {
-								var date = {
-										type:			"google spreadsheet",
-										startDate:		date.startDate,
-										endDate:		date.endDate,
-										headline:		date.headline,
-										text:			date.text,
-										tag:			date.tag,
-										asset: {
-											media:		date.media,
-											credit:		date.credit,
-											caption:	date.caption,
-											thumbnail:	date.thumbnail
-										}
-								};
-							
-								data_obj.timeline.date.push(date);
-							}
-							
-						}
-						
-						//trace(cellnames);
-						//trace(max_row);
-						//trace(list);
-						
-					}
-					
-					if (is_valid) {
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Finished Parsing Data");
-						VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, data_obj);
-					} else {
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Unable to load Google Doc data source");
-					}
-				}
-				
-			},
-			
-			storify: {
-				
-				getData: function(raw) {
-					var key, url, storify_timeout;
-					//http://storify.com/number10gov/g8-and-nato-chicago-summit
-					//http://api.storify.com/v1/stories/number10gov/g8-and-nato-chicago-summit
-					
-					VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Loading Storify...");
-					
-					key	= raw.split("storify.com\/")[1];
-					url	= "http://api.storify.com/v1/stories/" + key + "?per_page=300&callback=?";
-					
-					storify_timeout = setTimeout(function() {
-						trace("STORIFY timeout");
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Storify is not responding");
-					}, 6000);
-					
-					VMM.getJSON(url, VMM.Timeline.DataObj.model.storify.buildData)
-						.error(function(jqXHR, textStatus, errorThrown) {
-							trace("STORIFY error");
-							trace("STORIFY ERROR: " + textStatus + " " + jqXHR.responseText);
-						})
-						.success(function(d) {
-							clearTimeout(storify_timeout);
-						});
-					
-				},
-				
-				buildData: function(d) {
-					VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Parsing Data");
-					var _data_obj = VMM.Timeline.DataObj.data_template_obj;
-					
-					_data_obj.timeline.startDate	= 	new Date(d.content.date.created);;
-					_data_obj.timeline.headline		= 	d.content.title;
-					
-					trace(d);
-					//d.permalink
-					var tt			=	"";
-					var t_name		=	d.content.author.username;
-					var t_nickname	=	"";
-					if (typeof d.content.author.name != 'undefined') {
-						t_name		=	d.content.author.name;
-						t_nickname	=	d.content.author.username + "&nbsp;";
-					}
-					if (typeof d.content.description != 'undefined' && d.content.description != null) {
-						tt			+=	d.content.description;
-					}
-					
-					tt				+=	"<div class='storify'>"
-					//tt				 += " <a href='" + d.content.permalink + "' target='_blank' alt='link to original story' title='link to original story'>" + "<span class='created-at'></span>" + " </a>";
-					
-					tt				+=	"<div class='vcard author'><a class='screen-name url' href='" + d.content.author.permalink + "' target='_blank'>";
-					
-					tt				+=	"<span class='avatar'><img src='" + d.content.author.avatar + "' style='max-width: 32px; max-height: 32px;'></span>"
-					tt				+=	"<span class='fn'>" + t_name + "</span>";
-					tt				+=	"<span class='nickname'>" + t_nickname + "<span class='thumbnail-inline'></span></span>";
-					tt				+=	"</a>";
-					//tt				+=	"<span class='nickname'>" + d.content.author.stats.stories + " Stories</span>";
-					//tt				+=	"<span class='nickname'>" + d.content.author.stats.subscribers + " Subscribers</span>";
-					tt				+=	"</div>"
-					tt				+=	"</div>";
-					
-					_data_obj.timeline.text = tt;
-					_data_obj.timeline.asset.media = d.content.thumbnail;
-					
-					//_data_obj.timeline.asset.media = 		dd.gsx$media.$t;
-					//_data_obj.timeline.asset.caption = 		dd.gsx$mediacaption.$t;
-					//_data_obj.timeline.asset.credit = 		dd.gsx$mediacredit.$t;
-					_data_obj.timeline.type = 				"storify";
-					
-					for(var i = 0; i < d.content.elements.length; i++) {
-						var dd = d.content.elements[i];
-						var is_text = false;
-						var d_date = new Date(dd.posted_at);
-						//trace(tempdat);
-						trace(dd.type);
-						//trace(dd);
-						var _date = {
-							"type": 		"storify",
-							"startDate": 	dd.posted_at,
-							"endDate": 		dd.posted_at,
-				            "headline": 	" ",
-							"slug": 		"", 
-				            "text": 		"",
-				            "asset": {
-								"media": 	"", 
-								"credit": 	"", 
-								"caption": 	"" 
-							}
-						};
-						
-						/*	MEDIA
-						================================================== */
-						if (dd.type == "image") {
-							
-							if (typeof dd.source.name != 'undefined') {
-								if (dd.source.name == "flickr") {
-									_date.asset.media		=	"http://flickr.com/photos/" + dd.meta.pathalias + "/" + dd.meta.id + "/";
-									_date.asset.credit		=	"<a href='" + _date.asset.media + "'>" + dd.attribution.name + "</a>";
-									_date.asset.credit		+=	" on <a href='" + dd.source.href + "'>" + dd.source.name + "</a>";
-								} else if (dd.source.name	==	"instagram") {
-									_date.asset.media		=	dd.permalink;
-									_date.asset.credit		=	"<a href='" + dd.permalink + "'>" + dd.attribution.name + "</a>";
-									_date.asset.credit		+=	" on <a href='" + dd.source.href + "'>" + dd.source.name + "</a>";
-								} else {
-									_date.asset.credit		=	"<a href='" + dd.permalink + "'>" + dd.attribution.name + "</a>";
-									
-									if (typeof dd.source.href != 'undefined') {
-										_date.asset.credit	+=	" on <a href='" + dd.source.href + "'>" + dd.source.name + "</a>";
-									}
-									
-									_date.asset.media		=	dd.data.image.src;
-								}
-							} else {
-								_date.asset.credit			=	"<a href='" + dd.permalink + "'>" + dd.attribution.name + "</a>";
-								_date.asset.media			=	dd.data.image.src;
-							}
-							
-							_date.slug	 					=	dd.attribution.name;
-							if (typeof dd.data.image.caption != 'undefined') {
-								if (dd.data.image.caption != 'undefined') {
-									_date.asset.caption				=	dd.data.image.caption;
-									_date.slug	 					=	dd.data.image.caption;
-								}
-							}
-							
-						} else if (dd.type == "quote") {
-							if (dd.permalink.match("twitter")) {
-								_date.asset.media	=	dd.permalink; 
-								_date.slug = VMM.Util.untagify(dd.data.quote.text);
-							} else if (dd.permalink.match("storify")) {
-								is_text = true;
-								_date.asset.media	=	"<blockquote>" + dd.data.quote.text.replace(/<\s*\/?\s*b\s*.*?>/g,"") + "</blockquote>";
-							}
-						} else if (dd.type == "link") {
-							_date.headline		=	dd.data.link.title;
-							_date.text			=	dd.data.link.description;
-							if (dd.data.link.thumbnail != 'undefined' && dd.data.link.thumbnail != '') {
-								_date.asset.media	=	dd.data.link.thumbnail;
-							} else {
-								_date.asset.media	=	dd.permalink;
-							}
-							//_date.asset.media	=	dd.permalink;
-							_date.asset.caption	=	"<a href='" + dd.permalink + "' target='_blank'>" + dd.data.link.title + "</a>"
-							_date.slug			=	dd.data.link.title;
-							
-						} else if (dd.type == "text") {
-							if (dd.permalink.match("storify")) {
-								is_text = true;
-								var d_name		=	d.content.author.username;
-								var d_nickname	=	"";
-								if (typeof dd.attribution.name != 'undefined') {
-									t_name		=	dd.attribution.name;
-									t_nickname	=	dd.attribution.username + "&nbsp;";
-								}
-								
-								var asset_text	=	"<div class='storify'>"
-								asset_text		+=	"<blockquote><p>" + dd.data.text.replace(/<\s*\/?\s*b\s*.*?>/g,"") + "</p></blockquote>";
-								//asset_text		+=	" <a href='" + dd.attribution.href + "' target='_blank' alt='link to author' title='link to author'>" + "<span class='created-at'></span>" + " </a>";
-
-								asset_text		+=	"<div class='vcard author'><a class='screen-name url' href='" + dd.attribution.href + "' target='_blank'>";
-								asset_text		+=	"<span class='avatar'><img src='" + dd.attribution.thumbnail + "' style='max-width: 32px; max-height: 32px;'></span>"
-								asset_text		+=	"<span class='fn'>" + t_name + "</span>";
-								asset_text		+=	"<span class='nickname'>" + t_nickname + "<span class='thumbnail-inline'></span></span>";
-								asset_text		+=	"</a></div></div>";
-								_date.text		=	asset_text;
-								
-								// Try and put it before the element where it is expected on storify
-								if ( (i+1) >= d.content.elements.length ) {
-									_date.startDate = d.content.elements[i-1].posted_at;
-									
-								} else {
-									if (d.content.elements[i+1].type == "text" && d.content.elements[i+1].permalink.match("storify")) {
-										if ( (i+2) >= d.content.elements.length ) {
-											_date.startDate = d.content.elements[i-1].posted_at;
-										} else {
-											if (d.content.elements[i+2].type == "text" && d.content.elements[i+2].permalink.match("storify")) {
-												if ( (i+3) >= d.content.elements.length ) {
-													_date.startDate = d.content.elements[i-1].posted_at;
-												} else {
-													if (d.content.elements[i+3].type == "text" && d.content.elements[i+3].permalink.match("storify")) {
-														_date.startDate = d.content.elements[i-1].posted_at;
-													} else {
-														trace("LEVEL 3");
-														_date.startDate = d.content.elements[i+3].posted_at;
-													}
-												}
-											} else {
-												trace("LEVEL 2");
-												_date.startDate = d.content.elements[i+2].posted_at;
-											}
-										}
-									} else {
-										trace("LEVEL 1");
-										_date.startDate = d.content.elements[i+1].posted_at;
-									}
-									
-								}
-								_date.endDate = _date.startDate
-							}
-							
-							
-						} else if (dd.type == "video") {
-							_date.headline		=	dd.data.video.title;
-							_date.asset.caption	=	dd.data.video.description;
-							_date.asset.caption	=	dd.source.username;
-							_date.asset.media	=	dd.data.video.src;
-						} else {
-							trace("NO MATCH ");
-							trace(dd);
-						}
-						
-						if (is_text) {
-							_date.slug = VMM.Util.untagify(dd.data.text);
-						}
-						
-						_data_obj.timeline.date.push(_date);
-						
-						
-					};
-				
-					VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, _data_obj);
-				}
-				
-			},
-			
-			tweets: {
-				
-				type: "twitter",
-			
-				buildData: function(raw_data) {
-					VMM.bindEvent(global, VMM.Timeline.DataObj.model.tweets.onTwitterDataReady, "TWEETSLOADED");
-					VMM.ExternalAPI.twitter.getTweets(raw_data.timeline.tweets);
-				},
-			
-				getData: function(raw_data) {
-					VMM.bindEvent(global, VMM.Timeline.DataObj.model.tweets.onTwitterDataReady, "TWEETSLOADED");
-					VMM.ExternalAPI.twitter.getTweetSearch(raw_data);
-				},
-			
-				onTwitterDataReady: function(e, d) {
-					var _data_obj = VMM.Timeline.DataObj.data_template_obj;
-
-					for(var i = 0; i < d.tweetdata.length; i++) {
-
-						var _date = {
-							"type":"tweets",
-							"startDate":"",
-				            "headline":"",
-				            "text":"",
-				            "asset":
-				            {
-				                "media":"",
-				                "credit":"",
-				                "caption":""
-				            },
-				            "tags":"Optional"
-						};
-						// pass in the 'created_at' string returned from twitter //
-						// stamp arrives formatted as Tue Apr 07 22:52:51 +0000 2009 //
-					
-						//var twit_date = VMM.ExternalAPI.twitter.parseTwitterDate(d.tweetdata[i].raw.created_at);
-						//trace(twit_date);
-					
-						_date.startDate = d.tweetdata[i].raw.created_at;
-					
-						if (type.of(d.tweetdata[i].raw.from_user_name)) {
-							_date.headline = d.tweetdata[i].raw.from_user_name + " (<a href='https://twitter.com/" + d.tweetdata[i].raw.from_user + "'>" + "@" + d.tweetdata[i].raw.from_user + "</a>)" ;						
-						} else {
-							_date.headline = d.tweetdata[i].raw.user.name + " (<a href='https://twitter.com/" + d.tweetdata[i].raw.user.screen_name + "'>" + "@" + d.tweetdata[i].raw.user.screen_name + "</a>)" ;
-						}
-					
-						_date.asset.media = d.tweetdata[i].content;
-						_data_obj.timeline.date.push(_date);
-					
-					};
-				
-					VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, _data_obj);
-				}
-				
-			}
-		},
-		
-		
-		/*	TEMPLATE OBJECTS
-		================================================== */
-		data_template_obj: {  "timeline": { "headline":"", "description":"", "asset": { "media":"", "credit":"", "caption":"" }, "date": [], "era":[] } },
-		date_obj: {"startDate":"2012,2,2,11,30", "headline":"", "text":"", "asset": {"media":"http://youtu.be/vjVfu8-Wp6s", "credit":"", "caption":"" }, "tags":"Optional"}
-	
-	};
-	
-}
diff --git a/public/opac/TimelineJS-2.25/compiled/lib/jquery-min.js b/public/opac/TimelineJS-2.25/compiled/lib/jquery-min.js
deleted file mode 100644
index ee0233703da37c9cc42591620e0befa769cd6a2a..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/compiled/lib/jquery-min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v1.7.1 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 cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(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 cb(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 ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(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 b$(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===bT,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=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),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 bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}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;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();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(f.expando)}}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].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}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)?parseFloat(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.1",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&&typeof a=="object"&&"setInterval"in a},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){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){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,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)}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=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"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(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]){i&&f<=k&&(k--,f<=l&&l--),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)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};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,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.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:q.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},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});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=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},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){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return 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()}});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,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},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.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];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=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&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},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=/\bhover(\.\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),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),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=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}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){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!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=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.call(this,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.type+"."+e.namespace:e.type,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){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));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.POS,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|canvas|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+")","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){if(f.isFunction(a))return this.each(function(b){var c=f(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 f.text(this)},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){if(a===b)return this[0]&&this[0].nodeType===1?this[0].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(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},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,bp)}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||!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;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},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 bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","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=bv.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(bz)return bz(a,c)},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]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.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(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$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)));return c}),c.documentElement.currentStyle&&(bB=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)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,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)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.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(bN,"")).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||bO.test(this.nodeName)||bI.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(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\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:bV,isLocal:bJ.test(bW[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","*":bX},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:bZ(bT),ajaxTransport:bZ(bU),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?cb(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=cc(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=bH.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(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.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]!=="*"?", "+bX+"; 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=b$(bU,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)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.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(ce,l),b.url===j&&(e&&(k=k.replace(ce,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 cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,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,cf&&delete ch[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),m.text=h.responseText;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=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("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._data(d,"olddisplay",cv(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(cu("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(cu("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;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),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||cv(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],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,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:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("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,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||{}}}),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=cr||cs(),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(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=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=cr||cs(),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(cp),cp=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(["width","height"],function(a,b){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 cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=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(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.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;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},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(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),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/public/opac/TimelineJS-2.25/examples/example_jquery_load.html b/public/opac/TimelineJS-2.25/examples/example_jquery_load.html
deleted file mode 100644
index a87c6b0f07de3a0b284adfb82407d8906dbd0924..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/examples/example_jquery_load.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8">
-		<title>jQuery Load Example Timeline</title>
-		<meta name="description" content="TimelineJS example">
-		
-		<!-- jQuery -->
-		<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
-		
-		<!-- BEGIN TimelineJS -->
-		<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-		<script>
-			$(document).ready(function() {
-				createStoryJS({
-					type:		'timeline',
-					width:		'800',
-					height:		'600',
-					source:		'example_json.json',
-					embed_id:	'my-timeline',
-					debug:		true
-				});
-			});
-		</script>
-		<!-- END TimelineJS -->
-		
-	</head>
-
-	<body>
-		
-		<div id="my-timeline"></div>
-		
-	</body>
-</html>
diff --git a/public/opac/TimelineJS-2.25/examples/example_json.json b/public/opac/TimelineJS-2.25/examples/example_json.json
deleted file mode 100644
index 20a663fba2975fda492ea3d044f2662088776489..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/examples/example_json.json
+++ /dev/null
@@ -1,261 +0,0 @@
-
-{
-    "timeline":
-    {
-        "headline":"Sh*t People Say",
-        "type":"default",
-		"text":"People say stuff",
-		"startDate":"2012,1,26",
-        "date": [
-            {
-                "startDate":"2011,12,12",
-				"endDate":"2012,1,27",
-                "headline":"Vine",
-                "text":"<p>Vine Test</p>",
-                "asset":
-                {
-                    "media":"https://vine.co/v/b55LOA1dgJU",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-            {
-                "startDate":"2012,1,26",
-				"endDate":"2012,1,27",
-                "headline":"Sh*t Politicians Say",
-                "text":"<p>In true political fashion, his character rattles off common jargon heard from people running for office.</p>",
-                "asset":
-                {
-                    "media":"http://youtu.be/u4XpeU9erbg",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-            {
-                "startDate":"2012,1,10",
-                "headline":"Sh*t Nobody Says",
-                "text":"<p>Have you ever heard someone say “can I burn a copy of your Nickelback CD?” or “my Bazooka gum still has flavor!” Nobody says that.</p>",
-                "asset":
-                {
-                    "media":"http://youtu.be/f-x8t0JOnVw",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2012,1,26",
-                "headline":"Sh*t Chicagoans Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/Ofy5gNkKGOo",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2011,12,12",
-                "headline":"Sh*t Girls Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/u-yLGIH7W9Y",
-                    "credit":"",
-                    "caption":"Writers & Creators: Kyle Humphrey & Graydon Sheppard"
-                }
-            },
-			{
-                "startDate":"2012,1,4",
-                "headline":"Sh*t Broke People Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/zyyalkHjSjo",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-
-			{
-                "startDate":"2012,1,4",
-                "headline":"Sh*t Silicon Valley Says",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/BR8zFANeBGQ",
-                    "credit":"",
-                    "caption":"written, filmed, and edited by Kate Imbach & Tom Conrad"
-                }
-            },
-			{
-                "startDate":"2011,12,25",
-                "headline":"Sh*t Vegans Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/OmWFnd-p0Lw",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2012,1,23",
-                "headline":"Sh*t Graphic Designers Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/KsT3QTmsN5Q",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2011,12,30",
-                "headline":"Sh*t Wookiees Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/vJpBCzzcSgA",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2012,1,17",
-                "headline":"Sh*t People Say About Sh*t People Say Videos",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/c9ehQ7vO7c0",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2012,1,20",
-                "headline":"Sh*t Social Media Pros Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/eRQe-BT9g_U",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2012,1,11",
-                "headline":"Sh*t Old People Say About Computers",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/HRmc5uuoUzA",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2012,1,11",
-                "headline":"Sh*t College Freshmen Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/rwozXzo0MZk",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2011,12,16",
-                "headline":"Sh*t Girls Say - Episode 2",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/kbovd-e-hRg",
-                    "credit":"",
-                    "caption":"Writers & Creators: Kyle Humphrey & Graydon Sheppard"
-                }
-            },
-			{
-                "startDate":"2011,12,24",
-                "headline":"Sh*t Girls Say - Episode 3 Featuring Juliette Lewis",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/bDHUhT71JN8",
-                    "credit":"",
-                    "caption":"Writers & Creators: Kyle Humphrey & Graydon Sheppard"
-                }
-            },
-			{
-                "startDate":"2012,1,27",
-                "headline":"Sh*t Web Designers Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/MEOb_meSHhQ",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2012,1,12",
-                "headline":"Sh*t Hipsters Say",
-                "text":"No meme is complete without a bit of hipster-bashing.",
-                "asset":
-                {
-                    "media":"http://youtu.be/FUhrSVyu0Kw",
-                    "credit":"",
-                    "caption":"Written, Directed, Conceptualized and Performed by Carrie Valentine and Jessica Katz"
-                }
-            },
-			{
-                "startDate":"2012,1,6",
-                "headline":"Sh*t Cats Say",
-                "text":"No meme is complete without cats. This had to happen, obviously.",
-                "asset":
-                {
-                    "media":"http://youtu.be/MUX58Vi-YLg",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-			{
-                "startDate":"2012,1,21",
-                "headline":"Sh*t Cyclists Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/GMCkuqL9IcM",
-                    "credit":"",
-                    "caption":"Video script, production, and editing by Allen Krughoff of Hardcastle Photography"
-                }
-            },
-			{
-                "startDate":"2011,12,30",
-                "headline":"Sh*t Yogis Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/IMC1_RH_b3k",
-                    "credit":"",
-                    "caption":""
-                }
-            },
-
-
-
-
-			{
-                "startDate":"2012,1,18",
-                "headline":"Sh*t New Yorkers Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/yRvJylbSg7o",
-                    "credit":"",
-                    "caption":"Directed and Edited by Matt Mayer, Produced by Seth Keim, Written by Eliot Glazer. Featuring Eliot and Ilana Glazer, who are siblings, not married."
-                }
-            }
-        ]
-    }
-}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/examples/model.json b/public/opac/TimelineJS-2.25/examples/model.json
deleted file mode 100644
index 219bb5ed097aed72c31d5cdb8e0e8fa3b553d795..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/examples/model.json
+++ /dev/null
@@ -1,48 +0,0 @@
-
-{
-	"timeline":
-	{
-		"headline":"The Main Timeline Headline Goes here",
-		"type":"default",
-		"text":"<p>Intro body text goes here, some HTML is ok</p>",
-		"asset": {
-			"media":"http://yourdomain_or_socialmedialink_goes_here.jpg",
-			"credit":"Credit Name Goes Here",
-			"caption":"Caption text goes here"
-		},
-		"date": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"text":"<p>Body text goes here, some HTML is OK</p>",
-				"tag":"This is Optional",
-				"asset": {
-					"media":"http://twitter.com/ArjunaSoriano/status/164181156147900416",
-					"thumbnail":"optional-32x32px.jpg",
-					"credit":"Credit Name Goes Here",
-					"caption":"Caption text goes here"
-				}
-			}
-		],
-		"era": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"tag":"This is Optional"
-			}
-			
-		],
-		"chart": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"value":"28"
-			}
-			
-		]
-		
-	}
-}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/examples/model.jsonp b/public/opac/TimelineJS-2.25/examples/model.jsonp
deleted file mode 100644
index f96dba3e0a5ad5c4f3ed53f73302e852e76d85eb..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/examples/model.jsonp
+++ /dev/null
@@ -1,47 +0,0 @@
-storyjs_jsonp_data = {
-	"timeline":
-	{
-		"headline":"The Main Timeline Headline Goes here",
-		"type":"default",
-		"text":"<p>Intro body text goes here, some HTML is ok</p>",
-		"asset": {
-			"media":"http://yourdomain_or_socialmedialink_goes_here.jpg",
-			"credit":"Credit Name Goes Here",
-			"caption":"Caption text goes here"
-		},
-		"date": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"text":"<p>Body text goes here, some HTML is OK</p>",
-				"tag":"This is Optional",
-				"asset": {
-					"media":"http://twitter.com/ArjunaSoriano/status/164181156147900416",
-					"thumbnail":"optional-32x32px.jpg",
-					"credit":"Credit Name Goes Here",
-					"caption":"Caption text goes here"
-				}
-			}
-		],
-		"era": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"tag":"This is Optional"
-			}
-			
-		],
-		"chart": [
-			{
-				"startDate":"2011,12,10",
-				"endDate":"2011,12,11",
-				"headline":"Headline Goes Here",
-				"value":"28"
-			}
-			
-		]
-		
-	}
-}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/gfx/timeline-dark.psd b/public/opac/TimelineJS-2.25/source/gfx/timeline-dark.psd
deleted file mode 100644
index fff9840537e4222a50797e043122ab1747770be5..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/source/gfx/timeline-dark.psd and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/source/gfx/timeline-dark@2x.psd b/public/opac/TimelineJS-2.25/source/gfx/timeline-dark@2x.psd
deleted file mode 100644
index a11e8a8c359a4320470c6cc1091bcc3c62481c15..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/source/gfx/timeline-dark@2x.psd and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/source/gfx/timeline.psd b/public/opac/TimelineJS-2.25/source/gfx/timeline.psd
deleted file mode 100644
index 5770607bbc17b0ff56cd5b948c6a700c1792f934..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/source/gfx/timeline.psd and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/source/gfx/timeline@2x.psd b/public/opac/TimelineJS-2.25/source/gfx/timeline@2x.psd
deleted file mode 100644
index 8e4336320b7877eabbd804323115f5337f82bb89..0000000000000000000000000000000000000000
Binary files a/public/opac/TimelineJS-2.25/source/gfx/timeline@2x.psd and /dev/null differ
diff --git a/public/opac/TimelineJS-2.25/source/jade/example_googlespreadsheet.jade b/public/opac/TimelineJS-2.25/source/jade/example_googlespreadsheet.jade
deleted file mode 100644
index bda2c1f3275c616f294400d012b9ceb71ef06ae7..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/example_googlespreadsheet.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include includes/mixins
-	include sections/example-head
-	body
-		mixin timeline-embed('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadHdKcHlHcTB5bzhvbF9iTWwyMmJHdkE&output=html')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/example_json.jade b/public/opac/TimelineJS-2.25/source/jade/example_json.jade
deleted file mode 100644
index fef60c20230d896933c262072885c2784aeab069..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/example_json.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include includes/mixins
-	include sections/example-head
-	body
-		mixin timeline-embed('example_json.json')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/example_jsonp.jade b/public/opac/TimelineJS-2.25/source/jade/example_jsonp.jade
deleted file mode 100644
index 06bd0d1c2175b02cc27f2ccebd15108d7c252db1..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/example_jsonp.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include includes/mixins
-	include sections/example-head
-	body
-		mixin timeline-embed('example_jsonp.jsonp')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/example_storify.jade b/public/opac/TimelineJS-2.25/source/jade/example_storify.jade
deleted file mode 100644
index 4b9abbaa03abe3bacc1f32950c356aadc86aee8b..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/example_storify.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include includes/mixins
-	include sections/example-head
-	body
-		mixin timeline-embed('http://storify.com/zachwise/test')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/generator.jade b/public/opac/TimelineJS-2.25/source/jade/generator.jade
deleted file mode 100644
index 84e7295cf0cdfede7c54588fcd935f4f8e6cdc7a..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/generator.jade
+++ /dev/null
@@ -1,42 +0,0 @@
-!!! 5
-html(lang="en")
-
-	include includes/ascii
-
-	head
-		title TimelineJS Embed Generator
-		meta(charset='utf-8')
-		meta(name='description', content='Timeline JS Embed Generator')
-
-		// CSS
-		link(href='css/timeline-generator.css', rel='stylesheet')
-
-		// JavaScript
-		script(type='text/javascript', src='js/storyjs-embed-generator.js')
-		script(type='text/javascript', src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js')
-		script
-			$(document).ready(function() {
-				updateEmbedCode();
-				$("#embed_code").click(function() { $(this).select(); });
-				$('#embed-width').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-wordpressplugin').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-font').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-height').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-maptype').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-googlemapkey').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-source-url').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-language').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-startatend').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-hashbookmark').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-startatslide').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-startzoomadjust').change(function(evt) { updateEmbedCode(evt); });
-				$('#embed-debug').change(function(evt) { updateEmbedCode(evt); });
-			});
-
-	body
-		include sections/embed-generator
-
-		// Footer
-		footer
-			div.container
-				p &copy; VéritéCo 2012
diff --git a/public/opac/TimelineJS-2.25/source/jade/includes/ascii.jade b/public/opac/TimelineJS-2.25/source/jade/includes/ascii.jade
deleted file mode 100644
index 1a08e8821db6575d044102bd1e062171d2e0809c..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/includes/ascii.jade
+++ /dev/null
@@ -1,15 +0,0 @@
-
-//
-	|	 
-	|	88888888888 d8b                        888 d8b                888888   d8888b  
-	|	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
-	|	    888                                888                       888 Y88b
-	|	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
-	|	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-	|	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-	|	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
-	|	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-	|	                                                                d88P            
-	|	                                                              d88P             
-	|	                                                            888P              
-	|	 
diff --git a/public/opac/TimelineJS-2.25/source/jade/includes/mixins.jade b/public/opac/TimelineJS-2.25/source/jade/includes/mixins.jade
deleted file mode 100644
index ae937562422d5a67754068e94792738bfa21d1bb..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/includes/mixins.jade
+++ /dev/null
@@ -1,45 +0,0 @@
-mixin brand(name, ext)
-	span.verite-brand #{name}
-		span.verite-brand-ext #{ext}
-
-mixin example(title, link, thumb, description)
-	// Example
-	div.span3
-		p 
-			a(href='#{link}', target='_blank')
-				img(src='#{thumb}').with-shadow
-		h3
-			a(href='#{link}', target='_blank') #{title}
-		p #{description}
-
-mixin faq-accordian(parent, id, question, answer)
-	div.accordion-group
-		div.accordion-heading
-			a.accordion-toggle(data-toggle='collapse', data-parent='#{parent}', href='##{id}')!= question
-		div(id='#{id}', style='height: 0px;').accordion-body.collapse
-			div.accordion-inner!= answer
-
-mixin timeline-embed(thesource)
-	// BEGIN Timeline Embed 
-	div#timeline-embed
-	script(type='text/javascript')
-		var timeline_config = {
-			width: "100%",
-			height: "100%",
-			source: '#{thesource}'
-		}
-	script(type='text/javascript', src='../compiled/js/storyjs-embed.js')
-	// END Timeline Embed
-
-mixin timeline-embed-debug(thesource)
-	// BEGIN Timeline Embed 
-	div#timeline-embed
-	script(type='text/javascript')
-		var timeline_config = {
-			width: "100%",
-			height: "100%",
-			debug: true,
-			source: '#{thesource}'
-		}
-	script(type='text/javascript', src='../compiled/js/storyjs-embed.js')
-	// END Timeline Embed
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/index.jade b/public/opac/TimelineJS-2.25/source/jade/index.jade
deleted file mode 100644
index cb035c7315f31e81d9eb25008cef1034ebd383d4..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/index.jade
+++ /dev/null
@@ -1,27 +0,0 @@
-include includes/mixins
-!!! 5
-html(lang="en")
-	include includes/ascii
-	head
-		title TimelineJS Embed
-		meta(charset='utf-8')
-		meta(name='description', content='TimelineJS Embed')
-		meta(name='apple-mobile-web-app-capable', content='yes')
-		meta(name='apple-touch-fullscreen', content='yes')
-		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
-		// Style
-		style
-			html, body {
-			height:100%;
-			padding: 0px;
-			margin: 0px;
-			}
-		// HTML5 shim, for IE6-8 support of HTML elements
-		//if lt IE 9
-			script(src='http://html5shim.googlecode.com/svn/trunk/html5.js')
-
-	body
-		// BEGIN Timeline Embed 
-		div#timeline-embed
-		script(type='text/javascript', src='js/storyjs-embed-cdn.js?v222')
-		// END Timeline Embed
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/sections/embed-generator.jade b/public/opac/TimelineJS-2.25/source/jade/sections/embed-generator.jade
deleted file mode 100644
index 1e7a635044e2851848aba0c20683b7ff3b59afdb..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/sections/embed-generator.jade
+++ /dev/null
@@ -1,181 +0,0 @@
-// Embed Generator
-include ../includes/mixins
-section#embed.embed-form
-	div.container
-		h2 
-			mixin brand('Timeline', 'JS')
-			|  Embed Generator
-		p.lead On your site or blog in no time.
-		div.row
-			div.span7
-				form.form-horizontal
-					fieldset
-						// Required elements for embed
-						// Embed Source
-						div.control-group
-							label.control-label 
-								a(href='https://docs.google.com/a/digitalartwork.net/previewtemplate?id=0AppSVxABhnltdEhzQjQ4MlpOaldjTmZLclQxQWFTOUE&mode=public',target='_blank') Google Spreadsheet
-								|  or other data source URL
-							div.controls
-								input(type='text')#embed-source-url.span4
-								p.help-inline Make sure you've published it.
-						// Size
-						div.control-group
-							label.control-label Size
-							div.controls
-								div.input-prepend
-									span.add-on Width
-									input(type='text', value='900', placeholder='900')#embed-width.input-mini
-								div.input-prepend
-									span.add-on Height
-									input(type='text', value='650', placeholder='650')#embed-height.input-mini
-						// Optional elements for embed
-						div.well
-							h4 Optional
-							// Language
-							div.control-group
-								label.control-label Language
-								div.controls
-									select#embed-language
-										option(value='en') English
-										option(value='ar') Arabic (beta)
-										option(value='bg') Bulgarian
-										option(value='ca') Catalan
-										option(value='cz') Czech
-										option(value='da') Danish
-										option(value='de') German / Deutsch
-										option(value='el') Greek
-										option(value='es') Spanish
-										option(value='eu') Basque/ Euskara
-										option(value='fi') Finnish
-										option(value='fo') Faroese
-										option(value='fr') French
-										option(value='gl') Galician
-										option(value='hu') Hungarian
-										option(value='hy') Armenian
-										option(value='id') Indonesian
-										option(value='is') Icelandic
-										option(value='it') Italian
-										option(value='iw') Hebrew (beta)
-										option(value='ja') Japanese
-										option(value='ka') Georgian
-										option(value='ko') Korean
-										option(value='lv') Latvian
-										option(value='nl') Dutch
-										option(value='no') Norwegian
-										option(value='pl') Polish
-										option(value='pt-br') Brazilian Portuguese
-										option(value='pt') Portuguese
-										option(value='ru') Russian
-										option(value='sk') Slovak
-										option(value='sl') Slovenian
-										option(value='sr-cy') Serbian (Cyrillic)
-										option(value='sr') Serbian (Latin)
-										option(value='sv') Swedish
-										option(value='ta') Tamil
-										option(value='tl') Tagalog
-										option(value='tr') Turkish
-										option(value='zh-cn') Chinese
-										option(value='zh-tw') Taiwanese
-							// Map Type
-							div.control-group
-								label.control-label Map Type
-								div.controls
-									select#embed-maptype
-										option(value='toner') Stamen Maps: Toner
-										option(value='toner-lines') Stamen Maps: Toner Lines
-										option(value='toner-labels') Stamen Maps: Toner Labels
-										option(value='watercolor') Stamen Maps: Watercolor
-										option(value='sterrain') Stamen Maps: Terrain
-										option(value='ROADMAP') Google Maps: Roadmap
-										option(value='TERRAIN') Google Maps: Terrain
-										option(value='HYBRID') Google Maps: Hybrid
-										option(value='SATELLITE') Google Maps: Satellite
-									input(type='text',placeholder='Google Maps API Key')#embed-googlemapkey
-									p.help-block
-										| Due to recent changes to the Google Maps API, you need a 
-										a(href='https://developers.google.com/places/documentation/#Authentication', target='_blank') API Key
-										|  in order to use custom map types.
-							// Fonts
-							div.control-group
-								label.control-label Fonts
-								div.controls
-									select#embed-font
-										option(value='Bevan-PotanoSans') Bevan & Potano Sans
-										option(value='Merriweather-NewsCycle') Merriweather & News Cycle
-										option(value='NewsCycle-Merriweather') News Cycle & Merriweather
-										option(value='PoiretOne-Molengo') Poiret One & Molengo
-										option(value='Arvo-PTSans') Arvo & PT Sans
-										option(value='PTSerif-PTSans') PT Serif & PT Sans
-										option(value='DroidSerif-DroidSans') Droid Serif & Droid Sans
-										option(value='Lekton-Molengo') Lekton & Molengo
-										option(value='NixieOne-Ledger') Nixie One & Ledger
-										option(value='AbrilFatface-Average') Abril Fatface & Average
-										option(value='PlayfairDisplay-Muli') Playfair Display & Muli
-										option(value='Rancho-Gudea') Rancho & Gudea
-										option(value='BreeSerif-OpenSans') Bree Serif & Open Sans
-										option(value='SansitaOne-Kameron') Sansita One & Kameron
-										option(value='Pacifico-Arimo') Pacifico & Arimo
-										option(value='PT') PT Sans & PT Narrow & PT Serif
-
-							// Wordpress Plugin
-							div.control-group
-								label.control-label Misc
-								div.controls
-									label.checkbox
-										input#embed-wordpressplugin(type='checkbox', value='option1')
-										| Wordpress Plugin
-										span.help-inline Is the embed for the <a href="https://github.com/VeriteCo/Timeline-Wordpress-Plugin" target="_blank">Wordpress Plugin</a>?
-									// Start at End?
-									label.checkbox
-										input#embed-startatend(type='checkbox', value='option1')
-										| Start at the End?
-										span.help-inline The most recent event will be shown first.
-									// Hash Bookmarks
-									label.checkbox
-										input#embed-hashbookmark(type='checkbox', value='option1')
-										| Hash Bookmarks
-										span.help-inline On each slide change, a # will be added to the end of the url in the url bar. These urls are bookmarkable so you can share or return to the same place in the timeline
-									// Debug
-									label.checkbox
-										input#embed-debug(type='checkbox', value='option1')
-										| Debug
-										span.help-inline In debug mode, you will see console logs.
-
-							// Start Zoom Adjust
-							div.control-group
-								label.control-label Adjust the default calculated zoom level
-								div.controls
-									input#embed-startzoomadjust.input-mini(type='text', value='0', placeholder='0')
-									p.help-block This will tweak the default zoom level. Equivilent to pressing the zoom in or zoom out button the specified number of times. Negative numbers zoom out.
-							// Start at Slide
-							div.control-group
-								label.control-label Start at specific slide number?
-								div.controls
-									div.input-prepend
-										span.add-on Slide
-										input#embed-startatslide.input-mini(type='text', value='0', placeholder='0')
-									p.help-block You can tell TimelineJS to start at a specific slide number
-			// Embed Copy and Paste
-			div.span5
-				form.form-horizontal
-					fieldset
-						h4 Embed Code
-						p Copy this code and paste it where you want your 
-							mixin brand('Timeline', 'JS')
-							|  to appear.
-							br
-						textarea(readonly='readonly', style='width: 100%; height: 160px; min-height: 110px; max-height: 300px; resize: none; font-family: Menlo,Monaco,\'Courier New\',monospace; font-size: 11px;')#embed_code
-							| <iframe src='http://embed.verite.co/timeline/?source=0Agl_Dv6iEbDadHdKcHlHcTB5bzhvbF9iTWwyMmJHdkE&font=Bevan-PotanoSans&maptype=toner&width=600&height=600' width='600' height='600' frameborder='0'></iframe>
-				div(style='text-align:center;')
-					a(href='#preview-embed-iframe')#iframe-preview-button.btn.btn-primary Preview
-					| &nbsp;
-					a(href='#embed', target='_blank')#preview-embed-link.btn Link to Preview
-section.background-fabric
-	div.container
-		h2 Preview
-		div.row
-			div#preview-embed-iframe.span12
-		br
-		br
-
diff --git a/public/opac/TimelineJS-2.25/source/jade/sections/example-head.jade b/public/opac/TimelineJS-2.25/source/jade/sections/example-head.jade
deleted file mode 100644
index d980c92a4767b23d3c7bf597329ae1f8eaff5909..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/sections/example-head.jade
+++ /dev/null
@@ -1,19 +0,0 @@
-
-include ../includes/ascii
-head
-	title Timeline JS Example
-	meta(charset='utf-8')
-	meta(name='description', content='TimelineJS example')
-	meta(name='apple-mobile-web-app-capable', content='yes')
-	meta(name='apple-touch-fullscreen', content='yes')
-	meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
-	// Style
-	style
-		html, body {
-			height:100%;
-			padding: 0px;
-			margin: 0px;
-		}
-	// HTML5 shim, for IE6-8 support of HTML elements
-	//if lt IE 9
-		script(src='http://html5shim.googlecode.com/svn/trunk/html5.js')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/tests/test_extra_html.jade b/public/opac/TimelineJS-2.25/source/jade/tests/test_extra_html.jade
deleted file mode 100644
index 3e90249c7dfe30a8b1b373a8e79501e5dffc4f1e..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/tests/test_extra_html.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include ../includes/mixins
-	include ../sections/example-head
-	body
-		mixin timeline-embed-debug('test_extra_html.json')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet.jade b/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet.jade
deleted file mode 100644
index d6995a922bea526f4c19d03489591783cf65b8eb..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include ../includes/mixins
-	include ../sections/example-head
-	body
-		mixin timeline-embed-debug('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_bc_era_ages_epoch.jade b/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_bc_era_ages_epoch.jade
deleted file mode 100644
index 64180dca77b32f1dcbbd0691e95da0fc99a36bfe..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_bc_era_ages_epoch.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include ../includes/mixins
-	include ../sections/example-head
-	body
-		mixin timeline-embed-debug('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadHlWbUYwenBTV1hyUGRidU85MnEzQmc&output=html')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_biblical_ad.jade b/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_biblical_ad.jade
deleted file mode 100644
index 96d8142837d9df4f8fd22c351abbed5c640ebb7b..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_biblical_ad.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include ../includes/mixins
-	include ../sections/example-head
-	body
-		mixin timeline-embed-debug('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadENlSWZ0Ml9CUXRMVTJGbHZ5UjhDblE&output=html')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_minutes.jade b/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_minutes.jade
deleted file mode 100644
index df4f77040992fb0b38ea71aee846ebcf23a3690a..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/tests/test_googlespreadsheet_minutes.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include ../includes/mixins
-	include ../sections/example-head
-	body
-		mixin timeline-embed-debug('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFBfbkE1Qk42RTFDcjRDdnFndk9DOFE&output=html')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/tests/test_iframe_640.jade b/public/opac/TimelineJS-2.25/source/jade/tests/test_iframe_640.jade
deleted file mode 100644
index edb91ccb1ec441f7623e445db2faea3d45d5c5ce..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/tests/test_iframe_640.jade
+++ /dev/null
@@ -1,7 +0,0 @@
-!!! 5
-html(lang="en")
-	include ../includes/mixins
-	include ../sections/example-head
-	body
-		div(style='width:640px;')
-			<iframe src="../compiled/index.html?source=0Agl_Dv6iEbDadHdKcHlHcTB5bzhvbF9iTWwyMmJHdkE&font=Bevan-PotanoSans&maptype=toner&debug=true&lang=en&height=650" width='100%' height='650' frameborder='0'></iframe>
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/tests/test_jsonp.jade b/public/opac/TimelineJS-2.25/source/jade/tests/test_jsonp.jade
deleted file mode 100644
index abf2d7356cbf58a07a4f0de652cbc0d3e9039ec9..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/tests/test_jsonp.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include ../includes/mixins
-	include ../sections/example-head
-	body
-		mixin timeline-embed-debug('example_jsonp.jsonp')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/jade/tests/test_utc_firefox.jade b/public/opac/TimelineJS-2.25/source/jade/tests/test_utc_firefox.jade
deleted file mode 100644
index aed1f21f83e98e5e06693fd1257bf85d34f02772..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/jade/tests/test_utc_firefox.jade
+++ /dev/null
@@ -1,6 +0,0 @@
-!!! 5
-html(lang="en")
-	include ../includes/mixins
-	include ../sections/example-head
-	body
-		mixin timeline-embed-debug('test_utc_firefox.json')
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/js/VMM.TImeline.Min.js b/public/opac/TimelineJS-2.25/source/js/VMM.TImeline.Min.js
deleted file mode 100644
index c8b5d3c7638144af6d27a179311291bb662daa6a..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/js/VMM.TImeline.Min.js
+++ /dev/null
@@ -1,25 +0,0 @@
-/*!
-	Timeline Minified
-	Designed and built by Zach Wise at VéritéCo
-
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    http://www.gnu.org/licenses/
-
-*/  
-
-
-/* 	CodeKit Import
-	http://incident57.com/codekit/
-================================================== */
-// @codekit-prepend "VMM.Timeline.js";
-
-VMM.debug = false;
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.DataObj.js b/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.DataObj.js
deleted file mode 100644
index 6715aabd4b3c4facfb149cf48723326747fc4465..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.DataObj.js
+++ /dev/null
@@ -1,772 +0,0 @@
-/*	TIMELINE SOURCE DATA PROCESSOR
-================================================== */
-
-if (typeof VMM.Timeline !== 'undefined' && typeof VMM.Timeline.DataObj == 'undefined') {
-	VMM.Timeline.DataObj = {
-		data_obj: {},
-		model_array: [],
-		getData: function (raw_data) {
-			VMM.Timeline.DataObj.data_obj = {};
-			VMM.fireEvent(global, VMM.Timeline.Config.events.messege, VMM.Timeline.Config.language.messages.loading_timeline);
-			if (type.of(raw_data) == "object") {
-				trace("DATA SOURCE: JSON OBJECT");
-				VMM.Timeline.DataObj.parseJSON(raw_data);
-			} else if (type.of(raw_data) == "string") {
-				if (raw_data.match("%23")) {
-					trace("DATA SOURCE: TWITTER SEARCH");
-					VMM.Timeline.DataObj.model.tweets.getData("%23medill");
-				} else if (	raw_data.match("spreadsheet") ) {
-					trace("DATA SOURCE: GOOGLE SPREADSHEET");
-					VMM.Timeline.DataObj.model.googlespreadsheet.getData(raw_data);
-				} else if (raw_data.match("storify.com")) {
-					trace("DATA SOURCE: STORIFY");
-					VMM.Timeline.DataObj.model.storify.getData(raw_data);
-					//http://api.storify.com/v1/stories/number10gov/g8-and-nato-chicago-summit
-				} else if (raw_data.match("\.jsonp")) {
-					trace("DATA SOURCE: JSONP");
-					LoadLib.js(raw_data, VMM.Timeline.DataObj.onJSONPLoaded);
-				} else {
-					trace("DATA SOURCE: JSON");
-					var req = "";
-					if (raw_data.indexOf("?") > -1) {
-						req = raw_data + "&callback=onJSONP_Data";
-					} else {
-						req = raw_data + "?callback=onJSONP_Data";
-					}
-					VMM.getJSON(req, VMM.Timeline.DataObj.parseJSON);
-				}
-			} else if (type.of(raw_data) == "html") {
-				trace("DATA SOURCE: HTML");
-				VMM.Timeline.DataObj.parseHTML(raw_data);
-			} else {
-				trace("DATA SOURCE: UNKNOWN");
-			}
-			
-		},
-		
-		onJSONPLoaded: function() {
-			trace("JSONP IS LOADED");
-			VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, storyjs_jsonp_data);
-		},
-		
-		parseHTML: function (d) {
-			trace("parseHTML");
-			trace("WARNING: THIS IS STILL ALPHA AND WILL NOT WORK WITH ID's other than #timeline");
-			var _data_obj = VMM.Timeline.DataObj.data_template_obj;
-			
-			/*	Timeline start slide
-			================================================== */
-			if (VMM.Lib.find("#timeline section", "time")[0]) {
-				_data_obj.timeline.startDate = VMM.Lib.html(VMM.Lib.find("#timeline section", "time")[0]);
-				_data_obj.timeline.headline = VMM.Lib.html(VMM.Lib.find("#timeline section", "h2"));
-				_data_obj.timeline.text = VMM.Lib.html(VMM.Lib.find("#timeline section", "article"));
-				
-				var found_main_media = false;
-				
-				if (VMM.Lib.find("#timeline section", "figure img").length != 0) {
-					found_main_media = true;
-					_data_obj.timeline.asset.media = VMM.Lib.attr(VMM.Lib.find("#timeline section", "figure img"), "src");
-				} else if (VMM.Lib.find("#timeline section", "figure a").length != 0) {
-					found_main_media = true;
-					_data_obj.timeline.asset.media = VMM.Lib.attr(VMM.Lib.find("#timeline section", "figure a"), "href");
-				} else {
-					//trace("NOT FOUND");
-				}
-
-				if (found_main_media) {
-					if (VMM.Lib.find("#timeline section", "cite").length != 0) {
-						_data_obj.timeline.asset.credit = VMM.Lib.html(VMM.Lib.find("#timeline section", "cite"));
-					}
-					if (VMM.Lib.find(this, "figcaption").length != 0) {
-						_data_obj.timeline.asset.caption = VMM.Lib.html(VMM.Lib.find("#timeline section", "figcaption"));
-					}
-				}
-			}
-			
-			/*	Timeline Date Slides
-			================================================== */
-			VMM.Lib.each("#timeline li", function(i, elem){
-				
-				var valid_date = false;
-				
-				var _date = {
-					"type":"default",
-					"startDate":"",
-		            "headline":"",
-		            "text":"",
-		            "asset":
-		            {
-		                "media":"",
-		                "credit":"",
-		                "caption":""
-		            },
-		            "tags":"Optional"
-				};
-				
-				if (VMM.Lib.find(this, "time") != 0) {
-					
-					valid_date = true;
-					
-					_date.startDate = VMM.Lib.html(VMM.Lib.find(this, "time")[0]);
-
-					if (VMM.Lib.find(this, "time")[1]) {
-						_date.endDate = VMM.Lib.html(VMM.Lib.find(this, "time")[1]);
-					}
-
-					_date.headline = VMM.Lib.html(VMM.Lib.find(this, "h3"));
-
-					_date.text = VMM.Lib.html(VMM.Lib.find(this, "article"));
-
-					var found_media = false;
-					if (VMM.Lib.find(this, "figure img").length != 0) {
-						found_media = true;
-						_date.asset.media = VMM.Lib.attr(VMM.Lib.find(this, "figure img"), "src");
-					} else if (VMM.Lib.find(this, "figure a").length != 0) {
-						found_media = true;
-						_date.asset.media = VMM.Lib.attr(VMM.Lib.find(this, "figure a"), "href");
-					} else {
-						//trace("NOT FOUND");
-					}
-
-					if (found_media) {
-						if (VMM.Lib.find(this, "cite").length != 0) {
-							_date.asset.credit = VMM.Lib.html(VMM.Lib.find(this, "cite"));
-						}
-						if (VMM.Lib.find(this, "figcaption").length != 0) {
-							_date.asset.caption = VMM.Lib.html(VMM.Lib.find(this, "figcaption"));
-						}
-					}
-					
-					trace(_date);
-					_data_obj.timeline.date.push(_date);
-					
-				}
-				
-			});
-			
-			VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, _data_obj);
-			
-		},
-		
-		parseJSON: function(d) {
-			trace("parseJSON");
-			if (d.timeline.type == "default") {
-				trace("DATA SOURCE: JSON STANDARD TIMELINE");
-				VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, d);
-			} else if (d.timeline.type == "twitter") {
-				trace("DATA SOURCE: JSON TWEETS");
-				VMM.Timeline.DataObj.model_Tweets.buildData(d);
-				
-			} else {
-				trace("DATA SOURCE: UNKNOWN JSON");
-				trace(type.of(d.timeline));
-			};
-		},
-		
-		/*	MODEL OBJECTS 
-			New Types of Data can be formatted for the timeline here
-		================================================== */
-		
-		model: {
-			
-			googlespreadsheet: {
-				
-				getData: function(raw) {
-					var getjsondata, key, worksheet, url, timeout, tries = 0;
-					
-					key	= VMM.Util.getUrlVars(raw)["key"];
-					worksheet = VMM.Util.getUrlVars(raw)["worksheet"];
-					if (typeof worksheet == "undefined") worksheet = "od6";
-					
-					url	= "https://spreadsheets.google.com/feeds/list/" + key + "/" + worksheet + "/public/values?alt=json";
-					
-					timeout = setTimeout(function() {
-						trace("Google Docs timeout " + url);
-						trace(url);
-						if (tries < 3) {
-							VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Still waiting on Google Docs, trying again " + tries);
-							tries ++;
-							getjsondata.abort()
-							requestJsonData();
-						} else {
-							VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Google Docs is not responding");
-						}
-					}, 16000);
-					
-					function requestJsonData() {
-						getjsondata = VMM.getJSON(url, function(d) {
-							clearTimeout(timeout);
-							VMM.Timeline.DataObj.model.googlespreadsheet.buildData(d);
-						})
-							.error(function(jqXHR, textStatus, errorThrown) {
-								trace("Google Docs ERROR");
-								trace("Google Docs ERROR: " + textStatus + " " + jqXHR.responseText);
-							})
-							.success(function(d) {
-								clearTimeout(timeout);
-							});
-					}
-					
-					requestJsonData();
-				},
-				
-				buildData: function(d) {
-					var data_obj	= VMM.Timeline.DataObj.data_template_obj,
-						is_valid	= false;
-					
-					VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Parsing Google Doc Data");
-					
-					function getGVar(v) {
-						if (typeof v != 'undefined') {
-							return v.$t;
-						} else {
-							return "";
-						}
-					}
-					if (typeof d.feed.entry != 'undefined') {
-						is_valid = true;
-						
-						for(var i = 0; i < d.feed.entry.length; i++) {
-							var dd		= d.feed.entry[i],
-								dd_type	= "";
-						
-							if (typeof dd.gsx$type != 'undefined') {
-								dd_type = dd.gsx$type.$t;
-							} else if (typeof dd.gsx$titleslide != 'undefined') {
-								dd_type = dd.gsx$titleslide.$t;
-							}
-						
-							if (dd_type.match("start") || dd_type.match("title") ) {
-								data_obj.timeline.startDate		= getGVar(dd.gsx$startdate);
-								data_obj.timeline.headline		= getGVar(dd.gsx$headline);
-								data_obj.timeline.asset.media	= getGVar(dd.gsx$media);
-								data_obj.timeline.asset.caption	= getGVar(dd.gsx$mediacaption);
-								data_obj.timeline.asset.credit	= getGVar(dd.gsx$mediacredit);
-								data_obj.timeline.text			= getGVar(dd.gsx$text);
-								data_obj.timeline.type			= "google spreadsheet";
-							} else if (dd_type.match("era")) {
-								var era = {
-									startDate:		getGVar(dd.gsx$startdate),
-									endDate:		getGVar(dd.gsx$enddate),
-									headline:		getGVar(dd.gsx$headline),
-									text:			getGVar(dd.gsx$text),
-									tag:			getGVar(dd.gsx$tag)
-								}
-								data_obj.timeline.era.push(era);
-							} else {
-								var date = {
-										type:			"google spreadsheet",
-										startDate:		getGVar(dd.gsx$startdate),
-										endDate:		getGVar(dd.gsx$enddate),
-										headline:		getGVar(dd.gsx$headline),
-										text:			getGVar(dd.gsx$text),
-										tag:			getGVar(dd.gsx$tag),
-										asset: {
-											media:		getGVar(dd.gsx$media),
-											credit:		getGVar(dd.gsx$mediacredit),
-											caption:	getGVar(dd.gsx$mediacaption),
-											thumbnail:	getGVar(dd.gsx$mediathumbnail)
-										}
-								};
-							
-								data_obj.timeline.date.push(date);
-							}
-						};
-						
-					} else {
-						
-					}
-					
-					
-					if (is_valid) {
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Finished Parsing Data");
-						VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, data_obj);
-					} else {
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, VMM.Language.messages.loading + " Google Doc Data (cells)");
-						trace("There may be too many entries. Still trying to load data. Now trying to load cells to avoid Googles limitation on cells");
-						VMM.Timeline.DataObj.model.googlespreadsheet.getDataCells(d.feed.link[0].href);
-					}
-				},
-				
-				getDataCells: function(raw) {
-					var getjsondata, key, url, timeout, tries = 0;
-					
-					key	= VMM.Util.getUrlVars(raw)["key"];
-					url	= "https://spreadsheets.google.com/feeds/cells/" + key + "/od6/public/values?alt=json";
-					
-					timeout = setTimeout(function() {
-						trace("Google Docs timeout " + url);
-						trace(url);
-						if (tries < 3) {
-							VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Still waiting on Google Docs, trying again " + tries);
-							tries ++;
-							getjsondata.abort()
-							requestJsonData();
-						} else {
-							VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Google Docs is not responding");
-						}
-					}, 16000);
-					
-					function requestJsonData() {
-						getjsondata = VMM.getJSON(url, function(d) {
-							clearTimeout(timeout);
-							VMM.Timeline.DataObj.model.googlespreadsheet.buildDataCells(d);
-						})
-							.error(function(jqXHR, textStatus, errorThrown) {
-								trace("Google Docs ERROR");
-								trace("Google Docs ERROR: " + textStatus + " " + jqXHR.responseText);
-							})
-							.success(function(d) {
-								clearTimeout(timeout);
-							});
-					}
-					
-					requestJsonData();
-				},
-				
-				buildDataCells: function(d) {
-					var data_obj	= VMM.Timeline.DataObj.data_template_obj,
-						is_valid	= false,
-						cellnames	= ["timeline"],
-						list 		= [],
-						max_row		= 0,
-						i			= 0,
-						k			= 0;
-					
-					VMM.fireEvent(global, VMM.Timeline.Config.events.messege, VMM.Language.messages.loading_timeline + " Parsing Google Doc Data (cells)");
-					
-					function getGVar(v) {
-						if (typeof v != 'undefined') {
-							return v.$t;
-						} else {
-							return "";
-						}
-					}
-					
-					if (typeof d.feed.entry != 'undefined') {
-						is_valid = true;
-						
-						// DETERMINE NUMBER OF ROWS
-						for(i = 0; i < d.feed.entry.length; i++) {
-							var dd				= d.feed.entry[i];
-							
-							if (parseInt(dd.gs$cell.row) > max_row) {
-								max_row = parseInt(dd.gs$cell.row);
-							}
-						}
-						
-						// CREATE OBJECT FOR EACH ROW
-						for(var i = 0; i < max_row + 1; i++) {
-							var date = {
-								type:			"",
-								startDate:		"",
-								endDate:		"",
-								headline:		"",
-								text:			"",
-								tag:			"",
-								asset: {
-									media:		"",
-									credit:		"",
-									caption:	"",
-									thumbnail:	""
-								}
-							};
-							list.push(date);
-						}
-						
-						// PREP GOOGLE DOC CELL DATA TO EVALUATE
-						for(i = 0; i < d.feed.entry.length; i++) {
-							var dd				= d.feed.entry[i],
-								dd_type			= "",
-								column_name		= "",
-								cell = {
-									content: 	getGVar(dd.gs$cell),
-									col: 		dd.gs$cell.col,
-									row: 		dd.gs$cell.row,
-									name: 		""
-								};
-								
-							//trace(cell);
-							
-							if (cell.row == 1) {
-								if (cell.content == "Start Date") {
-									column_name = "startDate";
-								} else if (cell.content == "End Date") {
-									column_name = "endDate";
-								} else if (cell.content == "Headline") {
-									column_name = "headline";
-								} else if (cell.content == "Text") {
-									column_name = "text";
-								} else if (cell.content == "Media") {
-									column_name = "media";
-								} else if (cell.content == "Media Credit") {
-									column_name = "credit";
-								} else if (cell.content == "Media Caption") {
-									column_name = "caption";
-								} else if (cell.content == "Media Thumbnail") {
-									column_name = "thumbnail";
-								} else if (cell.content == "Type") {
-									column_name = "type";
-								} else if (cell.content == "Tag") {
-									column_name = "tag";
-								}
-								
-								cellnames.push(column_name);
-								
-							} else {
-								cell.name = cellnames[cell.col];
-								list[cell.row][cell.name] = cell.content;
-							}
-							
-						};
-						
-
-						for(i = 0; i < list.length; i++) {
-							var date	= list[i];
-							
-							if (date.type.match("start") || date.type.match("title") ) {
-								data_obj.timeline.startDate		= date.startDate;
-								data_obj.timeline.headline		= date.headline;
-								data_obj.timeline.asset.media	= date.media;
-								data_obj.timeline.asset.caption	= date.caption;
-								data_obj.timeline.asset.credit	= date.credit;
-								data_obj.timeline.text			= date.text;
-								data_obj.timeline.type			= "google spreadsheet";
-							} else if (date.type.match("era")) {
-								var era = {
-									startDate:		date.startDate,
-									endDate:		date.endDate,
-									headline:		date.headline,
-									text:			date.text,
-									tag:			date.tag
-								}
-								data_obj.timeline.era.push(era);
-							} else {
-								var date = {
-										type:			"google spreadsheet",
-										startDate:		date.startDate,
-										endDate:		date.endDate,
-										headline:		date.headline,
-										text:			date.text,
-										tag:			date.tag,
-										asset: {
-											media:		date.media,
-											credit:		date.credit,
-											caption:	date.caption,
-											thumbnail:	date.thumbnail
-										}
-								};
-							
-								data_obj.timeline.date.push(date);
-							}
-							
-						}
-						
-						//trace(cellnames);
-						//trace(max_row);
-						//trace(list);
-						
-					}
-					
-					if (is_valid) {
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Finished Parsing Data");
-						VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, data_obj);
-					} else {
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Unable to load Google Doc data source");
-					}
-				}
-				
-			},
-			
-			storify: {
-				
-				getData: function(raw) {
-					var key, url, storify_timeout;
-					//http://storify.com/number10gov/g8-and-nato-chicago-summit
-					//http://api.storify.com/v1/stories/number10gov/g8-and-nato-chicago-summit
-					
-					VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Loading Storify...");
-					
-					key	= raw.split("storify.com\/")[1];
-					url	= "http://api.storify.com/v1/stories/" + key + "?per_page=300&callback=?";
-					
-					storify_timeout = setTimeout(function() {
-						trace("STORIFY timeout");
-						VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Storify is not responding");
-					}, 6000);
-					
-					VMM.getJSON(url, VMM.Timeline.DataObj.model.storify.buildData)
-						.error(function(jqXHR, textStatus, errorThrown) {
-							trace("STORIFY error");
-							trace("STORIFY ERROR: " + textStatus + " " + jqXHR.responseText);
-						})
-						.success(function(d) {
-							clearTimeout(storify_timeout);
-						});
-					
-				},
-				
-				buildData: function(d) {
-					VMM.fireEvent(global, VMM.Timeline.Config.events.messege, "Parsing Data");
-					var _data_obj = VMM.Timeline.DataObj.data_template_obj;
-					
-					_data_obj.timeline.startDate	= 	new Date(d.content.date.created);;
-					_data_obj.timeline.headline		= 	d.content.title;
-					
-					trace(d);
-					//d.permalink
-					var tt			=	"";
-					var t_name		=	d.content.author.username;
-					var t_nickname	=	"";
-					if (typeof d.content.author.name != 'undefined') {
-						t_name		=	d.content.author.name;
-						t_nickname	=	d.content.author.username + "&nbsp;";
-					}
-					if (typeof d.content.description != 'undefined' && d.content.description != null) {
-						tt			+=	d.content.description;
-					}
-					
-					tt				+=	"<div class='storify'>"
-					//tt				 += " <a href='" + d.content.permalink + "' target='_blank' alt='link to original story' title='link to original story'>" + "<span class='created-at'></span>" + " </a>";
-					
-					tt				+=	"<div class='vcard author'><a class='screen-name url' href='" + d.content.author.permalink + "' target='_blank'>";
-					
-					tt				+=	"<span class='avatar'><img src='" + d.content.author.avatar + "' style='max-width: 32px; max-height: 32px;'></span>"
-					tt				+=	"<span class='fn'>" + t_name + "</span>";
-					tt				+=	"<span class='nickname'>" + t_nickname + "<span class='thumbnail-inline'></span></span>";
-					tt				+=	"</a>";
-					//tt				+=	"<span class='nickname'>" + d.content.author.stats.stories + " Stories</span>";
-					//tt				+=	"<span class='nickname'>" + d.content.author.stats.subscribers + " Subscribers</span>";
-					tt				+=	"</div>"
-					tt				+=	"</div>";
-					
-					_data_obj.timeline.text = tt;
-					_data_obj.timeline.asset.media = d.content.thumbnail;
-					
-					//_data_obj.timeline.asset.media = 		dd.gsx$media.$t;
-					//_data_obj.timeline.asset.caption = 		dd.gsx$mediacaption.$t;
-					//_data_obj.timeline.asset.credit = 		dd.gsx$mediacredit.$t;
-					_data_obj.timeline.type = 				"storify";
-					
-					for(var i = 0; i < d.content.elements.length; i++) {
-						var dd = d.content.elements[i];
-						var is_text = false;
-						var d_date = new Date(dd.posted_at);
-						//trace(tempdat);
-						trace(dd.type);
-						//trace(dd);
-						var _date = {
-							"type": 		"storify",
-							"startDate": 	dd.posted_at,
-							"endDate": 		dd.posted_at,
-				            "headline": 	" ",
-							"slug": 		"", 
-				            "text": 		"",
-				            "asset": {
-								"media": 	"", 
-								"credit": 	"", 
-								"caption": 	"" 
-							}
-						};
-						
-						/*	MEDIA
-						================================================== */
-						if (dd.type == "image") {
-							
-							if (typeof dd.source.name != 'undefined') {
-								if (dd.source.name == "flickr") {
-									_date.asset.media		=	"http://flickr.com/photos/" + dd.meta.pathalias + "/" + dd.meta.id + "/";
-									_date.asset.credit		=	"<a href='" + _date.asset.media + "'>" + dd.attribution.name + "</a>";
-									_date.asset.credit		+=	" on <a href='" + dd.source.href + "'>" + dd.source.name + "</a>";
-								} else if (dd.source.name	==	"instagram") {
-									_date.asset.media		=	dd.permalink;
-									_date.asset.credit		=	"<a href='" + dd.permalink + "'>" + dd.attribution.name + "</a>";
-									_date.asset.credit		+=	" on <a href='" + dd.source.href + "'>" + dd.source.name + "</a>";
-								} else {
-									_date.asset.credit		=	"<a href='" + dd.permalink + "'>" + dd.attribution.name + "</a>";
-									
-									if (typeof dd.source.href != 'undefined') {
-										_date.asset.credit	+=	" on <a href='" + dd.source.href + "'>" + dd.source.name + "</a>";
-									}
-									
-									_date.asset.media		=	dd.data.image.src;
-								}
-							} else {
-								_date.asset.credit			=	"<a href='" + dd.permalink + "'>" + dd.attribution.name + "</a>";
-								_date.asset.media			=	dd.data.image.src;
-							}
-							
-							_date.slug	 					=	dd.attribution.name;
-							if (typeof dd.data.image.caption != 'undefined') {
-								if (dd.data.image.caption != 'undefined') {
-									_date.asset.caption				=	dd.data.image.caption;
-									_date.slug	 					=	dd.data.image.caption;
-								}
-							}
-							
-						} else if (dd.type == "quote") {
-							if (dd.permalink.match("twitter")) {
-								_date.asset.media	=	dd.permalink; 
-								_date.slug = VMM.Util.untagify(dd.data.quote.text);
-							} else if (dd.permalink.match("storify")) {
-								is_text = true;
-								_date.asset.media	=	"<blockquote>" + dd.data.quote.text.replace(/<\s*\/?\s*b\s*.*?>/g,"") + "</blockquote>";
-							}
-						} else if (dd.type == "link") {
-							_date.headline		=	dd.data.link.title;
-							_date.text			=	dd.data.link.description;
-							if (dd.data.link.thumbnail != 'undefined' && dd.data.link.thumbnail != '') {
-								_date.asset.media	=	dd.data.link.thumbnail;
-							} else {
-								_date.asset.media	=	dd.permalink;
-							}
-							//_date.asset.media	=	dd.permalink;
-							_date.asset.caption	=	"<a href='" + dd.permalink + "' target='_blank'>" + dd.data.link.title + "</a>"
-							_date.slug			=	dd.data.link.title;
-							
-						} else if (dd.type == "text") {
-							if (dd.permalink.match("storify")) {
-								is_text = true;
-								var d_name		=	d.content.author.username;
-								var d_nickname	=	"";
-								if (typeof dd.attribution.name != 'undefined') {
-									t_name		=	dd.attribution.name;
-									t_nickname	=	dd.attribution.username + "&nbsp;";
-								}
-								
-								var asset_text	=	"<div class='storify'>"
-								asset_text		+=	"<blockquote><p>" + dd.data.text.replace(/<\s*\/?\s*b\s*.*?>/g,"") + "</p></blockquote>";
-								//asset_text		+=	" <a href='" + dd.attribution.href + "' target='_blank' alt='link to author' title='link to author'>" + "<span class='created-at'></span>" + " </a>";
-
-								asset_text		+=	"<div class='vcard author'><a class='screen-name url' href='" + dd.attribution.href + "' target='_blank'>";
-								asset_text		+=	"<span class='avatar'><img src='" + dd.attribution.thumbnail + "' style='max-width: 32px; max-height: 32px;'></span>"
-								asset_text		+=	"<span class='fn'>" + t_name + "</span>";
-								asset_text		+=	"<span class='nickname'>" + t_nickname + "<span class='thumbnail-inline'></span></span>";
-								asset_text		+=	"</a></div></div>";
-								_date.text		=	asset_text;
-								
-								// Try and put it before the element where it is expected on storify
-								if ( (i+1) >= d.content.elements.length ) {
-									_date.startDate = d.content.elements[i-1].posted_at;
-									
-								} else {
-									if (d.content.elements[i+1].type == "text" && d.content.elements[i+1].permalink.match("storify")) {
-										if ( (i+2) >= d.content.elements.length ) {
-											_date.startDate = d.content.elements[i-1].posted_at;
-										} else {
-											if (d.content.elements[i+2].type == "text" && d.content.elements[i+2].permalink.match("storify")) {
-												if ( (i+3) >= d.content.elements.length ) {
-													_date.startDate = d.content.elements[i-1].posted_at;
-												} else {
-													if (d.content.elements[i+3].type == "text" && d.content.elements[i+3].permalink.match("storify")) {
-														_date.startDate = d.content.elements[i-1].posted_at;
-													} else {
-														trace("LEVEL 3");
-														_date.startDate = d.content.elements[i+3].posted_at;
-													}
-												}
-											} else {
-												trace("LEVEL 2");
-												_date.startDate = d.content.elements[i+2].posted_at;
-											}
-										}
-									} else {
-										trace("LEVEL 1");
-										_date.startDate = d.content.elements[i+1].posted_at;
-									}
-									
-								}
-								_date.endDate = _date.startDate
-							}
-							
-							
-						} else if (dd.type == "video") {
-							_date.headline		=	dd.data.video.title;
-							_date.asset.caption	=	dd.data.video.description;
-							_date.asset.caption	=	dd.source.username;
-							_date.asset.media	=	dd.data.video.src;
-						} else {
-							trace("NO MATCH ");
-							trace(dd);
-						}
-						
-						if (is_text) {
-							_date.slug = VMM.Util.untagify(dd.data.text);
-						}
-						
-						_data_obj.timeline.date.push(_date);
-						
-						
-					};
-				
-					VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, _data_obj);
-				}
-				
-			},
-			
-			tweets: {
-				
-				type: "twitter",
-			
-				buildData: function(raw_data) {
-					VMM.bindEvent(global, VMM.Timeline.DataObj.model.tweets.onTwitterDataReady, "TWEETSLOADED");
-					VMM.ExternalAPI.twitter.getTweets(raw_data.timeline.tweets);
-				},
-			
-				getData: function(raw_data) {
-					VMM.bindEvent(global, VMM.Timeline.DataObj.model.tweets.onTwitterDataReady, "TWEETSLOADED");
-					VMM.ExternalAPI.twitter.getTweetSearch(raw_data);
-				},
-			
-				onTwitterDataReady: function(e, d) {
-					var _data_obj = VMM.Timeline.DataObj.data_template_obj;
-
-					for(var i = 0; i < d.tweetdata.length; i++) {
-
-						var _date = {
-							"type":"tweets",
-							"startDate":"",
-				            "headline":"",
-				            "text":"",
-				            "asset":
-				            {
-				                "media":"",
-				                "credit":"",
-				                "caption":""
-				            },
-				            "tags":"Optional"
-						};
-						// pass in the 'created_at' string returned from twitter //
-						// stamp arrives formatted as Tue Apr 07 22:52:51 +0000 2009 //
-					
-						//var twit_date = VMM.ExternalAPI.twitter.parseTwitterDate(d.tweetdata[i].raw.created_at);
-						//trace(twit_date);
-					
-						_date.startDate = d.tweetdata[i].raw.created_at;
-					
-						if (type.of(d.tweetdata[i].raw.from_user_name)) {
-							_date.headline = d.tweetdata[i].raw.from_user_name + " (<a href='https://twitter.com/" + d.tweetdata[i].raw.from_user + "'>" + "@" + d.tweetdata[i].raw.from_user + "</a>)" ;						
-						} else {
-							_date.headline = d.tweetdata[i].raw.user.name + " (<a href='https://twitter.com/" + d.tweetdata[i].raw.user.screen_name + "'>" + "@" + d.tweetdata[i].raw.user.screen_name + "</a>)" ;
-						}
-					
-						_date.asset.media = d.tweetdata[i].content;
-						_data_obj.timeline.date.push(_date);
-					
-					};
-				
-					VMM.fireEvent(global, VMM.Timeline.Config.events.data_ready, _data_obj);
-				}
-				
-			}
-		},
-		
-		
-		/*	TEMPLATE OBJECTS
-		================================================== */
-		data_template_obj: {  "timeline": { "headline":"", "description":"", "asset": { "media":"", "credit":"", "caption":"" }, "date": [], "era":[] } },
-		date_obj: {"startDate":"2012,2,2,11,30", "headline":"", "text":"", "asset": {"media":"http://youtu.be/vjVfu8-Wp6s", "credit":"", "caption":"" }, "tags":"Optional"}
-	
-	};
-	
-}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.License.js b/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.License.js
deleted file mode 100644
index fd48870b629430d4cb77a30e5be4efe2acf5e305..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.License.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/*!
-	TimelineJS
-	Version 2.17
-	Designed and built by Zach Wise at VéritéCo
-
-	This Source Code Form is subject to the terms of the Mozilla Public
-	License, v. 2.0. If a copy of the MPL was not distributed with this
-	file, You can obtain one at http://mozilla.org/MPL/2.0/.
-	
-*/
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.TimeNav.js b/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.TimeNav.js
deleted file mode 100644
index 8a96d77ab378e61cb186a23d86fb177e31c8e964..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.TimeNav.js
+++ /dev/null
@@ -1,1627 +0,0 @@
-/* 	TimeNav
-	This class handles the bottom timeline navigation.
-	It requires the VMM.Util class and VMM.Date class
-================================================== */
-
-if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefined') {
-	
-	VMM.Timeline.TimeNav = function(parent, content_width, content_height) {
-		trace("VMM.Timeline.TimeNav");
-		
-		var $timenav, $content, $time, $timeintervalminor, $timeinterval, $timeintervalmajor, $timebackground, 
-			$timeintervalbackground, $timenavline, $timenavindicator, $timeintervalminor_minor, $toolbar, $zoomin, $zoomout, $dragslide,
-			config					= VMM.Timeline.Config,
-			row_height,
-			events					= {},
-			timespan				= {},
-			layout					= parent,
-			data					= [],
-			era_markers				= [],
-			markers					= [],
-			interval_array			= [],
-			interval_major_array	= [],
-			tags					= [],
-			current_marker			= 0,
-			_active					= false,
-			eras,
-			content,
-			timeouts = {
-				interval_position:	""
-			},
-			timenav_pos = {
-				left:				"",
-				visible: {
-					left:			"",
-					right:			""
-				}
-			},
-			timelookup = {
-				day:			24,
-				month:			12,
-				year:			10,
-				hour:			60,
-				minute:			60,
-				second:			1000,
-				decade:			10,
-				century:		100,
-				millenium:		1000,
-				age:			1000000,
-				epoch:			10000000,
-				era:			100000000,
-				eon:			500000000,
-				week:			4.34812141,
-				days_in_month:	30.4368499,
-				days_in_week:	7,
-				weeks_in_month:	4.34812141,
-				weeks_in_year:	52.177457,
-				days_in_year:	365.242199,
-				hours_in_day:	24
-			},
-			dateFractionBrowser = {
-				day:			86400000,
-				week:			7,
-				month:			30.4166666667,
-				year:			12,
-				hour:			24,
-				minute:			1440,
-				second:			86400,
-				decade:			10,
-				century:		100,
-				millenium:		1000,
-				age:			1000000,
-				epoch:			10000000,
-				era:			100000000,
-				eon:			500000000
-			},
-			interval = {
-				type:			"year",
-				number:			10,
-				first:			1970,
-				last:			2011,
-				multiplier:		100,
-				classname:		"_idd",
-				interval_type:	"interval"
-			},
-			interval_major = {
-				type:			"year",
-				number:			10,
-				first:			1970,
-				last:			2011,
-				multiplier:		100,
-				classname:		"major",
-				interval_type:	"interval major"
-			},
-			interval_macro = {
-				type:			"year",
-				number:			10,
-				first:			1970,
-				last:			2011,
-				multiplier:		100,
-				classname:		"_dd_minor",
-				interval_type:	"interval minor"
-			},
-			interval_calc = {
-				day: {},
-				month: {},
-				year: {},
-				hour: {},
-				minute: {},
-				second: {},
-				decade: {},
-				century: {},
-				millenium: {},
-				week: {},
-				age: {},
-				epoch: {},
-				era: {},
-				eon: {}
-			};
-		
-		
-		/* ADD to Config
-		================================================== */
-		row_height			=	config.nav.marker.height/2;
-		config.nav.rows = {
-			full:				[1, row_height*2, row_height*4],
-			half:				[1, row_height, row_height*2, row_height*3, row_height*4, row_height*5],
-			current:			[]
-		}
-		
-		if (content_width != null && content_width != "") {
-			config.nav.width	= 	content_width;
-		} 
-		if (content_height != null && content_height != "") {
-			config.nav.height	= 	content_height;
-		}
-		
-		/* INIT
-		================================================== */
-		this.init = function(d,e) {
-			trace('VMM.Timeline.TimeNav init');
-			// need to evaluate d
-			// some function to determine type of data and prepare it
-			if(typeof d != 'undefined') {
-				this.setData(d, e);
-			} else {
-				trace("WAITING ON DATA");
-			}
-		};
-		
-		/* GETTERS AND SETTERS
-		================================================== */
-		this.setData = function(d,e) {
-			if(typeof d != 'undefined') {
-				data = {};
-				data = d;
-				eras = e;
-				build();
-			} else{
-				trace("NO DATA");
-			}
-		};
-		
-		this.setSize = function(w, h) {
-			if (w != null) {config.width = w};
-			if (h != null) {config.height = h};
-			if (_active) {
-				reSize();
-			}
-
-			
-		}
-		
-		this.setMarker = function(n, ease, duration, fast) {
-			goToMarker(n, ease, duration);
-		}
-		
-		this.getCurrentNumber = function() {
-			return current_marker;
-		}
-		
-		/* ON EVENT
-		================================================== */
-		
-		function onConfigSet() {
-			trace("onConfigSet");
-		};
-		
-		function reSize(firstrun) {
-			config.nav.constraint.left = (config.width/2);
-			config.nav.constraint.right = config.nav.constraint.right_min - (config.width/2);
-			$dragslide.updateConstraint(config.nav.constraint);
-			
-			VMM.Lib.css($timenavline, "left", Math.round(config.width/2)+2);
-			VMM.Lib.css($timenavindicator, "left", Math.round(config.width/2)-8);
-			goToMarker(config.current_slide, config.ease, config.duration, true, firstrun);
-		};
-		
-		function upDate() {
-			VMM.fireEvent(layout, "UPDATE");
-		}
-		
-		function onZoomIn() {
-			
-			$dragslide.cancelSlide();
-			if (config.nav.multiplier.current > config.nav.multiplier.min) {
-				if (config.nav.multiplier.current <= 1) {
-					config.nav.multiplier.current = config.nav.multiplier.current - .25;
-				} else {
-					if (config.nav.multiplier.current > 5) {
-						if (config.nav.multiplier.current > 16) {
-							config.nav.multiplier.current = Math.round(config.nav.multiplier.current - 10);
-						} else {
-							config.nav.multiplier.current = Math.round(config.nav.multiplier.current - 4);
-						}
-					} else {
-						config.nav.multiplier.current = Math.round(config.nav.multiplier.current - 1);
-					}
-					
-				}
-				if (config.nav.multiplier.current <= 0) {
-					config.nav.multiplier.current = config.nav.multiplier.min;
-				}
-				refreshTimeline();
-			}
-		}
-		
-		function onZoomOut() {
-			$dragslide.cancelSlide();
-			if (config.nav.multiplier.current < config.nav.multiplier.max) {
-				if (config.nav.multiplier.current > 4) {
-					if (config.nav.multiplier.current > 16) {
-						config.nav.multiplier.current = Math.round(config.nav.multiplier.current + 10);
-					} else {
-						config.nav.multiplier.current = Math.round(config.nav.multiplier.current + 4);
-					}
-				} else {
-					config.nav.multiplier.current = Math.round(config.nav.multiplier.current + 1);
-				}
-				
-				if (config.nav.multiplier.current >= config.nav.multiplier.max) {
-					config.nav.multiplier.current = config.nav.multiplier.max;
-				}
-				refreshTimeline();
-			}
-		}
-		
-		function onBackHome(e) {
-			$dragslide.cancelSlide();
-			goToMarker(0);
-			upDate();
-		}
-		
-		function onMouseScroll(e) {
-			var delta		= 0,
-				scroll_to	= 0;
-			if (!e) {
-				e = window.event;
-			}
-			if (e.originalEvent) {
-				e = e.originalEvent;
-			}
-			
-			// Browsers unable to differntiate between up/down and left/right scrolling
-			/*
-			if (e.wheelDelta) {
-				delta = e.wheelDelta/6;
-			} else if (e.detail) {
-				delta = -e.detail*12;
-			}
-			*/
-			
-			// Webkit and browsers able to differntiate between up/down and left/right scrolling
-			if (typeof e.wheelDeltaX != 'undefined' ) {
-				delta = e.wheelDeltaY/6;
-				if (Math.abs(e.wheelDeltaX) > Math.abs(e.wheelDeltaY)) {
-					delta = e.wheelDeltaX/6;
-				} else {
-					//delta = e.wheelDeltaY/6;
-					delta = 0;
-				}
-			}
-			if (delta) {
-				if (e.preventDefault) {
-					 e.preventDefault();
-				}
-				e.returnValue = false;
-			}
-			// Stop from scrolling too far
-			scroll_to = VMM.Lib.position($timenav).left + delta;
-			
-			if (scroll_to > config.nav.constraint.left) {
-				scroll_to = config.width/2;
-			} else if (scroll_to < config.nav.constraint.right) {
-				scroll_to = config.nav.constraint.right;
-			}
-			
-			//VMM.Lib.stop($timenav);
-			//VMM.Lib.animate($timenav, config.duration/2, "linear", {"left": scroll_to});
-			VMM.Lib.css($timenav, "left", scroll_to);	
-		}
-		
-		function refreshTimeline() {
-			trace("config.nav.multiplier " + config.nav.multiplier.current);
-			positionMarkers(true);
-			positionEras(true);
-			positionInterval($timeinterval, interval_array, true, true);
-			positionInterval($timeintervalmajor, interval_major_array, true);
-			config.nav.constraint.left = (config.width/2);
-			config.nav.constraint.right = config.nav.constraint.right_min - (config.width/2);
-			$dragslide.updateConstraint(config.nav.constraint);
-		};
-		
-		/* MARKER EVENTS
-		================================================== */
-		function onMarkerClick(e) {
-			$dragslide.cancelSlide();
-			goToMarker(e.data.number);
-			upDate();
-		};
-		
-		function onMarkerHover(e) {
-			VMM.Lib.toggleClass(e.data.elem, "zFront");
-		};
-		
-		function goToMarker(n, ease, duration, fast, firstrun) {
-			trace("GO TO MARKER");
-			var _ease		= config.ease,
-				_duration	= config.duration,
-				is_last		= false,
-				is_first	= false;
-			
-			current_marker = 	n;
-			
-			timenav_pos.left			= (config.width/2) - markers[current_marker].pos_left
-			timenav_pos.visible.left	= Math.abs(timenav_pos.left) - 100;
-			timenav_pos.visible.right	= Math.abs(timenav_pos.left) + config.width + 100;
-			
-			if (current_marker == 0) {
-				is_first = true;
-			}
-			if (current_marker +1 == markers.length) {
-				is_last = true
-			}
-			if (ease != null && ease != "") {_ease = ease};
-			if (duration != null && duration != "") {_duration = duration};
-			
-			// set marker style
-			for(var i = 0; i < markers.length; i++) {
-				VMM.Lib.removeClass(markers[i].marker, "active");
-			}
-			
-			if (config.start_page && markers[0].type == "start") {
-				VMM.Lib.visible(markers[0].marker, false);
-				VMM.Lib.addClass(markers[0].marker, "start");
-			}
-			
-			VMM.Lib.addClass(markers[current_marker].marker, "active");
-			
-			// ANIMATE MARKER
-			VMM.Lib.stop($timenav);
-			VMM.Lib.animate($timenav, _duration, _ease, {"left": timenav_pos.left});
-			
-		}
-		
-		/* TOUCH EVENTS
-		================================================== */
-		function onTouchUpdate(e, b) {
-			VMM.Lib.animate($timenav, b.time/2, config.ease, {"left": b.left});
-		};
-		
-		/* CALCULATIONS
-		================================================== */
-		function averageMarkerPositionDistance() {
-			var last_pos	= 0,
-				pos			= 0,
-				pos_dif		= 0,
-				mp_diff		= [],
-				i			= 0;
-			
-			for(i = 0; i < markers.length; i++) {
-				if (data[i].type == "start") {
-					
-				} else {
-					var _pos = positionOnTimeline(interval, markers[i].relative_pos),
-					last_pos = pos;
-					pos = _pos.begin;
-					pos_dif = pos - last_pos;
-					mp_diff.push(pos_dif);
-				}
-			}
-			return VMM.Util.average(mp_diff).mean;
-		}
-		
-		function averageDateDistance() {
-			var last_dd			= 0,
-				dd				= 0,
-				_dd				= "",
-				date_dif		= 0,
-				date_diffs		= [],
-				is_first_date	= true,
-				i				= 0;
-			
-			for(i = 0; i < data.length; i++) {
-				if (data[i].type == "start") {
-					trace("DATA DATE IS START")
-				} else {
-					_dd			= data[i].startdate;
-					last_dd		= dd;
-					dd			= _dd;
-					date_dif	= dd - last_dd;
-					date_diffs.push(date_dif);
-				}
-			}
-			
-			return VMM.Util.average(date_diffs);
-		}
-		
-		function calculateMultiplier() {
-			var temp_multiplier	= config.nav.multiplier.current,
-				i				= 0;
-				
-			for(i = 0; i < temp_multiplier; i++) {
-				if (averageMarkerPositionDistance() < 75) {
-					if (config.nav.multiplier.current > 1) {
-						config.nav.multiplier.current = (config.nav.multiplier.current - 1);
-					}
-				}
-			}
-			
-		}
-		
-		function calculateInterval() {
-			// NEED TO REWRITE ALL OF THIS
-			var _first								= getDateFractions(data[0].startdate),
-				_last								= getDateFractions(data[data.length - 1].enddate);
-			
-			// EON
-			interval_calc.eon.type					=	"eon";
-			interval_calc.eon.first					=	_first.eons;
-			interval_calc.eon.base					=	Math.floor(_first.eons);
-			interval_calc.eon.last					=	_last.eons;
-			interval_calc.eon.number				=	timespan.eons;
-			interval_calc.eon.multiplier		 	=	timelookup.eons;
-			interval_calc.eon.minor					=	timelookup.eons;
-			
-			// ERA
-			interval_calc.era.type					=	"era";
-			interval_calc.era.first					=	_first.eras;
-			interval_calc.era.base					=	Math.floor(_first.eras);
-			interval_calc.era.last					=	_last.eras;
-			interval_calc.era.number				=	timespan.eras;
-			interval_calc.era.multiplier		 	=	timelookup.eras;
-			interval_calc.era.minor					=	timelookup.eras;
-			
-			// EPOCH
-			interval_calc.epoch.type				=	"epoch";
-			interval_calc.epoch.first				=	_first.epochs;
-			interval_calc.epoch.base				=	Math.floor(_first.epochs);
-			interval_calc.epoch.last				=	_last.epochs;
-			interval_calc.epoch.number				=	timespan.epochs;
-			interval_calc.epoch.multiplier		 	=	timelookup.epochs;
-			interval_calc.epoch.minor				=	timelookup.epochs;
-			
-			// AGE
-			interval_calc.age.type					=	"age";
-			interval_calc.age.first					=	_first.ages;
-			interval_calc.age.base					=	Math.floor(_first.ages);
-			interval_calc.age.last					=	_last.ages;
-			interval_calc.age.number				=	timespan.ages;
-			interval_calc.age.multiplier		 	=	timelookup.ages;
-			interval_calc.age.minor					=	timelookup.ages;
-			
-			// MILLENIUM
-			interval_calc.millenium.type 			=	"millenium";
-			interval_calc.millenium.first			=	_first.milleniums;
-			interval_calc.millenium.base			=	Math.floor(_first.milleniums);
-			interval_calc.millenium.last			=	_last.milleniums;
-			interval_calc.millenium.number			=	timespan.milleniums;
-			interval_calc.millenium.multiplier	 	=	timelookup.millenium;
-			interval_calc.millenium.minor			=	timelookup.millenium;
-			
-			// CENTURY
-			interval_calc.century.type 				= "century";
-			interval_calc.century.first 			= _first.centuries;
-			interval_calc.century.base 				= Math.floor(_first.centuries);
-			interval_calc.century.last 				= _last.centuries;
-			interval_calc.century.number 			= timespan.centuries;
-			interval_calc.century.multiplier	 	= timelookup.century;
-			interval_calc.century.minor 			= timelookup.century;
-			
-			// DECADE
-			interval_calc.decade.type 				= "decade";
-			interval_calc.decade.first 				= _first.decades;
-			interval_calc.decade.base 				= Math.floor(_first.decades);
-			interval_calc.decade.last 				= _last.decades;
-			interval_calc.decade.number 			= timespan.decades;
-			interval_calc.decade.multiplier 		= timelookup.decade;
-			interval_calc.decade.minor 				= timelookup.decade;
-			
-			// YEAR
-			interval_calc.year.type					= "year";
-			interval_calc.year.first 				= _first.years;
-			interval_calc.year.base 				= Math.floor(_first.years);
-			interval_calc.year.last					= _last.years;
-			interval_calc.year.number 				= timespan.years;
-			interval_calc.year.multiplier 			= 1;
-			interval_calc.year.minor 				= timelookup.month;
-			
-			// MONTH
-			interval_calc.month.type 				= "month";
-			interval_calc.month.first 				= _first.months;
-			interval_calc.month.base 				= Math.floor(_first.months);
-			interval_calc.month.last 				= _last.months;
-			interval_calc.month.number 				= timespan.months;
-			interval_calc.month.multiplier 			= 1;
-			interval_calc.month.minor 				= Math.round(timelookup.week);
-			
-			// WEEK
-			// NOT DONE
-			interval_calc.week.type 				= "week";
-			interval_calc.week.first 				= _first.weeks;
-			interval_calc.week.base 				= Math.floor(_first.weeks);
-			interval_calc.week.last 				= _last.weeks;
-			interval_calc.week.number 				= timespan.weeks;
-			interval_calc.week.multiplier 			= 1;
-			interval_calc.week.minor 				= 7;
-			
-			// DAY
-			interval_calc.day.type 					= "day";
-			interval_calc.day.first 				= _first.days;
-			interval_calc.day.base	 				= Math.floor(_first.days);
-			interval_calc.day.last 					= _last.days;
-			interval_calc.day.number 				= timespan.days;
-			interval_calc.day.multiplier 			= 1;
-			interval_calc.day.minor 				= 24;
-			
-			// HOUR
-			interval_calc.hour.type 				= "hour";
-			interval_calc.hour.first 				= _first.hours;
-			interval_calc.hour.base 				= Math.floor(_first.hours);
-			interval_calc.hour.last 				= _last.hours;
-			interval_calc.hour.number 				= timespan.hours;
-			interval_calc.hour.multiplier 			= 1;
-			interval_calc.hour.minor 				= 60;
-			
-			// MINUTE
-			interval_calc.minute.type 				= "minute";
-			interval_calc.minute.first 				= _first.minutes;
-			interval_calc.minute.base 				= Math.floor(_first.minutes);
-			interval_calc.minute.last 				= _last.minutes;
-			interval_calc.minute.number 			= timespan.minutes;
-			interval_calc.minute.multiplier 		= 1;
-			interval_calc.minute.minor 				= 60;
-			
-			// SECOND
-			interval_calc.second.type 				= "decade";
-			interval_calc.second.first 				= _first.seconds;
-			interval_calc.second.base 				= Math.floor(_first.seconds);
-			interval_calc.second.last 				= _last.seconds;
-			interval_calc.second.number 			= timespan.seconds;
-			interval_calc.second.multiplier 		= 1;
-			interval_calc.second.minor 				= 10;
-		}
-		
-		function getDateFractions(the_date, is_utc) {
-			
-			var _time = {};
-			_time.days			=		the_date		/	dateFractionBrowser.day;
-			_time.weeks 		=		_time.days		/	dateFractionBrowser.week;
-			_time.months 		=		_time.days		/	dateFractionBrowser.month;
-			_time.years 		=		_time.months 	/	dateFractionBrowser.year;
-			_time.hours 		=		_time.days		*	dateFractionBrowser.hour;
-			_time.minutes 		=		_time.days		*	dateFractionBrowser.minute;
-			_time.seconds 		=		_time.days		*	dateFractionBrowser.second;
-			_time.decades 		=		_time.years		/	dateFractionBrowser.decade;
-			_time.centuries 	=		_time.years		/	dateFractionBrowser.century;
-			_time.milleniums 	=		_time.years		/	dateFractionBrowser.millenium;
-			_time.ages			=		_time.years		/	dateFractionBrowser.age;
-			_time.epochs		=		_time.years		/	dateFractionBrowser.epoch;
-			_time.eras			=		_time.years		/	dateFractionBrowser.era;
-			_time.eons			=		_time.years		/	dateFractionBrowser.eon;
-			
-			/*
-			trace("AGES "		 + 		_time.ages);
-			trace("EPOCHS "		 + 		_time.epochs);
-			trace("MILLENIUMS "  + 		_time.milleniums);
-			trace("CENTURIES "	 + 		_time.centuries);
-			trace("DECADES "	 + 		_time.decades);
-			trace("YEARS "		 + 		_time.years);
-			trace("MONTHS "		 + 		_time.months);
-			trace("WEEKS "		 + 		_time.weeks);
-			trace("DAYS "		 + 		_time.days);
-			trace("HOURS "		 + 		_time.hours);
-			trace("MINUTES "	 + 		_time.minutes);
-			trace("SECONDS "	 + 		_time.seconds);
-			*/
-			return _time;
-		}
-		
-		/*	POSITION
-			Positions elements on the timeline based on date
-			relative to the calculated interval
-		================================================== */
-		function positionRelative(_interval, first, last) {
-			var _first,
-				_last,
-				_type			= _interval.type,
-				timerelative = {
-					start:		"",
-					end:		"",
-					type:		_type
-				};
-			
-			/* FIRST
-			================================================== */
-			_first					= getDateFractions(first);
-			timerelative.start		= first.months;
-			
-			if (_type == "eon") {
-				timerelative.start	= _first.eons;
-			} else if (_type == "era") {
-				timerelative.start	= _first.eras;
-			} else if (_type == "epoch") {
-				timerelative.start	= _first.epochs;
-			} else if (_type == "age") {
-				timerelative.start	= _first.ages;
-			} else if (_type == "millenium") {
-				timerelative.start	= first.milleniums;
-			} else if (_type == "century") {
-				timerelative.start	= _first.centuries;
-			} else if (_type == "decade") {
-				timerelative.start	= _first.decades;
-			} else if (_type == "year") {
-				timerelative.start	= _first.years;
-			} else if (_type == "month") {
-				timerelative.start	= _first.months;
-			} else if (_type == "week") {
-				timerelative.start	= _first.weeks;
-			} else if (_type == "day") {
-				timerelative.start	= _first.days;
-			} else if (_type == "hour") {
-				timerelative.start	= _first.hours;
-			} else if (_type == "minute") {
-				timerelative.start	= _first.minutes;
-			}
-			
-			/* LAST
-			================================================== */
-			if (type.of(last) == "date") {
-				
-				_last					= getDateFractions(last);
-				timerelative.end		= last.months;
-				
-				if (_type == "eon") {
-					timerelative.end	= _last.eons;
-				} else if (_type == "era") {
-					timerelative.end	= _last.eras;
-				} else if (_type == "epoch") {
-					timerelative.end	= _last.epochs;
-				} else if (_type == "age") {
-					timerelative.end	= _last.ages;
-				} else if (_type == "millenium") {
-					timerelative.end	= last.milleniums;
-				} else if (_type == "century") {
-					timerelative.end	= _last.centuries;
-				} else if (_type == "decade") {
-					timerelative.end	= _last.decades;
-				} else if (_type == "year") {
-					timerelative.end	= _last.years;
-				} else if (_type == "month") {
-					timerelative.end	= _last.months;
-				} else if (_type == "week") {
-					timerelative.end	= _last.weeks;
-				} else if (_type == "day") {
-					timerelative.end	= _last.days;
-				} else if (_type == "hour") {
-					timerelative.end	= _last.hours;
-				} else if (_type == "minute") {
-					timerelative.end	= _last.minutes;
-				}
-				
-			} else {
-				
-				timerelative.end		= timerelative.start;
-				
-			}
-			
-			return timerelative
-		}
-		
-		function positionOnTimeline(the_interval, timerelative) {
-			return {
-				begin:	(timerelative.start	-	interval.base) * (config.nav.interval_width / config.nav.multiplier.current), 
-				end:	(timerelative.end	-	interval.base) * (config.nav.interval_width / config.nav.multiplier.current)
-			};
-		}
-		
-		function positionMarkers(is_animated) {
-			
-			var row						= 2,
-				previous_pos			= 0,
-				pos_offset				= -2,
-				row_depth				= 0,
-				row_depth_sub			= 0,
-				line_last_height_pos	= 150,
-				line_height				= 6,
-				cur_mark				= 0,
-				in_view_margin			= config.width,
-				pos_cache_array			= [],
-				pos_cache_max			= 6,
-				in_view = {
-					left:				timenav_pos.visible.left - in_view_margin,
-					right:				timenav_pos.visible.right + in_view_margin
-				},
-				i						= 0,
-				k						= 0;
-				
-			config.nav.minor_width = config.width;
-			
-			VMM.Lib.removeClass(".flag", "row1");
-			VMM.Lib.removeClass(".flag", "row2");
-			VMM.Lib.removeClass(".flag", "row3");
-			
-			for(i = 0; i < markers.length; i++) {
-				
-				var line,
-					marker				= markers[i],
-					pos					= positionOnTimeline(interval, markers[i].relative_pos),
-					row_pos				= 0,
-					is_in_view			= false,
-					pos_cache_obj		= {id: i, pos: 0, row: 0},
-					pos_cache_close		= 0;
-				
-				
-				// COMPENSATE FOR DATES BEING POITIONED IN THE MIDDLE
-				pos.begin				= Math.round(pos.begin +  pos_offset);
-				pos.end					= Math.round(pos.end + pos_offset);
-				line					= Math.round(pos.end - pos.begin);
-				marker.pos_left			= pos.begin;
-				
-				if (current_marker == i) {
-					timenav_pos.left			= (config.width/2) - pos;
-					timenav_pos.visible.left	= Math.abs(timenav_pos.left);
-					timenav_pos.visible.right	= Math.abs(timenav_pos.left) + config.width;
-					in_view.left				= timenav_pos.visible.left - in_view_margin;
-					in_view.right				= timenav_pos.visible.right + in_view_margin;
-				}
-				
-				if (Math.abs(pos.begin) >= in_view.left && Math.abs(pos.begin) <= in_view.right ) {
-					is_in_view = true;
-				}
-				
-				// APPLY POSITION TO MARKER
-				if (is_animated) {
-					VMM.Lib.stop(marker.marker);
-					VMM.Lib.animate(marker.marker, config.duration/2, config.ease, {"left": pos.begin});
-				} else {
-					VMM.Lib.stop(marker.marker);
-					VMM.Lib.css(marker.marker, "left", pos.begin);
-				}
-				
-				if (i == current_marker) {
-					cur_mark = pos.begin;
-				}
-				
-				// EVENT LENGTH LINE
-				if (line > 5) {
-					VMM.Lib.css(marker.lineevent, "height", line_height);
-					VMM.Lib.css(marker.lineevent, "top", line_last_height_pos);
-					if (is_animated) {
-						VMM.Lib.animate(marker.lineevent, config.duration/2, config.ease, {"width": line});
-					} else {
-						VMM.Lib.css(marker.lineevent, "width", line);
-					}
-				}
-				
-				// CONTROL ROW POSITION
-				if (tags.length > 0) {
-					
-					for (k = 0; k < tags.length; k++) {
-						if (k < config.nav.rows.current.length) {
-							if (marker.tag == tags[k]) {
-								row = k;
-								if (k == config.nav.rows.current.length - 1) {
-									trace("ON LAST ROW");
-									VMM.Lib.addClass(marker.flag, "flag-small-last");
-								}
-							}
-						}
-					}
-					row_pos = config.nav.rows.current[row];
-				} else {
-					
-					if (pos.begin - previous_pos.begin < (config.nav.marker.width + config.spacing)) {
-						if (row < config.nav.rows.current.length - 1) {
-							row ++;
-						
-						} else {
-							row = 0;
-							row_depth ++;
-						}
-					} else {
-						row_depth = 1;
-						row = 1;
-					}
-					row_pos = config.nav.rows.current[row];
-					
-				}
-				
-				// SET LAST MARKER POSITION
-				previous_pos = pos;
-				
-				// POSITION CACHE
-				pos_cache_obj.pos = pos;
-				pos_cache_obj.row = row;
-				pos_cache_array.push(pos_cache_obj);
-				if (pos_cache_array.length > pos_cache_max) {
-					pos_cache_array.remove(0);
-				}
-				
-				//if (is_animated && is_in_view) {
-				if (is_animated) {
-					VMM.Lib.stop(marker.flag);
-					VMM.Lib.animate(marker.flag, config.duration, config.ease, {"top": row_pos});
-				} else {
-					VMM.Lib.stop(marker.flag);
-					VMM.Lib.css(marker.flag, "top", row_pos);
-				}
-				
-				// IS THE MARKER A REPRESENTATION OF A START SCREEN?
-				if (config.start_page && markers[i].type == "start") {
-					VMM.Lib.visible(marker.marker, false);
-					
-				}
-				
-				if (pos > config.nav.minor_width) {
-					config.nav.minor_width = pos;
-				}
-				
-				if (pos < config.nav.minor_left) {
-					config.nav.minor_left = pos;
-				}
-				
-			}
-			
-			// ANIMATE THE TIMELINE TO ADJUST TO CHANGES
-			if (is_animated) {
-				VMM.Lib.stop($timenav);
-				VMM.Lib.animate($timenav, config.duration/2, config.ease, {"left": (config.width/2) - (cur_mark)});
-			} else {
-				
-			}
-			
-			//VMM.Lib.delay_animate(config.duration, $timenav, config.duration/2, config.ease, {"left": (config.width/2) - (cur_mark)});
-			
-		
-		}
-		
-		function positionEras(is_animated) {
-			var i	= 0,
-				p	= 0;
-				
-			for(i = 0; i < era_markers.length; i++) {
-				var era			= era_markers[i],
-					pos			= positionOnTimeline(interval, era.relative_pos),
-					row_pos		= 0,
-					row			= 0,
-					era_height	= config.nav.marker.height * config.nav.rows.full.length,
-					era_length	= pos.end - pos.begin;
-					
-				// CONTROL ROW POSITION
-				if (era.tag != "") {
-					era_height = (config.nav.marker.height * config.nav.rows.full.length) / config.nav.rows.current.length;
-					for (p = 0; p < tags.length; p++) {
-						if (p < config.nav.rows.current.length) {
-							if (era.tag == tags[p]) {
-								row = p;
-							}
-						}
-					}
-					row_pos = config.nav.rows.current[row];
-					
-				} else {
-					row_pos = -1;
-				}
-				
-				// APPLY POSITION TO MARKER
-				if (is_animated) {
-					VMM.Lib.stop(era.content);
-					VMM.Lib.stop(era.text_content);
-					VMM.Lib.animate(era.content, config.duration/2, config.ease, {"top": row_pos, "left": pos.begin, "width": era_length, "height":era_height});
-					VMM.Lib.animate(era.text_content, config.duration/2, config.ease, {"left": pos.begin});
-				} else {
-					VMM.Lib.stop(era.content);
-					VMM.Lib.stop(era.text_content);
-					VMM.Lib.css(era.content, "left", pos.begin);
-					VMM.Lib.css(era.content, "width", era_length);
-					VMM.Lib.css(era.content, "height", era_height);
-					VMM.Lib.css(era.content, "top", row_pos);
-					VMM.Lib.css(era.text_content, "left", pos.begin);
-					
-				}
-
-			}
-		}
-		
-		function positionInterval(the_main_element, the_intervals, is_animated, is_minor) {
-			
-			var last_position		= 0,
-				last_position_major	= 0,
-				//in_view_margin		= (config.nav.minor_width/config.nav.multiplier.current)/2,
-				in_view_margin		= config.width,
-				in_view = {
-					left:			timenav_pos.visible.left - in_view_margin,
-					right:			timenav_pos.visible.right + in_view_margin
-				}
-				not_too_many		= true,
-				i					= 0;
-			
-			config.nav.minor_left = 0;
-				
-			if (the_intervals.length > 100) {
-				not_too_many = false;
-				trace("TOO MANY " + the_intervals.length);
-			}
-			
-			
-			for(i = 0; i < the_intervals.length; i++) {
-				var _interval			= the_intervals[i].element,
-					_interval_date		= the_intervals[i].date,
-					_interval_visible	= the_intervals[i].visible,
-					_pos				= positionOnTimeline(interval, the_intervals[i].relative_pos),
-					pos					= _pos.begin,
-					_animation			= the_intervals[i].animation,
-					is_visible			= true,
-					is_in_view			= false,
-					pos_offset			= 50;
-				
-				
-				_animation.pos			= pos;
-				_animation.animate		= false;
-				
-				if (Math.abs(pos) >= in_view.left && Math.abs(pos) <= in_view.right ) {
-					is_in_view = true;
-				}
-				
-				if (true) {
-					
-					// CONDENSE WHAT IS DISPLAYED
-					if (config.nav.multiplier.current > 16 && is_minor) {
-						is_visible = false;
-					} else {
-						if ((pos - last_position) < 65 ) {
-							if ((pos - last_position) < 35 ) {
-								if (i%4 == 0) {
-									if (pos == 0) {
-										is_visible = false;
-									}
-								} else {
-									is_visible = false;
-								}
-							} else {
-								if (!VMM.Util.isEven(i)) {
-									is_visible = false;
-								}
-							}
-						}
-					}
-					
-					if (is_visible) {
-						if (the_intervals[i].is_detached) {
-							VMM.Lib.append(the_main_element, _interval);
-							the_intervals[i].is_detached = false;
-						}
-					} else {
-						the_intervals[i].is_detached = true;
-						VMM.Lib.detach(_interval);
-					}
-					
-					
-					if (_interval_visible) {
-						if (!is_visible) {
-							_animation.opacity	= "0";
-							if (is_animated && not_too_many) {
-								_animation.animate	= true;
-							}
-							the_intervals[i].interval_visible = false;
-						} else {
-							_animation.opacity	= "100";
-							if (is_animated && is_in_view) {
-								_animation.animate	= true;
-							}
-						}
-					} else {
-						_animation.opacity	= "100";
-						if (is_visible) {
-							if (is_animated && not_too_many) {
-								_animation.animate	= true;
-							} else {
-								if (is_animated && is_in_view) {
-									_animation.animate	= true;
-								}
-							}
-							the_intervals[i].interval_visible = true;
-						} else {
-							if (is_animated && not_too_many) {
-								_animation.animate	= true;
-							}
-						}
-					}
-				
-					last_position = pos;
-				
-					if (pos > config.nav.minor_width) {
-						config.nav.minor_width = pos;
-					}
-					
-					if (pos < config.nav.minor_left) {
-						config.nav.minor_left = pos;
-					}
-					
-				}
-				
-				if (_animation.animate) {
-					VMM.Lib.animate(_interval, config.duration/2, config.ease, {opacity: _animation.opacity, left: _animation.pos});
-				} else {
-					VMM.Lib.css(_interval, "opacity", _animation.opacity);
-					VMM.Lib.css(_interval, "left", pos);
-				}
-			}
-			
-			config.nav.constraint.right_min = -(config.nav.minor_width)+(config.width);
-			config.nav.constraint.right = config.nav.constraint.right_min + (config.width/2);
-			
-			VMM.Lib.css($timeintervalminor_minor, "left", config.nav.minor_left - (config.width)/2);
-			VMM.Lib.width($timeintervalminor_minor, (config.nav.minor_width)+(config.width) + Math.abs(config.nav.minor_left) );
-			
-		}
-		
-		/* Interval Elements
-		================================================== */
-		function createIntervalElements(_interval, _array, _element_parent) {
-			
-			var inc_time			= 0,
-				_first_run			= true,
-				_last_pos			= 0,
-				_largest_pos		= 0,
-				_timezone_offset,
-				_first_date,
-				_last_date,
-				int_number			= Math.ceil(_interval.number) + 2,
-				firefox = {
-					flag:			false,
-					offset:			0
-				},
-				i					= 0;
-			
-			VMM.attachElement(_element_parent, "");
-			
-			_interval.date = new Date(data[0].startdate.getFullYear(), 0, 1, 0,0,0);
-			_timezone_offset = _interval.date.getTimezoneOffset();
-			
-			for(i = 0; i < int_number; i++) {
-				trace(_interval.type);
-				var _is_year			= false,
-					int_obj = {
-						element: 		VMM.appendAndGetElement(_element_parent, "<div>", _interval.classname),
-						date: 			new Date(data[0].startdate.getFullYear(), 0, 1, 0,0,0),
-						visible: 		false,
-						date_string:	"",
-						type: 			_interval.interval_type,
-						relative_pos:	0,
-						is_detached:	false,
-						animation: {
-							animate:	false,
-							pos:		"",
-							opacity:	"100"
-						
-						}
-					};
-				
-				if (_interval.type == "eon") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 500000000) * 500000000;
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 500000000));
-					_is_year = true;
-				} else if (_interval.type == "era") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 100000000) * 100000000;
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 100000000));
-					_is_year = true;
-				} else if (_interval.type == "epoch") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 10000000) * 10000000
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 10000000));
-					_is_year = true;
-				} else if (_interval.type == "age") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 1000000) * 1000000
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 1000000));
-					_is_year = true;
-				} else if (_interval.type == "millenium") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 1000) * 1000;
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 1000));
-					_is_year = true;
-				} else if (_interval.type == "century") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 100) * 100
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 100));
-					_is_year = true;
-				} else if (_interval.type == "decade") {
-					if (_first_run) {
-						_first_date = Math.floor(data[0].startdate.getFullYear() / 10) * 10;
-					}
-					int_obj.date.setFullYear(_first_date + (inc_time * 10));
-					_is_year = true;
-				} else if (_interval.type == "year") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getFullYear();
-					}
-					int_obj.date.setFullYear(_first_date + inc_time);
-					_is_year = true;
-				} else if (_interval.type == "month") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getMonth();
-					}
-					int_obj.date.setMonth(_first_date + inc_time);
-				} else if (_interval.type == "week") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getMonth();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(_first_date + (inc_time * 7) );
-				} else if (_interval.type == "day") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getDate();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(_first_date + inc_time);
-				} else if (_interval.type == "hour") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getHours();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(data[0].startdate.getDate());
-					int_obj.date.setHours(_first_date + inc_time);
-				} else if (_interval.type == "minute") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getMinutes();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(data[0].startdate.getDate());
-					int_obj.date.setHours(data[0].startdate.getHours());
-					int_obj.date.setMinutes(_first_date + inc_time);
-				} else if (_interval.type == "second") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getSeconds();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(data[0].startdate.getDate());
-					int_obj.date.setHours(data[0].startdate.getHours());
-					int_obj.date.setMinutes(data[0].startdate.getMinutes());
-					int_obj.date.setSeconds(_first_date + inc_time);
-				}	else if (_interval.type == "millisecond") {
-					if (_first_run) {
-						_first_date = data[0].startdate.getMilliseconds();
-					}
-					int_obj.date.setMonth(data[0].startdate.getMonth());
-					int_obj.date.setDate(data[0].startdate.getDate());
-					int_obj.date.setHours(data[0].startdate.getHours());
-					int_obj.date.setMinutes(data[0].startdate.getMinutes());
-					int_obj.date.setSeconds(data[0].startdate.getSeconds());
-					int_obj.date.setMilliseconds(_first_date + inc_time);
-				}
-				
-				// FIX WEIRD FIREFOX BUG FOR GMT TIME FORMATTING
-				if (VMM.Browser.browser == "Firefox") {
-					if (int_obj.date.getFullYear() == "1970" && int_obj.date.getTimezoneOffset() != _timezone_offset) {
-						
-						trace("FIREFOX 1970 TIMEZONE OFFSET " + int_obj.date.getTimezoneOffset() + " SHOULD BE " + _timezone_offset);
-						trace(_interval.type + " " + _interval.date);
-						
-						// try and fix firefox bug, if not the flag will catch it
-						firefox.offset = (int_obj.date.getTimezoneOffset()/60);
-						firefox.flag = true;
-						int_obj.date.setHours(int_obj.date.getHours() + firefox.offset );
-						
-					} else if (firefox.flag) {
-						// catch the bug the second time around
-						firefox.flag = false;
-						int_obj.date.setHours(int_obj.date.getHours() + firefox.offset );
-						if (_is_year) {
-							firefox.flag = true;
-						}
-					}
-					
-				}
-				
-				if (_is_year) {
-					if ( int_obj.date.getFullYear() < 0 ) {
-						int_obj.date_string = 	Math.abs( int_obj.date.getFullYear() ).toString() + " B.C.";
-					} else {
-						int_obj.date_string = int_obj.date.getFullYear();
-					}
-				} else {
-					int_obj.date_string = VMM.Date.prettyDate(int_obj.date, true);
-				}
-				
-				// Increment Time
-				inc_time = inc_time + 1;
-				
-				// No longer first run
-				_first_run = false;
-				
-				int_obj.relative_pos = positionRelative(interval, int_obj.date);
-				_last_pos = int_obj.relative_pos.begin;
-				if (int_obj.relative_pos.begin > _largest_pos) {
-					_largest_pos = int_obj.relative_pos.begin;
-				}
-				
-				// Add the time string to the element and position it.
-				VMM.appendElement(int_obj.element, int_obj.date_string);
-				VMM.Lib.css(int_obj.element, "text-indent", -(VMM.Lib.width(int_obj.element)/2));
-				VMM.Lib.css(int_obj.element, "opacity", "0");
-				
-				// add the interval element to the array
-				_array.push(int_obj);
-				
-			}
-			
-			VMM.Lib.width($timeintervalminor_minor, _largest_pos);
-			
-			positionInterval(_element_parent, _array);
-			
-			
-			
-		}
-		
-		/* BUILD
-		================================================== */
-		function build() {
-			var i	= 0,
-				j	= 0;
-				
-			VMM.attachElement(layout, "");
-			
-			$timenav					= VMM.appendAndGetElement(layout, "<div>", "timenav");
-			$content					= VMM.appendAndGetElement($timenav, "<div>", "content");
-			$time						= VMM.appendAndGetElement($timenav, "<div>", "time");
-			$timeintervalminor			= VMM.appendAndGetElement($time, "<div>", "time-interval-minor");
-			$timeintervalminor_minor	= VMM.appendAndGetElement($timeintervalminor, "<div>", "minor");
-			$timeintervalmajor			= VMM.appendAndGetElement($time, "<div>", "time-interval-major");
-			$timeinterval				= VMM.appendAndGetElement($time, "<div>", "time-interval");
-			$timebackground				= VMM.appendAndGetElement(layout, "<div>", "timenav-background");
-			$timenavline				= VMM.appendAndGetElement($timebackground, "<div>", "timenav-line");
-			$timenavindicator			= VMM.appendAndGetElement($timebackground, "<div>", "timenav-indicator");
-			$timeintervalbackground		= VMM.appendAndGetElement($timebackground, "<div>", "timenav-interval-background", "<div class='top-highlight'></div>");
-			$toolbar					= VMM.appendAndGetElement(layout, "<div>", "vco-toolbar");
-			
-			
-			buildInterval();
-			buildMarkers();
-			buildEras();
-			calculateMultiplier();
-			positionMarkers(false);
-			positionEras();
-			
-			positionInterval($timeinterval, interval_array, false, true);
-			positionInterval($timeintervalmajor, interval_major_array);
-			
-			
-			if (config.start_page) {
-				$backhome = VMM.appendAndGetElement($toolbar, "<div>", "back-home", "<div class='icon'></div>");
-				VMM.bindEvent(".back-home", onBackHome, "click");
-				VMM.Lib.attribute($backhome, "title", VMM.master_config.language.messages.return_to_title);
-				VMM.Lib.attribute($backhome, "rel", "timeline-tooltip");
-				
-			}
-			
-			
-			// MAKE TIMELINE DRAGGABLE/TOUCHABLE
-			$dragslide = new VMM.DragSlider;
-			$dragslide.createPanel(layout, $timenav, config.nav.constraint, config.touch);
-			
-			
-			
-			if (config.touch && config.start_page) {
-				VMM.Lib.addClass($toolbar, "touch");
-				VMM.Lib.css($toolbar, "top", 55);
-				VMM.Lib.css($toolbar, "left", 10);
-			} else {
-				if (config.start_page) {
-					VMM.Lib.css($toolbar, "top", 27);
-				}
-				$zoomin		= VMM.appendAndGetElement($toolbar, "<div>", "zoom-in", "<div class='icon'></div>");
-				$zoomout	= VMM.appendAndGetElement($toolbar, "<div>", "zoom-out", "<div class='icon'></div>");
-				// ZOOM EVENTS
-				VMM.bindEvent($zoomin, onZoomIn, "click");
-				VMM.bindEvent($zoomout, onZoomOut, "click");
-				// TOOLTIP
-				VMM.Lib.attribute($zoomin, "title", VMM.master_config.language.messages.expand_timeline);
-				VMM.Lib.attribute($zoomin, "rel", "timeline-tooltip");
-				VMM.Lib.attribute($zoomout, "title", VMM.master_config.language.messages.contract_timeline);
-				VMM.Lib.attribute($zoomout, "rel", "timeline-tooltip");
-				$toolbar.tooltip({selector: "div[rel=timeline-tooltip]", placement: "right"});
-				
-				
-				// MOUSE EVENTS
-				VMM.bindEvent(layout, onMouseScroll, 'DOMMouseScroll');
-				VMM.bindEvent(layout, onMouseScroll, 'mousewheel');
-			}
-			
-			
-			
-			// USER CONFIGURABLE ADJUSTMENT TO DEFAULT ZOOM
-			if (config.nav.zoom.adjust != 0) {
-				if (config.nav.zoom.adjust < 0) {
-					for(i = 0; i < Math.abs(config.nav.zoom.adjust); i++) {
-						onZoomOut();
-					}
-				} else {
-					for(j = 0; j < config.nav.zoom.adjust; j++) {
-						onZoomIn();
-					}
-				}
-			}
-			
-			//VMM.fireEvent(layout, "LOADED");
-			_active = true;
-			
-			reSize(true);
-			VMM.fireEvent(layout, "LOADED");
-			
-		};
-		
-		function buildInterval() {
-			var i	= 0,
-				j	= 0;
-			// CALCULATE INTERVAL
-			timespan = getDateFractions((data[data.length - 1].enddate) - (data[0].startdate), true);
-			trace(timespan);
-			calculateInterval();
-
-			/* DETERMINE DEFAULT INTERVAL TYPE
-				millenium, ages, epoch, era and eon are not optimized yet. They may never be.
-			================================================== */
-			/*
-			if (timespan.eons				>		data.length / config.nav.density) {
-				interval					=		interval_calc.eon;
-				interval_major				=		interval_calc.eon;
-				interval_macro				=		interval_calc.era;
-			} else if (timespan.eras		>		data.length / config.nav.density) {
-				interval					=		interval_calc.era;
-				interval_major				=		interval_calc.eon;
-				interval_macro				=		interval_calc.epoch;
-			} else if (timespan.epochs		>		data.length / config.nav.density) {
-				interval					=		interval_calc.epoch;
-				interval_major				=		interval_calc.era;
-				interval_macro				=		interval_calc.age;
-			} else if (timespan.ages		>		data.length / config.nav.density) {
-				interval					=		interval_calc.ages;
-				interval_major				=		interval_calc.epoch;
-				interval_macro				=		interval_calc.millenium;
-			} else if (timespan.milleniums			>		data.length / config.nav.density) {
-				interval					=		interval_calc.millenium;
-				interval_major				=		interval_calc.age;
-				interval_macro				=		interval_calc.century;
-			} else 
-			*/
-			if (timespan.centuries			>		data.length / config.nav.density) {
-				interval					=		interval_calc.century;
-				interval_major				=		interval_calc.millenium;
-				interval_macro				=		interval_calc.decade;
-			} else if (timespan.decades		>		data.length / config.nav.density) {
-				interval					=		interval_calc.decade;
-				interval_major				=		interval_calc.century;
-				interval_macro				=		interval_calc.year;
-			} else if (timespan.years		>		data.length / config.nav.density) {	
-				interval					=		interval_calc.year;
-				interval_major				=		interval_calc.decade;
-				interval_macro				=		interval_calc.month;
-			} else if (timespan.months		>		data.length / config.nav.density) {
-				interval					=		interval_calc.month;
-				interval_major				=		interval_calc.year;
-				interval_macro				=		interval_calc.day;
-			} else if (timespan.days		>		data.length / config.nav.density) {
-				interval					=		interval_calc.day;
-				interval_major				=		interval_calc.month;
-				interval_macro				=		interval_calc.hour;
-			} else if (timespan.hours		>		data.length / config.nav.density) {
-				interval					=		interval_calc.hour;
-				interval_major				=		interval_calc.day;
-				interval_macro				=		interval_calc.minute;
-			} else if (timespan.minutes		>		data.length / config.nav.density) {
-				interval					=		interval_calc.minute;
-				interval_major				=		interval_calc.hour;
-				interval_macro				=		interval_calc.second;
-			} else if (timespan.seconds		>		data.length / config.nav.density) {
-				interval					=		interval_calc.second;
-				interval_major				=		interval_calc.minute;
-				interval_macro				=		interval_calc.second;
-			} else {
-				trace("NO IDEA WHAT THE TYPE SHOULD BE");
-				interval					=		interval_calc.day;
-				interval_major				=		interval_calc.month;
-				interval_macro				=		interval_calc.hour;
-			}
-			
-			trace("INTERVAL TYPE: " + interval.type);
-			trace("INTERVAL MAJOR TYPE: " + interval_major.type);
-			
-			createIntervalElements(interval, interval_array, $timeinterval);
-			createIntervalElements(interval_major, interval_major_array, $timeintervalmajor);
-			
-			// Cleanup duplicate interval elements between normal and major
-			for(i = 0; i < interval_array.length; i++) {
-				for(j = 0; j < interval_major_array.length; j++) {
-					if (interval_array[i].date_string == interval_major_array[j].date_string) {
-						VMM.attachElement(interval_array[i].element, "");
-					}
-				}
-			}
-		}
-		
-		function buildMarkers() {
-			
-			var row			= 2,
-				lpos		= 0,
-				row_depth	= 0,
-				i			= 0,
-				k			= 0,
-				l			= 0;
-				
-				
-			markers			= [];
-			era_markers		= [];
-			
-			for(i = 0; i < data.length; i++) {
-				
-				var _marker,
-					_marker_flag,
-					_marker_content,
-					_marker_dot,
-					_marker_line,
-					_marker_line_event,
-					_marker_obj,
-					_marker_title		= "",
-					has_title			= false;
-				
-				
-				_marker					= VMM.appendAndGetElement($content, "<div>", "marker");
-				_marker_flag			= VMM.appendAndGetElement(_marker, "<div>", "flag");
-				_marker_content			= VMM.appendAndGetElement(_marker_flag, "<div>", "flag-content");
-				_marker_dot				= VMM.appendAndGetElement(_marker, "<div>", "dot");
-				_marker_line			= VMM.appendAndGetElement(_marker, "<div>", "line");
-				_marker_line_event		= VMM.appendAndGetElement(_marker_line, "<div>", "event-line");
-				_marker_relative_pos	= positionRelative(interval, data[i].startdate, data[i].enddate);
-				_marker_thumb			= "";
-				
-				// THUMBNAIL
-				if (data[i].asset != null && data[i].asset != "") {
-					VMM.appendElement(_marker_content, VMM.MediaElement.thumbnail(data[i].asset, 24, 24, data[i].uniqueid));
-				} else {
-					VMM.appendElement(_marker_content, "<div style='margin-right:7px;height:50px;width:2px;float:left;'></div>");
-				}
-				
-				// ADD DATE AND TITLE
-				if (data[i].title == "" || data[i].title == " " ) {
-					trace("TITLE NOTHING")
-					if (typeof data[i].slug != 'undefined' && data[i].slug != "") {
-						trace("SLUG")
-						_marker_title = VMM.Util.untagify(data[i].slug);
-						has_title = true;
-					} else {
-						var m = VMM.MediaType(data[i].asset.media);
-						if (m.type == "quote" || m.type == "unknown") {
-							_marker_title = VMM.Util.untagify(m.id);
-							has_title = true;
-						} else {
-							has_title = false;
-						}
-					}
-				} else if (data[i].title != "" || data[i].title != " ") {
-					trace(data[i].title)
-					_marker_title = VMM.Util.untagify(data[i].title);
-					has_title = true;
-				} else {
-					trace("TITLE SLUG NOT FOUND " + data[i].slug)
-				}
-				
-				if (has_title) {
-					VMM.appendElement(_marker_content, "<h3>" + _marker_title + "</h3>");
-				} else {
-					VMM.appendElement(_marker_content, "<h3>" + _marker_title + "</h3>");
-					VMM.appendElement(_marker_content, "<h3 id='marker_content_" + data[i].uniqueid + "'>" + _marker_title + "</h3>");
-				}
-				
-				// ADD ID
-				VMM.Lib.attr(_marker, "id", ( "marker_" + data[i].uniqueid).toString() );
-				
-				// MARKER CLICK
-				VMM.bindEvent(_marker_flag, onMarkerClick, "", {number: i});
-				VMM.bindEvent(_marker_flag, onMarkerHover, "mouseenter mouseleave", {number: i, elem:_marker_flag});
-				
-				_marker_obj = {
-					marker: 			_marker,
-					flag: 				_marker_flag,
-					lineevent: 			_marker_line_event,
-					type: 				"marker",
-					full:				true,
-					relative_pos:		_marker_relative_pos,
-					tag:				data[i].tag,
-					pos_left:			0
-				};
-				
-				
-				if (data[i].type == "start") {
-					trace("BUILD MARKER HAS START PAGE");
-					config.start_page = true;
-					_marker_obj.type = "start";
-				}
-				
-				if (data[i].type == "storify") {
-					_marker_obj.type = "storify";
-				}
-				
-				
-				if (data[i].tag) {
-					tags.push(data[i].tag);
-				}
-				
-				markers.push(_marker_obj);
-				
-				
-				
-			}
-			
-			// CREATE TAGS
-			tags = VMM.Util.deDupeArray(tags);
-			if (tags.length > 3) {
-				config.nav.rows.current = config.nav.rows.half;
-			} else {
-				config.nav.rows.current = config.nav.rows.full;
-			}
-			for(k = 0; k < tags.length; k++) {
-				if (k < config.nav.rows.current.length) {
-					var tag_element = VMM.appendAndGetElement($timebackground, "<div>", "timenav-tag");
-					VMM.Lib.addClass(tag_element, "timenav-tag-row-" + (k+1));
-					if (tags.length > 3) {
-						VMM.Lib.addClass(tag_element, "timenav-tag-size-half");
-					} else {
-						VMM.Lib.addClass(tag_element, "timenav-tag-size-full");
-					}
-					VMM.appendElement(tag_element, "<div><h3>" + tags[k] + "</h3></div>");
-				}
-				
-			}
-			
-			// RESIZE FLAGS IF NEEDED
-			if (tags.length > 3) {
-				for(l = 0; l < markers.length; l++) {
-					VMM.Lib.addClass(markers[l].flag, "flag-small");
-					markers[l].full = false;
-				}
-			}
-
-			
-		}
-		
-		function buildEras() {
-			var number_of_colors	= 6,
-				current_color		= 0,
-				j					= 0;
-			// CREATE ERAS
-			for(j = 0; j < eras.length; j++) {
-				var era = {
-						content: 			VMM.appendAndGetElement($content, "<div>", "era"),
-						text_content: 		VMM.appendAndGetElement($timeinterval, "<div>", "era"),
-						startdate: 			VMM.Date.parse(eras[j].startDate),
-						enddate: 			VMM.Date.parse(eras[j].endDate),
-						title: 				eras[j].headline,
-						uniqueid: 			VMM.Util.unique_ID(6),
-						tag:				"",
-						relative_pos:	 	""
-					},
-					st						= VMM.Date.prettyDate(era.startdate),
-					en						= VMM.Date.prettyDate(era.enddate),
-					era_text				= "<div>&nbsp;</div>";
-					
-				if (typeof eras[j].tag != "undefined") {
-					era.tag = eras[j].tag;
-				}
-				
-				era.relative_pos = positionRelative(interval, era.startdate, era.enddate);
-				
-				VMM.Lib.attr(era.content, "id", era.uniqueid);
-				VMM.Lib.attr(era.text_content, "id", era.uniqueid + "_text");
-				
-				// Background Color
-				VMM.Lib.addClass(era.content, "era"+(current_color+1));
-				VMM.Lib.addClass(era.text_content, "era"+(current_color+1));
-				
-				if (current_color < number_of_colors) {
-					current_color++;
-				} else {
-					current_color = 0;
-				}
-				
-				VMM.appendElement(era.content, era_text);
-				VMM.appendElement(era.text_content, VMM.Util.unlinkify(era.title));
-				
-				era_markers.push(era);
-				
-			}
-			
-		}
-		
-	};
-	
-}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.js b/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.js
deleted file mode 100644
index 98bfa5eae8081bb66c11f6b938395ecffbf5aaf9..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/js/VMM.Timeline.js
+++ /dev/null
@@ -1,700 +0,0 @@
-/**
-	* TimelineJS
-	* Designed and built by Zach Wise at VéritéCo
-
-	* This Source Code Form is subject to the terms of the Mozilla Public
-	* License, v. 2.0. If a copy of the MPL was not distributed with this
-	* file, You can obtain one at http://mozilla.org/MPL/2.0/.
-*/  
-
-/*	* CodeKit Import
-	* http://incident57.com/codekit/
-================================================== */
-// @codekit-prepend "VMM.Timeline.License.js";
-
-// @codekit-prepend "Core/VMM.StoryJS.js";
-
-// @codekit-append "VMM.Timeline.TimeNav.js";
-// @codekit-append "VMM.Timeline.DataObj.js";
-
-
-/* Timeline
-================================================== */
-
-if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
-	
-	VMM.Timeline = function(_timeline_id, w, h) {
-		
-		var $timeline,
-			$container,
-			$feature,
-			$feedback,
-			$slider,
-			$navigation,
-			slider,
-			timenav,
-			version		= "2.x",
-			timeline_id	= "#timelinejs",
-			events		= {},
-			data		= {},
-			_dates		= [],
-			config		= {},
-			has_width	= false,
-			has_height	= false,
-			ie7			= false,
-			is_moving	= false;
-		
-
-		if (type.of(_timeline_id) == "string") {
-			if (_timeline_id.match("#")) {
-				timeline_id	= _timeline_id;
-			} else {
-				timeline_id	= "#" + _timeline_id;
-			}
-		} else {
-			timeline_id		= "#timelinejs";
-		}
-		
-		
-		/* CONFIG
-		================================================== */
-		config = {
-			embed:					false,
-			events: {
-				data_ready:			"DATAREADY",
-				messege:			"MESSEGE",
-				headline:			"HEADLINE",
-				slide_change:		"SLIDE_CHANGE",
-				resize:				"resize"
-			},
-			id: 					timeline_id,
-			source:					"nothing",
-			type: 					"timeline",
-			touch:					false,
-			orientation: 			"normal", 
-			maptype: 				"toner",
-			version: 				"2.x", 
-			preload:				4,
-			current_slide:			0,
-			hash_bookmark:			false,
-			start_at_end: 			false,
-			start_at_slide:			0,
-			start_zoom_adjust:		0,
-			start_page: 			false,
-			api_keys: {
-				google:				"",
-				flickr:				"",
-				twitter:			""
-			},
-			interval: 				10,
-			something: 				0,
-			width: 					960,
-			height: 				540,
-			spacing: 				15,
-			loaded: {
-				slider: 			false, 
-				timenav: 			false, 
-				percentloaded: 		0
-			},
-			nav: {
-				start_page: 		false,
-				interval_width: 	200,
-				density: 			4,
-				minor_width: 		0,
-				minor_left:			0,
-				constraint: {
-					left:			0,
-					right:			0,
-					right_min:		0,
-					right_max:		0
-				},
-				zoom: {
-					adjust:			0
-				},
-				multiplier: {
-					current: 		6,
-					min: 			.1,
-					max: 			50
-				},
-				rows: 				[1, 1, 1],
-				width: 				960,
-				height: 			200,
-				marker: {
-					width: 			150,
-					height: 		50
-				}
-			},
-			feature: {
-				width: 				960,
-				height: 			540
-			},
-			slider: {
-				width: 				720,
-				height: 			400,
-				content: {
-					width: 			720,
-					height: 		400,
-					padding: 		130,
-					padding_default:130
-				},
-				nav: {
-					width: 			100,
-					height: 		200
-				}
-			},
-			ease: 					"easeInOutExpo",
-			duration: 				1000,
-			gmap_key: 				"",
-			language: 				VMM.Language
-		};
-		
-		if ( w != null && w != "") {
-			config.width = w;
-			has_width = true;
-		} 
-
-		if ( h != null && h != "") {
-			config.height = h;
-			has_height = true;
-		}
-		
-		if(window.location.hash) {
-			 var hash					=	window.location.hash.substring(1);
-			 if (!isNaN(hash)) {
-			 	 config.current_slide	=	parseInt(hash);
-			 }
-		}
-		
-		window.onhashchange = function () {
-			var hash					=	window.location.hash.substring(1);
-			if (config.hash_bookmark) {
-				if (is_moving) {
-					goToEvent(parseInt(hash));
-				} else {
-					is_moving = false;
-				}
-			} else {
-				goToEvent(parseInt(hash));
-			}
-		}
-		
-		/* CREATE CONFIG
-		================================================== */
-		function createConfig(conf) {
-			
-			// APPLY SUPPLIED CONFIG TO TIMELINE CONFIG
-			if (typeof embed_config == 'object') {
-				timeline_config = embed_config;
-			}
-			if (typeof timeline_config == 'object') {
-				trace("HAS TIMELINE CONFIG");
-				config = VMM.Util.mergeConfig(config, timeline_config);
-			} else if (typeof conf == 'object') {
-				config = VMM.Util.mergeConfig(config, conf);
-			}
-			
-			if (VMM.Browser.device == "mobile" || VMM.Browser.device == "tablet") {
-				config.touch = true;
-			}
-			
-			config.nav.width			= config.width;
-			config.nav.height			= 200;
-			config.feature.width		= config.width;
-			config.feature.height		= config.height - config.nav.height;
-			config.nav.zoom.adjust		= parseInt(config.start_zoom_adjust, 10);
-			VMM.Timeline.Config			= config;
-			VMM.master_config.Timeline	= VMM.Timeline.Config;
-			this.events					= config.events;
-			
-			if (config.gmap_key != "") {
-				config.api_keys.google = config.gmap_key;
-			}
-			
-			trace("VERSION " + config.version);
-			version = config.version;
-		}
-		
-		/* CREATE TIMELINE STRUCTURE
-		================================================== */
-		function createStructure() {
-			// CREATE DOM STRUCTURE
-			$timeline	= VMM.getElement(timeline_id);
-			VMM.Lib.addClass($timeline, "vco-timeline");
-			VMM.Lib.addClass($timeline, "vco-storyjs");
-			
-			$container	= VMM.appendAndGetElement($timeline, "<div>", "vco-container vco-main");
-			$feature	= VMM.appendAndGetElement($container, "<div>", "vco-feature");
-			$slider		= VMM.appendAndGetElement($feature, "<div>", "vco-slider");
-			$navigation	= VMM.appendAndGetElement($container, "<div>", "vco-navigation");
-			$feedback	= VMM.appendAndGetElement($timeline, "<div>", "vco-feedback", "");
-			
-			
-			if (typeof config.language.right_to_left != 'undefined') {
-				VMM.Lib.addClass($timeline, "vco-right-to-left");
-			}
-			
-			slider		= new VMM.Slider($slider, config);
-			timenav		= new VMM.Timeline.TimeNav($navigation);
-			
-			if (!has_width) {
-				config.width = VMM.Lib.width($timeline);
-			} else {
-				VMM.Lib.width($timeline, config.width);
-			}
-
-			if (!has_height) {
-				config.height = VMM.Lib.height($timeline);
-			} else {
-				VMM.Lib.height($timeline, config.height);
-			}
-			
-			if (config.touch) {
-				VMM.Lib.addClass($timeline, "vco-touch");
-			} else {
-				VMM.Lib.addClass($timeline, "vco-notouch");
-			}
-			
-			
-		}
-		
-		/* ON EVENT
-		================================================== */
-
-		function onDataReady(e, d) {
-			trace("onDataReady");
-			data = d.timeline;
-			
-			if (type.of(data.era) != "array") {
-				data.era = [];
-			}
-			
-			buildDates();
-			
-		};
-		
-		function onDatesProcessed() {
-			build();
-		}
-		
-		function reSize() {
-			
-			updateSize();
-			
-			slider.setSize(config.feature.width, config.feature.height);
-			timenav.setSize(config.width, config.height);
-			if (orientationChange()) {
-				setViewport();
-			}
-			
-		};
-		
-		function onSliderLoaded(e) {
-			config.loaded.slider = true;
-			onComponentLoaded();
-		};
-		
-		function onComponentLoaded(e) {
-			config.loaded.percentloaded = config.loaded.percentloaded + 25;
-			
-			if (config.loaded.slider && config.loaded.timenav) {
-				hideMessege();
-			}
-		}
-		
-		function onTimeNavLoaded(e) {
-			config.loaded.timenav = true;
-			onComponentLoaded();
-		}
-		
-		function onSlideUpdate(e) {
-			is_moving = true;
-			config.current_slide = slider.getCurrentNumber();
-			setHash(config.current_slide);
-			timenav.setMarker(config.current_slide, config.ease,config.duration);
-		};
-		
-		function onMarkerUpdate(e) {
-			is_moving = true;
-			config.current_slide = timenav.getCurrentNumber();
-			setHash(config.current_slide);
-			slider.setSlide(config.current_slide);
-		};
-		
-		function goToEvent(n) {
-			if (n <= _dates.length - 1 && n >= 0) {
-				config.current_slide = n;
-				slider.setSlide(config.current_slide);
-				timenav.setMarker(config.current_slide, config.ease,config.duration);
-			} 
-		}
-		
-		function setHash(n) {
-			if (config.hash_bookmark) {
-				window.location.hash = "#" + n.toString();
-			}
-		}
-		
-		function getViewport() {
-			
-		}
-		
-		function setViewport() {
-			var viewport_content		= "",
-				viewport_orientation	= searchOrientation(window.orientation);
-			
-			if (VMM.Browser.device == "mobile") {
-				if (viewport_orientation == "portrait") {
-					//viewport_content	= "width=device-width; initial-scale=0.75, maximum-scale=0.75";
-					viewport_content	= "width=device-width; initial-scale=0.5, maximum-scale=0.5";
-				} else if (viewport_orientation == "landscape") {
-					viewport_content	= "width=device-width; initial-scale=0.5, maximum-scale=0.5";
-				} else {
-					viewport_content	= "width=device-width, initial-scale=1, maximum-scale=1.0";
-				}
-			} else if (VMM.Browser.device == "tablet") {
-				//viewport_content		= "width=device-width, initial-scale=1, maximum-scale=1.0";
-			}
-			
-			if (document.getElementById("viewport")) {
-				//VMM.Lib.attr("#viewport", "content", viewport_content);
-			} else {
-				//VMM.appendElement("head", "<meta id='viewport' name='viewport' content=" + viewport_content + "/>");
-			}
-
-		}
-		
-		/* ORIENTATION
-		================================================== */
-		function searchOrientation(orientation) {
-			var orient = "";
-			
-			if ( orientation == 0  || orientation == 180) {  
-				orient = "portrait";
-			} else if ( orientation == 90 || orientation == -90) {  
-				orient = "landscape";
-			} else {
-				orient = "normal";
-			}
-			
-			return orient;
-		}
-		
-		function orientationChange() {
-			var orientation	= searchOrientation(window.orientation);
-			
-			if (orientation == config.orientation) {
-				return false;
-			} else {
-				config.orientation = orientation;
-				return true;
-			}
-			
-		}
-		
-		
-		/* PUBLIC FUNCTIONS
-		================================================== */
-		this.init = function(c, _data) {
-			trace('INIT');
-			setViewport();
-			createConfig(c);
-			createStructure();
-			
-			if (type.of(_data) == "string") {
-				config.source	= _data;
-			}
-			
-			// LANGUAGE
-			VMM.Date.setLanguage(config.language);
-			VMM.master_config.language = config.language;
-			
-			// EXTERNAL API
-			VMM.ExternalAPI.setKeys(config.api_keys);
-			VMM.ExternalAPI.googlemaps.setMapType(config.maptype);
-			
-			// EVENTS
-			VMM.bindEvent(global, onDataReady, config.events.data_ready);
-			VMM.bindEvent(global, showMessege, config.events.messege);
-			
-			VMM.fireEvent(global, config.events.messege, config.language.messages.loading_timeline);
-			
-			/* GET DATA
-			================================================== */
-			if (VMM.Browser.browser == "Explorer" || VMM.Browser.browser == "MSIE") {
-				if ( parseInt(VMM.Browser.version, 10) <= 7 ) {
-					ie7 = true;
-				}
-			}
-			
-			if (type.of(config.source) == "string" || type.of(config.source) == "object") {
-				VMM.Timeline.DataObj.getData(config.source);
-			} else {
-				VMM.fireEvent(global, config.events.messege, "No data source provided");
-				//VMM.Timeline.DataObj.getData(VMM.getElement(timeline_id));
-			}
-			
-			
-		};
-		
-		this.iframeLoaded = function() {
-			trace("iframeLoaded");
-		};
-		
-		this.reload = function(_d) {
-			trace("Load new timeline data" + _d);
-			VMM.fireEvent(global, config.events.messege, config.language.messages.loading_timeline);
-			data = {};
-			VMM.Timeline.DataObj.getData(_d);
-			config.current_slide = 0;
-			slider.setSlide(0);
-			timenav.setMarker(0, config.ease,config.duration);
-		};
-		
-		/* DATA 
-		================================================== */
-		function getData(url) {
-			VMM.getJSON(url, function(d) {
-				data = VMM.Timeline.DataObj.getData(d);
-				VMM.fireEvent(global, config.events.data_ready);
-			});
-		};
-		
-		/* MESSEGES 
-		================================================== */
-		function showMessege(e, msg, other) {
-			trace("showMessege " + msg);
-			//VMM.attachElement($timeline, $feedback);
-			if (other) {
-				VMM.attachElement($feedback, msg);
-			} else{
-				VMM.attachElement($feedback, VMM.MediaElement.loadingmessage(msg));
-			}
-		};
-		
-		function hideMessege() {
-			VMM.Lib.animate($feedback, config.duration, config.ease*4, {"opacity": 0}, detachMessege);
-		};
-		
-		function detachMessege() {
-			VMM.Lib.detach($feedback);
-		}
-		
-		/* BUILD DISPLAY
-		================================================== */
-		function build() {
-			
-			// START AT SLIDE
-			if (parseInt(config.start_at_slide) > 0 && config.current_slide == 0) {
-				config.current_slide = parseInt(config.start_at_slide); 
-			}
-			// START AT END
-			if (config.start_at_end && config.current_slide == 0) {
-				config.current_slide = _dates.length - 1;
-			}
-			
-			
-			// IE7
-			if (ie7) {
-				ie7 = true;
-				VMM.fireEvent(global, config.events.messege, "Internet Explorer " + VMM.Browser.version + " is not supported by TimelineJS. Please update your browser to version 8 or higher.");
-			} else {
-				
-				detachMessege();
-				reSize();
-				
-				// EVENT LISTENERS
-				VMM.bindEvent($slider, onSliderLoaded, "LOADED");
-				VMM.bindEvent($navigation, onTimeNavLoaded, "LOADED");
-				VMM.bindEvent($slider, onSlideUpdate, "UPDATE");
-				VMM.bindEvent($navigation, onMarkerUpdate, "UPDATE");
-				
-				// INITIALIZE COMPONENTS
-				slider.init(_dates);
-				timenav.init(_dates, data.era);
-			
-				// RESIZE EVENT LISTENERS
-				VMM.bindEvent(global, reSize, config.events.resize);
-				
-				
-				
-			}
-			
-			
-		};
-		
-		function updateSize() {
-			trace("UPDATE SIZE");
-			config.width = VMM.Lib.width($timeline);
-			config.height = VMM.Lib.height($timeline);
-			
-			config.nav.width = config.width;
-			config.feature.width = config.width;
-			
-			config.feature.height = config.height - config.nav.height - 3;
-			
-			if (VMM.Browser.device == "mobile") {
-				/*
-				if (VMM.Browser.orientation == "portrait") {
-					config.feature.height	= 480;
-					config.height			= 480 + config.nav.height;
-				} else if(VMM.Browser.orientation == "landscape") {
-					config.feature.height	= 320;
-					config.height			= 320 + config.nav.height;
-				} else {
-					config.feature.height = config.height - config.nav.height - 3;
-				}
-				*/
-			}
-			
-			if (config.width < 641) {
-				VMM.Lib.addClass($timeline, "vco-skinny");
-			} else {
-				VMM.Lib.removeClass($timeline, "vco-skinny");
-			}
-			
-		};
-		
-		// BUILD DATE OBJECTS
-		function buildDates() {
-			
-			_dates = [];
-			VMM.fireEvent(global, config.events.messege, "Building Dates");
-			updateSize();
-			
-			for(var i = 0; i < data.date.length; i++) {
-				
-				if (data.date[i].startDate != null && data.date[i].startDate != "") {
-					
-					var _date		= {},
-						do_start	= VMM.Date.parse(data.date[i].startDate, true),
-						do_end;
-						
-					_date.startdate		= do_start.date;
-					_date.precisiondate	= do_start.precision;
-					
-					if (!isNaN(_date.startdate)) {
-						
-					
-						// END DATE
-						if (data.date[i].endDate != null && data.date[i].endDate != "") {
-							_date.enddate = VMM.Date.parse(data.date[i].endDate);
-						} else {
-							_date.enddate = _date.startdate;
-						}
-						
-						_date.needs_slug = false;
-						
-						if (data.date[i].headline == "") {
-							if (data.date[i].slug != null && data.date[i].slug != "") {
-								_date.needs_slug = true;
-							}
-						}
-						
-						_date.title				= data.date[i].headline;
-						_date.headline			= data.date[i].headline;
-						_date.type				= data.date[i].type;
-						_date.date				= VMM.Date.prettyDate(_date.startdate, false, _date.precisiondate);
-						_date.asset				= data.date[i].asset;
-						_date.fulldate			= _date.startdate.getTime();
-						_date.text				= data.date[i].text;
-						_date.content			= "";
-						_date.tag				= data.date[i].tag;
-						_date.slug				= data.date[i].slug;
-						_date.uniqueid			= VMM.Util.unique_ID(7);
-						_date.classname			= data.date[i].classname;
-						
-						
-						_dates.push(_date);
-					} 
-					
-				}
-				
-			};
-			
-			/* CUSTOM SORT
-			================================================== */
-			if (data.type != "storify") {
-				_dates.sort(function(a, b){
-					return a.fulldate - b.fulldate
-				});
-			}
-			
-			/* CREATE START PAGE IF AVAILABLE
-			================================================== */
-			if (data.headline != null && data.headline != "" && data.text != null && data.text != "") {
-
-				var startpage_date,
-					do_start,
-					_date			= {},
-					td_num			= 0,
-					td;
-					
-				if (typeof data.startDate != 'undefined') {
-					do_start		= VMM.Date.parse(data.startDate, true);
-					startpage_date	= do_start.date;
-				} else {
-					startpage_date = false;
-				}
-				trace("HAS STARTPAGE");
-				trace(startpage_date);
-				
-				if (startpage_date && startpage_date < _dates[0].startdate) {
-					_date.startdate = new Date(startpage_date);
-				} else {
-					td = _dates[0].startdate;
-					_date.startdate = new Date(_dates[0].startdate);
-				
-					if (td.getMonth() === 0 && td.getDate() == 1 && td.getHours() === 0 && td.getMinutes() === 0 ) {
-						// trace("YEAR ONLY");
-						_date.startdate.setFullYear(td.getFullYear() - 1);
-					} else if (td.getDate() <= 1 && td.getHours() === 0 && td.getMinutes() === 0) {
-						// trace("YEAR MONTH");
-						_date.startdate.setMonth(td.getMonth() - 1);
-					} else if (td.getHours() === 0 && td.getMinutes() === 0) {
-						// trace("YEAR MONTH DAY");
-						_date.startdate.setDate(td.getDate() - 1);
-					} else  if (td.getMinutes() === 0) {
-						// trace("YEAR MONTH DAY HOUR");
-						_date.startdate.setHours(td.getHours() - 1);
-					} else {
-						// trace("YEAR MONTH DAY HOUR MINUTE");
-						_date.startdate.setMinutes(td.getMinutes() - 1);
-					}
-				}
-				
-				_date.uniqueid		= VMM.Util.unique_ID(7);
-				_date.enddate		= _date.startdate;
-				_date.precisiondate	= do_start.precision;
-				_date.title			= data.headline;
-				_date.headline		= data.headline;
-				_date.text			= data.text;
-				_date.type			= "start";
-				_date.date			= VMM.Date.prettyDate(data.startDate, false, _date.precisiondate);
-				_date.asset			= data.asset;
-				_date.slug			= false;
-				_date.needs_slug	= false;
-				_date.fulldate		= _date.startdate.getTime();
-				
-				if (config.embed) {
-					VMM.fireEvent(global, config.events.headline, _date.headline);
-				}
-				
-				_dates.unshift(_date);
-			}
-			
-			/* CUSTOM SORT
-			================================================== */
-			if (data.type != "storify") {
-				_dates.sort(function(a, b){
-					return a.fulldate - b.fulldate
-				});
-			}
-			
-			onDatesProcessed();
-		}
-		
-	};
-
-	VMM.Timeline.Config = {};
-	
-};
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/less/Theme/Dark.less b/public/opac/TimelineJS-2.25/source/less/Theme/Dark.less
deleted file mode 100644
index 926e0f4738e9955a2afbb41a4a7bb8a2ad896dc4..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/less/Theme/Dark.less
+++ /dev/null
@@ -1,48 +0,0 @@
-/*!
-	TIMELINE CSS
-	
-	Designed and built by Zach Wise at VeriteCo
-	
-	This Source Code Form is subject to the terms of the Mozilla Public
-	License, v. 2.0. If a copy of the MPL was not distributed with this
-	file, You can obtain one at http://mozilla.org/MPL/2.0/.
-	
-*/
-
-/*	THEME DARK
------------------------------------------------------ */
-	//GFX
-	.base-sprite() {
-		background-image: url(themes/timeline-dark.png?v3.4);
-	}
-	.base-sprite2x() {
-		background-image: url(themes/timeline-dark@2x.png?v4.3);
-	}
-	.loading-sprite() {
-		background-image: url(themes/loading.gif?v3.4);
-	}
-	.loading-sprite2x() {
-		background-image: url(themes/loading@2x.gif?v3.4);
-	}
-	
-	// COLORS
-	@color-base:					#1A1A1A;
-	@color-line: 					#333; //#414141;
-	@color-line-hover: 				#666;
-	@color-dark:					#FFF;
-	@color-dark-second: 			#AAA;
-	@color-dark-third: 				#AAA;
-	@color-dark-fourth: 			#999;
-	@color-dark-fifth: 				#E3E3E3;
-	@color-background-dark:			#262626;
-	// COLOR THEME
-	@color-theme:					#0BD4E3;
-	
-/*	BASE
------------------------------------------------------ */
-
-// CSS CORE
-@import "../Core/VMM.Core.less";
-
-// Timeline Specific
-@import "../VMM.Timeline.TimeNav.less";
diff --git a/public/opac/TimelineJS-2.25/source/less/VMM.Timeline.TimeNav.less b/public/opac/TimelineJS-2.25/source/less/VMM.Timeline.TimeNav.less
deleted file mode 100644
index 1257ffec8b4e8e59c452ec7b39bbbd2e43a83002..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/less/VMM.Timeline.TimeNav.less
+++ /dev/null
@@ -1,884 +0,0 @@
-/*
-	Navigation
-	UI for Navigation
-------------------------------------------------------------------------------------------- */
-
-/* HOVER ELEMENTS
-================================================== */
-.vco-notouch {
-	.vco-navigation {
-		.vco-toolbar {
-			.zoom-in:hover, .zoom-out:hover, .back-home:hover {
-				color: @color-theme;
-				cursor: pointer;
-				.opacity(100);
-			}
-		}
-		.timenav {
-			.content {
-				.marker.active:hover {
-					cursor: default;
-					.flag, .flag-small {
-						.flag-content {
-							h3 {
-								color: @color-theme;
-							}
-							h4 {
-								color:@color-nav-title;
-							}
-						}
-					}
-				}
-				.marker:hover {
-					.line {
-						z-index:24;
-						background:@color-nav-title;
-					}
-				}
-				.marker {
-					.flag:hover, .flag-small:hover {
-						cursor: pointer;
-						.flag-content {
-							h3 {
-								color:@color-dark-second;
-							}
-							h4 {
-								color:@color-nav-date;
-							}
-							.thumbnail {
-								.opacity(100);
-							}
-						}
-					}
-					.flag:hover {
-						.time-flag-active();
-					}
-					.flag-small:hover {
-						//.time-flag-small-active();
-						height:56px;
-						.time-flag-active();
-						.flag-content {
-							height:36px;
-							h3 {
-								margin-top:5px;
-							}
-						}
-						
-					}
-					.flag-small.flag-small-last:hover {
-						.time-flag-small-active();
-						height:26px;
-						.flag-content {
-							height:14px;
-							h3 {
-								margin-top:4px;
-							}
-						}
-					}
-				}
-				
-			}
-		}
-	}
-}
-.vco-timeline {
-	
-	.vco-navigation {
-		clear:both;
-		cursor:move;
-		width: 100%;
-		height:@navigation-height;
-		border-top: 1px solid @color-dark-fifth;
-		position: relative;
-		.vco-toolbar {
-			position:absolute;
-			top:45px;
-			left:0px;
-			z-index:202;
-			background-color: @color-base; 
-			border: 1px solid @color-line;
-			.box-shadow(1px 1px 0px rgba(0,0,0,.20));
-			.zoom-in, .zoom-out, .back-home {
-				font-weight: normal;
-				font-size: 10px;
-				line-height: 20px;
-				top: 0px;
-				z-index:202;
-				width: 18px;
-				height: 18px;
-				color: @color-navigation-major-time;//@color-nav-description;
-				text-align:center;
-				font-weight: bold;
-				border: 1px solid @color-base;
-				padding:5px;
-				.opacity(50);
-			}
-			.zoom-in {
-				.icon {
-					.icon-zoom-in();
-				}
-			}
-			.zoom-out {
-				.icon {
-					.icon-zoom-out();
-				}
-			}
-			.back-home {
-				.icon {
-					.icon-back-home();
-				}
-			}
-		}
-		.vco-toolbar.touch {
-			.border-radius(10px);
-			background-color: transparent;
-			.box-shadow(none);
-			.zoom-in, .zoom-out, .back-home {
-				//line-height: 48px;
-				width: 40px;
-				height: 40px;
-				padding:5px;
-				background-color: @color-base; 
-				border: 1px solid @color-line;
-				.box-shadow(1px 1px 0px rgba(0,0,0,.20));
-				.border-radius(10px);
-				.opacity(100);
-				//.buttonBackground(darken(@color-base, 5%), darken(@color-navigation-major-time, 5%));
-				//.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075)");
-			}
-
-			.zoom-in {
-				.icon {
-					.icon-touch-zoom-in();
-				}
-			}
-			.zoom-out {
-				.icon {
-					.icon-touch-zoom-out();
-				}
-			}
-			.back-home {
-				.icon {
-					.icon-touch-back-home();
-				}
-			}
-		}
-		
-		.timenav-background {
-			position:absolute;
-			cursor:move;
-			top:0px;
-			left:0px;
-			height: @navigation-content-height;
-			width:100%;
-			background-color:@color-background-dark;
-			.timenav-interval-background {
-				position:absolute;
-				top:@navigation-content-height + 1;
-				left:0px;
-				background:@color-base;
-				width:100%;
-				height:@navigation-time-height - 1;
-				.box-shadow(-1px -1px 7px rgba(0,0,0,.1));
-				.top-highlight {
-					position:absolute;
-					top:-1px;
-					left:0px;
-					z-index:30;
-					width:100%;
-					height:1px;
-					background:@color-base;
-					.opacity(50);
-					.box-shadow(1px 1px 5px rgba(0,0,0,.20));
-				}
-			}
-			.timenav-line {
-				position:absolute;
-				top: 0px;
-				left: 50%;
-				width:3px;
-				height:150px;
-				background-color: @color-theme;
-				//background-color: @color-background;
-				z-index:1;
-				.box-shadow();
-			}
-			.timenav-indicator {
-				position:absolute;
-				top: -1px;
-				left: 50%;
-				z-index:202;
-				.icon-currenttime();
-			}
-			.timenav-tag {
-				div {
-					height:@navigation-time-height;
-					display:table;
-					h3 {
-						display:table-cell;
-						vertical-align:middle;
-						padding-left:@navigation-time-height + @base-space;
-						font-size:@base-font;
-						color: darken(@color-background-dark, 10%);
-						font-weight: bold;
-						text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-					}
-					
-				}
-				
-			}
-			.timenav-tag-size-half {
-				height: @navigation-time-height/2;
-				div {
-					height:@navigation-time-height/2;
-				}
-			}
-			.timenav-tag-size-full {
-				height: @navigation-time-height;
-				div {
-					height:@navigation-time-height;
-				}
-			}
-			.timenav-tag-row-2, .timenav-tag-row-4, .timenav-tag-row-6 {
-				background: lighten(@color-background-dark, 3%); 
-			}
-			.timenav-tag-row-1, .timenav-tag-row-3, .timenav-tag-row-5 {
-				background:@color-background-dark;
-			}
-			
-		}
-		
-		.timenav {
-			position:absolute;
-			top: 0px;
-			left: -250px;
-			z-index:1;
-			.content {
-				position: relative;
-				.marker.start {
-					display:none;
-				}
-				.marker.active {
-					.dot {
-						background: @color-theme;
-						z-index:200;
-					}
-					.line {
-						z-index:199;
-						background: @color-theme;
-						width:1px;
-						.event-line {
-							background: @color-theme;
-							.opacity(75	);
-						}
-					}
-					.flag, .flag-small {
-						z-index:200;
-						.flag-content {
-							height:36px;
-							h3 {
-								color: @color-theme;
-								margin-top:5px;
-							}
-							.thumbnail {
-								.opacity(100);
-							}
-						}
-					}
-
-					
-					.flag.row1, .flag.row2, .flag.row3, .flag-small.row1, .flag-small.row2, .flag-small.row3 {
-						z-index:200;
-					}
-					.flag {
-						.time-flag-active();
-					}
-					.flag-small {
-						//.time-flag-active();
-						//.time-flag-small-active();
-						.time-flag-small-active();
-						height:26px;
-						.flag-content {
-							height:14px;
-							h3 {
-								margin-top:4px;
-							}
-						}
-						
-					}
-				}
-				.marker {
-					position:absolute;
-					top: 0px;
-					left: 150px;
-					display: block;
-					.dot {
-						position:absolute;
-						top: 150px;
-						left: 0px;
-						display: block;
-						width: @navigation-marker-height;
-						height: @navigation-marker-height;
-						background: @color-dark-second;
-						.border-radius((@navigation-marker-height)/2);
-						z-index:21;
-					}
-					.line {
-						position:absolute;
-						top: 0px;
-						left: (@navigation-marker-height/2);
-						width:1px;
-						height:150px;
-						background-color: @color-line;
-						background-color: fade(@color-line, 50%);
-						
-						.box-shadow(1px 0 0 fade(@color-base, 50%));
-						
-						z-index:22;
-						.event-line {
-							position:absolute;
-							z-index:22;
-							left:0px;
-							height:1px;
-							width:1px;
-							background: @color-theme;
-							.opacity(15);
-						}
-					}
-					.flag, .flag-small {
-						position:absolute;
-						top: 15px;
-						left: (@navigation-marker-height/2);
-						padding:0px;
-						display: block;
-						z-index:23;
-						width:153px;
-						.flag-content {
-							padding: 0px 7px 2px 6px;
-							overflow:hidden;
-							h3 {
-								font-weight: bold;
-								font-size: @base-font;
-								line-height: @base-line;
-								font-size: 11px;
-								line-height:11px;
-								color:@color-nav-title;
-								
-								margin-bottom:2px;
-								small {
-									display:none;
-								}
-							}
-							h4 {
-								display:none;
-								font-weight: normal;
-								font-size: @base-font;
-								line-height: @base-line;
-								margin-top:5px;
-								font-size: 10px;
-								line-height:10px;
-								color:@color-nav-date;
-								small {
-									display:none;
-								}
-							}
-							.thumbnail {
-								margin-bottom: 15px;
-								margin-right: 3px;
-								.opacity(50);
-								img {
-									width:@base-thumb - 2;
-									height:@base-thumb - 2;
-									max-height:none;
-									max-width:none;
-									border:0;
-									border: 1px solid @color-nav-title;
-									padding:0;
-									margin:0;
-								}
-							}
-						}
-					}
-					.flag {
-						height:56px;
-						.time-flag();
-						.flag-content {
-							height:36px;
-							h3 {
-								margin-top:5px;
-							}
-						}
-					}
-					
-					
-					.flag-small {
-						height:26px;
-						.time-flag-small();
-						.flag-content {
-							height:14px;
-							h3 {
-								margin-top:4px;
-							}
-							.thumbnail {
-								width:16px;
-								height:10px;
-								margin-right:1px;
-								margin-top:6px;
-							}
-							.thumbnail.thumb-plaintext {
-								.icon-plaintext-small();
-							}
-							.thumbnail.thumb-quote {
-								.icon-quote-small();
-							}
-							.thumbnail.thumb-document {
-								.icon-document-small();
-							}
-							.thumbnail.thumb-photo {
-								.icon-photo-small();
-							}
-							.thumbnail.thumb-twitter {
-								.icon-twitter-small();
-							}
-							.thumbnail.thumb-vimeo {
-								.icon-vimeo-small();
-							}
-							.thumbnail.thumb-vine {
-								.icon-vine-small();
-							}
-							.thumbnail.thumb-youtube {
-								.icon-youtube-small();
-							}
-							.thumbnail.thumb-video {
-								.icon-video-small();
-							}
-							.thumbnail.thumb-audio {
-								.icon-audio-small();
-							}
-							.thumbnail.thumb-map {
-								.icon-mappin-small();
-							}
-							.thumbnail.thumb-website {
-								.icon-website-small();
-							}
-							.thumbnail.thumb-link {
-								.icon-link-small();
-							}
-							.thumbnail.thumb-wikipedia {
-								.icon-wikipedia-small();
-							}
-							.thumbnail.thumb-storify {
-								.icon-storify-small();
-							}
-							.thumbnail.thumb-googleplus {
-								.icon-googleplus-small();
-							}
-							thumbnail.thumb-instagram {
-								.icon-instagram-small();
-							}
-						}
-						
-					}
-					
-					
-					.flag.row1 {
-						z-index:25;
-						top:48px;
-					}
-					.flag.row2 {
-						z-index:24;
-						top:96px;
-					}
-					.flag.row3 {
-						z-index:23;
-						top:1px;
-					}
-					.flag-small.row1 {
-						z-index:28;
-						top:24px;
-					}
-					.flag-small.row2 {
-						z-index:27;
-						top:48px;
-					}
-					.flag-small.row3 {
-						z-index:26;
-						top:72px;
-					}
-					.flag-small.row4 {
-						z-index:25;
-						top:96px;
-					}
-					.flag-small.row5 {
-						z-index:24;
-						top:120px;
-					}
-					.flag-small.row6 {
-						z-index:23;
-						top:1px;
-					}
-					.flag.zFront, .flag-small.zFront {
-						z-index:201;
-					}
-					
-				}
-			
-				.era {
-					position:absolute;
-					top: 138px;
-					left: 150px;
-					height:12px;
-					display: block;
-					overflow:hidden;
-					div {
-						height:@navigation-time-height;
-						//display:table;
-						width:100%;
-						height:100%;
-						//background: @color-theme;
-						line-height:0px;
-						//.opacity(10);
-						//background-color: fade(@color-theme, 10%);
-						background: @color-background-dark; // IE8
-						background: fade(@color-background-dark, 33%);
-						h3, h4 {
-							//display:table-cell;
-							//vertical-align:bottom;
-							//text-align:center;
-							position: absolute;
-							bottom: 1px;
-							padding-left:@base-space;
-							font-size:@base-font;
-							font-weight: bold;
-							//text-transform: uppercase;
-							color: fade(@color-theme, 35%);
-							text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-						}
-					
-					}
-				}
-				.era1 {
-					div {
-						background: @color-theme-tetrad1; // IE8
-						.opacity(10);
-						//background: fade(@color-theme-tetrad1, 10%);
-						border-left: 1px solid fade(@color-theme-tetrad1, 10%);
-						border-right: 1px solid fade(lighten(@color-theme-tetrad1, 10%), 5%);
-						h3, h4 {
-							color: fade(@color-theme-tetrad1, 35%);
-							text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-						}
-					}
-				}
-				.era2 {
-					div {
-						background: @color-theme-tetrad2; // IE8
-						.opacity(10);
-						//background: fade(@color-theme-tetrad2, 10%);
-						border-left: 1px solid fade(@color-theme-tetrad2, 10%);
-						border-right: 1px solid fade(lighten(@color-theme-tetrad2, 10%), 5%);
-						h3, h4 {
-							color: fade(@color-theme-tetrad2, 35%);
-							text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-						}
-					}
-				}
-				.era3 {
-					div {
-						background: @color-theme-tetrad3; // IE8
-						.opacity(10);
-						//background: fade(@color-theme-tetrad3, 10%);
-						border-left: 1px solid fade(@color-theme-tetrad3, 10%);
-						border-right: 1px solid fade(lighten(@color-theme-tetrad3, 10%), 5%);
-						h3, h4 {
-							color: fade(@color-theme-tetrad3, 35%);
-							text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-						}
-					}
-				}
-				.era4 {
-					div {
-						background: @color-theme-tetrad4; // IE8
-						.opacity(10);
-						//background: fade(@color-theme-tetrad4, 10%);
-						border-left: 1px solid fade(@color-theme-tetrad4, 10%);
-						border-right: 1px solid fade(lighten(@color-theme-tetrad4, 10%), 5%);
-						h3, h4 {
-							color: fade(@color-theme-tetrad4, 35%);
-							text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-						}
-					}
-				}
-				.era5 {
-					div {
-						background: @color-theme-tetrad5; // IE8
-						.opacity(10);
-						//background: fade(@color-theme-tetrad5, 10%);
-						border-left: 1px solid fade(@color-theme-tetrad5, 10%);
-						border-right: 1px solid fade(lighten(@color-theme-tetrad5, 10%), 5%);
-						h3, h4 {
-							color: fade(@color-theme-tetrad5, 35%);
-							text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-						}
-					}
-				}
-				.era6 {
-					div {
-						background: @color-theme-tetrad6; // IE8
-						.opacity(10);
-						//background: fade(@color-theme-tetrad6, 10%);
-						border-left: 1px solid fade(@color-theme-tetrad6, 10%);
-						border-right: 1px solid fade(lighten(@color-theme-tetrad6, 10%), 5%);
-						h3, h4 {
-							color: fade(@color-theme-tetrad6, 35%);
-							text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-						}
-					}
-				}
-			}
-			
-			
-			.time {
-				position:absolute;
-				left:0px;
-				top: @navigation-content-height;
-				height:@navigation-time-height;
-				background-color:@color-background;
-				line-height: 0px;
-				.time-interval-minor {
-					max-width:none;
-					height: @navigation-marker-height;
-					//display:block;
-					white-space:nowrap;	
-					//overflow:hidden;
-					position: absolute;
-					top:-2px;
-					left:8px;
-					z-index:10;
-					//padding-left:7px;
-					.minor {
-						position: relative;
-						top:2px;
-						display:inline-block;
-						.background-time-interval();
-						width:100px;
-						//width:15px;
-						height: @navigation-marker-height;
-						background-position: center top;
-						white-space:nowrap;
-						color: @color-navigation-time;
-						margin-top:0px;
-						padding-top:0px;
-					}
-					
-				}
-				
-				.time-interval {
-					white-space:nowrap;	
-					position:absolute;
-					top: @navigation-marker-height - 1;
-					left:0px;	
-					
-					div {
-						.background-time-interval();
-						background-position:left top;
-						background-repeat:no-repeat;
-						padding-top:6px;//@base-space;
-						position:absolute;
-						height:3px;//15px;
-						//top:-5px;//@base-space;
-						left:0px;
-						display:block;
-						//width:150px;
-						
-						
-						font-weight: normal;
-						font-size: 10px;
-						line-height: @base-line;
-						
-						text-transform: uppercase;
-						text-align:left;
-						text-indent: 0px;
-						white-space:nowrap;
-						color: @color-navigation-time;
-						margin-left:0px;
-						margin-right:0px;
-						margin-top:0px;
-						z-index:2;
-						strong {
-							font-weight:bold;
-							color:@color-navigation-time-strong;
-						}
-					}
-					div.era {
-						font-weight: bold;
-						padding-top:0px;
-						margin-top:-3px;
-						margin-left:2px;
-						background-image: none;
-					}
-					.era1 {
-						color: @color-theme-tetrad1; // IE8
-						.opacity(50);
-						//color: fade(@color-theme-tetrad1, 50%);
-						//text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-					}
-					.era2 {
-						color: @color-theme-tetrad2; // IE8
-						.opacity(50);
-						//color: fade(@color-theme-tetrad2, 50%);
-						//text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-					}
-					.era3 {
-						color: @color-theme-tetrad3; // IE8
-						.opacity(50);
-						//color: fade(@color-theme-tetrad3, 50%);
-						//text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-					}
-					.era4 {
-						color: @color-theme-tetrad4; // IE8
-						.opacity(50);
-						//color: fade(@color-theme-tetrad4, 50%);
-						//text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-					}
-					.era5 {
-						color: @color-theme-tetrad5; // IE8
-						.opacity(50);
-						//color: fade(@color-theme-tetrad5, 50%);
-						//text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-					}
-					.era6 {
-						color: @color-theme-tetrad6; // IE8
-						.opacity(50);
-						//color: fade(@color-theme-tetrad6, 50%);
-						//text-shadow: 0px 1px 1px lighten(@color-background-dark, 30%);
-					}
-					
-
-				}
-				
-				
-				.time-interval-major {
-					white-space:nowrap;	
-					position:absolute;
-					top: @navigation-marker-height - 1;
-					left:0px;	
-					
-					div {
-						//.background-time-interval();
-						.background-time-interval-major();
-						background-position:left top;
-						background-repeat:no-repeat;
-						padding-top:@base-space;
-						position:absolute;
-						height:@base-space;
-						//top:-5px;//@base-space;
-						left:0px;
-						display:block;
-						//width:150px;
-
-						
-						font-weight: bold;
-						font-size: 12px;
-						line-height: @base-line;
-						
-						text-transform: uppercase;
-						text-align:left;
-						text-indent: 0px;
-						white-space:nowrap;
-						color: @color-navigation-major-time;
-						margin-left:0px;
-						margin-right:0px;
-						margin-top:1px;
-						z-index:5;
-						strong {
-							font-weight:bold;
-							color:@color-navigation-time-strong;
-						}
-					}
-					
-
-				}
-
-			}
-		}
-		
-		
-		
-		
-	}
-	
-}
-
-/* RETINA
-================================================== */
-@media only screen and (-webkit-min-device-pixel-ratio: 2), 
-only screen and (min-device-pixel-ratio: 2) {
-	.vco-notouch {
-		.vco-navigation {
-			.vco-toolbar {
-				.zoom-in {
-					.icon {
-						.icon-zoom-in2x();
-					}
-				}
-				.zoom-out {
-					.icon {
-						.icon-zoom-out2x();
-					}
-				}
-				.back-home {
-					.icon {
-						.icon-back-home2x();
-					}
-				}
-			}
-			.vco-toolbar.touch {
-				.zoom-in {
-					.icon {
-						.icon-touch-zoom-in2x();
-					}
-				}
-				.zoom-out {
-					.icon {
-						.icon-touch-zoom-out2x();
-					}
-				}
-				.back-home {
-					.icon {
-						.icon-touch-back-home2x();
-					}
-				}
-			}
-			.timenav {
-				.content {
-					.marker {
-						.flag:hover {
-							.time-flag-active2x();
-						}
-						.flag-small:hover {
-							.time-flag-active2x();
-						}
-						.flag-small.flag-small-last:hover {
-							.time-flag-small-active2x();
-						}
-					}
-				}
-			}
-			.timenav-background {
-				.timenav-indicator {
-					.icon-currenttime2x();
-				}
-			}
-		}
-	}
-	.vco-timeline {
-		.vco-navigation {
-			.timenav {
-				.content {
-					
-				}
-			}
-		}
-	}
-}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/source/less/VMM.Timeline.less b/public/opac/TimelineJS-2.25/source/less/VMM.Timeline.less
deleted file mode 100644
index 8fb812a44f4f11601c158d730fdaaec95d603088..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/source/less/VMM.Timeline.less
+++ /dev/null
@@ -1,119 +0,0 @@
-/*!
-	TIMELINE CSS
-	
-	Designed and built by Zach Wise at VeriteCo
-	
-	This Source Code Form is subject to the terms of the Mozilla Public
-	License, v. 2.0. If a copy of the MPL was not distributed with this
-	file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-*/
-
-/*	THEME DEFAULT
------------------------------------------------------ */
-	//GFX
-	.base-sprite() {
-		background-image: url(timeline.png?v4.4);
-	}
-	.base-sprite2x() {
-		background-image: url(timeline@2x.png?v4.4);
-		background-size: 352px 260px; 
-	}
-	.loading-sprite() {
-		background-image: url(loading.gif?v3.4);
-	}
-	.loading-sprite2x() {
-		background-image: url(loading@2x.gif?v3.4);
-	}
-	
-	// COLORS
-	@color-base:					#FFF;
-	@color-line: 					#CCC;
-	@color-line-hover: 				#666;
-	@color-dark:					#000;
-	@color-dark-second: 			#333;
-	@color-dark-third: 				#666;
-	@color-dark-fourth: 			#999;
-	@color-dark-fifth: 				#E3E3E3;
-	@color-background-dark:			#E9E9E9;
-	
-	// COLOR THEME
-	@color-theme:					#08C;	//#FF3712; //#FF0000;
-	
-/*	BASE
------------------------------------------------------ */
-
-// CSS CORE
-@import "Core/VMM.Core.less";
-
-// Timeline Specific
-@import "VMM.Timeline.TimeNav.less";
-
-
-/* MEDIA QUERIES
-================================================== */
-
-/* Mobile and iPhone
-================================================== */
-
-/* Non-Retina */
-@media screen and (-webkit-max-device-pixel-ratio: 1) {
-	
-}
-
-/* Retina */
-@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
-
-}
-/* iPhone Portrait
-================================================== */
-@media screen and (max-device-width: 480px) and (orientation:portrait) {
-	.storyjs-embed.full-embed {
-		height:557px !important;
-		width:320px !important;
-		.vco-feature {
-			height:356px !important;
-		}
-	}
-} 
-/* iPhone Landscape
-================================================== */
-@media screen and (max-device-width: 480px) and (orientation:landscape) {
-	.storyjs-embed.full-embed {
-		height:409px !important;
-		width:480px !important;
-		.vco-feature {
-			height:208px !important;
-		}
-	}
-}
-
-/* iPad Portrait */
-@media screen and (min-device-width: 481px) and (orientation:portrait) {
-	
-}
-
-/* iPad Landscape */
-@media screen and (min-device-width: 481px) and (orientation:landscape) {
-	
-}
-
-@media (max-width: 480px) {
-
-	
-}
-
-
-/* Skinny
-================================================== */
-@media only screen and (max-width: 480px) {
-	.storyjs-embed.full-embed {
-		//max-width: 480px !important;
-	}
-	.vco-timeline {
-		//max-width: 480px !important;
-		.vco-slider {
-		
-		}
-	}
-}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/tests/test_extra_html.html b/public/opac/TimelineJS-2.25/tests/test_extra_html.html
deleted file mode 100644
index 44023663b7785f81e855143faee183b567cf1026..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_extra_html.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html lang="en"><!--
-  	 
-  	88888888888 d8b                        888 d8b                888888   d8888b  
-  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
-  	    888                                888                       888 Y88b
-  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
-  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
-  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-  	                                                                d88P            
-  	                                                              d88P             
-  	                                                            888P              
-  	 -->
-  <head>
-    <title>Timeline JS Example</title>
-    <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
-    <!-- Style-->
-    <style>
-      html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
-      }
-    </style>
-    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
-  </head>
-  <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         debug: true,
-         source: 'test_extra_html.json'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
-  </body>
-</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/tests/test_extra_html.json b/public/opac/TimelineJS-2.25/tests/test_extra_html.json
deleted file mode 100644
index 5324f57eb9a9c7f51abd3ded9746b799f29d25b2..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_extra_html.json
+++ /dev/null
@@ -1,68 +0,0 @@
-{
-    "timeline":
-    {
-        "headline":"The Amazon effect",
-        "type":"default",
-		"startDate":"2000",
-		"text":"<div style='font-size:16px; font-weight:normal; color:#74736c;'>How Amazon has changed the world of commerce</div><br /><div><img src='_media/smile.png'></div>",
-		"asset":
-        {
-            "media":"",
-            "credit":"",
-            "caption":""
-        },
-        "date": [
-		{
-                "startDate":"2004",
- 		    "headline":"How do purchases get from your virtual shopping cart to the doorstep? There are two ways.",
-                "text":"",
-                "asset":
-                {
-                    "media":"https://vine.co/v/b55LOA1dgJU",
-                    "credit":"",
-                    "caption":""
-                }
-                
-            },
-
-	      {
-                "startDate":"2008",
- 		    "headline":"Buying a vacuum through <b>Amazon</b>",
-                "text":"",
-                "asset":
-                {
-                    "media":"_media/fulfillment1a.png",
-			  "credit":"",
-                    "caption":"The vacuum order is placed, processed and shipped completely by Amazon."
-                }
-            },
-
-  		{
-                "startDate":"2012",
- 		    "headline":"Buying a vacuum through an alliance between<br /><b>Amazon and GoVacuum</b>",
-                "text":"",
-                "asset":
-                {
-                    "media":"_media/fulfillment1b.png",
-			  "credit":"",
-                    "caption":"The vacuum, originally supplied by GoVacuum, is ordered, processed and shipped by Amazon."
-                }
-            },
-
-	      {
-                "startDate":"2016",
- 		    "headline":"What is the Amazon effect?",
-                "text":"<div style='font-size:20px; line-height:115%; font-weight:normal; color:#74736c;'><div style='font-size:24px; color:#9b164f;'><i>Consumers</i><br/ ></div><div>Amazon and its Marketplace sellers are a one-stop shop for a broad range of merchandise making products easier to find. The best deals are often faster and cheaper than the alternatives.<br/ ><br /><div style='font-size:24px; color:#9b164f;'><i>Amazon</i><br/ ></div><div>By fusing their businesses, both Amazon and independent sellers can attract more customers and improve profit margins. But doing so can create risks for Amazon and third-party sellers.</div>"
-            },
-
-		{
-                "startDate":"2024",
-                "headline":"Amazon.com Fulfillment",
-                "asset":
-                {
-                    "media":"http://interactive.ftdata.co.uk/features/2012-06-01_amazon/pages/receipts.html"
-                }
-            }
-        ]
-    }
-}
diff --git a/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet.html b/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet.html
deleted file mode 100644
index 382a47ab1efa0d4d8aa07f38e283a5ddbd596e9a..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html lang="en"><!--
-  	 
-  	88888888888 d8b                        888 d8b                888888   d8888b  
-  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
-  	    888                                888                       888 Y88b
-  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
-  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
-  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-  	                                                                d88P            
-  	                                                              d88P             
-  	                                                            888P              
-  	 -->
-  <head>
-    <title>Timeline JS Example</title>
-    <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
-    <!-- Style-->
-    <style>
-      html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
-      }
-    </style>
-    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
-  </head>
-  <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         debug: true,
-         source: 'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&amp;output=html'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
-  </body>
-</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_bc_era_ages_epoch.html b/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_bc_era_ages_epoch.html
deleted file mode 100644
index 8a58c5b0ea298edfa6c40c67c4c4d2f0a47813b4..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_bc_era_ages_epoch.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html lang="en"><!--
-  	 
-  	88888888888 d8b                        888 d8b                888888   d8888b  
-  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
-  	    888                                888                       888 Y88b
-  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
-  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
-  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-  	                                                                d88P            
-  	                                                              d88P             
-  	                                                            888P              
-  	 -->
-  <head>
-    <title>Timeline JS Example</title>
-    <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
-    <!-- Style-->
-    <style>
-      html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
-      }
-    </style>
-    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
-  </head>
-  <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         debug: true,
-         source: 'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadHlWbUYwenBTV1hyUGRidU85MnEzQmc&amp;output=html'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
-  </body>
-</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_biblical_ad.html b/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_biblical_ad.html
deleted file mode 100644
index 63201aceaa471a199b240085a2166d83f5d22328..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_biblical_ad.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html lang="en"><!--
-  	 
-  	88888888888 d8b                        888 d8b                888888   d8888b  
-  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
-  	    888                                888                       888 Y88b
-  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
-  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
-  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-  	                                                                d88P            
-  	                                                              d88P             
-  	                                                            888P              
-  	 -->
-  <head>
-    <title>Timeline JS Example</title>
-    <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
-    <!-- Style-->
-    <style>
-      html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
-      }
-    </style>
-    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
-  </head>
-  <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         debug: true,
-         source: 'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadENlSWZ0Ml9CUXRMVTJGbHZ5UjhDblE&amp;output=html'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
-  </body>
-</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_minutes.html b/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_minutes.html
deleted file mode 100644
index 64303abc7fc182923c2747f586c768ba43b37859..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_googlespreadsheet_minutes.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html lang="en"><!--
-  	 
-  	88888888888 d8b                        888 d8b                888888   d8888b  
-  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
-  	    888                                888                       888 Y88b
-  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
-  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
-  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-  	                                                                d88P            
-  	                                                              d88P             
-  	                                                            888P              
-  	 -->
-  <head>
-    <title>Timeline JS Example</title>
-    <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
-    <!-- Style-->
-    <style>
-      html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
-      }
-    </style>
-    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
-  </head>
-  <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         debug: true,
-         source: 'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFBfbkE1Qk42RTFDcjRDdnFndk9DOFE&amp;output=html'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
-  </body>
-</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/tests/test_jsonp.html b/public/opac/TimelineJS-2.25/tests/test_jsonp.html
deleted file mode 100644
index f7fa5addb2215ad0082a737e552c6187ed2a1992..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_jsonp.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html lang="en"><!--
-  	 
-  	88888888888 d8b                        888 d8b                888888   d8888b  
-  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
-  	    888                                888                       888 Y88b
-  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
-  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
-  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-  	                                                                d88P            
-  	                                                              d88P             
-  	                                                            888P              
-  	 -->
-  <head>
-    <title>Timeline JS Example</title>
-    <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
-    <!-- Style-->
-    <style>
-      html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
-      }
-    </style>
-    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
-  </head>
-  <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         debug: true,
-         source: 'example_jsonp.jsonp'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
-  </body>
-</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/tests/test_utc_firefox.html b/public/opac/TimelineJS-2.25/tests/test_utc_firefox.html
deleted file mode 100644
index 87bc603cb8544174084af0eb89f900f69997b02e..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_utc_firefox.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html lang="en"><!--
-  	 
-  	88888888888 d8b                        888 d8b                888888   d8888b  
-  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
-  	    888                                888                       888 Y88b
-  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
-  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
-  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-  	                                                                d88P            
-  	                                                              d88P             
-  	                                                            888P              
-  	 -->
-  <head>
-    <title>Timeline JS Example</title>
-    <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
-    <!-- Style-->
-    <style>
-      html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
-      }
-    </style>
-    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
-  </head>
-  <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         debug: true,
-         source: 'test_utc_firefox.json'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
-  </body>
-</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/tests/test_utc_firefox.json b/public/opac/TimelineJS-2.25/tests/test_utc_firefox.json
deleted file mode 100644
index ff811f835e35acf0f16370e41a8279de1df41c21..0000000000000000000000000000000000000000
--- a/public/opac/TimelineJS-2.25/tests/test_utc_firefox.json
+++ /dev/null
@@ -1,115 +0,0 @@
-{
-    "timeline": {
-        "date": [
-            {
-                "asset": {
-                    "caption": "", 
-                    "media": "http://c8226405.myzen.co.uk/wp-content/uploads/2012/09/dummy4.jpg"
-                }, 
-                "headline": "1869", 
-                "startDate": "1869,9,10", 
-				"classname": "myuniqueclassnamegoeshere",
-                "text": "<p>Wm. Sugden and Sons Ltd started tailors shop in Cleckheaton</p>"
-            }, 
-            {
-                "asset": {
-                    "caption": "", 
-                    "media": "http://c8226405.myzen.co.uk/wp-content/uploads/2012/09/sewingmachine3.jpg"
-                }, 
-                "headline": "1896", 
-                "startDate": "1896,9,10,12,06", 
-                "text": "<p>Starts making shirts in the shop</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1899,9,10", 
-                "headline": "1899", 
-                "startDate": "1899,9,10", 
-                "text": "<p>Shirt business has out grown the shop so moves into a larger factory at Water Lane Mills</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1904,9,10", 
-                "headline": "1904", 
-                "startDate": "1904,9,10", 
-                "text": "<p>Another factory in Barnsley opens</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1911,9,10", 
-                "headline": "1911", 
-                "startDate": "1911,9,10", 
-                "text": "<p>Opens a factory in Wakefield to make workwear and army uniforms</p>"
-            }, 
-            {
-                "asset": {
-                    "caption": "", 
-                    "media": "http://c8226405.myzen.co.uk/wp-content/uploads/2012/09/green-shirt3.jpg"
-                }, 
-                "endDate": "1924,9,10", 
-                "headline": "1924", 
-                "startDate": "1924,9,10", 
-                "text": "<p>Moves to a larger factory in Wakefield as product range expands</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1930,9,10", 
-                "headline": "1920-1930", 
-                "startDate": "1920,9,10", 
-                "text": "<p>Acquire two weaving mills in Lancashire and make over five million shirts</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1950,9,10", 
-                "headline": "1950", 
-                "startDate": "1950,9,10", 
-                "text": "<p>Sets up factory in South Yorkshire to manufacture jeans</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1965,9,10", 
-                "headline": "1965", 
-                "startDate": "1965,9,10", 
-                "text": "<p>A bigger factory is needed to accommodate production</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1968,9,10", 
-                "headline": "1968", 
-                "startDate": "1968,9,10", 
-                "text": "<p>Merger with Donner family and Double Two brand</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1990,9,10", 
-                "headline": "1970-1990", 
-                "startDate": "1970,9,10", 
-                "text": "<p>Reputation for quality grows and Topflight brand of workwear is widely sold</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1990,9,10", 
-                "headline": "1990", 
-                "startDate": "1990,9,10", 
-                "text": "<p>Managed Services concept introduced under Threadneedle brand</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "1998,9,10", 
-                "headline": "1998", 
-                "startDate": "1998,9,10", 
-                "text": "<p>John Sugden retires, a new generation of the family takes over</p>"
-            }, 
-            {
-                "asset": null, 
-                "endDate": "2012,9,10", 
-                "headline": "Present", 
-                "startDate": "2012,9,10", 
-                "text": "<p>Although the business has been reshaped throughout the years, the business still remains a heritage brand and is still an important part of Wakefieldu2019s history</p>"
-            }
-        ], 
-        "headline": "", 
-        "text": "", 
-        "type": "default"
-    }
-}
diff --git a/public/opac/TimelineJS3-3.5.1/.editorconfig b/public/opac/TimelineJS3-3.5.1/.editorconfig
new file mode 100644
index 0000000000000000000000000000000000000000..f4186e9729f63a3b80d37cc7c71ac90ed81a6285
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/.editorconfig
@@ -0,0 +1,9 @@
+# This is the top-most .editorconfig file; do not search in parent directories.
+root = true
+
+# All files.
+[*]
+end_of_line = LF
+indent_style = space
+indent_size = 4
+charset = utf-8
diff --git a/public/opac/TimelineJS3-3.5.1/.gitignore b/public/opac/TimelineJS3-3.5.1/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..c6156e52b0d924b97c6a10c747082ad3827417e0
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/.gitignore
@@ -0,0 +1,10 @@
+*.pyc
+node_modules/
+
+# Other
+.DS_Store
+codekit-config.json
+
+build/website
+build
+*.log
diff --git a/public/opac/TimelineJS3-3.5.1/API.md b/public/opac/TimelineJS3-3.5.1/API.md
new file mode 100644
index 0000000000000000000000000000000000000000..edbe51270b6465adaa3ef4b1db0b11d678b9b4ca
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/API.md
@@ -0,0 +1,149 @@
+# TimelineJS3 API
+
+Timeline 3 exposes the events and methods listed below.
+
+Note that these methods make a distinction between an `event_index` and a `slide_index`.  An `event_index` is an index into the sorted array of `events` in the timeline data object.  A `slide_index` is index of the slide that appears in the rendered timeline.  
+
+A `title` has no `event_index` and has `slide_index` 0.  
+
+If you have a `title`, the first event has `event_index` 0 and `slide_index` 1.
+
+If you do not have a `title`, the first event has `event_index` 0 and `slide_index` 0.
+
+
+### Events
+
+```javascript
+
+// Create new Timeline object
+var timeline = new TL.Timeline(...);
+
+// Set event handlers
+// event_name = string, name of the event, e.g. "change"
+// data = JavaScript object containing event-specific properties listed below
+timeline.on(event_name, function(data) {
+    // handle event
+});
+```
+
+ `back_to_start` _when user clicks control to return to beginning of timeline_
+ 
+ `change` _when the current slide changes_
+
+* unique_id: string, id of the new current slide
+
+`color_change` _when background of current slide changes_
+
+* unique_id: string, id of the new current slide
+
+`dataloaded` _after data has been loaded_
+
+`hash_updated` _when the hashbookmack in the url bar is updated_
+
+* unique_id:  string, id of the new current slide
+* hashbookmark: string, the hash
+
+`loaded` _after story slider and time navigator have been loaded_
+
+* scale: "human" or "cosmological", the type of date scale
+* eras: array
+* events: array
+* title: title slide data, if title slide exists
+
+`zoom_in` _when user zooms in the time navigator_
+
+`zoom_out` _when user zooms out the time navigator_
+
+* zoom_level: integer, current zoom level
+
+`added` _after slide has been added_
+
+`removed` _after slide has been removed_
+
+* unique_id: string, the id of the modified slide
+
+`nav_next` fires when next button is clicked
+
+`nav_previous` fires when next button is clicked
+
+
+### Navigation
+
+`goTo(<int slide_index>)` _go to slide at index_
+
+`goToId(<string id>)` _go to slide with id_
+
+`goToNext()` _go to next slide_
+
+`goToPrev()` _go to previous slide_
+
+`goToStart()` _go to first slide_
+
+`goToEnd()` _go to last slide_
+
+### Manipulation
+
+`remove(<int event_index>)` _remove event by index_
+
+`removeId(<string id>)` _remove event by id_
+
+`add(<object data>)` _add event with data (see event data format below)_
+
+### Data Access
+
+`getData(<int slide_index>)` _get data for slide by index_
+
+`getDataById(<string id>)` _get data for slide by id_
+
+`getSlide(<int slide_index>)` _get TL.Slide object by index_
+
+`getSlideById(<string id>)` _get TL.Slide object by id_
+
+
+### Event data format
+```javascript
+{
+    "start_date": {
+        "year":			<string>, // all events must have a year. 
+        "month":		<string>, // other attributes are optional
+        "day": 			<string>, 
+        "hour": 		<string>,
+        "minute": 		<string>,
+        "second": 		<string>,
+        "millisecond": 	<string>,
+        "format": 		<string>,
+        "display_text": <string>
+    },
+    "end_date": {                   // optional
+        "year":			<string>,
+        "month":		<string>,
+        "day": 			<string>,
+        "hour": 		<string>,
+        "minute": 		<string>,
+        "second": 		<string>,
+        "millisecond": 	<string>,
+        "format": 		<string>,
+        "display_text": <string>
+    },
+    "location": {                   // optional
+        "icon":         <string>,   // icon url
+        "lat":          <float>,   
+        "lon":          <float>,
+        "line":         <boolean>,
+        "name":         <string>,
+        "zoom":         <int>
+    },
+    "media": {
+        "caption":      <string>,
+        "credit":       <string>,
+        "url":          <string>,
+        "thumbnail":    <string>
+    },
+    "text": {
+        "headline":     <string>,
+        "text":         <string>
+    },
+    "unique_id":         <string>    // optional
+};
+```
+
diff --git a/public/opac/TimelineJS3-3.5.1/API_TEST.html b/public/opac/TimelineJS3-3.5.1/API_TEST.html
new file mode 100644
index 0000000000000000000000000000000000000000..f449acebe496f7dd255747a7f679bf6d618d65f1
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/API_TEST.html
@@ -0,0 +1,251 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+<title>TimelineJS: API Test</title>
+<meta charset="utf-8">
+<meta name="description" content="TimelineJS Embed">
+<meta name="apple-mobile-web-app-capable" content="yes">
+<meta name="apple-touch-fullscreen" content="yes">
+<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+<!-- CSS-->
+<link rel="stylesheet" href="build/css/timeline.css?v1">
+<!--FONT-->
+<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Bevan%7CPontano+Sans&amp;amp;subset=latin,latin">
+<!-- Style-->
+<style>
+html, body {
+    height:100%;
+    width:100%;
+    padding: 0px;
+    margin: 0px;
+}
+
+#timeline_wrapper {
+    position: absolute;
+    top: 210px;
+    left: 0;
+    right: 0;
+    bottom: 0;
+}
+
+#panel {
+    background: #ededed;
+    height: 156px;
+    padding: 6px 4px;
+    border-top: 1px solid black;
+    -webkit-box-sizing: border-box;
+    -moz-box-sizing: border-box;
+    -ms-box-sizing: border-box;
+    -o-box-sizing: border-box;
+    box-sizing: border-box;
+}
+#panel button {
+    width: 100px;
+}
+#panel label {
+    margin-right: 4px;
+}
+
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+    -->
+  </head>
+  <body>
+    <div id="timeline_wrapper">
+        <div id="timeline"></div>
+    </div>
+    <div id="panel">
+        <div style="display: inline-block;">
+            <div style="display: inline-block;width: 240px;text-align: left;">
+                <button id="goToStart">goToStart</button>
+                <button id="goToPrev">goToPrev</button>
+                <br>
+                <button id="goToNext">goToNext</button>
+                <button id="goToEnd">goToEnd</button>
+            </div>
+            <div style="display: inline-block;text-align: left;">
+                <input id="slide_index" type="number" min="0" placeholder="slide index" style="width: 194px;" />
+                <button id="goTo">goTo</button>
+                <button id="getData">getData</button>
+                <button id="getSlide">getSlide</button>
+                <button id="removeSlide">removeSlide</button>
+                <br>
+
+                <select id="slide_id"></select>
+                <button id="goToId">goToId</button>
+                <button id="getDataId">getDataId</button>
+                <button id="getSlideId">getSlideId</button>
+                <button id="removeSlideId">removeSlideId</button>
+            </div>
+
+            <br>
+            <br>
+
+            <div style="display: inline-block;width: 480px;text-align: left;">
+                <label style="display: inline-block;width: 70px;">start date</label>
+                    <input id="start_date_y" placeholder="year" style="width: 100px;">
+                    <input id="start_date_m" placeholder="mon" style="width: 24px;">
+                    <input id="start_date_d" placeholder="day" style="width: 24px;">
+                    <input id="start_date_ft" placeholder="format" style="width: 100px;">
+                    <input id="start_date_dt" placeholder="display text" style="width: 100px;">
+                <br>
+                <label style="display: inline-block;width: 70px;">end date</label>
+                    <input id="end_date_y" placeholder="year" style="width: 100px;">
+                    <input id="end_date_m" placeholder="mon" style="width: 24px;">
+                    <input id="end_date_d" placeholder="day" style="width: 24px;">
+                    <input id="end_date_ft" placeholder="format" style="width: 100px;">
+                    <input id="end_date_dt" placeholder="display text" style="width: 100px;">
+            </div>
+            <div style="display: inline-block;">
+                <label style="display: inline-block;width: 70px;">headline</label>
+                <input type="text" id="headline" style="width: 200px;">
+                <br>
+                <label style="display: inline-block;width: 70px;">text</label>
+                <input type="text" id="text"  style="width: 200px;">
+            </div>
+            <br>
+            <div style="display: inline-block;">
+                <button id="add">add</button>
+            </div>
+        </div>
+    </div>
+
+    <!-- JavaScript-->
+    <script src="build/js/timeline.js"></script>
+    <script>
+
+    $('#add').click(function(event) {
+        var d = {
+            "start_date": {
+                "year":         $('#start_date_y').val().trim() || "",
+                "month":        $('#start_date_m').val().trim() || "",
+                "day":          $('#start_date_d').val().trim() || "",
+                "hour": "", "minute": "", "second": "", "millisecond": "",
+                "format":       $('#start_date_ft').val().trim() || "",
+                "display_text": $('#start_date_dt').val().trim() || ""
+            },
+            "end_date": {
+                "year":         $('#end_date_y').val().trim() || "",
+                "month":        $('#end_date_m').val().trim() || "",
+                "day":          $('#end_date_d').val().trim() || "",
+                "hour": "", "minute": "", "second": "", "millisecond": "",
+                "format":       $('#end_date_ft').val().trim() || "",
+                "display_text": $('#end_date_dt').val().trim() || ""
+            },
+            "media": {
+                "caption": "", "credit": "", "url": ""
+            },
+            "text": {
+                "headline":     $('#headline').val().trim() || "",
+                "text":         $('#text').val().trim() || ""
+            },
+            "unique_id":         ""
+        };
+
+        timeline.add(d);
+    });
+
+    $('#goToStart').click(function(event) {
+        timeline.goToStart();
+    });
+    $('#goToPrev').click(function(event) {
+        timeline.goToPrev();
+    });
+    $('#goToNext').click(function(event) {
+        timeline.goToNext();
+    });
+    $('#goToEnd').click(function(event) {
+        timeline.goToEnd();
+    });
+
+    //
+    // by index
+    //
+    $('#goTo').click(function(event) {
+         timeline.goTo(parseInt($('#slide_index').val()));
+    });
+    $('#getData').click(function(event) {
+        console.log(timeline.getData(parseInt($('#slide_index').val())));
+    });
+    $('#getSlide').click(function(event) {
+        console.log(timeline.getSlide(parseInt($('#slide_index').val())));
+    });
+    $('#removeSlide').click(function(event) {
+        timeline.remove(parseInt($('#slide_index').val()));
+    });
+
+    //
+    // by id
+    //
+    $('#goToId').click(function(event) {
+         timeline.goToId($('#slide_id').val());
+    });
+    $('#getDataId').click(function(event) {
+        console.log(timeline.getDataId($('#slide_id').val()));
+    });
+    $('#getSlideId').click(function(event) {
+        console.log(timeline.getSlideId($('#slide_id').val()));
+    });
+    $('#removeSlideId').click(function(event) {
+        timeline.removeId($('#slide_id').val());
+    });
+
+    // List of events to look for
+    var event_list = [
+        // 'added', special handling
+        'back_to_start',
+        'change',
+        'color_change',
+        'dataloaded',
+        'hash_updated',
+        // 'loaded', special handling
+        // 'removed',  special handling
+        'zoom_in',
+        'zoom_out'
+    ];
+
+    // Log event details
+    function log_event(data) {
+        var s = 'EVENT='+data.type;
+        for(var key in data) {
+            if(key != 'target' && key != 'type') {
+                s += ', '+key+'='+data[key];
+            }
+        }
+        console.log(s);
+    }
+
+    // Build slide_id menu
+    function init_slide_menu(data) {
+        console.log('EVENT='+data.type, data);
+        
+        var events = timeline.config.events;
+        var html = '';
+        for(var i = 0, id; i < events.length; i++) {
+            id = events[i].unique_id;
+            html += '<option value="'+id+'">'+id+'</option>';
+        }
+
+        $('#slide_id').html(html);
+    }
+
+    var timeline = new TL.Timeline('timeline', 'compiled/examples/marktwain_test.json', {});
+
+    // Set event handlers
+    timeline.on('loaded', init_slide_menu);
+    timeline.on('added', init_slide_menu);
+    timeline.on('removed', init_slide_menu);
+
+    for(var i = 0; i < event_list.length; i++) {
+        timeline.on(event_list[i], log_event);
+    }
+
+    window.onresize = function(event) {
+        timeline.updateDisplay();
+    }
+    </script>
+  </body>
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/AUTHORS b/public/opac/TimelineJS3-3.5.1/AUTHORS
new file mode 100644
index 0000000000000000000000000000000000000000..f9db2a8a0461661804510a49567632b3f421d5a3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/AUTHORS
@@ -0,0 +1,18 @@
+The following individuals have contributed code to TimelineJS or to the website. (If we've missed you or you'd like your name changed,
+please let us know!)
+
+* Zach Wise
+* Joe Germuska
+* Jennifer Wilson
+* Heather Billings
+* Ashley Wu
+* Matthew Zhang
+* Josh Shi
+* Aditi Bhandari
+* balliegojr
+* acdha
+* rcgraff
+* lchag
+* Newman101
+* dutri001
+* bronzehedwick
diff --git a/public/opac/TimelineJS3-3.5.1/CHANGELOG b/public/opac/TimelineJS3-3.5.1/CHANGELOG
new file mode 100644
index 0000000000000000000000000000000000000000..4e90ef3dc43dd74e2fc7377a7be7cb813c8a2a71
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/CHANGELOG
@@ -0,0 +1,134 @@
+3.5.0 (2017-05-03)
+* PR #510 Twitter image support
+* PR #520, #515 Imgur image support
+* PR #514 Wistia video support (URL only)
+* PR #508 Fixes to local previews for development
+
+3.4.9 (2017-04-10)
+------------------
+* PR #468 support audio and video files (.mp4, .mp3, .wav, .m4a)
+* PR #460 improve spotify documentation and support album and artist pages
+* PR #454 use the `lang` attribute set in the embed url as the lang for the iframe
+* PR #453 add support for title and alt tags on images
+
+3.4.8 (2017-03-31)
+------------------
+* Fix missing accent in French translation
+* Add additional Thai translation
+
+3.4.7 (2016-01-12)
+* PR #447 Enable Vimeo fullscreen controls
+
+3.4.6 (2016-12-12)
+* Revert PR #387 which was causing slide cutoff on small screens
+
+3.4.5 (2016-12-07)
+* PR #428 - Reinstate table display for IE. #427
+
+3.4.3 (2016-11-15)
+------------------------
+* Revert PR #374, reopen #277. Fix left black bar across full screen timelines.
+
+3.4.2 (2016-11-15)
+------------------------
+* PR #374 - Adds margin-top for large screen disply. Fixes #277
+* PR #401 - Adds Vietnamese translation
+* PR #419 - Removes year zero from the timeline. Fixes #328
+* PR #387 - Fixes background image scrolling on long slide. #360
+* PR #389 - Adds YouTube end-time feature. #388
+
+3.4.1 (2016-10-04)
+------------------------
+* PR #400 - pause Vine, DailyMotion, and Soundcloud media on slide exit (thanks @Hammman and @JustaBitDope)
+* PR #413 - French language support additions
+
+3.4.0 (2018-08-30)
+-------------------------
+* Complete (?) RTL language support, removed Urdu Unicode translation bugs
+
+3.3.17 (2016-08-22)
+-------------------------
+* #372 Italian translation for "Swipe to Navigate"
+* #376 Throw an error if URL is neither a Google Spreadsheet nor a source of parseable JSON
+* Chinese (traditional) (zh-cn) translation for "Swipe to Navigate"
+* Norwegian translation for "Swipe to Navigate"
+* added Burmese translation
+
+3.3.16 (2016-05-31)
+-------------------------
+* #365 Scope vcard styles to avoid impacting pages which embed timelines without iframe
+* #366 Fix headline problem with <p> tag
+
+3.3.15 (2016-05-11)
+-------------------------
+* Apply MediaType handling to thumbnails for the slider, so that people can use the same kinds of urls they use for regular media.
+* Establish correct indication of "BCE" in Swedish.
+* Establish correct indication of "BYA" abbreviations in Finnish and Hungarian.
+
+3.3.14 (2016-03-22)
+-------------------------
+* Fix bug in handling imgur URLs which were to an imgur page and not directly to an image.
+
+3.3.13 (2016-02-25)
+-------------------
+* Fix API calls for Soundcloud, DailyMotion, Instagram, Spotify and Vine which used http and thus would fail in cross-protocol situations.
+* #342 test for 'start at end' to support boolean true as well as 'true'
+* #340 docfix: syntax highlighting for code snippets on GitHub Markdown
+* #323 more careful for loop in case people extend the Array prototype; fix build problem for Linux user-select
+
+3.3.12 (2016-02-01)
+-------------------
+* translate "swipe_to_navigate" for German (de)
+* add Urdu (ur) translation
+
+3.3.11 (2015-12-03)
+-------------------
+* back out header validation, interfered with too many random changes in the wild
+
+3.3.10 (2015-12-02)
+-------------------
+* improved validation/messaging during authoring: changes to headers, eras without end dates (#287)
+* Improved support for PDF files from Dropbox
+
+3.3.9 (2015-10-26)
+----------------------
+* Make sure 'invalid_date_err' gets translated, esp so detail message gets displayed
+
+3.3.8 (2015-10-20)
+----------------------
+* Fix Document Cloud URL bug
+
+3.3.7 (2015-10-19)
+----------------------
+* Fix bug in Twitter embed (#282) (thanks @Newman101)
+* Support media-type image inference for background images (eg flickr, imgur, dropbox) (#268)
+
+3.3.6 (2015-10-12)
+------------------
+* Have TimelineConfig validate date parts as integers (#269)
+* Support Twitter embed markup in media (in addition to a direct URL to a tweet)
+* support flic.kr URLs for Flickr images in addition fo flickr.com
+* add Imgur to supported media types
+* don't duplicate tl-storyslider class (#223)
+* Improved support for error message I18N
+
+3.3.5 (2015-10-01)
+------------------
+* remove default target for links added by code.
+
+3.3.4 (2015-09-30)
+------------------
+* implement PDF media type (#205)
+
+3.3.3 (2015-09-30)
+------------------
+* Fix small offset in marker group alignment (#259)
+* Fix text-shadow appearing on slides with backgrounds (#260)
+* Added Bevan-PontanoSans font combo
+* Support for IE9 officially ruled out
+* Fixes to blockquote style
+* default TL.debug to false.
+
+3.3.2 (2015-09-23)
+------------------
+This version of Timeline officially replaces the previous one.
diff --git a/public/opac/TimelineJS3-3.5.1/CONTRIBUTING.md b/public/opac/TimelineJS3-3.5.1/CONTRIBUTING.md
new file mode 100644
index 0000000000000000000000000000000000000000..7b8c1c91dabeab39f493a450135e2fef16d5dd79
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/CONTRIBUTING.md
@@ -0,0 +1,54 @@
+<h1>Contributing to TimelineJS</h1>
+
+TimelineJS is open source software. Knight Lab appreciates contributions to the code and to the translations that support publishing timelines in other languages.
+
+Please be aware that TimelineJS is designed to make digital storytelling simple. Historically, we've chosen not to pursue certain features which **could** be added to TimelineJS because we felt that they diverged from our design principles. If you have ambitious ideas for changes, you should start a conversation about the idea in [GitHub issues](https://github.com/NUKnightLab/TimelineJS3/issues) using the "feature proposal" label. 
+
+Translations, bug fixes and features proposed and endorsed by Knight Lab should be contributed as [GitHub pull requests](https://help.github.com/articles/using-pull-requests/).
+
+If you run into challenges trying to set up for contribution, post a [GitHub issue](https://github.com/NUKnightLab/TimelineJS3/issues).
+
+<h2>Working with the Code</h2>
+
+The official way that TimelineJS code is managed uses a python-based system for compiling the javascript and CSS and managing the static site content. We strongly encourage people working on the code to use this system. However, if this is a major burden, it is also possible to use the CodeKit IDE to work on the code.
+
+<h3>The Python Method</h3>
+Our build environment is routinely used with Python 2.7. Other versions of Python may work but have not been tested. Even though we call it the `python method`, there are also dependencies on `node` libraries for preparing the CSS and Javascript files.
+
+Generally, we recommend python projects begin with a [virtual environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/) (aka virtualenv) but this is not strictly required. Whether in a virtualenv or not, you must install a few [libraries](https://github.com/NUKnightLab/TimelineJS3/blob/master/requirements.txt). The best way to do this is with the following command:
+
+    pip install -r requirements.txt
+
+Once the requirements are installed, here are things to know:
+
+* ALWAYS edit code in the [/source/](https://github.com/NUKnightLab/TimelineJS3/tree/master/source) directory. Pull requests which only have changes to code in the `/build/` or `/compiled/` directory are incorrect and will not be accepted.
+* use the `fab build` command to compile your changes for testing.
+* use the `fab serve` command to run a local web server which mimics the official documentation web site and provides a way to load your updated javascript for testing. The URL for your local test environment is http://localhost:5000/ You can use the [make a timeline form](http://localhost:5000/#make) with Google Spreadsheets to see how your changes are working. **Remember:** you must execute `fab build` after you change javascript to see your changes on your local server. It is **not** automatic.
+* You may also want to make sure that the [examples](http://localhost:5000/#examples) still work as expected after you change code.
+* Don't break the unit tests. Consider adding test code for your changes. We're still working out our unit testing methodology, but before you submit pull requests, you should check http://localhost:5000/unit-tests.html and http://localhost:5000/mediatype-tests.html and verify that you haven't broken any of the tests with your changes.
+
+<h4>node/npm</h4>
+As mentioned above, developers building this code using Python must also install a handful of `node` utilities. Installing `node` and `npm` is left as an exercise for the developer, but once they are installed, make sure you do these commands:
+
+    npm install -g less
+    npm install -g uglifyjs
+    npm install -g less-plugin-clean-css
+
+<h4>Check your install</h4>
+You must also check out one more git repository, that our code depends on. Check this out "alongside" your TimelineJS3 directory -- they should both have the same parent folder.
+
+
+    git clone https://github.com/NUKnightLab/fablib.git
+
+After you've done the above, make sure that your virtual environment is active, change into your TimeLineJS3 directory and run these commands:
+
+	fab build
+	fab serve
+
+Then open a browser and visit http://localhost:5000/unit-tests.html . All of the unit tests should run with no errors reported. You may also want to check some of the examples, such as http://localhost:5000/examples/houston/ to make sure that things are basically working. The local webserver should load all of its javascript from your local `/build/` directory, so as you develop code, periodically execute `fab build` and then use the local server to make sure things are going well. (Again, don't forget about the unit tests!)
+
+
+<h3>Working with CodeKit</h3>
+TimelineJS's initial development was done with [CodeKit](https://incident57.com/codekit/), so we maintain support for that. 
+
+Basically, just use CodeKit's "add project" feature to add the TimelineJS directory as a project. You shouldn't need to make any other changes. CodeKit is configured to build files automatically to the /compiled/ directory. There are HTML files in that directory designed to use for testing your code changes. The author of this document does not use CodeKit much, so if these instructions need improvement, please file a GitHub issue or give us a pull request.
diff --git a/public/opac/TimelineJS3-3.5.1/DEPLOYING.md b/public/opac/TimelineJS3-3.5.1/DEPLOYING.md
new file mode 100644
index 0000000000000000000000000000000000000000..f7325d9d5770a96ef59664db8ddffa2bd59ea443
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/DEPLOYING.md
@@ -0,0 +1,54 @@
+#Deploying TimelineJS3
+
+TimelineJS3 conforms to Knight Lab standard practices for deploying javascript libraries and "static" sites.
+
+As such, to follow these instructions, you must have local copies of the [fablib](https://github.com/NUKnightLab/fablib) and [cdn.knightlab.com](https://github.com/NUKnightLab/cdn.knightlab.com) repositories checked out on your filesystem, "next to" your TimelineJS3 repository (that is, all three repositories should have the same parent directory).  Of course, you must also have authorization to write to the appropriate S3 buckets
+
+#Deploying changes to the JavaScript
+
+To deploy a new version of TimelineJS3, enter the following command:
+```
+  fab stage
+```
+You will be prompted for a version number. Choose a version number which is higher than any previously assigned. Use your discretion or ask advice about whether to increment the minor version or the patch version. (We generally follow [semantic versioning](http://semver.org/) principles.)
+
+The `fab stage` process will compile the javascript and less files and copy assets to the appropriate directory in the `cdn.knightlab.com` repository.
+
+> **Note:** this does *not* deploy the new code. There is one more step--you must switch to the CDN repository, commit the new code, and deploy the repository. See the end of this section for details. 
+
+If you are ready for your newly deployed version to be automatically available to most TimelineJS3 users, execute:
+```
+  fab stage_latest
+```
+If you do this separately from `fab stage`, you will be asked which previous version should be copied into the `latest` directory in the `cdn` repository. If, as is common, you do them both at once, then fab carries the newly assigned version and doesn't ask. That is, executing `fab stage stage_latest` is a simple and efficient way to "release" a new version of the code and make it available for users who follow the default path for embedding timelines.
+
+If you are working on changes which are still being actively tested, but you wish to deploy them for testing from the development website or otherwise publish them, execute:
+```
+  fab stage_dev
+```
+To put it all in one place, a typical deployment operation would look like this:
+```
+  fab stage stage_latest
+  # (version number prompt and lots of console logging)
+  cd ../cdn.knightlab.com
+  git add app/libs/timelinejs3
+  git commit -m "a coherent commit message"
+  git pull
+  git push
+  fab deploy 
+```
+
+
+#Deploying changes to the website
+
+To deploy changes to the website which explains TimelineJS3 and hosts the "authoring tool," use the command
+```
+fab deploy:prd
+```
+
+This will compile the website templates and push them to the S3 buckets. It is unrelated to the javascript, so can be done independently. Or, contrariwise, if you are intending to change both, be sure to follow both processes.
+
+There is a variant for deploying a version of the site which can be reached on the open internet but which is not yet ready for regular public consumption:
+```
+fab deploy:stg
+```
diff --git a/public/opac/TimelineJS3-3.5.1/LICENSE b/public/opac/TimelineJS3-3.5.1/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..be2cc4dfb609fb6c38f6365ec345bded3350dd63
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/LICENSE
@@ -0,0 +1,362 @@
+Mozilla Public License, version 2.0
+
+1. Definitions
+
+1.1. "Contributor"
+
+     means each individual or legal entity that creates, contributes to the
+     creation of, or owns Covered Software.
+
+1.2. "Contributor Version"
+
+     means the combination of the Contributions of others (if any) used by a
+     Contributor and that particular Contributor's Contribution.
+
+1.3. "Contribution"
+
+     means Covered Software of a particular Contributor.
+
+1.4. "Covered Software"
+
+     means Source Code Form to which the initial Contributor has attached the
+     notice in Exhibit A, the Executable Form of such Source Code Form, and
+     Modifications of such Source Code Form, in each case including portions
+     thereof.
+
+1.5. "Incompatible With Secondary Licenses"
+     means
+
+     a. that the initial Contributor has attached the notice described in
+        Exhibit B to the Covered Software; or
+
+     b. that the Covered Software was made available under the terms of
+        version 1.1 or earlier of the License, but not also under the terms of
+        a Secondary License.
+
+1.6. "Executable Form"
+
+     means any form of the work other than Source Code Form.
+
+1.7. "Larger Work"
+
+     means a work that combines Covered Software with other material, in a
+     separate file or files, that is not Covered Software.
+
+1.8. "License"
+
+     means this document.
+
+1.9. "Licensable"
+
+     means having the right to grant, to the maximum extent possible, whether
+     at the time of the initial grant or subsequently, any and all of the
+     rights conveyed by this License.
+
+1.10. "Modifications"
+
+     means any of the following:
+
+     a. any file in Source Code Form that results from an addition to,
+        deletion from, or modification of the contents of Covered Software; or
+
+     b. any new file in Source Code Form that contains any Covered Software.
+
+1.11. "Patent Claims" of a Contributor
+
+      means any patent claim(s), including without limitation, method,
+      process, and apparatus claims, in any patent Licensable by such
+      Contributor that would be infringed, but for the grant of the License,
+      by the making, using, selling, offering for sale, having made, import,
+      or transfer of either its Contributions or its Contributor Version.
+
+1.12. "Secondary License"
+
+      means either the GNU General Public License, Version 2.0, the GNU Lesser
+      General Public License, Version 2.1, the GNU Affero General Public
+      License, Version 3.0, or any later versions of those licenses.
+
+1.13. "Source Code Form"
+
+      means the form of the work preferred for making modifications.
+
+1.14. "You" (or "Your")
+
+      means an individual or a legal entity exercising rights under this
+      License. For legal entities, "You" includes any entity that controls, is
+      controlled by, or is under common control with You. For purposes of this
+      definition, "control" means (a) the power, direct or indirect, to cause
+      the direction or management of such entity, whether by contract or
+      otherwise, or (b) ownership of more than fifty percent (50%) of the
+      outstanding shares or beneficial ownership of such entity.
+
+
+2. License Grants and Conditions
+
+2.1. Grants
+
+     Each Contributor hereby grants You a world-wide, royalty-free,
+     non-exclusive license:
+
+     a. under intellectual property rights (other than patent or trademark)
+        Licensable by such Contributor to use, reproduce, make available,
+        modify, display, perform, distribute, and otherwise exploit its
+        Contributions, either on an unmodified basis, with Modifications, or
+        as part of a Larger Work; and
+
+     b. under Patent Claims of such Contributor to make, use, sell, offer for
+        sale, have made, import, and otherwise transfer either its
+        Contributions or its Contributor Version.
+
+2.2. Effective Date
+
+     The licenses granted in Section 2.1 with respect to any Contribution
+     become effective for each Contribution on the date the Contributor first
+     distributes such Contribution.
+
+2.3. Limitations on Grant Scope
+
+     The licenses granted in this Section 2 are the only rights granted under
+     this License. No additional rights or licenses will be implied from the
+     distribution or licensing of Covered Software under this License.
+     Notwithstanding Section 2.1(b) above, no patent license is granted by a
+     Contributor:
+
+     a. for any code that a Contributor has removed from Covered Software; or
+
+     b. for infringements caused by: (i) Your and any other third party's
+        modifications of Covered Software, or (ii) the combination of its
+        Contributions with other software (except as part of its Contributor
+        Version); or
+
+     c. under Patent Claims infringed by Covered Software in the absence of
+        its Contributions.
+
+     This License does not grant any rights in the trademarks, service marks,
+     or logos of any Contributor (except as may be necessary to comply with
+     the notice requirements in Section 3.4).
+
+2.4. Subsequent Licenses
+
+     No Contributor makes additional grants as a result of Your choice to
+     distribute the Covered Software under a subsequent version of this
+     License (see Section 10.2) or under the terms of a Secondary License (if
+     permitted under the terms of Section 3.3).
+
+2.5. Representation
+
+     Each Contributor represents that the Contributor believes its
+     Contributions are its original creation(s) or it has sufficient rights to
+     grant the rights to its Contributions conveyed by this License.
+
+2.6. Fair Use
+
+     This License is not intended to limit any rights You have under
+     applicable copyright doctrines of fair use, fair dealing, or other
+     equivalents.
+
+2.7. Conditions
+
+     Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
+     Section 2.1.
+
+
+3. Responsibilities
+
+3.1. Distribution of Source Form
+
+     All distribution of Covered Software in Source Code Form, including any
+     Modifications that You create or to which You contribute, must be under
+     the terms of this License. You must inform recipients that the Source
+     Code Form of the Covered Software is governed by the terms of this
+     License, and how they can obtain a copy of this License. You may not
+     attempt to alter or restrict the recipients' rights in the Source Code
+     Form.
+
+3.2. Distribution of Executable Form
+
+     If You distribute Covered Software in Executable Form then:
+
+     a. such Covered Software must also be made available in Source Code Form,
+        as described in Section 3.1, and You must inform recipients of the
+        Executable Form how they can obtain a copy of such Source Code Form by
+        reasonable means in a timely manner, at a charge no more than the cost
+        of distribution to the recipient; and
+
+     b. You may distribute such Executable Form under the terms of this
+        License, or sublicense it under different terms, provided that the
+        license for the Executable Form does not attempt to limit or alter the
+        recipients' rights in the Source Code Form under this License.
+
+3.3. Distribution of a Larger Work
+
+     You may create and distribute a Larger Work under terms of Your choice,
+     provided that You also comply with the requirements of this License for
+     the Covered Software. If the Larger Work is a combination of Covered
+     Software with a work governed by one or more Secondary Licenses, and the
+     Covered Software is not Incompatible With Secondary Licenses, this
+     License permits You to additionally distribute such Covered Software
+     under the terms of such Secondary License(s), so that the recipient of
+     the Larger Work may, at their option, further distribute the Covered
+     Software under the terms of either this License or such Secondary
+     License(s).
+
+3.4. Notices
+
+     You may not remove or alter the substance of any license notices
+     (including copyright notices, patent notices, disclaimers of warranty, or
+     limitations of liability) contained within the Source Code Form of the
+     Covered Software, except that You may alter any license notices to the
+     extent required to remedy known factual inaccuracies.
+
+3.5. Application of Additional Terms
+
+     You may choose to offer, and to charge a fee for, warranty, support,
+     indemnity or liability obligations to one or more recipients of Covered
+     Software. However, You may do so only on Your own behalf, and not on
+     behalf of any Contributor. You must make it absolutely clear that any
+     such warranty, support, indemnity, or liability obligation is offered by
+     You alone, and You hereby agree to indemnify every Contributor for any
+     liability incurred by such Contributor as a result of warranty, support,
+     indemnity or liability terms You offer. You may include additional
+     disclaimers of warranty and limitations of liability specific to any
+     jurisdiction.
+
+4. Inability to Comply Due to Statute or Regulation
+
+   If it is impossible for You to comply with any of the terms of this License
+   with respect to some or all of the Covered Software due to statute,
+   judicial order, or regulation then You must: (a) comply with the terms of
+   this License to the maximum extent possible; and (b) describe the
+   limitations and the code they affect. Such description must be placed in a
+   text file included with all distributions of the Covered Software under
+   this License. Except to the extent prohibited by statute or regulation,
+   such description must be sufficiently detailed for a recipient of ordinary
+   skill to be able to understand it.
+
+5. Termination
+
+5.1. The rights granted under this License will terminate automatically if You
+     fail to comply with any of its terms. However, if You become compliant,
+     then the rights granted under this License from a particular Contributor
+     are reinstated (a) provisionally, unless and until such Contributor
+     explicitly and finally terminates Your grants, and (b) on an ongoing
+     basis, if such Contributor fails to notify You of the non-compliance by
+     some reasonable means prior to 60 days after You have come back into
+     compliance. Moreover, Your grants from a particular Contributor are
+     reinstated on an ongoing basis if such Contributor notifies You of the
+     non-compliance by some reasonable means, this is the first time You have
+     received notice of non-compliance with this License from such
+     Contributor, and You become compliant prior to 30 days after Your receipt
+     of the notice.
+
+5.2. If You initiate litigation against any entity by asserting a patent
+     infringement claim (excluding declaratory judgment actions,
+     counter-claims, and cross-claims) alleging that a Contributor Version
+     directly or indirectly infringes any patent, then the rights granted to
+     You by any and all Contributors for the Covered Software under Section
+     2.1 of this License shall terminate.
+
+5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user
+     license agreements (excluding distributors and resellers) which have been
+     validly granted by You or Your distributors under this License prior to
+     termination shall survive termination.
+
+6. Disclaimer of Warranty
+
+   Covered Software is provided under this License on an "as is" basis,
+   without warranty of any kind, either expressed, implied, or statutory,
+   including, without limitation, warranties that the Covered Software is free
+   of defects, merchantable, fit for a particular purpose or non-infringing.
+   The entire risk as to the quality and performance of the Covered Software
+   is with You. Should any Covered Software prove defective in any respect,
+   You (not any Contributor) assume the cost of any necessary servicing,
+   repair, or correction. This disclaimer of warranty constitutes an essential
+   part of this License. No use of  any Covered Software is authorized under
+   this License except under this disclaimer.
+
+7. Limitation of Liability
+
+   Under no circumstances and under no legal theory, whether tort (including
+   negligence), contract, or otherwise, shall any Contributor, or anyone who
+   distributes Covered Software as permitted above, be liable to You for any
+   direct, indirect, special, incidental, or consequential damages of any
+   character including, without limitation, damages for lost profits, loss of
+   goodwill, work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses, even if such party shall have been
+   informed of the possibility of such damages. This limitation of liability
+   shall not apply to liability for death or personal injury resulting from
+   such party's negligence to the extent applicable law prohibits such
+   limitation. Some jurisdictions do not allow the exclusion or limitation of
+   incidental or consequential damages, so this exclusion and limitation may
+   not apply to You.
+
+8. Litigation
+
+   Any litigation relating to this License may be brought only in the courts
+   of a jurisdiction where the defendant maintains its principal place of
+   business and such litigation shall be governed by laws of that
+   jurisdiction, without reference to its conflict-of-law provisions. Nothing
+   in this Section shall prevent a party's ability to bring cross-claims or
+   counter-claims.
+
+9. Miscellaneous
+
+   This License represents the complete agreement concerning the subject
+   matter hereof. If any provision of this License is held to be
+   unenforceable, such provision shall be reformed only to the extent
+   necessary to make it enforceable. Any law or regulation which provides that
+   the language of a contract shall be construed against the drafter shall not
+   be used to construe this License against a Contributor.
+
+
+10. Versions of the License
+
+10.1. New Versions
+
+      Mozilla Foundation is the license steward. Except as provided in Section
+      10.3, no one other than the license steward has the right to modify or
+      publish new versions of this License. Each version will be given a
+      distinguishing version number.
+
+10.2. Effect of New Versions
+
+      You may distribute the Covered Software under the terms of the version
+      of the License under which You originally received the Covered Software,
+      or under the terms of any subsequent version published by the license
+      steward.
+
+10.3. Modified Versions
+
+      If you create software not governed by this License, and you want to
+      create a new license for such software, you may create and use a
+      modified version of this License if you rename the license and remove
+      any references to the name of the license steward (except to note that
+      such modified license differs from this License).
+
+10.4. Distributing Source Code Form that is Incompatible With Secondary
+      Licenses If You choose to distribute Source Code Form that is
+      Incompatible With Secondary Licenses under the terms of this version of
+      the License, the notice described in Exhibit B of this License must be
+      attached.
+
+Exhibit A - Source Code Form License Notice
+
+      This Source Code Form is subject to the
+      terms of the Mozilla Public License, v.
+      2.0. If a copy of the MPL was not
+      distributed with this file, You can
+      obtain one at
+      http://mozilla.org/MPL/2.0/.
+
+If it is not possible or desirable to put the notice in a particular file,
+then You may include the notice in a location (such as a LICENSE file in a
+relevant directory) where a recipient would be likely to look for such a
+notice.
+
+You may add additional accurate notices of copyright ownership.
+
+Exhibit B - "Incompatible With Secondary Licenses" Notice
+
+      This Source Code Form is "Incompatible
+      With Secondary Licenses", as defined by
+      the Mozilla Public License, v. 2.0.
diff --git a/public/opac/TimelineJS3-3.5.1/README.md b/public/opac/TimelineJS3-3.5.1/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..41db5ab255016d7b92fa2807ae9f330b3c25da02
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/README.md
@@ -0,0 +1,37 @@
+#TimelineJS3
+============
+
+TimelineJS v3: A Storytelling Timeline built in JavaScript.  https://timeline.knightlab.com
+
+## Overview
+
+TimelineJS 3 is a rewrite of the popular Timeline JS software. Please be clear that this is software which "does" the same thing, but it isn't the same software, so some details will vary. See https://timeline.knightlab.com for more information.
+
+## Getting Started
+
+The [official documentation for embedding a Timeline in your page instead of using an embed](https://timeline.knightlab.com/docs/instantiate-a-timeline.html) is now maintained on the main TimelineJS website.
+
+
+## Options
+
+The [official documentation for configuration options](https://timeline.knightlab.com/docs/options.html) is now maintained on the main TimelineJS website.
+
+
+## Data file
+The [official documentation for the JSON format](https://timeline.knightlab.com/docs/json-format.html) is now maintained on the main TimelineJS website.
+
+
+## API
+See API doc here: https://github.com/NUKnightLab/TimelineJS3/blob/master/API.md
+
+## Media Types
+
+The [official documentation for available media types](https://timeline.knightlab.com/docs/media-types.html) is now maintained on the main TimelineJS website.
+
+
+
+### Extending Media Types
+* Create a new class for the media type in `source/js/media/type`. It's easiest to duplicate an existing one and change the filename and classname.
+* Add the new file to the code-kit compile list inside the main `TL.Timeline.js` file. Code-kit uses the following language to prepend the file to the compile `// @codekit-prepend "media/types/TL.Media.YourMediaTypeName.js";`
+* Add a new object to the `media_types` array in `source/js/media/TL.MediaType.js`. Make sure to have the correct class name in `cls` and use `match_str` as a regex to help timeline figure out what type of media the given url is.
+* If you want icons for the media to show up in the Timeline, then you will also need to add an icon class to `source/less/icons/Icons.less` that has the name `.tl-icon-yourmediatypename`.
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.abril-droidsans.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.abril-droidsans.css
new file mode 100644
index 0000000000000000000000000000000000000000..a13c70656ada1de60eb8cb16b1f28161e0540d8c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.abril-droidsans.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Droid+Sans:400,700|Abril+Fatface);.tl-timeline{font-family:'Droid Sans',sans-serif;font-weight:400;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Abril Fatface',cursive;text-transform:none;font-weight:700;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Droid Sans',sans-serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:'Droid Sans',sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Droid Sans',sans-serif;font-weight:700;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Droid Sans',sans-serif}.tl-timeline .vcard{font-family:'Droid Sans',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Droid Sans',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Droid Sans',sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Droid Sans',sans-serif;font-weight:700}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Droid Sans',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Droid Sans',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-menubar{font-family:'Droid Sans',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Droid Sans',sans-serif;font-style:normal;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Abril Fatface',cursive;text-transform:none;font-weight:700;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.amatic-andika.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.amatic-andika.css
new file mode 100644
index 0000000000000000000000000000000000000000..c0412db1aab78bfcb2670c0a509a9e818ca33d80
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.amatic-andika.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Andika|Amatic+SC:700,400);.tl-timeline{font-family:'Andika',sans-serif;font-weight:400;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Amatic SC',cursive;text-transform:none;font-weight:700;font-size:64px;line-height:64px}.tl-timeline h2.tl-headline-title{font-size:86px;line-height:86px}.tl-timeline p{font-family:'Andika',sans-serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:'Andika',sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Andika',sans-serif;font-weight:700;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Andika',sans-serif}.tl-timeline .vcard{font-family:'Andika',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Andika',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Andika',sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Andika',sans-serif;font-weight:700}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Andika',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Andika',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-menubar{font-family:'Andika',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Andika',sans-serif;font-style:normal;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Amatic SC',cursive;text-transform:none;font-weight:700;font-size:64px;line-height:64px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.bevan-pontanosans.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.bevan-pontanosans.css
new file mode 100644
index 0000000000000000000000000000000000000000..7338da3d6703ae802002e96c967cc34450967dac
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.bevan-pontanosans.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(https://fonts.googleapis.com/css?family=Pontano+Sans|Bevan);.tl-timeline{font-family:'Pontano Sans',sans-serif;font-weight:400;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Bevan',cursive;text-transform:none;font-weight:400;font-size:38px;line-height:38px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Pontano Sans',sans-serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Pontano Sans',sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Pontano Sans',sans-serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Pontano Sans',sans-serif}.tl-timeline .vcard{font-family:'Pontano Sans',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Pontano Sans',sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Pontano Sans',sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Pontano Sans',sans-serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Pontano Sans',sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Pontano Sans',sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-menubar{font-family:'Pontano Sans',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Pontano Sans',sans-serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Bevan',cursive;text-transform:none;font-weight:400;font-size:38px;line-height:38px}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{margin-bottom:10px !important}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.bitter-raleway.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.bitter-raleway.css
new file mode 100644
index 0000000000000000000000000000000000000000..1e5d17c9b7268d1446a212d20c284cfa53c5da1a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.bitter-raleway.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Bitter:700|Raleway:200,300,700);.tl-timeline{font-family:'Raleway',sans-serif;font-weight:300;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Bitter',serif;text-transform:none;font-weight:700;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Raleway',sans-serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:'Raleway',sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Raleway',sans-serif;font-weight:700;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Raleway',sans-serif}.tl-timeline .vcard{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:700}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Bitter',serif;font-weight:700;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-menubar{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Raleway',sans-serif;font-style:italic;font-weight:200;line-height:1.3}input[type="text"].editor-headline{font-family:'Bitter',serif;text-transform:none;font-weight:700;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.clicker-garamond.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.clicker-garamond.css
new file mode 100644
index 0000000000000000000000000000000000000000..7af664d34ca528ef1fec20c1f52656619052a453
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.clicker-garamond.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Clicker+Script|EB+Garamond);.tl-timeline{font-family:'EB Garamond',serif;font-weight:400;font-size:18px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Clicker Script',cursive;text-transform:none;font-weight:400;font-size:58px;line-height:58px}.tl-timeline h2.tl-headline-title{font-size:64px;line-height:64px}.tl-timeline p{font-family:'EB Garamond',serif;font-size:18px;line-height:1.3em}.tl-timeline ul{font-family:'EB Garamond',serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'EB Garamond',serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'EB Garamond',serif}.tl-timeline .vcard{font-family:'EB Garamond',serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'EB Garamond',serif;font-weight:400;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'EB Garamond',serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'EB Garamond',serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'EB Garamond',serif;font-weight:400;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'EB Garamond',serif;font-weight:400;text-transform:none}.tl-timeline .tl-menubar{font-family:'EB Garamond',serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'EB Garamond',serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Clicker Script',cursive;text-transform:none;font-weight:400;font-size:58px;line-height:58px}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{margin-bottom:10px !important}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.dancing-ledger.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.dancing-ledger.css
new file mode 100644
index 0000000000000000000000000000000000000000..4ac6e15e3f10fce817a8a2680ceba2d82878462a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.dancing-ledger.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Dancing+Script:700,400|Ledger);.tl-timeline{font-family:'Ledger',serif;font-weight:400;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Dancing Script',cursive;text-transform:none;font-weight:700;font-size:58px;line-height:58px}.tl-timeline h2.tl-headline-title{font-size:68px;line-height:68px}.tl-timeline p{font-family:'Ledger',serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:'Ledger',serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Ledger',serif;font-weight:700;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Ledger',serif}.tl-timeline .vcard{font-family:'Ledger',serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Ledger',serif;font-weight:700;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Ledger',serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Ledger',serif;font-weight:700}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Dancing Script',cursive;font-weight:700;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Ledger',serif;font-weight:700;text-transform:none}.tl-timeline .tl-menubar{font-family:'Ledger',serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Ledger',serif;font-style:normal;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Dancing Script',cursive;text-transform:none;font-weight:700;font-size:58px;line-height:58px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.default.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.default.css
new file mode 100644
index 0000000000000000000000000000000000000000..558bd53b670bcfaffb693f7e9fbb6269c5eeb295
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.default.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Narrow:700|PT+Serif:400,400italic);.tl-timeline{font-family:'PT Serif',serif;font-weight:400;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'PT Sans Narrow',sans-serif;text-transform:uppercase;font-weight:700;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'PT Serif',serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:'PT Serif',serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'PT Serif',serif;font-weight:700;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'PT Serif',serif}.tl-timeline .vcard{font-family:'PT Sans Narrow',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'PT Sans Narrow',sans-serif;font-weight:700;text-transform:uppercase}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'PT Sans Narrow',sans-serif !important;font-weight:normal !important;text-transform:uppercase !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'PT Sans Narrow',sans-serif;font-weight:700}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'PT Sans',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'PT Sans Narrow',sans-serif;font-weight:700;text-transform:uppercase}.tl-timeline .tl-menubar{font-family:'PT Sans Narrow',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'PT Serif',serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'PT Sans Narrow',sans-serif;text-transform:uppercase;font-weight:700;font-size:46px;line-height:46px}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-weight:normal}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.fjalla-average.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.fjalla-average.css
new file mode 100644
index 0000000000000000000000000000000000000000..defd6dfaddd586f50e3975772a7eeb3813c02202
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.fjalla-average.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Average+Sans|Fjalla+One);.tl-timeline{font-family:'Average Sans',sans-serif;font-weight:400;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Fjalla One',sans-serif;text-transform:none;font-weight:400;font-size:46px;line-height:1.1em}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Average Sans',sans-serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Average Sans',sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Average Sans',sans-serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Average Sans',sans-serif}.tl-timeline .vcard{font-family:'Average Sans',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Average Sans',sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Average Sans',sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Average Sans',sans-serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Average Sans',sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Average Sans',sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-menubar{font-family:'Average Sans',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Average Sans',sans-serif;font-style:normal;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Fjalla One',sans-serif;text-transform:none;font-weight:400;font-size:46px;line-height:46px}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{margin-bottom:10px !important}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.georgia-helvetica.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.georgia-helvetica.css
new file mode 100644
index 0000000000000000000000000000000000000000..ef2e1aae0f6e44edafcc473f159b9a5dfc0d1a81
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.georgia-helvetica.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+.tl-timeline{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:Georgia,Times,serif;text-transform:normal;font-weight:800;font-size:42px;line-height:42px}.tl-timeline h2.tl-headline-title{font-size:46px;line-height:46px}.tl-timeline p{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:800;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline .vcard{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:800;text-transform:normal}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important;text-transform:normal !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:800}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:Georgia,Times,serif;font-weight:800;text-transform:normal}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:800;text-transform:normal}.tl-timeline .tl-menubar{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:Georgia,Times,serif;text-transform:normal;font-weight:800;font-size:42px;line-height:42px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.knightlab.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.knightlab.css
new file mode 100644
index 0000000000000000000000000000000000000000..3f3b45c3288c4de26ac01b286b58e300da64016b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.knightlab.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//cloud.webtype.com/css/d4767ecb-457a-4677-8761-72f890add836.css);.tl-timeline{font-family:"Turnip RE",Georgia,"Times New Roman",Times,serif;font-weight:400;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:"Salvo Serif Cond",Georgia,"Times New Roman",Times,serif;text-transform:none;font-weight:400;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:"Turnip RE",Georgia,"Times New Roman",Times,serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:"Turnip RE",Georgia,"Times New Roman",Times,serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:"Turnip RE",Georgia,"Times New Roman",Times,serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:"Turnip RE",Georgia,"Times New Roman",Times,serif}.tl-timeline .vcard{font-family:"Apres RE","Helvetica Neue",Helvetica,Arial,sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:"Apres RE","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:"Apres RE","Helvetica Neue",Helvetica,Arial,sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:"Apres RE","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:"Salvo Serif Cond",Georgia,"Times New Roman",Times,serif;font-weight:400;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:"Apres RE","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-menubar{font-family:"Apres RE","Helvetica Neue",Helvetica,Arial,sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:"Turnip RE",Georgia,"Times New Roman",Times,serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:"Salvo Serif Cond",Georgia,"Times New Roman",Times,serif;text-transform:none;font-weight:400;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.lustria-lato.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.lustria-lato.css
new file mode 100644
index 0000000000000000000000000000000000000000..ecf788329b3f3a74d2d991f0d6c568d75da953e7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.lustria-lato.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Lustria|Lato:400,400italic);.tl-timeline{font-family:'Lato',sans-serif;font-weight:400;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Lustria',serif;text-transform:none;font-weight:400;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Lato',sans-serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Lato',sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Lato',sans-serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Lato',sans-serif}.tl-timeline .vcard{font-family:'Lato',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Lato',sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Lato',sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Lato',sans-serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Lustria',serif;font-weight:400;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Lato',sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-menubar{font-family:'Lato',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Lato',sans-serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Lustria',serif;text-transform:none;font-weight:400;font-size:46px;line-height:46px}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{margin-bottom:10px !important}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.medula-lato.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.medula-lato.css
new file mode 100644
index 0000000000000000000000000000000000000000..833b6d52dd26a0d6e171952fabde7924e5eb1f4a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.medula-lato.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Lato:400,700,300italic|Medula+One);.tl-timeline{font-family:'Lato',sans-serif;font-weight:400;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Medula One',cursive;text-transform:none;font-weight:700;font-size:58px;line-height:58px}.tl-timeline h2.tl-headline-title{font-size:72px;line-height:72px}.tl-timeline p{font-family:'Lato',sans-serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:'Lato',sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Lato',sans-serif;font-weight:700;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Lato',sans-serif}.tl-timeline .vcard{font-family:'Lato',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Lato',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Lato',sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Lato',sans-serif;font-weight:700}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Lato',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Lato',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-menubar{font-family:'Lato',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Lato',sans-serif;font-style:italic;font-weight:300;line-height:1.3}input[type="text"].editor-headline{font-family:'Medula One',cursive;text-transform:none;font-weight:700;font-size:58px;line-height:58px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.oldstandard.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.oldstandard.css
new file mode 100644
index 0000000000000000000000000000000000000000..bc43611d405d6b780fcf1d804bff130fc5d54ec3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.oldstandard.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Old+Standard+TT:400,400italic);.tl-timeline{font-family:'Old Standard TT',serif;font-weight:400;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Old Standard TT',serif;text-transform:uppercase;font-weight:400;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:52px;line-height:52px}.tl-timeline p{font-family:'Old Standard TT',serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:'Old Standard TT',serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Old Standard TT',serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Old Standard TT',serif}.tl-timeline .vcard{font-family:'Old Standard TT',serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Old Standard TT',serif;font-weight:400;text-transform:uppercase}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Old Standard TT',serif !important;font-weight:normal !important;text-transform:uppercase !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Old Standard TT',serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Old Standard TT',serif;font-weight:400;text-transform:uppercase}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Old Standard TT',serif;font-weight:400;text-transform:uppercase}.tl-timeline .tl-menubar{font-family:'Old Standard TT',serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Old Standard TT',serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Old Standard TT',serif;text-transform:uppercase;font-weight:400;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.opensans-gentiumbook.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.opensans-gentiumbook.css
new file mode 100644
index 0000000000000000000000000000000000000000..d94fdbb91617e3d41a4eb1162a21b7d865e0626d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.opensans-gentiumbook.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Open+Sans:800,400|Gentium+Book+Basic:400,400italic);.tl-timeline{font-family:'Gentium Book Basic',serif;font-weight:400;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Open Sans',sans-serif;text-transform:none;font-weight:800;font-size:40px;line-height:40px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Gentium Book Basic',serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Gentium Book Basic',serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Gentium Book Basic',serif;font-weight:800;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Gentium Book Basic',serif}.tl-timeline .vcard{font-family:'Open Sans',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Open Sans',sans-serif;font-weight:800;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Open Sans',sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Open Sans',sans-serif;font-weight:800}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Open Sans',sans-serif;font-weight:800;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Open Sans',sans-serif;font-weight:800;text-transform:none}.tl-timeline .tl-menubar{font-family:'Open Sans',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Gentium Book Basic',serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Open Sans',sans-serif;text-transform:none;font-weight:800;font-size:40px;line-height:40px}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{margin-bottom:5px !important}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.playfair-faunaone.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.playfair-faunaone.css
new file mode 100644
index 0000000000000000000000000000000000000000..9b880a0e090eaec69dda55a865c74268af02a181
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.playfair-faunaone.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Playfair+Display:400,700|Playfair+Display+SC);@import url(//fonts.googleapis.com/css?family=Fauna+One);@import url(//fonts.googleapis.com/css?family=Unica+One);.tl-timeline{font-family:'Fauna One',serif;font-weight:400;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Playfair Display',Georgia,serif;text-transform:uppercase;font-weight:400;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Fauna One',serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Fauna One',serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Fauna One',serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Fauna One',serif}.tl-timeline .vcard{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:uppercase}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important;text-transform:uppercase !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Playfair Display',Georgia,serif;font-weight:400;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:uppercase}.tl-timeline .tl-menubar{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Fauna One',serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Playfair Display',Georgia,serif;text-transform:uppercase;font-weight:400;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.playfair.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.playfair.css
new file mode 100644
index 0000000000000000000000000000000000000000..496cee8493cc28952f44a053c7034e688a53b79e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.playfair.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Playfair+Display:400,700|Playfair+Display+SC);.tl-timeline{font-family:'Playfair Display',serif;font-weight:400;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Playfair Display SC',serif;text-transform:none;font-weight:400;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Playfair Display',serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Playfair Display',serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Playfair Display',serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Playfair Display',serif}.tl-timeline .vcard{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Playfair Display SC',serif;font-weight:400;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:none}.tl-timeline .tl-menubar{font-family:'Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Playfair Display',serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Playfair Display SC',serif;text-transform:none;font-weight:400;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.pt.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.pt.css
new file mode 100644
index 0000000000000000000000000000000000000000..558bd53b670bcfaffb693f7e9fbb6269c5eeb295
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.pt.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Narrow:700|PT+Serif:400,400italic);.tl-timeline{font-family:'PT Serif',serif;font-weight:400;font-size:16px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'PT Sans Narrow',sans-serif;text-transform:uppercase;font-weight:700;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'PT Serif',serif;font-size:16px;line-height:1.3em}.tl-timeline ul{font-family:'PT Serif',serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'PT Serif',serif;font-weight:700;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'PT Serif',serif}.tl-timeline .vcard{font-family:'PT Sans Narrow',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'PT Sans Narrow',sans-serif;font-weight:700;text-transform:uppercase}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'PT Sans Narrow',sans-serif !important;font-weight:normal !important;text-transform:uppercase !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'PT Sans Narrow',sans-serif;font-weight:700}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'PT Sans',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'PT Sans Narrow',sans-serif;font-weight:700;text-transform:uppercase}.tl-timeline .tl-menubar{font-family:'PT Sans Narrow',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'PT Serif',serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'PT Sans Narrow',sans-serif;text-transform:uppercase;font-weight:700;font-size:46px;line-height:46px}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-weight:normal}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.roboto-megrim.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.roboto-megrim.css
new file mode 100644
index 0000000000000000000000000000000000000000..5bc859acd586516d190a7e17b4e177f63265920b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.roboto-megrim.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Megrim);@import url(//fonts.googleapis.com/css?family=Roboto+Slab:400,300);.tl-timeline{font-family:'Roboto Slab',Georgia,serif;font-weight:300;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Megrim','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;text-transform:normal;font-weight:400;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Roboto Slab',Georgia,serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Roboto Slab',Georgia,serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Roboto Slab',Georgia,serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Roboto Slab',Georgia,serif}.tl-timeline .vcard{font-family:'Megrim','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Megrim','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:normal}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Roboto Slab',Georgia,serif !important;font-weight:normal !important;text-transform:normal !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Megrim','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Megrim','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:normal}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Megrim','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:normal}.tl-timeline .tl-menubar{font-family:'Megrim','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Roboto Slab',Georgia,serif;font-style:normal;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Megrim','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;text-transform:normal;font-weight:400;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.rufina-sintony.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.rufina-sintony.css
new file mode 100644
index 0000000000000000000000000000000000000000..a7ffa794c248ca94aebc2f3324efdda3e3b6cb2b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.rufina-sintony.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Rufina:400,700|Sintony:400,700);.tl-timeline{font-family:'Sintony',sans-serif;font-weight:400;font-size:15px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Rufina',serif;text-transform:none;font-weight:700;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Sintony',sans-serif;font-size:15px;line-height:1.3em}.tl-timeline ul{font-family:'Sintony',sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Sintony',sans-serif;font-weight:700;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Sintony',sans-serif}.tl-timeline .vcard{font-family:'Sintony',sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Sintony',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Sintony',sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Sintony',sans-serif;font-weight:700}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Sintony',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Sintony',sans-serif;font-weight:700;text-transform:none}.tl-timeline .tl-menubar{font-family:'Sintony',sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Sintony',sans-serif;font-style:normal;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Rufina',serif;text-transform:none;font-weight:700;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.ubuntu.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.ubuntu.css
new file mode 100644
index 0000000000000000000000000000000000000000..1c8924b34679a4a2d8e69b28e5e6c688d9ed6e11
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.ubuntu.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Ubuntu:300,500,300italic);.tl-timeline{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:300;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;text-transform:none;font-weight:500;font-size:40px;line-height:40px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:500;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline .vcard{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:500;text-transform:none}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important;text-transform:none !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:500}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:500;text-transform:none}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:500;text-transform:none}.tl-timeline .tl-menubar{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-style:italic;font-weight:300;line-height:1.3}input[type="text"].editor-headline{font-family:'Ubuntu','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;text-transform:none;font-weight:500;font-size:40px;line-height:40px}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{margin-bottom:5px !important}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.unicaone-vollkorn.css b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.unicaone-vollkorn.css
new file mode 100644
index 0000000000000000000000000000000000000000..5bff64e71b8f6f51ccfa2f8128f2680b5952fefe
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/fonts/font.unicaone-vollkorn.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+@import url(//fonts.googleapis.com/css?family=Vollkorn:400italic,400);@import url(//fonts.googleapis.com/css?family=Unica+One);.tl-timeline{font-family:'Vollkorn',Georgia,serif;font-weight:400;font-size:17px;line-height:1.3em}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;text-transform:uppercase;font-weight:400;font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title{font-size:58px;line-height:58px}.tl-timeline p{font-family:'Vollkorn',Georgia,serif;font-size:17px;line-height:1.3em}.tl-timeline ul{font-family:'Vollkorn',Georgia,serif}.tl-timeline .tl-media .tl-media-wikipedia h4 a,.tl-timeline .tl-media h4,.tl-timeline .tl-media h4 a{font-family:'Vollkorn',Georgia,serif;font-weight:400;font-size:24px;line-height:24px}.tl-timeline .tl-caption,.tl-timeline .tl-credit{font-family:'Vollkorn',Georgia,serif}.tl-timeline .vcard{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important}.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous,.tl-timeline .tl-message,.tl-timeline .tl-timegroup-message{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:uppercase}.tl-timeline .tl-slidenav-next .tl-slidenav-title,.tl-timeline .tl-slidenav-previous .tl-slidenav-title,.tl-timeline .tl-message .tl-slidenav-title,.tl-timeline .tl-timegroup-message .tl-slidenav-title{line-height:1.3em !important}.tl-timeline .tl-headline-date,.tl-timeline h3.tl-headline-date{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif !important;font-weight:normal !important;text-transform:uppercase !important}.tl-timeline .tl-headline-date small,.tl-timeline h3.tl-headline-date small{font-weight:normal !important}.tl-timeline .tl-timenav-slider{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400}.tl-timeline .tl-timenav-slider h2.tl-headline{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:uppercase}.tl-timeline .tl-timenav-slider .tl-timeaxis{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;font-weight:400;text-transform:uppercase}.tl-timeline .tl-menubar{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:'Vollkorn',Georgia,serif;font-style:italic;font-weight:400;line-height:1.3}input[type="text"].editor-headline{font-family:'Unica One','Helvetica Neue',Helvetica,Arial,"MS Trebuchet",sans-serif;text-transform:uppercase;font-weight:400;font-size:46px;line-height:46px}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/icons/icons.html b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/icons.html
new file mode 100644
index 0000000000000000000000000000000000000000..91f02997069e0450765c7f1edd36cd08287305f8
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/icons.html
@@ -0,0 +1,1117 @@
+<!doctype html>
+<html>
+<head>
+	<meta charset="utf-8">
+	<title>IcoMoon Demo</title>
+	<meta name="description" content="An Icon Font Generated By IcoMoon.io">
+	<meta name="viewport" content="width=device-width">
+	<style>
+		body {
+			padding: 0;
+			margin: 0;
+			font-family: sans-serif;
+			font-size: 1em;
+			line-height: 1.5;
+			color: #555;
+			background: #fff;
+		}
+		h1 {
+			font-size: 1.5em;
+			font-weight: normal;
+		}
+		small {
+			font-size: .66666667em;
+		}
+		a {
+			color: #e74c3c;
+			text-decoration: none;
+		}
+		a:hover, a:focus {
+			box-shadow: 0 1px #e74c3c;
+		}
+		.bshadow0, input {
+			box-shadow: inset 0 -2px #e7e7e7;
+		}
+		input:hover {
+			box-shadow: inset 0 -2px #ccc;
+		}
+		input, fieldset {
+			font-size: 1em;
+			margin: 0;
+			padding: 0;
+			border: 0;
+		}
+		input {
+			color: inherit;
+			line-height: 1.5;
+			height: 1.5em;
+			padding: .25em 0;
+		}
+		input:focus {
+			outline: none;
+			box-shadow: inset 0 -2px #449fdb;
+		}
+		.glyph {
+			font-size: 16px;
+			width: 15em;
+			padding-bottom: 1em;
+			margin-right: 4em;
+			margin-bottom: 1em;
+			float: left;
+			overflow: hidden;
+		}
+		.liga {
+			width: 80%;
+			width: calc(100% - 2.5em);
+		}
+		.talign-right {
+			text-align: right;
+		}
+		.talign-center {
+			text-align: center;
+		}
+		.bgc1 {
+			background: #f1f1f1;
+		}
+		.fgc1 {
+			color: #999;
+		}
+		.fgc0 {
+			color: #000;
+		}
+		p {
+			margin-top: 1em;
+			margin-bottom: 1em;
+		}
+		.mvm {
+			margin-top: .75em;
+			margin-bottom: .75em;
+		}
+		.mtn {
+			margin-top: 0;
+		}
+		.mtl, .mal {
+			margin-top: 1.5em;
+		}
+		.mbl, .mal {
+			margin-bottom: 1.5em;
+		}
+		.mal, .mhl {
+			margin-left: 1.5em;
+			margin-right: 1.5em;
+		}
+		.mhmm {
+			margin-left: 1em;
+			margin-right: 1em;
+		}
+		.mls {
+			margin-left: .25em;
+		}
+		.ptl {
+			padding-top: 1.5em;
+		}
+		.pbs, .pvs {
+			padding-bottom: .25em;
+		}
+		.pvs, .pts {
+			padding-top: .25em;
+		}
+		.clearfix {
+			zoom: 1;
+		}
+		.unit {
+			float: left;
+		}
+		.unitRight {
+			float: right;
+		}
+		.size1of2 {
+			width: 50%;
+		}
+		.size1of1 {
+			width: 100%;
+		}
+		.clearfix:before, .clearfix:after {
+			content: " ";
+			display: table;
+		}
+		.clearfix:after {
+			clear: both;
+		}
+		.noLiga-true {
+			display: none;
+		}
+		.textbox0 {
+			width: 3em;
+			background: #f1f1f1;
+			padding: .25em .5em;
+			line-height: 1.5;
+			height: 1.5em;
+		}
+		#testDrive {
+			padding-top: 24px;
+		}
+		.fs0 {
+			font-size: 16px;
+		}
+		.fs1 {
+			font-size: 32px;
+		}
+		.fs2 {
+			font-size: 32px;
+		}
+		.fs3 {
+			font-size: 32px;
+		}
+		.fs4 {
+			font-size: 32px;
+		}
+		
+		@font-face {
+			font-family: 'tl-icons';
+			src:url('fonts/tl-icons.eot');
+			src:url('fonts/tl-icons.eot?#iefix') format('embedded-opentype'),
+				url('fonts/tl-icons.ttf') format('truetype'),
+				url('fonts/tl-icons.woff') format('woff'),
+				url('fonts/tl-icons.svg#tl-icons') format('svg');
+			font-weight: normal;
+			font-style: normal;
+		}
+
+		[class^="tl-icon-"], [class*=" tl-icon-"] {
+			font-family: 'tl-icons';
+			speak: none;
+			font-style: normal;
+			font-weight: normal;
+			font-variant: normal;
+			text-transform: none;
+			line-height: 1;
+
+			/* Better Font Rendering =========== */
+			-webkit-font-smoothing: antialiased;
+			-moz-osx-font-smoothing: grayscale;
+		}
+
+		.tl-icon-vine:before {
+			content: "\e64d";
+		}
+		.tl-icon-wikipedia:before {
+			content: "\e64e";
+		}
+		.tl-icon-chevron-right:before {
+			content: "\e64f";
+		}
+		.tl-icon-chevron-left:before {
+			content: "\e650";
+		}
+		.tl-icon-youtube:before {
+			content: "\e651";
+		}
+		.tl-icon-foursquare:before {
+			content: "\e652";
+		}
+		.tl-icon-camera-retro:before {
+			content: "\e653";
+		}
+		.tl-icon-doc:before {
+			content: "\e654";
+		}
+		.tl-icon-weibo:before {
+			content: "\e655";
+		}
+		.tl-icon-resize-horizontal:before {
+			content: "\e656";
+		}
+		.tl-icon-resize-vertical:before {
+			content: "\e657";
+		}
+		.tl-icon-resize-full:before {
+			content: "\e658";
+		}
+		.tl-icon-resize-small:before {
+			content: "\e659";
+		}
+		.tl-icon-twitter:before {
+			content: "\e62b";
+		}
+		.tl-icon-google-plus:before {
+			content: "\e62c";
+		}
+		.tl-icon-video:before {
+			content: "\e62d";
+		}
+		.tl-icon-plaintext:before {
+			content: "\e62e";
+		}
+		.tl-icon-image-v2:before {
+			content: "\e62f";
+		}
+		.tl-icon-quote-v2:before {
+			content: "\e630";
+		}
+		.tl-icon-zoom-in:before {
+			content: "\e631";
+		}
+		.tl-icon-zoom-out:before {
+			content: "\e632";
+		}
+		.tl-icon-list:before {
+			content: "\e633";
+		}
+		.tl-icon-music:before {
+			content: "\e634";
+		}
+		.tl-icon-location:before {
+			content: "\e635";
+		}
+		.tl-icon-web:before {
+			content: "\e636";
+		}
+		.tl-icon-share-v2:before {
+			content: "\e637";
+		}
+		.tl-icon-soundcloud:before {
+			content: "\e639";
+		}
+		.tl-icon-video-v2:before {
+			content: "\e63a";
+		}
+		.tl-icon-tumblr:before {
+			content: "\e63b";
+		}
+		.tl-icon-lastfm:before {
+			content: "\e63c";
+		}
+		.tl-icon-github:before {
+			content: "\e63d";
+		}
+		.tl-icon-goback:before {
+			content: "\e63e";
+		}
+		.tl-icon-doc-v2:before {
+			content: "\e63f";
+		}
+		.tl-icon-googledrive:before {
+			content: "\e640";
+		}
+		.tl-icon-facebook:before {
+			content: "\e641";
+		}
+		.tl-icon-flickr:before {
+			content: "\e642";
+		}
+		.tl-icon-dribbble:before {
+			content: "\e643";
+		}
+		.tl-icon-image:before {
+			content: "\e605";
+		}
+		.tl-icon-vimeo:before {
+			content: "\e606";
+		}
+		.tl-icon-instagram:before {
+			content: "\e644";
+		}
+		.tl-icon-pinterest:before {
+			content: "\e645";
+		}
+		.tl-icon-arrow-left:before {
+			content: "\e646";
+		}
+		.tl-icon-arrow-down:before {
+			content: "\e647";
+		}
+		.tl-icon-arrow-up:before {
+			content: "\e648";
+		}
+		.tl-icon-arrow-right:before {
+			content: "\e649";
+		}
+		.tl-icon-share:before {
+			content: "\e64a";
+		}
+		.tl-icon-quote:before {
+			content: "\e64b";
+		}
+		.tl-icon-evernote:before {
+			content: "\e64c";
+		}
+		.tl-icon-mappin:before {
+			content: "\e600";
+		}
+		.tl-icon-swipe-right:before {
+			content: "\e601";
+		}
+		.tl-icon-swipe-left:before {
+			content: "\e602";
+		}
+		.tl-icon-touch-spread:before {
+			content: "\e603";
+		}
+		.tl-icon-touch-pinch:before {
+			content: "\e604";
+		}
+
+		
+	</style>
+</head>
+	<body>
+		<div class="bgc1 clearfix">
+			<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> tl-icons <small class="fgc1">(Glyphs:&nbsp;53)</small></h1>
+		</div>
+		<div class="clearfix mhl ptl">
+			<h1 class="mvm mtn bshadow fgc1">Grid Size: 14</h1>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-vine"></span><span class="mls"> icon-vine</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64d" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64d;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-wikipedia"></span><span class="mls"> icon-wikipedia</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64e" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64e;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-chevron-right"></span><span class="mls"> icon-chevron-right</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64f" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64f;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-chevron-left"></span><span class="mls"> icon-chevron-left</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e650" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe650;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-youtube"></span><span class="mls"> icon-youtube</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e651" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe651;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-foursquare"></span><span class="mls"> icon-foursquare</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e652" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe652;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-camera-retro"></span><span class="mls"> icon-camera-retro</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e653" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe653;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-doc"></span><span class="mls"> icon-doc</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e654" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe654;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-weibo"></span><span class="mls"> icon-weibo</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e655" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe655;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-resize-horizontal"></span><span class="mls"> icon-resize-horizontal</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e656" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe656;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-resize-vertical"></span><span class="mls"> icon-resize-vertical</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e657" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe657;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-resize-full"></span><span class="mls"> icon-resize-full</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e658" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe658;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-resize-small"></span><span class="mls"> icon-resize-small</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e659" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe659;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+		</div>
+		<div class="clearfix mhl ptl">
+			<h1 class="mvm mtn bshadow fgc1">Grid Size: 16</h1>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-twitter"></span><span class="mls"> icon-twitter</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62b" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62b;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-google-plus"></span><span class="mls"> icon-google-plus</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62c" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62c;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-video"></span><span class="mls"> icon-video</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62d" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62d;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-plaintext"></span><span class="mls"> icon-plaintext</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62e" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62e;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-image-v2"></span><span class="mls"> icon-image-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62f" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62f;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-quote-v2"></span><span class="mls"> icon-quote-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e630" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe630;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-zoom-in"></span><span class="mls"> icon-zoom-in</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e631" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe631;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-zoom-out"></span><span class="mls"> icon-zoom-out</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e632" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe632;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-list"></span><span class="mls"> icon-list</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e633" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe633;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-music"></span><span class="mls"> icon-music</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e634" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe634;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-location"></span><span class="mls"> icon-location</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e635" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe635;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-web"></span><span class="mls"> icon-web</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e636" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe636;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-share-v2"></span><span class="mls"> icon-share-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e637" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe637;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-soundcloud"></span><span class="mls"> icon-soundcloud</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e639" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe639;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-video-v2"></span><span class="mls"> icon-video-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63a" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63a;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-tumblr"></span><span class="mls"> icon-tumblr</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63b" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63b;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-lastfm"></span><span class="mls"> icon-lastfm</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63c" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63c;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-github"></span><span class="mls"> icon-github</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63d" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63d;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-goback"></span><span class="mls"> icon-goback</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63e" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63e;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-doc-v2"></span><span class="mls"> icon-doc-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63f" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63f;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-googledrive"></span><span class="mls"> icon-googledrive</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e640" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe640;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-facebook"></span><span class="mls"> icon-facebook</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e641" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe641;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-flickr"></span><span class="mls"> icon-flickr</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e642" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe642;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-dribbble"></span><span class="mls"> icon-dribbble</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e643" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe643;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-image"></span><span class="mls"> icon-image</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e605" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe605;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-vimeo"></span><span class="mls"> icon-vimeo</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e606" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe606;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+		</div>
+		<div class="clearfix mhl ptl">
+			<h1 class="mvm mtn bshadow fgc1">Grid Size: 20</h1>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-instagram"></span><span class="mls"> icon-instagram</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e644" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe644;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-pinterest"></span><span class="mls"> icon-pinterest</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e645" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe645;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-arrow-left"></span><span class="mls"> icon-arrow-left</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e646" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe646;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-arrow-down"></span><span class="mls"> icon-arrow-down</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e647" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe647;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-arrow-up"></span><span class="mls"> icon-arrow-up</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e648" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe648;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-arrow-right"></span><span class="mls"> icon-arrow-right</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e649" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe649;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-share"></span><span class="mls"> icon-share</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64a" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64a;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-quote"></span><span class="mls"> icon-quote</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64b" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64b;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-evernote"></span><span class="mls"> icon-evernote</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64c" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64c;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+		</div>
+		<div class="clearfix mhl ptl">
+			<h1 class="mvm mtn bshadow fgc1">Grid Size: Unknown</h1>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-mappin"></span><span class="mls"> icon-mappin</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e600" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe600;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-swipe-right"></span><span class="mls"> icon-swipe-right</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e601" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe601;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-swipe-left"></span><span class="mls"> icon-swipe-left</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e602" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe602;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-touch-spread"></span><span class="mls"> icon-touch-spread</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e603" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe603;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-touch-pinch"></span><span class="mls"> icon-touch-pinch</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e604" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe604;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+		</div>
+
+		<!--[if gt IE 8]><!-->
+		<div class="mhl clearfix mbl">
+			<h1>Font Test Drive</h1>
+			<label>
+				Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
+				min="8" value="48" />
+				px
+			</label>
+			<input id="testText" type="text" class="phl size1of1 mvl"
+			placeholder="Type some text to test..."/>
+			</label>
+			<div id="testDrive" class="icon-">&nbsp;
+			</div>
+		</div>
+		<!--<![endif]-->
+		<div class="bgc1 clearfix">
+			<p class="mhl">Generated by <a href="http://icomoon.io/app">IcoMoon</a></p>
+		</div>
+	<script>
+		if (!('boxShadow' in document.body.style)) {
+			document.body.setAttribute('class', 'noBoxShadow');
+		}
+
+		document.body.addEventListener("click", function(e) {
+			var target = e.target;
+			if (target.tagName === "INPUT" &&
+				target.getAttribute('class').indexOf('liga') === -1) {
+				target.select();
+			}
+		});
+
+		(function() {
+			var fontSize = document.getElementById('fontSize'),
+				testDrive = document.getElementById('testDrive'),
+				testText = document.getElementById('testText');
+			function updateTest() {
+				testDrive.innerHTML = testText.value || String.fromCharCode(160);
+				if (window.icomoonLiga) {
+					window.icomoonLiga(testDrive);
+				}
+			}
+			function updateSize() {
+				testDrive.style.fontSize = fontSize.value + 'px';
+			}
+			fontSize.addEventListener('change', updateSize, false);
+			testText.addEventListener('input', updateTest, false);
+			testText.addEventListener('change', updateTest, false);
+			updateSize();
+		}());
+	
+	
+	</script>
+</body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.eot b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.eot
new file mode 100644
index 0000000000000000000000000000000000000000..179ed2d3d6d1c1b10a53e3c620f57cc69c03764d
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.eot differ
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.svg b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ff7e2e20b0ca2bc8271d3377a69fe8c3747b4fb6
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.svg
@@ -0,0 +1,63 @@
+<?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>Generated by IcoMoon</metadata>
+<defs>
+<font id="ti-icons" horiz-adv-x="1024">
+<font-face units-per-em="1024" ascent="960" descent="-64" />
+<missing-glyph horiz-adv-x="1024" />
+<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
+<glyph unicode="&#xe600;" d="M240.528 217.598h261.352l-130.673-281.606-130.68 281.606zM179.198 960h383.999c98.969 0 179.205-80.236 179.205-179.198v-384.006c0-98.969-80.228-179.198-179.205-179.198h-383.999c-98.969 0-179.198 80.228-179.198 179.198v384.006c0 98.962 80.228 179.198 179.198 179.198z" horiz-adv-x="742" />
+<glyph unicode="&#xe601;" d="M681.974 701.665l151.347 131.328-145.439 123.904-9.759-68.362c-0.42-0.164-144.189 3.113-252.078-22.446-128.256-30.382-235.151-71.127-234.578-74.056 0.369-1.905 123.699 26.276 270.94 23.788 118.006-1.997 222.382-36.065 222.382-36.065l-2.816-78.090zM676.915 833.72c1.065 29.645 25.969 52.808 55.613 51.732 29.655-1.075 52.797-25.979 51.732-55.624s-25.979-52.808-55.624-51.732c-29.635 1.085-52.787 25.979-51.722 55.624zM376.023 428.902c0 0 5.448 10.711 11.919 19.251 12.042 15.903 31.703 41.267 49.94 75.223 22.067 41.103 27.341 57.702 53.074 82.35 18.309 17.531 101.018 123.863 123.72 156.068 26.399 37.468 73.114 91.812 87.030 100.014 32.205 18.944 51.272 9.533 65.075-16.855 3.85-7.363 2.54-15.401-2.017-27.945-6.676-18.074-13.199-24.269-24.934-40.223-16.937-23.030-43.244-53.821-47.821-62.822-13.998-27.607-62.73-98.867-62.73-98.867s35.154 30.321 78.121 19.528c24.125-8.899 46.981-22.026 48.835-39.055 3.574-32.983 0-58.593 0-58.593s29.297-1.423 39.066-29.297c9.759-27.873-4.014-78.766-4.014-78.766s14.899-5.898 21.975-29.481c7.076-23.583 6.298-64.85 7.731-75.151 2.836-20.613 3.236-7.68 2.437-22.221-0.215-3.625 0.379-21.146-9.226-43.489-29.030-67.461-94.249-191.744-98.693-213.852-1.638-8.12 1.966-21.023 0.973-27.474-2.529-16.927-7.506-22.477-3.932-27.464 4.925-6.871-0.696-5.97-5.151-19.231-4.444-13.23-295.025-62.863-332.032 19.528-12.431 27.699-16.599 71.301-34.355 105.144-9.574 18.248-43.868 62.034-72.53 126.546-24.515 55.163-43.561 132.168-45.885 148.419-3.676 25.723 15.841 61.891 26.644 101.724 8.991 33.167 16.978 69.714 25.641 76.493 27.648 21.637 51.466 25.416 51.466 25.416s7.967 6.861 11.069 7.895c3.113 1.034 22.804 39.844 45.261 40.868 12.82 0.584 23.142-8.581 27.638-31.59 1.29-6.615 1.331-20.009-1.034-33.659-2.56-14.674-15.124-29.348-24.617-45.117-12.308-20.449-28.948-25.344-28.826-24.084-1.085-6.738 7.567-12.933 2.847-28.979-4.884-16.548-11.039-12.145-12.616-19.855 0 0 14.131 2.785 19.528 0 4.649-2.376 10.424-10.394 10.424-10.394z" />
+<glyph unicode="&#xe602;" d="M143.036 699.751l-143.036 137.111 152.096 123.138 5.741-69.879c0.398-0.184 143.782 0.051 249.738-28.315 125.977-33.739 230.055-77.57 229.319-80.543-0.48-1.931-121.677 29.449-268.472 30.092-117.663 0.501-223.62-31.972-223.62-31.972l-1.767-79.634zM101.105 889.171c-29.582-0.449-54.107-25.343-54.771-55.578s22.789-54.383 52.371-53.923c29.592 0.449 54.117 25.332 54.781 55.568 0.664 30.246-22.789 54.383-52.381 53.933zM356.277 24.878c-27.672 14.341-45.874 12.636-99.307 35.384-56.783 24.188-121.82 59.112-139.41 78.857-16.354 18.356-30.94 56.416-46.589 86.631-17.018 32.901-34.413 57.866-34.546 73.607-0.153 16.435 12.799 37.845 19.878 68.806 5.935 25.976 0.388 54.066 11.471 68.867 12.83 17.13 80.522-12.901 79.429-104.169 21.114-26.722 31.318-52.013 31.318-52.013l12.799 4.178c0-0.194-0.97 175.335-22.768 237.154-9.694 27.498-32.023 87.478-62.401 155.008-31.87 70.839-50.185 161.351-25.935 177.766 49.613 33.555 55.343-25.782 82.545-78.193 11.992-23.116 39.132-44.883 49.878-66.028 18.897-37.171 35.976-64.475 36.793-64.077 3.422 1.645-4.321 47.079 35.435 72.146 21.277 13.422 55.701-6.139 73.627-17.477 47.386-29.949 47.876-46.395 46.998-43.137 0 0 29.173 11.154 53.024-0.633 41.032-20.286 56.395-65.721 53.699-65.486 0 0 15.414 7.273 37.753 1.164 48.867-13.371 57.406-66.273 71.503-87.867 27.672-42.391 79.664-235.775 74.628-306.757-2.574-36.231 37.529-74.608 16.711-135.467-41.431-121.146-265.020-150.738-318.075-109.828-7.395 5.69-10.787 57.253-38.458 71.564z" horiz-adv-x="719" />
+<glyph unicode="&#xe603;" d="M306.34 615.24c0 0-49.152-62.198-93.164-128.215-36.188-54.272-68.792-114.698-68.792-114.698l-67.308 17.49c0 0 30.126-233.103 41.83-234.373 11.684-1.27 182.446 148.613 182.446 148.613-1.772-0.020-66.673 28.191-66.673 28.191s11.223 62.935 27.095 125.614c19.569 77.281 44.564 157.379 44.564 157.379zM174.141 214.897c-32.215 0-58.327 26.122-58.327 58.317 0 32.215 26.122 58.327 58.327 58.327 32.215 0 58.327-26.112 58.327-58.327 0-32.195-26.112-58.317-58.327-58.317zM686.1 952.504c-5.028 10.619-255.252-33.096-255.252-33.096l58.716-62.116c0 0-38.318-33.864-72.253-78.633-50.77-66.97-104.11-154.020-104.11-154.020s74.23 69.868 142.991 115.128c50.156 33.024 100.864 45.363 100.864 45.363s47.933-52.050 48.486-53.729c0.010 0 85.596 210.473 80.558 221.102zM572.703 798.167c-32.215 0-58.327 26.112-58.327 58.327 0 32.205 26.112 58.327 58.327 58.327 32.215 0 58.317-26.112 58.317-58.327 0-32.215-26.102-58.327-58.317-58.327zM733.317-49.009c47.872-46.612 288.42 131.123 241.152 192.86-21.914 28.631-40.714 69.151-50.463 97.044-45.138 129.106-46.674 137.605-69.253 197.54-5.96 15.831-7.793 78.438-37.612 87.419-3.697 39.322-12.861 76.964-48.23 76.984-6.185 25.836-13.926 48.742-25.272 63.754-25.672 34.028-77.947-5.55-77.947-5.55s6.339 10.65-4.731 46.223c-10.025 32.225-36.864 87.808-49.121 121.16-13.312 36.147-15.524 68.362-34.99 69.601-14.817 0.932-29.071-15.862-36.444-45.998-9.677-39.649 6.881-111.923 6.543-177.644-0.143-27.658 5.478-69.765 6.717-84.685 2.734-32.911-17.152-53.187-20.419-89.733-2.437-27.361-12.227-176.783-99.922-199.956-50.299-13.302-98.109 14.387-147.732 28.303-34.017 9.554-129.905 10.158-148.357-44.78-20.623-61.389 158.781-75.254 207.718-112.937 15.575-11.991 63.14-36.895 108.022-66.826 30.454-20.285 53.238-44.329 88.75-62.771 47.432-24.617 86.405-32.881 118.364-44.39 16.046-5.786 50.35-23.347 73.226-45.619z" />
+<glyph unicode="&#xe604;" d="M459.52 683.756l-65.229 27.955c0 0 4.628 51.446 18.637 111.811 15.493 66.785 37.274 130.458 37.274 130.458s-47.35-60.447-93.184-121.139c-37.693-49.91-55.91-83.855-55.91-83.855l-65.229 18.637 65.229-167.721 158.413 83.855zM282.337 683.827c0 30.884 25.037 55.91 55.91 55.91 30.884 0 55.9-25.027 55.9-55.91 0-30.874-25.016-55.91-55.9-55.91-30.874 0-55.91 25.037-55.91 55.91zM124.078 516.035l83.855-18.637c0 0-11.203-81.644-15.913-135.301-7.055-80.241-5.96-178.084-5.96-178.084s24.607 94.556 57.344 166.369c23.88 52.367 67.031 109.752 67.031 109.752l65.229-18.637-73.974 158.413-177.613-83.876zM319.713 554.435c17.93-25.139 12.093-60.047-13.046-77.988-25.139-17.93-60.037-12.093-77.988 13.036-17.93 25.129-12.093 60.047 13.046 77.988 25.139 17.93 60.047 12.104 77.988-13.036zM512.256 410.87c0 0 48.64 10.424 61.532 86.272 0.573 3.348 5.222 21.678 4.157 35.748-0.758 9.964-7.281 17.449-7.281 17.449s-26.184-20.521-45.507-18.698c-15.237 1.434-25.917 3.174-34.294 26.778-7.475 21.002 1.188 56.668 1.188 56.668l-4.014 27.668c0.215 0.481-47.442 2.54-47.442 2.54s-54.579-10.179-93.553-4.157c-30.628 4.721-48.077 22.405-45.804 42.772 3.625 32.42 103.332 49.060 181.299 61.614 19.343 3.123 39.485 16.118 53.996 17.254 21.309 1.669 39.567-13.097 39.567-13.097s56.34 31.416 78.971 39.7c40.253 14.725 89.303-68.485 145.213-146.77 20.040-28.078 53.699-56.166 66.12-76.79 41.933-69.642 27.003-316.938 107.633-417.516 37.059-46.223-27.525-113.654-65.362-144.189-67.123-54.2-179.098-95.222-208.333-46.152-5.847 9.83-30.904 37.847-66.028 65.751-31.334 24.883-73.359 45.251-105.738 88.474-35.308 47.145-65.454 99.215-108.257 153.539-15.206 19.313-24.73 51.937-38.164 69.99-19.732 26.522-39.926 43.704-57.006 66.847-14.899 20.214-34.427 56.699-50.883 69.755-30.065 23.9-42.854 57.58-23.132 78.93 27.822 30.106 74.711 18.463 99.4 2.519 66.181-42.732 75.592-68.946 105.196-107.274 21.412-27.709 56.525-35.625 56.525-35.625z" />
+<glyph unicode="&#xe605;" d="M0 832v-832h1024v832h-1024zM960 64h-896v704h896v-704zM704 608c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM896 128h-768l192 512 256-320 128 96z" />
+<glyph unicode="&#xe606;" d="M0 651.63l41.594-54.544c0 0 85.77 67.608 114.36 33.802 28.588-33.802 137.736-441.956 174.17-517.246 31.8-66.030 119.518-153.32 215.714-90.982 96.136 62.34 415.84 335.286 473.066 657.616 57.18 322.226-384.72 254.726-431.53-26.010 116.99 70.236 179.436-28.538 119.57-140.372-59.758-111.724-114.36-184.592-142.952-184.592-28.538 0-50.49 74.768-83.188 205.446-33.798 135.102-33.592 378.46-174.116 350.87-132.518-26.012-306.688-233.988-306.688-233.988z" />
+<glyph unicode="&#xe62b;" d="M1024 765.582c-37.676-16.708-78.164-28.002-120.66-33.080 43.372 26 76.686 67.17 92.372 116.23-40.596-24.078-85.556-41.56-133.41-50.98-38.32 40.83-92.922 66.34-153.346 66.34-116.022 0-210.088-94.058-210.088-210.078 0-16.466 1.858-32.5 5.44-47.878-174.6 8.764-329.402 92.4-433.018 219.506-18.084-31.028-28.446-67.116-28.446-105.618 0-72.888 37.088-137.192 93.46-174.866-34.438 1.092-66.832 10.542-95.154 26.278-0.020-0.876-0.020-1.756-0.020-2.642 0-101.788 72.418-186.696 168.522-206-17.626-4.8-36.188-7.372-55.348-7.372-13.538 0-26.698 1.32-39.528 3.772 26.736-83.46 104.32-144.206 196.252-145.896-71.9-56.35-162.486-89.934-260.916-89.934-16.958 0-33.68 0.994-50.116 2.94 92.972-59.61 203.402-94.394 322.042-94.394 386.422 0 597.736 320.124 597.736 597.744 0 9.108-0.206 18.168-0.61 27.18 41.056 29.62 76.672 66.62 104.836 108.748z" />
+<glyph unicode="&#xe62c;" d="M559.066 896c0 0-200.956 0-267.94 0-120.12 0-233.17-91.006-233.17-196.422 0-107.726 81.882-194.666 204.088-194.666 8.498 0 16.756 0.17 24.842 0.752-7.93-15.186-13.602-32.288-13.602-50.042 0-29.938 16.104-54.21 36.468-74.024-15.386 0-30.242-0.448-46.452-0.448-148.782 0.002-263.3-94.758-263.3-193.020 0-96.778 125.542-157.314 274.334-157.314 169.624 0 263.306 96.244 263.306 193.028 0 77.6-22.896 124.072-93.686 174.134-24.216 17.144-70.53 58.836-70.53 83.344 0 28.72 8.196 42.868 51.428 76.646 44.312 34.624 75.672 83.302 75.672 139.916 0 67.406-30.020 133.098-86.372 154.772h84.954l59.96 43.344zM465.48 240.542c2.126-8.972 3.284-18.206 3.284-27.628 0-78.2-50.392-139.31-194.974-139.31-102.842 0-177.116 65.104-177.116 143.3 0 76.642 92.126 140.444 194.964 139.332 24-0.254 46.368-4.116 66.67-10.69 55.826-38.826 95.876-60.762 107.172-105.004zM300.818 532.224c-69.038 2.064-134.636 77.226-146.552 167.86-11.916 90.666 34.37 160.042 103.388 157.99 69.010-2.074 134.638-74.814 146.558-165.458 11.906-90.66-34.39-162.458-103.394-160.392zM832 704v192h-64v-192h-192v-64h192v-192h64v192h192v64z" />
+<glyph unicode="&#xe62d;" d="M832 832h-640c-105.6 0-192-86.4-192-192v-384c0-105.6 86.4-192 192-192h640c105.6 0 192 86.4 192 192v384c0 105.6-86.4 192-192 192zM384 192v512l320-256-320-256z" />
+<glyph unicode="&#xe62e;" d="M0 768h1024v-64h-1024zM0 640h704v-64h-704zM0 512h1024v-64h-1024zM0 384h704v-64h-704zM0 256h1024v-64h-1024zM0 128h704v-64h-704z" />
+<glyph unicode="&#xe62f;" d="M896 768h-768v-640h768v640zM1024 896v0-896h-1024v896h1024zM832 192h-640v128l192 320 263-320 185 128v-64zM640 608c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96z" />
+<glyph unicode="&#xe630;" d="M225 512c123.712 0 224-100.29 224-224 0-123.712-100.288-224-224-224-123.712 0-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.634-11.636-22.252-24.016-31.83-37.020 11.438 1.8 23.16 2.746 35.104 2.746zM801 512c123.71 0 224-100.29 224-224 0-123.712-100.29-224-224-224-123.71 0-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.636-11.636-22.254-24.016-31.832-37.020 11.44 1.8 23.16 2.746 35.106 2.746z" />
+<glyph unicode="&#xe631;" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
+<glyph unicode="&#xe632;" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
+<glyph unicode="&#xe633;" d="M384 896h640v-128h-640v128zM384 512h640v-128h-640v128zM384 128h640v-128h-640v128zM0 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM0 64c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128z" />
+<glyph unicode="&#xe634;" d="M320 768l704 192v-736c0-88.366-100.29-160-224-160s-224 71.634-224 160c0 88.366 100.29 160 224 160 34.358 0 66.902-5.532 96-15.406v329.588l-448-122.182v-480c0-88.366-100.288-160-224-160-123.712 0-224 71.634-224 160 0 88.366 100.288 160 224 160 34.358 0 66.902-5.532 96-15.406v527.406z" />
+<glyph unicode="&#xe635;" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" />
+<glyph unicode="&#xe636;" d="M874.040 810.038c96.702-96.704 149.96-225.28 149.96-362.040s-53.258-265.334-149.96-362.038c-96.706-96.702-225.28-149.96-362.040-149.96-136.76 0-265.334 53.258-362.040 149.96-96.702 96.704-149.96 225.278-149.96 362.038 0 136.76 53.254 265.336 149.96 362.040 96.706 96.704 225.28 149.962 362.040 149.962 136.76 0 265.334-53.258 362.040-149.962zM828.784 131.214c63.058 63.060 104.986 141.608 122.272 227.062-13.474-19.836-26.362-27.194-34.344 17.206-8.22 72.39-74.708 26.148-116.516 51.86-44.004-29.658-142.906 57.662-126.098-40.824 25.934-44.422 140.008 59.45 83.148-34.542-36.274-65.616-132.642-210.932-120.106-286.258 1.582-109.744-112.134-22.884-151.314 13.52-26.356 72.92-8.982 200.374-77.898 236.086-74.802 3.248-139.004 10.046-167.994 93.67-17.446 59.828 18.564 148.894 82.678 162.644 93.85 58.966 127.374-69.054 215.39-71.434 27.328 28.594 101.816 37.686 107.992 69.75-57.75 10.19 73.268 48.558-5.528 70.382-43.47-5.112-71.478-45.074-48.368-78.958-84.238-19.642-86.936 121.904-167.91 77.258-2.058-70.59-132.222-22.886-45.036-8.572 29.956 13.088-48.86 51.016-6.28 44.124 20.916 1.136 91.332 25.812 72.276 42.402 39.21 24.34 72.16-58.29 110.538 1.882 27.708 46.266-11.62 54.808-46.35 31.356-19.58 21.924 34.57 69.276 82.332 89.738 15.918 6.82 31.122 10.536 42.746 9.484 24.058-27.792 68.55-32.606 70.878 3.342-59.582 28.534-125.276 43.608-193.292 43.608-97.622 0-190.47-31.024-267.308-88.39 20.65-9.46 32.372-21.238 12.478-36.296-15.456-46.054-78.17-107.876-133.224-99.124-28.586-49.296-47.412-103.606-55.46-160.528 46.112-15.256 56.744-45.45 46.836-55.55-23.496-20.488-37.936-49.53-45.376-81.322 15.010-91.836 58.172-176.476 125.27-243.576 84.616-84.614 197.118-131.214 316.784-131.214 119.664 0 232.168 46.6 316.784 131.214z" />
+<glyph unicode="&#xe637;" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
+<glyph unicode="&#xe639;" d="M891.96 445.796c-18.086 0-35.348-3.52-51.064-9.856-10.506 114.358-110.29 204.060-232 204.060-29.786 0-58.682-5.63-84.318-15.164-9.96-3.702-12.578-7.52-12.578-14.916v-402.714c0-7.766 6.24-14.234 14.124-14.996 0.336-0.034 363.536-0.21 365.89-0.21 72.904 0 131.986 56.816 131.986 126.894s-59.134 126.902-132.040 126.902zM400 192h32l16 224.22-16 223.78h-32l-16-223.78zM304 192h-32l-16 162.75 16 157.25h32l16-160zM144 192h32l16 128-16 128h-32l-16-128zM16 256h32l16 64-16 64h-32l-16-64z" />
+<glyph unicode="&#xe63a;" d="M832 832h-640c-105.6 0-192-86.4-192-192v-384c0-105.6 86.4-192 192-192h640c105.6 0 192 86.4 192 192v384c0 105.6-86.4 192-192 192zM960 256c0-33.978-13.374-66.062-37.654-90.346-24.284-24.28-56.366-37.654-90.346-37.654h-640c-33.978 0-66.062 13.374-90.344 37.654-24.282 24.284-37.656 56.368-37.656 90.346v384c0 33.978 13.374 66.062 37.656 90.344s56.366 37.656 90.344 37.656h640c33.978 0 66.062-13.374 90.346-37.656 24.282-24.282 37.654-56.366 37.654-90.344v-384zM384 192l320 256-320 256z" />
+<glyph unicode="&#xe63b;" d="M576.032 512l-0.002-234.184c0-59.418-0.77-93.656 5.53-110.5 6.25-16.754 21.918-34.146 38.99-44.202 22.684-13.588 48.542-20.376 77.708-20.376 51.854 0 82.478 6.848 133.742 40.54v-153.944c-43.7-20.552-81.866-32.594-117.324-40.922-35.5-8.242-73.86-12.406-115.064-12.406-46.828 0-74.456 5.886-110.41 17.656-35.958 11.868-66.66 28.806-92.020 50.54-25.45 21.922-43.022 45.208-52.848 69.832-9.826 24.636-14.716 60.414-14.716 107.244v359.1h-137.426v145.006c40.208 13.042 85.164 31.788 113.78 56.152 28.754 24.45 51.766 53.706 69.106 87.944 17.392 34.146 29.348 77.712 35.872 130.516h165.084l-0.002-255.996h255.968v-192h-255.968z" />
+<glyph unicode="&#xe63c;" d="M819.58 146.372c-106.666 0.418-163.498 52.582-202.992 144.502l-11.298 25.082-97.37 222c-32.292 78.586-112.422 131.672-202.834 131.672-122.334 0-221.584-99.252-221.584-221.672 0-122.418 99.248-221.668 221.584-221.668 85.338 0 159.542 48.25 196.582 119l39.376-90.832c-55.912-68.17-140.876-111.584-235.954-111.584-168.51 0-305.090 136.502-305.090 305.086 0 168.504 136.58 305.172 305.084 305.172 127.166 0 229.836-67.918 282-188.252 3.956-9.336 55.158-129.086 99.826-231 27.668-63.082 51.26-104.918 127.756-107.504 75.168-2.582 126.756 43.168 126.756 101.008 0 56.5-39.336 70.082-105.75 92.164-119.382 39.334-181.006 78.834-181.006 173.502 0 92.336 62.832 153.918 164.914 153.918 66.496 0 114.506-29.586 147.76-88.586l-65.256-33.332c-24.59 34.414-51.708 48-86.172 48-47.912 0-82.126-33.336-82.126-77.666 0-62.922 56.294-72.422 135.006-98.254 105.958-34.5 155.208-73.92 155.208-172.336 0.002-103.336-88.672-178.588-204.42-178.42z" />
+<glyph unicode="&#xe63d;" d="M235.278 711.28c-50.792 0-94.484-16.806-131.084-50.416-38.086-35.852-57.14-80.66-57.14-134.436 0-35.852 10.376-69.462 31.294-100.832 18.674-29.126 38.18-47.806 63.778-56.024v-2.242c-25.598-10.448-36.966-36.59-36.966-78.418 0-32.124 11.372-56.022 36.966-71.708v-2.242c-70.654-23.146-102.992-66.094-102.992-128.83 0-54.534 23.748-94.488 70.066-119.878 36.59-20.172 83.578-30.254 140.346-30.254 138.17 0 207.406 57.882 207.406 173.664 0 72.446-53.322 116.882-160.128 133.316-24.646 3.726-43.286 12.696-55.982 26.89-9.708 9.708-14.542 19.418-14.542 29.126 0 27.632 14.958 43.696 44.82 48.176 45.558 6.714 82.728 27.824 111.486 63.296 28.75 35.48 43.13 77.118 43.13 124.916 0 14.938-4.518 30.996-10.488 48.172 19.418 4.488 33.050 8.594 43.292 12.332v115.392c-45.054-17.928-86.99-26.884-122.842-26.884-31.374 17.922-63.824 26.884-100.42 26.884zM247.602 152.23c62.744 0 94.104-19.042 94.104-57.14 0-40.336-28.754-60.492-86.264-60.492-65.724 0-98.586 19.422-98.586 58.254-0.002 39.59 30.244 59.378 90.746 59.378zM239.76 448c-47.054 0-70.586 25.764-70.586 77.308 0 55.262 23.532 82.906 70.586 82.906 22.402 0 39.958-8.596 52.652-25.768 10.458-15.69 15.69-34.36 15.69-56.022 0-52.278-22.786-78.424-68.342-78.424zM580.384 960c-21.656 0-40.14-8.214-55.454-24.648-15.314-16.436-22.97-36.216-22.97-59.376 0-22.41 7.658-41.82 22.97-58.258 15.308-16.434 33.792-24.64 55.454-24.64 20.91 0 39.028 8.208 54.34 24.64 15.312 16.438 22.96 35.848 22.96 58.258 0 23.16-7.648 42.944-22.96 59.376-15.318 16.434-33.43 24.648-54.34 24.648zM643.13 704.002h-126.606c1.496-14.336-0.64-36.042-0.64-71.14v-348.432c0-35.856 2.136-64.774 0.64-76.036h126.606c-1.5 16.376-5.394 44.668-5.394 82.758v343.946c-0.006 32.864 3.894 54.568 5.394 68.904zM922.336 315.8c-32.872 0-49.082 25.028-49.082 75.066v206.64h49.864c8.96 0 17.032 0.492 27.118-0.246 10.086-0.748 14.152-0.25 19.278-0.25v106.99h-96.258v47.616c0 17.922 2.816 34.302 5.054 44.542h-129.958c2.242-10.24 2.028-25.876 2.028-46.79v-45.368h-56.32v-106.988c15.364 2.24 29.090 3.356 38.796 3.356l17.524-1.118v-202.786c0-62.742 7.958-108.672 23.636-137.8 20.922-38.84 57.622-58.258 112.136-58.258 38.848 0 73.118 7.464 98.714 22.41v112.032c-20.474-12.7-39.382-19.048-62.53-19.048z" />
+<glyph unicode="&#xe63e;" d="M761.862-64c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
+<glyph unicode="&#xe63f;" d="M192 448h192v-64h-192v64zM192 320h192v-64h-192v64zM192 192h192v-64h-192v64zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608zM576 256h188.792c-14.826-73.032-79.386-128-156.792-128-88.366 0-160 71.634-160 160 0 77.406 54.97 141.966 128 156.792v-188.792zM672 512c88.366 0 160-71.634 160-160 0-10.958-1.108-21.66-3.208-32h-188.792v188.792c10.34 2.1 21.042 3.208 32 3.208z" />
+<glyph unicode="&#xe640;" d="M459.33 300.168l-170.654-295.668h564.654l170.67 295.668zM975.612 384l-292.934 507.5h-341.348l292.956-507.5zM292.836 807.486l-292.836-507.318 170.676-295.668 292.832 507.324z" />
+<glyph unicode="&#xe641;" d="M575.87-64h-191.87v512h-128v176.45l128 0.058-0.208 103.952c0 143.952 39.034 231.54 208.598 231.54h141.176v-176.484h-88.23c-66.032 0-69.206-24.656-69.206-70.684l-0.262-88.324h158.69l-18.704-176.45-139.854-0.058-0.13-512z" />
+<glyph unicode="&#xe642;" d="M800 544c-70.58 0-128-57.42-128-128s57.42-128 128-128c70.58 0 128 57.42 128 128 0 70.58-57.42 128-128 128zM800 640v0c123.71 0 224-100.288 224-224 0-123.71-100.29-224-224-224-123.71 0-224 100.29-224 224 0 123.712 100.29 224 224 224zM0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-123.712 0-224 100.288-224 224z" />
+<glyph unicode="&#xe643;" d="M765.666 733.654c-6.882-9.804-64.486-87.23-200.556-138.228-62.704 115.206-132.206 209.85-142.782 224.012 28.776 6.936 58.798 10.64 89.674 10.64 97.23 0 186.088-36.47 253.664-96.424zM538.752 444.076c-197.352-63.796-302.372-237.678-311.042-252.522-61.116 67.842-98.374 157.576-98.374 255.858 0 3.916 0.078 7.81 0.196 11.696 16.744-0.342 202.18-2.732 393.278 54.458 10.952-21.44 21.416-43.202 31.024-64.94-5.064-1.426-10.092-2.94-15.082-4.55zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512.002 0c-247.030 0-448.002 200.97-448.002 448 0 247.028 200.972 448 448.002 448 247.032 0 447.998-200.972 447.998-448 0-247.030-200.966-448-447.998-448zM619.918 483.098c-7.946 18.66-16.482 37.198-25.388 55.428 141.484 57.762 205.61 139.964 213.676 150.878 53.292-65.116 85.566-148.052 86.412-238.372-12.618 2.668-139.13 28.328-266.458 12.316-2.682 6.552-5.426 13.134-8.242 19.75zM491.188 572.412c-178.996-47.532-336.65-46.848-353.766-46.622 24.814 118.742 104.836 217.432 211.892 267.926 10.088-13.834 78.472-108.594 141.874-221.304zM577.32 384.5c0.84 0.292 1.68 0.564 2.522 0.852 53.724-139.606 75.942-256.612 81.636-290.186-45.946-19.568-96.466-30.41-149.476-30.41-88.464 0-170.002 30.184-234.882 80.78 6.886 14.078 84.364 163.754 300.2 238.964zM651.464 403.036c119.916 19.192 225.266-12.232 238.36-16.36-17.060-106.474-78.172-198.428-164.020-256.472-3.922 23.276-24.288 135.294-74.34 272.832z" />
+<glyph unicode="&#xe644;" d="M778.24 460.8c0-147.046-119.245-266.24-266.24-266.24-147.046 0-266.24 119.194-266.24 266.24 0 17.51 1.741 34.611 5.018 51.2h-179.098v-353.894c0-75.981 61.542-137.626 137.626-137.626h605.389c75.981 0 137.626 61.594 137.626 137.626v353.894h-179.046c3.226-16.589 4.966-33.69 4.966-51.2zM814.694 901.12h-605.389c-76.032 0-137.626-61.645-137.626-137.626v-149.094h222.925c48.179 68.096 127.59 112.64 217.395 112.64s169.216-44.544 217.395-112.64h222.925v149.094c0 75.981-61.645 137.626-137.626 137.626zM882.022 731.136c0-13.568-11.059-24.576-24.576-24.576h-73.677c-13.517 0-24.576 11.059-24.576 24.576v73.728c0 13.568 11.11 24.576 24.576 24.576h73.677c13.568 0 24.576-11.059 24.576-24.576v-73.728zM675.84 460.8c0 90.522-73.37 163.84-163.84 163.84s-163.84-73.318-163.84-163.84 73.37-163.84 163.84-163.84 163.84 73.318 163.84 163.84z" />
+<glyph unicode="&#xe645;" d="M441.139 295.526c-26.88-140.954-59.699-276.122-156.979-346.726-30.003 213.094 44.083 373.094 78.49 542.976-58.675 98.816 7.066 297.574 130.867 248.576 152.32-60.262-131.891-367.258 58.88-405.606 199.219-40.038 280.525 345.6 157.030 470.989-178.483 181.146-519.578 4.198-477.594-255.027 10.189-63.386 75.674-82.637 26.163-170.086-114.227 25.293-148.326 115.405-143.923 235.52 7.066 196.557 176.64 334.182 346.726 353.229 215.142 24.115 417.024-78.95 444.826-281.293 31.386-228.352-97.024-475.699-327.117-457.882-62.31 4.762-88.474 35.635-137.37 65.331z" />
+<glyph unicode="&#xe646;" d="M716.749 696.32l0.051-471.040-409.6 235.52z" />
+<glyph unicode="&#xe647;" d="M747.52 665.549l-471.040 0.051 235.52-409.6z" />
+<glyph unicode="&#xe648;" d="M276.48 256h471.040l-235.571 409.6z" />
+<glyph unicode="&#xe649;" d="M307.251 696.32l-0.051-471.040 409.6 235.52z" />
+<glyph unicode="&#xe64a;" d="M768 163.84h-665.6v460.8h132.864c0 0 35.277 45.875 111.104 102.4h-295.168c-28.262 0-51.2-22.938-51.2-51.2v-563.2c0-28.314 22.938-51.2 51.2-51.2h768c28.314 0 51.2 22.886 51.2 51.2v191.795l-102.4-84.224v-56.371zM684.134 519.68v-181.76l339.866 266.291-339.866 255.949v-160.256c-412.774-0.051-412.774-408.064-412.774-408.064 116.838 191.898 188.723 227.84 412.774 227.84z" />
+<glyph unicode="&#xe64b;" d="M251.699 778.086c-82.432 0-149.299-68.762-149.299-153.6s66.867-153.6 149.299-153.6c149.248 0 49.766-296.96-149.299-296.96v-71.629c355.226 0 494.438 675.789 149.299 675.789zM681.728 778.086c-82.432 0-149.299-68.762-149.299-153.6s66.867-153.6 149.299-153.6c149.248 0 49.766-296.96-149.299-296.96v-71.629c355.277 0 494.49 675.789 149.299 675.789z" />
+<glyph unicode="&#xe64c;" d="M887.757 752.23c0 58.88-88.678 65.434-88.678 65.434l-208.333 13.107c0 0-4.454 56.73-46.592 76.39-42.086 19.61-88.371 13.67-121.6 13.312s-41.165-42.803-41.165-82.842 0.768-86.118 0.768-115.2c0-52.019-22.886-74.189-80.179-74.189h-118.118c-33.024 2.15-58.778-3.277-58.778-30.003 0-26.675 38.912-254.566 92.262-307.149 30.976-30.515 220.365-51.917 260.25-51.917s26.624 117.811 37.683 117.811 23.296-66.56 86.118-82.125c62.822-15.667 146.688-12.749 151.142-57.446 5.786-58.982 11.059-135.322-27.75-140.749l-87.808-3.482c-60.211 4.352-44.083 70.093-17.51 70.093s39.885 1.075 39.885 1.075l3.328 71.987c0 0-137.882 16.282-143.77-76.749-5.325-84.992 9.267-125.082 19.968-133.786 10.752-8.806 29.286-25.805 198.144-25.805 237.926 0 150.733 693.402 150.733 752.23zM790.528 444.365c-9.318-9.933-43.11 16.435-75.366 16.435-32.307 0-67.174-17.101-75.366-5.888-8.141 11.264 7.526 101.99 68.352 101.99s91.75-102.554 82.381-112.538zM297.114 759.501c0 11.622 3.021 152.781 3.021 152.781l-179.507-176.077c0 0 124.006 0 148.326 0 24.422 0 28.16 11.622 28.16 23.296z" />
+<glyph unicode="&#xe64d;" d="M903.454 441.796c-26.543-6.081-52.227-8.762-75.342-8.762-130.026 0-230.131 90.233-230.131 247.123 0 76.899 29.922 116.895 72.235 116.895 40.254 0 67.090-35.891 67.090-108.692 0-41.392-11.156-86.763-19.394-113.606 0 0 40.066-69.45 149.637-48.136 23.262 51.319 35.905 117.781 35.905 176.089 0 156.89-80.501 248.15-228.078 248.15-151.689 0-240.435-115.875-240.435-268.661 0-151.361 71.202-281.283 188.627-340.484-49.372-98.143-112.203-184.592-177.722-249.727-118.891 142.795-226.354 333.3-270.462 705.060h-175.384c81.025-619.156 322.514-816.307 386.365-854.159 36.114-21.537 67.216-20.511 100.237-2.039 51.843 29.293 207.512 183.943 293.793 365.093 36.219 0.098 79.733 4.231 123.059 13.956v121.9z" horiz-adv-x="903" />
+<glyph unicode="&#xe64e;" d="M1536.164 933.646c0-5.825-1.738-11.090-5.117-15.924-3.521-4.699-7.177-7.119-11.354-7.119-33.637-3.411-61.339-14.784-82.689-34.274-21.485-19.341-43.497-56.467-66.346-111.073l-348.57-826.872c-2.291-7.698-8.644-11.528-19.18-11.528-8.251 0-14.591 3.83-19.187 11.528l-195.493 430.357-224.83-430.357c-4.596-7.698-10.935-11.528-19.18-11.528-10.002 0-16.619 3.83-19.863 11.528l-342.5 826.872c-21.343 51.343-43.909 87.181-67.685 107.52-23.647 20.339-56.756 32.993-99.037 37.827-3.643 0-7.157 1.995-10.273 6.121-3.231 3.978-4.859 8.676-4.859 13.941 0 13.504 3.643 20.191 10.948 20.191 30.534 0 62.42-1.422 95.787-4.261 30.946-2.993 60.129-4.415 87.419-4.415 27.831 0 60.663 1.422 98.496 4.415 39.584 2.838 74.707 4.261 105.248 4.261 7.292 0 10.948-6.687 10.948-20.191 0-13.375-2.304-20.062-6.758-20.062-30.534-2.414-54.587-10.659-72.152-24.452-17.559-13.948-26.351-32.156-26.351-54.761 0-11.521 3.656-25.874 10.948-43.092l283.047-672.862 160.646 319.439-149.704 330.381c-26.878 58.88-49.039 96.997-66.334 114.053-17.295 16.934-43.497 27.451-78.634 31.294-3.238 0-6.218 1.995-9.198 6.121-2.961 3.971-4.441 8.676-4.441 13.935 0 13.51 3.102 20.197 9.59 20.197 30.528 0 58.494-1.422 84.027-4.261 24.587-2.993 50.803-4.415 78.634-4.415 27.29 0 56.209 1.422 86.743 4.415 31.48 2.838 62.42 4.261 92.955 4.261 7.292 0 10.948-6.687 10.948-20.191 0-13.375-2.163-20.062-6.745-20.062-61.081-4.403-91.616-22.611-91.616-54.755 0-14.36 7.022-36.688 21.214-66.849l99.031-211.623 98.509 193.568c13.639 27.297 20.519 50.339 20.519 69.108 0 44.096-30.528 67.563-91.609 70.543-5.542 0-8.245 6.687-8.245 20.062 0 4.834 1.365 9.391 4.068 13.652 2.826 4.415 5.542 6.546 8.232 6.546 21.89 0 48.782-1.422 80.674-4.261 30.528-2.993 55.643-4.415 75.242-4.415 14.051 0 34.86 1.281 62.156 3.694 34.583 3.27 63.617 4.982 86.866 4.982 5.419 0 8.097-5.696 8.097-17.211 0-15.357-4.988-23.042-14.984-23.042-35.542-3.843-64.177-14.224-85.791-30.998-21.626-16.786-48.653-54.909-80.938-114.349l-131.328-255.57 177.806-381.306 262.502 642.572c9.050 23.461 13.652 45.074 13.652 64.705 0 47.076-30.534 71.965-91.596 74.946-5.542 0-8.232 6.687-8.232 20.062 0 13.504 4.036 20.191 12.287 20.191 22.283 0 48.775-1.422 79.309-4.261 28.23-2.993 52.006-4.415 71.058-4.415 20.14 0 43.388 1.422 69.713 4.415 27.438 2.838 52.025 4.261 73.929 4.261 6.327 0 9.571-5.696 9.571-17.211z" horiz-adv-x="1536" />
+<glyph unicode="&#xe64f;" d="M403.359-73.143l403.246 513.349-403.246 510.495-403.359 0.156 403.223-510.841-400.709-513.159h400.845" horiz-adv-x="807" />
+<glyph unicode="&#xe650;" d="M403.246 950.857l-403.246-513.349 403.246-510.495 403.359-0.156-403.223 510.841 400.709 513.159h-400.845" horiz-adv-x="807" />
+<glyph unicode="&#xe651;" d="M554.857 240v-120.571q0-38.286-22.286-38.286-13.143 0-25.714 12.571v172q12.571 12.571 25.714 12.571 22.286 0 22.286-38.286zM748 239.428v-26.286h-51.429v26.286q0 38.857 25.714 38.857t25.714-38.857zM196 364h61.143v53.714h-178.286v-53.714h60v-325.143h57.143v325.143zM360.571 38.857h50.857v282.286h-50.857v-216q-17.143-24-32.571-24-10.286 0-12 12-0.571 1.714-0.571 20v208h-50.857v-223.429q0-28 4.571-41.714 6.857-21.143 33.143-21.143 27.429 0 58.286 34.857v-30.857zM605.714 123.428v112.571q0 41.714-5.143 56.571-9.714 32-40.571 32-28.571 0-53.143-30.857v124h-50.857v-378.857h50.857v27.429q25.714-31.429 53.143-31.429 30.857 0 40.571 31.429 5.143 15.429 5.143 57.143zM798.857 129.143v7.429h-52q0-29.143-1.143-34.857-4-20.571-22.857-20.571-26.286 0-26.286 39.429v49.714h102.286v58.857q0 45.143-15.429 66.286-22.286 29.143-60.571 29.143-38.857 0-61.143-29.143-16-21.143-16-66.286v-98.857q0-45.143 16.571-66.286 22.286-29.143 61.714-29.143 41.143 0 61.714 30.286 10.286 15.429 12 30.857 1.143 5.143 1.143 33.143zM451.429 650.857v120q0 39.429-24.571 39.429t-24.571-39.429v-120q0-40 24.571-40t24.571 40zM862.286 221.714q0-133.714-14.857-200-8-33.714-33.143-56.571t-58.286-26.286q-105.143-12-317.143-12t-317.143 12q-33.143 3.429-58.571 26.286t-32.857 56.571q-14.857 64-14.857 200 0 133.714 14.857 200 8 33.714 33.143 56.571t58.857 26.857q104.571 11.429 316.571 11.429t317.143-11.429q33.143-4 58.571-26.857t32.857-56.571q14.857-64 14.857-200zM292 950.857h58.286l-69.143-228v-154.857h-57.143v154.857q-8 42.286-34.857 121.143-21.143 58.857-37.143 106.857h60.571l40.571-150.286zM503.429 760.571v-100q0-46.286-16-67.429-21.143-29.143-60.571-29.143-38.286 0-60 29.143-16 21.714-16 67.429v100q0 45.714 16 66.857 21.714 29.143 60 29.143 39.429 0 60.571-29.143 16-21.143 16-66.857zM694.857 853.143v-285.143h-52v31.429q-30.286-35.429-58.857-35.429-26.286 0-33.714 21.143-4.571 13.714-4.571 42.857v225.143h52v-209.714q0-18.857 0.571-20 1.714-12.571 12-12.571 15.429 0 32.571 24.571v217.714h52z" horiz-adv-x="878" />
+<glyph unicode="&#xe652;" d="M847.429 365.714l-335.429-335.429q-29.714-30.286-72.857-30.286t-73.429 30.286l-335.429 335.429q-30.286 30.286-30.286 73.143t30.286 73.143l335.429 335.429q30.286 30.286 73.143 30.286t73.143-30.286l151.429-151.429-227.429-228-107.429 107.429q-24 24-56.571 24-33.714 0-57.143-23.429l-68.571-69.143q-24-22.857-24-56.571 0-33.143 24-57.143l232-233.143q17.143-16 38.286-21.143l3.429-2.286h16q34.286 0 56.571 23.429l353.714 353.714 1.143-1.714q30.286-30.286 30.286-73.143t-30.286-73.143zM803.429 723.428l68.571-68.571q8-8.571 8-20.571t-8-20.571l-417.143-417.143q-9.714-8.571-21.143-8.571v0q-2.286 0-3.429 0.571-10.286 1.143-17.143 8l-232.571 233.143q-8 8.571-8 20.571t8 20l69.143 68.571q7.429 8.571 20 8.571t20.571-8.571l144-144 328 328.571q8.571 8.571 20.571 8.571t20.571-8.571z" horiz-adv-x="951" />
+<glyph unicode="&#xe653;" d="M530.286 475.428q0 8-5.143 13.143t-13.143 5.143q-37.714 0-64.571-26.857t-26.857-64.571q0-8 5.143-13.143t13.143-5.143 13.143 5.143 5.143 13.143q0 22.857 16 38.857t38.857 16q8 0 13.143 5.143t5.143 13.143zM658.286 401.143q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429 42.857 103.429 103.429 42.857 103.429-42.857 42.857-103.429zM73.143 73.143h877.714v73.143h-877.714v-73.143zM731.429 401.143q0 90.857-64.286 155.143t-155.143 64.286-155.143-64.286-64.286-155.143 64.286-155.143 155.143-64.286 155.143 64.286 64.286 155.143zM146.286 768h219.429v73.143h-219.429v-73.143zM73.143 658.286h877.714v146.286h-473.143l-36.571-73.143h-368v-73.143zM1024 804.571v-731.429q0-30.286-21.429-51.714t-51.714-21.429h-877.714q-30.286 0-51.714 21.429t-21.429 51.714v731.429q0 30.286 21.429 51.714t51.714 21.429h877.714q30.286 0 51.714-21.429t21.429-51.714z" />
+<glyph unicode="&#xe654;" d="M73.143 73.143h585.143v438.857h-237.714q-22.857 0-38.857 16t-16 38.857v237.714h-292.571v-731.429zM438.857 585.143h214.857q-5.714 16.571-12.571 23.429l-178.857 178.857q-6.857 6.857-23.429 12.571v-214.857zM731.429 566.857v-512q0-22.857-16-38.857t-38.857-16h-621.714q-22.857 0-38.857 16t-16 38.857v768q0 22.857 16 38.857t38.857 16h365.714q22.857 0 50.286-11.429t43.429-27.429l178.286-178.286q16-16 27.429-43.429t11.429-50.286z" horiz-adv-x="731" />
+<glyph unicode="&#xe655;" d="M385.714 217.143q12 19.429 6.286 39.429t-25.714 28.571q-19.429 8-41.714 0.571t-34.286-26.286q-12.571-19.429-7.429-39.143t24.571-28.857 42.571-1.429 35.714 27.143zM439.429 286.286q4.571 7.429 2 15.143t-10 10.571q-8 2.857-16.286-0.286t-12.286-10.571q-9.714-17.714 7.429-25.714 8-2.857 16.571 0.286t12.571 10.571zM538.857 225.143q-25.714-58.286-90.286-85.714t-128-6.857q-61.143 19.429-84.286 72.286t3.714 107.143q26.857 53.143 86.571 79.429t120.286 10.857q63.429-16.571 90.571-68.286t1.429-108.857zM717.143 316.571q-5.143 54.857-50.857 97.143t-119.143 62.286-156.857 12q-127.429-13.143-211.143-80.857t-75.714-151.143q5.143-54.857 50.857-97.143t119.143-62.286 156.857-12q127.429 13.143 211.143 80.857t75.714 151.143zM893.143 314.286q0-38.857-21.143-79.714t-62.286-78.286-96.286-67.143-129.143-47.429-154.571-17.714-157.143 19.143-137.429 53.143-98 86.286-37.143 114q0 65.714 39.714 140t112.857 147.429q96.571 96.571 195.143 134.857t140.857-4q37.143-36.571 11.429-119.429-2.286-8-0.571-11.429t5.714-4 8.286 0.286 7.714 2l3.429 1.143q79.429 33.714 140.571 33.714t87.429-34.857q25.714-36 0-101.714-1.143-7.429-2.571-11.429t2.571-7.143 6.857-4.286 9.714-3.429q32.571-10.286 58.857-26.857t45.714-46.571 19.429-66.571zM850.857 670.857q24-26.857 31.143-62t-3.714-67.143q-4.571-13.143-16.857-19.429t-25.429-2.286q-13.143 4.571-19.429 16.857t-2.286 25.429q11.429 36-13.714 63.429t-61.143 20q-13.714-2.857-25.714 4.571t-14.286 21.143q-2.857 13.714 4.571 25.429t21.143 14.571q34.286 7.429 68-3.143t57.714-37.429zM954.286 764q49.714-54.857 64.286-127.143t-7.714-138q-5.143-15.429-19.429-22.857t-29.714-2.286-22.857 19.429-2.857 29.714q16 46.857 5.714 98.286t-45.714 90.286q-35.429 39.429-84.571 54.571t-98.857 4.857q-16-3.429-29.714 5.429t-17.143 24.857 5.429 29.429 24.857 16.857q70.286 14.857 139.429-6.571t118.857-76.857z" />
+<glyph unicode="&#xe656;" d="M1024 438.857q0-14.857-10.857-25.714l-146.286-146.286q-10.857-10.857-25.714-10.857t-25.714 10.857-10.857 25.714v73.143h-585.143v-73.143q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857l-146.286 146.286q-10.857 10.857-10.857 25.714t10.857 25.714l146.286 146.286q10.857 10.857 25.714 10.857t25.714-10.857 10.857-25.714v-73.143h585.143v73.143q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857l146.286-146.286q10.857-10.857 10.857-25.714z" />
+<glyph unicode="&#xe657;" d="M402.286 768q0-14.857-10.857-25.714t-25.714-10.857h-73.143v-585.143h73.143q14.857 0 25.714-10.857t10.857-25.714-10.857-25.714l-146.286-146.286q-10.857-10.857-25.714-10.857t-25.714 10.857l-146.286 146.286q-10.857 10.857-10.857 25.714t10.857 25.714 25.714 10.857h73.143v585.143h-73.143q-14.857 0-25.714 10.857t-10.857 25.714 10.857 25.714l146.286 146.286q10.857 10.857 25.714 10.857t25.714-10.857l146.286-146.286q10.857-10.857 10.857-25.714z" horiz-adv-x="439" />
+<glyph unicode="&#xe658;" d="M431.429 347.428q0-7.429-5.714-13.143l-189.714-189.714 82.286-82.286q10.857-10.857 10.857-25.714t-10.857-25.714-25.714-10.857h-256q-14.857 0-25.714 10.857t-10.857 25.714v256q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857l82.286-82.286 189.714 189.714q5.714 5.714 13.143 5.714t13.143-5.714l65.143-65.143q5.714-5.714 5.714-13.143zM877.714 841.143v-256q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857l-82.286 82.286-189.714-189.714q-5.714-5.714-13.143-5.714t-13.143 5.714l-65.143 65.143q-5.714 5.714-5.714 13.143t5.714 13.143l189.714 189.714-82.286 82.286q-10.857 10.857-10.857 25.714t10.857 25.714 25.714 10.857h256q14.857 0 25.714-10.857t10.857-25.714z" horiz-adv-x="878" />
+<glyph unicode="&#xe659;" d="M438.857 402.286v-256q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857l-82.286 82.286-189.714-189.714q-5.714-5.714-13.143-5.714t-13.143 5.714l-65.143 65.143q-5.714 5.714-5.714 13.143t5.714 13.143l189.714 189.714-82.286 82.286q-10.857 10.857-10.857 25.714t10.857 25.714 25.714 10.857h256q14.857 0 25.714-10.857t10.857-25.714zM870.286 786.286q0-7.429-5.714-13.143l-189.714-189.714 82.286-82.286q10.857-10.857 10.857-25.714t-10.857-25.714-25.714-10.857h-256q-14.857 0-25.714 10.857t-10.857 25.714v256q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857l82.286-82.286 189.714 189.714q5.714 5.714 13.143 5.714t13.143-5.714l65.143-65.143q5.714-5.714 5.714-13.143z" horiz-adv-x="878" />
+</font></defs></svg>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.ttf b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..74eb8c4ab13fc0571f8bd09aa2ea29187cab4bc1
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.ttf differ
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.woff b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.woff
new file mode 100644
index 0000000000000000000000000000000000000000..d065e98ecb85947c95406745fcfc91d8a8d2fe2a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/compiled/css/icons/tl-icons.woff differ
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/themes/timeline.theme.dark.css b/public/opac/TimelineJS3-3.5.1/compiled/css/themes/timeline.theme.dark.css
new file mode 100644
index 0000000000000000000000000000000000000000..ac411a5b167b42ccb0f3c1f75c7a0e55d4cbd370
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/themes/timeline.theme.dark.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+.tl-storyjs div *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.tl-storyjs .active,.tl-storyjs .caption,.tl-storyjs .content-container,.tl-storyjs .credit,.tl-storyjs .date,.tl-storyjs .dot,.tl-storyjs .era,.tl-storyjs .flag,.tl-storyjs .line,.tl-storyjs .major,.tl-storyjs .map,.tl-storyjs .marker,.tl-storyjs .media,.tl-storyjs .message,.tl-storyjs .minor,.tl-storyjs .slider,.tl-storyjs .start,.tl-storyjs .text,.tl-storyjs .time,.tl-storyjs .title,.tl-storyjs .tl-container,.tl-storyjs .tl-feature,.tl-storyjs .tl-feedback,.tl-storyjs .tl-navigation,.tl-storyjs .tl-slider,.tl-storyjs .toolbar,.tl-storyjs a,.tl-storyjs abbr,.tl-storyjs acronym,.tl-storyjs address,.tl-storyjs blockquote,.tl-storyjs button,.tl-storyjs caption,.tl-storyjs cite,.tl-storyjs code,.tl-storyjs dd,.tl-storyjs del,.tl-storyjs dfn,.tl-storyjs dl,.tl-storyjs dt,.tl-storyjs em,.tl-storyjs fieldset,.tl-storyjs form,.tl-storyjs h1,.tl-storyjs h2,.tl-storyjs h3,.tl-storyjs h4,.tl-storyjs h5,.tl-storyjs h6,.tl-storyjs img,.tl-storyjs label,.tl-storyjs legend,.tl-storyjs li,.tl-storyjs ol,.tl-storyjs p,.tl-storyjs pre,.tl-storyjs q,.tl-storyjs s,.tl-storyjs samp,.tl-storyjs small,.tl-storyjs strike,.tl-storyjs strong,.tl-storyjs sub,.tl-storyjs sup,.tl-storyjs table,.tl-storyjs tbody,.tl-storyjs td,.tl-storyjs tfoot,.tl-storyjs th,.tl-storyjs thead,.tl-storyjs tr,.tl-storyjs tt,.tl-storyjs ul,.tl-storyjs var{margin:0;padding:0;border:0;font-weight:400;font-style:normal;font-size:100%;line-height:1;font-family:inherit;width:auto;float:none}.tl-storyjs h1,.tl-storyjs h2,.tl-storyjs h3,.tl-storyjs h4,.tl-storyjs h5,.tl-storyjs h6{clear:none}.tl-storyjs table{border-collapse:collapse;border-spacing:0}.tl-storyjs ol,.tl-storyjs ul{list-style:none}.tl-storyjs blockquote:after,.tl-storyjs blockquote:before,.tl-storyjs q:after,.tl-storyjs q:before{content:""}.tl-storyjs a:focus{outline:thin dotted}.tl-storyjs a:active,.tl-storyjs a:hover{outline:0}.tl-storyjs article,.tl-storyjs aside,.tl-storyjs details,.tl-storyjs figcaption,.tl-storyjs figure,.tl-storyjs footer,.tl-storyjs header,.tl-storyjs hgroup,.tl-storyjs nav,.tl-storyjs section{display:block}.tl-storyjs audio,.tl-storyjs canvas,.tl-storyjs video{display:inline-block}.tl-storyjs audio:not([controls]){display:none}.tl-storyjs div{max-width:none}.tl-storyjs sub,.tl-storyjs sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.tl-storyjs sup{top:-.5em}.tl-storyjs sub{bottom:-.25em}.tl-storyjs img{border:0;-ms-interpolation-mode:bicubic}.tl-storyjs button,.tl-storyjs input,.tl-storyjs select,.tl-storyjs textarea{font-size:100%;margin:0;vertical-align:baseline}.tl-storyjs button,.tl-storyjs input{line-height:normal}.tl-storyjs button::-moz-focus-inner,.tl-storyjs input::-moz-focus-inner{border:0;padding:0}.tl-storyjs button,.tl-storyjs input[type=button],.tl-storyjs input[type=reset],.tl-storyjs input[type=submit]{cursor:pointer;-webkit-appearance:button}.tl-storyjs input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.tl-storyjs input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.tl-storyjs textarea{overflow:auto;vertical-align:top}.tl-timeline{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{color:#FFF}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3{font-size:36px;line-height:36px}.tl-timeline h1 small,.tl-timeline h2 small,.tl-timeline h3 small{font-size:24px;line-height:24px}.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-size:24px;line-height:24px;margin-bottom:0}.tl-timeline h4 small,.tl-timeline h5 small,.tl-timeline h6 small{font-size:15px;line-height:15px}.tl-timeline h2.tl-headline-title{font-size:46px;line-height:46px}.tl-timeline h2.tl-headline-title small{display:block;margin-top:5px;font-size:24px;line-height:24px}.tl-timeline h2{margin-top:20px;margin-bottom:5px}.tl-timeline p{margin-top:5px;margin-bottom:10px;font-size:15px;line-height:1.42857143;color:#fff}.tl-timeline p.lead{font-size:24px}.tl-timeline p a{color:#fff;text-decoration:underline}.tl-timeline p a:focus,.tl-timeline p a:hover{color:#c34528}@media (-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.tl-timeline p a{text-decoration:underline;background-image:none;text-shadow:none}.tl-timeline p a:focus,.tl-timeline p a:hover{color:#c34528;text-decoration:underline}}.tl-timeline b,.tl-timeline strong{font-weight:700}.tl-timeline em,.tl-timeline i{font-style:italic}.tl-timeline a{text-decoration:none;color:#c34528}.tl-timeline a:hover{text-decoration:underline;color:#6e2717}.tl-timeline .tl-caption,.tl-timeline .tl-credit,.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous{font-size:11px;line-height:11px}.tl-timeline .tl-caption a,.tl-timeline .tl-credit a,.tl-timeline .tl-slidenav-next a,.tl-timeline .tl-slidenav-previous a{color:#FFF}.tl-timeline .tl-makelink{word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:Georgia,Times New Roman,Times,serif;color:#fff;font-size:24px;line-height:24px;text-align:left;background:0 0;border:0;padding:0}.tl-timeline blockquote cite,.tl-timeline blockquote p cite{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:11px;color:#fff;display:block;text-align:right;font-style:normal}.tl-timeline blockquote cite:before,.tl-timeline blockquote p cite:before{content:"\2014"}.tl-timeline blockquote p:before{content:open-quote;display:inline-block;font-size:36px;position:relative;top:8px;margin-right:5px}.tl-timeline blockquote p:after{content:close-quote;display:inline-block;font-size:36px;position:relative;top:8px;margin-left:3px}.tl-timeline blockquote{margin:10px}.tl-timeline blockquote p{margin:0}.tl-timeline .vcard{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;line-height:15px;margin-bottom:15px;margin-top:10px}.tl-timeline .vcard:after,.tl-timeline .vcard:before{display:table;content:""}.tl-timeline .vcard:after{clear:both}.tl-timeline .vcard .twitter-date{text-align:left;font-size:11px}.tl-timeline .vcard .author{float:right}.tl-timeline .vcard a{color:#fff;text-decoration:none}.tl-timeline .vcard a:hover{text-decoration:none}.tl-timeline .vcard a:hover .fn,.tl-timeline .vcard a:hover .nickname{color:#c34528}.tl-timeline .vcard .fn,.tl-timeline .vcard .nickname{padding-left:42px}.tl-timeline .vcard .fn{display:block;font-weight:700}.tl-timeline .vcard .nickname{margin-top:1px;display:block;color:#fff}.tl-timeline .vcard .avatar{float:left;display:block;width:32px;height:32px}.tl-timeline .vcard .avatar img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.tl-timeline .tl-text ul{padding:0;padding-left:30px;margin:0}.tl-timeline .tl-text ul li{margin-bottom:5px}.tl-timeline .tl-button-calltoaction{cursor:pointer;font-weight:700;padding-top:10px;margin-bottom:10px;padding-bottom:10px}.tl-timeline .tl-button-calltoaction .tl-button-calltoaction-text{display:inline-block;background-color:#c34528;color:#fff;padding:10px 15px 10px 15px;border-radius:7px}.tl-timeline .tl-note{display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:italic;background-color:#fff;font-size:15px;line-height:17px;padding:10px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;color:#8a6d3b;background-color:#fcf8e3;border:1px solid #faebcc;text-shadow:none}@media only screen and (max-width:800px),only screen and (max-device-width:800px){.tl-timeline h1,.tl-timeline h2,.tl-timeline h3{font-size:36px;line-height:36px}}@media only screen and (max-width:500px),only screen and (max-device-width:500px){.tl-timeline h1,.tl-timeline h2,.tl-timeline h3{font-size:32px;line-height:32px}}.tl-skinny h2{margin-top:0}@font-face{font-family:tl-icons;src:url(../icons/tl-icons.eot);src:url(../icons/tl-icons.eot?#iefix) format('embedded-opentype'),url(../icons/tl-icons.ttf) format('truetype'),url(../icons/tl-icons.woff) format('woff'),url(../icons/tl-icons.svg#tl-icons) format('svg');font-weight:400;font-style:normal}[class*=" tl-icon-"],[class^=tl-icon-]{font-family:tl-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tl-icon-vine:after{content:"\e64d"}.tl-icon-wikipedia:after{content:"\e64e"}.tl-icon-chevron-right:after{content:"\e64f"}.tl-icon-chevron-left:after{content:"\e650"}.tl-icon-youtube-logo:after{content:"\e651"}.tl-icon-foursquare:after{content:"\e652"}.tl-icon-camera-retro:after{content:"\e653"}.tl-icon-doc:after{content:"\e654"}.tl-icon-weibo:after{content:"\e655"}.tl-icon-resize-horizontal:after{content:"\e656"}.tl-icon-resize-vertical:after{content:"\e657"}.tl-icon-resize-full:after{content:"\e658"}.tl-icon-resize-small:after{content:"\e659"}.tl-icon-twitter:after{content:"\e62b"}.tl-icon-google-plus:after{content:"\e62c"}.tl-icon-video:after{content:"\e62d"}.tl-icon-youtube:after{content:"\e62d"}.tl-icon-plaintext:after{content:"\e62e"}.tl-icon-storify:after{content:"\e62e"}.tl-icon-image-v2:after{content:"\e62f"}.tl-icon-quote-v2:after{content:"\e630"}.tl-icon-zoom-in:after{content:"\e631"}.tl-icon-zoom-out:after{content:"\e632"}.tl-icon-list:after{content:"\e633"}.tl-icon-music:after{content:"\e634"}.tl-icon-spotify:after{content:"\e634"}.tl-icon-location:after{content:"\e635"}.tl-icon-googlemaps:after{content:"\e635"}.tl-icon-web:after{content:"\e636"}.tl-icon-share-v2:after{content:"\e637"}.tl-icon-soundcloud:after{content:"\e639"}.tl-icon-video-v2:after{content:"\e63a"}.tl-icon-dailymotion:after{content:"\e63a"}.tl-icon-tumblr:after{content:"\e63b"}.tl-icon-lastfm:after{content:"\e63c"}.tl-icon-github:after{content:"\e63d"}.tl-icon-goback:after{content:"\e63e"}.tl-icon-doc-v2:after{content:"\e63f"}.tl-icon-googledrive:after{content:"\e640"}.tl-icon-facebook:after{content:"\e641"}.tl-icon-flickr:after{content:"\e642"}.tl-icon-dribbble:after{content:"\e643"}.tl-icon-image:after{content:"\e605"}.tl-icon-vimeo:after{content:"\e606"}.tl-icon-instagram:after{content:"\e644"}.tl-icon-pinterest:after{content:"\e645"}.tl-icon-arrow-left:after{content:"\e646"}.tl-icon-arrow-down:after{content:"\e647"}.tl-icon-arrow-up:after{content:"\e648"}.tl-icon-arrow-right:after{content:"\e649"}.tl-icon-share:after{content:"\e64a"}.tl-icon-blockquote:after{content:"\e64b"}.tl-icon-evernote:after{content:"\e64c"}.tl-icon-mappin:after{content:"\e600"}.tl-icon-swipe-right:after{content:"\e601"}.tl-icon-swipe-left:after{content:"\e602"}.tl-icon-touch-spread:after{content:"\e603"}.tl-icon-touch-pinch:after{content:"\e604"}.tl-dragging{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.tl-menubar{position:absolute;z-index:11;text-align:center;color:#333;overflow:hidden;border-bottom-right-radius:10px;border-top-right-radius:10px;top:100%;left:50%;left:0}@keyframes invertToBlack{from{background-color:#FFF}to{background-color:#000}}@-webkit-keyframes invertToBlack{from{background:#FFF}to{background:#000}}@keyframes invertToWhite{from{background-color:#000}to{background-color:#FFF}}@-webkit-keyframes invertToWhite{from{background:#000}to{background:#FFF}}.tl-menubar-button{font-size:18px;line-height:18px;background-color:rgba(77,77,77,.9);cursor:pointer;padding:6px 12px 6px 12px;display:inline-block;display:block;color:#000}.tl-menubar-button.tl-menubar-button-inactive{opacity:.33}.tl-menubar-button:hover{background:#CCC;color:#333}.tl-menubar-button:hover.tl-menubar-button-inactive{color:#000;background-color:rgba(77,77,77,.9)}.tl-mobile .tl-menubar-button{display:block}.tl-mobile .tl-menubar-button:hover{background-color:rgba(77,77,77,.67);color:grey}.tl-mobile .tl-menubar-button:active{background:#c34528;color:#333}@keyframes invertToBlack{from{background-color:#FFF}to{background-color:#000}}@-webkit-keyframes invertToBlack{from{background:#FFF}to{background:#000}}@keyframes invertToWhite{from{background-color:#000}to{background-color:#FFF}}@-webkit-keyframes invertToWhite{from{background:#000}to{background:#FFF}}.tl-message,.tl-message-full{width:100%;height:100%;position:absolute;display:table;overflow:hidden;top:0;left:0;z-index:99;margin:auto;text-align:center}.tl-message .tl-message-container,.tl-message-full .tl-message-container{padding:20px;margin:20px;text-align:center;vertical-align:middle;display:table-cell}.tl-message .tl-message-container .tl-message-content,.tl-message-full .tl-message-container .tl-message-content{color:#666;text-align:center;font-size:11px;line-height:13px;text-transform:uppercase;margin-top:7.5px;margin-bottom:7.5px;text-shadow:1px 1px 1px #FFF}.tl-message .tl-message-container .tl-message-content strong,.tl-message-full .tl-message-container .tl-message-content strong{text-transform:uppercase}.tl-message .tl-message-container .tl-loading-icon,.tl-message-full .tl-message-container .tl-loading-icon{width:30px;height:30px;background-color:#666;vertical-align:middle;-webkit-box-shadow:inset 0 1px 2px rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 2px rgba(255,255,255,.1);box-shadow:inset 0 1px 2px rgba(255,255,255,.1);margin-left:auto;margin-right:auto;text-align:center;-webkit-animation:rotateplane 1.2s infinite ease-in-out;animation:rotateplane 1.2s infinite ease-in-out}@-webkit-keyframes rotateplane{0%{-webkit-transform:perspective(120px)}50%{-webkit-transform:perspective(120px) rotateY(180deg)}100%{-webkit-transform:perspective(120px) rotateY(180deg) rotateX(180deg)}}@keyframes rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.tl-message-full{background-color:rgba(255,255,255,.8)}.tl-message-full [class*=" tl-icon-"],.tl-message-full [class^=tl-icon-]{color:#666;font-size:72px}.tl-message-full .tl-message-container .tl-message-content{font-size:22px;line-height:22px;text-shadow:none;color:#666;text-transform:none;font-weight:400}.tl-message-full .tl-message-container .tl-message-content .tl-button{display:inline-block;cursor:pointer;background-color:#FFF;color:#333;padding:10px;margin-top:10px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-timenav{width:100%;background-color:#4d4d4d;position:relative;overflow:hidden;border-top:1px solid #404040}.tl-timenav .tl-attribution{cursor:pointer;z-index:9;position:absolute;bottom:2px;left:0;font-size:10px;line-height:10px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif!important;background-color:rgba(51,51,51,.85);padding:3px}.tl-timenav .tl-attribution a{color:#737373}.tl-timenav .tl-attribution a:hover{color:#FFF;text-decoration:none}.tl-timenav .tl-attribution a:hover .tl-knightlab-logo{background-color:#c34528}.tl-timenav .tl-attribution .tl-knightlab-logo{display:inline-block;vertical-align:middle;height:8px;width:8px;margin-right:3px;background-color:#c34528;background-color:#737373;transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg)}.tl-timenav .tl-timenav-line{position:absolute;top:0;left:50%;width:1px;height:100%;background-color:#333;z-index:2;display:none}.tl-timenav .tl-timenav-line:after,.tl-timenav .tl-timenav-line:before{font-family:tl-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#c34528;font-size:32px;line-height:32px;position:absolute;left:-14px}.tl-timenav .tl-timenav-line:before{top:-10px}.tl-timenav .tl-timenav-line:after{content:"\e648";bottom:24px}.tl-timenav .tl-timenav-slider{position:absolute;height:100%;width:100%;top:0}.tl-timenav .tl-timenav-slider.tl-timenav-slider-animate{-webkit-transition:all 1s cubic-bezier(.77,0,.175,1);-moz-transition:all 1s cubic-bezier(.77,0,.175,1);-o-transition:all 1s cubic-bezier(.77,0,.175,1);transition:all 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timenav .tl-timenav-slider .tl-timenav-slider-background{position:absolute;height:100%;width:100%;cursor:move;z-index:6}.tl-timenav .tl-timenav-slider .tl-timenav-container-mask{position:absolute;height:100%;top:0}.tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container{position:absolute;height:100%}.tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container .tl-timenav-item-container{position:absolute;height:100%}.tl-timemarker{height:100%;position:absolute;top:0;left:0;cursor:pointer;-webkit-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timemarker.tl-timemarker-fast{-webkit-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-moz-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-o-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timemarker.tl-timemarker-fast .tl-timemarker-content-container{-webkit-transition:width .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1);-moz-transition:width .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1);-o-transition:width .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1);transition:width .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1)}.tl-timemarker.tl-timemarker-fast .tl-timemarker-timespan{-webkit-transition:height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-moz-transition:height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-o-transition:height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);transition:height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1)}.tl-timemarker .tl-timemarker-timespan{pointer-events:none;position:absolute;margin:0;width:100%;height:100%;background-color:rgba(38,38,38,.15);border-top-right-radius:5px;border-top-left-radius:5px;-webkit-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timemarker .tl-timemarker-timespan .tl-timemarker-timespan-content{display:none;position:absolute;width:100%;background-color:#262626;border-top-left-radius:5px;border-top-right-radius:5px;height:100px;box-sizing:border-box}.tl-timemarker .tl-timemarker-line-right{display:none;right:0}.tl-timemarker .tl-timemarker-line-left{width:1px;left:0}.tl-timemarker .tl-timemarker-line-left,.tl-timemarker .tl-timemarker-line-right{margin-top:7px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-left:1px solid #0d0d0d;z-index:5;content:" ";position:absolute;height:100%;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-shadow:1px 1px 1px #333}.tl-timemarker .tl-timemarker-line-left:after,.tl-timemarker .tl-timemarker-line-right:after{display:block;content:" ";position:absolute;left:-4px;bottom:0;height:6px;width:6px;background-color:#000;z-index:8;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.tl-timemarker .tl-timemarker-content-container{position:absolute;background-color:#262626;border:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;height:100%;width:100px;overflow:hidden;z-index:6;-webkit-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1);box-sizing:border-box;border:1px solid #0d0d0d;box-shadow:1px 1px 1px #333}.tl-timemarker .tl-timemarker-content-container:hover{z-index:9}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content{position:relative;overflow:hidden;height:100%;z-index:8;padding:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text{overflow:hidden;position:relative}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline,.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p{display:-webkit-box;line-clamp:2;-webkit-line-clamp:2;box-orient:vertical;-webkit-box-orient:vertical;text-overflow:ellipsis;font-size:12px;line-height:12px;height:100%;overflow:hidden;font-weight:400;margin:0;color:#4d4d4d;position:relative}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p.tl-headline-fadeout:after,.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:100%;height:50%;background:-moz-linear-gradient(top,rgba(38,38,38,0) 0,#262626 50%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(38,38,38,0)),color-stop(50%,#262626));background:-webkit-linear-gradient(top,rgba(38,38,38,0) 0,#262626 50%);background:-o-linear-gradient(top,rgba(38,38,38,0) 0,#262626 50%);background:-ms-linear-gradient(top,rgba(38,38,38,0) 0,#262626 50%);background:linear-gradient(to bottom,rgba(38,38,38,0) 0,#262626 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container{float:left;max-width:24px;max-height:24px;overflow:hidden;margin-right:5px;height:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media{max-width:24px;max-height:100%;opacity:.25}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"],.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=tl-icon-]{display:block;font-size:24px;color:#4d4d4d;margin-top:0}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-icon-wikipedia{font-size:16px}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-text h2.tl-headline{display:block;white-space:nowrap;text-overflow:ellipsis}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class*=" tl-icon-"],.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class^=tl-icon-]{font-size:12px}.tl-timemarker:hover .tl-timemarker-timespan{background-color:rgba(77,77,77,.15)}.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-timespan-content{background-color:#4d4d4d}.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left,.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right{border-color:#000}.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left:after,.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right:after{background-color:#fff}.tl-timemarker:hover .tl-timemarker-content-container{background-color:#000;border-color:#000;-webkit-transition:height 250ms cubic-bezier(.77,0,.175,1),width 250ms cubic-bezier(.77,0,.175,1);-moz-transition:height 250ms cubic-bezier(.77,0,.175,1),width 250ms cubic-bezier(.77,0,.175,1);-o-transition:height 250ms cubic-bezier(.77,0,.175,1),width 250ms cubic-bezier(.77,0,.175,1);transition:height 250ms cubic-bezier(.77,0,.175,1),width 250ms cubic-bezier(.77,0,.175,1)}.tl-timemarker:hover .tl-timemarker-content-container.tl-timemarker-content-container-small{width:200px}.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline{color:#FFF}.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after{background:-moz-linear-gradient(top,rgba(0,0,0,0) 0,#000 80%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,0)),color-stop(80%,#000));background:-webkit-linear-gradient(top,rgba(0,0,0,0) 0,#000 80%);background:-o-linear-gradient(top,rgba(0,0,0,0) 0,#000 80%);background:-ms-linear-gradient(top,rgba(0,0,0,0) 0,#000 80%);background:linear-gradient(to bottom,rgba(0,0,0,0) 0,#000 80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media{opacity:1}.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"],.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=tl-icon-]{color:#FFF}.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after{background:-moz-linear-gradient(top,rgba(51,51,51,0) 0,#333 80%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(51,51,51,0)),color-stop(80%,#333));background:-webkit-linear-gradient(top,rgba(51,51,51,0) 0,#333 80%);background:-o-linear-gradient(top,rgba(51,51,51,0) 0,#333 80%);background:-ms-linear-gradient(top,rgba(51,51,51,0) 0,#333 80%);background:linear-gradient(to bottom,rgba(51,51,51,0) 0,#333 80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left,.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right{border-color:#FFF}.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left:after,.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right:after{background-color:#FFF}.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan{background-color:rgba(51,51,51,.5);z-index:8}.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan .tl-timemarker-timespan-content{background-color:#CCC}.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left,.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right{border-color:rgba(204,204,204,.5);border-width:1px;z-index:8;box-shadow:0 1px 3px rgba(0,0,0,.5)}.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left:after,.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after{background-color:#CCC}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container{background-color:#333;color:#CCC;z-index:9;border-color:rgba(204,204,204,.5);box-shadow:1px 1px 3px rgba(0,0,0,.5)}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline{color:#CCC}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after{background:-moz-linear-gradient(top,rgba(51,51,51,0) 0,#333 80%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(51,51,51,0)),color-stop(80%,#333));background:-webkit-linear-gradient(top,rgba(51,51,51,0) 0,#333 80%);background:-o-linear-gradient(top,rgba(51,51,51,0) 0,#333 80%);background:-ms-linear-gradient(top,rgba(51,51,51,0) 0,#333 80%);background:linear-gradient(to bottom,rgba(51,51,51,0) 0,#333 80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media{opacity:1}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"],.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=tl-icon-]{color:#CCC}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-timespan-content{display:block}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-left,.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-right{z-index:5}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan:after{display:block;content:" ";position:absolute;left:0;bottom:-7px;height:6px;width:100%;background-color:rgba(0,0,0,.15);z-index:6;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-content-container.tl-timemarker-content-container-long{box-shadow:none}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-right{display:block}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-left{box-shadow:none}.tl-timemarker.tl-timemarker-with-end:hover .tl-timemarker-timespan:after{background-color:rgba(0,0,0,.25)}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-timespan:after{background-color:rgba(204,204,204,.5)}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left,.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right{border-width:1px}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left:after,.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right:after{background-color:#CCC!important}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left{box-shadow:none}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active:hover .tl-timemarker-timespan:after{background-color:rgba(204,204,204,.5)}.tl-timeera{height:100%;height:40px;position:absolute;bottom:0;left:0;pointer-events:none;z-index:3;-webkit-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timeera.tl-timeera-fast{-webkit-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-moz-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-o-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timeera .tl-timeera-background{position:absolute;background-color:#28a6c3;width:100%;height:100%;opacity:1}.tl-timeera.tl-timeera-color0 .tl-timeera-background{background-color:#c34528}.tl-timeera.tl-timeera-color1 .tl-timeera-background{background-color:#28a6c3}.tl-timeera.tl-timeera-color2 .tl-timeera-background{background-color:#2832c3}.tl-timeera.tl-timeera-color3 .tl-timeera-background{background-color:#28c36c}.tl-timeera.tl-timeera-color4 .tl-timeera-background{background-color:#286dc3}.tl-timeera.tl-timeera-color5 .tl-timeera-background{background-color:#28c3a7}.tl-timeera .tl-timeera-content-container{position:absolute;border:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;height:100%;width:100px;overflow:hidden;-webkit-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1);box-sizing:border-box;border:1px solid #0d0d0d}.tl-timeera .tl-timeera-content-container .tl-timeera-content{position:relative;overflow:hidden;height:100%;padding:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text{overflow:hidden;position:relative;height:100%}.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline{bottom:0;position:absolute;display:-webkit-box;line-clamp:4;-webkit-line-clamp:4;box-orient:vertical;-webkit-box-orient:vertical;text-overflow:ellipsis;font-size:10px;line-height:10px;overflow:hidden;font-weight:400;margin:0;color:#333;margin-left:10px}.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline.tl-headline-fadeout:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:100%;height:50%;background:-moz-linear-gradient(top,rgba(38,38,38,0) 0,#262626 50%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(38,38,38,0)),color-stop(50%,#262626));background:-webkit-linear-gradient(top,rgba(38,38,38,0) 0,#262626 50%);background:-o-linear-gradient(top,rgba(38,38,38,0) 0,#262626 50%);background:-ms-linear-gradient(top,rgba(38,38,38,0) 0,#262626 50%);background:linear-gradient(to bottom,rgba(38,38,38,0) 0,#262626 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timegroup{width:100%;position:absolute;top:0;left:0;background-color:#4d4d4d;display:-ms-flexbox;display:-webkit-flex;display:flex;align-items:center;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;-webkit-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timegroup .tl-timegroup-message{color:#000;text-shadow:#333 0 2px 2px;margin-left:80px}.tl-timegroup.tl-timegroup-alternate{background-color:#545454}.tl-timegroup.tl-timegroup-hidden{display:none}.tl-timeaxis-background{height:38px;width:100%;position:absolute;bottom:0;left:0;background-color:#333;border-top:1px solid #404040;z-index:2}.tl-timeaxis{height:38px;width:100%;position:absolute;bottom:0;left:0;z-index:3}.tl-timeaxis .tl-timeaxis-content-container{position:relative;bottom:0;height:38px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor{opacity:0;position:absolute}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick{position:absolute;display:block;top:0;left:0;text-align:center;font-weight:400}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick .tl-timeaxis-tick-text,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text{display:inline-block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before{content:"|";display:block;color:#333;width:1px;overflow:hidden;border-left:1px solid #575757;text-align:center}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate .tl-timeaxis-tick,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate .tl-timeaxis-tick{-webkit-transition:all 1s cubic-bezier(.77,0,.175,1);-moz-transition:all 1s cubic-bezier(.77,0,.175,1);-o-transition:all 1s cubic-bezier(.77,0,.175,1);transition:all 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate-opacity .tl-timeaxis-tick,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate-opacity .tl-timeaxis-tick{-webkit-transition:opacity 1s cubic-bezier(.77,0,.175,1);-moz-transition:opacity 1s cubic-bezier(.77,0,.175,1);-o-transition:opacity 1s cubic-bezier(.77,0,.175,1);transition:opacity 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major{z-index:1;background-color:#333}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick{font-size:12px;line-height:14px;color:#8a8a8a;width:100px;margin-left:-50px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before{border-color:#707070;font-size:18px;line-height:18px;margin-bottom:2px;margin-left:50px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick{font-size:10px;line-height:12px;color:#575757;width:50px;margin-left:-25px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text{opacity:0;white-space:normal;padding-left:2px;padding-right:2px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text span{display:block;font-size:9px;line-height:9px;margin-top:-2px;color:#7d7d7d}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before{font-size:8px;line-height:8px;margin-left:25px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden .tl-timeaxis-tick-text{opacity:0!important}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden:before{opacity:.33}.tlanimate{-webkit-transform:translateZ(0);-webkit-perspective:1000;-webkit-backface-visibility:hidden}.tl-animate{-webkit-transition:all 1s cubic-bezier(.77,0,.175,1);-moz-transition:all 1s cubic-bezier(.77,0,.175,1);-o-transition:all 1s cubic-bezier(.77,0,.175,1);transition:all 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-animate-opacity{-webkit-transition:opacity 1s cubic-bezier(.77,0,.175,1);-moz-transition:opacity 1s cubic-bezier(.77,0,.175,1);-o-transition:opacity 1s cubic-bezier(.77,0,.175,1);transition:opacity 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-slide{position:absolute;width:100%;height:100%;padding:0;margin:0;overflow-x:hidden;overflow-y:auto}.tl-slide .tl-slide-background{position:absolute;left:0;top:0;width:100%;height:100%;z-index:-1;overflow:hidden;display:none;filter:alpha(opacity=50);-khtml-opacity:.5;-moz-opacity:.5;opacity:.5;background:no-repeat center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.tl-slide .tl-slide-scrollable-container{display:table;table-layout:fixed;height:100%;z-index:1}.tl-slide .tl-slide-content-container{display:table-cell;vertical-align:middle;position:relative;width:100%;height:100%;z-index:3}.tl-slide .tl-slide-content-container .tl-slide-content{display:table;vertical-align:middle;padding-left:100px;padding-right:100px;position:relative;max-width:100%}.tl-slide .tl-slide-content-container .tl-slide-content .tl-media{position:relative;width:100%;min-width:50%;float:left;margin-top:auto;margin-bottom:auto}.tl-slide .tl-slide-content-container .tl-slide-content .tl-text{width:50%;max-width:50%;min-width:120px;padding:0 20px 0 20px;display:table-cell;vertical-align:middle;text-align:left}.tl-slide-media-only .tl-slide-content-container .tl-slide-content{text-align:center}.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media{text-align:center;position:relative;width:100%;min-width:50%;max-width:100%;float:none;margin-top:auto;margin-bottom:auto}.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-text{width:100%;max-width:100%;display:block;margin-left:auto;margin-right:auto;text-align:center}.tl-slide-text-only .tl-slide-content-container .tl-slide-content{text-align:center}.tl-slide-text-only .tl-slide-content-container .tl-slide-content .tl-text{max-width:80%;width:80%;display:block;margin-left:auto;margin-right:auto}.tl-slide.tl-full-color-background,.tl-slide.tl-full-image-background{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background h1,.tl-slide.tl-full-color-background h2,.tl-slide.tl-full-color-background h3,.tl-slide.tl-full-color-background h4,.tl-slide.tl-full-color-background h5,.tl-slide.tl-full-color-background h6,.tl-slide.tl-full-color-background p,.tl-slide.tl-full-image-background h1,.tl-slide.tl-full-image-background h2,.tl-slide.tl-full-image-background h3,.tl-slide.tl-full-image-background h4,.tl-slide.tl-full-image-background h5,.tl-slide.tl-full-image-background h6,.tl-slide.tl-full-image-background p{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background a,.tl-slide.tl-full-color-background a:hover,.tl-slide.tl-full-color-background b,.tl-slide.tl-full-color-background blockquote,.tl-slide.tl-full-color-background blockquote p,.tl-slide.tl-full-color-background i,.tl-slide.tl-full-image-background a,.tl-slide.tl-full-image-background a:hover,.tl-slide.tl-full-image-background b,.tl-slide.tl-full-image-background blockquote,.tl-slide.tl-full-image-background blockquote p,.tl-slide.tl-full-image-background i{color:#FFF!important;text-shadow:1px 1px 1px #000!important;color:#fff}.tl-slide.tl-full-color-background .tl-caption,.tl-slide.tl-full-color-background .tl-credit,.tl-slide.tl-full-image-background .tl-caption,.tl-slide.tl-full-image-background .tl-credit{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background .tl-media-blockquote blockquote,.tl-slide.tl-full-color-background .tl-media-twitter blockquote,.tl-slide.tl-full-image-background .tl-media-blockquote blockquote,.tl-slide.tl-full-image-background .tl-media-twitter blockquote{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background .tl-media-blockquote blockquote p,.tl-slide.tl-full-color-background .tl-media-twitter blockquote p,.tl-slide.tl-full-image-background .tl-media-blockquote blockquote p,.tl-slide.tl-full-image-background .tl-media-twitter blockquote p{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background .vcard .nickname,.tl-slide.tl-full-color-background .vcard a,.tl-slide.tl-full-image-background .vcard .nickname,.tl-slide.tl-full-image-background .vcard a{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-image-background{background:no-repeat center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-position:center 25%;text-shadow:1px 1px 2px #000}.tl-slide.tl-full-image-background h1,.tl-slide.tl-full-image-background h2,.tl-slide.tl-full-image-background h3,.tl-slide.tl-full-image-background h4,.tl-slide.tl-full-image-background h5,.tl-slide.tl-full-image-background h6,.tl-slide.tl-full-image-background p{text-shadow:1px 1px 2px #000}.tl-slide.tl-full-image-background .tl-caption,.tl-slide.tl-full-image-background .tl-credit{text-shadow:1px 1px 2px #000}.tl-slide.tl-full-image-background .tl-media-blockquote blockquote,.tl-slide.tl-full-image-background .tl-media-twitter blockquote{text-shadow:1px 1px 2px #000!important}.tl-slide.tl-full-image-background .tl-media-blockquote blockquote p,.tl-slide.tl-full-image-background .tl-media-twitter blockquote p{text-shadow:1px 1px 2px #000!important}.tl-slide.tl-text-background .tl-text .tl-text-content-container{padding:20px;background:#000 transparent;background:rgba(0,0,0,.6);-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-slide.tl-text-background .tl-text .tl-text-content-container h2{margin-top:5px}.tl-skinny .tl-slide{display:block;padding-top:10px}.tl-skinny .tl-slide .tl-slide-content-container{display:block;position:static;height:auto;height:100%;display:-webkit-flex;display:flex;align-items:center;-webkit-align-items:center}.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content{display:block;display:-webkit-flex;display:flex;flex-direction:column-reverse;-webkit-flex-direction:column-reverse;position:static;height:auto;padding-left:50px;padding-right:50px}.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media{position:static;width:100%;height:auto;float:none;display:block;padding-top:20px;border-top:1px solid #000}.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text{display:block;height:auto;vertical-align:initial;position:static;width:100%;max-width:100%;min-width:0;float:none;padding:0}.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text .tl-text-content-container{padding-left:10px;padding-right:10px;padding-bottom:10px}.tl-skinny .tl-slide.tl-full-image-background .tl-slide-content-container .tl-slide-content .tl-media,.tl-skinny .tl-slide.tl-slide.tl-full-color-background .tl-slide-content-container .tl-slide-content .tl-media{border-color:rgba(0,0,0,.25)}.tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content{flex-direction:column;-webkit-flex-direction:column}.tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media{border-top:none;padding-top:0}.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media embed,.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media iframe,.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media img,.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media object,.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media video{max-height:175px}.tl-slidenav-next,.tl-slidenav-previous{position:absolute;top:45%;z-index:10;cursor:pointer}.tl-slidenav-next .tl-slidenav-content-container,.tl-slidenav-previous .tl-slidenav-content-container{height:200px;width:100px;position:absolute}.tl-slidenav-next .tl-slidenav-description,.tl-slidenav-next .tl-slidenav-title,.tl-slidenav-previous .tl-slidenav-description,.tl-slidenav-previous .tl-slidenav-title{width:80px;-webkit-line-clamp:2;line-clamp:2;text-overflow:ellipsis;filter:alpha(opacity=15);-khtml-opacity:.15;-moz-opacity:.15;opacity:.15}.tl-slidenav-next .tl-slidenav-description small,.tl-slidenav-next .tl-slidenav-title small,.tl-slidenav-previous .tl-slidenav-description small,.tl-slidenav-previous .tl-slidenav-title small{display:block}.tl-slidenav-next .tl-slidenav-title,.tl-slidenav-previous .tl-slidenav-title{margin-top:10px;font-size:11px;line-height:11px}.tl-slidenav-next .tl-slidenav-description,.tl-slidenav-previous .tl-slidenav-description{font-size:11px;margin-top:5px;filter:alpha(opacity=0);-khtml-opacity:0;-moz-opacity:0;opacity:0}.tl-slidenav-next .tl-slidenav-description small,.tl-slidenav-previous .tl-slidenav-description small{display:none}.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-description,.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-icon,.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-title,.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-description,.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-icon,.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-title{text-shadow:1px 1px 1px #333;color:#CCC}.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description,.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title,.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description,.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title{color:#bfbfbf;text-shadow:1px 1px 1px #CCC}.tl-slidenav-next .tl-slidenav-icon,.tl-slidenav-previous .tl-slidenav-icon{font-family:tl-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:32px;margin-bottom:5px}.tl-slidenav-next{text-align:right;margin-right:10px;right:100px}.tl-slidenav-next .tl-slidenav-description,.tl-slidenav-next .tl-slidenav-title{margin-left:20px}.tl-slidenav-next .tl-slidenav-icon{margin-left:76px}.tl-slidenav-next .tl-slidenav-icon:before{content:"\e64f"}.tl-slidenav-previous{text-align:left;margin-left:10px}.tl-slidenav-previous .tl-slidenav-icon{margin-left:0}.tl-slidenav-previous .tl-slidenav-icon:before{content:"\e650"}.tl-slidenav-next:hover .tl-slidenav-title,.tl-slidenav-previous:hover .tl-slidenav-title{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-slidenav-next:hover .tl-slidenav-description,.tl-slidenav-previous:hover .tl-slidenav-description{filter:alpha(opacity=50);-khtml-opacity:.5;-moz-opacity:.5;opacity:.5}.tl-slidenav-next:hover .tl-slidenav-icon{margin-left:80px}.tl-slidenav-previous:hover .tl-slidenav-icon{margin-left:-4px}.tl-skinny .tl-slidenav-next{right:32px}.tl-skinny .tl-slidenav-next .tl-slidenav-icon{margin-left:8px}.tl-skinny .tl-slidenav-next .tl-slidenav-content-container,.tl-skinny .tl-slidenav-previous .tl-slidenav-content-container{width:32px;height:32px}.tl-skinny .tl-slidenav-next .tl-slidenav-description,.tl-skinny .tl-slidenav-next .tl-slidenav-title,.tl-skinny .tl-slidenav-previous .tl-slidenav-description,.tl-skinny .tl-slidenav-previous .tl-slidenav-title{display:none}.tl-skinny .tl-slidenav-next .tl-slidenav-icon,.tl-skinny .tl-slidenav-previous .tl-slidenav-icon{filter:alpha(opacity=33);-khtml-opacity:.33;-moz-opacity:.33;opacity:.33}.tl-skinny .tl-slidenav-next:hover .tl-slidenav-icon{margin-left:12px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-skinny .tl-slidenav-previous:hover .tl-slidenav-icon{margin-left:-4px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-landscape.tl-mobile .tl-slidenav-next:hover{right:70px}.tl-layout-landscape.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon{margin-left:8px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-landscape.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon{margin-left:0;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-landscape.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon{margin-left:80px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-landscape.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;margin-left:-4px}.tl-layout-portrait.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon{filter:alpha(opacity=33);-khtml-opacity:.33;-moz-opacity:.33;opacity:.33}.tl-layout-portrait.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-portrait.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon{filter:alpha(opacity=33);-khtml-opacity:.33;-moz-opacity:.33;opacity:.33}.tl-layout-portrait.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-mobile .tl-slidenav-next,.tl-mobile .tl-slidenav-previous,.tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-next,.tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-previous,.tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-next,.tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-previous,.tl-skinny.tl-mobile .tl-slidenav-next,.tl-skinny.tl-mobile .tl-slidenav-previous{display:none}.tl-storyslider{width:100%;height:100%;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;position:relative;box-sizing:content-box;z-index:8}.tl-storyslider embed,.tl-storyslider iframe,.tl-storyslider img,.tl-storyslider object,.tl-storyslider video{max-width:100%;position:relative}.tl-storyslider .tl-slider-background{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.tl-storyslider .tl-slider-touch-mask{width:100%;height:100%;z-index:25;top:0;left:0;position:absolute}.tl-storyslider .tl-slider-container-mask{text-align:center;width:100%;height:100%;position:relative;z-index:5}.tl-storyslider .tl-slider-container-mask .tl-slider-container{position:absolute;top:0;left:0;width:100%;height:100%;text-align:center}.tl-storyslider .tl-slider-container-mask .tl-slider-container .tl-slider-item-container{width:100%;height:100%;display:table-cell;vertical-align:middle}.tl-media{width:100%;min-width:50%;height:100%;float:left;margin-top:auto;margin-bottom:auto;position:relative}.tl-media .tl-media-content-container.tl-media-content-container-text{border-right:1px solid #000;padding-right:20px}.tl-media .tl-media-content-container .tl-media-content{position:relative}.tl-media .tl-media-content-container .tl-media-content:after,.tl-media .tl-media-content-container .tl-media-content:before{display:table;content:""}.tl-media .tl-media-content-container .tl-media-content:after{clear:both}.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p{color:#4d4d4d;text-align:center}.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p span{color:#4d4d4d}.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class*=" tl-icon-"],.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class^=tl-icon-]{font-size:36px;color:#4d4d4d;text-align:center}.tl-media .tl-media-content-container .tl-media-content embed,.tl-media .tl-media-content-container .tl-media-content img,.tl-media .tl-media-content-container .tl-media-content object,.tl-media .tl-media-content-container .tl-media-content video{max-width:100%;max-height:100%}.tl-slide-media-only .tl-media .tl-media-content-container.tl-media-content-container-text{border-right:none;padding-right:0}.tl-media-shadow{position:relative;z-index:1;-webkit-box-shadow:0 12px 10px -10px rgba(0,0,0,.6);-moz-box-shadow:0 12px 10px -10px rgba(0,0,0,.6);box-shadow:0 12px 10px -10px rgba(0,0,0,.6)}.tl-slide.tl-full-color-background .vcard a,.tl-slide.tl-full-color-background a,.tl-slide.tl-full-image-background .vcard a,.tl-slide.tl-full-image-background a{color:#FFF!important;text-shadow:1px 1px 1px #000!important;color:#fff}.tl-credit{color:#999;text-align:right;display:block;margin:0 auto;margin-top:6px;font-size:10px;line-height:13px}.tl-caption{text-align:left;margin-right:auto;margin-left:auto;margin-top:10px;color:#666;font-size:11px;line-height:14px;text-rendering:optimizeLegibility;word-wrap:break-word}.tl-full-color-background .tl-media-shadow:after,.tl-full-color-background .tl-media-shadow:before,.tl-full-image-background .tl-media-shadow:after,.tl-full-image-background .tl-media-shadow:before{background:0 0;-webkit-box-shadow:0 0 0 #000;-moz-box-shadow:0 0 0 #000;box-shadow:0 0 0 #000}.tl-skinny .tl-media{width:100%;height:auto;float:none;display:block}.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text{border-right:0;padding-right:0}.tl-skinny .tl-media .tl-media-content-container .tl-caption,.tl-skinny .tl-media .tl-media-content-container .tl-credit{margin-top:2px;padding-left:10px;padding-right:10px;font-size:8px}.tl-skinny .tl-media .tl-media-content-container .tl-credit{margin-top:0}.tl-mobile.tl-skinny .tl-media{width:100%;height:auto;float:none;display:block}.tl-mobile.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text{border-right:0;padding-right:0}.tl-text{width:50%;max-width:50%;min-width:120px;padding:0 20px 0 20px;display:table-cell;vertical-align:middle;text-align:left;text-shadow:none;color:grey}.tl-text p{color:grey}.tl-text h2.tl-headline,.tl-text h2.tl-headline-title{margin-top:0}.tl-text .tl-headline-date,.tl-text h3.tl-headline-date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;line-height:15px;font-weight:400;margin:0 0 3px 0;color:#bfbfbf}.tl-text .tl-headline-date small,.tl-text h3.tl-headline-date small{font-size:15px;line-height:15px;font-weight:400;color:#bfbfbf}.tl-text .tl-text-date{display:inline-block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;margin-top:10px;font-size:12px;color:#bfbfbf}.tl-full-color-background .tl-text,.tl-full-color-background .tl-text p,.tl-full-image-background .tl-text,.tl-full-image-background .tl-text p{color:#bfbfbf!important;text-shadow:1px 1px 2px #000}.tl-full-color-background .tl-text .tl-headline-date,.tl-full-color-background .tl-text h3.tl-headline-date,.tl-full-color-background .tl-text p .tl-headline-date,.tl-full-color-background .tl-text p h3.tl-headline-date,.tl-full-image-background .tl-text .tl-headline-date,.tl-full-image-background .tl-text h3.tl-headline-date,.tl-full-image-background .tl-text p .tl-headline-date,.tl-full-image-background .tl-text p h3.tl-headline-date{color:#bfbfbf!important}.tl-full-color-background .tl-text .tl-headline-date small,.tl-full-color-background .tl-text h3.tl-headline-date small,.tl-full-color-background .tl-text p .tl-headline-date small,.tl-full-color-background .tl-text p h3.tl-headline-date small,.tl-full-image-background .tl-text .tl-headline-date small,.tl-full-image-background .tl-text h3.tl-headline-date small,.tl-full-image-background .tl-text p .tl-headline-date small,.tl-full-image-background .tl-text p h3.tl-headline-date small{color:#bfbfbf!important}.tl-skinny .tl-text{width:100%;max-width:100%;min-width:auto;float:none;margin-top:20px}.tl-skinny .tl-text h2.tl-headline,.tl-skinny .tl-text h2.tl-headline-title{font-size:32px;line-height:36px}.tl-medium .tl-text h2.tl-headline,.tl-medium .tl-text h2.tl-headline-title{font-size:32px;line-height:36px}.tl-mobile.tl-skinny .tl-media .tl-media-image{max-height:250px!important}.tl-media .tl-media-twitter{text-align:left;clear:both}.tl-media .tl-media-twitter blockquote{margin:0;margin-right:15px;font-size:15px;line-height:21px;color:#CCC}.tl-media .tl-media-twitter blockquote p{font-size:36px;line-height:39px;color:#FFF}.tl-media .tl-media-twitter blockquote p:before{display:none}.tl-media .tl-media-twitter blockquote p:after{display:none}.tl-media .tl-media-twitter .tl-icon-twitter{color:#55ACEE}.tl-media .tl-media-twitter .vcard a.tl-date:hover,.tl-media .tl-media-twitter .vcard a:hover{text-decoration:none;color:#55ACEE}.tl-media .tl-media-twitter .vcard a.tl-date:hover .fn,.tl-media .tl-media-twitter .vcard a.tl-date:hover .nickname,.tl-media .tl-media-twitter .vcard a:hover .fn,.tl-media .tl-media-twitter .vcard a:hover .nickname{color:#55ACEE}.tl-slide-media-only .tl-media .tl-media-twitter{width:80%;margin-left:auto;margin-right:auto}.tl-mobile.tl-skinny .tl-media .tl-media-twitter blockquote p{font-size:15px;line-height:21px}.tl-skinny .tl-media .tl-media-twitter{margin-left:10px;margin-right:10px}.tl-skinny .tl-media .tl-media-twitter blockquote p{font-size:24px;line-height:26px}.tl-media .tl-media-blockquote{text-align:left;clear:both}.tl-media .tl-media-blockquote blockquote{margin:0;margin-right:15px;text-align:left;font-size:36px;line-height:39px;color:#CCC}.tl-media .tl-media-blockquote blockquote p{font-size:36px;line-height:39px;color:#CCC}.tl-media .tl-media-blockquote blockquote p:after,.tl-media .tl-media-blockquote blockquote p:before{display:inline-block;font-size:46px}.tl-media .tl-media-blockquote blockquote p:before{content:open-quote;margin-right:5px}.tl-media .tl-media-blockquote blockquote p:after{content:close-quote;margin-left:3px}.tl-media .tl-media-blockquote blockquote cite{font-size:15px;line-height:21px;color:#fff;text-align:right;margin-top:15px}.tl-slide-media-only .tl-media .tl-media-blockquote{border-right:0;width:80%;margin-left:auto;margin-right:auto}@media only screen and (max-width:800px),only screen and (max-device-width:800px){.tl-media .tl-media-blockquote blockquote p{font-size:24px;line-height:26px}}@media only screen and (max-width:500px),only screen and (max-device-width:500px){.tl-media .tl-media-blockquote blockquote p{font-size:15px;line-height:21px}}.tl-mobile.tl-skinny .tl-media .tl-media-instagram{max-height:250px!important}.tl-media .tl-media-profile{border-radius:50%}.tl-media .tl-media-iframe{width:100%;height:100%}.tl-media .tl-media-iframe iframe{width:100%;height:100%}.tl-media .tl-media-wikipedia{text-align:left;margin-left:auto;margin-right:auto;clear:both}.tl-media .tl-media-wikipedia .tl-icon-wikipedia{font-size:32px;margin-right:10px;float:left;padding-top:3px}.tl-media .tl-media-wikipedia .tl-wikipedia-pageimage{float:left;margin-right:10px;margin-bottom:5px;margin-top:5px}.tl-media .tl-media-wikipedia .tl-wikipedia-title{margin-left:60px;padding-left:10px;border-left:1px solid #000;margin-bottom:10px}.tl-media .tl-media-wikipedia .tl-wikipedia-source{font-size:13px;line-height:15px;font-style:italic;margin-top:3px;display:block;color:rgba(255,255,255,.5)}.tl-media .tl-media-wikipedia h4{margin-top:0;margin-bottom:0}.tl-media .tl-media-wikipedia h4 a{color:#FFF;text-decoration:none}.tl-media .tl-media-wikipedia h4 a:hover{text-decoration:underline}.tl-media .tl-media-wikipedia p{font-size:13px;line-height:19px}.tl-slide-media-only .tl-media .tl-media-wikipedia{border-right:0;border-top:1px solid #000;width:80%;margin-left:auto;margin-right:auto;margin-top:25px;padding-top:25px}.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia,.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia{padding:20px;background:#000 transparent;background:rgba(0,0,0,.6);-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia h4 a,.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia h4 a{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-title,.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-title{border-color:rgba(0,0,0,.25)}.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-source,.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-source{color:rgba(0,0,0,.85)}.tl-mobile.tl-skinny .tl-media .tl-media-wikipedia,.tl-skinny .tl-media .tl-media-wikipedia{margin-left:10px;margin-right:10px}.tl-media .tl-media-website{text-align:left;margin-left:auto;margin-right:auto;clear:both}.tl-media .tl-media-website .tl-media-website-description{font-size:16px;line-height:19px;font-style:italic;margin-bottom:10px;text-transform:uppercase}.tl-media .tl-media-website h4{margin-top:0;margin-bottom:0;line-height:1}.tl-media .tl-media-website h4 a{color:#FFF;text-decoration:none}.tl-media .tl-media-website h4 a:hover{text-decoration:underline}.tl-media .tl-media-website p{font-size:13px;line-height:19px}.tl-media .tl-media-content-container .tl-media-content .tl-media-website img{float:right;max-width:120px;max-height:120px;margin:4px 0 0 15px}.tl-media .tl-media-content-container .tl-media-content .tl-media-website img.tl-media-website-icon{max-width:16px;max-height:16px;float:none;margin:0;margin-right:3px}.tl-slide.tl-full-color-background .tl-media .tl-media-website,.tl-slide.tl-full-image-background .tl-media .tl-media-website{padding:20px;background:#000 transparent;background:rgba(0,0,0,.6);-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-slide.tl-full-color-background .tl-media .tl-media-website h4 a,.tl-slide.tl-full-image-background .tl-media .tl-media-website h4 a{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-mobile.tl-skinny .tl-media .tl-media-website{margin-left:10px;margin-right:10px}.tl-timeline{width:100%;height:100%;font-size:16px;line-height:normal;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;background-color:#333;color:grey;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.tl-timeline.tl-timeline-embed{box-sizing:border-box;border-top:1px solid #000;border-bottom:1px solid #000;border-radius:0}.tl-timeline.tl-timeline-full-embed{box-sizing:border-box;border:1px solid #000;border-radius:8px}.tl-layout-portrait .tl-storyslider{-webkit-box-shadow:0 -3px 6px rgba(0,0,0,.2);-moz-box-shadow:0 -3px 6px rgba(0,0,0,.2);box-shadow:0 -3px 6px rgba(0,0,0,.2)}.tl-rtl .blockquote,.tl-rtl .tl-headline,.tl-rtl .tl-headline-date,.tl-rtl .tl-media .tl-media-blockquote blockquote,.tl-rtl .tl-media-blockquote,.tl-rtl .tl-media-website,.tl-rtl .tl-media-wikipedia,.tl-rtl .tl-text-content,.tl-rtl .tl-text-content p,.tl-rtl .tl-timeline blockquote p,.tl-rtl blockquote p{text-align:right}.tl-rtl .tl-slide-media-only .tl-headline,.tl-rtl .tl-slide-media-only .tl-headline-date{text-align:center}.tl-rtl .tl-timemarker-text{margin-right:35px}.tl-rtl .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container{float:right}.tl-rtl .tl-caption{text-align:right}.tl-rtl .tl-credit{text-align:left}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/css/timeline.css b/public/opac/TimelineJS3-3.5.1/compiled/css/timeline.css
new file mode 100644
index 0000000000000000000000000000000000000000..436630b245db69d98d460136798b16e85814ef2a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/css/timeline.css
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+.tl-storyjs div *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.tl-storyjs .active,.tl-storyjs .caption,.tl-storyjs .content-container,.tl-storyjs .credit,.tl-storyjs .date,.tl-storyjs .dot,.tl-storyjs .era,.tl-storyjs .flag,.tl-storyjs .line,.tl-storyjs .major,.tl-storyjs .map,.tl-storyjs .marker,.tl-storyjs .media,.tl-storyjs .message,.tl-storyjs .minor,.tl-storyjs .slider,.tl-storyjs .start,.tl-storyjs .text,.tl-storyjs .time,.tl-storyjs .title,.tl-storyjs .tl-container,.tl-storyjs .tl-feature,.tl-storyjs .tl-feedback,.tl-storyjs .tl-navigation,.tl-storyjs .tl-slider,.tl-storyjs .toolbar,.tl-storyjs a,.tl-storyjs abbr,.tl-storyjs acronym,.tl-storyjs address,.tl-storyjs blockquote,.tl-storyjs button,.tl-storyjs caption,.tl-storyjs cite,.tl-storyjs code,.tl-storyjs dd,.tl-storyjs del,.tl-storyjs dfn,.tl-storyjs dl,.tl-storyjs dt,.tl-storyjs em,.tl-storyjs fieldset,.tl-storyjs form,.tl-storyjs h1,.tl-storyjs h2,.tl-storyjs h3,.tl-storyjs h4,.tl-storyjs h5,.tl-storyjs h6,.tl-storyjs img,.tl-storyjs label,.tl-storyjs legend,.tl-storyjs li,.tl-storyjs ol,.tl-storyjs p,.tl-storyjs pre,.tl-storyjs q,.tl-storyjs s,.tl-storyjs samp,.tl-storyjs small,.tl-storyjs strike,.tl-storyjs strong,.tl-storyjs sub,.tl-storyjs sup,.tl-storyjs table,.tl-storyjs tbody,.tl-storyjs td,.tl-storyjs tfoot,.tl-storyjs th,.tl-storyjs thead,.tl-storyjs tr,.tl-storyjs tt,.tl-storyjs ul,.tl-storyjs var{margin:0;padding:0;border:0;font-weight:400;font-style:normal;font-size:100%;line-height:1;font-family:inherit;width:auto;float:none}.tl-storyjs h1,.tl-storyjs h2,.tl-storyjs h3,.tl-storyjs h4,.tl-storyjs h5,.tl-storyjs h6{clear:none}.tl-storyjs table{border-collapse:collapse;border-spacing:0}.tl-storyjs ol,.tl-storyjs ul{list-style:none}.tl-storyjs blockquote:after,.tl-storyjs blockquote:before,.tl-storyjs q:after,.tl-storyjs q:before{content:""}.tl-storyjs a:focus{outline:thin dotted}.tl-storyjs a:active,.tl-storyjs a:hover{outline:0}.tl-storyjs article,.tl-storyjs aside,.tl-storyjs details,.tl-storyjs figcaption,.tl-storyjs figure,.tl-storyjs footer,.tl-storyjs header,.tl-storyjs hgroup,.tl-storyjs nav,.tl-storyjs section{display:block}.tl-storyjs audio,.tl-storyjs canvas,.tl-storyjs video{display:inline-block}.tl-storyjs audio:not([controls]){display:none}.tl-storyjs div{max-width:none}.tl-storyjs sub,.tl-storyjs sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.tl-storyjs sup{top:-.5em}.tl-storyjs sub{bottom:-.25em}.tl-storyjs img{border:0;-ms-interpolation-mode:bicubic}.tl-storyjs button,.tl-storyjs input,.tl-storyjs select,.tl-storyjs textarea{font-size:100%;margin:0;vertical-align:baseline}.tl-storyjs button,.tl-storyjs input{line-height:normal}.tl-storyjs button::-moz-focus-inner,.tl-storyjs input::-moz-focus-inner{border:0;padding:0}.tl-storyjs button,.tl-storyjs input[type=button],.tl-storyjs input[type=reset],.tl-storyjs input[type=submit]{cursor:pointer;-webkit-appearance:button}.tl-storyjs input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.tl-storyjs input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.tl-storyjs textarea{overflow:auto;vertical-align:top}.tl-timeline{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3,.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{color:#000}.tl-timeline h1,.tl-timeline h2,.tl-timeline h3{font-size:28px;line-height:28px}.tl-timeline h1 small,.tl-timeline h2 small,.tl-timeline h3 small{font-size:24px;line-height:24px}.tl-timeline h4,.tl-timeline h5,.tl-timeline h6{font-size:24px;line-height:24px;margin-bottom:0}.tl-timeline h4 small,.tl-timeline h5 small,.tl-timeline h6 small{font-size:15px;line-height:15px}.tl-timeline h2.tl-headline-title{font-size:38px;line-height:38px}.tl-timeline h2.tl-headline-title small{display:block;margin-top:5px;font-size:24px;line-height:24px}.tl-timeline h2{margin-top:20px;margin-bottom:5px}.tl-timeline p{margin-top:5px;margin-bottom:10px;font-size:15px;line-height:1.42857143;color:#666}.tl-timeline p.lead{font-size:24px}.tl-timeline p a{color:#666;text-decoration:underline}.tl-timeline p a:focus,.tl-timeline p a:hover{color:#c34528}@media (-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.tl-timeline p a{text-decoration:underline;background-image:none;text-shadow:none}.tl-timeline p a:focus,.tl-timeline p a:hover{color:#c34528;text-decoration:underline}}.tl-timeline b,.tl-timeline strong{font-weight:700}.tl-timeline em,.tl-timeline i{font-style:italic}.tl-timeline a{text-decoration:none;color:#c34528}.tl-timeline a:hover{text-decoration:underline;color:#6e2717}.tl-timeline .tl-caption,.tl-timeline .tl-credit,.tl-timeline .tl-slidenav-next,.tl-timeline .tl-slidenav-previous{font-size:11px;line-height:11px}.tl-timeline .tl-caption a,.tl-timeline .tl-credit a,.tl-timeline .tl-slidenav-next a,.tl-timeline .tl-slidenav-previous a{color:#000}.tl-timeline .tl-makelink{word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.tl-timeline blockquote,.tl-timeline blockquote p{font-family:Georgia,Times New Roman,Times,serif;color:#999;font-size:24px;line-height:24px;text-align:left;background:0 0;border:0;padding:0}.tl-timeline blockquote cite,.tl-timeline blockquote p cite{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:11px;color:#666;display:block;text-align:right;font-style:normal}.tl-timeline blockquote cite:before,.tl-timeline blockquote p cite:before{content:"\2014"}.tl-timeline blockquote p:before{content:open-quote;display:inline-block;font-size:28px;position:relative;top:8px;margin-right:5px}.tl-timeline blockquote p:after{content:close-quote;display:inline-block;font-size:28px;position:relative;top:8px;margin-left:3px}.tl-timeline blockquote{margin:10px}.tl-timeline blockquote p{margin:0}.tl-timeline .vcard{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;line-height:15px;margin-bottom:15px;margin-top:10px}.tl-timeline .vcard:after,.tl-timeline .vcard:before{display:table;content:""}.tl-timeline .vcard:after{clear:both}.tl-timeline .vcard .twitter-date{text-align:left;font-size:11px}.tl-timeline .vcard .author{float:right}.tl-timeline .vcard a{color:#333;text-decoration:none}.tl-timeline .vcard a:hover{text-decoration:none}.tl-timeline .vcard a:hover .fn,.tl-timeline .vcard a:hover .nickname{color:#c34528}.tl-timeline .vcard .fn,.tl-timeline .vcard .nickname{padding-left:42px}.tl-timeline .vcard .fn{display:block;font-weight:700}.tl-timeline .vcard .nickname{margin-top:1px;display:block;color:#666}.tl-timeline .vcard .avatar{float:left;display:block;width:32px;height:32px}.tl-timeline .vcard .avatar img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.tl-timeline .tl-text ul{padding:0;padding-left:30px;margin:0}.tl-timeline .tl-text ul li{margin-bottom:5px}.tl-timeline .tl-button-calltoaction{cursor:pointer;font-weight:700;padding-top:10px;margin-bottom:10px;padding-bottom:10px}.tl-timeline .tl-button-calltoaction .tl-button-calltoaction-text{display:inline-block;background-color:#c34528;color:#fff;padding:10px 15px 10px 15px;border-radius:7px}.tl-timeline .tl-note{display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:italic;background-color:#e6e6e6;font-size:15px;line-height:17px;padding:10px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;color:#8a6d3b;background-color:#fcf8e3;border:1px solid #faebcc;text-shadow:none}@media only screen and (max-width:800px),only screen and (max-device-width:800px){.tl-timeline h1,.tl-timeline h2,.tl-timeline h3{font-size:28px;line-height:28px}}@media only screen and (max-width:500px),only screen and (max-device-width:500px){.tl-timeline h1,.tl-timeline h2,.tl-timeline h3{font-size:24px;line-height:24px}}.tl-skinny h2{margin-top:0}@font-face{font-family:tl-icons;src:url(icons/tl-icons.eot);src:url(icons/tl-icons.eot?#iefix) format('embedded-opentype'),url(icons/tl-icons.ttf) format('truetype'),url(icons/tl-icons.woff) format('woff'),url(icons/tl-icons.svg#tl-icons) format('svg');font-weight:400;font-style:normal}[class*=" tl-icon-"],[class^=tl-icon-]{font-family:tl-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tl-icon-vine:after{content:"\e64d"}.tl-icon-wikipedia:after{content:"\e64e"}.tl-icon-chevron-right:after{content:"\e64f"}.tl-icon-chevron-left:after{content:"\e650"}.tl-icon-youtube-logo:after{content:"\e651"}.tl-icon-foursquare:after{content:"\e652"}.tl-icon-camera-retro:after{content:"\e653"}.tl-icon-doc:after{content:"\e654"}.tl-icon-weibo:after{content:"\e655"}.tl-icon-resize-horizontal:after{content:"\e656"}.tl-icon-resize-vertical:after{content:"\e657"}.tl-icon-resize-full:after{content:"\e658"}.tl-icon-resize-small:after{content:"\e659"}.tl-icon-twitter:after{content:"\e62b"}.tl-icon-google-plus:after{content:"\e62c"}.tl-icon-video:after{content:"\e62d"}.tl-icon-youtube:after{content:"\e62d"}.tl-icon-plaintext:after{content:"\e62e"}.tl-icon-storify:after{content:"\e62e"}.tl-icon-image-v2:after{content:"\e62f"}.tl-icon-quote-v2:after{content:"\e630"}.tl-icon-zoom-in:after{content:"\e631"}.tl-icon-zoom-out:after{content:"\e632"}.tl-icon-list:after{content:"\e633"}.tl-icon-music:after{content:"\e634"}.tl-icon-spotify:after{content:"\e634"}.tl-icon-location:after{content:"\e635"}.tl-icon-googlemaps:after{content:"\e635"}.tl-icon-web:after{content:"\e636"}.tl-icon-share-v2:after{content:"\e637"}.tl-icon-soundcloud:after{content:"\e639"}.tl-icon-video-v2:after{content:"\e63a"}.tl-icon-dailymotion:after{content:"\e63a"}.tl-icon-tumblr:after{content:"\e63b"}.tl-icon-lastfm:after{content:"\e63c"}.tl-icon-github:after{content:"\e63d"}.tl-icon-goback:after{content:"\e63e"}.tl-icon-doc-v2:after{content:"\e63f"}.tl-icon-googledrive:after{content:"\e640"}.tl-icon-facebook:after{content:"\e641"}.tl-icon-flickr:after{content:"\e642"}.tl-icon-dribbble:after{content:"\e643"}.tl-icon-image:after{content:"\e605"}.tl-icon-vimeo:after{content:"\e606"}.tl-icon-instagram:after{content:"\e644"}.tl-icon-pinterest:after{content:"\e645"}.tl-icon-arrow-left:after{content:"\e646"}.tl-icon-arrow-down:after{content:"\e647"}.tl-icon-arrow-up:after{content:"\e648"}.tl-icon-arrow-right:after{content:"\e649"}.tl-icon-share:after{content:"\e64a"}.tl-icon-blockquote:after{content:"\e64b"}.tl-icon-evernote:after{content:"\e64c"}.tl-icon-mappin:after{content:"\e600"}.tl-icon-swipe-right:after{content:"\e601"}.tl-icon-swipe-left:after{content:"\e602"}.tl-icon-touch-spread:after{content:"\e603"}.tl-icon-touch-pinch:after{content:"\e604"}.tl-dragging{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.tl-menubar{position:absolute;z-index:11;text-align:center;color:#333;overflow:hidden;border-bottom-right-radius:10px;border-top-right-radius:10px;top:100%;left:50%;left:0}@keyframes invertToBlack{from{background-color:#FFF}to{background-color:#000}}@-webkit-keyframes invertToBlack{from{background:#FFF}to{background:#000}}@keyframes invertToWhite{from{background-color:#000}to{background-color:#FFF}}@-webkit-keyframes invertToWhite{from{background:#000}to{background:#FFF}}.tl-menubar-button{font-size:18px;line-height:18px;background-color:rgba(242,242,242,.9);cursor:pointer;padding:6px 12px 6px 12px;display:inline-block;display:block;color:#bfbfbf}.tl-menubar-button.tl-menubar-button-inactive{opacity:.33}.tl-menubar-button:hover{background:#333;color:#FFF}.tl-menubar-button:hover.tl-menubar-button-inactive{color:#bfbfbf;background-color:rgba(242,242,242,.9)}.tl-mobile .tl-menubar-button{display:block}.tl-mobile .tl-menubar-button:hover{background-color:rgba(242,242,242,.67);color:#737373}.tl-mobile .tl-menubar-button:active{background:#c34528;color:#FFF}@keyframes invertToBlack{from{background-color:#FFF}to{background-color:#000}}@-webkit-keyframes invertToBlack{from{background:#FFF}to{background:#000}}@keyframes invertToWhite{from{background-color:#000}to{background-color:#FFF}}@-webkit-keyframes invertToWhite{from{background:#000}to{background:#FFF}}.tl-message,.tl-message-full{width:100%;height:100%;position:absolute;display:table;overflow:hidden;top:0;left:0;z-index:99;margin:auto;text-align:center}.tl-message .tl-message-container,.tl-message-full .tl-message-container{padding:20px;margin:20px;text-align:center;vertical-align:middle;display:table-cell}.tl-message .tl-message-container .tl-message-content,.tl-message-full .tl-message-container .tl-message-content{color:#666;text-align:center;font-size:11px;line-height:13px;text-transform:uppercase;margin-top:7.5px;margin-bottom:7.5px;text-shadow:1px 1px 1px #FFF}.tl-message .tl-message-container .tl-message-content strong,.tl-message-full .tl-message-container .tl-message-content strong{text-transform:uppercase}.tl-message .tl-message-container .tl-loading-icon,.tl-message-full .tl-message-container .tl-loading-icon{width:30px;height:30px;background-color:#666;vertical-align:middle;-webkit-box-shadow:inset 0 1px 2px rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 2px rgba(255,255,255,.1);box-shadow:inset 0 1px 2px rgba(255,255,255,.1);margin-left:auto;margin-right:auto;text-align:center;-webkit-animation:rotateplane 1.2s infinite ease-in-out;animation:rotateplane 1.2s infinite ease-in-out}@-webkit-keyframes rotateplane{0%{-webkit-transform:perspective(120px)}50%{-webkit-transform:perspective(120px) rotateY(180deg)}100%{-webkit-transform:perspective(120px) rotateY(180deg) rotateX(180deg)}}@keyframes rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.tl-message-full{background-color:rgba(255,255,255,.8)}.tl-message-full [class*=" tl-icon-"],.tl-message-full [class^=tl-icon-]{color:#666;font-size:72px}.tl-message-full .tl-message-container .tl-message-content{font-size:22px;line-height:22px;text-shadow:none;color:#666;text-transform:none;font-weight:400}.tl-message-full .tl-message-container .tl-message-content .tl-button{display:inline-block;cursor:pointer;background-color:#FFF;color:#333;padding:10px;margin-top:10px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-timenav{width:100%;background-color:#f2f2f2;position:relative;overflow:hidden;border-top:1px solid #e5e5e5}.tl-timenav .tl-attribution{cursor:pointer;z-index:9;position:absolute;bottom:2px;left:0;font-size:10px;line-height:10px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif!important;background-color:rgba(255,255,255,.85);padding:3px}.tl-timenav .tl-attribution a{color:#ccc}.tl-timenav .tl-attribution a:hover{color:#000;text-decoration:none}.tl-timenav .tl-attribution a:hover .tl-knightlab-logo{background-color:#c34528}.tl-timenav .tl-attribution .tl-knightlab-logo{display:inline-block;vertical-align:middle;height:8px;width:8px;margin-right:3px;background-color:#c34528;background-color:#ccc;transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg)}.tl-timenav .tl-timenav-line{position:absolute;top:0;left:50%;width:1px;height:100%;background-color:#d9d9d9;z-index:2;display:none}.tl-timenav .tl-timenav-line:after,.tl-timenav .tl-timenav-line:before{font-family:tl-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#c34528;font-size:32px;line-height:32px;position:absolute;left:-14px}.tl-timenav .tl-timenav-line:before{top:-10px}.tl-timenav .tl-timenav-line:after{content:"\e648";bottom:24px}.tl-timenav .tl-timenav-slider{position:absolute;height:100%;width:100%;top:0}.tl-timenav .tl-timenav-slider.tl-timenav-slider-animate{-webkit-transition:all 1s cubic-bezier(.77,0,.175,1);-moz-transition:all 1s cubic-bezier(.77,0,.175,1);-o-transition:all 1s cubic-bezier(.77,0,.175,1);transition:all 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timenav .tl-timenav-slider .tl-timenav-slider-background{position:absolute;height:100%;width:100%;cursor:move;z-index:6}.tl-timenav .tl-timenav-slider .tl-timenav-container-mask{position:absolute;height:100%;top:0}.tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container{position:absolute;height:100%}.tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container .tl-timenav-item-container{position:absolute;height:100%}.tl-timemarker{height:100%;position:absolute;top:0;left:0;cursor:pointer;-webkit-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timemarker.tl-timemarker-fast{-webkit-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-moz-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-o-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timemarker.tl-timemarker-fast .tl-timemarker-content-container{-webkit-transition:width .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1);-moz-transition:width .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1);-o-transition:width .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1);transition:width .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1)}.tl-timemarker.tl-timemarker-fast .tl-timemarker-timespan{-webkit-transition:height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-moz-transition:height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-o-transition:height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);transition:height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1)}.tl-timemarker .tl-timemarker-timespan{pointer-events:none;position:absolute;margin:0;width:100%;height:100%;background-color:rgba(229,229,229,.15);border-top-right-radius:4px;border-top-left-radius:4px;-webkit-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timemarker .tl-timemarker-timespan .tl-timemarker-timespan-content{display:none;position:absolute;width:100%;background-color:#e5e5e5;border-top-left-radius:4px;border-top-right-radius:4px;height:100px;box-sizing:border-box}.tl-timemarker .tl-timemarker-line-right{display:none;right:0}.tl-timemarker .tl-timemarker-line-left{width:1px;left:0}.tl-timemarker .tl-timemarker-line-left,.tl-timemarker .tl-timemarker-line-right{margin-top:7px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-left:1px solid #d9d9d9;z-index:5;content:" ";position:absolute;height:100%;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-shadow:1px 1px 1px #FFF}.tl-timemarker .tl-timemarker-line-left:after,.tl-timemarker .tl-timemarker-line-right:after{display:block;content:" ";position:absolute;left:-4px;bottom:0;height:6px;width:6px;background-color:#919191;z-index:8;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.tl-timemarker .tl-timemarker-content-container{position:absolute;background-color:#e5e5e5;border:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;height:100%;width:100px;overflow:hidden;z-index:6;-webkit-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1);box-sizing:border-box;border:1px solid #d9d9d9;box-shadow:1px 1px 1px #FFF}.tl-timemarker .tl-timemarker-content-container:hover{z-index:9}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content{position:relative;overflow:hidden;height:100%;z-index:8;padding:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text{overflow:hidden;position:relative}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline,.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p{display:-webkit-box;line-clamp:2;-webkit-line-clamp:2;box-orient:vertical;-webkit-box-orient:vertical;text-overflow:ellipsis;font-size:12px;line-height:12px;height:100%;overflow:hidden;font-weight:400;margin:0;color:#bfbfbf;position:relative}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p.tl-headline-fadeout:after,.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:100%;height:50%;background:-moz-linear-gradient(top,rgba(229,229,229,0) 0,#e5e5e5 50%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(229,229,229,0)),color-stop(50%,#e5e5e5));background:-webkit-linear-gradient(top,rgba(229,229,229,0) 0,#e5e5e5 50%);background:-o-linear-gradient(top,rgba(229,229,229,0) 0,#e5e5e5 50%);background:-ms-linear-gradient(top,rgba(229,229,229,0) 0,#e5e5e5 50%);background:linear-gradient(to bottom,rgba(229,229,229,0) 0,#e5e5e5 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container{float:left;max-width:24px;max-height:24px;overflow:hidden;margin-right:5px;height:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media{max-width:24px;max-height:100%;opacity:.25}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"],.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=tl-icon-]{display:block;font-size:24px;color:#bfbfbf;margin-top:0}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-icon-wikipedia{font-size:16px}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-text h2.tl-headline{display:block;white-space:nowrap;text-overflow:ellipsis}.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class*=" tl-icon-"],.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class^=tl-icon-]{font-size:12px}.tl-timemarker:hover .tl-timemarker-timespan{background-color:rgba(191,191,191,.15)}.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-timespan-content{background-color:#bfbfbf}.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left,.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right{border-color:#a6a6a6}.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left:after,.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right:after{background-color:#3d3d3d}.tl-timemarker:hover .tl-timemarker-content-container{background-color:#bfbfbf;border-color:#a6a6a6;-webkit-transition:height 250ms cubic-bezier(.77,0,.175,1),width 250ms cubic-bezier(.77,0,.175,1);-moz-transition:height 250ms cubic-bezier(.77,0,.175,1),width 250ms cubic-bezier(.77,0,.175,1);-o-transition:height 250ms cubic-bezier(.77,0,.175,1),width 250ms cubic-bezier(.77,0,.175,1);transition:height 250ms cubic-bezier(.77,0,.175,1),width 250ms cubic-bezier(.77,0,.175,1)}.tl-timemarker:hover .tl-timemarker-content-container.tl-timemarker-content-container-small{width:200px}.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline{color:#FFF}.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after{background:-moz-linear-gradient(top,rgba(191,191,191,0) 0,#bfbfbf 80%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(191,191,191,0)),color-stop(80%,#bfbfbf));background:-webkit-linear-gradient(top,rgba(191,191,191,0) 0,#bfbfbf 80%);background:-o-linear-gradient(top,rgba(191,191,191,0) 0,#bfbfbf 80%);background:-ms-linear-gradient(top,rgba(191,191,191,0) 0,#bfbfbf 80%);background:linear-gradient(to bottom,rgba(191,191,191,0) 0,#bfbfbf 80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media{opacity:1}.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"],.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=tl-icon-]{color:#FFF}.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after{background:-moz-linear-gradient(top,rgba(255,255,255,0) 0,#FFF 80%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,0)),color-stop(80%,#FFF));background:-webkit-linear-gradient(top,rgba(255,255,255,0) 0,#FFF 80%);background:-o-linear-gradient(top,rgba(255,255,255,0) 0,#FFF 80%);background:-ms-linear-gradient(top,rgba(255,255,255,0) 0,#FFF 80%);background:linear-gradient(to bottom,rgba(255,255,255,0) 0,#FFF 80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left,.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right{border-color:#000}.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left:after,.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right:after{background-color:#000}.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan{background-color:rgba(255,255,255,.5);z-index:8}.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan .tl-timemarker-timespan-content{background-color:#333}.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left,.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right{border-color:rgba(51,51,51,.5);border-width:1px;z-index:8;box-shadow:0 1px 3px rgba(145,145,145,.5)}.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left:after,.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after{background-color:#333}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container{background-color:#FFF;color:#333;z-index:9;border-color:rgba(51,51,51,.5);box-shadow:1px 1px 3px rgba(145,145,145,.5)}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline{color:#333}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after{background:-moz-linear-gradient(top,rgba(255,255,255,0) 0,#FFF 80%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,0)),color-stop(80%,#FFF));background:-webkit-linear-gradient(top,rgba(255,255,255,0) 0,#FFF 80%);background:-o-linear-gradient(top,rgba(255,255,255,0) 0,#FFF 80%);background:-ms-linear-gradient(top,rgba(255,255,255,0) 0,#FFF 80%);background:linear-gradient(to bottom,rgba(255,255,255,0) 0,#FFF 80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media{opacity:1}.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"],.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=tl-icon-]{color:#333}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-timespan-content{display:block}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-left,.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-right{z-index:5}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan:after{display:block;content:" ";position:absolute;left:0;bottom:-7px;height:6px;width:100%;background-color:rgba(115,115,115,.15);z-index:6;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-content-container.tl-timemarker-content-container-long{box-shadow:none}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-right{display:block}.tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-left{box-shadow:none}.tl-timemarker.tl-timemarker-with-end:hover .tl-timemarker-timespan:after{background-color:rgba(0,0,0,.25)}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-timespan:after{background-color:rgba(51,51,51,.5)}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left,.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right{border-width:1px}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left:after,.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right:after{background-color:#333!important}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left{box-shadow:none}.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active:hover .tl-timemarker-timespan:after{background-color:rgba(51,51,51,.5)}.tl-timeera{height:100%;height:40px;position:absolute;bottom:0;left:0;pointer-events:none;z-index:3;-webkit-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timeera.tl-timeera-fast{-webkit-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-moz-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-o-transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);transition:top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width .5s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timeera .tl-timeera-background{position:absolute;background-color:#28a6c3;width:100%;height:100%;opacity:1}.tl-timeera.tl-timeera-color0 .tl-timeera-background{background-color:#c34528}.tl-timeera.tl-timeera-color1 .tl-timeera-background{background-color:#28a6c3}.tl-timeera.tl-timeera-color2 .tl-timeera-background{background-color:#2832c3}.tl-timeera.tl-timeera-color3 .tl-timeera-background{background-color:#28c36c}.tl-timeera.tl-timeera-color4 .tl-timeera-background{background-color:#286dc3}.tl-timeera.tl-timeera-color5 .tl-timeera-background{background-color:#28c3a7}.tl-timeera .tl-timeera-content-container{position:absolute;border:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;height:100%;width:100px;overflow:hidden;-webkit-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1);box-sizing:border-box;border:1px solid #d9d9d9}.tl-timeera .tl-timeera-content-container .tl-timeera-content{position:relative;overflow:hidden;height:100%;padding:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text{overflow:hidden;position:relative;height:100%}.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline{bottom:0;position:absolute;display:-webkit-box;line-clamp:4;-webkit-line-clamp:4;box-orient:vertical;-webkit-box-orient:vertical;text-overflow:ellipsis;font-size:10px;line-height:10px;overflow:hidden;font-weight:400;margin:0;color:#FFF;margin-left:10px}.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline.tl-headline-fadeout:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:100%;height:50%;background:-moz-linear-gradient(top,rgba(229,229,229,0) 0,#e5e5e5 50%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(229,229,229,0)),color-stop(50%,#e5e5e5));background:-webkit-linear-gradient(top,rgba(229,229,229,0) 0,#e5e5e5 50%);background:-o-linear-gradient(top,rgba(229,229,229,0) 0,#e5e5e5 50%);background:-ms-linear-gradient(top,rgba(229,229,229,0) 0,#e5e5e5 50%);background:linear-gradient(to bottom,rgba(229,229,229,0) 0,#e5e5e5 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0)}.tl-timegroup{width:100%;position:absolute;top:0;left:0;background-color:#f2f2f2;display:-ms-flexbox;display:-webkit-flex;display:flex;align-items:center;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;-webkit-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-moz-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-o-transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);transition:left 1s cubic-bezier(.77,0,.175,1),top .5s cubic-bezier(.77,0,.175,1),height .5s cubic-bezier(.77,0,.175,1),width 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timegroup .tl-timegroup-message{color:#e0e0e0;text-shadow:#FFF 0 2px 2px;margin-left:80px}.tl-timegroup.tl-timegroup-alternate{background-color:#fafafa}.tl-timegroup.tl-timegroup-hidden{display:none}.tl-timeaxis-background{height:39px;width:100%;position:absolute;bottom:0;left:0;background-color:#FFF;border-top:1px solid #e5e5e5;z-index:2}.tl-timeaxis{height:39px;width:100%;position:absolute;bottom:0;left:0;z-index:3}.tl-timeaxis .tl-timeaxis-content-container{position:relative;bottom:0;height:39px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor{opacity:0;position:absolute}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick{position:absolute;display:block;top:0;left:0;text-align:center;font-weight:400}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick .tl-timeaxis-tick-text,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text{display:inline-block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before{content:"|";display:block;color:#FFF;width:1px;overflow:hidden;border-left:1px solid #bfbfbf;text-align:center}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate .tl-timeaxis-tick,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate .tl-timeaxis-tick{-webkit-transition:all 1s cubic-bezier(.77,0,.175,1);-moz-transition:all 1s cubic-bezier(.77,0,.175,1);-o-transition:all 1s cubic-bezier(.77,0,.175,1);transition:all 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate-opacity .tl-timeaxis-tick,.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate-opacity .tl-timeaxis-tick{-webkit-transition:opacity 1s cubic-bezier(.77,0,.175,1);-moz-transition:opacity 1s cubic-bezier(.77,0,.175,1);-o-transition:opacity 1s cubic-bezier(.77,0,.175,1);transition:opacity 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major{z-index:1;background-color:#FFF}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick{font-size:12px;line-height:14px;color:#737373;width:100px;margin-left:-50px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before{border-color:#a6a6a6;font-size:18px;line-height:18px;margin-bottom:2px;margin-left:50px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick{font-size:11px;line-height:13px;color:#bfbfbf;width:50px;margin-left:-25px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text{opacity:0;white-space:normal;padding-left:2px;padding-right:2px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text span{display:block;font-size:9px;line-height:9px;margin-top:-2px;color:#e6e6e6}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before{font-size:9px;line-height:9px;margin-left:25px}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden .tl-timeaxis-tick-text{opacity:0!important}.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden:before{opacity:.33}.tlanimate{-webkit-transform:translateZ(0);-webkit-perspective:1000;-webkit-backface-visibility:hidden}.tl-animate{-webkit-transition:all 1s cubic-bezier(.77,0,.175,1);-moz-transition:all 1s cubic-bezier(.77,0,.175,1);-o-transition:all 1s cubic-bezier(.77,0,.175,1);transition:all 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-animate-opacity{-webkit-transition:opacity 1s cubic-bezier(.77,0,.175,1);-moz-transition:opacity 1s cubic-bezier(.77,0,.175,1);-o-transition:opacity 1s cubic-bezier(.77,0,.175,1);transition:opacity 1s cubic-bezier(.77,0,.175,1);-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1);-moz-transition-timing-function:cubic-bezier(.77,0,.175,1);-o-transition-timing-function:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.tl-slide{position:absolute;width:100%;height:100%;padding:0;margin:0;overflow-x:hidden;overflow-y:auto}.tl-slide .tl-slide-background{position:absolute;left:0;top:0;width:100%;height:100%;z-index:-1;overflow:hidden;display:none;filter:alpha(opacity=50);-khtml-opacity:.5;-moz-opacity:.5;opacity:.5;background:no-repeat center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.tl-slide .tl-slide-scrollable-container{display:table;table-layout:fixed;height:100%;z-index:1}.tl-slide .tl-slide-content-container{display:table-cell;vertical-align:middle;position:relative;width:100%;height:100%;z-index:3}.tl-slide .tl-slide-content-container .tl-slide-content{display:table;vertical-align:middle;padding-left:100px;padding-right:100px;position:relative;max-width:100%}.tl-slide .tl-slide-content-container .tl-slide-content .tl-media{position:relative;width:100%;min-width:50%;float:left;margin-top:auto;margin-bottom:auto}.tl-slide .tl-slide-content-container .tl-slide-content .tl-text{width:50%;max-width:50%;min-width:120px;padding:0 20px 0 20px;display:table-cell;vertical-align:middle;text-align:left}.tl-slide-media-only .tl-slide-content-container .tl-slide-content{text-align:center}.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media{text-align:center;position:relative;width:100%;min-width:50%;max-width:100%;float:none;margin-top:auto;margin-bottom:auto}.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-text{width:100%;max-width:100%;display:block;margin-left:auto;margin-right:auto;text-align:center}.tl-slide-text-only .tl-slide-content-container .tl-slide-content{text-align:center}.tl-slide-text-only .tl-slide-content-container .tl-slide-content .tl-text{max-width:80%;width:80%;display:block;margin-left:auto;margin-right:auto}.tl-slide.tl-full-color-background,.tl-slide.tl-full-image-background{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background h1,.tl-slide.tl-full-color-background h2,.tl-slide.tl-full-color-background h3,.tl-slide.tl-full-color-background h4,.tl-slide.tl-full-color-background h5,.tl-slide.tl-full-color-background h6,.tl-slide.tl-full-color-background p,.tl-slide.tl-full-image-background h1,.tl-slide.tl-full-image-background h2,.tl-slide.tl-full-image-background h3,.tl-slide.tl-full-image-background h4,.tl-slide.tl-full-image-background h5,.tl-slide.tl-full-image-background h6,.tl-slide.tl-full-image-background p{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background a,.tl-slide.tl-full-color-background a:hover,.tl-slide.tl-full-color-background b,.tl-slide.tl-full-color-background blockquote,.tl-slide.tl-full-color-background blockquote p,.tl-slide.tl-full-color-background i,.tl-slide.tl-full-image-background a,.tl-slide.tl-full-image-background a:hover,.tl-slide.tl-full-image-background b,.tl-slide.tl-full-image-background blockquote,.tl-slide.tl-full-image-background blockquote p,.tl-slide.tl-full-image-background i{color:#FFF!important;text-shadow:1px 1px 1px #000!important;color:#fff}.tl-slide.tl-full-color-background .tl-caption,.tl-slide.tl-full-color-background .tl-credit,.tl-slide.tl-full-image-background .tl-caption,.tl-slide.tl-full-image-background .tl-credit{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background .tl-media-blockquote blockquote,.tl-slide.tl-full-color-background .tl-media-twitter blockquote,.tl-slide.tl-full-image-background .tl-media-blockquote blockquote,.tl-slide.tl-full-image-background .tl-media-twitter blockquote{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background .tl-media-blockquote blockquote p,.tl-slide.tl-full-color-background .tl-media-twitter blockquote p,.tl-slide.tl-full-image-background .tl-media-blockquote blockquote p,.tl-slide.tl-full-image-background .tl-media-twitter blockquote p{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background .vcard .nickname,.tl-slide.tl-full-color-background .vcard a,.tl-slide.tl-full-image-background .vcard .nickname,.tl-slide.tl-full-image-background .vcard a{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-image-background{background:no-repeat center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-position:center 25%;text-shadow:1px 1px 2px #000}.tl-slide.tl-full-image-background h1,.tl-slide.tl-full-image-background h2,.tl-slide.tl-full-image-background h3,.tl-slide.tl-full-image-background h4,.tl-slide.tl-full-image-background h5,.tl-slide.tl-full-image-background h6,.tl-slide.tl-full-image-background p{text-shadow:1px 1px 2px #000}.tl-slide.tl-full-image-background .tl-caption,.tl-slide.tl-full-image-background .tl-credit{text-shadow:1px 1px 2px #000}.tl-slide.tl-full-image-background .tl-media-blockquote blockquote,.tl-slide.tl-full-image-background .tl-media-twitter blockquote{text-shadow:1px 1px 2px #000!important}.tl-slide.tl-full-image-background .tl-media-blockquote blockquote p,.tl-slide.tl-full-image-background .tl-media-twitter blockquote p{text-shadow:1px 1px 2px #000!important}.tl-slide.tl-text-background .tl-text .tl-text-content-container{padding:20px;background:#000 transparent;background:rgba(0,0,0,.6);-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-slide.tl-text-background .tl-text .tl-text-content-container h2{margin-top:5px}.tl-skinny .tl-slide{display:block;padding-top:10px}.tl-skinny .tl-slide .tl-slide-content-container{display:block;position:static;height:auto;height:100%;display:-webkit-flex;display:flex;align-items:center;-webkit-align-items:center}.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content{display:block;display:-webkit-flex;display:flex;flex-direction:column-reverse;-webkit-flex-direction:column-reverse;position:static;height:auto;padding-left:50px;padding-right:50px}.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media{position:static;width:100%;height:auto;float:none;display:block;padding-top:20px;border-top:1px solid #e6e6e6}.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text{display:block;height:auto;vertical-align:initial;position:static;width:100%;max-width:100%;min-width:0;float:none;padding:0}.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text .tl-text-content-container{padding-left:10px;padding-right:10px;padding-bottom:10px}.tl-skinny .tl-slide.tl-full-image-background .tl-slide-content-container .tl-slide-content .tl-media,.tl-skinny .tl-slide.tl-slide.tl-full-color-background .tl-slide-content-container .tl-slide-content .tl-media{border-color:rgba(230,230,230,.25)}.tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content{flex-direction:column;-webkit-flex-direction:column}.tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media{border-top:none;padding-top:0}.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media embed,.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media iframe,.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media img,.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media object,.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media video{max-height:175px}.tl-slidenav-next,.tl-slidenav-previous{position:absolute;top:45%;z-index:10;cursor:pointer}.tl-slidenav-next .tl-slidenav-content-container,.tl-slidenav-previous .tl-slidenav-content-container{height:200px;width:100px;position:absolute}.tl-slidenav-next .tl-slidenav-description,.tl-slidenav-next .tl-slidenav-title,.tl-slidenav-previous .tl-slidenav-description,.tl-slidenav-previous .tl-slidenav-title{width:80px;-webkit-line-clamp:2;line-clamp:2;text-overflow:ellipsis;filter:alpha(opacity=15);-khtml-opacity:.15;-moz-opacity:.15;opacity:.15}.tl-slidenav-next .tl-slidenav-description small,.tl-slidenav-next .tl-slidenav-title small,.tl-slidenav-previous .tl-slidenav-description small,.tl-slidenav-previous .tl-slidenav-title small{display:block}.tl-slidenav-next .tl-slidenav-title,.tl-slidenav-previous .tl-slidenav-title{margin-top:10px;font-size:11px;line-height:11px}.tl-slidenav-next .tl-slidenav-description,.tl-slidenav-previous .tl-slidenav-description{font-size:11px;margin-top:5px;filter:alpha(opacity=0);-khtml-opacity:0;-moz-opacity:0;opacity:0}.tl-slidenav-next .tl-slidenav-description small,.tl-slidenav-previous .tl-slidenav-description small{display:none}.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-description,.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-icon,.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-title,.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-description,.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-icon,.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-title{text-shadow:1px 1px 1px #FFF;color:#333}.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description,.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title,.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description,.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title{color:#f2f2f2;text-shadow:1px 1px 1px #333}.tl-slidenav-next .tl-slidenav-icon,.tl-slidenav-previous .tl-slidenav-icon{font-family:tl-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:32px;margin-bottom:5px}.tl-slidenav-next{text-align:right;margin-right:10px;right:100px}.tl-slidenav-next .tl-slidenav-description,.tl-slidenav-next .tl-slidenav-title{margin-left:20px}.tl-slidenav-next .tl-slidenav-icon{margin-left:76px}.tl-slidenav-next .tl-slidenav-icon:before{content:"\e64f"}.tl-slidenav-previous{text-align:left;margin-left:10px}.tl-slidenav-previous .tl-slidenav-icon{margin-left:0}.tl-slidenav-previous .tl-slidenav-icon:before{content:"\e650"}.tl-slidenav-next:hover .tl-slidenav-title,.tl-slidenav-previous:hover .tl-slidenav-title{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-slidenav-next:hover .tl-slidenav-description,.tl-slidenav-previous:hover .tl-slidenav-description{filter:alpha(opacity=50);-khtml-opacity:.5;-moz-opacity:.5;opacity:.5}.tl-slidenav-next:hover .tl-slidenav-icon{margin-left:80px}.tl-slidenav-previous:hover .tl-slidenav-icon{margin-left:-4px}.tl-skinny .tl-slidenav-next{right:32px}.tl-skinny .tl-slidenav-next .tl-slidenav-icon{margin-left:8px}.tl-skinny .tl-slidenav-next .tl-slidenav-content-container,.tl-skinny .tl-slidenav-previous .tl-slidenav-content-container{width:32px;height:32px}.tl-skinny .tl-slidenav-next .tl-slidenav-description,.tl-skinny .tl-slidenav-next .tl-slidenav-title,.tl-skinny .tl-slidenav-previous .tl-slidenav-description,.tl-skinny .tl-slidenav-previous .tl-slidenav-title{display:none}.tl-skinny .tl-slidenav-next .tl-slidenav-icon,.tl-skinny .tl-slidenav-previous .tl-slidenav-icon{filter:alpha(opacity=33);-khtml-opacity:.33;-moz-opacity:.33;opacity:.33}.tl-skinny .tl-slidenav-next:hover .tl-slidenav-icon{margin-left:12px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-skinny .tl-slidenav-previous:hover .tl-slidenav-icon{margin-left:-4px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-landscape.tl-mobile .tl-slidenav-next:hover{right:70px}.tl-layout-landscape.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon{margin-left:8px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-landscape.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon{margin-left:0;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-landscape.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon{margin-left:80px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-landscape.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;margin-left:-4px}.tl-layout-portrait.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon{filter:alpha(opacity=33);-khtml-opacity:.33;-moz-opacity:.33;opacity:.33}.tl-layout-portrait.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-layout-portrait.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon{filter:alpha(opacity=33);-khtml-opacity:.33;-moz-opacity:.33;opacity:.33}.tl-layout-portrait.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1}.tl-mobile .tl-slidenav-next,.tl-mobile .tl-slidenav-previous,.tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-next,.tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-previous,.tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-next,.tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-previous,.tl-skinny.tl-mobile .tl-slidenav-next,.tl-skinny.tl-mobile .tl-slidenav-previous{display:none}.tl-storyslider{width:100%;height:100%;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;position:relative;box-sizing:content-box;z-index:8}.tl-storyslider embed,.tl-storyslider iframe,.tl-storyslider img,.tl-storyslider object,.tl-storyslider video{max-width:100%;position:relative}.tl-storyslider .tl-slider-background{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.tl-storyslider .tl-slider-touch-mask{width:100%;height:100%;z-index:25;top:0;left:0;position:absolute}.tl-storyslider .tl-slider-container-mask{text-align:center;width:100%;height:100%;position:relative;z-index:5}.tl-storyslider .tl-slider-container-mask .tl-slider-container{position:absolute;top:0;left:0;width:100%;height:100%;text-align:center}.tl-storyslider .tl-slider-container-mask .tl-slider-container .tl-slider-item-container{width:100%;height:100%;display:table-cell;vertical-align:middle}.tl-media{width:100%;min-width:50%;height:100%;float:left;margin-top:auto;margin-bottom:auto;position:relative}.tl-media .tl-media-content-container.tl-media-content-container-text{border-right:1px solid #e6e6e6;padding-right:20px}.tl-media .tl-media-content-container .tl-media-content{position:relative}.tl-media .tl-media-content-container .tl-media-content:after,.tl-media .tl-media-content-container .tl-media-content:before{display:table;content:""}.tl-media .tl-media-content-container .tl-media-content:after{clear:both}.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p{color:#f2f2f2;text-align:center}.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p span{color:#f2f2f2}.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class*=" tl-icon-"],.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class^=tl-icon-]{font-size:28px;color:#f2f2f2;text-align:center}.tl-media .tl-media-content-container .tl-media-content embed,.tl-media .tl-media-content-container .tl-media-content img,.tl-media .tl-media-content-container .tl-media-content object,.tl-media .tl-media-content-container .tl-media-content video{max-width:100%;max-height:100%}.tl-slide-media-only .tl-media .tl-media-content-container.tl-media-content-container-text{border-right:none;padding-right:0}.tl-media-shadow{position:relative;z-index:1;-webkit-box-shadow:0 12px 10px -10px rgba(0,0,0,.6);-moz-box-shadow:0 12px 10px -10px rgba(0,0,0,.6);box-shadow:0 12px 10px -10px rgba(0,0,0,.6)}.tl-slide.tl-full-color-background .vcard a,.tl-slide.tl-full-color-background a,.tl-slide.tl-full-image-background .vcard a,.tl-slide.tl-full-image-background a{color:#FFF!important;text-shadow:1px 1px 1px #000!important;color:#fff}.tl-credit{color:#999;text-align:right;display:block;margin:0 auto;margin-top:6px;font-size:10px;line-height:13px}.tl-caption{text-align:left;margin-right:auto;margin-left:auto;margin-top:10px;color:#666;font-size:11px;line-height:14px;text-rendering:optimizeLegibility;word-wrap:break-word}.tl-full-color-background .tl-media-shadow:after,.tl-full-color-background .tl-media-shadow:before,.tl-full-image-background .tl-media-shadow:after,.tl-full-image-background .tl-media-shadow:before{background:0 0;-webkit-box-shadow:0 0 0 #000;-moz-box-shadow:0 0 0 #000;box-shadow:0 0 0 #000}.tl-skinny .tl-media{width:100%;height:auto;float:none;display:block}.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text{border-right:0;padding-right:0}.tl-skinny .tl-media .tl-media-content-container .tl-caption,.tl-skinny .tl-media .tl-media-content-container .tl-credit{margin-top:2px;padding-left:10px;padding-right:10px;font-size:8px}.tl-skinny .tl-media .tl-media-content-container .tl-credit{margin-top:0}.tl-mobile.tl-skinny .tl-media{width:100%;height:auto;float:none;display:block}.tl-mobile.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text{border-right:0;padding-right:0}.tl-text{width:50%;max-width:50%;min-width:120px;padding:0 20px 0 20px;display:table-cell;vertical-align:middle;text-align:left;text-shadow:none;color:#737373}.tl-text p{color:#737373}.tl-text h2.tl-headline,.tl-text h2.tl-headline-title{margin-top:0}.tl-text .tl-headline-date,.tl-text h3.tl-headline-date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;line-height:15px;font-weight:400;margin:0 0 3px 0;color:#b3b3b3}.tl-text .tl-headline-date small,.tl-text h3.tl-headline-date small{font-size:15px;line-height:15px;font-weight:400;color:#b3b3b3}.tl-text .tl-text-date{display:inline-block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;margin-top:10px;font-size:12px;color:#b3b3b3}.tl-full-color-background .tl-text,.tl-full-color-background .tl-text p,.tl-full-image-background .tl-text,.tl-full-image-background .tl-text p{color:#f2f2f2!important;text-shadow:1px 1px 2px #000}.tl-full-color-background .tl-text .tl-headline-date,.tl-full-color-background .tl-text h3.tl-headline-date,.tl-full-color-background .tl-text p .tl-headline-date,.tl-full-color-background .tl-text p h3.tl-headline-date,.tl-full-image-background .tl-text .tl-headline-date,.tl-full-image-background .tl-text h3.tl-headline-date,.tl-full-image-background .tl-text p .tl-headline-date,.tl-full-image-background .tl-text p h3.tl-headline-date{color:#f2f2f2!important}.tl-full-color-background .tl-text .tl-headline-date small,.tl-full-color-background .tl-text h3.tl-headline-date small,.tl-full-color-background .tl-text p .tl-headline-date small,.tl-full-color-background .tl-text p h3.tl-headline-date small,.tl-full-image-background .tl-text .tl-headline-date small,.tl-full-image-background .tl-text h3.tl-headline-date small,.tl-full-image-background .tl-text p .tl-headline-date small,.tl-full-image-background .tl-text p h3.tl-headline-date small{color:#f2f2f2!important}.tl-skinny .tl-text{width:100%;max-width:100%;min-width:auto;float:none;margin-top:20px}.tl-skinny .tl-text h2.tl-headline,.tl-skinny .tl-text h2.tl-headline-title{font-size:32px;line-height:36px}.tl-medium .tl-text h2.tl-headline,.tl-medium .tl-text h2.tl-headline-title{font-size:32px;line-height:36px}.tl-mobile.tl-skinny .tl-media .tl-media-image{max-height:250px!important}.tl-media .tl-media-twitter{text-align:left;clear:both}.tl-media .tl-media-twitter blockquote{margin:0;margin-right:15px;font-size:15px;line-height:21px;color:#333}.tl-media .tl-media-twitter blockquote p{font-size:28px;line-height:30px;color:#000}.tl-media .tl-media-twitter blockquote p:before{display:none}.tl-media .tl-media-twitter blockquote p:after{display:none}.tl-media .tl-media-twitter .tl-icon-twitter{color:#55ACEE}.tl-media .tl-media-twitter .vcard a.tl-date:hover,.tl-media .tl-media-twitter .vcard a:hover{text-decoration:none;color:#55ACEE}.tl-media .tl-media-twitter .vcard a.tl-date:hover .fn,.tl-media .tl-media-twitter .vcard a.tl-date:hover .nickname,.tl-media .tl-media-twitter .vcard a:hover .fn,.tl-media .tl-media-twitter .vcard a:hover .nickname{color:#55ACEE}.tl-slide-media-only .tl-media .tl-media-twitter{width:80%;margin-left:auto;margin-right:auto}.tl-mobile.tl-skinny .tl-media .tl-media-twitter blockquote p{font-size:15px;line-height:21px}.tl-skinny .tl-media .tl-media-twitter{margin-left:10px;margin-right:10px}.tl-skinny .tl-media .tl-media-twitter blockquote p{font-size:24px;line-height:26px}.tl-media .tl-media-blockquote{text-align:left;clear:both}.tl-media .tl-media-blockquote blockquote{margin:0;margin-right:15px;text-align:left;font-size:28px;line-height:30px;color:#333}.tl-media .tl-media-blockquote blockquote p{font-size:28px;line-height:30px;color:#333}.tl-media .tl-media-blockquote blockquote p:after,.tl-media .tl-media-blockquote blockquote p:before{display:inline-block;font-size:36px}.tl-media .tl-media-blockquote blockquote p:before{content:open-quote;margin-right:5px}.tl-media .tl-media-blockquote blockquote p:after{content:close-quote;margin-left:3px}.tl-media .tl-media-blockquote blockquote cite{font-size:15px;line-height:21px;color:#999;text-align:right;margin-top:15px}.tl-slide-media-only .tl-media .tl-media-blockquote{border-right:0;width:80%;margin-left:auto;margin-right:auto}@media only screen and (max-width:800px),only screen and (max-device-width:800px){.tl-media .tl-media-blockquote blockquote p{font-size:24px;line-height:26px}}@media only screen and (max-width:500px),only screen and (max-device-width:500px){.tl-media .tl-media-blockquote blockquote p{font-size:15px;line-height:21px}}.tl-mobile.tl-skinny .tl-media .tl-media-instagram{max-height:250px!important}.tl-media .tl-media-profile{border-radius:50%}.tl-media .tl-media-iframe{width:100%;height:100%}.tl-media .tl-media-iframe iframe{width:100%;height:100%}.tl-media .tl-media-wikipedia{text-align:left;margin-left:auto;margin-right:auto;clear:both}.tl-media .tl-media-wikipedia .tl-icon-wikipedia{font-size:32px;margin-right:10px;float:left;padding-top:3px}.tl-media .tl-media-wikipedia .tl-wikipedia-pageimage{float:left;margin-right:10px;margin-bottom:5px;margin-top:5px}.tl-media .tl-media-wikipedia .tl-wikipedia-title{margin-left:60px;padding-left:10px;border-left:1px solid #e6e6e6;margin-bottom:10px}.tl-media .tl-media-wikipedia .tl-wikipedia-source{font-size:13px;line-height:15px;font-style:italic;margin-top:3px;display:block;color:rgba(0,0,0,.5)}.tl-media .tl-media-wikipedia h4{margin-top:0;margin-bottom:0}.tl-media .tl-media-wikipedia h4 a{color:#000;text-decoration:none}.tl-media .tl-media-wikipedia h4 a:hover{text-decoration:underline}.tl-media .tl-media-wikipedia p{font-size:13px;line-height:19px}.tl-slide-media-only .tl-media .tl-media-wikipedia{border-right:0;border-top:1px solid #e6e6e6;width:80%;margin-left:auto;margin-right:auto;margin-top:25px;padding-top:25px}.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia,.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia{padding:20px;background:#000 transparent;background:rgba(0,0,0,.6);-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia h4 a,.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia h4 a{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-title,.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-title{border-color:rgba(230,230,230,.25)}.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-source,.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-source{color:rgba(230,230,230,.85)}.tl-mobile.tl-skinny .tl-media .tl-media-wikipedia,.tl-skinny .tl-media .tl-media-wikipedia{margin-left:10px;margin-right:10px}.tl-media .tl-media-website{text-align:left;margin-left:auto;margin-right:auto;clear:both}.tl-media .tl-media-website .tl-media-website-description{font-size:16px;line-height:19px;font-style:italic;margin-bottom:10px;text-transform:uppercase}.tl-media .tl-media-website h4{margin-top:0;margin-bottom:0;line-height:1}.tl-media .tl-media-website h4 a{color:#000;text-decoration:none}.tl-media .tl-media-website h4 a:hover{text-decoration:underline}.tl-media .tl-media-website p{font-size:13px;line-height:19px}.tl-media .tl-media-content-container .tl-media-content .tl-media-website img{float:right;max-width:120px;max-height:120px;margin:4px 0 0 15px}.tl-media .tl-media-content-container .tl-media-content .tl-media-website img.tl-media-website-icon{max-width:16px;max-height:16px;float:none;margin:0;margin-right:3px}.tl-slide.tl-full-color-background .tl-media .tl-media-website,.tl-slide.tl-full-image-background .tl-media .tl-media-website{padding:20px;background:#000 transparent;background:rgba(0,0,0,.6);-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.tl-slide.tl-full-color-background .tl-media .tl-media-website h4 a,.tl-slide.tl-full-image-background .tl-media .tl-media-website h4 a{color:#FFF!important;text-shadow:1px 1px 1px #000!important}.tl-mobile.tl-skinny .tl-media .tl-media-website{margin-left:10px;margin-right:10px}.tl-timeline{width:100%;height:100%;font-size:16px;line-height:normal;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;background-color:#FFF;color:#737373;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.tl-timeline.tl-timeline-embed{box-sizing:border-box;border-top:1px solid #ccc;border-bottom:1px solid #ccc;border-radius:0}.tl-timeline.tl-timeline-full-embed{box-sizing:border-box;border:1px solid #ccc;border-radius:8px}.tl-layout-portrait .tl-storyslider{-webkit-box-shadow:0 -3px 6px rgba(0,0,0,.2);-moz-box-shadow:0 -3px 6px rgba(0,0,0,.2);box-shadow:0 -3px 6px rgba(0,0,0,.2)}.tl-rtl .blockquote,.tl-rtl .tl-headline,.tl-rtl .tl-headline-date,.tl-rtl .tl-media .tl-media-blockquote blockquote,.tl-rtl .tl-media-blockquote,.tl-rtl .tl-media-website,.tl-rtl .tl-media-wikipedia,.tl-rtl .tl-text-content,.tl-rtl .tl-text-content p,.tl-rtl .tl-timeline blockquote p,.tl-rtl blockquote p{text-align:right}.tl-rtl .tl-slide-media-only .tl-headline,.tl-rtl .tl-slide-media-only .tl-headline-date{text-align:center}.tl-rtl .tl-timemarker-text{margin-right:35px}.tl-rtl .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container{float:right}.tl-rtl .tl-caption{text-align:right}.tl-rtl .tl-credit{text-align:left}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/embed/index.html b/public/opac/TimelineJS3-3.5.1/compiled/embed/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..a69520bd0248bb4fe9cf50fcd9d07e7c24ac91f0
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/embed/index.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<title>TimelineJS Embed</title>
+<meta charset="utf-8">
+<meta name="description" content="TimelineJS Embed">
+<meta name="apple-mobile-web-app-capable" content="yes">
+<meta name="apple-touch-fullscreen" content="yes">
+<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+<link rel="icon" type="image/png" href="https://cdn.knightlab.com/libs/purpleline/latest/img/favicon.png">
+<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
+<base target="_blank">
+
+<!-- Style-->
+<style>
+html, body {
+    width: 100%;
+    height:100%;
+    padding: 0px;
+    margin: 0px;
+}
+#timeline-embed {
+    height: 100%;
+}
+</style>
+<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
+<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+</head>
+</html>
+<body>
+  <!-- BEGIN Timeline Embed -->
+  <div id="timeline-embed"></div>
+  <!-- Override -->
+  <script type="text/javascript">
+    var trim_point = window.location.href.indexOf('embed/index.html');
+    if (trim_point > 0) {
+      var embed_path = window.location.href.substring(0,trim_point); // supports https access via https://s3.amazonaws.com/cdn.knightlab.com/libs/timeline/latest/embed/index.html
+    } else {
+      var embed_path = "https://cdn.knightlab.com/libs/timeline3/latest/";
+    }
+  </script>
+  <script type="text/javascript" src="../js/timeline-embed-cdn.js"></script>
+  <!-- END Timeline Embed-->
+</body>
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/cosmological.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/cosmological.html
new file mode 100644
index 0000000000000000000000000000000000000000..fdae437814ce8d654f78087c412d7ca049f86a43
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/cosmological.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Milliseconds</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'cosmological.json', {
+      	ga_property_id: "UA-27829802-4"
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/cosmological.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/cosmological.json
new file mode 100644
index 0000000000000000000000000000000000000000..6d1af7342a7e71faed4990037266459e876c8c20
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/cosmological.json
@@ -0,0 +1,129 @@
+{
+    "scale": "cosmological",
+    "events": [
+        {
+            "start_date": {
+                "year":			"-13798000000",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Illustration of evolution of the universe from the Big Bang",
+                "credit": "Kaldari (Wikipedia)",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/6/6f/CMB_Timeline300_no_WMAP.jpg"
+            },
+            "text": {
+                "headline": "The Big Bang",
+                "text": "In the first ten seconds after the Big Bang, cosmologists have speculated several distinct phases in which the various fundamental particles of the universe formed."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"-13797930000",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Matter domination",
+                "text": "<p>At this time, the densities of non-relativistic matter (atomic nuclei) and relativistic radiation (photons) are equal. The Jeans length, which determines the smallest structures that can form (due to competition between gravitational attraction and pressure effects), begins to fall and perturbations, instead of being wiped out by free-streaming radiation, can begin to grow in amplitude.</p> <p>According to ΛCDM, at this stage, cold dark matter dominates, paving the way for gravitational collapse to amplify the tiny inhomogeneities left by cosmic inflation, making dense regions denser and rarefied regions more rarefied. However, because present theories as to the nature of dark matter are inconclusive, there is as yet no consensus as to its origin at earlier times, as currently exist for baryonic matter.</p>"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"-13797623000",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Recombination_(cosmology)",
+                "credit": "Wikipedia"
+            },
+            "text": {
+                "headline": "Recombination",
+                "text": "Hydrogen and helium atoms begin to form as the density of the universe falls."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "-13648000000",
+                "month":        "",
+                "day":          "",
+                "hour":         "",
+                "minute":       "",
+                "second":       "",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "end_date": {
+                "year":         "-12798000000",
+                "month":        "",
+                "day":          "",
+                "hour":         "",
+                "minute":       "",
+                "second":       "",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Reionization"
+            },
+            "text": {
+                "headline": "Reionization",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"-4798000000",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Formation of the Solar System",
+                "text": "The Solar System began forming about 4.6 billion years ago, or about 9 billion years after the Big Bang. A molecular cloud made mostly of hydrogen and traces of other elements began to collapse, forming a large sphere in the center which would become the Sun, as well as a surrounding disk. The surrounding accretion disk would coalesce into a multitude of smaller objects that would become planets, asteroids, and comets. The Sun is a late-generation star, and the Solar System incorporates matter created by previous generations of stars."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"0",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		"",
+                "display_text": "Now"
+            },
+            "text": {
+                "headline": "“Today”",
+                "text": ""
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/dark_theme_example.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/dark_theme_example.html
new file mode 100644
index 0000000000000000000000000000000000000000..25117ff959a82219f4af4f046be67a643c40cee9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/dark_theme_example.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Dark Theme Example</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/themes/timeline.theme.dark.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'marktwain.json', {
+      	 
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/eras.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/eras.html
new file mode 100644
index 0000000000000000000000000000000000000000..62a32e7669b272ab67e9e68ce1033db5c2954e0a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/eras.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Eras</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'eras.json', {
+      	ga_property_id: "UA-27829802-4"
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/eras.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/eras.json
new file mode 100644
index 0000000000000000000000000000000000000000..1ac75ca83e1ee4c805a1406099bfb3cc6a9be126
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/eras.json
@@ -0,0 +1,332 @@
+{
+	"title": {
+            "text": {
+                "headline": "Eras Test",
+                "text":     "Events in the 7th century from https://en.wikipedia.org/wiki/Timeline_of_the_Middle_Ages"
+            }
+    },
+    "eras": [
+        {
+            "start_date": {
+                "year":         "600"
+            },
+            "end_date": {
+                "year":         "650"
+            },
+            "text": {
+                "headline": "Era Test 600-650"
+            }
+        },
+        {
+            "start_date": {
+                "year":         "650"
+            },
+            "end_date": {
+                "year":         "700"
+            },
+            "text": {
+                "headline": "Era Test 650-700"
+            }
+        },
+        {
+            "start_date": {
+                "year":         "700"
+            },
+            "end_date": {
+                "year":         "720"
+            },
+            "text": {
+                "headline": "Era Test 700-720"
+            }
+        }
+    ],
+    "events": [
+        {
+            "start_date": {
+                "year":			"602"
+            },
+            "end_date": {
+                "year":			"629"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Roman-Persian_Wars"
+            },
+            "background": {
+				"opacity":"50",
+                "url": "https://upload.wikimedia.org/wikipedia/commons/a/a2/HumiliationValerianusHolbein.jpg"
+            },
+            "text": {
+                "headline": "Last great Roman-Persian War.",
+                "text": "Long conflict leaves both empires exhausted and unable to cope with the newly united Arab armies under Islam in the 630s"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"604"
+            },
+            "end_date": {
+                "year":			"609"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Grand_Canal_(China)"
+            },
+            "background": {
+				"opacity":"50",
+                "url": "https://upload.wikimedia.org/wikipedia/commons/a/ad/Sui_Wendi_Tang.jpg"
+            },
+            "text": {
+                "headline": "Grand Canal in China is fully completed",
+                "text": "Its main role throughout its history was the transport of grain to the capital."
+            }
+        },
+
+        {
+            "start_date": {
+                "year":			"622",
+                "month":		"08",
+                "day": 			"09"
+            },
+            "end_date": {
+                "year":			"622",
+                "month":		"08",
+                "day": 			"23"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Hijra_(Islam)"
+            },
+            "text": {
+                "headline": "Muhammad Migrates from Mecca to Medina",
+                "text": "Event will have designated first year of the Islamic Calendar, as Anno Hegirae."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"626"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Siege_of_Constantinople_(626)"
+            },
+            "background": {
+				"opacity":"50",
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Moldovita_murals_2010_16.jpg/1024px-Moldovita_murals_2010_16.jpg"
+            },
+            "text": {
+                "headline": "Joint Persian-Avar-Slav Siege of Constantinople Constantinople saved",
+                "text": "Avar power broken and Persians henceforth on the defensive"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"627",
+                "month":		"12",
+                "day": 			"12"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Nineveh_(627)"
+            },
+            "background": {
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Piero_della_Francesca_021.jpg/1024px-Piero_della_Francesca_021.jpg"
+            },
+            "text": {
+                "headline": "Battle of Nineveh",
+                "text": "The Byzantines, under Heraclius, crush the Persians."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"632",
+                "month":		"06",
+                "day": 			"08"
+            },
+            "text": {
+                "headline": "Death of Muhammed",
+                "text": "By this point, all of Arabia is Muslim."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"632",
+                "month":		"06",
+                "day": 			"08"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Abu_Bakr"
+            },
+            "text": {
+                "headline": "Accession of Abu Bakr as first Caliph",
+                "text": "Though the period of his caliphate was not long, it included successful invasions of the two most powerful empires of the time."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"633"
+            },
+            "end_date": {
+                "year":			"634"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Heavenfield"
+            },
+            "text": {
+                "headline": "Battle of Heavenfield",
+                "text": "Northumbrian army under Oswald defeat Welsh army."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"641"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Nihaw%C4%81nd"
+            },
+            "background": {
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Castle_Nahavend_by_Eug%C3%A8ne_Flandin.jpg/1024px-Castle_Nahavend_by_Eug%C3%A8ne_Flandin.jpg"
+            },
+            "text": {
+                "headline": "Battle of Nehawand",
+                "text": "Muslims conquer Persia."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"643"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Alexandria"
+            },
+            "text": {
+                "headline": "Arab Army led by Omar Ibn Al-'Aas takes Alexandria",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"645"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Soga_clan"
+            },
+            "text": {
+                "headline": "In Japan, the Soga clan falls",
+                "text": "This initiates a period of imitation of Chinese culture, The Nara period begins a year later."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"650"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Balkans"
+            },
+            "text": {
+                "headline": "Slav occupation of Balkans complete.",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"663"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Synod_of_Whitby"
+            },
+            "text": {
+                "headline": "Synod of Whitby",
+                "text": "Roman Christianity triumphs over Celtic Christianity in England."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"668"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Three_Kingdoms_of_Korea"
+            },
+            "text": {
+                "headline": "Ends of the Three Kingdoms period in Korea",
+                "text": "Established a Unified Silla which led to the North South States Period 30 years later."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"674"
+            },
+            "end_date": {
+                "year":			"678"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Siege_of_Constantinople_(674)"
+            },
+            "background": {
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Greekfire-madridskylitzes1.jpg/1024px-Greekfire-madridskylitzes1.jpg"
+            },
+            "text": {
+                "headline": "First Arab siege of Constantinople",
+                "text": "First time Islamic armies defeated, forestalling Islamic conquest of Europe."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"681"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/First_Bulgarian_Empire"
+            },
+            "background": {
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Krum1.jpg/782px-Krum1.jpg"
+            },
+            "text": {
+                "headline": "Establishment of the Bulgarian Empire",
+                "text": "A country with great influence in the European history in the Middle Ages."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"685"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain"
+            },
+            "text": {
+                "headline": "Battle of Dun Nechtain",
+                "text": "Picts defeat Northumbrians, whose dominance ends."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"687"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Tertry"
+            },
+            "text": {
+                "headline": "Battle of Tertry",
+                "text": "Established Pepin of Herstal as mayor over the entire realms of Neustria and Austrasia, which further dwindled Merovingian power."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"698"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Carthage"
+            },
+            "text": {
+                "headline": "Arab army takes Carthage",
+                "text": "End of Byzantine rule in North Africa"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"698"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/North_South_States_Period"
+            },
+            "text": {
+                "headline": "North South States Period begins in Korea",
+                "text": "Silla and Balhae coexisted in the south and north of the peninsula, respectively, until 926"
+            }
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/error_message_test.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/error_message_test.html
new file mode 100644
index 0000000000000000000000000000000000000000..a1f24e41fddb1998ab2d254766bbb5aff8bc29b3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/error_message_test.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Error Message Test</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'error_message_test.json', {
+      	ga_property_id: "UA-27829802-4"
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/error_message_test.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/error_message_test.json
new file mode 100644
index 0000000000000000000000000000000000000000..b586c9b0f4ef4813452f7cf9bb7f9095f49835ff
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/error_message_test.json
@@ -0,0 +1,532 @@
+{
+    "events": [
+        {
+            "start_date": {
+                "year":			"1900",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1902",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.491711,
+                "line": true,
+                "lon": -91.79326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Twain caricatured by Spy for Vanity Fair, 1908",
+                "credit": "Vanity Fair",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg",
+                "thumb": 	"http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg"
+            },
+            "text": {
+                "headline": "Mark Twain JSON",
+                "text": "Samuel Langhorne Clemens (November 30, 1835 \u2013 April 21, 1910), better known by his pen name Mark Twain, was an American author and humorist. He wrote The Adventures of Tom Sawyer (1876) and its sequel, Adventures of Huckleberry Finn (1885), the later often called \"the Great American Novel.\""
+            },
+            "type": "overview"
+        },
+        {
+            "start_date": {
+                "year":			"2000",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.491711,
+                "line": true,
+                "lon": -91.79326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's birthplace, Florida, Missouri",
+                "credit": "",
+                "url": "https://twitter.com/MarkTwainQuote/status/441928360583643136"
+            },
+            "text": {
+                "headline": "Florida, Missouri",
+                "text": "Born in Florida, Missouri. Halley\u2019s comet visible from earth."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1920",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1923",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.501711,
+                "line": true,
+                "lon": -91.94326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's boyhood home in Hannibal, Missouri.",
+                "credit": "",
+                "url": "http://instagram.com/p/lEPdm4J20m/"
+            },
+            "text": {
+                "headline": "Hannibal, Missouri",
+                "text": "Moves to Hannibal, Missouri, which later serves as the model town for Tom Sawyer and Huckleberry Finn."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.710083,
+                "line": true,
+                "lon": -91.357441,
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "http://www.youtube.com/watch?v=C-nTpGMMVjY"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.710083,
+                "line": true,
+                "lon": -91.357441,
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "http://www.youtube.com/watch?v=C-nTpGMMVjY"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.710083,
+                "line": true,
+                "lon": -91.357441,
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "http://www.youtube.com/watch?v=C-nTpGMMVjY"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1915",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 40.714353,
+                "line": true,
+                "lon": -74.005973,
+                "zoom": 11
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://vine.co/v/bjHh0zHdgZT"
+            },
+            "text": {
+                "headline": "Itinerant Printer",
+                "text": "Visits St. Louis, New York, and Philadelphia as an itinerant printer."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "20",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.309514,
+                "line": true,
+                "lon": -119.649979,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "Mark Twain's desk when he was editor of the Territorial Enterprise. Mark Twain Territorial Enterprise Museum, Virginia City, NV.",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/Mark_Twain"
+            },
+            "text": {
+                "headline": "Virginia City Territorial Enterprise",
+                "text": "Travels around Nevada and California. Takes job as reporter for the Virginia City Territorial Enterprise."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1960",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 37.774929,
+                "line": true,
+                "lon": -122.419416,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "San Francisco",
+                "text": "Forced to leave Nevada for breaking dueling laws. Prospects in Calaveras County, settles in San Francisco. Writes for magazines and newspapers."
+            },
+            "unique_id": ""
+        },
+        {
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 19.896766,
+                "line": true,
+                "lon": -155.582782,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "Wreck of USS Hornet.",
+                "credit": "",
+                "url": "http://photos.wikimapia.org/p/00/00/56/17/28_big.jpg"
+            },
+            "text": {
+                "headline": "Hawaii",
+                "text": "Takes trip to Hawaii as correspondent of the Sacramento Alta Californian. Reports on shipwreck of the Hornet. Gives first public lecture."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1930",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 54.525961,
+                "line": true,
+                "lon": 15.255119,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu/page1-395px-1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu.jpg"
+            },
+            "text": {
+                "headline": "Travels",
+                "text": "Travels as correspondent to Europe and the Holy Land on the Quaker City. Sees a picture of Olivia Langdon (Livy). Publishes The Celebrated Jumping Frog of Calaveras County, and Other Sketches. Sales are light."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1935",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 42.089796,
+                "line": true,
+                "lon": -76.807734,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Livy",
+                "text": "Lectures across the United States. Meets and falls in love with Livy in Elmira, New York."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1959",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 42.886447,
+                "lon": -78.878369,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Married",
+                "text": "Marries Livy in Elmira. Her father buys them a house in Buffalo, New York. Son Langdon is born."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 41.763711,
+                "line": true,
+                "lon": -72.685093,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Roughing It",
+                "text": "Moves with Livy to Hartford. Publishes Roughing It. Daughter is born. Son Langdon dies."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1991",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 54.525961,
+                "lon": 15.255119,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Financial",
+                "text": "Leaves Hartford to live in Europe because of financial difficulties."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "10",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 40.714353,
+                "lon": -74.005973,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Livy dies",
+                "text": "Livy dies. Begins dictating autobiography. Moves to New York City."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": null,
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"2014",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Get started!",
+                "text": ""
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/google_spreadsheet.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/google_spreadsheet.html
new file mode 100644
index 0000000000000000000000000000000000000000..08b5a6ae64cde00e2a4b3bf9e115c87c0b487e36
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/google_spreadsheet.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Mark Twain Example</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      //1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI
+      //https://docs.google.com/spreadsheets/d/1OQCXIQoeMUbeIE3KdKijQhFvgit37m6Sy6S07gAE6fU/pubhtml
+      var timeline = new TL.Timeline('timeline', '1OQCXIQoeMUbeIE3KdKijQhFvgit37m6Sy6S07gAE6fU', {
+      	ga_property_id: "UA-27829802-4",
+      	debug:true,
+      	is_embed:true
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/google_spreadsheet_tester.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/google_spreadsheet_tester.html
new file mode 100644
index 0000000000000000000000000000000000000000..b0b18d553e413868e757370867037b562a35f7d5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/google_spreadsheet_tester.html
@@ -0,0 +1,103 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Milliseconds</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      #input {
+      	height: 40px;
+      	background-color:#CCC;
+      }
+      #url {
+      	margin:10px;
+      }
+      #timeline {
+      	height: 100%;
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="input">
+      <input id="url" placeholder="Enter a google spreadsheet URL" size="100" type="text">
+      <button id="preview" type="button">Go</button>
+    </div>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = null;
+      var button = document.getElementById('preview');
+      button.addEventListener('click',function(){
+      	new_timeline(document.getElementById('url').value);
+      });
+      
+      document.getElementById('url').addEventListener('keyup',function(evt) {
+      	if (evt.keyCode == 13) {
+      		new_timeline(document.getElementById('url').value);
+      	}
+      });
+      
+      function new_timeline(url) {
+      	timeline = null; // TODO: actively 'destroy' an existing timeline?
+      	var json = TL.ConfigFactory.fromGoogle(url);
+      
+      	window.factory_json = json;
+      	
+      	document.getElementById('input').style.height = "40px"
+      	document.getElementById('timeline').style.height = (window.innerHeight - 40 + "px");
+      	
+      	timeline = new TL.Timeline('timeline', new TL.TimelineConfig(json), {
+      		debug:true
+      	});
+        
+      	
+      	window.onresize = function(event) {
+      		console.log("resize")
+      		document.getElementById('input').style.height = "30px"
+      		document.getElementById('timeline').style.height = (window.innerHeight - 30 + "px");
+      		timeline.updateDisplay();
+      	}
+      }
+      
+      function getQueryParams(qs) {
+      	qs = qs.split("+").join(" ");
+      
+      	var params = {}, tokens,
+      	re = /[?&]?([^=]+)=([^&]*)/g;
+      
+      	while (tokens = re.exec(qs)) {
+      		params[decodeURIComponent(tokens[1])]
+      		= decodeURIComponent(tokens[2]);
+      	}
+      
+      	return params;
+      }
+      
+      var qs = getQueryParams(window.location.search);
+      if (qs.key) {
+      	new_timeline(qs.key);
+      }
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_2.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_2.html
new file mode 100644
index 0000000000000000000000000000000000000000..419f4da0bc2df348feb84d0d4f936781f9d7cbd2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_2.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Groups Test 2</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Bevan%7CPontano+Sans&amp;amp;subset=latin,latin">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .vco-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='http://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'groups_test_2.json', {
+      	
+      });
+      window.onresize = function(event) {
+      	timeline.updateDisplay();
+      }
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_2.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_2.json
new file mode 100644
index 0000000000000000000000000000000000000000..29681336fdf004dd778b9553b9f81a58900a72cd
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_2.json
@@ -0,0 +1,212 @@
+{
+    "scale": "human",
+	"title": {
+		        "media": {
+		            "caption": "",
+		            "credit": "",
+		            "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg",
+		            "thumb": 	""
+		        },
+	            "text": {
+	                "headline": "Welcome to TimelineJS",
+	                "text": "<p>TimelineJS is an open-source tool that enables you to build visually-rich interactive timelines and is available in 40 languages.</p><p>You're looking at an example of one right now.</p><p>Click on the arrow to the right to learn more.</p>"
+	            }
+	    },
+    "events": [
+        {
+            "start_date": {
+                "year":			"1851",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Hello",
+            "media": {
+                "caption": "Screenshot from TimelineJS Embed Generator tool (see below)",
+                "credit": "",
+                "url": "http://timeline.knightlab.com/static/welcome/step3.png",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "It's Easy to Make Your Own Timeline",
+                "text": "The TimelineJS Embed Generator makes it easy to add a timeline to your own site. Just copy our Google Spreadsheet template, add your events as rows in the spreadsheet, and use our <a href='#make'>generator tool</a> to generate the HTML you need to add to your site."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1857",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Illustrate your Timeline with photos, videos, tweets and more.",
+                "text": "Timeline can automatically pull in photos, videos from YouTube or Vimeo, tweets, wikipedia entries, and many other media types to help tell your story."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1899",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Hello",
+            "media": {
+                "caption": "Le portrait mystérieux",
+                "credit": "Georges Méliès",
+                "url": "http://youtu.be/lIvftGgps24",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "YouTube video",
+                "text": "To add a YouTube video, just add a link to it in the media field. No embedding necessary. http://youtu.be/lIvftGgps24"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1899",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "A Trip to the Moon / Le Voyage dans la lune",
+                "credit": "Georges Méliès",
+                "url": "http://youtu.be/7JDaOOw0MEE",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "YouTube with no text",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1902",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/A_Trip_to_the_Moon",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Wikipedia",
+                "text": "Add a link to a <a href='http://en.wikipedia.org/wiki/A_Trip_to_the_Moon' target='_blank'>Wikipedia entry</a> in the media field to show an excerpt alongside your text."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1902",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/A_Trip_to_the_Moon",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Wikipedia with no text",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1950",
+                "month":		"2",
+                "day": 			"7",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1955",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "Dr. Seuss",
+                "url": "<blockquote><p>You have brains in your head. You have feet in your shoes. You can steer yourself in any direction you choose. You're on your own, and you know what you know. And you are the guy who'll decide where to go.</p></blockquote>",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Blockquote",
+                "text": "This is an example of a blockquote. <br/>&lt;blockquote&gt;&ldquo; &lt;p&gt;&ldquo; Just use html blockquotes with paragraphs in the media field.&rdquo;&lt;/p&gt; &rdquo;&lt;/blockquote&gt;"
+            }
+        },
+
+        {
+            "start_date": {
+                "year":			"1958",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Hello",
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "http://open.spotify.com/track/1OT1G66Lt9EpKFWkwK8i9z"
+            },
+            "text": {
+                "headline": "Spotify Track URL",
+                "text": "Spotify Track URL"
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_3.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_3.html
new file mode 100644
index 0000000000000000000000000000000000000000..264b6c12f6ba965f1fa8b0d9984dcc63f9f063b7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_3.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Groups Test 3</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Bevan%7CPontano+Sans&amp;amp;subset=latin,latin">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .vco-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='http://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'groups_test_3.json', {
+      	
+      });
+      window.onresize = function(event) {
+      	timeline.updateDisplay();
+      }
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_3.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_3.json
new file mode 100644
index 0000000000000000000000000000000000000000..99a2b92413b8bc36ac5ba323f20aea88b91ce224
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/groups_test_3.json
@@ -0,0 +1,635 @@
+{
+    "scale": "human",
+	"title": {
+		        "media": {
+		            "caption": "",
+		            "credit": "",
+		            "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg",
+		            "thumb": 	""
+		        },
+	            "text": {
+	                "headline": "Welcome to TimelineJS",
+	                "text": "<p>TimelineJS is an open-source tool that enables you to build visually-rich interactive timelines and is available in 40 languages.</p><p>You're looking at an example of one right now.</p><p>Click on the arrow to the right to learn more.</p>"
+	            }
+	    },
+    "events": [
+        {
+            "start_date": {
+                "year":			"1851",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Hello",
+            "media": {
+                "caption": "Screenshot from TimelineJS Embed Generator tool (see below)",
+                "credit": "",
+                "url": "http://timeline.knightlab.com/static/welcome/step3.png",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "It's Easy to Make Your Own Timeline",
+                "text": "The TimelineJS Embed Generator makes it easy to add a timeline to your own site. Just copy our Google Spreadsheet template, add your events as rows in the spreadsheet, and use our <a href='#make'>generator tool</a> to generate the HTML you need to add to your site."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1857",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Illustrate your Timeline with photos, videos, tweets and more.",
+                "text": "Timeline can automatically pull in photos, videos from YouTube or Vimeo, tweets, wikipedia entries, and many other media types to help tell your story."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1899",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Hello",
+            "media": {
+                "caption": "Le portrait mystérieux",
+                "credit": "Georges Méliès",
+                "url": "http://youtu.be/lIvftGgps24",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "YouTube video",
+                "text": "To add a YouTube video, just add a link to it in the media field. No embedding necessary. http://youtu.be/lIvftGgps24"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1899",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "A Trip to the Moon / Le Voyage dans la lune",
+                "credit": "Georges Méliès",
+                "url": "http://youtu.be/7JDaOOw0MEE",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "YouTube with no text",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1902",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/A_Trip_to_the_Moon",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Wikipedia",
+                "text": "Add a link to a <a href='http://en.wikipedia.org/wiki/A_Trip_to_the_Moon' target='_blank'>Wikipedia entry</a> in the media field to show an excerpt alongside your text."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1902",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/A_Trip_to_the_Moon",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Wikipedia with no text",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1950",
+                "month":		"2",
+                "day": 			"7",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1955",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "Dr. Seuss",
+                "url": "<blockquote><p>You have brains in your head. You have feet in your shoes. You can steer yourself in any direction you choose. You're on your own, and you know what you know. And you are the guy who'll decide where to go.</p></blockquote>",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Blockquote",
+                "text": "This is an example of a blockquote. <br/>&lt;blockquote&gt;&ldquo; &lt;p&gt;&ldquo; Just use html blockquotes with paragraphs in the media field.&rdquo;&lt;/p&gt; &rdquo;&lt;/blockquote&gt;"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1960",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://www.nytimes.com/",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Website",
+                "text": "This is an example of a website. Just paste a link to the site in the media field."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1985",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "Zach Wise",
+                "url": "https://www.flickr.com/photos/zachwise/14514563402/"
+            },
+            "text": {
+                "headline": "Flickr",
+                "text": "To add a Flickr photo, just paste a link to the photo page in the media field. Example: https://www.flickr.com/photos/zachwise/14514563402/"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1987",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "Zach Wise",
+                "url": "http://www.flickr.com/photos/zachwise/7050589957/in/photostream/"
+            },
+            "text": {
+                "headline": "Flickr with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1995",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "text": {
+                "headline": "Instagram",
+                "text": "To add an Instagram photo, just paste a link to the photo page in the media field. Example: https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1995",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://instagram.com/p/0n43jmuYkC/"
+            },
+            "text": {
+                "headline": "Instagram with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"2000",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://soundcloud.com/beastieboys/make-some-noise"
+            },
+            "text": {
+                "headline": "SoundCloud",
+                "text": "Just add a link to the track in the media field."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"2001",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": null,
+                "url": "https://vimeo.com/105602328"
+            },
+            "text": {
+                "headline": "Vimeo",
+                "text": "Just add a link to the video in the media field."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"2001",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": null,
+                "url": "https://vimeo.com/105602328"
+            },
+            "text": {
+                "headline": "Vimeo with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1956",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "spotify:track:1OT1G66Lt9EpKFWkwK8i9z"
+            },
+            "text": {
+                "headline": "Spotify Track URI",
+                "text": "Spotify Track URI"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1955",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "spotify:user:zachwise:playlist:3KqOUdFJXsEUC0DKudovj1"
+            },
+            "text": {
+                "headline": "Spotify Playlist URI",
+                "text": "Spotify Playlist URI"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1930",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://vine.co/v/bjHh0zHdgZT"
+            },
+            "text": {
+                "headline": "Vine",
+                "text": "Add a link to the Vine"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1944",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://storify.com/cmgnationalnews/last-minute-rumors-about-apple-s-new-iphone-6-iwat"
+            },
+            "text": {
+                "headline": "Storify",
+                "text": "Add a link to the Storify"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1957",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "http://open.spotify.com/user/zachwise/playlist/3KqOUdFJXsEUC0DKudovj1"
+            },
+            "text": {
+                "headline": "Spotify Playlist URL",
+                "text": "Spotify Playlist URL"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1958",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "http://open.spotify.com/track/1OT1G66Lt9EpKFWkwK8i9z"
+            },
+            "text": {
+                "headline": "Spotify Track URL",
+                "text": "Spotify Track URL"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1907",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://twitter.com/zlwise/status/502535723715923968"
+            },
+            "text": {
+                "headline": "Twitter",
+                "text": "Just add a link to the tweet"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1907",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://twitter.com/heathertal/status/581528844651331584"
+            },
+            "text": {
+                "headline": "Twitter",
+                "text": "Just add a link to the tweet"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1907",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://twitter.com/zlwise/status/502535723715923968"
+            },
+            "text": {
+                "headline": "Twitter with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"2014",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Get started!",
+                "text": ""
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/long_time_ticks.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/long_time_ticks.html
new file mode 100644
index 0000000000000000000000000000000000000000..6af2db7c0ff91f2ab4cb8b21fd86954783948c00
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/long_time_ticks.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Long Time Ticks Test</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      #timeline1, #timeline2, #timeline3 {
+      	height:600px;
+      	width:100%;
+      }
+      
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline1"></div>
+    <div id="timeline2"></div>
+    <div id="timeline3"></div>
+    <div id="timeline4"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline_01 = new TL.Timeline('timeline1', 'wedding.json');
+      var timeline_02 = new TL.Timeline('timeline2', 'years.json');
+      var timeline_03 = new TL.Timeline('timeline3', 'science.json');
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/mark_twain.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/mark_twain.html
new file mode 100644
index 0000000000000000000000000000000000000000..17561a11e5677841b1a93e36da81235c3bad5ad9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/mark_twain.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Mark Twain Example</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.bevan-potanosans.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'marktwain_juked.json', {
+      	ga_property_id: "UA-27829802-4",
+      	is_embed:true
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain.json
new file mode 100644
index 0000000000000000000000000000000000000000..238abcc9f732002df09502d0e2d5c8013b369118
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain.json
@@ -0,0 +1,736 @@
+{
+    "events": [
+        {
+            "start_date": {
+                "year":			"1900",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1900",
+                "month":		"06",
+                "day": 			"07",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.491711,
+                "line": true,
+                "lon": -91.79326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "background": {
+                "color": "#999999",
+                "opacity": 50,
+                "url": null
+            },
+            "media": {
+                "caption": "Twain caricatured by Spy for Vanity Fair, 1908",
+                "credit": "Vanity Fair",
+                "url": "http://knightlab.northwestern.edu/wp-content/uploads/2013/03/Northwestern_University_KnightLab_Logo1.png",
+                "thumb": 	"http://knightlab.northwestern.edu/wp-content/uploads/2013/03/Northwestern_University_KnightLab_Logo1.png"
+            },
+            "text": {
+                "headline": "Mark Twain JSON",
+                "text": "Samuel Langhorne Clemens (November 30, 1835 \u2013 April 21, 1910), better known by his pen name Mark Twain, was an American author and humorist. He wrote The Adventures of Tom Sawyer (1876) and its sequel, Adventures of Huckleberry Finn (1885), the later often called \"the Great American Novel.\""
+            },
+            "type": "overview"
+        },
+        {
+            "start_date": {
+                "year":			"2000",
+                "month":		"01",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"2001",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.491711,
+                "line": true,
+                "lon": -91.79326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's birthplace, Florida, Missouri",
+                "credit": "",
+                "url": "https://twitter.com/MarkTwainQuote/status/441928360583643136"
+            },
+            "text": {
+                "headline": "Florida, Missouri",
+                "text": "Born in Florida, Missouri. Halley\u2019s comet visible from earth."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1920",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1928",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.501711,
+                "line": true,
+                "lon": -91.94326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's boyhood home in Hannibal, Missouri.",
+                "credit": "",
+                "url": "https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "text": {
+                "headline": "Hannibal, Missouri",
+                "text": "Moves to Hannibal, Missouri, which later serves as the model town for Tom Sawyer and Huckleberry Finn."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1910",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Flickr",
+                "credit": "Zach Wise",
+                "url": "https://www.flickr.com/photos/zachwise/14514563402/"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1910",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1920",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "https://www.youtube.com/watch?v=h3K3kEDEAN4"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1910",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1920",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "https://vimeo.com/105602328"
+            },
+            "text": {
+                "headline": "Vimeo",
+                "text": "vimeo"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1910",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1920",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": null,
+                "url": "https://vimeo.com/105602328"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1910",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1920",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "https://www.youtube.com/watch?v=h3K3kEDEAN4"
+            },
+            "text": {
+                "headline": "YouTube",
+                "text": "YouTube"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1918",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1919",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Twain caricatured by Spy for Vanity Fair, 1908",
+                "credit": "Vanity Fair",
+                "url": "spotify:track:1OT1G66Lt9EpKFWkwK8i9z"
+            },
+            "text": {
+                "headline": "Spotify Track URI",
+                "text": "Visits St. Louis, New York, and Philadelphia as an itinerant printer."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1919",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1920",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "spotify:user:zachwise:playlist:3KqOUdFJXsEUC0DKudovj1"
+            },
+            "text": {
+                "headline": "Spotify Playlist URI",
+                "text": "Visits St. Louis, New York, and Philadelphia as an itinerant printer."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1920",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1921",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "http://open.spotify.com/user/zachwise/playlist/3KqOUdFJXsEUC0DKudovj1"
+            },
+            "text": {
+                "headline": "Spotify Playlist URL",
+                "text": "Visits St. Louis, New York, and Philadelphia as an itinerant printer."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1907",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://twitter.com/zlwise/status/502535723715923968"
+            },
+            "text": {
+                "headline": "Twitter",
+                "text": "Moves to Hannibal, Missouri, which later serves as the model town for Tom Sawyer and Huckleberry Finn."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1907",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "Dr. Seuss",
+                "url": "<blockquote><p>You have brains in your head. You have feet in your shoes. You can steer yourself in any direction you choose. You're on your own, and you know what you know. And you are the guy who'll decide where to go.</p></blockquote>"
+            },
+            "text": {
+                "headline": "Blockquote",
+                "text": "Moves to Hannibal, Missouri, which later serves as the model town for Tom Sawyer and Huckleberry Finn."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1921",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1922",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "http://open.spotify.com/track/1OT1G66Lt9EpKFWkwK8i9z"
+            },
+            "text": {
+                "headline": "Spotify Track URL",
+                "text": "Visits St. Louis, New York, and Philadelphia as an itinerant printer."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1940",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "media": {
+                "caption": "Mark Twain's desk when he was editor of the Territorial Enterprise. Mark Twain Territorial Enterprise Museum, Virginia City, NV.",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/Mark_Twain"
+            },
+            "text": {
+                "headline": "Virginia City Territorial Enterprise",
+                "text": "Travels around Nevada and California. Takes job as reporter for the Virginia City Territorial Enterprise."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1960",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg",
+                "link": "http://knightlab.com"
+            },
+            "text": {
+                "headline": "San Francisco",
+                "text": "Forced to leave Nevada for breaking dueling laws. Prospects in Calaveras County, settles in San Francisco. Writes for magazines and newspapers."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1963",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Wreck of USS Hornet.",
+                "credit": "",
+                "url": "http://photos.wikimapia.org/p/00/00/56/17/28_big.jpg",
+                "link": "http://knightlab.com"
+            },
+            "text": {
+                "headline": "Hawaii",
+                "text": "Takes trip to Hawaii as correspondent of the Sacramento Alta Californian. Reports on shipwreck of the Hornet. Gives first public lecture."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1930",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "link": "http://knightlab.com",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu/page1-395px-1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu.jpg"
+            },
+            "text": {
+                "headline": "Travels",
+                "text": "Travels as correspondent to Europe and the Holy Land on the Quaker City. Sees a picture of Olivia Langdon (Livy). Publishes The Celebrated Jumping Frog of Calaveras County, and Other Sketches. Sales are light."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1935",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg",
+                "link": "http://knightlab.com"
+            },
+            "text": {
+                "headline": "Livy",
+                "text": "Lectures across the United States. Meets and falls in love with Livy in Elmira, New York."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1959",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg",
+                "link": "http://knightlab.com"
+            },
+            "text": {
+                "headline": "Married",
+                "text": "Marries Livy in Elmira. Her father buys them a house in Buffalo, New York. Son Langdon is born."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg",
+                "link": "http://knightlab.com"
+            },
+            "text": {
+                "headline": "Roughing It",
+                "text": "Moves with Livy to Hartford. Publishes Roughing It. Daughter is born. Son Langdon dies."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1991",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg",
+                "link": "http://knightlab.com"
+            },
+            "text": {
+                "headline": "Financial",
+                "text": "Leaves Hartford to live in Europe because of financial difficulties."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url":  "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "start_date": {
+                "year":			"1913",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Livy dies",
+                "text": "Livy dies. Begins dictating autobiography. Moves to New York City."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": null,
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1994",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Twains house, \"Stormfield\", in Redding, Connecticut (front view)",
+                "credit": "",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Mark_Twain%27s_house%2C_front_view._-_NARA_-_516527.tif/lossy-page1-800px-Mark_Twain%27s_house%2C_front_view._-_NARA_-_516527.tif.jpg",
+                "link": "http://knightlab.com"
+            },
+            "text": {
+                "headline": "Stormfield",
+                "text": "Moves into Stormfield in Redding, CT. Forms the Angelfish Club for young girls."
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain_juked.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain_juked.json
new file mode 100644
index 0000000000000000000000000000000000000000..05b22c0bb48b0fb2ef307c0b12ff7dad4ae3c5a7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain_juked.json
@@ -0,0 +1,581 @@
+{
+    "title": {
+            "text": {
+                "headline": "Mark Twain JSON",
+                "text":     "Samuel Langhorne Clemens (November 30, 1835 – April 21, 1910),[1] better known by his pen name Mark Twain, was an American author and humorist.<span class='tl-note'>This is a title slide</span>"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Mark_Twain",
+                "thumb":    "https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Mark_Twain%2C_Brady-Handy_photo_portrait%2C_Feb_7%2C_1871%2C_cropped.jpg/153px-Mark_Twain%2C_Brady-Handy_photo_portrait%2C_Feb_7%2C_1871%2C_cropped.jpg"
+            }
+    },
+    "events": [
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "05",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "end_date": {
+                "year":         "1902",
+                "month":        "01",
+                "day":          "05",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "url": "<blockquote><p>There is no demand for women engineers, as such, as there are for women doctors; but there's always a demand for anyone who can do a good piece of work.</p><cite>Edith Clarke, first female professor of electrical engineering in the United States</cite></blockquote>",
+                "thumb":    "http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg"
+            },
+            "text": {
+                "headline": "Blockquote",
+                "text": "Samuel Langhorne Clemens (November 30, 1835 \u2013 April 21, 1910), better known by his pen name Mark Twain, was an American author and humorist. He wrote The Adventures of Tom Sawyer (1876) and its sequel, Adventures of Huckleberry Finn (1885), the later often called \"the Great American Novel.\""
+            },
+            "type": "overview"
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "05",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "end_date": {
+                "year":         "1902",
+                "month":        "01",
+                "day":          "05",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "url": "<blockquote>There is no demand for women engineers, as such, as there are for women doctors; but there's always a demand for anyone who can do a good piece of work. —Edith Clarke, first female professor of electrical engineering in the United States</blockquote>",
+                "thumb":    "http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg"
+            },
+            "text": {
+                "headline": "Blockquote",
+                "text": "Samuel Langhorne Clemens (November 30, 1835 \u2013 April 21, 1910), better known by his pen name Mark Twain, was an American author and humorist. He wrote The Adventures of Tom Sawyer (1876) and its sequel, Adventures of Huckleberry Finn (1885), the later often called \"the Great American Novel.\""
+            },
+            "type": "overview"
+        },
+        {
+            "start_date": {
+                "year":			"1900",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1902",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Twain caricatured by Spy for Vanity Fair, 1908",
+                "credit": "Vanity Fair",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg",
+                "thumb": 	"http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg"
+            },
+            "text": {
+                "headline": "Mark Twain JSON",
+                "text": "Samuel Langhorne Clemens (November 30, 1835 \u2013 April 21, 1910), better known by his pen name Mark Twain, was an American author and humorist. He wrote The Adventures of Tom Sawyer (1876) and its sequel, Adventures of Huckleberry Finn (1885), the later often called \"the Great American Novel.\""
+            },
+            "type": "overview"
+        },
+        {
+            "start_date": {
+                "year":			"2000",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.491711,
+                "line": true,
+                "lon": -91.79326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's birthplace, Florida, Missouri",
+                "credit": "",
+                "url": "https://twitter.com/MarkTwainQuote/status/441928360583643136"
+            },
+            "text": {
+                "headline": "Florida, Missouri",
+                "text": "Born in Florida, Missouri. Halley\u2019s comet visible from earth."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1920",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1923",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.501711,
+                "line": true,
+                "lon": -91.94326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's boyhood home in Hannibal, Missouri.",
+                "credit": "",
+                "url": "http://instagram.com/p/lEPdm4J20m/"
+            },
+            "text": {
+                "headline": "Hannibal, Missouri",
+                "text": "Moves to Hannibal, Missouri, which later serves as the model town for Tom Sawyer and Huckleberry Finn."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.710083,
+                "line": true,
+                "lon": -91.357441,
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "http://www.youtube.com/watch?v=C-nTpGMMVjY"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "https://twitter.com/mattmansfield/status/613042417298731008"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "caption": "Hannibal Gazette. Begins work as a journeyman printer with the Hannibal Gazette. Publishes first sketches.",
+                "credit": null,
+                "url": "http://www.youtube.com/watch?v=C-nTpGMMVjY"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1915",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 40.714353,
+                "line": true,
+                "lon": -74.005973,
+                "zoom": 11
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://vine.co/v/bjHh0zHdgZT"
+            },
+            "text": {
+                "headline": "Itinerant Printer",
+                "text": "Visits St. Louis, New York, and Philadelphia as an itinerant printer."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "20",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.309514,
+                "line": true,
+                "lon": -119.649979,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "Mark Twain's desk when he was editor of the Territorial Enterprise. Mark Twain Territorial Enterprise Museum, Virginia City, NV.",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/Mark_Twain"
+            },
+            "text": {
+                "headline": "Virginia City Territorial Enterprise",
+                "text": "Travels around Nevada and California. Takes job as reporter for the Virginia City Territorial Enterprise."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1960",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 37.774929,
+                "line": true,
+                "lon": -122.419416,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "San Francisco",
+                "text": "Forced to leave Nevada for breaking dueling laws. Prospects in Calaveras County, settles in San Francisco. Writes for magazines and newspapers."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1963",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 19.896766,
+                "line": true,
+                "lon": -155.582782,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "Wreck of USS Hornet.",
+                "credit": "",
+                "url": "http://photos.wikimapia.org/p/00/00/56/17/28_big.jpg"
+            },
+            "text": {
+                "headline": "Hawaii",
+                "text": "Takes trip to Hawaii as correspondent of the Sacramento Alta Californian. Reports on shipwreck of the Hornet. Gives first public lecture."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1930",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 54.525961,
+                "line": true,
+                "lon": 15.255119,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu/page1-395px-1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu.jpg"
+            },
+            "text": {
+                "headline": "Travels",
+                "text": "Travels as correspondent to Europe and the Holy Land on the Quaker City. Sees a picture of Olivia Langdon (Livy). Publishes The Celebrated Jumping Frog of Calaveras County, and Other Sketches. Sales are light."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1935",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 42.089796,
+                "line": true,
+                "lon": -76.807734,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Livy",
+                "text": "Lectures across the United States. Meets and falls in love with Livy in Elmira, New York."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1959",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 42.886447,
+                "lon": -78.878369,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Married",
+                "text": "Marries Livy in Elmira. Her father buys them a house in Buffalo, New York. Son Langdon is born."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 41.763711,
+                "line": true,
+                "lon": -72.685093,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Roughing It",
+                "text": "Moves with Livy to Hartford. Publishes Roughing It. Daughter is born. Son Langdon dies."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1991",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 54.525961,
+                "lon": 15.255119,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Financial",
+                "text": "Leaves Hartford to live in Europe because of financial difficulties."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "10",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "https://www.google.com/maps/place/Medill+School+of+Journalism,+Media,+Integrated+Marketing+Communications+Office+of+Dean/@42.0509363,-87.6737809,18z/data=!4m2!3m1!1s0x0000000000000000:0x683bff755fbf8f0c"
+            },
+            "text": {
+                "headline": "Livy dies",
+                "text": "Livy dies. Begins dictating autobiography. Moves to New York City."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": null,
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"2014",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Get started!",
+                "text": ""
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain_test.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain_test.json
new file mode 100644
index 0000000000000000000000000000000000000000..a0fe583486cb5f953103aed74c4f1efe0442f5b9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/marktwain_test.json
@@ -0,0 +1,455 @@
+{
+    "events": [
+        {
+            "start_date": {
+                "year":			"1900",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1902",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.491711,
+                "line": true,
+                "lon": -91.79326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Twain caricatured by Spy for Vanity Fair, 1908",
+                "credit": "Vanity Fair",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg",
+                "thumb": 	"http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg"
+            },
+            "text": {
+                "headline": "Mark Twain JSON",
+                "text": "Samuel Langhorne Clemens (November 30, 1835 \u2013 April 21, 1910), better known by his pen name Mark Twain, was an American author and humorist. He wrote The Adventures of Tom Sawyer (1876) and its sequel, Adventures of Huckleberry Finn (1885), the later often called \"the Great American Novel.\""
+            },
+            "type": "overview"
+        },
+        {
+            "start_date": {
+                "year":			"2000",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.491711,
+                "line": true,
+                "lon": -91.79326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's birthplace, Florida, Missouri",
+                "credit": "",
+                "url": "https://twitter.com/MarkTwainQuote/status/441928360583643136"
+            },
+            "text": {
+                "headline": "Florida, Missouri",
+                "text": "Born in Florida, Missouri. Halley\u2019s comet visible from earth."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1920",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1923",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.501711,
+                "line": true,
+                "lon": -91.94326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's boyhood home in Hannibal, Missouri.",
+                "credit": "",
+                "url": "http://instagram.com/p/lEPdm4J20m/"
+            },
+            "text": {
+                "headline": "Hannibal, Missouri",
+                "text": "Moves to Hannibal, Missouri, which later serves as the model town for Tom Sawyer and Huckleberry Finn."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1915",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 40.714353,
+                "line": true,
+                "lon": -74.005973,
+                "zoom": 11
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://vine.co/v/bjHh0zHdgZT"
+            },
+            "text": {
+                "headline": "Itinerant Printer",
+                "text": "Visits St. Louis, New York, and Philadelphia as an itinerant printer."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "20",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.309514,
+                "line": true,
+                "lon": -119.649979,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "Mark Twain's desk when he was editor of the Territorial Enterprise. Mark Twain Territorial Enterprise Museum, Virginia City, NV.",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/Mark_Twain"
+            },
+            "text": {
+                "headline": "Virginia City Territorial Enterprise",
+                "text": "Travels around Nevada and California. Takes job as reporter for the Virginia City Territorial Enterprise."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1960",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 37.774929,
+                "line": true,
+                "lon": -122.419416,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "San Francisco",
+                "text": "Forced to leave Nevada for breaking dueling laws. Prospects in Calaveras County, settles in San Francisco. Writes for magazines and newspapers."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1963",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 19.896766,
+                "line": true,
+                "lon": -155.582782,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "Wreck of USS Hornet.",
+                "credit": "",
+                "url": "http://photos.wikimapia.org/p/00/00/56/17/28_big.jpg"
+            },
+            "text": {
+                "headline": "Hawaii",
+                "text": "Takes trip to Hawaii as correspondent of the Sacramento Alta Californian. Reports on shipwreck of the Hornet. Gives first public lecture."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1930",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 54.525961,
+                "line": true,
+                "lon": 15.255119,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu/page1-395px-1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu.jpg"
+            },
+            "text": {
+                "headline": "Travels",
+                "text": "Travels as correspondent to Europe and the Holy Land on the Quaker City. Sees a picture of Olivia Langdon (Livy). Publishes The Celebrated Jumping Frog of Calaveras County, and Other Sketches. Sales are light."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1935",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 42.089796,
+                "line": true,
+                "lon": -76.807734,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Livy",
+                "text": "Lectures across the United States. Meets and falls in love with Livy in Elmira, New York."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1959",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 42.886447,
+                "lon": -78.878369,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Married",
+                "text": "Marries Livy in Elmira. Her father buys them a house in Buffalo, New York. Son Langdon is born."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 41.763711,
+                "line": true,
+                "lon": -72.685093,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Roughing It",
+                "text": "Moves with Livy to Hartford. Publishes Roughing It. Daughter is born. Son Langdon dies."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1991",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 54.525961,
+                "lon": 15.255119,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Financial",
+                "text": "Leaves Hartford to live in Europe because of financial difficulties."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "10",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 40.714353,
+                "lon": -74.005973,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Livy dies",
+                "text": "Livy dies. Begins dictating autobiography. Moves to New York City."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": null,
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"2014",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Get started!",
+                "text": ""
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/media_types.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/media_types.html
new file mode 100644
index 0000000000000000000000000000000000000000..e9352506c79f9a4476bf70e906b5c3cfba698c0e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/media_types.html
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Media Types Test</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="/build/css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="/build/css/fonts/font.georgia-helvetica.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="/build/js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'media_types.json', {
+      	ga_property_id: "UA-27829802-4",
+      	is_embed:true,
+      	language: "en",
+      	debug: true
+      });
+/*
+      var timeline = new TL.Timeline('timeline', '1OQCXIQoeMUbeIE3KdKijQhFvgit37m6Sy6S07gAE6fU', {
+      	ga_property_id: "UA-27829802-4",
+      	debug:true,
+      	is_embed:true
+      });
+    */
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/media_types.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/media_types.json
new file mode 100644
index 0000000000000000000000000000000000000000..d75d09bed08aa52740c807a25bcf83f235bc901c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/media_types.json
@@ -0,0 +1,549 @@
+{
+    "scale": "human",
+	"title": {
+		        "media": {
+		            "caption": "",
+		            "credit": "",
+		            "url": "",
+		            "thumb": 	""
+		        },
+	            "text": {
+	                "headline": "Test Timeline",
+	                "text": "This is a test Timeline that has at least one slide of every media type."
+	            }
+	    },
+    "events": [
+        {
+            "background": {
+                "color": "#000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1900",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Get started!",
+                "text": "This slide has an image background."
+            },
+            "background": {
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            }
+        },
+        {
+            "background": {
+                "color": "#000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1900",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Hello",
+                "text": "This slide has an imgur background."
+            },
+            "background": {
+                "url": "http://imgur.com/gallery/e47JWq7"
+            }
+        },
+
+        {
+            "start_date": {
+                "year":			"1901",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "Dr. Seuss",
+                "url": "<blockquote><p>You have brains in your head. You have feet in your shoes. You can steer yourself in any direction you choose. You're on your own, and you know what you know. And you are the guy who'll decide where to go.</p></blockquote>",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Blockquote",
+                "text": "This is an example of a blockquote. This slide has an instgram background."
+            },
+            "background": {
+                "url": "https://instagram.com/p/0nsIGKIbb7/"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1902",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "Somebody",
+                "url": "http://www.dailymotion.com/video/x38xw18_tame-impala-performs-the-less-i-know-the-better_fun",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "DailyMotion",
+                "text": "This is an example of a daily motion thing.  This slide has a flickr background."
+            },
+            "background": {
+                "url": "https://www.flickr.com/photos/zachwise/14514563402/"
+            }
+        },
+        
+
+        {
+            "start_date": {
+                "year":			"1903",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://www.documentcloud.org/documents/2451733-o2015-6341-pdf.html",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "DocumentCloud",
+                "text": "This is an example of a Document Cloud thing."
+            },
+            "background": {
+                "url": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1904",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "Zach Wise",
+                "url": "https://www.flickr.com/photos/zachwise/14514563402/"
+            },
+            "text": {
+                "headline": "Flickr",
+                "text": "To add a Flickr photo, just paste a link to the photo page in the media field. Example: https://www.flickr.com/photos/zachwise/14514563402/"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://docs.google.com/document/d/1wwjWAYFERCAl0QYg3F2fqs5SBnzrythWyglV0A3Ao2c/edit?usp=sharing"
+            },
+            "text": {
+                "headline": "GoogleDoc",
+                "text": "This is Google Doc slide."
+            },
+            "unique_id": ""
+        },
+   
+        {
+            "start_date": {
+                "year":			"1906",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://www.google.com/maps/place/1845+Sheridan+Rd,+Evanston,+IL+60208/@42.0507029,-87.6741602,17z/data=!3m1!4b1!4m2!3m1!1s0x880fd0746c9b0007:0x8bb1a9034220562f"
+            },
+            "text": {
+                "headline": "GoogleMap",
+                "text": "This is Google Map slide."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1909",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Image",
+                "text": "This is an image slide."
+            },
+            "unique_id": ""
+        },
+
+        {
+            "start_date": {
+                "year":			"1910",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "text": {
+                "headline": "Instagram",
+                "text": "To add an Instagram photo, just paste a link to the photo page in the media field. Example: https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1910",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "text": {
+                "headline": "Instagram",
+                "text": "To add an Instagram photo, just paste a link to the photo page in the media field. Example: https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1911",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://stlab.adobe.com/wiki/images/d/d3/Test.pdf"
+            },
+            "text": {
+                "headline": "PDF",
+                "text": "This is a PDF slide"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1914",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://soundcloud.com/beastieboys/make-some-noise"
+            },
+            "text": {
+                "headline": "SoundCloud",
+                "text": "Just add a link to the track in the media field."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1915",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "http://open.spotify.com/track/1OT1G66Lt9EpKFWkwK8i9z"
+            },
+            "text": {
+                "headline": "Spotify Track URL",
+                "text": "Spotify Track URL"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1917",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://storify.com/cmgnationalnews/last-minute-rumors-about-apple-s-new-iphone-6-iwat"
+            },
+            "text": {
+                "headline": "Storify",
+                "text": "Add a link to the Storify"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1918",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://twitter.com/zlwise/status/502535723715923968"
+            },
+            "text": {
+                "headline": "Twitter",
+                "text": "Just add a link to the tweet"
+            },
+            "unique_id": ""
+        },
+         {
+            "start_date": {
+                "year":			"1920",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": null,
+                "url": "https://vimeo.com/105602328"
+            },
+            "text": {
+                "headline": "Vimeo",
+                "text": "Just add a link to the video in the media field."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1921",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://vine.co/v/bjHh0zHdgZT"
+            },
+            "text": {
+                "headline": "Vine",
+                "text": "Add a link to the Vine"
+            },
+            "unique_id": ""
+        },        
+        {
+            "start_date": {
+                "year":			"1922",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://www.nytimes.com/",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Website",
+                "text": "This is an example of a website. Just paste a link to the site in the media field."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1923",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/A_Trip_to_the_Moon",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Wikipedia",
+                "text": "Add a link to a <a href='http://en.wikipedia.org/wiki/A_Trip_to_the_Moon' target='_blank'>Wikipedia entry</a> in the media field to show an excerpt alongside your text."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1924",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "Le portrait mystérieux",
+                "credit": "Georges Méliès",
+                "url": "http://youtu.be/lIvftGgps24",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "YouTube video",
+                "text": "To add a YouTube video, just add a link to it in the media field. No embedding necessary. http://youtu.be/lIvftGgps24"
+            }
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/milliseconds.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/milliseconds.html
new file mode 100644
index 0000000000000000000000000000000000000000..39d29c8c67173c23733204bb36b5aa34cd6e9fe3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/milliseconds.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Milliseconds</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'milliseconds.json', {
+      	ga_property_id: "UA-27829802-4"
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/milliseconds.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/milliseconds.json
new file mode 100644
index 0000000000000000000000000000000000000000..cbef727b7dac4fbd429a19d7bf012f0117b4511f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/milliseconds.json
@@ -0,0 +1,85 @@
+{
+	"title": {
+            "text": {
+                "headline": "Milliseconds",
+                "text":     "Testing milliseconds"
+            }
+    },
+    "events": [
+        {
+            "start_date": {
+                "year":			"2015",
+                "month":		"01",
+                "day": 			"01",
+                "hour": 		"01",
+                "minute": 		"01",
+                "second": 		"01",
+                "millisecond": 	"01"
+            },
+            "text": {
+                "headline": "Test",
+                "text": "Test"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"2015",
+                "month":		"01",
+                "day": 			"01",
+                "hour": 		"01",
+                "minute": 		"01",
+                "second": 		"01",
+                "millisecond": 	"10"
+            },
+            "text": {
+                "headline": "Test",
+                "text": "Test"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"2015",
+                "month":		"01",
+                "day": 			"01",
+                "hour": 		"01",
+                "minute": 		"01",
+                "second": 		"01",
+                "millisecond": 	"30"
+            },
+            "text": {
+                "headline": "Test",
+                "text": "Test"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"2015",
+                "month":		"01",
+                "day": 			"01",
+                "hour": 		"01",
+                "minute": 		"01",
+                "second": 		"01",
+                "millisecond": 	"50"
+            },
+            "text": {
+                "headline": "Test",
+                "text": "Test"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"2015",
+                "month":		"01",
+                "day": 			"01",
+                "hour": 		"01",
+                "minute": 		"01",
+                "second": 		"01",
+                "millisecond": 	"60"
+            },
+            "text": {
+                "headline": "Test",
+                "text": "Test"
+            }
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/multiple_timeline.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/multiple_timeline.html
new file mode 100644
index 0000000000000000000000000000000000000000..a186701b3b255b684c30cd740da6fda02350a2cb
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/multiple_timeline.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>TimelineJS Multiple Timelines Example</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      #timeline1, #timeline2, #timeline3 {
+      	height:600px;
+      	width:100%;
+      }
+      
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline1"></div>
+    <div id="timeline2"></div>
+    <div id="timeline3"></div>
+    <div id="timeline4"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline_01 = new TL.Timeline('timeline1', 'marktwain.json');
+      var timeline_02 = new TL.Timeline('timeline2', 'years.json');
+      var timeline_03 = new TL.Timeline('timeline3', 'science.json');
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/science.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/science.json
new file mode 100644
index 0000000000000000000000000000000000000000..1f8d3c7225d6bb82c9060c2c1a1381a5a6258f99
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/science.json
@@ -0,0 +1,82 @@
+{
+    "events": [
+        {
+            "date": {
+                "year":			"-541000000"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Geologic_time_scale"
+            },
+            "text": {
+                "headline": "Geological Timeline Test",
+                "text": "Testing extreme dates for TimelineJS3"
+            },
+            "type": "overview"
+        },
+        {
+            "date": {
+                "year":			"-541000000"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Cambrian"
+            },
+            "text": {
+                "headline": "Cambrian",
+                "text": "Major diversification of life in the Cambrian Explosion. Numerous fossils; most modern animal phyla appear. First chordates appear, along with a number of extinct, problematic phyla. Reef-building Archaeocyatha abundant; then vanish. Trilobites, priapulid worms, sponges, inarticulate brachiopods (unhinged lampshells), and many other animals numerous. Anomalocarids are giant predators, while many Ediacaran fauna die out. Prokaryotes, protists (e.g., forams), fungi and algae continue to present day. Gondwana emerges. Petermann Orogeny on the Australian Continent tapers off (550–535 Ma). Ross Orogeny in Antarctica. Adelaide Geosyncline (Delamerian Orogeny), majority of orogenic activity from 514–500Ma. Lachlan Orogeny on Australian Continent, c. 540–440Ma. Atmospheric CO2 content roughly 20–35 times present-day (Holocene) levels (6000 ppmv compared to today's 385 ppmv)[27][28]"
+            },
+            "unique_id": ""
+        },
+        {
+            "date": {
+                "year":			"-252000000"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Triassic"
+            },
+            "text": {
+                "headline": "Triassic",
+                "text": "Archosaurs dominant on land as dinosaurs, in the oceans as Ichthyosaurs and nothosaurs, and in the air as pterosaurs. Cynodonts become smaller and more mammal-like, while first mammals and crocodilia appear. Dicroidiumflora common on land. Many large aquatic temnospondyl amphibians. Ceratitic ammonoids extremely common. Modern corals and teleost fish appear, as do many modern insect clades. Andean Orogeny in South America. Cimmerian Orogeny in Asia. Rangitata Orogeny begins in New Zealand. Hunter-Bowen Orogeny in Northern Australia, Queensland and New South Wales ends, (c. 260–225 Ma)"
+            },
+            "unique_id": ""
+        },
+        {
+            "date": {
+                "year":			"-201000000"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Jurassic"
+            },
+            "text": {
+                "headline": "Jurassic",
+                "text": "Gymnosperms (especially conifers, Bennettitales and cycads) and ferns common. Many types of dinosaurs, such as sauropods, carnosaurs, and stegosaurs. Mammals common but small. First birds and lizards. Ichthyosaurs and plesiosaurs diverse. Bivalves, Ammonites and belemnites abundant. Sea urchins very common, along with crinoids, starfish, sponges, and terebratulid and rhynchonellid brachiopods. Breakup of Pangaea into Gondwana and Laurasia. Nevadan orogeny in North America. Rantigata and Cimmerian Orogenies taper off. Atmospheric CO2 levels 4–5 times the present day levels (1200–1500 ppmv, compared to today's 385 ppmv[27][28])."
+            },
+            "unique_id": ""
+        },
+        {
+            "date": {
+                "year":			"-145000000"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Cretaceous"
+            },
+            "text": {
+                "headline": "Cretaceous",
+                "text": "Flowering plants proliferate, along with new types of insects. More modern teleost fish begin to appear. Ammonoidea, belemnites, rudist bivalves, echinoids and sponges all common. Many new types of dinosaurs (e.g. Tyrannosaurs, Titanosaurs, duck bills, and horned dinosaurs) evolve on land, as do Eusuchia (modern crocodilians); and mosasaurs and modern sharks appear in the sea. Primitive birds gradually replace pterosaurs. Monotremes, marsupials and placental mammals appear. Break up of Gondwana. Beginning of Laramide and Sevier Orogenies of the Rocky Mountains. Atmospheric CO2 close to present-day levels."
+            },
+            "unique_id": ""
+        },
+        {
+            "date": {
+                "year":			"-2580000"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Quaternary"
+            },
+            "text": {
+                "headline": "Quaternary",
+                "text": "Flourishing and then extinction of many large mammals (Pleistocene megafauna). Evolution of anatomically modern humans. Quaternary Ice Age continues with glaciations and interstadials (and the accompanying fluctuations from 100 to 300 ppmv in atmospheric CO2 levels[27][28]), further intensification of Icehouse Earth conditions, roughly 1.6 Ma. Last glacial maximum (30000 years ago), last glacial period (18000–15000 years ago). Dawn of human stone-age cultures, with increasing technical complexity relative to previous ice age cultures, such as engravings and clay statues (e.g. Venus of Lespugue), particularly in the Mediterranean and Europe. Lake Toba supervolcano erupts 75000 years before present, causing a volcanic winter that pushes humanity to the brink of extinction. Pleistocene ends with Oldest Dryas, Older Dryas/Allerød and Younger Dryas climate events, with Younger Dryas forming the boundary with the Holocene."
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/seventh_century.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/seventh_century.html
new file mode 100644
index 0000000000000000000000000000000000000000..a47f85e6c9f05a09962407bb2c6a6089a9d99a77
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/seventh_century.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>The 7th Century</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'seventh_century.json', {
+      	ga_property_id: "UA-27829802-4"
+      });
+      window.onresize = function(event) {
+      	timeline.updateDisplay();
+      }
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/seventh_century.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/seventh_century.json
new file mode 100644
index 0000000000000000000000000000000000000000..3be788423f50103f3899b0a7d4801c3fa15d1809
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/seventh_century.json
@@ -0,0 +1,319 @@
+{
+	"title": {
+            "text": {
+                "headline": "The 7th Century",
+                "text":     "Events in the 7th century from https://en.wikipedia.org/wiki/Timeline_of_the_Middle_Ages"
+            }
+    },
+    "events": [
+        {
+            "start_date": {
+                "year":			"602"
+            },
+            "end_date": {
+                "year":			"629"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Roman-Persian_Wars"
+            },
+            "background": {
+				"opacity":"50",
+                "url": "https://upload.wikimedia.org/wikipedia/commons/a/a2/HumiliationValerianusHolbein.jpg"
+            },
+            "text": {
+                "headline": "Last great Roman-Persian War.",
+                "text": "Long conflict leaves both empires exhausted and unable to cope with the newly united Arab armies under Islam in the 630s"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"604"
+            },
+            "end_date": {
+                "year":			"609"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Grand_Canal_(China)"
+            },
+            "background": {
+				"opacity":"50",
+                "url": "https://upload.wikimedia.org/wikipedia/commons/a/ad/Sui_Wendi_Tang.jpg"
+            },
+            "text": {
+                "headline": "Grand Canal in China is fully completed",
+                "text": "Its main role throughout its history was the transport of grain to the capital."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"618",
+                "month":		"06",
+                "day": 			"18"
+            },
+            "end_date": {
+                "year":			"907",
+                "month":		"06",
+                "day": 			"01"
+            },
+            "background": {
+				"opacity":"50",
+                "url": "https://upload.wikimedia.org/wikipedia/commons/1/1a/Spring_Outing_of_the_Tang_Court.jpg"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Tang_Dynasty"
+            },
+            "text": {
+                "headline": "Tang Dynasty in China",
+                "text": "The essential administrative system of this dynasty lasts for 286 years."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"622",
+                "month":		"08",
+                "day": 			"09"
+            },
+            "end_date": {
+                "year":			"622",
+                "month":		"08",
+                "day": 			"23"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Hijra_(Islam)"
+            },
+            "text": {
+                "headline": "Muhammad Migrates from Mecca to Medina",
+                "text": "Event will have designated first year of the Islamic Calendar, as Anno Hegirae."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"626"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Siege_of_Constantinople_(626)"
+            },
+            "background": {
+				"opacity":"50",
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Moldovita_murals_2010_16.jpg/1024px-Moldovita_murals_2010_16.jpg"
+            },
+            "text": {
+                "headline": "Joint Persian-Avar-Slav Siege of Constantinople Constantinople saved",
+                "text": "Avar power broken and Persians henceforth on the defensive"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"627",
+                "month":		"12",
+                "day": 			"12"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Nineveh_(627)"
+            },
+            "background": {
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Piero_della_Francesca_021.jpg/1024px-Piero_della_Francesca_021.jpg"
+            },
+            "text": {
+                "headline": "Battle of Nineveh",
+                "text": "The Byzantines, under Heraclius, crush the Persians."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"632",
+                "month":		"06",
+                "day": 			"08"
+            },
+            "text": {
+                "headline": "Death of Muhammed",
+                "text": "By this point, all of Arabia is Muslim."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"632",
+                "month":		"06",
+                "day": 			"08"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Abu_Bakr"
+            },
+            "text": {
+                "headline": "Accession of Abu Bakr as first Caliph",
+                "text": "Though the period of his caliphate was not long, it included successful invasions of the two most powerful empires of the time."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"633"
+            },
+            "end_date": {
+                "year":			"634"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Heavenfield"
+            },
+            "text": {
+                "headline": "Battle of Heavenfield",
+                "text": "Northumbrian army under Oswald defeat Welsh army."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"641"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Nihaw%C4%81nd"
+            },
+            "background": {
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Castle_Nahavend_by_Eug%C3%A8ne_Flandin.jpg/1024px-Castle_Nahavend_by_Eug%C3%A8ne_Flandin.jpg"
+            },
+            "text": {
+                "headline": "Battle of Nehawand",
+                "text": "Muslims conquer Persia."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"643"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Alexandria"
+            },
+            "text": {
+                "headline": "Arab Army led by Omar Ibn Al-'Aas takes Alexandria",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"645"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Soga_clan"
+            },
+            "text": {
+                "headline": "In Japan, the Soga clan falls",
+                "text": "This initiates a period of imitation of Chinese culture, The Nara period begins a year later."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"650"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Balkans"
+            },
+            "text": {
+                "headline": "Slav occupation of Balkans complete.",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"663"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Synod_of_Whitby"
+            },
+            "text": {
+                "headline": "Synod of Whitby",
+                "text": "Roman Christianity triumphs over Celtic Christianity in England."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"668"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Three_Kingdoms_of_Korea"
+            },
+            "text": {
+                "headline": "Ends of the Three Kingdoms period in Korea",
+                "text": "Established a Unified Silla which led to the North South States Period 30 years later."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"674"
+            },
+            "end_date": {
+                "year":			"678"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Siege_of_Constantinople_(674)"
+            },
+            "background": {
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Greekfire-madridskylitzes1.jpg/1024px-Greekfire-madridskylitzes1.jpg"
+            },
+            "text": {
+                "headline": "First Arab siege of Constantinople",
+                "text": "First time Islamic armies defeated, forestalling Islamic conquest of Europe."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"681"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/First_Bulgarian_Empire"
+            },
+            "background": {
+                "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Krum1.jpg/782px-Krum1.jpg"
+            },
+            "text": {
+                "headline": "Establishment of the Bulgarian Empire",
+                "text": "A country with great influence in the European history in the Middle Ages."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"685"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain"
+            },
+            "text": {
+                "headline": "Battle of Dun Nechtain",
+                "text": "Picts defeat Northumbrians, whose dominance ends."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"687"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Battle_of_Tertry"
+            },
+            "text": {
+                "headline": "Battle of Tertry",
+                "text": "Established Pepin of Herstal as mayor over the entire realms of Neustria and Austrasia, which further dwindled Merovingian power."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"698"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Carthage"
+            },
+            "text": {
+                "headline": "Arab army takes Carthage",
+                "text": "End of Byzantine rule in North Africa"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"698"
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/North_South_States_Period"
+            },
+            "text": {
+                "headline": "North South States Period begins in Korea",
+                "text": "Silla and Balhae coexisted in the south and north of the peninsula, respectively, until 926"
+            }
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/sizes.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/sizes.html
new file mode 100644
index 0000000000000000000000000000000000000000..484f60abf8e43c33fab752d4d91f69e98db681aa
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/sizes.html
@@ -0,0 +1,74 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Testing Different Sizes</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      #timeline0, #timeline1, #timeline2, #timeline3, #timeline4 {
+      	height:600px;
+      	width:100%;
+      	margin-bottom:50px;
+      	margin-left:50px;
+      	//border: 1px solid #999;
+      }
+      #timeline0 {
+      	width:800px;
+      }
+      #timeline1 {
+      	width:700px;
+      }
+      #timeline2 {
+      	width:600px;
+      }
+      #timeline3 {
+      	width:500px;
+      }
+      #timeline4 {
+      	width:400px;
+      }
+      
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <h2 style="margin-left:50px"> 800px</h2>
+    <div id="timeline0"></div>
+    <h2 style="margin-left:50px"> 700px</h2>
+    <div id="timeline1"></div>
+    <h2 style="margin-left:50px"> 600px</h2>
+    <div id="timeline2"></div>
+    <h2 style="margin-left:50px"> 500px</h2>
+    <div id="timeline3"></div>
+    <h2 style="margin-left:50px"> 400px</h2>
+    <div id="timeline4"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline_00 = new TL.Timeline('timeline0', 'marktwain.json', {is_embed:true});
+      var timeline_01 = new TL.Timeline('timeline1', 'marktwain.json', {is_embed:true});
+      var timeline_02 = new TL.Timeline('timeline2', 'marktwain.json', {is_embed:true});
+      var timeline_03 = new TL.Timeline('timeline3', 'marktwain.json', {is_embed:true});
+      var timeline_04 = new TL.Timeline('timeline4', 'marktwain.json', {is_embed:true});
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/timeline_language.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/timeline_language.html
new file mode 100644
index 0000000000000000000000000000000000000000..8a1ac6bb2e3d497d6ee092ef897082ae32f81377
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/timeline_language.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>TimelineJS</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'marktwain.json', {
+      	language: "fr",
+      	ga_property_id: "UA-27829802-4"
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/timeline_top_nav.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/timeline_top_nav.html
new file mode 100644
index 0000000000000000000000000000000000000000..27760523d1ccd232c3a2944744c670c9955e6907
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/timeline_top_nav.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Timenav on top</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'welcome.json', {
+      	timenav_position:"top",
+      	ga_property_id: "UA-27829802-4"
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/timenav_height_example.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/timenav_height_example.html
new file mode 100644
index 0000000000000000000000000000000000000000..3c13a1ed68f44be6284d95132a1f1dcdcf198fe9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/timenav_height_example.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Timenav Height Example</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      #timeline1, #timeline2, #timeline3 {
+      	height:700px;
+      	width:100%;
+      	margin-bottom:50px;
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <h2 style="margin-left:50px">50%</h2>
+    <div id="timeline1"></div>
+    <h2 style="margin-left:50px"> 75%</h2>
+    <div id="timeline2"></div>
+    <h2 style="margin-left:50px"> 25%</h2>
+    <div id="timeline3"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline_01 = new TL.Timeline('timeline1', 'marktwain_juked.json', {
+      	timenav_height_percentage:50,
+      	is_embed:true
+      });
+      var timeline_02 = new TL.Timeline('timeline2', 'marktwain_juked.json', {
+      	timenav_height_percentage:75,
+      	is_embed:true
+      });
+      var timeline_03 = new TL.Timeline('timeline3', 'marktwain_juked.json', {
+      	timenav_height_percentage:25,
+      	is_embed:true
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding.html b/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding.html
new file mode 100644
index 0000000000000000000000000000000000000000..09a78659244b10d7e7fc99f36a16e02ef118d932
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Wedding Example using Time and Seconds</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="../css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="../css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="../js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'wedding.json', {
+      	ga_property_id: "UA-27829802-4"
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding.json
new file mode 100644
index 0000000000000000000000000000000000000000..ecc03d5ef7d9d9e99f8485b6c81f2d7da57c000a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding.json
@@ -0,0 +1 @@
+{"title":{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfp1/t51.2885-15/e15/10881793_320292118175388_462216162_n.jpg","caption":"","credit":""},"text":{"headline":"#pagingthemarcels","text":""}},"events":[{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/10561130_729427650453505_1665506649_n.jpg","caption":"engagement","credit":"@brightonkeller","thumb":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/10561130_729427650453505_1665506649_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"16","second":"54"},"text":{"headline":"Engagement","text":"<p>Headed to my lil sis's engagement party...SO excited!!!! She's my favorite person in the world (besides my other love, @lelers123 😘) and I couldn't be more excited for cokes and Ryan (my future bro! 💁) cc: @ryanmarcel #pagingthemarcels</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/10483586_1465755386999289_1642245121_n.jpg","caption":"dress_shopping","credit":"@lelers123","thumb":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/10483586_1465755386999289_1642245121_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"24"},"text":{"headline":"Dress Shopping","text":"<p>Wedding dress shopping with the best 😘</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfa1/t51.2885-15/e15/10895444_1540122292893381_1378407766_n.jpg","caption":"rehearsal_dinner","credit":"@kirbydavis1","thumb":"https://scontent.cdninstagram.com/hphotos-xfa1/t51.2885-15/e15/10895444_1540122292893381_1378407766_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"34"},"text":{"headline":"Rehearsal Dinner","text":"<p>So excited for @cocokeller to marry this awesome dude tomorrow! Love ya sista 🎊👯👰 #pagingtheMarcels</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xaf1/t51.2885-15/e15/927468_1525740241044129_1664358214_n.jpg","caption":"wedding_day","credit":"@pavlichphoto","thumb":"https://scontent.cdninstagram.com/hphotos-xaf1/t51.2885-15/e15/927468_1525740241044129_1664358214_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"44"},"text":{"headline":"Wedding Day","text":"<p>#46: Perfection is the word I'm seeing used to describe the Keller-Marcel wedding. Here a newly vowed family looks on as the fantastic midnight celebration unfolds. #bpphototop100 #pagingthemarcels #nye #midnight #2015 #wedding</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xta1/t51.2885-15/e15/928744_554641147972637_1323922608_n.jpg","caption":"wedding_day","credit":"@deekellerdesign","thumb":"https://scontent.cdninstagram.com/hphotos-xta1/t51.2885-15/e15/928744_554641147972637_1323922608_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"45"},"text":{"headline":"Wedding Day","text":"<p>Moments before the walk down the aisle, a sweet moment for my husband and daughter. It was an incredibly special moment for me having designed the dress for CoCo! #pagingthemarcels #southernwedding #marriedinthesouth</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/10865065_415766135240015_2107299712_n.jpg","caption":"wedding_day","credit":"@smmeeks88","thumb":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/10865065_415766135240015_2107299712_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"46"},"text":{"headline":"Wedding Day","text":"<p>Such an amazing time last night with this perfect little bridesmaid 😍 #pagingthemarcels @brightonkeller</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/10832149_1764592597100304_1510487833_n.jpg","caption":"wedding_day","credit":"@cat_crawford","thumb":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/10832149_1764592597100304_1510487833_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"47"},"text":{"headline":"Wedding Day","text":"<p>Watching my beautiful best friend say \"I do\" last night was the most amazing way to ring in the New Year! I love you so much Cocomo!! #pagingtheMarcels</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfp1/t51.2885-15/e15/10881793_320292118175388_462216162_n.jpg","caption":"wedding_day","credit":"@deekellerdesign","thumb":"https://scontent.cdninstagram.com/hphotos-xfp1/t51.2885-15/e15/10881793_320292118175388_462216162_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"48"},"text":{"headline":"Wedding Day","text":"<p>Tonight's the night! My daughter CoCo is getting married! #pagingtheMarcels #southernweddings #marriedinthesouth</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xtp1/t51.2885-15/e15/10895365_294483500761274_1154542052_n.jpg","caption":"wedding_day","credit":"@brightonkeller","thumb":"https://scontent.cdninstagram.com/hphotos-xtp1/t51.2885-15/e15/10895365_294483500761274_1154542052_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"49"},"text":{"headline":"Wedding Day","text":"<p>Building tents, ironing napkins, moving mud, planting trees, hanging chandeliers, and stuff 💁 We're ALL getting ready over here at the Keller Kasa for my sister's BIG DAY tomorrow 😍🙌👰👰 // @liketoknow.it www.liketk.it/M7za #liketkit #ootd</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpf1/t51.2885-15/e15/10554233_740063832702074_1149402378_n.jpg","caption":"wedding_day","credit":"@deekellerdesign","thumb":"https://scontent.cdninstagram.com/hphotos-xpf1/t51.2885-15/e15/10554233_740063832702074_1149402378_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"50"},"text":{"headline":"Wedding Day","text":"<p>I can't believe my little coco-mo is getting married! Having so much fun celebrating tonight at her engagement party ☺️ ...such a sweet and special moment between my two oldest girls 😊 #pagingthemarcels</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xap1/t51.2885-15/e15/10507905_767817206574032_889102882_n.jpg","caption":"wedding_day","credit":"@deekellerdesign","thumb":"https://scontent.cdninstagram.com/hphotos-xap1/t51.2885-15/e15/10507905_767817206574032_889102882_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"51"},"text":{"headline":"Wedding Day","text":"<p>Helping my daughter Coco finalize her wedding china! What do you think?! #pagingthemarcels</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xft1/t51.2885-15/e15/10454092_254603148080546_1832400923_n.jpg","caption":"wedding_day","credit":"@deekellerdesign","thumb":"https://scontent.cdninstagram.com/hphotos-xft1/t51.2885-15/e15/10454092_254603148080546_1832400923_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"17","second":"52"},"text":{"headline":"Wedding Day","text":"<p>To have and to HOLD 😍 ...helping my daughter coco find the perfect dress 👗🎀💄and I think we decided on #pagingtheMarcels - thanks for all hour help y'all!!</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpf1/t51.2885-15/e15/10919669_1545228029085951_1022116326_n.jpg","caption":"throw_back","credit":"@deekellerdesign","thumb":"https://scontent.cdninstagram.com/hphotos-xpf1/t51.2885-15/e15/10919669_1545228029085951_1022116326_n.jpg"},"start_date":{"month":"06","day":"18","year":"2014","hour":"17","minute":"18","second":"14"},"text":{"headline":"Throw Back Thursday","text":"<p>A little #Tbt to my daughter's wedding! Me with my precious girls! Love this shot captured by @pavlichphoto #marriedinthesouth #southernweddings #deekellerdesigns</p>"}}]}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding_backup.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding_backup.json
new file mode 100644
index 0000000000000000000000000000000000000000..ae9fa304b5c40b82756417d081a25dc579b3fc72
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/wedding_backup.json
@@ -0,0 +1 @@
+{"title":{"media":{"url":"","caption":"","credit":""},"text":{"headline":"#pbwed wedding","text":"Some body text here"}},"events":[{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xta1/t51.2885-15/e15/10932569_356383821220359_279092200_n.jpg","caption":"Test caption","credit":"@suraj.007"},"start_date":{"month":"02","day":"23","year":"2015","hour":"15","minute":"15","second":"51"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xap1/t51.2885-15/e15/10817526_312028709002504_852415585_n.jpg","caption":"Test caption","credit":"@mallorybower"},"start_date":{"month":"11","day":"24","year":"2014","hour":"13","minute":"51","second":"26"},"text":{"headline":"#pbwed wedding","text":"<p>Happy Anniversary, @stephenpapay! thanks for making me laugh every single day (and for upholding your vows by doing the dishes for me). Cheers to many more happy, happy years! #pbwed</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xap1/t51.2885-15/e15/10448853_797637786927368_775408813_n.jpg","caption":"Test caption","credit":"@eld_stevejr"},"start_date":{"month":"07","day":"16","year":"2014","hour":"19","minute":"34","second":"27"},"text":{"headline":"#pbwed wedding","text":"<p>#pb #pbwed #houseofprayer @bishopstevenbennettsr @stephaniejpride</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfa1/t51.2885-15/e15/1170376_532930200129542_2041232572_n.jpg","caption":"Test caption","credit":"@mallorybower"},"start_date":{"month":"11","day":"30","year":"2013","hour":"00","minute":"47","second":"40"},"text":{"headline":"#pbwed wedding","text":"<p>Late anniversary bier at the place we got married. #pbwed  @stephenpapay</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xat1/t51.2885-15/e15/1390140_770171942999694_1102460406_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"21","year":"2013","hour":"20","minute":"28","second":"23"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xaf1/t51.2885-15/e15/1171101_1424186797812629_1534172451_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"21","year":"2013","hour":"20","minute":"27","second":"16"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-ash/t51.2885-15/e15/915623_182148238645440_1919120139_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"21","year":"2013","hour":"20","minute":"25","second":"08"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit  Vickie gives a talk</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfp1/t51.2885-15/e15/1172073_191266657730584_815097901_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"19","year":"2013","hour":"03","minute":"12","second":"28"},"text":{"headline":"#pbwed wedding","text":"<p>Reunion at the wedding #pbwed @superbrian</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpf1/t51.2885-15/e15/1390361_431201493648477_1089847062_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"19","year":"2013","hour":"03","minute":"10","second":"33"},"text":{"headline":"#pbwed wedding","text":"<p>Me and John #pbwed @superbrian @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xap1/t51.2885-15/e15/1169334_1393207430922167_537078672_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"19","year":"2013","hour":"03","minute":"07","second":"19"},"text":{"headline":"#pbwed wedding","text":"<p>@jasonbroccoli serenading @prestonnesbit @superbrian #pbwed</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/925694_368572489956026_298041127_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"33","second":"25"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @marymatoulawebb @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xtp1/t51.2885-15/e15/1171827_443652199079966_1504701559_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"32","second":"33"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed #cityhall #sf @superbrian @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfa1/t51.2885-15/e15/1171972_617969051578087_2119560080_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"31","second":"36"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit #cityhall #sf</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/925690_246588688837821_179567263_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"30","second":"47"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xat1/t51.2885-15/e15/1208394_460151030769529_1385897114_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"29","second":"55"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit @deniseleah</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xaf1/t51.2885-15/e15/1389988_497325340374864_260956440_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"29","second":"16"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @deniseleah @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfa1/t51.2885-15/e15/1390013_234149203413797_1816339632_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"28","second":"17"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfa1/t51.2885-15/e15/1209706_1444689402425355_149937286_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"27","second":"04"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xfp1/t51.2885-15/e15/1390419_1434116103478473_1825875140_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"26","second":"20"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit</p>"}},{"media":{"url":"https://scontent.cdninstagram.com/hphotos-xpa1/t51.2885-15/e15/1389164_591237150942255_221599690_n.jpg","caption":"Test caption","credit":"@marymatoulawebb"},"start_date":{"month":"11","day":"18","year":"2013","hour":"06","minute":"24","second":"57"},"text":{"headline":"#pbwed wedding","text":"<p>#pbwed @superbrian @prestonnesbit</p>"}}]}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/welcome.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/welcome.json
new file mode 100644
index 0000000000000000000000000000000000000000..b0c92131a76b8bc28caadec48c5593530c4d8056
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/welcome.json
@@ -0,0 +1,658 @@
+{
+    "scale": "human",
+	"title": {
+		        "media": {
+		            "caption": "",
+		            "credit": "",
+		            "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg",
+		            "thumb": 	""
+		        },
+	            "text": {
+	                "headline": "Welcome to TimelineJS",
+	                "text": "<p>TimelineJS is an open-source tool that enables you to build visually-rich interactive timelines and is available in 40 languages.</p><p>You're looking at an example of one right now.</p><p>Click on the arrow to the right to learn more.</p>"
+	            }
+	    },
+    "events": [
+        {
+            "start_date": {
+                "year":			"1851",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Hello",
+            "media": {
+                "caption": "Screenshot from TimelineJS Embed Generator tool (see below)",
+                "credit": "",
+                "url": "http://timeline.knightlab.com/static/welcome/step3.png",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "It's Easy to Make Your Own Timeline",
+                "text": "The TimelineJS Embed Generator makes it easy to add a timeline to your own site. Just copy our Google Spreadsheet template, add your events as rows in the spreadsheet, and use our <a href='#make'>generator tool</a> to generate the HTML you need to add to your site."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1857",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Hello",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Illustrate your Timeline with photos, videos, tweets and more.",
+                "text": "Timeline can automatically pull in photos, videos from YouTube or Vimeo, tweets, wikipedia entries, and many other media types to help tell your story."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1899",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Hello",
+            "media": {
+                "caption": "Le portrait mystérieux",
+                "credit": "Georges Méliès",
+                "url": "http://youtu.be/lIvftGgps24",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "YouTube video",
+                "text": "To add a YouTube video, just add a link to it in the media field. No embedding necessary. http://youtu.be/lIvftGgps24"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1899",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "A Trip to the Moon / Le Voyage dans la lune",
+                "credit": "Georges Méliès",
+                "url": "http://youtu.be/7JDaOOw0MEE",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "YouTube with no text",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1902",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/A_Trip_to_the_Moon",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Wikipedia",
+                "text": "Add a link to a <a href='http://en.wikipedia.org/wiki/A_Trip_to_the_Moon' target='_blank'>Wikipedia entry</a> in the media field to show an excerpt alongside your text."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1902",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/A_Trip_to_the_Moon",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Wikipedia with no text",
+                "text": ""
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1950",
+                "month":		"2",
+                "day": 			"7",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1955",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Goodbye",
+            "media": {
+                "caption": "",
+                "credit": "Dr. Seuss",
+                "url": "<blockquote><p>You have brains in your head. You have feet in your shoes. You can steer yourself in any direction you choose. You're on your own, and you know what you know. And you are the guy who'll decide where to go.</p></blockquote>",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Blockquote",
+                "text": "This is an example of a blockquote. <br/>&lt;blockquote&gt;&ldquo; &lt;p&gt;&ldquo; Just use html blockquotes with paragraphs in the media field.&rdquo;&lt;/p&gt; &rdquo;&lt;/blockquote&gt;"
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1960",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://www.nytimes.com/",
+                "thumb": 	""
+            },
+            "text": {
+                "headline": "Website",
+                "text": "This is an example of a website. Just paste a link to the site in the media field."
+            }
+        },
+        {
+            "start_date": {
+                "year":			"1985",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "Zach Wise",
+                "url": "https://www.flickr.com/photos/zachwise/14514563402/"
+            },
+            "text": {
+                "headline": "Flickr",
+                "text": "To add a Flickr photo, just paste a link to the photo page in the media field. Example: https://www.flickr.com/photos/zachwise/14514563402/"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1987",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "Zach Wise",
+                "url": "http://www.flickr.com/photos/zachwise/7050589957/in/photostream/"
+            },
+            "text": {
+                "headline": "Flickr with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1995",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "text": {
+                "headline": "Instagram",
+                "text": "To add an Instagram photo, just paste a link to the photo page in the media field. Example: https://instagram.com/p/0nsIGKIbb7/"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1995",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://instagram.com/p/0n43jmuYkC/"
+            },
+            "text": {
+                "headline": "Instagram with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"2000",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://soundcloud.com/beastieboys/make-some-noise"
+            },
+            "text": {
+                "headline": "SoundCloud",
+                "text": "Just add a link to the track in the media field."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"2000",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+			"group": "Yo",
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://soundcloud.com/beastieboys/make-some-noise"
+            },
+            "text": {
+                "headline": "SoundCloud with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"2001",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": null,
+                "url": "https://vimeo.com/105602328"
+            },
+            "text": {
+                "headline": "Vimeo",
+                "text": "Just add a link to the video in the media field."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"2001",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": null,
+                "url": "https://vimeo.com/105602328"
+            },
+            "text": {
+                "headline": "Vimeo with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1956",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "spotify:track:1OT1G66Lt9EpKFWkwK8i9z"
+            },
+            "text": {
+                "headline": "Spotify Track URI",
+                "text": "Spotify Track URI"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1955",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "spotify:user:zachwise:playlist:3KqOUdFJXsEUC0DKudovj1"
+            },
+            "text": {
+                "headline": "Spotify Playlist URI",
+                "text": "Spotify Playlist URI"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1930",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://vine.co/v/bjHh0zHdgZT"
+            },
+            "text": {
+                "headline": "Vine",
+                "text": "Add a link to the Vine"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1944",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://storify.com/cmgnationalnews/last-minute-rumors-about-apple-s-new-iphone-6-iwat"
+            },
+            "text": {
+                "headline": "Storify",
+                "text": "Add a link to the Storify"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1957",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "http://open.spotify.com/user/zachwise/playlist/3KqOUdFJXsEUC0DKudovj1"
+            },
+            "text": {
+                "headline": "Spotify Playlist URL",
+                "text": "Spotify Playlist URL"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1958",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "http://open.spotify.com/track/1OT1G66Lt9EpKFWkwK8i9z"
+            },
+            "text": {
+                "headline": "Spotify Track URL",
+                "text": "Spotify Track URL"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1907",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://twitter.com/zlwise/status/502535723715923968"
+            },
+            "text": {
+                "headline": "Twitter",
+                "text": "Just add a link to the tweet"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1907",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://twitter.com/heathertal/status/581528844651331584"
+            },
+            "text": {
+                "headline": "Twitter",
+                "text": "Just add a link to the tweet"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1905",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1907",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "https://twitter.com/zlwise/status/502535723715923968"
+            },
+            "text": {
+                "headline": "Twitter with no text",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"2014",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Get started!",
+                "text": ""
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/examples/years.json b/public/opac/TimelineJS3-3.5.1/compiled/examples/years.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1f8265719671e18c165d0a93923e641a9a60ffe
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/examples/years.json
@@ -0,0 +1,69 @@
+{
+    "events": [
+        {
+            "start_date": {
+                "year":			"-5410"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Geologic_time_scale"
+            },
+            "text": {
+                "headline": "Geological Timeline Test",
+                "text": "Testing extreme dates for TimelineJS3"
+            },
+            "type": "overview"
+        },
+        {
+            "start_date": {
+                "year":			"-2520"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Triassic"
+            },
+            "text": {
+                "headline": "-2520",
+                "text": "Archosaurs dominant on land as dinosaurs, in the oceans as Ichthyosaurs and nothosaurs, and in the air as pterosaurs. Cynodonts become smaller and more mammal-like, while first mammals and crocodilia appear. Dicroidiumflora common on land. Many large aquatic temnospondyl amphibians. Ceratitic ammonoids extremely common. Modern corals and teleost fish appear, as do many modern insect clades. Andean Orogeny in South America. Cimmerian Orogeny in Asia. Rangitata Orogeny begins in New Zealand. Hunter-Bowen Orogeny in Northern Australia, Queensland and New South Wales ends, (c. 260–225 Ma)"
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"-2010"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Jurassic"
+            },
+            "text": {
+                "headline": "-2010",
+                "text": "Gymnosperms (especially conifers, Bennettitales and cycads) and ferns common. Many types of dinosaurs, such as sauropods, carnosaurs, and stegosaurs. Mammals common but small. First birds and lizards. Ichthyosaurs and plesiosaurs diverse. Bivalves, Ammonites and belemnites abundant. Sea urchins very common, along with crinoids, starfish, sponges, and terebratulid and rhynchonellid brachiopods. Breakup of Pangaea into Gondwana and Laurasia. Nevadan orogeny in North America. Rantigata and Cimmerian Orogenies taper off. Atmospheric CO2 levels 4–5 times the present day levels (1200–1500 ppmv, compared to today's 385 ppmv[27][28])."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"-1450"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Cretaceous"
+            },
+            "text": {
+                "headline": "-1450",
+                "text": "Flowering plants proliferate, along with new types of insects. More modern teleost fish begin to appear. Ammonoidea, belemnites, rudist bivalves, echinoids and sponges all common. Many new types of dinosaurs (e.g. Tyrannosaurs, Titanosaurs, duck bills, and horned dinosaurs) evolve on land, as do Eusuchia (modern crocodilians); and mosasaurs and modern sharks appear in the sea. Primitive birds gradually replace pterosaurs. Monotremes, marsupials and placental mammals appear. Break up of Gondwana. Beginning of Laramide and Sevier Orogenies of the Rocky Mountains. Atmospheric CO2 close to present-day levels."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"-258"
+            },
+            "media": {
+                "url": "http://en.wikipedia.org/wiki/Quaternary"
+            },
+            "text": {
+                "headline": "-258",
+                "text": "Flourishing and then extinction of many large mammals (Pleistocene megafauna). Evolution of anatomically modern humans. Quaternary Ice Age continues with glaciations and interstadials (and the accompanying fluctuations from 100 to 300 ppmv in atmospheric CO2 levels[27][28]), further intensification of Icehouse Earth conditions, roughly 1.6 Ma. Last glacial maximum (30000 years ago), last glacial period (18000–15000 years ago). Dawn of human stone-age cultures, with increasing technical complexity relative to previous ice age cultures, such as engravings and clay statues (e.g. Venus of Lespugue), particularly in the Mediterranean and Europe. Lake Toba supervolcano erupts 75000 years before present, causing a volcanic winter that pushes humanity to the brink of extinction. Pleistocene ends with Oldest Dryas, Older Dryas/Allerød and Younger Dryas climate events, with Younger Dryas forming the boundary with the Holocene."
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/library/moment.js b/public/opac/TimelineJS3-3.5.1/compiled/js/library/moment.js
new file mode 100644
index 0000000000000000000000000000000000000000..5412ef6abd8e09b9fb616cd6c3e114b6af20697a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/library/moment.js
@@ -0,0 +1,9 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+(function(e){function t(e,t,n){switch(arguments.length){case 2:return null!=e?e:t;case 3:return null!=e?e:null!=t?t:n;default:throw new Error("Implement me")}}function n(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function r(e,t){function n(){le.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+e)}var r=!0;return d(function(){return r&&(n(),r=!1),t.apply(this,arguments)},t)}function s(e,t){return function(n){return h(e.call(this,n),t)}}function a(e,t){return function(n){return this.lang().ordinal(e.call(this,n),t)}}function i(){}function o(e){b(e),d(this,e)}function u(e){var t=g(e),n=t.year||0,r=t.quarter||0,s=t.month||0,a=t.week||0,i=t.day||0,o=t.hour||0,u=t.minute||0,d=t.second||0,c=t.millisecond||0;this._milliseconds=+c+1e3*d+6e4*u+36e5*o,this._days=+i+7*a,this._months=+s+3*r+12*n,this._data={},this._bubble()}function d(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return t.hasOwnProperty("toString")&&(e.toString=t.toString),t.hasOwnProperty("valueOf")&&(e.valueOf=t.valueOf),e}function c(e){var t,n={};for(t in e)e.hasOwnProperty(t)&&Te.hasOwnProperty(t)&&(n[t]=e[t]);return n}function f(e){return e<0?Math.ceil(e):Math.floor(e)}function h(e,t,n){for(var r=""+Math.abs(e),s=e>=0;r.length<t;)r="0"+r;return(s?n?"+":"":"-")+r}function l(e,t,n,r){var s=t._milliseconds,a=t._days,i=t._months;r=null==r||r,s&&e._d.setTime(+e._d+s*n),a&&ue(e,"Date",oe(e,"Date")+a*n),i&&ie(e,oe(e,"Month")+i*n),r&&le.updateOffset(e,a||i)}function _(e){return"[object Array]"===Object.prototype.toString.call(e)}function m(e){return"[object Date]"===Object.prototype.toString.call(e)||e instanceof Date}function y(e,t,n){var r,s=Math.min(e.length,t.length),a=Math.abs(e.length-t.length),i=0;for(r=0;r<s;r++)(n&&e[r]!==t[r]||!n&&w(e[r])!==w(t[r]))&&i++;return i+a}function p(e){if(e){var t=e.toLowerCase().replace(/(.)s$/,"$1");e=nt[e]||rt[t]||t}return e}function g(e){var t,n,r={};for(n in e)e.hasOwnProperty(n)&&(t=p(n),t&&(r[t]=e[n]));return r}function Y(t){var n,r;if(0===t.indexOf("week"))n=7,r="day";else{if(0!==t.indexOf("month"))return;n=12,r="month"}le[t]=function(s,a){var i,o,u=le.fn._lang[t],d=[];if("number"==typeof s&&(a=s,s=e),o=function(e){var t=le().utc().set(r,e);return u.call(le.fn._lang,t,s||"")},null!=a)return o(a);for(i=0;i<n;i++)d.push(o(i));return d}}function w(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=t>=0?Math.floor(t):Math.ceil(t)),n}function M(e,t){return new Date(Date.UTC(e,t+1,0)).getUTCDate()}function D(e,t,n){return ne(le([e,11,31+t-n]),t,n).week}function v(e){return k(e)?366:365}function k(e){return e%4===0&&e%100!==0||e%400===0}function b(e){var t;e._a&&e._pf.overflow===-2&&(t=e._a[we]<0||e._a[we]>11?we:e._a[Me]<1||e._a[Me]>M(e._a[Ye],e._a[we])?Me:e._a[De]<0||e._a[De]>23?De:e._a[ve]<0||e._a[ve]>59?ve:e._a[ke]<0||e._a[ke]>59?ke:e._a[be]<0||e._a[be]>999?be:-1,e._pf._overflowDayOfYear&&(t<Ye||t>Me)&&(t=Me),e._pf.overflow=t)}function S(e){return null==e._isValid&&(e._isValid=!isNaN(e._d.getTime())&&e._pf.overflow<0&&!e._pf.empty&&!e._pf.invalidMonth&&!e._pf.nullInput&&!e._pf.invalidFormat&&!e._pf.userInvalidated,e._strict&&(e._isValid=e._isValid&&0===e._pf.charsLeftOver&&0===e._pf.unusedTokens.length)),e._isValid}function T(e){return e?e.toLowerCase().replace("_","-"):e}function O(e,t){return t._isUTC?le(e).zone(t._offset||0):le(e).local()}function W(e,t){return t.abbr=e,Se[e]||(Se[e]=new i),Se[e].set(t),Se[e]}function G(e){delete Se[e]}function F(e){var t,n,r,s,a=0,i=function(e){if(!Se[e]&&Oe)try{require("./lang/"+e)}catch(e){}return Se[e]};if(!e)return le.fn._lang;if(!_(e)){if(n=i(e))return n;e=[e]}for(;a<e.length;){for(s=T(e[a]).split("-"),t=s.length,r=T(e[a+1]),r=r?r.split("-"):null;t>0;){if(n=i(s.slice(0,t).join("-")))return n;if(r&&r.length>=t&&y(s,r,!0)>=t-1)break;t--}a++}return le.fn._lang}function C(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function P(e){var t,n,r=e.match(Ce);for(t=0,n=r.length;t<n;t++)ut[r[t]]?r[t]=ut[r[t]]:r[t]=C(r[t]);return function(s){var a="";for(t=0;t<n;t++)a+=r[t]instanceof Function?r[t].call(s,e):r[t];return a}}function U(e,t){return e.isValid()?(t=z(t,e.lang()),st[t]||(st[t]=P(t)),st[t](e)):e.lang().invalidDate()}function z(e,t){function n(e){return t.longDateFormat(e)||e}var r=5;for(Pe.lastIndex=0;r>=0&&Pe.test(e);)e=e.replace(Pe,n),Pe.lastIndex=0,r-=1;return e}function L(e,t){var n,r=t._strict;switch(e){case"Q":return je;case"DDDD":return qe;case"YYYY":case"GGGG":case"gggg":return r?$e:Le;case"Y":case"G":case"g":return Qe;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return r?Je:He;case"S":if(r)return je;case"SS":if(r)return Ve;case"SSS":if(r)return qe;case"DDD":return ze;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return xe;case"a":case"A":return F(t._l)._meridiemParse;case"X":return Ze;case"Z":case"ZZ":return Ae;case"T":return Ne;case"SSSS":return Ie;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return r?Ve:Ue;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Ue;case"Do":return Ee;default:return n=new RegExp(V(j(e.replace("\\","")),"i"))}}function H(e){e=e||"";var t=e.match(Ae)||[],n=t[t.length-1]||[],r=(n+"").match(et)||["-",0,0],s=+(60*r[1])+w(r[2]);return"+"===r[0]?-s:s}function I(e,t,n){var r,s=n._a;switch(e){case"Q":null!=t&&(s[we]=3*(w(t)-1));break;case"M":case"MM":null!=t&&(s[we]=w(t)-1);break;case"MMM":case"MMMM":r=F(n._l).monthsParse(t),null!=r?s[we]=r:n._pf.invalidMonth=t;break;case"D":case"DD":null!=t&&(s[Me]=w(t));break;case"Do":null!=t&&(s[Me]=w(parseInt(t,10)));break;case"DDD":case"DDDD":null!=t&&(n._dayOfYear=w(t));break;case"YY":s[Ye]=le.parseTwoDigitYear(t);break;case"YYYY":case"YYYYY":case"YYYYYY":s[Ye]=w(t);break;case"a":case"A":n._isPm=F(n._l).isPM(t);break;case"H":case"HH":case"h":case"hh":s[De]=w(t);break;case"m":case"mm":s[ve]=w(t);break;case"s":case"ss":s[ke]=w(t);break;case"S":case"SS":case"SSS":case"SSSS":s[be]=w(1e3*("0."+t));break;case"X":n._d=new Date(1e3*parseFloat(t));break;case"Z":case"ZZ":n._useUTC=!0,n._tzm=H(t);break;case"dd":case"ddd":case"dddd":r=F(n._l).weekdaysParse(t),null!=r?(n._w=n._w||{},n._w.d=r):n._pf.invalidWeekday=t;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":e=e.substr(0,1);case"gggg":case"GGGG":case"GGGGG":e=e.substr(0,2),t&&(n._w=n._w||{},n._w[e]=w(t));break;case"gg":case"GG":n._w=n._w||{},n._w[e]=le.parseTwoDigitYear(t)}}function x(e){var n,r,s,a,i,o,u,d;n=e._w,null!=n.GG||null!=n.W||null!=n.E?(i=1,o=4,r=t(n.GG,e._a[Ye],ne(le(),1,4).year),s=t(n.W,1),a=t(n.E,1)):(d=F(e._l),i=d._week.dow,o=d._week.doy,r=t(n.gg,e._a[Ye],ne(le(),i,o).year),s=t(n.w,1),null!=n.d?(a=n.d,a<i&&++s):a=null!=n.e?n.e+i:i),u=re(r,s,a,o,i),e._a[Ye]=u.year,e._dayOfYear=u.dayOfYear}function A(e){var n,r,s,a,i=[];if(!e._d){for(s=Z(e),e._w&&null==e._a[Me]&&null==e._a[we]&&x(e),e._dayOfYear&&(a=t(e._a[Ye],s[Ye]),e._dayOfYear>v(a)&&(e._pf._overflowDayOfYear=!0),r=B(a,0,e._dayOfYear),e._a[we]=r.getUTCMonth(),e._a[Me]=r.getUTCDate()),n=0;n<3&&null==e._a[n];++n)e._a[n]=i[n]=s[n];for(;n<7;n++)e._a[n]=i[n]=null==e._a[n]?2===n?1:0:e._a[n];e._d=(e._useUTC?B:R).apply(null,i),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()+e._tzm)}}function N(e){var t;e._d||(t=g(e._i),e._a=[t.year,t.month,t.day,t.hour,t.minute,t.second,t.millisecond],A(e))}function Z(e){var t=new Date;return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}function E(e){if(e._f===le.ISO_8601)return void J(e);e._a=[],e._pf.empty=!0;var t,n,r,s,a,i=F(e._l),o=""+e._i,u=o.length,d=0;for(r=z(e._f,i).match(Ce)||[],t=0;t<r.length;t++)s=r[t],n=(o.match(L(s,e))||[])[0],n&&(a=o.substr(0,o.indexOf(n)),a.length>0&&e._pf.unusedInput.push(a),o=o.slice(o.indexOf(n)+n.length),d+=n.length),ut[s]?(n?e._pf.empty=!1:e._pf.unusedTokens.push(s),I(s,n,e)):e._strict&&!n&&e._pf.unusedTokens.push(s);e._pf.charsLeftOver=u-d,o.length>0&&e._pf.unusedInput.push(o),e._isPm&&e._a[De]<12&&(e._a[De]+=12),e._isPm===!1&&12===e._a[De]&&(e._a[De]=0),A(e),b(e)}function j(e){return e.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,r,s){return t||n||r||s})}function V(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function q(e){var t,r,s,a,i;if(0===e._f.length)return e._pf.invalidFormat=!0,void(e._d=new Date(NaN));for(a=0;a<e._f.length;a++)i=0,t=d({},e),t._pf=n(),t._f=e._f[a],E(t),S(t)&&(i+=t._pf.charsLeftOver,i+=10*t._pf.unusedTokens.length,t._pf.score=i,(null==s||i<s)&&(s=i,r=t));d(e,r||t)}function J(e){var t,n,r=e._i,s=Xe.exec(r);if(s){for(e._pf.iso=!0,t=0,n=Be.length;t<n;t++)if(Be[t][1].exec(r)){e._f=Be[t][0]+(s[6]||" ");break}for(t=0,n=Ke.length;t<n;t++)if(Ke[t][1].exec(r)){e._f+=Ke[t][0];break}r.match(Ae)&&(e._f+="Z"),E(e)}else e._isValid=!1}function Q(e){J(e),e._isValid===!1&&(delete e._isValid,le.createFromInputFallback(e))}function X(t){var n=t._i,r=We.exec(n);n===e?t._d=new Date:r?t._d=new Date(+r[1]):"string"==typeof n?Q(t):_(n)?(t._a=n.slice(0),A(t)):m(n)?t._d=new Date(+n):"object"==typeof n?N(t):"number"==typeof n?t._d=new Date(n):le.createFromInputFallback(t)}function R(e,t,n,r,s,a,i){var o=new Date(e,t,n,r,s,a,i);return e<1970&&o.setFullYear(e),o}function B(e){var t=new Date(Date.UTC.apply(null,arguments));return e<1970&&t.setUTCFullYear(e),t}function K(e,t){if("string"==typeof e)if(isNaN(e)){if(e=t.weekdaysParse(e),"number"!=typeof e)return null}else e=parseInt(e,10);return e}function ee(e,t,n,r,s){return s.relativeTime(t||1,!!n,e,r)}function te(e,t,n){var r=ge(Math.abs(e)/1e3),s=ge(r/60),a=ge(s/60),i=ge(a/24),o=ge(i/365),u=r<at.s&&["s",r]||1===s&&["m"]||s<at.m&&["mm",s]||1===a&&["h"]||a<at.h&&["hh",a]||1===i&&["d"]||i<=at.dd&&["dd",i]||i<=at.dm&&["M"]||i<at.dy&&["MM",ge(i/30)]||1===o&&["y"]||["yy",o];return u[2]=t,u[3]=e>0,u[4]=n,ee.apply({},u)}function ne(e,t,n){var r,s=n-t,a=n-e.day();return a>s&&(a-=7),a<s-7&&(a+=7),r=le(e).add("d",a),{week:Math.ceil(r.dayOfYear()/7),year:r.year()}}function re(e,t,n,r,s){var a,i,o=B(e,0,1).getUTCDay();return o=0===o?7:o,n=null!=n?n:s,a=s-o+(o>r?7:0)-(o<s?7:0),i=7*(t-1)+(n-s)+a+1,{year:i>0?e:e-1,dayOfYear:i>0?i:v(e-1)+i}}function se(t){var n=t._i,r=t._f;return null===n||r===e&&""===n?le.invalid({nullInput:!0}):("string"==typeof n&&(t._i=n=F().preparse(n)),le.isMoment(n)?(t=c(n),t._d=new Date(+n._d)):r?_(r)?q(t):E(t):X(t),new o(t))}function ae(e,t){var n,r;if(1===t.length&&_(t[0])&&(t=t[0]),!t.length)return le();for(n=t[0],r=1;r<t.length;++r)t[r][e](n)&&(n=t[r]);return n}function ie(e,t){var n;return"string"==typeof t&&(t=e.lang().monthsParse(t),"number"!=typeof t)?e:(n=Math.min(e.date(),M(e.year(),t)),e._d["set"+(e._isUTC?"UTC":"")+"Month"](t,n),e)}function oe(e,t){return e._d["get"+(e._isUTC?"UTC":"")+t]()}function ue(e,t,n){return"Month"===t?ie(e,n):e._d["set"+(e._isUTC?"UTC":"")+t](n)}function de(e,t){return function(n){return null!=n?(ue(this,e,n),le.updateOffset(this,t),this):oe(this,e)}}function ce(e){le.duration.fn[e]=function(){return this._data[e]}}function fe(e,t){le.duration.fn["as"+e]=function(){return+this/t}}function he(e){"undefined"==typeof ender&&(_e=pe.moment,e?pe.moment=r("Accessing Moment through the global scope is deprecated, and will be removed in an upcoming release.",le):pe.moment=le)}for(var le,_e,me,ye="2.7.0",pe="undefined"!=typeof global?global:this,ge=Math.round,Ye=0,we=1,Me=2,De=3,ve=4,ke=5,be=6,Se={},Te={_isAMomentObject:null,_i:null,_f:null,_l:null,_strict:null,_tzm:null,_isUTC:null,_offset:null,_pf:null,_lang:null},Oe="undefined"!=typeof module&&module.exports,We=/^\/?Date\((\-?\d+)/i,Ge=/(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/,Fe=/^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/,Ce=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|X|zz?|ZZ?|.)/g,Pe=/(\[[^\[]*\])|(\\)?(LT|LL?L?L?|l{1,4})/g,Ue=/\d\d?/,ze=/\d{1,3}/,Le=/\d{1,4}/,He=/[+\-]?\d{1,6}/,Ie=/\d+/,xe=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,Ae=/Z|[\+\-]\d\d:?\d\d/gi,Ne=/T/i,Ze=/[\+\-]?\d+(\.\d{1,3})?/,Ee=/\d{1,2}/,je=/\d/,Ve=/\d\d/,qe=/\d{3}/,$e=/\d{4}/,Je=/[+-]?\d{6}/,Qe=/[+-]?\d+/,Xe=/^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Re="YYYY-MM-DDTHH:mm:ssZ",Be=[["YYYYYY-MM-DD",/[+-]\d{6}-\d{2}-\d{2}/],["YYYY-MM-DD",/\d{4}-\d{2}-\d{2}/],["GGGG-[W]WW-E",/\d{4}-W\d{2}-\d/],["GGGG-[W]WW",/\d{4}-W\d{2}/],["YYYY-DDD",/\d{4}-\d{3}/]],Ke=[["HH:mm:ss.SSSS",/(T| )\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss",/(T| )\d\d:\d\d:\d\d/],["HH:mm",/(T| )\d\d:\d\d/],["HH",/(T| )\d\d/]],et=/([\+\-]|\d\d)/gi,tt=("Date|Hours|Minutes|Seconds|Milliseconds".split("|"),{Milliseconds:1,Seconds:1e3,Minutes:6e4,Hours:36e5,Days:864e5,Months:2592e6,Years:31536e6}),nt={ms:"millisecond",s:"second",m:"minute",h:"hour",d:"day",D:"date",w:"week",W:"isoWeek",M:"month",Q:"quarter",y:"year",DDD:"dayOfYear",e:"weekday",E:"isoWeekday",gg:"weekYear",GG:"isoWeekYear"},rt={dayofyear:"dayOfYear",isoweekday:"isoWeekday",isoweek:"isoWeek",weekyear:"weekYear",isoweekyear:"isoWeekYear"},st={},at={s:45,m:45,h:22,dd:25,dm:45,dy:345},it="DDD w W M D d".split(" "),ot="M D H h m s w W".split(" "),ut={M:function(){return this.month()+1},MMM:function(e){return this.lang().monthsShort(this,e)},MMMM:function(e){return this.lang().months(this,e)},D:function(){return this.date()},DDD:function(){return this.dayOfYear()},d:function(){return this.day()},dd:function(e){return this.lang().weekdaysMin(this,e)},ddd:function(e){return this.lang().weekdaysShort(this,e)},dddd:function(e){return this.lang().weekdays(this,e)},w:function(){return this.week()},W:function(){return this.isoWeek()},YY:function(){return h(this.year()%100,2)},YYYY:function(){return h(this.year(),4)},YYYYY:function(){return h(this.year(),5)},YYYYYY:function(){var e=this.year(),t=e>=0?"+":"-";return t+h(Math.abs(e),6)},gg:function(){return h(this.weekYear()%100,2)},gggg:function(){return h(this.weekYear(),4)},ggggg:function(){return h(this.weekYear(),5)},GG:function(){return h(this.isoWeekYear()%100,2)},GGGG:function(){return h(this.isoWeekYear(),4)},GGGGG:function(){return h(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.lang().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.lang().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return w(this.milliseconds()/100)},SS:function(){return h(w(this.milliseconds()/10),2)},SSS:function(){return h(this.milliseconds(),3)},SSSS:function(){return h(this.milliseconds(),3)},Z:function(){var e=-this.zone(),t="+";return e<0&&(e=-e,t="-"),t+h(w(e/60),2)+":"+h(w(e)%60,2)},ZZ:function(){var e=-this.zone(),t="+";return e<0&&(e=-e,t="-"),t+h(w(e/60),2)+h(w(e)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},dt=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];it.length;)me=it.pop(),ut[me+"o"]=a(ut[me],me);for(;ot.length;)me=ot.pop(),ut[me+me]=s(ut[me],2);for(ut.DDDD=s(ut.DDD,3),d(i.prototype,{set:function(e){var t,n;for(n in e)t=e[n],"function"==typeof t?this[n]=t:this["_"+n]=t},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(e){return this._months[e.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(e){return this._monthsShort[e.month()]},monthsParse:function(e){var t,n,r;for(this._monthsParse||(this._monthsParse=[]),t=0;t<12;t++)if(this._monthsParse[t]||(n=le.utc([2e3,t]),r="^"+this.months(n,"")+"|^"+this.monthsShort(n,""),this._monthsParse[t]=new RegExp(r.replace(".",""),"i")),this._monthsParse[t].test(e))return t},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(e){return this._weekdays[e.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(e){return this._weekdaysShort[e.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(e){return this._weekdaysMin[e.day()]},weekdaysParse:function(e){var t,n,r;for(this._weekdaysParse||(this._weekdaysParse=[]),t=0;t<7;t++)if(this._weekdaysParse[t]||(n=le([2e3,1]).day(t),r="^"+this.weekdays(n,"")+"|^"+this.weekdaysShort(n,"")+"|^"+this.weekdaysMin(n,""),this._weekdaysParse[t]=new RegExp(r.replace(".",""),"i")),this._weekdaysParse[t].test(e))return t},_longDateFormat:{LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D YYYY",LLL:"MMMM D YYYY LT",LLLL:"dddd, MMMM D YYYY LT"},longDateFormat:function(e){var t=this._longDateFormat[e];return!t&&this._longDateFormat[e.toUpperCase()]&&(t=this._longDateFormat[e.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e]=t),t},isPM:function(e){return"p"===(e+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(e,t){var n=this._calendar[e];return"function"==typeof n?n.apply(t):n},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(e,t,n,r){var s=this._relativeTime[n];return"function"==typeof s?s(e,t,n,r):s.replace(/%d/i,e)},pastFuture:function(e,t){var n=this._relativeTime[e>0?"future":"past"];return"function"==typeof n?n(t):n.replace(/%s/i,t)},ordinal:function(e){return this._ordinal.replace("%d",e)},_ordinal:"%d",preparse:function(e){return e},postformat:function(e){return e},week:function(e){return ne(e,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),le=function(t,r,s,a){var i;return"boolean"==typeof s&&(a=s,s=e),i={},i._isAMomentObject=!0,i._i=t,i._f=r,i._l=s,i._strict=a,i._isUTC=!1,i._pf=n(),se(i)},le.suppressDeprecationWarnings=!1,le.createFromInputFallback=r("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(e){e._d=new Date(e._i)}),le.min=function(){var e=[].slice.call(arguments,0);return ae("isBefore",e)},le.max=function(){var e=[].slice.call(arguments,0);return ae("isAfter",e)},le.utc=function(t,r,s,a){var i;return"boolean"==typeof s&&(a=s,s=e),i={},i._isAMomentObject=!0,i._useUTC=!0,i._isUTC=!0,i._l=s,i._i=t,i._f=r,i._strict=a,i._pf=n(),se(i).utc()},le.unix=function(e){return le(1e3*e)},le.duration=function(e,t){var n,r,s,a=e,i=null;return le.isDuration(e)?a={ms:e._milliseconds,d:e._days,M:e._months}:"number"==typeof e?(a={},t?a[t]=e:a.milliseconds=e):(i=Ge.exec(e))?(n="-"===i[1]?-1:1,a={y:0,d:w(i[Me])*n,h:w(i[De])*n,m:w(i[ve])*n,s:w(i[ke])*n,ms:w(i[be])*n}):(i=Fe.exec(e))&&(n="-"===i[1]?-1:1,s=function(e){var t=e&&parseFloat(e.replace(",","."));return(isNaN(t)?0:t)*n},a={y:s(i[2]),M:s(i[3]),d:s(i[4]),h:s(i[5]),m:s(i[6]),s:s(i[7]),w:s(i[8])}),r=new u(a),le.isDuration(e)&&e.hasOwnProperty("_lang")&&(r._lang=e._lang),r},le.version=ye,le.defaultFormat=Re,le.ISO_8601=function(){},le.momentProperties=Te,le.updateOffset=function(){},le.relativeTimeThreshold=function(t,n){return at[t]!==e&&(at[t]=n,!0)},le.lang=function(e,t){var n;return e?(t?W(T(e),t):null===t?(G(e),e="en"):Se[e]||F(e),n=le.duration.fn._lang=le.fn._lang=F(e),n._abbr):le.fn._lang._abbr},le.langData=function(e){return e&&e._lang&&e._lang._abbr&&(e=e._lang._abbr),F(e)},le.isMoment=function(e){return e instanceof o||null!=e&&e.hasOwnProperty("_isAMomentObject")},le.isDuration=function(e){return e instanceof u},me=dt.length-1;me>=0;--me)Y(dt[me]);le.normalizeUnits=function(e){return p(e)},le.invalid=function(e){var t=le.utc(NaN);return null!=e?d(t._pf,e):t._pf.userInvalidated=!0,t},le.parseZone=function(){return le.apply(null,arguments).parseZone()},le.parseTwoDigitYear=function(e){return w(e)+(w(e)>68?1900:2e3)},d(le.fn=o.prototype,{clone:function(){return le(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().lang("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var e=le(this).utc();return 0<e.year()&&e.year()<=9999?U(e,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):U(e,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")},toArray:function(){var e=this;return[e.year(),e.month(),e.date(),e.hours(),e.minutes(),e.seconds(),e.milliseconds()]},isValid:function(){return S(this)},isDSTShifted:function(){return!!this._a&&(this.isValid()&&y(this._a,(this._isUTC?le.utc(this._a):le(this._a)).toArray())>0)},parsingFlags:function(){return d({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(){return this.zone(0)},local:function(){return this.zone(0),this._isUTC=!1,this},format:function(e){var t=U(this,e||le.defaultFormat);return this.lang().postformat(t)},add:function(e,t){var n;return n="string"==typeof e&&"string"==typeof t?le.duration(isNaN(+t)?+e:+t,isNaN(+t)?t:e):"string"==typeof e?le.duration(+t,e):le.duration(e,t),l(this,n,1),this},subtract:function(e,t){var n;return n="string"==typeof e&&"string"==typeof t?le.duration(isNaN(+t)?+e:+t,isNaN(+t)?t:e):"string"==typeof e?le.duration(+t,e):le.duration(e,t),l(this,n,-1),this},diff:function(e,t,n){var r,s,a=O(e,this),i=6e4*(this.zone()-a.zone());return t=p(t),"year"===t||"month"===t?(r=432e5*(this.daysInMonth()+a.daysInMonth()),s=12*(this.year()-a.year())+(this.month()-a.month()),s+=(this-le(this).startOf("month")-(a-le(a).startOf("month")))/r,s-=6e4*(this.zone()-le(this).startOf("month").zone()-(a.zone()-le(a).startOf("month").zone()))/r,"year"===t&&(s/=12)):(r=this-a,s="second"===t?r/1e3:"minute"===t?r/6e4:"hour"===t?r/36e5:"day"===t?(r-i)/864e5:"week"===t?(r-i)/6048e5:r),n?s:f(s)},from:function(e,t){return le.duration(this.diff(e)).lang(this.lang()._abbr).humanize(!t)},fromNow:function(e){return this.from(le(),e)},calendar:function(e){var t=e||le(),n=O(t,this).startOf("day"),r=this.diff(n,"days",!0),s=r<-6?"sameElse":r<-1?"lastWeek":r<0?"lastDay":r<1?"sameDay":r<2?"nextDay":r<7?"nextWeek":"sameElse";return this.format(this.lang().calendar(s,this))},isLeapYear:function(){return k(this.year())},isDST:function(){return this.zone()<this.clone().month(0).zone()||this.zone()<this.clone().month(5).zone()},day:function(e){var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=K(e,this.lang()),this.add({d:e-t})):t},month:de("Month",!0),startOf:function(e){switch(e=p(e)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===e?this.weekday(0):"isoWeek"===e&&this.isoWeekday(1),"quarter"===e&&this.month(3*Math.floor(this.month()/3)),this},endOf:function(e){return e=p(e),this.startOf(e).add("isoWeek"===e?"week":e,1).subtract("ms",1)},isAfter:function(e,t){return t="undefined"!=typeof t?t:"millisecond",+this.clone().startOf(t)>+le(e).startOf(t)},isBefore:function(e,t){return t="undefined"!=typeof t?t:"millisecond",+this.clone().startOf(t)<+le(e).startOf(t)},isSame:function(e,t){return t=t||"ms",+this.clone().startOf(t)===+O(e,this).startOf(t)},min:r("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(e){return e=le.apply(null,arguments),e<this?this:e}),max:r("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(e){return e=le.apply(null,arguments),e>this?this:e}),zone:function(e,t){var n=this._offset||0;return null==e?this._isUTC?n:this._d.getTimezoneOffset():("string"==typeof e&&(e=H(e)),Math.abs(e)<16&&(e=60*e),this._offset=e,this._isUTC=!0,n!==e&&(!t||this._changeInProgress?l(this,le.duration(n-e,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,le.updateOffset(this,!0),this._changeInProgress=null)),this)},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.zone(this._tzm):"string"==typeof this._i&&this.zone(this._i),this},hasAlignedHourOffset:function(e){return e=e?le(e).zone():0,(this.zone()-e)%60===0},daysInMonth:function(){return M(this.year(),this.month())},dayOfYear:function(e){var t=ge((le(this).startOf("day")-le(this).startOf("year"))/864e5)+1;return null==e?t:this.add("d",e-t)},quarter:function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},weekYear:function(e){var t=ne(this,this.lang()._week.dow,this.lang()._week.doy).year;return null==e?t:this.add("y",e-t)},isoWeekYear:function(e){var t=ne(this,1,4).year;return null==e?t:this.add("y",e-t)},week:function(e){var t=this.lang().week(this);return null==e?t:this.add("d",7*(e-t))},isoWeek:function(e){var t=ne(this,1,4).week;return null==e?t:this.add("d",7*(e-t))},weekday:function(e){var t=(this.day()+7-this.lang()._week.dow)%7;return null==e?t:this.add("d",e-t)},isoWeekday:function(e){return null==e?this.day()||7:this.day(this.day()%7?e:e-7)},isoWeeksInYear:function(){return D(this.year(),1,4)},weeksInYear:function(){var e=this._lang._week;return D(this.year(),e.dow,e.doy)},get:function(e){return e=p(e),this[e]()},set:function(e,t){return e=p(e),"function"==typeof this[e]&&this[e](t),this},lang:function(t){return t===e?this._lang:(this._lang=F(t),this)}}),le.fn.millisecond=le.fn.milliseconds=de("Milliseconds",!1),le.fn.second=le.fn.seconds=de("Seconds",!1),le.fn.minute=le.fn.minutes=de("Minutes",!1),le.fn.hour=le.fn.hours=de("Hours",!0),le.fn.date=de("Date",!0),le.fn.dates=r("dates accessor is deprecated. Use date instead.",de("Date",!0)),le.fn.year=de("FullYear",!0),le.fn.years=r("years accessor is deprecated. Use year instead.",de("FullYear",!0)),le.fn.days=le.fn.day,le.fn.months=le.fn.month,le.fn.weeks=le.fn.week,le.fn.isoWeeks=le.fn.isoWeek,le.fn.quarters=le.fn.quarter,le.fn.toJSON=le.fn.toISOString,d(le.duration.fn=u.prototype,{_bubble:function(){var e,t,n,r,s=this._milliseconds,a=this._days,i=this._months,o=this._data;o.milliseconds=s%1e3,e=f(s/1e3),o.seconds=e%60,t=f(e/60),o.minutes=t%60,n=f(t/60),o.hours=n%24,a+=f(n/24),o.days=a%30,i+=f(a/30),o.months=i%12,r=f(i/12),o.years=r},weeks:function(){return f(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*w(this._months/12)},humanize:function(e){var t=+this,n=te(t,!e,this.lang());return e&&(n=this.lang().pastFuture(t,n)),this.lang().postformat(n)},add:function(e,t){var n=le.duration(e,t);return this._milliseconds+=n._milliseconds,this._days+=n._days,this._months+=n._months,this._bubble(),this},subtract:function(e,t){var n=le.duration(e,t);return this._milliseconds-=n._milliseconds,this._days-=n._days,this._months-=n._months,this._bubble(),this},get:function(e){return e=p(e),this[e.toLowerCase()+"s"]()},as:function(e){return e=p(e),this["as"+e.charAt(0).toUpperCase()+e.slice(1)+"s"]()},lang:le.fn.lang,toIsoString:function(){var e=Math.abs(this.years()),t=Math.abs(this.months()),n=Math.abs(this.days()),r=Math.abs(this.hours()),s=Math.abs(this.minutes()),a=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(e?e+"Y":"")+(t?t+"M":"")+(n?n+"D":"")+(r||s||a?"T":"")+(r?r+"H":"")+(s?s+"M":"")+(a?a+"S":""):"P0D"}});for(me in tt)tt.hasOwnProperty(me)&&(fe(me,tt[me]),ce(me.toLowerCase()));fe("Weeks",6048e5),le.duration.fn.asMonths=function(){return(+this-31536e6*this.years())/2592e6+12*this.years()},le.lang("en",{ordinal:function(e){var t=e%10,n=1===w(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n}}),Oe?module.exports=le:"function"==typeof define&&define.amd?(define("moment",function(e,t,n){return n.config&&n.config()&&n.config().noGlobal===!0&&(pe.moment=_e),le}),he(!0)):he()}).call(this);
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/af.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/af.json
new file mode 100644
index 0000000000000000000000000000000000000000..561190cbe1fe62265cc45974247952b3ca33864e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/af.json
@@ -0,0 +1,75 @@
+{
+    "lang": "af", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Maart", 
+            "April", 
+            "Mei", 
+            "Junei", 
+            "Julie", 
+            "Aug.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Des."
+        ], 
+        "day_abbr": [
+            "Son.", 
+            "Maan.", 
+            "Dins.", 
+            "Woen.", 
+            "Don.", 
+            "Vry.", 
+            "Sat."
+        ], 
+        "day": [
+            "Sondag", 
+            "Maandag", 
+            "Dinsdag", 
+            "Woensdag", 
+            "Donderdag", 
+            "Vrydag", 
+            "Saterdag"
+        ], 
+        "month": [
+            "Januarie", 
+            "Februarie", 
+            "Maart", 
+            "April", 
+            "Mei", 
+            "Junie", 
+            "Julie", 
+            "Augustus", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "af"
+    }, 
+    "messages": {
+        "loading": "Aan't laai", 
+        "contract_timeline": "Krimp die tydlyn", 
+        "return_to_title": "Begin voor", 
+        "wikipedia": "Van Wikipedia, die gratis ensiklopedie", 
+        "loading_content": "Die inhoud laai", 
+        "expand_timeline": "Rek die tydlyn", 
+        "loading_timeline": "Die tydlyn laai... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'om' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ar.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ar.json
new file mode 100644
index 0000000000000000000000000000000000000000..4d4352ae7d031ae71958f09588bc9388ee4ff6a9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ar.json
@@ -0,0 +1,76 @@
+{
+    "lang": "ar", 
+    "direction": "rtl",
+    "messages": {
+        "loading": "تحميل", 
+        "contract_timeline": "الاتفاقية", 
+        "return_to_title": "العودة", 
+        "wikipedia": "من ويكيبيديا, الموسوعة الحرة", 
+        "loading_content": "تحميل المحتوى", 
+        "expand_timeline": "تكبير العرض", 
+        "loading_timeline": "جاري التحميل... "
+    }, 
+    "api": {
+        "wikipedia": "ar"
+    }, 
+    "date": {
+        "month_abbr": [
+            "كانون الثاني", 
+            "شباط", 
+            "آذار", 
+            "نيسان", 
+            "أيار", 
+            "حزيران", 
+            "تموز", 
+            "آب", 
+            "أيلول", 
+            "تشرين الأول", 
+            "تشرين الثاني", 
+            "كانون الأول"
+        ], 
+        "day_abbr": [
+            "الأحد", 
+            "الإثنين", 
+            "الثلاثاء", 
+            "الأربعاء", 
+            "الخميس", 
+            "الجمعة", 
+            "السبت"
+        ], 
+        "day": [
+            "الأحد", 
+            "الإثنين", 
+            "الثلاثاء", 
+            "الأربعاء", 
+            "الخميس", 
+            "الجمعة", 
+            "السبت"
+        ], 
+        "month": [
+            "كانون الثاني", 
+            "شباط", 
+            "آذار", 
+            "نيسان", 
+            "أيار", 
+            "حزيران", 
+            "تموز", 
+            "آب", 
+            "أيلول", 
+            "تشرين الأول", 
+            "تشرين الثاني", 
+            "كانون الأول"
+        ]
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/be.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/be.json
new file mode 100644
index 0000000000000000000000000000000000000000..a192e23dafb7ffc521a477087f79dbddb033f02d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/be.json
@@ -0,0 +1,75 @@
+{
+  "lang": "be", 
+  "date": {
+    "month_abbr": [
+      "стд", 
+      "лют", 
+      "скв", 
+      "крс", 
+      "май", 
+      "чрв", 
+      "лпн", 
+      "жнв", 
+      "врс", 
+      "кст", 
+      "лст", 
+      "снж"
+    ], 
+    "day_abbr": [
+      "Нд.", 
+      "Пн.", 
+      "Аўт.", 
+      "Ср.", 
+      "Чц.", 
+      "Пт.", 
+      "Сб."
+    ], 
+    "day": [
+      "нядзеля", 
+      "панядзелак", 
+      "аўторак", 
+      "серада", 
+      "чацвер", 
+      "пятніца", 
+      "субота"
+    ], 
+    "month": [
+      "студзень", 
+      "люты", 
+      "сакавік", 
+      "красавік", 
+      "май", 
+      "чэрвень", 
+      "ліпень", 
+      "жнівень", 
+      "верасень", 
+      "кастрычнік", 
+      "лістапад", 
+      "снежань"
+    ]
+  }, 
+  "api": {
+    "wikipedia": "be"
+  }, 
+  "messages": {
+    "loading": "Загрузка", 
+    "contract_timeline": "Аддаліць лінію часу", 
+    "return_to_title": "Вярнуцца ў пачатак", 
+    "wikipedia": "З Вікіпедыі, свабоднай энцыклапедыі", 
+    "loading_content": "Загрузка зместу", 
+    "expand_timeline": "Наблізіць лінію часу", 
+    "loading_timeline": "Загрузка лініі часу... "
+  }, 
+  "dateformats": {
+    "full_long": "d mmm yyyy 'at' h:MM TT", 
+    "full_short": "d mmm", 
+    "full": "d mmmm yyyy", 
+    "time_short": "h:MM:ss TT", 
+    "year": "yyyy", 
+    "time_no_seconds_short": "h:MM TT", 
+    "month_short": "mmm", 
+    "full_long_small_date": "h:MM TT'<br/><small>d mmm yyyy'</small>'", 
+    "time_no_seconds_small_date": "h:MM TT'<br/><small>'d mmmm yyyy'</small>'", 
+    "month": "mmmm yyyy"
+  }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/bg.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/bg.json
new file mode 100644
index 0000000000000000000000000000000000000000..c66dc659eb1869074d7dbcd7613162caa81613ce
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/bg.json
@@ -0,0 +1,75 @@
+{
+    "lang": "bg", 
+    "date": {
+        "month_abbr": [
+            "Ян.", 
+            "Фев.", 
+            "Март", 
+            "Апр.", 
+            "Май", 
+            "Юни", 
+            "Юли", 
+            "Авг.", 
+            "Септ.", 
+            "Окт.", 
+            "Ноем.", 
+            "Дек."
+        ], 
+        "day_abbr": [
+            "Нед.", 
+            "Пон.", 
+            "Ð’Ñ‚.", 
+            "Ср.", 
+            "Четв.", 
+            "Пет.", 
+            "Съб."
+        ], 
+        "day": [
+            "Неделя", 
+            "Понеделник", 
+            "Вторник", 
+            "Сряда", 
+            "Четвъртък", 
+            "Петък", 
+            "Събота"
+        ], 
+        "month": [
+            "Януари", 
+            "Февруари", 
+            "Март", 
+            "Април", 
+            "Май", 
+            "Юни", 
+            "Юли", 
+            "Август", 
+            "Септември", 
+            "Октомври", 
+            "Ноември", 
+            "Декември"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "bg"
+    }, 
+    "messages": {
+        "loading": "Зарежда се", 
+        "contract_timeline": "Свиване", 
+        "return_to_title": "В началото", 
+        "wikipedia": "От Уикипедия, свободната енциклопедия", 
+        "loading_content": "Съдържанието се зарежда", 
+        "expand_timeline": "Разширяване", 
+        "loading_timeline": "Зареждане... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm yyyy 'at' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ca.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ca.json
new file mode 100644
index 0000000000000000000000000000000000000000..53078b317c291ab0f921bd6079c9ef44dc5f5b13
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ca.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ca", 
+    "date": {
+        "month_abbr": [
+            "Gen", 
+            "Feb", 
+            "Mar", 
+            "Abr", 
+            "Mai", 
+            "Jun", 
+            "Jul", 
+            "Ago", 
+            "Set", 
+            "Oct", 
+            "Nov", 
+            "Des"
+        ], 
+        "day_abbr": [
+            "Dg.", 
+            "Dl.", 
+            "Dt.", 
+            "Dc.", 
+            "Dj.", 
+            "Dv.", 
+            "Ds."
+        ], 
+        "day": [
+            "Diumenge", 
+            "Dilluns", 
+            "Dimarts", 
+            "Dimecres", 
+            "Dijous", 
+            "Divendres", 
+            "Dissabte"
+        ], 
+        "month": [
+            "Gener", 
+            "Febrer", 
+            "Març", 
+            "Abril", 
+            "Maig", 
+            "Juny", 
+            "Juliol", 
+            "Agost", 
+            "Setembre", 
+            "Octubre", 
+            "Novembre", 
+            "Desembre"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ca"
+    }, 
+    "messages": {
+        "loading": "Carregant", 
+        "contract_timeline": "Reduir la cronologia", 
+        "return_to_title": "Tornar al títol", 
+        "wikipedia": "Des de Wikipedia, l'enciclopèdia lliure", 
+        "loading_content": "Carregant contingut", 
+        "expand_timeline": "Ampliar la cronologia", 
+        "loading_timeline": "Carregant cronologia..."
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "'<small>'d mmmm yyyy'</small>' HH:MM", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/cz.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/cz.json
new file mode 100644
index 0000000000000000000000000000000000000000..efe32b815a0f06c760a761f47a205fc020594a60
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/cz.json
@@ -0,0 +1,75 @@
+{
+    "lang": "cz", 
+    "date": {
+        "month_abbr": [
+            "Led", 
+            "Úno", 
+            "Bře", 
+            "Dub", 
+            "KvÄ›", 
+            "ÄŒen", 
+            "ÄŒec", 
+            "Srp", 
+            "Zář", 
+            "Říj", 
+            "Lis", 
+            "Pro"
+        ], 
+        "day_abbr": [
+            "Ne", 
+            "Po", 
+            "Út", 
+            "St", 
+            "ÄŒt", 
+            "Pá", 
+            "So"
+        ], 
+        "day": [
+            "neděle", 
+            "pondělí", 
+            "úterý", 
+            "středa", 
+            "čtvrtek", 
+            "pátek", 
+            "sobota"
+        ], 
+        "month": [
+            "ledna", 
+            "února", 
+            "března", 
+            "dubna", 
+            "května", 
+            "června", 
+            "července", 
+            "srpna", 
+            "září", 
+            "října", 
+            "listopadu", 
+            "prosince"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "cs"
+    }, 
+    "messages": {
+        "loading": "Nahrávám", 
+        "contract_timeline": "Sbalit časovou osu", 
+        "return_to_title": "Zpět na začátek", 
+        "wikipedia": "Zdroj: otevřená encyklopedie Wikipedia", 
+        "loading_content": "Nahrávám obsah", 
+        "expand_timeline": "Rozbalit časovou osu", 
+        "loading_timeline": "Načítám časovou osu... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd d. mmm yyyy 'v' HH:MM", 
+        "full_short": "d. mmm ", 
+        "full": "d. mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>dddd d. mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/da.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/da.json
new file mode 100644
index 0000000000000000000000000000000000000000..cf912b6c1664652fc5d6290552f663a256a4fb49
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/da.json
@@ -0,0 +1,75 @@
+{
+    "lang": "da", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "feb.", 
+            "mar.", 
+            "apr.", 
+            "maj.", 
+            "jun.", 
+            "jul.", 
+            "aug.", 
+            "sep.", 
+            "okt.", 
+            "nov.", 
+            "dec."
+        ], 
+        "day_abbr": [
+            "sø.", 
+            "ma.", 
+            "ti.", 
+            "on.", 
+            "to.", 
+            "fr.", 
+            "lø."
+        ], 
+        "day": [
+            "søndag", 
+            "mandag", 
+            "tirsdag", 
+            "onsdag", 
+            "torsdag", 
+            "fredag", 
+            "lørdag"
+        ], 
+        "month": [
+            "januar", 
+            "februar", 
+            "marts", 
+            "april", 
+            "maj", 
+            "juni", 
+            "juli", 
+            "august", 
+            "september", 
+            "oktober", 
+            "november", 
+            "december"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "da"
+    }, 
+    "messages": {
+        "loading": "Henter", 
+        "contract_timeline": "Træk tidslinien sammen", 
+        "return_to_title": "Tilbage til titel", 
+        "wikipedia": "Fra Wikipedia", 
+        "loading_content": "Henter indhold", 
+        "expand_timeline": "Udvid tidslinien", 
+        "loading_timeline": "Henter tidslinie..."
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d. mmm',' yyyy 'um' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d. mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/de.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/de.json
new file mode 100644
index 0000000000000000000000000000000000000000..2af03670b7261d14dea8226ece83f39bfe66e790
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/de.json
@@ -0,0 +1,76 @@
+{
+    "lang": "de",
+    "date": {
+        "month_abbr": [
+            "Jan.",
+            "Feb.",
+            "März",
+            "Apr.",
+            "Mai",
+            "Juni",
+            "Juli",
+            "Aug.",
+            "Sept.",
+            "Okt.",
+            "Nov.",
+            "Dez."
+        ],
+        "day_abbr": [
+            "So.",
+            "Mo.",
+            "Di.",
+            "Mi.",
+            "Do.",
+            "Fr.",
+            "Sa."
+        ],
+        "day": [
+            "Sonntag",
+            "Montag",
+            "Dienstag",
+            "Mittwoch",
+            "Donnerstag",
+            "Freitag",
+            "Samstag"
+        ],
+        "month": [
+            "Januar",
+            "Februar",
+            "März",
+            "April",
+            "Mai",
+            "Juni",
+            "Juli",
+            "August",
+            "September",
+            "Oktober",
+            "November",
+            "Dezember"
+        ]
+    },
+    "api": {
+        "wikipedia": "de"
+    },
+    "messages": {
+        "loading": "Loading",
+        "contract_timeline": "Chronologie verkleinern",
+        "return_to_title": "Zurück zum Anfang",
+        "wikipedia": "Wikipedia, Die freie Enzyklopädie",
+        "loading_content": "Loading",
+        "swipe_to_navigate": "Streichen um zu navigieren<br><span class='tl-button'>OK</span>",
+        "expand_timeline": "Chronologie vergrößern", 
+        "loading_timeline": "Chronologie wird geladen..."
+    },
+    "dateformats": {
+        "full_long": "dddd',' d. mmm yyyy 'um' HH:MM",
+        "full_short": "d. mmm",
+        "full": "d. mmmm yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "HH:MM",
+        "time_short": "HH:MM:ss",
+        "year": "yyyy",
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d. mmm yyyy'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/el.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/el.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ad0e65671dbe37c299633422547bfb53d88d65a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/el.json
@@ -0,0 +1,75 @@
+{
+    "lang": "en", 
+    "date": {
+        "month_abbr": [
+            "Ιαν.", 
+            "Φεβ.", 
+            "Μαρ.", 
+            "Απρ.", 
+            "Μαη", 
+            "Ιουν.", 
+            "Ιουλ.", 
+            "Αύγ.", 
+            "Σεπτ.", 
+            "Οκτ.", 
+            "Νοεμ.", 
+            "Δεκ."
+        ], 
+        "day_abbr": [
+            "Κυρ.", 
+            "Δευ.", 
+            "Τρίτη.", 
+            "Τετ.", 
+            "Πεμπ.", 
+            "Παρ.", 
+            "Σαβ."
+        ], 
+        "day": [
+            "Κυριακή", 
+            "Δευτέρα", 
+            "Τρίτη", 
+            "Τετάρτη", 
+            "Πέμπτη", 
+            "Παρασκευή", 
+            "Σάββατο"
+        ], 
+        "month": [
+            "Ιανουάριος", 
+            "Φεβρουάριος", 
+            "Μάρτιος", 
+            "Απρίλιος", 
+            "Μάιος", 
+            "Ιούνιος", 
+            "Ιούλιος", 
+            "Αύγουστος", 
+            "Σεπτέμβριος", 
+            "Οκτώβριος", 
+            "Νοέμβριος", 
+            "Δεκέμβριος"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "en"
+    }, 
+    "messages": {
+        "loading": "Γίνεται Φόρτωση", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Επιστροφή στον Τίτλο", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Φόρτωση Περιεχομένου", 
+        "expand_timeline": "Μεγέθυνση", 
+        "loading_timeline": "Φόρτωση Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en-24hr.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en-24hr.json
new file mode 100644
index 0000000000000000000000000000000000000000..1d20e1c9c6fda0c415d4dda0c0fa915d5b793c7a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en-24hr.json
@@ -0,0 +1,75 @@
+{
+    "lang": "en", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "March", 
+            "April", 
+            "May", 
+            "June", 
+            "July", 
+            "Aug.", 
+            "Sept.", 
+            "Oct.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Sun.", 
+            "Mon.", 
+            "Tues.", 
+            "Wed.", 
+            "Thurs.", 
+            "Fri.", 
+            "Sat."
+        ], 
+        "day": [
+            "Sunday", 
+            "Monday", 
+            "Tuesday", 
+            "Wednesday", 
+            "Thursday", 
+            "Friday", 
+            "Saturday"
+        ], 
+        "month": [
+            "January", 
+            "February", 
+            "March", 
+            "April", 
+            "May", 
+            "June", 
+            "July", 
+            "August", 
+            "September", 
+            "October", 
+            "November", 
+            "December"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "en"
+    }, 
+    "messages": {
+        "loading": "Loading", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Return to Title", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Loading Content", 
+        "expand_timeline": "Expand Timeline", 
+        "loading_timeline": "Loading Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' HH:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM TT", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en-week.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en-week.json
new file mode 100644
index 0000000000000000000000000000000000000000..b469c81fd58535bc63660f552f1ef51f100b0b48
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en-week.json
@@ -0,0 +1,75 @@
+{
+    "lang": "en", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "March", 
+            "April", 
+            "May", 
+            "June", 
+            "July", 
+            "Aug.", 
+            "Sept.", 
+            "Oct.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Sun.", 
+            "Mon.", 
+            "Tues.", 
+            "Wed.", 
+            "Thurs.", 
+            "Fri.", 
+            "Sat."
+        ], 
+        "day": [
+            "Sunday", 
+            "Monday", 
+            "Tuesday", 
+            "Wednesday", 
+            "Thursday", 
+            "Friday", 
+            "Saturday"
+        ], 
+        "month": [
+            "January", 
+            "February", 
+            "March", 
+            "April", 
+            "May", 
+            "June", 
+            "July", 
+            "August", 
+            "September", 
+            "October", 
+            "November", 
+            "December"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "en"
+    }, 
+    "messages": {
+        "loading": "Loading", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Return to Title", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Loading Content", 
+        "expand_timeline": "Expand Timeline", 
+        "loading_timeline": "Loading Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' HH:MM TT", 
+        "full_short": "'Week' W", 
+        "full": "'Week' W", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM TT", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en.json
new file mode 100644
index 0000000000000000000000000000000000000000..a8e51734c950641f2c96747a29dc8b62d5547286
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/en.json
@@ -0,0 +1,125 @@
+{
+    "name": "English",
+    "lang": "en",
+    "date": {
+        "month_abbr": [
+            "Jan.",
+            "Feb.",
+            "March",
+            "April",
+            "May",
+            "June",
+            "July",
+            "Aug.",
+            "Sept.",
+            "Oct.",
+            "Nov.",
+            "Dec."
+        ],
+        "day_abbr": [
+            "Sun.",
+            "Mon.",
+            "Tues.",
+            "Wed.",
+            "Thurs.",
+            "Fri.",
+            "Sat."
+        ],
+        "day": [
+            "Sunday",
+            "Monday",
+            "Tuesday",
+            "Wednesday",
+            "Thursday",
+            "Friday",
+            "Saturday"
+        ],
+        "month": [
+            "January",
+            "February",
+            "March",
+            "April",
+            "May",
+            "June",
+            "July",
+            "August",
+            "September",
+            "October",
+            "November",
+            "December"
+        ]
+    },
+    "api": {
+        "wikipedia": "en" // the two letter code at the beginning of the Wikipedia subdomain for this language
+    },
+    "messages": {
+        "loading": "Loading",
+        "error": "Error",
+        "contract_timeline": "Contract Timeline",
+        "return_to_title": "Return to Title",
+        "wikipedia": "From Wikipedia, the free encyclopedia",
+        "loading_content": "Loading Content",
+        "expand_timeline": "Expand Timeline",
+        "loading_timeline": "Loading Timeline... ",
+        "swipe_to_navigate": "Swipe to Navigate<br><span class='tl-button'>OK</span>",
+        "unknown_read_err": "An unexpected error occurred trying to read your spreadsheet data",
+        "invalid_url_err": "Unable to read Timeline data. Make sure your URL is for a Google Spreadsheet or a Timeline JSON file.",
+        "network_err": "Unable to read your Google Spreadsheet. Make sure you have published it to the web.",
+        "empty_feed_err": "No data entries found",
+        "missing_start_date_err": "Missing start_date",
+        "invalid_data_format_err": "Header row has been modified.",
+        "date_compare_err": "Can't compare TL.Dates on different scales",
+        "invalid_scale_err": "Invalid scale",
+        "invalid_date_err": "Invalid date: month, day and year must be numbers.",
+        "invalid_separator_error": "Invalid time: misuse of : or . as separator.",
+        "invalid_hour_err": "Invalid time (hour)",
+        "invalid_minute_err": "Invalid time (minute)",
+        "invalid_second_err": "Invalid time (second)",
+        "invalid_fractional_err": "Invalid time (fractional seconds)",
+        "invalid_second_fractional_err": "Invalid time (seconds and fractional seconds)",
+        "invalid_year_err": "Invalid year",
+        "flickr_notfound_err": "Photo not found or private",
+        "flickr_invalidurl_err": "Invalid Flickr URL",
+        "imgur_invalidurl_err": "Invalid Imgur URL",
+        "twitter_invalidurl_err": "Invalid Twitter URL",
+        "twitter_load_err": "Unable to load Tweet",
+        "twitterembed_invalidurl_err": "Invalid Twitter Embed url",
+        "wikipedia_load_err": "Unable to load Wikipedia entry",
+        "youtube_invalidurl_err": "Invalid YouTube URL",
+        "spotify_invalid_url": "Invalid Spotify URL",
+        "template_value_err": "No value provided for variable",
+        "invalid_rgb_err": "Invalid RGB argument",
+        "time_scale_scale_err": "Don't know how to get date from time for scale",
+        "axis_helper_no_options_err": "Axis helper must be configured with options",
+        "axis_helper_scale_err": "No AxisHelper available for scale",
+        "invalid_integer_option": 				"Invalid option value—must be a whole number."
+    },
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT",
+        "full_short": "mmm d",
+        "full": "mmmm d',' yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "h:MM TT",
+        "time_short": "h:MM:ss TT",
+        "year": "yyyy",
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    },
+    "era_labels": { // specify prefix or suffix to apply to formatted date. Blanks mean no change.
+        "positive_year": {
+            "prefix": "",
+            "suffix": ""
+        },
+        "negative_year": { // if either of these is specified, the year will be converted to positive before they are applied
+            "prefix": "",
+            "suffix": "BCE"
+        }
+    },
+    "period_labels": {  // use of t/tt/T/TT is a legacy of original Timeline date format
+        "t": ["a", "p"],
+        "tt": ["am", "pm"],
+        "T": ["A", "P"],
+        "TT": ["AM", "PM"]
+    },
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/eo.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/eo.json
new file mode 100644
index 0000000000000000000000000000000000000000..849fc62e176ab64afd061ce9667c0cd7f65f637f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/eo.json
@@ -0,0 +1,75 @@
+{
+    "lang": "eo", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "feb.", 
+            "mar.", 
+            "apr.", 
+            "maj.", 
+            "jun.", 
+            "jul.", 
+            "aÅ­g.", 
+            "sep.", 
+            "okt.", 
+            "nov.", 
+            "dec."
+        ], 
+        "day_abbr": [
+            "dim.", 
+            "lun.", 
+            "mar.", 
+            "mer.", 
+            "ĵaŭ.", 
+            "ven.", 
+            "sab."
+        ], 
+        "day": [
+            "dimanĉo", 
+            "lundo", 
+            "mardo", 
+            "merkredo", 
+            "ĵaŭdo", 
+            "vendredo", 
+            "sabato"
+        ], 
+        "month": [
+            "januaro", 
+            "februaro", 
+            "marto", 
+            "aprilo", 
+            "majo", 
+            "junio", 
+            "julio", 
+            "aÅ­gusto", 
+            "septembro", 
+            "oktobro", 
+            "novembro", 
+            "decembro"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "eo"
+    }, 
+    "messages": {
+        "loading": "Ŝarĝante", 
+        "contract_timeline": "Malpliampleksigu Kronologio", 
+        "return_to_title": "Reveno al Titolo", 
+        "wikipedia": "El Vikipedio, la libera enciklopedio", 
+        "loading_content": "Ŝarĝante enhavo", 
+        "expand_timeline": "Pliampleksigu Kronologio", 
+        "loading_timeline": "Ŝarĝante Kronologio... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'ĉe' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/es.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/es.json
new file mode 100644
index 0000000000000000000000000000000000000000..6edcabd3d913d1e9cbefd93f6c32a6695d70e2af
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/es.json
@@ -0,0 +1,76 @@
+{
+    "lang": "es", 
+    "date": {
+        "month_abbr": [
+            "Ene.", 
+            "Feb.", 
+            "Mar.", 
+            "Abr.", 
+            "May.", 
+            "Jun.", 
+            "Jul.", 
+            "Ago.", 
+            "Sep.", 
+            "Oct.", 
+            "Nov.", 
+            "Dic."
+        ], 
+        "day_abbr": [
+            "Dom.", 
+            "Lun.", 
+            "Mar.", 
+            "Mié.", 
+            "Jue.", 
+            "Vie.", 
+            "Sáb."
+        ], 
+        "day": [
+            "Domingo", 
+            "Lunes", 
+            "Martes", 
+            "Miércoles", 
+            "Jueves", 
+            "Viernes", 
+            "Sábado"
+        ], 
+        "month": [
+            "Enero", 
+            "Febrero", 
+            "Marzo", 
+            "Abril", 
+            "Mayo", 
+            "Junio", 
+            "Julio", 
+            "Agosto", 
+            "Septiembre", 
+            "Octubre", 
+            "Noviembre", 
+            "Diciembre"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "es"
+    }, 
+    "messages": {
+        "loading": "cargando", 
+        "contract_timeline": "Reducir la cronología", 
+        "return_to_title": "Volver al título", 
+        "swipe_nav": "Desliza para ver", 
+        "wikipedia": "Desde Wikipedia, la enciclopedia libre", 
+        "loading_content": "cargando", 
+        "expand_timeline": "Expandir la cronología", 
+        "loading_timeline": "La cronología esta cargando"
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "'<small>'d mmmm yyyy'</small>' HH:MM", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/et.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/et.json
new file mode 100644
index 0000000000000000000000000000000000000000..fe0b0ede98054402139fec1e901bda1a213e9389
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/et.json
@@ -0,0 +1,75 @@
+{
+    "lang": "et", 
+    "date": {
+        "month_abbr": [
+            "jaan.", 
+            "veebr.", 
+            "märts", 
+            "apr.", 
+            "mai", 
+            "juuni", 
+            "juuli", 
+            "aug.", 
+            "sept.", 
+            "okt.", 
+            "nov.", 
+            "dets."
+        ], 
+        "day_abbr": [
+            "P", 
+            "E", 
+            "T", 
+            "K", 
+            "N", 
+            "R", 
+            "L"
+        ], 
+        "day": [
+            "pühapäev", 
+            "esmaspäev", 
+            "teisipäev", 
+            "kolmapäev", 
+            "neljapäev", 
+            "reede", 
+            "laupäev"
+        ], 
+        "month": [
+            "jaanuar", 
+            "veebruar", 
+            "märts", 
+            "aprill", 
+            "mai", 
+            "juuni", 
+            "juuli", 
+            "august", 
+            "september", 
+            "oktoober", 
+            "november", 
+            "detsember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "et"
+    }, 
+    "messages": {
+        "loading": "Laadib", 
+        "contract_timeline": "Vaata kaugemalt", 
+        "return_to_title": "Tagasi algusse", 
+        "wikipedia": "Wikipedia, vaba entsüklopeedia", 
+        "loading_content": "Laadib sisu", 
+        "expand_timeline": "Vaata lähemalt", 
+        "loading_timeline": "Laadib ajajoont… "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/eu.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/eu.json
new file mode 100644
index 0000000000000000000000000000000000000000..e54dc18cb8c65305c4d3379aa437b45869870cb3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/eu.json
@@ -0,0 +1,75 @@
+{
+    "lang": "eu", 
+    "date": {
+        "month_abbr": [
+            "Urt.", 
+            "Ots.", 
+            "Mar.", 
+            "Api.", 
+            "Mai.", 
+            "Eka.", 
+            "Uzt.", 
+            "Abu.", 
+            "Ira.", 
+            "Urr.", 
+            "Aza.", 
+            "Abe."
+        ], 
+        "day_abbr": [
+            "Iga.", 
+            "Asl.", 
+            "Asr.", 
+            "Asz.", 
+            "Osg.", 
+            "Osr.", 
+            "Lar."
+        ], 
+        "day": [
+            "Igandea", 
+            "Astelehena", 
+            "Asteartea", 
+            "Asteazkena", 
+            "Osteguna", 
+            "Ostirala", 
+            "Larunbata"
+        ], 
+        "month": [
+            "Urtarrila", 
+            "Otsaila", 
+            "Martxoa", 
+            "Apirila", 
+            "Maiatza", 
+            "Ekaina", 
+            "Uztaila", 
+            "Abuztua", 
+            "Iraila", 
+            "Urria", 
+            "Azaroa", 
+            "Abendua"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "eu"
+    }, 
+    "messages": {
+        "loading": "Kargatzen", 
+        "contract_timeline": "Txikiago ikusi", 
+        "return_to_title": "Titulura itzuli", 
+        "wikipedia": "Wikipedia entziklopedia libretik", 
+        "loading_content": "Edukia kargatzen", 
+        "expand_timeline": "Handiago ikusi", 
+        "loading_timeline": "Kronologia kargatzen..."
+    }, 
+    "dateformats": {
+        "full_long": "yyyy'(e)ko' mmmm'ren' d'(e)an,' hh:MM TT'(r)etan'", 
+        "full_short": "mmm'-'d", 
+        "full": "yyyy'(e)ko' mmmm'k' d", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br /><small>'yyyy'-'mmm'-'d'</small>", 
+        "month": "yyyy'(e)ko' mmmm", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br /><small>'yyyy'-'mmm'-'d'</small>"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fa.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fa.json
new file mode 100644
index 0000000000000000000000000000000000000000..babd845a5d58d7a65e854f7a8bf5e6c7ffa09082
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fa.json
@@ -0,0 +1,74 @@
+{
+    "lang": "fa", 
+    "messages": {
+        "loading": "بارگذاری", 
+        "contract_timeline": "کوچکنمایی", 
+        "return_to_title": "ابتدای زمانبندی", 
+        "wikipedia": "از ویکی پدیا، دانشنامه آزاد", 
+        "loading_content": "بارگذاری", 
+        "expand_timeline": "بزرگنمایی", 
+        "loading_timeline": "بارگذاری، شکیبا باشید..."
+    }, 
+    "api": {
+        "wikipedia": "fa"
+    }, 
+    "direction": "rtl",
+    "date": {
+        "month_abbr": [
+            "فروردین", 
+            "اردیبهشت", 
+            "خرداد", 
+            "تیر", 
+            "مرداد", 
+            "شهریور", 
+            "مهر", 
+            "آبان", 
+            "آذر", 
+            "دی", 
+            "بهمن", 
+            "اسفند"
+        ], 
+        "day_abbr": [
+            "یکشنبه", 
+            "دوشنبه", 
+            "سه شنبه", 
+            "چهارشنبه", 
+            "پنجشنبه", 
+            "جمعه", 
+            "شنبه"
+        ], 
+        "day": [
+            "یکشنبه", 
+            "دوشنبه", 
+            "سه شنبه", 
+            "چهارشنبه", 
+            "پنجشنبه", 
+            "جمعه", 
+            "شنبه"
+        ], 
+        "month": [
+            "فروردین", 
+            "اردیبهشت", 
+            "خرداد", 
+            "تیر", 
+            "مرداد", 
+            "شهریور", 
+            "مهر", 
+            "آبان", 
+            "آذر", 
+            "دی", 
+            "بهمن", 
+            "اسفند"
+        ]
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "time_no_seconds_short": "h:MM TT", 
+        "month_short": "mmm", 
+        "month": "mmmm yyyy", 
+        "full": "mmmm d',' yyyy", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fi.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fi.json
new file mode 100644
index 0000000000000000000000000000000000000000..348b0a45f870c93507940b073edcaf0df26829ed
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fi.json
@@ -0,0 +1,95 @@
+{
+    "lang": "fi", 
+    "date": {
+        "month_abbr": [
+            "tammi", 
+            "helmi", 
+            "maalis", 
+            "huhti", 
+            "touko", 
+            "kesä", 
+            "heinä", 
+            "elo", 
+            "syys", 
+            "loka", 
+            "marras", 
+            "joulu"
+        ], 
+        "day_abbr": [
+            "su", 
+            "ma", 
+            "ti", 
+            "ke", 
+            "to", 
+            "pe", 
+            "la"
+        ], 
+        "day": [
+            "sunnuntai", 
+            "maanantai", 
+            "tiistai", 
+            "keskiviikko", 
+            "torstai", 
+            "perjantai", 
+            "lauauntai"
+        ], 
+        "month": [
+            "tammikuuta", 
+            "helmikuuta", 
+            "maaliskuuta", 
+            "huhtikuuta", 
+            "toukokuuta", 
+            "kesäkuuta", 
+            "heinäkuuta", 
+            "elokuuta", 
+            "syyskuuta", 
+            "lokakuuta", 
+            "marraskuuta", 
+            "joulukuuta"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "fi"
+    }, 
+    "messages": {
+        "loading": "Ladataan", 
+        "contract_timeline": "Tiivistä aikajanaa", 
+        "return_to_title": "Takaisin etusivulle", 
+        "wikipedia": "Wikipediasta", 
+        "loading_content": "Ladataan sisältöä", 
+        "expand_timeline": "Laajenna aikajanaa", 
+        "loading_timeline": "Ladataan aikajanaa… "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d yyyy 'klo' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d. mmm yyyy'</small>'"
+    },
+    "bigdateformats": {
+            "fallback": [
+				[1000000000,"%.2f miljardia vuotta sitten"],
+				[1000000,"%.1f miljoonaa vuotta sitten"],
+				[1000,"%.1f tuhatta vuotta sitten"],
+				[1, "%f vuotta sitten"]
+			],
+		"compact": [
+		            [1000000000,"%.2f mrd.vs"],
+				    [1000000,"%.1f mvs"],
+				    [1000,"%.1f tvs"],
+				    [1, "%f vuotta sitten"]
+		    ],
+		"verbose": [
+		            [1000000000,"%.2f miljardia vuotta sitten"],
+				    [1000000,"%.1f miljoonaa vuotta sitten"],
+				    [1000,"%.1f tuhatta vuotta sitten"],
+				    [1, "%f vuotta sitten"]
+		    ]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fo.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fo.json
new file mode 100644
index 0000000000000000000000000000000000000000..7f67e097b40f4bcfbe780591e5bf6f9fc5937eee
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fo.json
@@ -0,0 +1,75 @@
+{
+    "lang": "fo", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "febr.", 
+            "mars", 
+            "aprÃŒl", 
+            "mai", 
+            "juni", 
+            "juli", 
+            "aug.", 
+            "sept.", 
+            "okt.", 
+            "nov.", 
+            "des."
+        ], 
+        "day_abbr": [
+            "sun.", 
+            "m·n.", 
+            "t˝s.", 
+            "mik.", 
+            "hÛs.", 
+            "frÌ.", 
+            "ley."
+        ], 
+        "day": [
+            "sunnudagur", 
+            "m·nadagur", 
+            "t˝sdagur", 
+            "mikudagur", 
+            "hÛsdagur", 
+            "frÃŒggjadagur", 
+            "leygardagur"
+        ], 
+        "month": [
+            "januar", 
+            "februar", 
+            "mars", 
+            "aprÃŒl", 
+            "mai", 
+            "juni", 
+            "juli", 
+            "august", 
+            "september", 
+            "oktober", 
+            "november", 
+            "desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "fo"
+    }, 
+    "messages": {
+        "loading": "Lesur inn", 
+        "contract_timeline": "Minka t&iacute;&eth;arr&aacute;s", 
+        "return_to_title": "V&iacute;&eth;ka t&iacute;&eth;arr&aacute;s...", 
+        "wikipedia": "Fr· Wikipedia", 
+        "loading_content": "Lesur inn tilfar", 
+        "expand_timeline": "Minka t&iacute;&eth;arr&aacute;s...", 
+        "loading_timeline": "Lesur inn t&iacute;&eth;arr&aacute;s..."
+    }, 
+    "dateformats": {
+        "full_long": "d'.' mmmm yyyy 'klokkan' HH:MM", 
+        "full_short": "d'.' mmm", 
+        "full": "d'.' mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d'.' mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'d'.' mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fr.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fr.json
new file mode 100644
index 0000000000000000000000000000000000000000..ce0181167a468ec99e498b6ea2f4785a393e7a61
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fr.json
@@ -0,0 +1,119 @@
+{
+    "lang": "fr",
+    "date": {
+        "month_abbr": [
+            "janv.",
+            "févr.",
+            "mars",
+            "avril",
+            "mai",
+            "juin",
+            "juil.",
+            "août",
+            "sept.",
+            "oct.",
+            "nov.",
+            "déc."
+        ],
+        "day_abbr": [
+            "Dim.",
+            "Lu.",
+            "Ma.",
+            "Me.",
+            "Jeu.",
+            "Vend.",
+            "Sam."
+        ],
+        "day": [
+            "Dimanche",
+            "Lundi",
+            "Mardi",
+            "Mercredi",
+            "Jeudi",
+            "Vendredi",
+            "Samedi"
+        ],
+        "month": [
+            "janvier",
+            "février",
+            "mars",
+            "avril",
+            "mai",
+            "juin",
+            "juillet",
+            "août",
+            "septembre",
+            "octobre",
+            "novembre",
+            "décembre"
+        ]
+    },
+    "api": {
+        "wikipedia": "fr"
+    },
+    "messages": {
+        "loading": "Chargement",
+        "contract_timeline": "Réduire la frise",
+        "return_to_title": "Retour à la page d'accueil",
+        "wikipedia": "Extrait de Wikipedia, l'encyclopédie libre",
+        "loading_content": "Chargement",
+        "expand_timeline": "Elargir la frise",
+        "loading_timeline": "Chargement de la frise en cours... ",
+        "error": "Erreur",
+        "swipe_to_navigate": "Faites glisser pour naviguer<br><span class='tl-button'>OK</span>",
+        "unknown_read_err": "Une erreur indéterminée est survenue lors de l'accès aux données de votre feuille de calcul.",
+        "invalid_url_err": "Impossible d'accéder aux données de la Timeline. Assurez-vous que votre url est celle d'un Google Spreadsheet ou d'un fichier Timeline json.",
+        "network_err": "Impossible d'accéder à Google Spreadsheet. Assurez-vous que votre Google Spreadsheet est bien publié pour le web.",
+        "empty_feed_err": "Aucune donnée trouvée",
+        "missing_start_date_err": "Date de début manquante",
+        "invalid_data_format_err": "Erreur : La ligne d'entête a été modifiée.",
+        "date_compare_err": "Impossible de comparer les TL.Dates à différentes échelles",
+        "invalid_scale_err": "Echelle invalide",
+        "invalid_date_err": "Date invalide : les jours, mois et années doivent être des nombres.",
+        "invalid_hour_err": "Erreur : Heure invalide",
+        "invalid_minute_err": "Erreur : Minutes invalides",
+        "invalid_second_err": "Erreur : Secondes invalides",
+        "invalid_fractional_err": "Erreur : Fractions de secondes invalides",
+        "invalid_second_fractional_err": "Erreur : Secondes et fractions de secondes invalides",
+        "invalid_year_err": "Année invalide",
+        "flickr_notfound_err": "Photo non trouvée ou privée",
+        "flickr_invalidurl_err": "URL Flickr invalide",
+        "imgur_invalidurl_err": "URL Imgur invalide",
+        "twitter_invalidurl_err": "URL Twitter invalide",
+        "twitter_load_err": "Impossible de charger le tweet",
+        "twitterembed_invalidurl_err": "URL d'embed Twitter invalide",
+        "wikipedia_load_err": "Impossible de charger les données de Wikipedia",
+        "youtube_invalidurl_err": "URL YouTube invalide",
+        "spotify_invalid_url": "URL Spotify invalide",
+        "template_value_err": "Aucune donnée pour cette variable",
+        "invalid_rgb_err": "Argument RGB invalide"
+    },
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'à' HH:MM",
+        "full_short": "d mmm",
+        "full": "d mmmm yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "HH:MM",
+        "time_short": "HH:MM:ss",
+        "year": "yyyy",
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    },
+    "era_labels": {
+        "positive_year": {
+            "prefix": "",
+            "suffix": ""
+        },
+        "negative_year": {
+            "prefix": "",
+            "suffix": "Avant JC"
+        }
+    },
+    "period_labels": {
+        "t": ["a", "p"],
+        "tt": ["am", "pm"],
+        "T": ["A", "P"],
+        "TT": ["AM", "PM"]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fy.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fy.json
new file mode 100644
index 0000000000000000000000000000000000000000..88d01f9b94875c15767549134152a15d778fcf4a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/fy.json
@@ -0,0 +1,75 @@
+{
+  "lang": "fy", 
+  "date": {
+    "month_abbr": [
+      "Jan.", 
+      "Feb.", 
+      "Mar", 
+      "Apr", 
+      "Maaie", 
+      "July", 
+      "July", 
+      "Aug.", 
+      "Sept.", 
+      "Okt.", 
+      "Nov.", 
+      "Des."
+    ], 
+    "day_abbr": [
+      "Snein", 
+      "Moandei", 
+      "Tiisdei", 
+      "Woansdei", 
+      "Tongersdei", 
+      "Freed", 
+      "Sneon"
+    ], 
+    "day": [
+      "Snein", 
+      "Moandei", 
+      "Tiisdei", 
+      "Woansdei", 
+      "Tongersdei", 
+      "Freed", 
+      "Sneon"
+    ], 
+    "month": [
+      "Jannewaris", 
+      "Febrewaris", 
+      "Maart", 
+      "April", 
+      "Maaie", 
+      "Juny", 
+      "July", 
+      "Augustus", 
+      "Septimber", 
+      "Oktober", 
+      "Novimber", 
+      "Desimber"
+    ]
+  }, 
+  "api": {
+    "wikipedia": "fy"
+  }, 
+  "messages": {
+    "loading": "Ynlade", 
+    "contract_timeline": "Tiidline ynzoomen", 
+    "return_to_title": "Wer werom nei it begjin", 
+    "wikipedia": "Fan Wikipedia, de frije ensyklopedy", 
+    "loading_content": "Ynhâld ynlade", 
+    "expand_timeline": "Tiidline útzoomen", 
+    "loading_timeline": "Tiidline ynlade ... "
+  }, 
+  "dateformats": {
+    "full_long": "dddd',' d mmm yyyy 'om' HH:MM", 
+    "full_short": "d mmm", 
+    "full": "d mmmm yyyy", 
+    "time_short": "HH:MM:ss", 
+    "year": "yyyy", 
+    "time_no_seconds_short": "HH:MM", 
+    "month_short": "mmm", 
+    "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'", 
+    "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+    "month": "mmmm yyyy"
+  }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ga.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ga.json
new file mode 100644
index 0000000000000000000000000000000000000000..31dcedcd0c5d141bca9b33e02c4c724c98a74cdb
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ga.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ga", 
+    "date": {
+        "month_abbr": [
+            "Ean.", 
+            "Fea.", 
+            "Már.", 
+            "Aibh.", 
+            "Beal.", 
+            "Meith.", 
+            "Iúil", 
+            "Lún.", 
+            "MF.", 
+            "DF.", 
+            "Samh.", 
+            "Noll."
+        ], 
+        "day_abbr": [
+            "DéDom.", 
+            "DéL.", 
+            "DéM.", 
+            "DéC.", 
+            "DéarD.", 
+            "DéhA.", 
+            "DéSat."
+        ], 
+        "day": [
+            "Dé Domhnaigh", 
+            "Dé Luain", 
+            "Dé Máirt", 
+            "Dé Céadaoin", 
+            "Déardaoin", 
+            "Dé hAoine", 
+            "Dé Sathairn"
+        ], 
+        "month": [
+            "Eanair", 
+            "Feabhra", 
+            "Márta", 
+            "Aibhreán", 
+            "Bealtaine", 
+            "Meitheamh", 
+            "Iúil", 
+            "Lúnasa", 
+            "Meán Fómhair", 
+            "Deireadh Fómhair", 
+            "Samhain", 
+            "Mí Na Nollag"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ga"
+    }, 
+    "messages": {
+        "loading": "Ag Lódáil an Inneachar", 
+        "contract_timeline": "Coimrigh An Amlíne", 
+        "return_to_title": "Ar Ais go dtí an tideal", 
+        "wikipedia": "As Wikipedia, an ciclipéid saor", 
+        "loading_content": "Ag Lódáil an", 
+        "expand_timeline": "Leathnaigh An Amlíne", 
+        "loading_timeline": "Tá an Amlíne ag Lódáil... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy HH:MM", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "'<small>'d mmmm yyyy'</small>' HH:MM", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm yyyy'</small>"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/gl.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/gl.json
new file mode 100644
index 0000000000000000000000000000000000000000..60dc376a793dfbd3694922495c45c236c91ff0fa
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/gl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "gl", 
+    "date": {
+        "month_abbr": [
+            "Xan.", 
+            "Feb.", 
+            "Mar.", 
+            "Abr.", 
+            "Mai.", 
+            "Xuñ.", 
+            "Xul.", 
+            "Ago.", 
+            "Set.", 
+            "Out.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Dom.", 
+            "Lun.", 
+            "Mar.", 
+            "Mér.", 
+            "Xov.", 
+            "Ven.", 
+            "Sáb."
+        ], 
+        "day": [
+            "Domingo", 
+            "Luns", 
+            "Martes", 
+            "Mércores", 
+            "Xoves", 
+            "Venres", 
+            "Sábado"
+        ], 
+        "month": [
+            "Xaneiro", 
+            "Febreiro", 
+            "Marzo", 
+            "Abril", 
+            "Maio", 
+            "Xuño", 
+            "Xullo", 
+            "Agosto", 
+            "Setembro", 
+            "Outubro", 
+            "Novembro", 
+            "Decembro"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "gl"
+    }, 
+    "messages": {
+        "loading": "cargando", 
+        "contract_timeline": "Acurtar a cronoloxía", 
+        "return_to_title": "Volver ao título", 
+        "wikipedia": "Dende Wikipedia, a enciclopedia libre", 
+        "loading_content": "cargando", 
+        "expand_timeline": "Alongar a cronoloxía", 
+        "loading_timeline": "Cronoloxía esta cargando"
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'um' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/he.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/he.json
new file mode 100644
index 0000000000000000000000000000000000000000..0695d0d0ecd9dd4e56af869cfa803f2451a913cf
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/he.json
@@ -0,0 +1,76 @@
+{
+    "lang": "he", 
+    "messages": {
+        "loading": "טוען...", 
+        "contract_timeline": "צמצם את ציר הזמן", 
+        "return_to_title": "חזור לכותרת", 
+        "wikipedia": "מויקיפדיה, האינציקלופדיה החופשית", 
+        "loading_content": "התוכן בטעינה...", 
+        "expand_timeline": "הרחב את ציר הזמן", 
+        "loading_timeline": "טוען את ציר הזמן... "
+    }, 
+    "api": {
+        "wikipedia": "he"
+    }, 
+    "direction": "rtl",
+    "date": {
+        "month_abbr": [
+            "ינואר", 
+            "פברואר", 
+            "מרץ", 
+            "אפריל", 
+            "מאי", 
+            "יוני", 
+            "יולי", 
+            "אוגוסט", 
+            "ספטמבר", 
+            "אוקטובר", 
+            "נובמבר", 
+            "דצמבר"
+        ], 
+        "day_abbr": [
+            "יום א'", 
+            "יום ב'", 
+            "יום ג'", 
+            "יום ד'", 
+            "יום ה'", 
+            "יום ו'", 
+            "שבת"
+        ], 
+        "day": [
+            "ראשון", 
+            "שני", 
+            "שלישי", 
+            "רביעי", 
+            "חמישי", 
+            "שישי", 
+            "שבת"
+        ], 
+        "month": [
+            "ינואר", 
+            "פברואר", 
+            "מרץ", 
+            "אפריל", 
+            "מאי", 
+            "יוני", 
+            "יולי", 
+            "אוגוסט", 
+            "ספטמבר", 
+            "אוקטובר", 
+            "נובמבר", 
+            "דצמבר"
+        ]
+    }, 
+    "dateformats": {
+        "full_long": "d' mmm,' yyyy 'at' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm,' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hi.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hi.json
new file mode 100644
index 0000000000000000000000000000000000000000..e649780cc13f7305eb591a96d70211d996f4b670
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hi.json
@@ -0,0 +1,76 @@
+{
+  "lang": "hi", 
+  "date": {
+    "month_abbr": [
+      "जनवरी", 
+      "फ़रवरी", 
+      "मार्च", 
+      "अप्रैल", 
+      "मई", 
+      "जून", 
+      "जुलाई", 
+      "अगस्त", 
+      "सितम्बर", 
+      "अक्टूबर", 
+      "नवंबर", 
+      "दिसंबर"
+    ], 
+    "day_abbr": [
+      "रवि", 
+      "सोम", 
+      "मंगल", 
+      "बुध", 
+      "गुरु", 
+      "शुक्र", 
+      "शनि"
+    ], 
+    "day": [
+      "रविवार", 
+      "सोमवार", 
+      "मंगलवार", 
+      "बुधवार", 
+      "गुरुवार", 
+      "शुक्रवार", 
+      "शनिवार"
+    ], 
+    "month": [
+      "जनवरी", 
+      "फ़रवरी", 
+      "मार्च", 
+      "अप्रैल", 
+      "मई", 
+      "जून", 
+      "जुलाई", 
+      "अगस्त", 
+      "सितम्बर", 
+      "अक्टूबर", 
+      "नवंबर", 
+      "दिसंबर"
+    ]
+  }, 
+  "api": {
+    "wikipedia": "hi"
+  }, 
+  "messages": {
+    "loading": "लोड हो रहा है", 
+    "contract_timeline": "टाइमलाइन का अनुबंध करें", 
+    "return_to_title": "शीर्षक पर लौटें", 
+    "swipe_nav": "Swipe to Navigate", 
+    "read_more": "और पढ़ें", 
+    "wikipedia": "विकिपीडिया, मुक्त विश्वकोश से", 
+    "expand_timeline": "टाइमलाइन का विस्तार करें", 
+    "loading_timeline": "टाइमलाइन लोड हो रहा है", 
+    "loading_content": "लोड हो रहा है सामग्री"
+  }, 
+  "dateformats": {
+    "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+    "full_short": "mmm d", 
+    "full": "mmmm d',' yyyy", 
+    "year": "yyyy", 
+    "time_no_seconds_short": "h:MM TT", 
+    "month_short": "mmm", 
+    "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'", 
+    "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+    "month": "mmmm yyyy"
+  }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hr.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hr.json
new file mode 100644
index 0000000000000000000000000000000000000000..a2613604edff1d9b97fe4a2f81e8becc642cb8ce
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hr.json
@@ -0,0 +1,75 @@
+{
+    "lang": "hr", 
+    "date": {
+        "month_abbr": [
+            "I", 
+            "II", 
+            "III", 
+            "IV", 
+            "V", 
+            "VI", 
+            "VII", 
+            "VIII", 
+            "IX", 
+            "X", 
+            "XI", 
+            "XII"
+        ], 
+        "day_abbr": [
+            "ned", 
+            "pon", 
+            "uto", 
+            "sri", 
+            "čet", 
+            "pet", 
+            "sub"
+        ], 
+        "day": [
+            "nedjelja", 
+            "ponedjeljak", 
+            "utorak", 
+            "srijeda", 
+            "četvrtak", 
+            "petak", 
+            "subota"
+        ], 
+        "month": [
+            "siječnja", 
+            "veljače", 
+            "ožujka", 
+            "travnja", 
+            "svibnja", 
+            "lipnja", 
+            "srpnja", 
+            "kolovoza", 
+            "rujna", 
+            "listopada", 
+            "studenog", 
+            "prosinca"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "hr"
+    }, 
+    "messages": {
+        "loading": "Učitava se", 
+        "contract_timeline": "Smanji", 
+        "return_to_title": "Početak", 
+        "wikipedia": "Iz Vikipedije, slobodne enciklopedije", 
+        "loading_content": "Sadržaj se učitava", 
+        "expand_timeline": "Povećaj", 
+        "loading_timeline": "Učitavanje... "
+    }, 
+    "dateformats": {
+        "full_long": "dd. mmmm yyyy. 'u' HH:MM", 
+        "full_short": "dd. mmm", 
+        "full": "dd. mmmm yyyy.", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'dd. mmmm yyyy.'</small>'", 
+        "month": "mmmm yyyy.", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy.", 
+        "full_long_small_date": "HH:MM'<br/><small>dd. mmm yyyy.'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hu.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hu.json
new file mode 100644
index 0000000000000000000000000000000000000000..b50e4bc58ccda27b0e417e77bfeec3618daa2c84
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hu.json
@@ -0,0 +1,114 @@
+{
+    "lang": "hu", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "febr.", 
+            "márc.", 
+            "ápr.", 
+            "máj.", 
+            "jún.", 
+            "júl.", 
+            "aug.", 
+            "szept.", 
+            "okt.", 
+            "nov.", 
+            "dec."
+        ], 
+        "day_abbr": [
+            "vas.", 
+            "hétfő", 
+            "kedd", 
+            "szer.", 
+            "csüt.", 
+            "pén.", 
+            "szom."
+        ], 
+        "day": [
+            "vasárnap", 
+            "hétfő", 
+            "kedd", 
+            "szerda", 
+            "csütörtök", 
+            "péntek", 
+            "szombat"
+        ], 
+        "month": [
+            "január", 
+            "február", 
+            "március", 
+            "április", 
+            "május", 
+            "június", 
+            "július", 
+            "augusztus", 
+            "szeptember", 
+            "október", 
+            "november", 
+            "december"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "hu"
+    }, 
+    "messages": {
+        "loading": "Betöltés", 
+        "contract_timeline": "Kicsinyítés", 
+        "return_to_title": "Vissza a címhez", 
+        "wikipedia": "A Wikipédiából, a szabad enciklopédiából", 
+        "loading_content": "Tartalom betöltése", 
+        "expand_timeline": "Nagyítás", 
+        "loading_timeline": "Az idővonal betöltése... "
+    }, 
+    "dateformats": {
+        "full_long": "yyyy. mmm d.',' HH:MM", 
+        "full_short": "mmm d.", 
+        "full": "yyyy. mmmm d.", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM '<br/><small>'yyyy. mmmm d.'</small>'", 
+        "month": "yyyy. mmmm", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM '<br/><small>yyyy. mmm d.'</small>'"
+   },
+    "bigdateformats": {
+            "fallback": [
+                    [1000000000,"%.2f milliárd évvel ezelőtt"],
+                    [1000000,"%.1f millió évvel ezelőtt"],
+                    [1000,"%.1f ezer évvel ezelőtt"],
+                    [1, "%f é.e."]
+            ],
+            "compact": [
+                    [1000000000,"%.2f md.é.e"],
+                    [1000000,"%.1f mó.é.e"],
+                    [1000,"%.1f e.é.e"],
+                    [1, "%f vuotta sitten"]
+            ],
+            "verbose": [
+                    [1000000000,"%.2f milliárd évvel ezelőtt"],
+                    [1000000,"%.1f millió évvel ezelőtt"],
+                    [1000,"%.1f ezer évvel ezelőtt"],
+                    [1, "%f évvel ezelőtt"]
+            ]
+    },
+    "bigdateformats": {
+            "fallback": [
+				    [1000000,"%.1f millió évvel ezelőtt"],
+				    [1000,"%.1f ezer évvel ezelőtt"],
+				    [1, "%f é.e."]
+			],
+		"compact": [
+		            [1000000000,"%.2f md.é.e"],
+				    [1000000,"%.1f mó.é.e"],
+				    [1000,"%.1f e.é.e"],
+				    [1, "%f vuotta sitten"]
+		    ],
+		"verbose": [
+		            [1000000000,"%.2f milliárd évvel ezelőtt"],
+				    [1000000,"%.1f millió évvel ezelőtt"],
+				    [1000,"%.1f ezer évvel ezelőtt"],
+				    [1, "%f évvel ezelőtt"]
+		    ]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hy.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hy.json
new file mode 100644
index 0000000000000000000000000000000000000000..edc614b352ce6f10253e287002bb1bca45d950cd
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/hy.json
@@ -0,0 +1,75 @@
+{
+    "lang": "hy", 
+    "date": {
+        "month_abbr": [
+            "Õ€Õ¶Õ¾.", 
+            "Õ“Õ¥Õ¿.", 
+            "Õ„Õ¡Ö€", 
+            "Ô±ÕºÖ€", 
+            "Õ„Õ¡Õµ", 
+            "Õ€Õ¸Ö‚Õ¶", 
+            "Õ€Õ¸Ö‚Õ¬", 
+            "Õ•Õ£Õ½.", 
+            "Սեպ.", 
+            "Õ€Õ¸Õ¯.", 
+            "Õ†Õ¸Õµ.", 
+            "Ô´Õ¥Õ¯."
+        ], 
+        "day_abbr": [
+            "Ô¿Õ«.", 
+            "ÔµÕ¯.", 
+            "ÔµÖ„.", 
+            "Õ‰Õ¸.", 
+            "Õ€Õ«.", 
+            "ÕˆÖ‚.", 
+            "Õ‡Õ¡."
+        ], 
+        "day": [
+            "Ô¿Õ«Ö€Õ¡Õ¯Õ«", 
+            "ÔµÖ€Õ¯Õ¸Ö‚Õ·Õ¡Õ¢Õ©Õ«", 
+            "ÔµÖ€Õ¥Ö„Õ·Õ¡Õ¢Õ©Õ«", 
+            "Õ‰Õ¸Ö€Õ¥Ö„Õ·Õ¡Õ¢Õ©Õ«", 
+            "Õ€Õ«Õ¶Õ£Õ·Õ¡Õ¢Õ©Õ«", 
+            "ÕˆÖ‚Ö€Õ¢Õ¡Õ©", 
+            "Õ‡Õ¡Õ¢Õ¡Õ©"
+        ], 
+        "month": [
+            "Õ€Õ¸Ö‚Õ¶Õ¾Õ¡Ö€", 
+            "Õ“Õ¥Õ¿Ö€Õ¾Õ¡Ö€", 
+            "Õ„Õ¡Ö€Õ¿", 
+            "Ô±ÕºÖ€Õ«Õ¬", 
+            "Õ„Õ¡ÕµÕ«Õ½", 
+            "Õ€Õ¸Ö‚Õ¶Õ«Õ½", 
+            "Õ€Õ¸Ö‚Õ¬Õ«Õ½", 
+            "Õ•Õ£Õ¸Õ½Õ¿Õ¸Õ½", 
+            "Սեպտեմբեր", 
+            "Õ€Õ¸Õ¯Õ¿Õ¥Õ´Õ¢Õ¥Ö€", 
+            "Õ†Õ¸ÕµÕ¥Õ´Õ¢Õ¥Ö€", 
+            "Ô´Õ¥Õ¯Õ¿Õ¥Õ´Õ¢Õ¥Ö€"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "hy"
+    }, 
+    "messages": {
+        "loading": "Ô²Õ¥Õ¼Õ¶Õ¸Ö‚Õ´", 
+        "contract_timeline": "Նեղացնել ժամանակագրությունը", 
+        "return_to_title": "ÕŽÕ¥Ö€Õ¡Õ¤Õ¡Õ¼Õ¶Õ¡Õ¬ Õ¾Õ¥Ö€Õ¶Õ¡Õ£Ö€Õ«Õ¶", 
+        "wikipedia": "Ô¸Õ½Õ¿ ÕŽÕ«Ö„Õ«ÕºÕ¥Õ¤Õ«Õ¡ Õ¡Õ¦Õ¡Õ¿ Õ°Õ¡Õ¶Ö€Õ¡Õ£Õ«Õ¿Õ¡Ö€Õ¡Õ¶Õ«", 
+        "loading_content": "Ô²Õ¸Õ¾Õ¡Õ¶Õ¤Õ¡Õ¯Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨ Õ¢Õ¥Õ¼Õ¶Õ¾Õ¸Ö‚Õ´ Õ§", 
+        "expand_timeline": "Լայնացնել ժամանակագրությունը", 
+        "loading_timeline": "ÔºÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ¡Õ£Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨ Õ¢Õ¥Õ¼Õ¶Õ¾Õ¸Ö‚Õ´ Õ§... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'at' H:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "H:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "H:MM '<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/id.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/id.json
new file mode 100644
index 0000000000000000000000000000000000000000..ba8f5dee153c1b947d589177a810ba5d42b8b4e5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/id.json
@@ -0,0 +1,75 @@
+{
+    "lang": "id", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Maret", 
+            "April", 
+            "Mei", 
+            "Juni", 
+            "July", 
+            "Agus.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Des."
+        ], 
+        "day_abbr": [
+            "Ahad", 
+            "Sen.", 
+            "Sel.", 
+            "Rabu", 
+            "Kamis", 
+            "Jum.", 
+            "Sab."
+        ], 
+        "day": [
+            "Ahad", 
+            "Senin", 
+            "Selasa", 
+            "Rabu", 
+            "Kamis", 
+            "Jum'at", 
+            "Sabtu"
+        ], 
+        "month": [
+            "Januari", 
+            "Februari", 
+            "Maret", 
+            "April", 
+            "Mei", 
+            "Juni", 
+            "Juli", 
+            "Agustus", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "id"
+    }, 
+    "messages": {
+        "loading": "Memuat", 
+        "contract_timeline": "Ciutkan Timeline", 
+        "return_to_title": "Kembali ke Judul", 
+        "wikipedia": "dari Wikipedia, ensiklopedia bebas", 
+        "loading_content": "Memuat Isi", 
+        "expand_timeline": "Kembangkan Timeline", 
+        "loading_timeline": "Memuat Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'pukul' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/is.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/is.json
new file mode 100644
index 0000000000000000000000000000000000000000..2117b8e81221c4329b5de063d56433d9197eb77a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/is.json
@@ -0,0 +1,75 @@
+{
+    "lang": "is", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "feb.", 
+            "mars", 
+            "apríl", 
+            "maí", 
+            "júní", 
+            "júlí", 
+            "ágúst", 
+            "sept.", 
+            "okt.", 
+            "nóv.", 
+            "des."
+        ], 
+        "day_abbr": [
+            "sun.", 
+            "mán.", 
+            "þri.", 
+            "mið.", 
+            "fim.", 
+            "fös.", 
+            "lau."
+        ], 
+        "day": [
+            "sunnudagur", 
+            "mánudagur", 
+            "þriðjudagur", 
+            "miðvikudagur", 
+            "fimmtudagur", 
+            "föstudagur", 
+            "laugardagur"
+        ], 
+        "month": [
+            "janúar", 
+            "febrúar", 
+            "mars", 
+            "apríl", 
+            "maí", 
+            "júní", 
+            "júlí", 
+            "ágúst", 
+            "september", 
+            "október", 
+            "nóvember", 
+            "desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "is"
+    }, 
+    "messages": {
+        "loading": "Raða", 
+        "contract_timeline": "Minnka tímalínu", 
+        "return_to_title": "Til baka á forsíðu", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Raða", 
+        "expand_timeline": "Stækka tímalínu", 
+        "loading_timeline": "Raða upp tímalínu... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "hh:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "hh:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>'dddd',' mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/it.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/it.json
new file mode 100644
index 0000000000000000000000000000000000000000..89a05c619bdee02004ee7450bdd6307573b35923
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/it.json
@@ -0,0 +1,76 @@
+{
+    "lang": "it", 
+    "date": {
+        "month_abbr": [
+            "Gen", 
+            "Feb", 
+            "Mar", 
+            "Apr", 
+            "Mag", 
+            "Giu", 
+            "Lug", 
+            "Ago", 
+            "Set", 
+            "Ott", 
+            "Nov", 
+            "Dic"
+        ], 
+        "day_abbr": [
+            "Dom.", 
+            "Lun.", 
+            "Mar.", 
+            "Mer.", 
+            "Gio.", 
+            "Ven.", 
+            "Sab."
+        ], 
+        "day": [
+            "Domenica", 
+            "Lunedí", 
+            "Martedí", 
+            "Mercoledí", 
+            "Giovedí", 
+            "Venerdí", 
+            "Sabato"
+        ], 
+        "month": [
+            "Gennaio", 
+            "Febbraio", 
+            "Marzo", 
+            "Aprile", 
+            "Maggio", 
+            "Giugno", 
+            "Luglio", 
+            "Agosto", 
+            "Settembre", 
+            "Ottobre", 
+            "Novembre", 
+            "Dicembre"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "it"
+    }, 
+    "messages": {
+        "loading": "Caricamento", 
+        "contract_timeline": "Contrai la Timeline", 
+        "return_to_title": "Ritorna all'inizio", 
+        "wikipedia": "Wikipedia, L’enciclopedia libera", 
+        "loading_content": "Caricamento contenuti", 
+        "expand_timeline": "Espandi la Timeline", 
+        "loading_timeline": "Caricamento Timeline... ",
+        "swipe_to_navigate": "Scorri per Navigare<br><span class='tl-button'>OK</span>"
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'alle' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/iw.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/iw.json
new file mode 100644
index 0000000000000000000000000000000000000000..5e726b3ca69dfbc0e993aa68632b63d26df44d25
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/iw.json
@@ -0,0 +1,76 @@
+{
+    "lang": "iw", 
+    "messages": {
+        "loading": "טוען...", 
+        "contract_timeline": "צמצם את ציר הזמן", 
+        "return_to_title": "חזור לכותרת", 
+        "wikipedia": "מויקיפדיה, האינציקלופדיה החופשית", 
+        "loading_content": "התוכן בטעינה...", 
+        "expand_timeline": "הרחב את ציר הזמן", 
+        "loading_timeline": "טוען את ציר הזמן... "
+    }, 
+    "api": {
+        "wikipedia": "he"
+    }, 
+    "direction": "rtl",
+    "date": {
+        "month_abbr": [
+            "ינואר", 
+            "פברואר", 
+            "מרץ", 
+            "אפריל", 
+            "מאי", 
+            "יוני", 
+            "יולי", 
+            "אוגוסט", 
+            "ספטמבר", 
+            "אוקטובר", 
+            "נובמבר", 
+            "דצמבר"
+        ], 
+        "day_abbr": [
+            "יום א'", 
+            "יום ב'", 
+            "יום ג'", 
+            "יום ד'", 
+            "יום ה'", 
+            "יום ו'", 
+            "שבת"
+        ], 
+        "day": [
+            "ראשון", 
+            "שני", 
+            "שלישי", 
+            "רביעי", 
+            "חמישי", 
+            "שישי", 
+            "שבת"
+        ], 
+        "month": [
+            "ינואר", 
+            "פברואר", 
+            "מרץ", 
+            "אפריל", 
+            "מאי", 
+            "יוני", 
+            "יולי", 
+            "אוגוסט", 
+            "ספטמבר", 
+            "אוקטובר", 
+            "נובמבר", 
+            "דצמבר"
+        ]
+    }, 
+    "dateformats": {
+        "full_long": "d' mmm,' yyyy 'at' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm,' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ja.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ja.json
new file mode 100644
index 0000000000000000000000000000000000000000..c753f7c8685472b9831420f197432c2edc7d6d12
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ja.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ja", 
+    "date": {
+        "month_abbr": [
+            "1月", 
+            "2月", 
+            "3月", 
+            "4月", 
+            "5月", 
+            "6月", 
+            "7月", 
+            "8月", 
+            "9月", 
+            "10月", 
+            "11月", 
+            "12月"
+        ], 
+        "day_abbr": [
+            "æ—¥", 
+            "月", 
+            "火", 
+            "æ°´", 
+            "木", 
+            "金", 
+            "土"
+        ], 
+        "day": [
+            "日曜日", 
+            "月曜日", 
+            "火曜日", 
+            "水曜日", 
+            "木曜日", 
+            "金曜日", 
+            "土曜日"
+        ], 
+        "month": [
+            "1月", 
+            "2月", 
+            "3月", 
+            "4月", 
+            "5月", 
+            "6月", 
+            "7月", 
+            "8月", 
+            "9月", 
+            "10月", 
+            "11月", 
+            "12月"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ja"
+    }, 
+    "messages": {
+        "loading": "ローディング", 
+        "contract_timeline": "タイムラインを縮めます", 
+        "return_to_title": "タイトルへ戻ります", 
+        "wikipedia": "出典:フリー百科事典『ウィキペディア(Wikipedia)』", 
+        "loading_content": "コンテンツをロードしています", 
+        "expand_timeline": "タイムラインを展開します", 
+        "loading_timeline": "タイムラインをロードしています…"
+    }, 
+    "dateformats": {
+        "full_long": "yyyy年m月d日 H時M分s秒", 
+        "full_short": "yyyy年m月d日", 
+        "full": "yyyy年 m月d日 (ddd)", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'yyyy年m月d日'</small>'", 
+        "month": "yyyy年 m月d日 (ddd)", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyyå¹´", 
+        "full_long_small_date": "HH:MM:ss'<br/><small>'yyyy年m月d日'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ka.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ka.json
new file mode 100644
index 0000000000000000000000000000000000000000..8d2c6603d12a7dce1748f381868a3ac0b97cd117
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ka.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ka", 
+    "date": {
+        "month_abbr": [
+            "იან.", 
+            "თებ.", 
+            "მარტი", 
+            "აპრ", 
+            "მაი.", 
+            "ივნ.", 
+            "ივლ.", 
+            "აგვ.", 
+            "სექ.", 
+            "ოქტ.", 
+            "ნოე.", 
+            "დეკ."
+        ], 
+        "day_abbr": [
+            "კვ.", 
+            "ორ.", 
+            "სამ.", 
+            "ოთხ.", 
+            "ხუთ.", 
+            "პარ.", 
+            "შაბ."
+        ], 
+        "day": [
+            "კვირა", 
+            "ორშაბათი", 
+            "სამშაბათი", 
+            "ოთხშაბათი", 
+            "ხუთშაბათი", 
+            "პარასკევი", 
+            "შაბათი"
+        ], 
+        "month": [
+            "იანვარი", 
+            "თებერვალი", 
+            "მარტი", 
+            "აპრილი", 
+            "მაისი", 
+            "ივნისი", 
+            "ივლისი", 
+            "აგვისტო", 
+            "სექტემბერი", 
+            "ოქტომბერი", 
+            "ნოემბერი", 
+            "დეკემბერი"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ka"
+    }, 
+    "messages": {
+        "loading": "ჩამოტვირთვა", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "დაბრუნდი თავში", 
+        "wikipedia": "თავისუფალი ენციკლოპედია Wikipedia-დან", 
+        "loading_content": "შინაარსის ჩამოტვირთვა", 
+        "expand_timeline": "გაშალე თაიმლაინი", 
+        "loading_timeline": "იტვირთება თაიმლაინი... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ko.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ko.json
new file mode 100644
index 0000000000000000000000000000000000000000..7e551939200c09de79f43d22a3835280a0c6d2d4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ko.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ko", 
+    "date": {
+        "month_abbr": [
+            "01", 
+            "02", 
+            "03", 
+            "04", 
+            "05", 
+            "06", 
+            "07", 
+            "08", 
+            "09", 
+            "10", 
+            "11", 
+            "12"
+        ], 
+        "day_abbr": [
+            "일", 
+            "ì›”", 
+            "í™”", 
+            "수", 
+            "목", 
+            "금", 
+            "토"
+        ], 
+        "day": [
+            "일요일", 
+            "월요일", 
+            "화요일", 
+            "수요일", 
+            "목요일", 
+            "금요일", 
+            "토요일"
+        ], 
+        "month": [
+            "1", 
+            "2", 
+            "3", 
+            "4", 
+            "5", 
+            "6", 
+            "7", 
+            "8", 
+            "9", 
+            "10", 
+            "11", 
+            "12"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ko"
+    }, 
+    "messages": {
+        "loading": "불러오는중", 
+        "contract_timeline": "타임라인 축소", 
+        "return_to_title": "첫화면으로", 
+        "wikipedia": "출처: 위키피디아, 우리 모두의 백과사전", 
+        "loading_content": "내용을 불러오고 있습니다.", 
+        "expand_timeline": "타임라인 확대", 
+        "loading_timeline": "타임라인을 불러오고 있습니다.... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'um' HH:MM", 
+        "full_short": "mm-dd", 
+        "full": "yyyy년 m월 d일 ", 
+        "month_short": "mm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'yyyy mmm d'</small>'", 
+        "month": "yyyyë…„ mì›”", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd','yyyy mmm d'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lb.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lb.json
new file mode 100644
index 0000000000000000000000000000000000000000..24e3a365e28c638444e21b56c9e42e29eb593bdd
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lb.json
@@ -0,0 +1,75 @@
+{
+    "lang": "lb", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mäe.", 
+            "Abr.", 
+            "Mee", 
+            "Jun.", 
+            "Jul", 
+            "Aug.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Dez."
+        ], 
+        "day_abbr": [
+            "Son.", 
+            "Méi.", 
+            "Dë.", 
+            "Më.", 
+            "Do.", 
+            "Fr.", 
+            "Sa."
+        ], 
+        "day": [
+            "Sonndeg", 
+            "Méindeg", 
+            "Dënschdeg", 
+            "Mëttwoch", 
+            "Donneschden", 
+            "Freiden", 
+            "Samschden"
+        ], 
+        "month": [
+            "Januar", 
+            "Februar", 
+            "Mäerz", 
+            "Abrëll", 
+            "Mee", 
+            "Juni", 
+            "Juli", 
+            "August", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Dezember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "lb"
+    }, 
+    "messages": {
+        "loading": "Lued", 
+        "contract_timeline": "Timeline verklengeren", 
+        "return_to_title": "Zeréck zum Titel", 
+        "wikipedia": "Vu Wikipedia, der fräier Enzyklopedie", 
+        "loading_content": "Inhalt lued", 
+        "expand_timeline": "Timeline vergréisseren", 
+        "loading_timeline": "Timeline gëtt gelueden... "
+    }, 
+    "dateformats": {
+        "full_long": "d'.' mmm yyyy 'um' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "d'.' mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'d'.' mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "hh:MM", 
+        "time_short": "hh:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM'<br/><small>d'.' mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lt.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lt.json
new file mode 100644
index 0000000000000000000000000000000000000000..4bac8d4fc42db789ee7a58eb4c6f572ffb8026d4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lt.json
@@ -0,0 +1,75 @@
+{
+    "lang": "lt", 
+    "date": {
+        "month_abbr": [
+            "Saus.", 
+            "Vas.", 
+            "Kov.", 
+            "Bal.", 
+            "Geg.", 
+            "Birž.", 
+            "Liep.", 
+            "Rugpj.", 
+            "Rug.", 
+            "Spal.", 
+            "Lapkr.", 
+            "Gruod."
+        ], 
+        "day_abbr": [
+            "Sek.", 
+            "Pirm.", 
+            "Antr.", 
+            "Treč.", 
+            "Ketv.", 
+            "Penkt.", 
+            "Šešt."
+        ], 
+        "day": [
+            "Sekmadienis", 
+            "Pirmadienis", 
+            "Antradienis", 
+            "Trečiadienis", 
+            "Ketvirtadienis", 
+            "Penktadienis", 
+            "Šeštadienis"
+        ], 
+        "month": [
+            "Sausio", 
+            "Vasario", 
+            "Kovo", 
+            "Balandžio", 
+            "Gegužės", 
+            "Birželio", 
+            "Liepos", 
+            "Rugpjūčio", 
+            "RugsÄ—jo", 
+            "Spalio", 
+            "Lapkričio", 
+            "Gruodžio"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "lt"
+    }, 
+    "messages": {
+        "loading": "Kraunama", 
+        "contract_timeline": "Sutraukti laiko juostÄ…", 
+        "return_to_title": "Grįžti į titulinį", 
+        "wikipedia": "IÅ¡ Vikipedijos, laisvosios enciklopedijos", 
+        "loading_content": "Kraunamas turinys... ", 
+        "expand_timeline": "IÅ¡plÄ—sti laiko juostÄ…", 
+        "loading_timeline": "Kraunama laiko juosta... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lv.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lv.json
new file mode 100644
index 0000000000000000000000000000000000000000..fb0a8f6c8c59392096d4676e1106dde41b006b16
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/lv.json
@@ -0,0 +1,75 @@
+{
+    "lang": "lv", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mar.", 
+            "Apr.", 
+            "Mai.", 
+            "JÅ«n.", 
+            "JÅ«l.", 
+            "Aug.", 
+            "Sep.", 
+            "Okt.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Sun.", 
+            "Mon.", 
+            "Tues.", 
+            "Wed.", 
+            "Thurs.", 
+            "Fri.", 
+            "Sat."
+        ], 
+        "day": [
+            "Svētdiena", 
+            "Pirmdiena", 
+            "Otrdiena", 
+            "Trešdiena", 
+            "Ceturtdiena", 
+            "Piektdiena", 
+            "Sestdiena"
+        ], 
+        "month": [
+            "Janvāris", 
+            "Februāris", 
+            "Marts", 
+            "Aprīlis", 
+            "Maijs", 
+            "JÅ«nijs", 
+            "JÅ«lijs", 
+            "Augusts", 
+            "Septembris", 
+            "Oktobris", 
+            "Novembris", 
+            "Decembris"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "lv"
+    }, 
+    "messages": {
+        "loading": "Ielādējas", 
+        "contract_timeline": "Sašaurināt grafiku", 
+        "return_to_title": "Atgriezties uz sākumu", 
+        "wikipedia": "No Wikipedia, brīvās enciklopēdijas", 
+        "loading_content": "Ielādējas saturs", 
+        "expand_timeline": "Izvērst grafiku", 
+        "loading_timeline": "Ielādējas grafiks... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "d. mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ms.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ms.json
new file mode 100644
index 0000000000000000000000000000000000000000..135f389f64edd022b25f8467ba57d9b8a94536ff
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ms.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ms", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mac", 
+            "Apr", 
+            "Mei", 
+            "Jun", 
+            "Jul", 
+            "Ogos.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Dis."
+        ], 
+        "day_abbr": [
+            "Ahd.", 
+            "Isn.", 
+            "Sel.", 
+            "Rab.", 
+            "Kha.", 
+            "Jum.", 
+            "Sab."
+        ], 
+        "day": [
+            "Ahad", 
+            "Isnin", 
+            "Selasa", 
+            "Rabu", 
+            "Khamis", 
+            "Jumaat", 
+            "Sabtu"
+        ], 
+        "month": [
+            "Januari", 
+            "Februari", 
+            "Mac", 
+            "April", 
+            "Mei", 
+            "Jun", 
+            "Julai", 
+            "Ogos", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Disember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ms"
+    }, 
+    "messages": {
+        "loading": "Memuat", 
+        "contract_timeline": "Kecilkan Garis Masa", 
+        "return_to_title": "Kembali ke Tajuk", 
+        "wikipedia": "Daripada Wikipedia, ensiklopedia bebas.", 
+        "loading_content": "Memuat Kandungan", 
+        "expand_timeline": "Besarkan Garis Masa", 
+        "loading_timeline": "Memuat Garis Masa... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm yyyy 'jam' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/my.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/my.json
new file mode 100644
index 0000000000000000000000000000000000000000..33448abaf2188eb38a02c55ebe89341bc2d01f54
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/my.json
@@ -0,0 +1,124 @@
+{       
+    "name": "Burmese",  
+    "lang": "my",
+    "date": {
+        "month_abbr": [
+            "ဇန်", 
+            "ဖေ", 
+            "မတ်", 
+            "ဧပြီ", 
+            "မေ", 
+            "ဇွန်", 
+            "ဇူလိုင်", 
+            "ဩဂုတ်", 
+            "စက်", 
+            "အောက်", 
+            "နို", 
+            "ဒီ"
+        ], 
+        "day_abbr": [
+            "နွေ", 
+            "လာ", 
+            "အင်္ဂါ", 
+            "ဗု", 
+            "ကြာ", 
+            "သော", 
+            "စနေ"
+        ],  
+        "day":  [
+            "တနင်္ဂနွေ",
+            "တနင်္လာ",
+            "အင်္ဂါ",
+            "ဗုဒ္ဓဟူး",
+            "ကြာသပတေး",
+            "သောကြာ",
+            "စနေ"
+        ],      
+        "month": [
+            "ဇန်နဝါရီ",
+            "ဖေဖော်ဝါရီ",
+            "မတ်",
+            "ဧပြီ",
+            "မေ",
+            "ဇွန်",
+            "ဇူလိုင်",
+            "ဩဂုတ်",
+            "စက်တင်ဘာ",
+            "အောက်တိုဘာ",
+            "နိုဝင်ဘာ",
+            "ဒီဇင်ဘာ"
+        ]       
+    },      
+    "api":  {   
+        "wikipedia": "my"
+    },  
+    "messages": {   
+        "loading": "လုပ်ဆောင်နေသည်",
+        "error": "မှားယွင်းချက်",
+        "contract_timeline": "အချိန်အလိုက် မှတ်တမ်းစာချုပ်",
+        "return_to_title": "ခေါင်းစဉ်သို့ ပြန်သွားရန်",
+        "wikipedia": "ဝီကီ အခမဲ့ စွယ်စုံကျမ်းမှ",
+        "loading_content": "အကြောင်းအရာ လုပ်ဆောင်နေသည်",
+        "expand_timeline": "အချိန်အလိုက် မှတ်တမ်း အား ချဲ့သည်",
+        "loading_timeline": "အချိန်အလိုက် မှတ်တမ်း လုပ်ဆောင်နေသည်",
+        "swipe_to_navigate": "လေ့လာစူးစမ်း ဖို့ ပွတ်ဆွဲ<br><span class='tl-button'>OK</span>",
+        "unknown_read_err": "သင်၏အချက်အလက် ကိန်းဂဏန်းဇယား အား ဖတ်ရန်ကြိုးစား နေစဉ် မျှော်လင့်မထားပဲ မှားယွင်းခဲ့ပါသည်",
+        "invalid_url_err": "အချိန်အလိုက်မှတ်တမ်း အချက်အလက်အား ဖတ်ရန် မလုပ်ဆောင်နိုင်ပါ။ သင်၏ လင့်ခ်  သည် ဂူဂလ် စာရင်းကိန်းဂဏန်း အချက်အလက် ဇယား (သို့မဟုတ်) အချိန်အလိုက် မှတ်တမ်း JSON ဖိုင် နှင့် ကိုက်ညီမူ့ ရှိရန် လိုအပ်ပါသည်။",
+        "network_err": "သင်၏ ဂူဂလ် စာရင်းကိန်းဂဏန်း အချက်အလက် ဇယား အား ဖတ်ရန် မလုပ်ဆောင်နိုင်ပါ။ ဝက်ဆိုက် ပေါ်သို့ ဦးစွာတင်ထားရန် လိုအပ်ပါသည်",
+        "empty_feed_err": "အချက်အလက် များအား ရှာမတွေ့ပါ",
+        "missing_start_date_err": "စတင်သည့် နေ့အား ရှာမတွေ့ပါ။",
+        "invalid_data_format_err": "ခေါင်းစဉ် အတန်းအား ပြုပြင် မွန်းမံပြီးပါပြီ",
+        "date_compare_err": "မတူညီသော အတိုင်းအတာ ပေါ်တွင် အချိန်အလိုက်မှတ်တမ်း နေ့စွဲများ အား နှိုင်းယှဉ်လို့ မရပါ။",
+        "invalid_scale_err": "အတိုင်းအတာ မှားနေပါသည်။",
+        "invalid_date_err": "ရက်စွဲ မှားနေပါသည်။ လ၊ နေ့ နှင့် နှစ် များသည် နံပါတ်များ နှင့် ဖြစ်ရပါမည်",
+        "invalid_separator_error": "အချိန်ကာလ ပြ မှားနေပါသည်။ (:) လွဲမှားအသုံး ပြုထားခြင်း (သို့မဟုတ်) (.) နှင့် ခွဲခြားထားခြင်း။",
+        "invalid_hour_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (နာရီ)",
+        "invalid_minute_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (မိနစ်)",
+        "invalid_second_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (စက္ကန့်)",
+        "invalid_fractional_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (အနုစိတ် စက္ကန့်များ)",
+        "invalid_second_fractional_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (စက္ကန့် များနှင့် အနုစိတ် စက္ကန့်များ)",
+        "invalid_year_err": "နှစ် မှားနေပါသည်။",
+        "flickr_notfound_err": "ပုံအား ရှာမတွေ့ပါ (သို့မဟုတ်) ကိုယ်ပိုင်ပြုလုပ်ထားပါသည်။",
+        "flickr_invalidurl_err": "ဖလစ်ကာ လင့်ခ် မှားနေပါသည်။",
+        "imgur_invalidurl_err": "Imgur လင့်ခ် မှားနေပါသည်။",
+        "twitter_invalidurl_err": "တွစ်တာ လင့်ခ် မှားနေပါသည်။",
+        "twitter_load_err": "tweet အားတင်လို့ မရပါ",
+        "twitterembed_invalidurl_err": "ဝင်နေသော တွစ်တာ လင့်ခ် မှားနေပါသည်။",
+        "wikipedia_load_err": "ဝီကီအား မဝင်ရောက်နိုင်ပါ။",
+        "youtube_invalidurl_err": "ယူကျူ့ လင်ခ့် မှားနေပါသည်။",
+        "spotify_invalid_url": "စပေါ့တီဖိုင်း လင့်ခ် မှားနေပါသည်။",
+        "template_value_err": "ကိန်းရှင်အတွက် ပံ့ပိုးမှု မရှိပါ။",
+        "invalid_rgb_err": "RGB ငြင်းဆိုမှု မှားနေပါသည်။",
+        "time_scale_scale_err": "အတိုင်းအတာ အတွက် အချိန်မှ ရက်စွဲ မည်သို့ ရရှိသည်ကို မသိပါ။",
+        "axis_helper_no_options_err": "Axis helper အား ပြုပြင်ရန် လိုအပ်ပါသည်။",
+        "axis_helper_scale_err": "အတိုင်းအတာအတွက် AxisHelper မရရှိနိုင်ပါ။"
+    },
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT",
+        "full_short": "mmm d",
+        "full": "mmmm d',' yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "h:MM TT",
+        "time_short": "h:MM:ss TT",
+        "year": "yyyy",
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    },
+    "era_labels": { 
+        "positive_year": {
+            "prefix": "",
+            "suffix": ""
+        },
+        "negative_year": { 
+            "prefix": "",
+            "suffix": "BCE"
+        }
+    },
+    "period_labels": {  
+        "t": ["a", "p"],
+        "tt": ["am", "pm"],
+        "T": ["A", "P"],
+        "TT": ["AM", "PM"]
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ne.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ne.json
new file mode 100644
index 0000000000000000000000000000000000000000..8791c8a4f9f250ca7afef125a99a8cc07d507f75
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ne.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ne", 
+    "date": {
+        "month_abbr": [
+            "जनवरी", 
+            "फेब्रुवरी", 
+            "मार्च", 
+            "अप्रिल", 
+            "मे", 
+            "जून", 
+            "जुलाई", 
+            "अगस्ट", 
+            "सेप्टेम्बर", 
+            "अक्टोबर", 
+            "नोभेम्बर", 
+            "डिसेम्बर"
+        ], 
+        "day_abbr": [
+            "आइतबार", 
+            "सोमबार", 
+            "मंगलबार", 
+            "बुधबार", 
+            "बिहिबार", 
+            "शुक्रबार", 
+            "शनिबार"
+        ], 
+        "day": [
+            "आइतबार", 
+            "सोमबार", 
+            "मंगलबार", 
+            "बुधबार", 
+            "बिहिबार", 
+            "शुक्रबार", 
+            "शनिबार"
+        ], 
+        "month": [
+            "जनवरी", 
+            "फेब्रुवरी", 
+            "मार्च", 
+            "अप्रिल", 
+            "मे", 
+            "जून", 
+            "जुलाई", 
+            "अगस्ट", 
+            "सेप्टेम्बर", 
+            "अक्टोबर", 
+            "नोभेम्बर", 
+            "डिसेम्बर"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ne"
+    }, 
+    "messages": {
+        "loading": "लोड हुदैछ", 
+        "contract_timeline": "टाइमलाइन छोटो बनाउनुहोस्", 
+        "return_to_title": "शीर्षकमा फर्कनुहोस्", 
+        "wikipedia": "विकिपिडियाबाट", 
+        "loading_content": "सामग्री लोड हुदैछ", 
+        "expand_timeline": "टाइमलाइन लामो बनाउनुहोस्", 
+        "loading_timeline": "टाइमलाइन लोड हुदैछ... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/nl.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/nl.json
new file mode 100644
index 0000000000000000000000000000000000000000..8ccee4cc5c3443e2418a530d21b84a2d2c167788
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/nl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "nl", 
+    "date": {
+        "month_abbr": [
+            "jan", 
+            "febr", 
+            "maa", 
+            "apr", 
+            "mei", 
+            "juni", 
+            "juli", 
+            "aug", 
+            "sept", 
+            "okt", 
+            "nov", 
+            "dec"
+        ], 
+        "day_abbr": [
+            "zo", 
+            "ma", 
+            "di", 
+            "wo", 
+            "do", 
+            "vr", 
+            "za"
+        ], 
+        "day": [
+            "zondag", 
+            "maandag", 
+            "dinsdag", 
+            "woensdag", 
+            "donderdag", 
+            "vrijdag", 
+            "zaterdag"
+        ], 
+        "month": [
+            "januari", 
+            "februari", 
+            "maart", 
+            "april", 
+            "mei", 
+            "juni", 
+            "juli", 
+            "augustus", 
+            "september", 
+            "oktober", 
+            "november", 
+            "december"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "nl"
+    }, 
+    "messages": {
+        "loading": "Laden", 
+        "contract_timeline": "Tijdlijn inzoomen", 
+        "return_to_title": "Terug naar het begin", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Inhoud laden", 
+        "expand_timeline": "Tijdlijn uitzoomen", 
+        "loading_timeline": "Tijdlijn laden ... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'om' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/no.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/no.json
new file mode 100644
index 0000000000000000000000000000000000000000..5bb8a4da30a613ce510184095ffa6a1fc331240b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/no.json
@@ -0,0 +1,76 @@
+{
+    "lang": "no", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mars", 
+            "Apr.", 
+            "Mai", 
+            "Juni", 
+            "Juli", 
+            "Aug.", 
+            "Sep.", 
+            "Okt.", 
+            "Nov.", 
+            "Des."
+        ], 
+        "day_abbr": [
+            "Søn.", 
+            "Man.", 
+            "Tir.", 
+            "Ons.", 
+            "Tor.", 
+            "Fre.", 
+            "Lør."
+        ], 
+        "day": [
+            "Søndag", 
+            "Mandag", 
+            "Tirsdag", 
+            "Onsdag", 
+            "Torsdag", 
+            "Fredag", 
+            "Lørdag"
+        ], 
+        "month": [
+            "Januar", 
+            "Februar", 
+            "Mars", 
+            "April", 
+            "Mai", 
+            "Juni", 
+            "Juli", 
+            "August", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "no"
+    }, 
+    "messages": {
+        "loading": "Laster", 
+        "contract_timeline": "Krymp tidslinje", 
+        "return_to_title": "Tilbake til tittel", 
+        "wikipedia": "Fra Wikipedia, den frie encyklopedi", 
+        "loading_content": "Laster innhold", 
+        "expand_timeline": "Utvid tidslinje", 
+        "loading_timeline": "Laster tidslinje... ",
+        "swipe_to_navigate": "Sveip for å navigere<br><span class='tl-button'>OK</span>"
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d. mmm',' yyyy 'kl.' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d. mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pl.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pl.json
new file mode 100644
index 0000000000000000000000000000000000000000..ef557a34fb14cf81086e6c71d466978730baba73
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "pl", 
+    "date": {
+        "month_abbr": [
+            "Sty.", 
+            "Lut.", 
+            "Mar.", 
+            "Kwi.", 
+            "Maj.", 
+            "Cze.", 
+            "Lip.", 
+            "Sie.", 
+            "Wrz.", 
+            "Paź.", 
+            "Lis.", 
+            "Gru."
+        ], 
+        "day_abbr": [
+            "Nie.", 
+            "Pon.", 
+            "Wto.", 
+            "Åšro.", 
+            "Czw.", 
+            "PiÄ….", 
+            "Sob."
+        ], 
+        "day": [
+            "Niedziela", 
+            "Poniedziałek", 
+            "Wtorek", 
+            "Åšroda", 
+            "Czwartek", 
+            "PiÄ…tek", 
+            "Sobota"
+        ], 
+        "month": [
+            "Stycznia", 
+            "Lutego", 
+            "Marca", 
+            "Kwietnia", 
+            "Maja", 
+            "Czerwca", 
+            "Lipca", 
+            "Sierpnia", 
+            "Września", 
+            "Października", 
+            "Listopada", 
+            "Grudnia"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "pl"
+    }, 
+    "messages": {
+        "loading": "Ładowanie", 
+        "contract_timeline": "Zmniejsz Timeline", 
+        "return_to_title": "Wróć do tytułu", 
+        "wikipedia": "Z Wikipedii, wolnej encyklopedii", 
+        "loading_content": "Ładowanie zawartości", 
+        "expand_timeline": "Powiększ Timeline", 
+        "loading_timeline": "Ładowanie Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'um' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pt-br.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pt-br.json
new file mode 100644
index 0000000000000000000000000000000000000000..7c99c660a1a331661a8973023877ad4ed68ffead
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pt-br.json
@@ -0,0 +1,75 @@
+{
+    "lang": "pt-br", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Fev.", 
+            "Mar.", 
+            "Abr.", 
+            "Mai.", 
+            "Jun.", 
+            "Jul.", 
+            "Ago.", 
+            "Set.", 
+            "Out.", 
+            "Nov.", 
+            "Dez."
+        ], 
+        "day_abbr": [
+            "Dom.", 
+            "Seg.", 
+            "Ter.", 
+            "Qua.", 
+            "Qui.", 
+            "Sex.", 
+            "Sáb."
+        ], 
+        "day": [
+            "Domingo", 
+            "Segunda", 
+            "Terça", 
+            "Quarta", 
+            "Quinta", 
+            "Sexta", 
+            "Sábado"
+        ], 
+        "month": [
+            "Janeiro", 
+            "Fevereiro", 
+            "Março", 
+            "Abril", 
+            "Maio", 
+            "Junho", 
+            "Julho", 
+            "Agosto", 
+            "Setembro", 
+            "Outubro", 
+            "Novembro", 
+            "Dezembro"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "pt"
+    }, 
+    "messages": {
+        "loading": "Carregando", 
+        "contract_timeline": "Contrair Timeline", 
+        "return_to_title": "Voltar para o título", 
+        "wikipedia": "Wikipédia, A enciclopédia livre", 
+        "loading_content": "Carregando Conteúdo", 
+        "expand_timeline": "Expandir Timeline", 
+        "loading_timeline": "Carregando Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d 'de' mmm',' yyyy 'às' hh:MM TT", 
+        "full_short": "d 'de' mmm", 
+        "full": "d 'de' mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "hh:MM TT'<br/><small>'d 'de' mmmm',' yyyy'</small>'", 
+        "month": "mmmm 'de' yyyy", 
+        "time_no_seconds_short": "hh:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>'dddd',' d 'de' mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pt.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pt.json
new file mode 100644
index 0000000000000000000000000000000000000000..b44dbb3f0a7a0e318855b2f3b2a0510b0155fdba
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/pt.json
@@ -0,0 +1,75 @@
+{
+    "lang": "pt", 
+    "date": {
+        "month_abbr": [
+            "Jan", 
+            "Fev", 
+            "Mar", 
+            "Abr", 
+            "Maio", 
+            "Jun", 
+            "Jul", 
+            "Ago", 
+            "Set", 
+            "Out", 
+            "Nov", 
+            "Dez"
+        ], 
+        "day_abbr": [
+            "Dom", 
+            "Seg", 
+            "Ter", 
+            "Qua", 
+            "Qui", 
+            "Sex", 
+            "Sab"
+        ], 
+        "day": [
+            "Domingo", 
+            "Segunda", 
+            "Terça", 
+            "Quarta", 
+            "Quinta", 
+            "Sexta", 
+            "Sabado"
+        ], 
+        "month": [
+            "Janeiro", 
+            "Fevereiro", 
+            "Março", 
+            "Abril", 
+            "Maio", 
+            "Junho", 
+            "Julho", 
+            "Agosto", 
+            "Setembro", 
+            "Outubro", 
+            "Novembro", 
+            "Dezembro"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "pt"
+    }, 
+    "messages": {
+        "loading": "A carregar", 
+        "contract_timeline": "Colapsar Timeline", 
+        "return_to_title": "Voltar ao Título", 
+        "wikipedia": "Wikipedia, A enciclopedia Livre.", 
+        "loading_content": "A carregar o conteúdo", 
+        "expand_timeline": "Expandir Timeline", 
+        "loading_timeline": "A carregar a timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/rm.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/rm.json
new file mode 100644
index 0000000000000000000000000000000000000000..cb0d34a7e0825f0311081c8cc271c7262ce66854
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/rm.json
@@ -0,0 +1,75 @@
+{
+    "lang": "rm", 
+    "date": {
+        "month_abbr": [
+            "Schan.", 
+            "Favr.", 
+            "Mars", 
+            "Avr.", 
+            "Matg", 
+            "Zercl.", 
+            "Fan.", 
+            "Avust", 
+            "Sett.", 
+            "Oct.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Du", 
+            "Gli", 
+            "Ma", 
+            "Me", 
+            "Gie", 
+            "Ve", 
+            "So"
+        ], 
+        "day": [
+            "Dumengia", 
+            "Glindesdi", 
+            "Mardi", 
+            "Mesemna", 
+            "Gievgia", 
+            "Venderdi", 
+            "Sonda"
+        ], 
+        "month": [
+            "Schaner", 
+            "Favrer", 
+            "Mars", 
+            "Avrigl", 
+            "Matg", 
+            "Zercladur", 
+            "Fanadur", 
+            "Avust", 
+            "Settember", 
+            "October", 
+            "November", 
+            "December"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "rm"
+    }, 
+    "messages": {
+        "loading": "Chargiar", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Turnar al titel", 
+        "wikipedia": "Da Vichipedia, l'enciclopedia libra", 
+        "loading_content": "Chargiar il cuntegn", 
+        "expand_timeline": "Expander la cronologia", 
+        "loading_timeline": "Chargiar la cronologia... "
+    }, 
+    "dateformats": {
+        "full_long": "d 'da' mmm yyyy', las' HH:M", 
+        "full_short": "d 'da' mmm", 
+        "full": "d 'da' mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:M'<br/><small>'d 'da' mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:M", 
+        "time_short": "HH:M:s", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:M'<br/><small>d 'da' mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ro.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ro.json
new file mode 100644
index 0000000000000000000000000000000000000000..ad6a0756e5f80d225e2d28a594cf32f421a05893
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ro.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ro", 
+    "date": {
+        "month_abbr": [
+            "Ian.", 
+            "Feb.", 
+            "Mar.", 
+            "Apr.", 
+            "Mai", 
+            "Iun.", 
+            "Iul.", 
+            "Aug.", 
+            "Sep.", 
+            "Oct.", 
+            "Noi.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Dum.", 
+            "Luni", 
+            "Mar.", 
+            "Mie.", 
+            "Joi", 
+            "Vin.", 
+            "Sâm."
+        ], 
+        "day": [
+            "Duminică", 
+            "Luni", 
+            "Marți", 
+            "Miercuri", 
+            "Joi", 
+            "Vineri", 
+            "Sâmbătă"
+        ], 
+        "month": [
+            "Ianuarie", 
+            "Februarie", 
+            "Martie", 
+            "Aprilie", 
+            "Mai", 
+            "Iunie", 
+            "Iulie", 
+            "August", 
+            "Septembrie", 
+            "Octombrie", 
+            "Noiembrie", 
+            "Decembrie"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ro"
+    }, 
+    "messages": {
+        "loading": "Se încarcă", 
+        "contract_timeline": "Restrânge cronologia", 
+        "return_to_title": "ÃŽnapoi la titlu", 
+        "wikipedia": "De pe Wikipedia, enciclopedia gratuită", 
+        "loading_content": "Se încarcă conținutul", 
+        "expand_timeline": "Extinde cronologia", 
+        "loading_timeline": "Se încarcă cronologia... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'at' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ru.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ru.json
new file mode 100644
index 0000000000000000000000000000000000000000..294193ae9862d920145f26a4f7f6b860b3c04d59
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ru.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ru", 
+    "date": {
+        "month_abbr": [
+            "янв.", 
+            "фев.", 
+            "март", 
+            "апр.", 
+            "май", 
+            "июнь", 
+            "июль", 
+            "авг.", 
+            "сент.", 
+            "окт.", 
+            "нояб.", 
+            "дек."
+        ], 
+        "day_abbr": [
+            "вск.", 
+            "пн.", 
+            "вт.", 
+            "ср.", 
+            "чт.", 
+            "пт.", 
+            "сб."
+        ], 
+        "day": [
+            "воскресенье", 
+            "понедельник", 
+            "вторник", 
+            "среда", 
+            "четверг", 
+            "пятница", 
+            "суббота"
+        ], 
+        "month": [
+            "января", 
+            "февраля", 
+            "марта", 
+            "апреля", 
+            "мая", 
+            "июня", 
+            "июля", 
+            "августа", 
+            "сентября", 
+            "октября", 
+            "ноября", 
+            "декабря"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ru"
+    }, 
+    "messages": {
+        "loading": "Загрузка", 
+        "contract_timeline": "Уменьшить", 
+        "return_to_title": "Вернуться к заголовку", 
+        "wikipedia": "Из Wikipedia", 
+        "loading_content": "Загрузка контента", 
+        "expand_timeline": "Увеличить", 
+        "loading_timeline": "Загрузка... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'в' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "H:MM", 
+        "time_short": "H:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/si.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/si.json
new file mode 100644
index 0000000000000000000000000000000000000000..e77472089a888ba962b26a9f44c405904d625f14
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/si.json
@@ -0,0 +1,74 @@
+{
+    "lang": "si", 
+    "date": {
+        "month_abbr": [
+            "ජන.", 
+            "පෙබ.", 
+            "මාර්තු", 
+            "අප්‍රේල්", 
+            "මැයි", 
+            "ජුනි", 
+            "ජුලි", 
+            "අගෝ.", 
+            "සැප්.", 
+            "ඔක්.", 
+            "නොවැ.", 
+            "දෙසැ."
+        ], 
+        "day_abbr": [
+            "ඉරි.", 
+            "සදු.", 
+            "අග.", 
+            "බදා.", 
+            "බ්‍රහස්.", 
+            "සිකු.", 
+            "සෙන."
+        ], 
+        "day": [
+            "ඉරිදා", 
+            "සදුදා", 
+            "අගහරුවදා", 
+            "බදාදා", 
+            "බ්‍රහස්පතින්දා", 
+            "සිකුරාදා", 
+            "සෙනසුරාදා"
+        ], 
+        "month": [
+            "ජනවාරි", 
+            "පෙබරවාරි", 
+            "මාර්තු", 
+            "අප්‍රේල්", 
+            "මැයි", 
+            "ජූනි", 
+            "ජූලි", 
+            "අගෝස්තු", 
+            "සැප්තැම්බර්", 
+            "ඔක්තෝම්බර්", 
+            "නොවැම්බර්", 
+            "දෙසැම්බර්"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "si"
+    }, 
+    "messages": {
+        "loading": "ලෝඩ් වෙමින්", 
+        "contract_timeline": "කාල රේඛාව අකුලන්න", 
+        "return_to_title": "නැවත මාතෘකාවට", 
+        "wikipedia": "විකිපීඩියා, නිදහස් විශ්වකෝෂය වෙතින්", 
+        "loading_content": "අන්තර්ගතය ලෝඩ් වෙමින්", 
+        "expand_timeline": "කාල රේඛාව විහිදන්න", 
+        "loading_timeline": "කාල රේඛාව ලෝඩ් වෙමින්... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "time_no_seconds_short": "h:MM TT", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "full": "mmmm d',' yyyy", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sk.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sk.json
new file mode 100644
index 0000000000000000000000000000000000000000..8caa5aeaf6d69a9e948a5dcaff038e718b3c39ed
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sk.json
@@ -0,0 +1,75 @@
+{
+    "lang": "sk", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Marec", 
+            "Apr&#237;l", 
+            "M&#225;j", 
+            "J&#250;n", 
+            "J&#250;l", 
+            "Aug.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Ned.", 
+            "Pon.", 
+            "Uto.", 
+            "Str.", 
+            "&#352;tv.", 
+            "Pia.", 
+            "Sob."
+        ], 
+        "day": [
+            "Nede&#318;a", 
+            "Pondelok", 
+            "Utorok", 
+            "Streda", 
+            "&#352;tvrtok", 
+            "Piatok", 
+            "Sobota"
+        ], 
+        "month": [
+            "Janu&#225;r", 
+            "Febru&#225;r", 
+            "Marec", 
+            "Apr&#237;l", 
+            "M&#225;j", 
+            "J&#250;n", 
+            "J&#250;l", 
+            "August", 
+            "September", 
+            "Okt&#243;ber", 
+            "November", 
+            "December"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "sk"
+    }, 
+    "messages": {
+        "loading": "Na&#269;&#237;tanie", 
+        "contract_timeline": "Zmen&#353;i&#357; &#269;asov&#250; os", 
+        "return_to_title": "Sp&#228;&#357; na &#250;vod", 
+        "wikipedia": "Z Wikipedie, encyklop&#233;die zadarmo", 
+        "loading_content": "Na&#269;&#237;tam obsah", 
+        "expand_timeline": "Zv&#228;&#269;&#353;i&#357; &#269;asov&#250; os", 
+        "loading_timeline": "Na&#269;&#237;tam &#269;asov&#250; os... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "d. mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sl.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sl.json
new file mode 100644
index 0000000000000000000000000000000000000000..2709c264dfc40a5cf346c362ffc72bfe5141efef
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "sl", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "feb.", 
+            "marec", 
+            "april", 
+            "maj", 
+            "junij", 
+            "july", 
+            "avg.", 
+            "sept.", 
+            "okt.", 
+            "nov.", 
+            "dec."
+        ], 
+        "day_abbr": [
+            "ned.", 
+            "pon.", 
+            "tor.", 
+            "sre.", 
+            "čet.", 
+            "pet.", 
+            "sob."
+        ], 
+        "day": [
+            "nedelja", 
+            "ponedeljek", 
+            "torek", 
+            "sreda", 
+            "čertek", 
+            "petek", 
+            "sobota"
+        ], 
+        "month": [
+            "januar", 
+            "februar", 
+            "marec", 
+            "april", 
+            "maj", 
+            "junij", 
+            "julij", 
+            "avgust", 
+            "september", 
+            "oktober", 
+            "november", 
+            "december"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "sl"
+    }, 
+    "messages": {
+        "loading": "Nalaganje", 
+        "contract_timeline": "Pokrči časovni trak", 
+        "return_to_title": "Nazaj na naslov", 
+        "wikipedia": "Vir Wikipedija", 
+        "loading_content": "Nalaganje vsebine", 
+        "expand_timeline": "Razširi časovni trak", 
+        "loading_timeline": "Nalagam časovni trak... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm yyyy 'ob' hh:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM' 'd mmmm' 'yyyy", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM' d mmm yyyy"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sr-cy.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sr-cy.json
new file mode 100644
index 0000000000000000000000000000000000000000..ca1d7d497719027fdf23ce96964f550b541c0f65
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sr-cy.json
@@ -0,0 +1,75 @@
+{
+    "lang": "рп", 
+    "date": {
+        "month_abbr": [
+            "Јан.", 
+            "Феб.", 
+            "Март", 
+            "Апр.", 
+            "Мај", 
+            "Јун", 
+            "Јул", 
+            "Авг.", 
+            "Сеп.", 
+            "Окт.", 
+            "Нов.", 
+            "Дец."
+        ], 
+        "day_abbr": [
+            "Нед.", 
+            "Пон.", 
+            "Уто.", 
+            "Сре.", 
+            "Чет.", 
+            "Пет.", 
+            "Суб."
+        ], 
+        "day": [
+            "Недеља", 
+            "Понедељак", 
+            "Уторак", 
+            "Среда", 
+            "Четвртак", 
+            "Петак", 
+            "Субота"
+        ], 
+        "month": [
+            "Јануар", 
+            "Фебруар", 
+            "Март", 
+            "Април", 
+            "Мај", 
+            "Јун", 
+            "Јул", 
+            "Август", 
+            "Септембар", 
+            "Октобар", 
+            "Новембар", 
+            "Децембар"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "рп"
+    }, 
+    "messages": {
+        "loading": "Учитава се", 
+        "contract_timeline": "Умањи", 
+        "return_to_title": "Почетак", 
+        "wikipedia": "Из Википедије, слободне енциклопедије", 
+        "loading_content": "Садржај се учитава", 
+        "expand_timeline": "Увећај", 
+        "loading_timeline": "Учитавање... "
+    }, 
+    "dateformats": {
+        "full_long": "d. mmm yyyy. 'u' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm yyyy.", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy.'</small>'", 
+        "month": "mmmm yyyy.", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy.", 
+        "full_long_small_date": "HH:MM'<br/><small>d. mmm yyyy.'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sr.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sr.json
new file mode 100644
index 0000000000000000000000000000000000000000..6af4820508dac9c990594e7513868dd9d68c87b3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sr.json
@@ -0,0 +1,75 @@
+{
+    "lang": "sr", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mart", 
+            "Apr.", 
+            "Maj", 
+            "Jun", 
+            "Jul", 
+            "Avg.", 
+            "Sep.", 
+            "Okt.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Ned.", 
+            "Pon.", 
+            "Uto.", 
+            "Sre.", 
+            "ÄŒet.", 
+            "Pet.", 
+            "Sub."
+        ], 
+        "day": [
+            "Nedelja", 
+            "Ponedeljak", 
+            "Utorak", 
+            "Sreda", 
+            "ÄŒetvratk", 
+            "Petak", 
+            "Subota"
+        ], 
+        "month": [
+            "januar", 
+            "Februar", 
+            "Mart", 
+            "April", 
+            "Maj", 
+            "Jun", 
+            "Jul", 
+            "Avgust", 
+            "Septembar", 
+            "Oktobar", 
+            "Novembar", 
+            "Decembar"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "sr"
+    }, 
+    "messages": {
+        "loading": "Učitava se", 
+        "contract_timeline": "Umanji", 
+        "return_to_title": "Početak", 
+        "wikipedia": "Iz Vikipedije, slobodne enciklopedije", 
+        "loading_content": "Sadržaj se učitava", 
+        "expand_timeline": "Uvećaj", 
+        "loading_timeline": "Učitavanje... "
+    }, 
+    "dateformats": {
+        "full_long": "d. mmm yyyy. 'u' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm yyyy.", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy.'</small>'", 
+        "month": "mmmm yyyy.", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy.", 
+        "full_long_small_date": "HH:MM'<br/><small>d. mmm yyyy.'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sv.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sv.json
new file mode 100644
index 0000000000000000000000000000000000000000..d3895d413cdb5f20b43c9a253651fbe6289ebc4f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/sv.json
@@ -0,0 +1,86 @@
+{
+    "lang": "sv",
+    "date": {
+        "month_abbr": [
+            "jan",
+            "febr",
+            "mars",
+            "april",
+            "maj",
+            "juni",
+            "juli",
+            "aug",
+            "sept",
+            "okt",
+            "nov",
+            "dec"
+        ],
+        "day_abbr": [
+            "sön",
+            "mån",
+            "tis",
+            "ons",
+            "tors",
+            "fre",
+            "lör"
+        ],
+        "day": [
+            "söndag",
+            "måndag",
+            "tisdag",
+            "onsdag",
+            "torsdag",
+            "fredag",
+            "lördag"
+        ],
+        "month": [
+            "januari",
+            "februari",
+            "mars",
+            "april",
+            "maj",
+            "juni",
+            "juli",
+            "augusti",
+            "september",
+            "oktober",
+            "november",
+            "december"
+        ]
+    },
+    "api": {
+        "wikipedia": "sv"
+    },
+    "messages": {
+        "loading": "Laddar",
+        "contract_timeline": "Förminska tidslinje",
+        "return_to_title": "Tillbaka till start",
+        "wikipedia": "Från Wikipedia, den fria encyklopedin",
+        "loading_content": "Laddar innehåll",
+        "expand_timeline": "Förstora tidslinje",
+        "loading_timeline": "Laddar tidslinje... "
+    },
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'vid' H:MM",
+        "full_short": "d mmm",
+        "full": "d mmmm',' yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "H:MM",
+        "time_short": "HH:MM:ss",
+        "year": "yyyy",
+        "full_long_small_date": "H:MM'<br/><small>d mmm',' yyyy'</small>'"
+    },
+  "era_labels": {
+      "positive_year": {
+          "prefix": "",
+          "suffix": ""
+      },
+      "negative_year": {
+          "prefix": "",
+          "suffix": "f.Kr."
+      }
+  }
+
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ta.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ta.json
new file mode 100644
index 0000000000000000000000000000000000000000..4b3adf9434a6a42ed15c0e20dc837e74b72d5932
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ta.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ta", 
+    "date": {
+        "month_abbr": [
+            "ஜன.", 
+            "பெப்.", 
+            "மார்ச்", 
+            "ஏப்ரல்", 
+            "மே", 
+            "ஜுன்", 
+            "ஜுலை", 
+            "ஆகஸ்ட்", 
+            "செப்ட்.", 
+            "ஒக்டோ.", 
+            "நவம்பர்", 
+            "டிசம்பர்"
+        ], 
+        "day_abbr": [
+            "ஞா", 
+            "தி", 
+            "செ", 
+            "பு", 
+            "வி", 
+            "வெ", 
+            "சனி"
+        ], 
+        "day": [
+            "ஞாயிறு", 
+            "திங்கள்", 
+            "செவ்வாய்", 
+            "புதன்", 
+            "வியாழன்", 
+            "வெள்ளி", 
+            "சனி"
+        ], 
+        "month": [
+            "ஜனவரி", 
+            "பெப்ரவரி", 
+            "மார்ச்", 
+            "ஏப்ரல்", 
+            "மே", 
+            "ஜுன்", 
+            "ஜுலை", 
+            "ஆகஸ்ட்", 
+            "செப்டம்பர்", 
+            "ஒக்டோபர்", 
+            "நவம்பர்", 
+            "டிசம்பர்"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ta"
+    }, 
+    "messages": {
+        "loading": "தரவேறுகிறது", 
+        "contract_timeline": "நேரக்கோட்டை சுருக்க", 
+        "return_to_title": "தலைப்பிற்குச் செல்ல", 
+        "wikipedia": "கட்டற்ற கலைக்களஞ்சியம், விக்கிப்பீடியாவிலிருந்து", 
+        "loading_content": "உள்ளடக்கம் தரவேறுகிறது...", 
+        "expand_timeline": "நேரக்கோட்டை விரிக்க", 
+        "loading_timeline": "நேரக்கோடு தரவேறுகிறது.... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/te.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/te.json
new file mode 100644
index 0000000000000000000000000000000000000000..57c87bc14b0f834f9cce2025d6e654e8f46057a0
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/te.json
@@ -0,0 +1,74 @@
+{
+    "lang": "te", 
+    "date": {
+        "month_abbr": [
+            "జన.", 
+            "ఫిబ్ర.", 
+            "మార్చి", 
+            "ఏప్రి.", 
+            "మే", 
+            "జూన్", 
+            "జూలై", 
+            "ఆగ.", 
+            "సెప్టెం.", 
+            "అక్టో.", 
+            "నవం.", 
+            "డిసెం."
+        ], 
+        "day_abbr": [
+            "ఆది.", 
+            "సోమ.", 
+            "మంగళ.", 
+            "బుధ.", 
+            "గురు.", 
+            "శుక్ర.", 
+            "శని."
+        ], 
+        "day": [
+            "ఆదివారం", 
+            "సోమవారం", 
+            "మంగళవారం", 
+            "బుధవారం", 
+            "గురువారం", 
+            "శుక్రవారం", 
+            "శనివారం"
+        ], 
+        "month": [
+            "జనవరి", 
+            "ఫిబ్రవరి", 
+            "మార్చి", 
+            "ఏప్రిల్", 
+            "మే", 
+            "జూన్", 
+            "జూలై", 
+            "ఆగస్ట్", 
+            "సెప్టెంబర్", 
+            "అక్టోబర్", 
+            "నవంబర్", 
+            "డిసెంబర్"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "te"
+    }, 
+    "messages": {
+        "loading": "లోడవుతూంది", 
+        "contract_timeline": "టైమ్‌లైన్‌ను కుదించండి", 
+        "return_to_title": "తిరిగి మొదటి స్లైడుకి", 
+        "wikipedia": "స్వేచ్ఛా విజ్ఞాన సర్వస్వమైన వికీపీడియా నుండి", 
+        "loading_content": "విషయం లోడవుతూంది", 
+        "expand_timeline": "టైమ్‌లైన్‌ను విస్తరించండి", 
+        "loading_timeline": "టైమ్‌లైన్ లోడవుతూంది... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "time_no_seconds_short": "h:MM TT", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "full": "mmmm d',' yyyy", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/th.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/th.json
new file mode 100644
index 0000000000000000000000000000000000000000..101eb230992b6c369c066b59788815bc11a0af7e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/th.json
@@ -0,0 +1,108 @@
+{
+    "lang": "th", 
+    "date": {
+        "month_abbr": [
+            "ม.ค.", 
+            "ก.พ", 
+            "มี.ค.", 
+            "เม.ย.", 
+            "พ.ค.", 
+            "มิ.ย.", 
+            "ก.ค.", 
+            "ส.ค.", 
+            "ก.ย.", 
+            "ต.ค.", 
+            "พ.ย.", 
+            "ธ.ค."
+        ], 
+        "day_abbr": [
+            "อา.", 
+            "จ.", 
+            "อ.", 
+            "พ.", 
+            "พฤ.", 
+            "ศ.", 
+            "ส."
+        ], 
+        "day": [
+            "อาทิตย์", 
+            "จันทร์", 
+            "อังคาร", 
+            "พุธ", 
+            "พฤหัสบดี", 
+            "ศุกร์", 
+            "เสาร์"
+        ], 
+        "month": [
+            "มกราคม", 
+            "กุมภาพันธ์", 
+            "มีนาคม", 
+            "เมษายน", 
+            "พฤษภาคม", 
+            "มิถุนายน", 
+            "กรกฎาคม", 
+            "สิงหาคม", 
+            "กันยายน", 
+            "ตุลาคม", 
+            "พฤศจิกายน", 
+            "ธันวาคม"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "th"
+    }, 
+    "messages": {
+        "loading": "กำลังโหลด", 
+        "error": "เกิดความผิดพลาด",
+        "contract_timeline": "ลดขนาด ไทม์ไลน์", 
+        "return_to_title": "กลับไปยังหัวข้อ", 
+        "wikipedia": "จาก วิกิพีเดีย, สารานุกรมเสรี", 
+        "loading_content": "กำลังโหลด เนื้อหา", 
+        "expand_timeline": "ขยายขนาด ไทม์ไลน์", 
+        "loading_timeline": "กำลังโหลด ไทม์ไลน์...",
+        "swipe_to_navigate": "ลากเพื่อเลื่อนไทม์ไลน์<br><span class='tl-button'>ตกลง</span>",
+        "unknown_read_err": "เกิดข้อผิดพลาดจากการพยายามอ่านข้อมูลในสเปรดชีตของคุณ",
+        "invalid_url_err": "ไม่สามารถอ่านข้อมูลไทม์ไลน์. โปรดตรวจสอบว่า URL ของคุณเป็นสเปรดชีตของ Google หรือเป็นไฟล์ JSON",
+        "network_err": "ไม่สามารถอ่านข้อมูลไทม์ไลน์. โปรดตรวจสอบให้แน่ใจว่าคุณได้เผยแพร่สเปรดชีตทางเว็บแล้ว",
+        "empty_feed_err": "ไม่มีรายการข้อมูลที่พบ",
+        "missing_start_date_err": "ไม่มีข้อมูลวันที่เริ่มต้น",
+        "invalid_data_format_err": "แถวส่วนหัวสเปรดชีตได้รับการแก้ไข",
+        "date_compare_err": "ไม่สามารถเปรียบเทียบวันที่ที่มีรูปแบบต่างกันได้",
+        "invalid_scale_err": "รูปแบบไม่ถูกต้อง",
+        "invalid_date_err": "วันที่ไม่ถูกต้อง: เดือน, วันที่และปีต้องเป็นตัวเลข",
+        "invalid_separator_error": "เวลาไม่ถูกต้อง: รูปแบบ : หรือ . ตัวคั่นระหว่างเวลาผิด.",
+        "invalid_hour_err": "เวลาไม่ถูกต้อง (ชั่วโมง)",
+        "invalid_minute_err": "เวลาไม่ถูกต้อง (นาที)",
+        "invalid_second_err": "เวลาไม่ถูกต้อง (วินาที)",
+        "invalid_fractional_err": "เวลาไม่ถูกต้อง (เศษส่วนของวินาที)",
+        "invalid_second_fractional_err": "เวลาไม่ถูกต้อง (วินาที และ เศษส่วนของวินาที)",
+        "invalid_year_err": "ปีไม่ถูกต้อง",
+        "flickr_notfound_err": "ไม่พบภาพหรือถูกตั้งเป็นส่วนตัว",
+        "flickr_invalidurl_err": "URL Flickr ไม่ถูกต้อง",
+        "imgur_invalidurl_err": "URL Imgur ไม่ถูกต้อง",
+        "twitter_invalidurl_err": "URL ทวิตเตอร์ไม่ถูกต้อง",
+        "twitter_load_err": "ไม่สามารถโหลดทวีตได้",
+        "twitterembed_invalidurl_err": "URL Twitter ฝังที่ไม่ถูกต้อง",
+        "wikipedia_load_err": "ไม่สามารถโหลดวิกิพีเดียได้",
+        "youtube_invalidurl_err": "URL ของ YouTube ไม่ถูกต้อง",
+        "spotify_invalid_url": "URL Spotify ไม่ถูกต้อง",
+        "template_value_err": "ไม่มีค่าให้สำหรับตัวแปรแม่แบบ",
+        "invalid_rgb_err": "อาร์กิวเมนต์ RGB ไม่ถูกต้อง",
+        "time_scale_scale_err": "ไม่ทราบวิธีการที่จะได้รับข้อมูลจากช่วงวันเวลา",
+        "axis_helper_no_options_err": "ไม่มีตัวเลือกสำหรับกำหนดค่าตัวแปร axis_helper",
+        "axis_helper_scale_err": "ไม่มีตัวแปร AxisHelper ที่ใช้ได้ในระยะเวลาที่ระบุ",
+        "invalid_integer_option": "ค่าตัวเลือกไม่ถูกต้องซึ่งต้องเป็นจำนวนเต็ม"
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/tl.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/tl.json
new file mode 100644
index 0000000000000000000000000000000000000000..f41ce37d863e76e72f79c27f8e242e5accda3880
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/tl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "tl", 
+    "date": {
+        "month_abbr": [
+            "Ene.", 
+            "Peb.", 
+            "Mar.", 
+            "Abr.", 
+            "Mayo", 
+            "Hun.", 
+            "Hul.", 
+            "Ago.", 
+            "Set.", 
+            "Okt.", 
+            "Nob.", 
+            "Dis."
+        ], 
+        "day_abbr": [
+            "Li.", 
+            "L.", 
+            "M.", 
+            "Mi.", 
+            "H.", 
+            "B.", 
+            "S."
+        ], 
+        "day": [
+            "Linggo", 
+            "Lunes", 
+            "Martes", 
+            "Miyerkules", 
+            "Huwebes", 
+            "Biyernes", 
+            "Sabado"
+        ], 
+        "month": [
+            "Enemo", 
+            "Pebrero", 
+            "Marso", 
+            "Abril", 
+            "Mayo", 
+            "Hunyo", 
+            "Hulyo", 
+            "Agosto", 
+            "Setyembre", 
+            "Oktubre", 
+            "Nobyembre", 
+            "Disyembre"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "tl"
+    }, 
+    "messages": {
+        "loading": "Loading", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Return to Title", 
+        "wikipedia": "Mula sa Wikipedia, ang malayang ensiklopedya", 
+        "loading_content": "Loading Content", 
+        "expand_timeline": "Expand Timeline", 
+        "loading_timeline": "Loading Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/tr.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/tr.json
new file mode 100644
index 0000000000000000000000000000000000000000..b55e3fa2d822259b52e5758658090adf11a82f2a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/tr.json
@@ -0,0 +1,75 @@
+{
+    "lang": "tr", 
+    "date": {
+        "month_abbr": [
+            "Oca.", 
+            "Åžub.", 
+            "Mar.", 
+            "Nis.", 
+            "May.", 
+            "Haz.", 
+            "Tem.", 
+            "AÄŸu.", 
+            "Eyl.", 
+            "Eki.", 
+            "Kas.", 
+            "Ara."
+        ], 
+        "day_abbr": [
+            "Paz.", 
+            "Pzt.", 
+            "Sal.", 
+            "Çar.", 
+            "Per.", 
+            "Cum.", 
+            "Cts."
+        ], 
+        "day": [
+            "Pazar", 
+            "Pazartesi", 
+            "Salı", 
+            "Çarşamba", 
+            "PerÅŸembe", 
+            "Cuma", 
+            "Cumartesi"
+        ], 
+        "month": [
+            "Ocak", 
+            "Åžubat", 
+            "Mart", 
+            "Nisan", 
+            "Mayıs", 
+            "Haziran", 
+            "Temmuz", 
+            "AÄŸustos", 
+            "Eylül", 
+            "Ekim", 
+            "Kasım", 
+            "Aralık"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "tr"
+    }, 
+    "messages": {
+        "loading": "Yükleniyor", 
+        "contract_timeline": "Zaman Çizelgesini Daralt", 
+        "return_to_title": "Başlığa Dön", 
+        "wikipedia": "Wikipedia'dan, özgür ansiklopedi", 
+        "loading_content": "İçerik Yükleniyor", 
+        "expand_timeline": "Zaman Çizelgesini Genişlet", 
+        "loading_timeline": "Zaman Çizelgesi Yükleniyor... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'at' H:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "H:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "H:MM '<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/uk.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/uk.json
new file mode 100644
index 0000000000000000000000000000000000000000..050ffac638564d98ef54135696fa6a05d6999835
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/uk.json
@@ -0,0 +1,75 @@
+{
+    "lang": "uk", 
+    "date": {
+        "month_abbr": [
+            "січ.", 
+            "лют.", 
+            "берез.", 
+            "квіт.", 
+            "трав.", 
+            "черв.", 
+            "лип.", 
+            "серп.", 
+            "вер.", 
+            "жовт.", 
+            "листоп.", 
+            "груд."
+        ], 
+        "day_abbr": [
+            "нд.", 
+            "пн.", 
+            "вт.", 
+            "ср.", 
+            "чт.", 
+            "пт.", 
+            "сб."
+        ], 
+        "day": [
+            "неділя", 
+            "понеділок", 
+            "вівторок", 
+            "середа", 
+            "четвер", 
+            "п'ятниця‎", 
+            "субота"
+        ], 
+        "month": [
+            "січня", 
+            "лютого", 
+            "березня", 
+            "квітня", 
+            "травня", 
+            "червня", 
+            "липня", 
+            "серпня", 
+            "вересня", 
+            "жовтня", 
+            "листопада", 
+            "грудня"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "uk"
+    }, 
+    "messages": {
+        "loading": "Завантаження", 
+        "contract_timeline": "Зменьшити", 
+        "return_to_title": "Повернутися до початку", 
+        "wikipedia": "З Wikipedia, вільної енциклопедії", 
+        "loading_content": "Завантаження вмісту", 
+        "expand_timeline": "Збільшити", 
+        "loading_timeline": "Завантаження..."
+    }, 
+    "dateformats": {
+        "full_long": "d mmm yyyy 'у' H:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "H:MM", 
+        "time_short": "H:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "H:MM'<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ur.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ur.json
new file mode 100644
index 0000000000000000000000000000000000000000..c622dcc1f9055698ca05a36b488c2c979a031cf2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/ur.json
@@ -0,0 +1,123 @@
+{
+    "lang": "ur",
+    "direction": "rtl",
+    "date": {
+        "month_abbr": [
+            "جنوری",
+            "فروری‬",
+            "مارچ",
+            "اپریل",
+            "مئی",
+            "جون",
+            "جولائی",
+            "اگست",
+            "ستمبر",
+            "اکتوبر",
+            "نومبر",
+            "دسمبر"
+        ],
+        "day_abbr": [
+            "اتوار",
+            "پیر",
+            "منگل",
+            "بدھ",
+            "جمعرات",
+            "جمعہ",
+            "ہفتہ"
+        ],
+        "day": [
+            "اتوار‬‮",
+            "پیر",
+            "منگل",
+            "بدھ",
+            "جمعرات",
+            "جمعہ",
+            "ہفتہ"
+        ],
+        "month": [
+            "جنوری",
+            "فروری‬",
+            "مارچ",
+            "اپریل",
+            "مئی",
+            "جون",
+            "جولائی",
+            "اگست",
+            "ستمبر",
+            "اکتوبر",
+            "نومبر",
+            "دسمبر"
+        ]
+    },
+    "api": {
+        "wikipedia": "ur"
+    },
+    "messages": {
+        "loading": "لوڈ ہو رہا ہے",
+        "error": "غلطی",
+        "contract_timeline": "معاہدہ ٹائم لائن",
+        "return_to_title": "موضوع پر واپس",
+        "wikipedia": "From Wikipedia, the free encyclopedia",
+        "loading_content": "لوڈنگ مواد",
+        "expand_timeline": "ٹائم لائن کو بڑھانے ک",
+        "loading_timeline": "لوڈنگ ٹائم لائن ... ",
+        "swipe_to_navigate": "Swip<br><span class='tl-button'>OK</span>",
+        "unknown_read_err": "ایک غیر متوقع خرابی سپریڈ شیٹ ڈیٹا پڑھنے سے روک رہی ہے",
+        "network_err": "آپ کی گوگل سپریڈ شیٹ پڑھنے سے قاصر ہے.  یقینی بنائیں کے سپریڈ شیٹ ویب پر شائع ہے.",
+        "empty_feed_err": "کوئی ڈیٹا نہیں ملا",
+        "missing_start_date_err": "شروع کرنے کی تاریخ نہیں ملی",
+        "invalid_data_format_err": "ہیڈر  تبدیل کر دیا گیا ہے.",
+        "date_compare_err": "مختلف پیمانے کی TL.dates کا موازنہ نہیں ممکن",
+        "invalid_scale_err": "گیر درست پیمانے",
+        "invalid_date_err": "گیر درست تاریخ: ماہ ، دن اور سال کا نمبر میں هونا ضروری ہے",
+        "invalid_separator_error": "گیردرست وقت: .  یا : کا استعمال غلط ہے",
+        "invalid_hour_err": "گیردرست وقت (گھنٹہ)",
+        "invalid_minute_err": "گیردرست وقت (منٹ)",
+        "invalid_second_err": "Iگیردرست وقت (سیکنڈ)",
+        "invalid_fractional_err": "گیردرست وقت (fractional سیکنڈ)",
+        "invalid_second_fractional_err": "گیردرست وقت (سیکنڈ اور fractional سیکنڈ)",
+        "invalid_year_err": "گیردرست سال",
+        "flickr_notfound_err": "تصویر نہیں ملی یا تصویر گیرعوامی ہے",
+        "flickr_invalidurl_err": "گیردرست Flickr URL",
+        "imgur_invalidurl_err": "گیردرست Imgur URL",
+        "twitter_invalidurl_err": "گیردرست Twitter URL",
+        "twitter_load_err": "Tweet لود نا ھوسکی",
+        "twitterembed_invalidurl_err": "گیردرست Twitter Embed url",
+        "wikipedia_load_err": "Wikipedia entry لود نا ھوسکی",
+        "youtube_invalidurl_err": "گیردرست YouTube URL",
+        "template_value_err": "Variable کی تعداد فراہم نہیں",
+        "invalid_rgb_err": "گیردرست RGB argument",
+        "time_scale_scale_err": "Don't know how to get date from time for scale",
+        "axis_helper_no_options_err": "Axis helper must be configured with options",
+        "axis_helper_scale_err": "پیمانے  کے لئے Axis Helper موجود نہیں",
+        "invalid_integer_option": 				"Invalid option value—must be a whole number."
+    },
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT",
+        "full_short": "mmm d",
+        "full": "mmmm d',' yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "h:MM TT",
+        "time_short": "h:MM:ss TT",
+        "year": "yyyy",
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    },
+    "era_labels": {
+        "positive_year": {
+            "prefix": "",
+            "suffix": ""
+        },
+        "negative_year": {
+            "prefix": "",
+            "suffix": "BCE"
+        }
+    },
+    "period_labels": {
+        "t": ["a", "p"],
+        "tt": ["am", "pm"],
+        "T": ["A", "P"],
+        "TT": ["AM", "PM"]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/vi.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/vi.json
new file mode 100644
index 0000000000000000000000000000000000000000..21ebb3d46739063d45dafc73458ef92047a2d586
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/vi.json
@@ -0,0 +1,74 @@
+{
+    "lang": "vi",
+    "date": {
+        "month": [
+            "Tháng Một", 
+            "Tháng Hai", 
+            "Tháng ba", 
+            "Tháng Tư", 
+            "Tháng Năm", 
+            "Tháng Sáu", 
+            "Tháng Bảy", 
+            "Tháng Tám", 
+            "Tháng Chín", 
+            "Tháng Mười", 
+            "Tháng Mười Một", 
+            "Tháng Mười Hai"
+        ],
+       "month_abbr": [
+            "Tháng 01", 
+            "Tháng 02", 
+            "Tháng 03", 
+            "Tháng 04", 
+            "Tháng 05", 
+            "Tháng 06", 
+            "Tháng 07", 
+            "Tháng 08", 
+            "Tháng 09",
+            "Tháng 10", 
+            "Tháng 11", 
+            "Tháng 12"
+        ],
+        "day": [
+            "Chủ Nhật",
+            "Thứ Hai", 
+            "Thứ Ba", 
+            "Thứ Tư", 
+            "Thứ Năm", 
+            "Thứ Sáu", 
+            "Thứ Bảy"
+        ],
+        "day_abbr": [
+            "Chủ Nhật",
+            "Thứ 02", 
+            "Thứ 03", 
+            "Thứ 04", 
+            "Thứ 05", 
+            "Thứ 06", 
+            "Thứ 07"
+        ]
+    },
+    "api": {
+        "wikipedia": "vi"
+    },
+    "messages": {
+        "loading_timeline": "Tải dòng thời gian... ",
+        "return_to_title": "Quay lại từ đầu",
+        "expand_timeline": "Mở rộng",
+        "contract_timeline": "Thu nhỏ",
+        "wikipedia": "Từ Wikipedia, bách khoa toàn thư mở",
+        "loading_content": "Tải nội dung",
+        "loading": "Đang tải"
+    },
+    "dateformats": {
+        "year": "yyyy",
+        "month_short": "mmm",
+        "month": "mmmm yyyy",
+        "full_short": "mmm d",
+        "full": "'Ngày' d mmm 'Năm' yyyy",
+        "time_no_seconds_short": "H:MM ",
+        "time_no_seconds_small_date": "H:MM '<br/><small>Ngày' d mmm 'Năm' yyyy</small>'",
+        "full_long": "'Ngày 'd mmm 'Năm' yyyy 'lúc' H:MM",
+        "full_long_small_date": "H:MM '<br/><small>Ngày' d mmm 'Năm' yyyy'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/zh-cn.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/zh-cn.json
new file mode 100644
index 0000000000000000000000000000000000000000..d8d46cac5260fb12e289e4dd51120a05e38446cb
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/zh-cn.json
@@ -0,0 +1,76 @@
+{
+    "lang": "zh-cn",
+    "date": {
+        "month_abbr": [
+            "1月",
+            "2月",
+            "3月",
+            "4月",
+            "5月",
+            "6月",
+            "7月",
+            "8月",
+            "9月",
+            "10月",
+            "11月",
+            "12月"
+        ],
+        "day_abbr": [
+            "周日",
+            "周一",
+            "周二",
+            "周三",
+            "周四",
+            "周五",
+            "周六"
+        ],
+        "day": [
+            "星期日",
+            "星期一",
+            "星期二",
+            "星期三",
+            "星期四",
+            "星期五",
+            "星期六"
+        ],
+        "month": [
+            "1月",
+            "2月",
+            "3月",
+            "4月",
+            "5月",
+            "6月",
+            "7月",
+            "8月",
+            "9月",
+            "10月",
+            "11月",
+            "12月"
+        ]
+    },
+    "api": {
+        "wikipedia": "zh"
+    },
+    "messages": {
+        "loading": "加载中",
+        "contract_timeline": "缩短时间",
+        "return_to_title": "回到开头",
+        "wikipedia": "来自维基百科,自由的百科全书",
+        "loading_content": "正在加载内容",
+        "expand_timeline": "伸展时间",
+        "loading_timeline": "加载时间线... ",
+        "swipe_to_navigate": "左右撥來瀏覽<br><span class='tl-button'>OK</span>"
+    },
+    "dateformats": {
+        "full_long": "dddd',' yyyyå¹´ mmm dæ—¥'um' HH:MM",
+        "full_short": "mmm dæ—¥",
+        "full": "yyyyå¹´mmmm dæ—¥",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'yyyyå¹´mmmm dæ—¥'</small>'",
+        "month": "yyyyå¹´ mmmm",
+        "time_no_seconds_short": "HH:MM",
+        "time_short": "HH:MM:ss",
+        "year": "yyyyå¹´",
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' yyyyå¹´ mmm dæ—¥'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/locale/zh-tw.json b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/zh-tw.json
new file mode 100644
index 0000000000000000000000000000000000000000..df058aeda91f633ab5391d633e28fb67aa56e3b1
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/locale/zh-tw.json
@@ -0,0 +1,75 @@
+{
+    "lang": "zh-tw", 
+    "date": {
+        "month_abbr": [
+            "一月", 
+            "二月", 
+            "三月", 
+            "四月", 
+            "五月", 
+            "六月", 
+            "七月", 
+            "八月", 
+            "九月", 
+            "十月", 
+            "十一月", 
+            "十二月"
+        ], 
+        "day_abbr": [
+            "週日", 
+            "週一", 
+            "週二", 
+            "週三", 
+            "週四", 
+            "週五", 
+            "週六"
+        ], 
+        "day": [
+            "星期日", 
+            "星期一", 
+            "星期二", 
+            "星期三", 
+            "星期四", 
+            "星期五", 
+            "星期六"
+        ], 
+        "month": [
+            "一月", 
+            "二月", 
+            "三月", 
+            "四月", 
+            "五月", 
+            "六月", 
+            "七月", 
+            "八月", 
+            "九月", 
+            "十月", 
+            "十一月", 
+            "十二月"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "zh"
+    }, 
+    "messages": {
+        "loading": "載入中", 
+        "contract_timeline": "縮短時間", 
+        "return_to_title": "回到開頭", 
+        "wikipedia": "擷取自維基百科, 自由之百科全書", 
+        "loading_content": "載入內容", 
+        "expand_timeline": "展開時間", 
+        "loading_timeline": "載入時間線... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' yyyyå¹´mmmm dæ—¥ 'um' HH:MM", 
+        "full_short": "mmm d", 
+        "full": "yyyyå¹´mmmm dæ—¥", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'yyyyå¹´mmmm dæ—¥'</small>'", 
+        "month": "yyyyå¹´ mmmm", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyyå¹´", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' yyyyå¹´mmmm dæ—¥'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-embed-cdn.js b/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-embed-cdn.js
new file mode 100644
index 0000000000000000000000000000000000000000..b74bbca4ffa2a0a2d35ff1f65b611ef592fecbb9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-embed-cdn.js
@@ -0,0 +1,805 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+
+/* **********************************************
+     Begin Embed.CDN.js
+********************************************** */
+
+/* Embed.CDN
+  Extend the basic 'embed' functionality with Google Analytics tracking and url parsing to support URLs created with the Timeline generator form.
+*/
+
+/*  CodeKit Import
+  https://incident57.com/codekit/
+================================================== */
+// @codekit-append "Embed.js";
+
+/* REPLACE THIS WITH YOUR GOOGLE ANALYTICS ACCOUNT
+================================================== */
+var embed_analytics = "UA-537357-20";
+
+/* REPLACE THIS WITH YOUR BASE PATH FOR TIMELINE
+================================================== */
+//var embed_path = "https://cdn.knightlab.com/libs/timeline3/latest/embed/";
+
+/* LOAD TIMER
+================================================== */
+var load_time_start = new Date().getTime(), the_load_time = 0;
+
+/* GOOGLE ANALYTICS
+================================================== */
+var _gaq = _gaq || [];
+
+
+(function() {
+  var ga = document.createElement('script'), s = document.getElementsByTagName('script')[0];
+  ga.type = 'text/javascript';
+  ga.async = true;
+  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+  s.parentNode.insertBefore(ga, s);
+
+  _gaq.push(['_setAccount', embed_analytics]);
+  _gaq.push(['_trackPageview']);
+
+})();
+
+/* TIMELINE CDN SPECIFIC
+================================================== */
+var getUrlVars = function() {
+  var varobj = {}, url_vars = [], uv ;
+
+  //url_vars = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
+  url_vars = window.location.href.slice(window.location.href.indexOf('?') + 1);
+
+  if (url_vars.match('#')) {
+    url_vars = url_vars.split('#')[0];
+  }
+  url_vars = url_vars.split('&');
+
+  for(var i = 0; i < url_vars.length; i++) {
+    uv = url_vars[i].split('=');
+    varobj[uv[0]] = uv[1];
+  }
+
+  return varobj;
+};
+
+var onHeadline = function(e, headline) {
+  var the_page_title = "/" + headline,
+    the_page_url  = location.href;
+
+  document.title = headline;
+  the_load_time = Math.floor((new Date().getTime() - load_time_start)/100)/10;
+  _gaq.push(['_trackEvent', 'Timeline', headline, the_page_url, the_load_time]);
+
+};
+
+var url_config = getUrlVars();
+
+
+/* **********************************************
+     Begin LazyLoad.js
+********************************************** */
+
+/*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false */
+
+/*
+LazyLoad makes it easy and painless to lazily load one or more external
+JavaScript or CSS files on demand either during or after the rendering of a web
+page.
+
+Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile
+Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and
+are not officially supported.
+
+Visit https://github.com/rgrove/lazyload/ for more info.
+
+Copyright (c) 2011 Ryan Grove <ryan@wonko.com>
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the 'Software'), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+@module lazyload
+@class LazyLoad
+@static
+@version 2.0.3 (git)
+*/
+
+LazyLoad = (function (doc) {
+  // -- Private Variables ------------------------------------------------------
+
+  // User agent and feature test information.
+  var env,
+
+  // Reference to the <head> element (populated lazily).
+  head,
+
+  // Requests currently in progress, if any.
+  pending = {},
+
+  // Number of times we've polled to check whether a pending stylesheet has
+  // finished loading. If this gets too high, we're probably stalled.
+  pollCount = 0,
+
+  // Queued requests.
+  queue = {css: [], js: []},
+
+  // Reference to the browser's list of stylesheets.
+  styleSheets = doc.styleSheets;
+
+  // -- Private Methods --------------------------------------------------------
+
+  /**
+  Creates and returns an HTML element with the specified name and attributes.
+
+  @method createNode
+  @param {String} name element name
+  @param {Object} attrs name/value mapping of element attributes
+  @return {HTMLElement}
+  @private
+  */
+  function createNode(name, attrs) {
+    var node = doc.createElement(name), attr;
+
+    for (attr in attrs) {
+      if (attrs.hasOwnProperty(attr)) {
+        node.setAttribute(attr, attrs[attr]);
+      }
+    }
+
+    return node;
+  }
+
+  /**
+  Called when the current pending resource of the specified type has finished
+  loading. Executes the associated callback (if any) and loads the next
+  resource in the queue.
+
+  @method finish
+  @param {String} type resource type ('css' or 'js')
+  @private
+  */
+  function finish(type) {
+    var p = pending[type],
+        callback,
+        urls;
+
+    if (p) {
+      callback = p.callback;
+      urls     = p.urls;
+
+      urls.shift();
+      pollCount = 0;
+
+      // If this is the last of the pending URLs, execute the callback and
+      // start the next request in the queue (if any).
+      if (!urls.length) {
+        callback && callback.call(p.context, p.obj);
+        pending[type] = null;
+        queue[type].length && load(type);
+      }
+    }
+  }
+
+  /**
+  Populates the <code>env</code> variable with user agent and feature test
+  information.
+
+  @method getEnv
+  @private
+  */
+  function getEnv() {
+    var ua = navigator.userAgent;
+
+    env = {
+      // True if this browser supports disabling async mode on dynamically
+      // created script nodes. See
+      // http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order
+      async: doc.createElement('script').async === true
+    };
+
+    (env.webkit = /AppleWebKit\//.test(ua))
+      || (env.ie = /MSIE/.test(ua))
+      || (env.opera = /Opera/.test(ua))
+      || (env.gecko = /Gecko\//.test(ua))
+      || (env.unknown = true);
+  }
+
+  /**
+  Loads the specified resources, or the next resource of the specified type
+  in the queue if no resources are specified. If a resource of the specified
+  type is already being loaded, the new request will be queued until the
+  first request has been finished.
+
+  When an array of resource URLs is specified, those URLs will be loaded in
+  parallel if it is possible to do so while preserving execution order. All
+  browsers support parallel loading of CSS, but only Firefox and Opera
+  support parallel loading of scripts. In other browsers, scripts will be
+  queued and loaded one at a time to ensure correct execution order.
+
+  @method load
+  @param {String} type resource type ('css' or 'js')
+  @param {String|Array} urls (optional) URL or array of URLs to load
+  @param {Function} callback (optional) callback function to execute when the
+    resource is loaded
+  @param {Object} obj (optional) object to pass to the callback function
+  @param {Object} context (optional) if provided, the callback function will
+    be executed in this object's context
+  @private
+  */
+  function load(type, urls, callback, obj, context) {
+    var _finish = function () { finish(type); },
+        isCSS   = type === 'css',
+        nodes   = [],
+        i, len, node, p, pendingUrls, url;
+
+    env || getEnv();
+
+    if (urls) {
+      // If urls is a string, wrap it in an array. Otherwise assume it's an
+      // array and create a copy of it so modifications won't be made to the
+      // original.
+      urls = typeof urls === 'string' ? [urls] : urls.concat();
+
+      // Create a request object for each URL. If multiple URLs are specified,
+      // the callback will only be executed after all URLs have been loaded.
+      //
+      // Sadly, Firefox and Opera are the only browsers capable of loading
+      // scripts in parallel while preserving execution order. In all other
+      // browsers, scripts must be loaded sequentially.
+      //
+      // All browsers respect CSS specificity based on the order of the link
+      // elements in the DOM, regardless of the order in which the stylesheets
+      // are actually downloaded.
+      if (isCSS || env.async || env.gecko || env.opera) {
+        // Load in parallel.
+        queue[type].push({
+          urls    : urls,
+          callback: callback,
+          obj     : obj,
+          context : context
+        });
+      } else {
+        // Load sequentially.
+        for (i = 0, len = urls.length; i < len; ++i) {
+          queue[type].push({
+            urls    : [urls[i]],
+            callback: i === len - 1 ? callback : null, // callback is only added to the last URL
+            obj     : obj,
+            context : context
+          });
+        }
+      }
+    }
+
+    // If a previous load request of this type is currently in progress, we'll
+    // wait our turn. Otherwise, grab the next item in the queue.
+    if (pending[type] || !(p = pending[type] = queue[type].shift())) {
+      return;
+    }
+
+    head || (head = doc.head || doc.getElementsByTagName('head')[0]);
+    pendingUrls = p.urls;
+
+    for (i = 0, len = pendingUrls.length; i < len; ++i) {
+      url = pendingUrls[i];
+
+      if (isCSS) {
+          node = env.gecko ? createNode('style') : createNode('link', {
+            href: url,
+            rel : 'stylesheet'
+          });
+      } else {
+        node = createNode('script', {src: url});
+        node.async = false;
+      }
+
+      node.className = 'lazyload';
+      node.setAttribute('charset', 'utf-8');
+
+      if (env.ie && !isCSS) {
+        node.onreadystatechange = function () {
+          if (/loaded|complete/.test(node.readyState)) {
+            node.onreadystatechange = null;
+            _finish();
+          }
+        };
+      } else if (isCSS && (env.gecko || env.webkit)) {
+        // Gecko and WebKit don't support the onload event on link nodes.
+        if (env.webkit) {
+          // In WebKit, we can poll for changes to document.styleSheets to
+          // figure out when stylesheets have loaded.
+          p.urls[i] = node.href; // resolve relative URLs (or polling won't work)
+          pollWebKit();
+        } else {
+          // In Gecko, we can import the requested URL into a <style> node and
+          // poll for the existence of node.sheet.cssRules. Props to Zach
+          // Leatherman for calling my attention to this technique.
+          node.innerHTML = '@import "' + url + '";';
+          pollGecko(node);
+        }
+      } else {
+        node.onload = node.onerror = _finish;
+      }
+
+      nodes.push(node);
+    }
+
+    for (i = 0, len = nodes.length; i < len; ++i) {
+      head.appendChild(nodes[i]);
+    }
+  }
+
+  /**
+  Begins polling to determine when the specified stylesheet has finished loading
+  in Gecko. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  Thanks to Zach Leatherman for calling my attention to the @import-based
+  cross-domain technique used here, and to Oleg Slobodskoi for an earlier
+  same-domain implementation. See Zach's blog for more details:
+  http://www.zachleat.com/web/2010/07/29/load-css-dynamically/
+
+  @method pollGecko
+  @param {HTMLElement} node Style node to poll.
+  @private
+  */
+  function pollGecko(node) {
+    var hasRules;
+
+    try {
+      // We don't really need to store this value or ever refer to it again, but
+      // if we don't store it, Closure Compiler assumes the code is useless and
+      // removes it.
+      hasRules = !!node.sheet.cssRules;
+    } catch (ex) {
+      // An exception means the stylesheet is still loading.
+      pollCount += 1;
+
+      if (pollCount < 200) {
+        setTimeout(function () { pollGecko(node); }, 50);
+      } else {
+        // We've been polling for 10 seconds and nothing's happened. Stop
+        // polling and finish the pending requests to avoid blocking further
+        // requests.
+        hasRules && finish('css');
+      }
+
+      return;
+    }
+
+    // If we get here, the stylesheet has loaded.
+    finish('css');
+  }
+
+  /**
+  Begins polling to determine when pending stylesheets have finished loading
+  in WebKit. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  @method pollWebKit
+  @private
+  */
+  function pollWebKit() {
+    var css = pending.css, i;
+
+    if (css) {
+      i = styleSheets.length;
+
+      // Look for a stylesheet matching the pending URL.
+      while (--i >= 0) {
+        if (styleSheets[i].href === css.urls[0]) {
+          finish('css');
+          break;
+        }
+      }
+
+      pollCount += 1;
+
+      if (css) {
+        if (pollCount < 200) {
+          setTimeout(pollWebKit, 50);
+        } else {
+          // We've been polling for 10 seconds and nothing's happened, which may
+          // indicate that the stylesheet has been removed from the document
+          // before it had a chance to load. Stop polling and finish the pending
+          // request to prevent blocking further requests.
+          finish('css');
+        }
+      }
+    }
+  }
+
+  return {
+
+    /**
+    Requests the specified CSS URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified, the stylesheets will be loaded in parallel and the callback
+    will be executed after all stylesheets have finished loading.
+
+    @method css
+    @param {String|Array} urls CSS URL or array of CSS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified stylesheets are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    css: function (urls, callback, obj, context) {
+      load('css', urls, callback, obj, context);
+    },
+
+    /**
+    Requests the specified JavaScript URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified and the browser supports it, the scripts will be loaded in
+    parallel and the callback will be executed after all scripts have
+    finished loading.
+
+    Currently, only Firefox and Opera support parallel loading of scripts while
+    preserving execution order. In other browsers, scripts will be
+    queued and loaded one at a time to ensure correct execution order.
+
+    @method js
+    @param {String|Array} urls JS URL or array of JS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified scripts are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    js: function (urls, callback, obj, context) {
+      load('js', urls, callback, obj, context);
+    }
+
+  };
+})(this.document);
+
+
+/* **********************************************
+     Begin Embed.LoadLib.js
+********************************************** */
+
+/*
+	LoadLib
+	Designed and built by Zach Wise http://zachwise.com/
+	Extends LazyLoad
+*/
+
+/*	* CodeKit Import
+	* https://incident57.com/codekit/
+================================================== */
+// @codekit-prepend "LazyLoad.js";
+
+LoadLib = (function (doc) {
+	var loaded	= [];
+	
+	function isLoaded(url) {
+		
+		var i			= 0,
+			has_loaded	= false;
+			
+		for (i = 0; i < loaded.length; i++) {
+			if (loaded[i] == url) {
+				has_loaded = true;
+			}
+		}
+		
+		if (has_loaded) {
+			return true;
+		} else {
+			loaded.push(url);
+			return false;
+		}
+		
+	}
+	
+	return {
+		
+		css: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				LazyLoad.css(urls, callback, obj, context);
+			}
+		},
+
+		js: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				LazyLoad.js(urls, callback, obj, context);
+			}
+		}
+    };
+	
+})(this.document);
+
+
+/* **********************************************
+     Begin Embed.js
+********************************************** */
+
+//StoryJS Embed Loader
+// Provide a bootstrap method for instantiating a timeline. On page load, check the definition of these window scoped variables in this order: [url_config, timeline_config, storyjs_config, config]. As soon as one of these is found to be defined with type 'object,' it will be used to automatically instantiate a timeline.
+
+/*  CodeKit Import
+  https://incident57.com/codekit/
+================================================== */
+// @codekit-prepend "Embed.LoadLib.js";
+
+if(typeof embed_path == 'undefined') {
+  // REPLACE WITH YOUR BASEPATH IF YOU WANT OTHERWISE IT WILL TRY AND FIGURE IT OUT
+  var _tmp_script_path = getEmbedScriptPath("timeline-embed.js");
+  var embed_path = _tmp_script_path.substr(0,_tmp_script_path.lastIndexOf('js/'))
+}
+
+function getEmbedScriptPath(scriptname) {
+  var scriptTags = document.getElementsByTagName('script'),
+    script_path = "",
+    script_path_end = "";
+  for(var i = 0; i < scriptTags.length; i++) {
+    if (scriptTags[i].src.match(scriptname)) {
+      script_path = scriptTags[i].src;
+    }
+  }
+  if (script_path != "") {
+    script_path_end = "/"
+  }
+  return script_path.split('?')[0].split('/').slice(0, -1).join('/') + script_path_end;
+}
+
+/* CHECK TO SEE IF A CONFIG IS ALREADY DEFINED (FOR EASY EMBED)
+================================================== */
+(function() {
+  if (typeof url_config == 'object') {
+    createStoryJS(url_config);
+  } else if (typeof timeline_config == 'object') {
+    createStoryJS(timeline_config);
+  } else if (typeof storyjs_config == 'object') {
+    createStoryJS(storyjs_config);
+  } else if (typeof config == 'object') {
+    createStoryJS(config);
+  } else {
+    // No existing config. Call createStoryJS(your_config) manually with a config
+  }
+})();
+
+/* CREATE StoryJS Embed
+================================================== */
+function createStoryJS(c, src) {
+  /* VARS
+  ================================================== */
+  var storyjs_embedjs, t, te, x,
+    isCDN         = false,
+    js_version        = "2.24",
+    ready = {
+      timeout:  "",
+      checks:   0,
+      finished: false,
+      js:     false,
+      css:    false,
+      font: {
+        css:  false
+      }
+    },
+    path = {
+      base:   embed_path,
+      css:    embed_path + "css/",
+      js:     embed_path + "js/",
+      font: {
+        google: false,
+        css:  embed_path + "css/fonts/",
+        js:   "//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"
+      }
+    },
+    storyjs_e_config = {
+      version:  js_version,
+      debug:    false,
+      type:   'timeline',
+      id:     'storyjs',
+      embed_id: 'timeline-embed',
+      is_embed:   true,
+      width:    '100%',
+      height:   '100%',
+      source:   'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html',
+      lang:   'en',
+      font:   'default',
+      start_at_end: false,
+      timenav_position: 'bottom',
+      css:    path.css + 'timeline.css?'+js_version,
+      js:     '',
+      api_keys: {
+        google:       "",
+        flickr:       "",
+        twitter:      ""
+      },
+      gmap_key:   ""
+    }
+  /* BUILD CONFIG
+  ================================================== */
+  if (typeof c == 'object') {
+    for (x in c) {
+      if (Object.prototype.hasOwnProperty.call(c, x)) {
+        storyjs_e_config[x] = c[x];
+      }
+    }
+  }
+
+  if (typeof src != 'undefined') {
+    storyjs_e_config.source = src;
+  }
+
+  /* CDN VERSION?
+  ================================================== */
+  if (typeof url_config == 'object') {
+    isCDN = true;
+
+    /* IS THE SOURCE GOOGLE SPREADSHEET WITH JUST THE KEY?
+    ================================================== */
+    if (storyjs_e_config.source.match("docs.google.com") || storyjs_e_config.source.match("json") || storyjs_e_config.source.match("storify") ) {
+
+    } else {
+      storyjs_e_config.source = "https://docs.google.com/spreadsheet/pub?key=" + storyjs_e_config.source + "&output=html";
+    }
+
+  }
+
+  /* DETERMINE TYPE
+  ================================================== */
+  if (storyjs_e_config.js.match("/")) {
+
+  } else {
+    storyjs_e_config.css  = path.css + storyjs_e_config.type + ".css?" + js_version;
+
+    // Use unminified js file if in debug mode
+    storyjs_e_config.js   = path.js  + storyjs_e_config.type;
+    if (storyjs_e_config.debug) {
+      storyjs_e_config.js += ".js?"  + js_version;
+    } else {
+      storyjs_e_config.js += "-min.js?"  + js_version;
+    }
+
+    storyjs_e_config.id   = "storyjs-" + storyjs_e_config.type;
+  }
+
+  /* PREPARE
+  ================================================== */
+  createEmbedDiv();
+
+  /* Load CSS
+  ================================================== */
+  LoadLib.css(storyjs_e_config.css, onloaded_css);
+
+  /* Load FONT
+  ================================================== */
+  if (storyjs_e_config.font == "default") {
+    ready.font.css    = true;
+  } else {
+    // FONT CSS
+    var fn;
+    if (storyjs_e_config.font.match("/")) {
+      fn        = storyjs_e_config.font.split(".css")[0].split("/");
+      path.font.name  = fn[fn.length -1];
+      path.font.css = storyjs_e_config.font;
+    } else {
+      path.font.name  = storyjs_e_config.font;
+      path.font.css = path.font.css + "font."+storyjs_e_config.font.toLowerCase()+".css?" + js_version;
+    }
+    LoadLib.css(path.font.css, onloaded_font_css);
+  }
+    LoadLib.js(storyjs_e_config.js, onloaded_js);
+
+  /* On Loaded
+  ================================================== */
+
+  function onloaded_js() {
+    ready.js = true;
+    onloaded_check();
+  }
+
+  function onloaded_css() {
+    ready.css = true;
+    onloaded_check();
+  }
+  function onloaded_font_css() {
+    ready.font.css = true;
+    onloaded_check();
+  }
+  function onloaded_check() {
+    if (ready.checks > 40) {
+      return;
+      alert("Error Loading Files");
+    } else {
+      ready.checks++;
+      if (ready.js && ready.css && ready.font.css) {
+        if (!ready.finished) {
+          ready.finished = true;
+          buildEmbed();
+        }
+      } else {
+        ready.timeout = setTimeout('onloaded_check_again();', 250);
+      }
+    }
+  };
+  this.onloaded_check_again = function() {
+    onloaded_check();
+  };
+
+  /* Build Timeline
+  ================================================== */
+  function createEmbedDiv() {
+    var embed_classname = "tl-timeline-embed";
+
+    t = document.createElement('div');
+
+    if (storyjs_e_config.embed_id != "") {
+      te = document.getElementById(storyjs_e_config.embed_id);
+    } else {
+      te = document.getElementById("timeline-embed");
+    }
+
+    te.appendChild(t);
+    t.setAttribute("id", storyjs_e_config.id);
+
+    if (storyjs_e_config.width.toString().match("%") ) {
+      te.style.width = storyjs_e_config.width.split("%")[0] + "%";
+    } else {
+      storyjs_e_config.width = storyjs_e_config.width - 2;
+      te.style.width = (storyjs_e_config.width) + 'px';
+    }
+
+    if (storyjs_e_config.height.toString().match("%")) {
+      te.style.height = storyjs_e_config.height;
+      embed_classname += " tl-timeline-full-embed";
+      te.style.height = storyjs_e_config.height.split("%")[0] + "%";
+
+    } else if (storyjs_e_config.width.toString().match("%")) {
+      embed_classname += " tl-timeline-full-embed";
+      storyjs_e_config.height = storyjs_e_config.height - 16;
+      te.style.height = (storyjs_e_config.height) + 'px';
+    }else {
+      embed_classname += " sized-embed";
+      storyjs_e_config.height = storyjs_e_config.height - 16;
+      te.style.height = (storyjs_e_config.height) + 'px';
+    }
+
+    te.setAttribute("class", embed_classname);
+    te.setAttribute("className", embed_classname);
+    t.style.position = 'relative';
+  }
+
+  function buildEmbed() {
+    TL.debug = storyjs_e_config.debug;
+
+    storyjs_e_config['ga_property_id'] = 'UA-27829802-4';
+    storyjs_e_config.language = storyjs_e_config.lang;
+    if (storyjs_e_config.width == '100%') {
+      storyjs_e_config.is_full_embed = true;
+    }
+    window.timeline = new TL.Timeline('timeline-embed', storyjs_e_config.source, storyjs_e_config);
+
+  }
+
+}
+
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-embed.js b/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-embed.js
new file mode 100644
index 0000000000000000000000000000000000000000..c0278fcc23da76448b2676425fe143840eb39ea7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-embed.js
@@ -0,0 +1,731 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+
+/* **********************************************
+     Begin LazyLoad.js
+********************************************** */
+
+/*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false */
+
+/*
+LazyLoad makes it easy and painless to lazily load one or more external
+JavaScript or CSS files on demand either during or after the rendering of a web
+page.
+
+Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile
+Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and
+are not officially supported.
+
+Visit https://github.com/rgrove/lazyload/ for more info.
+
+Copyright (c) 2011 Ryan Grove <ryan@wonko.com>
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the 'Software'), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+@module lazyload
+@class LazyLoad
+@static
+@version 2.0.3 (git)
+*/
+
+LazyLoad = (function (doc) {
+  // -- Private Variables ------------------------------------------------------
+
+  // User agent and feature test information.
+  var env,
+
+  // Reference to the <head> element (populated lazily).
+  head,
+
+  // Requests currently in progress, if any.
+  pending = {},
+
+  // Number of times we've polled to check whether a pending stylesheet has
+  // finished loading. If this gets too high, we're probably stalled.
+  pollCount = 0,
+
+  // Queued requests.
+  queue = {css: [], js: []},
+
+  // Reference to the browser's list of stylesheets.
+  styleSheets = doc.styleSheets;
+
+  // -- Private Methods --------------------------------------------------------
+
+  /**
+  Creates and returns an HTML element with the specified name and attributes.
+
+  @method createNode
+  @param {String} name element name
+  @param {Object} attrs name/value mapping of element attributes
+  @return {HTMLElement}
+  @private
+  */
+  function createNode(name, attrs) {
+    var node = doc.createElement(name), attr;
+
+    for (attr in attrs) {
+      if (attrs.hasOwnProperty(attr)) {
+        node.setAttribute(attr, attrs[attr]);
+      }
+    }
+
+    return node;
+  }
+
+  /**
+  Called when the current pending resource of the specified type has finished
+  loading. Executes the associated callback (if any) and loads the next
+  resource in the queue.
+
+  @method finish
+  @param {String} type resource type ('css' or 'js')
+  @private
+  */
+  function finish(type) {
+    var p = pending[type],
+        callback,
+        urls;
+
+    if (p) {
+      callback = p.callback;
+      urls     = p.urls;
+
+      urls.shift();
+      pollCount = 0;
+
+      // If this is the last of the pending URLs, execute the callback and
+      // start the next request in the queue (if any).
+      if (!urls.length) {
+        callback && callback.call(p.context, p.obj);
+        pending[type] = null;
+        queue[type].length && load(type);
+      }
+    }
+  }
+
+  /**
+  Populates the <code>env</code> variable with user agent and feature test
+  information.
+
+  @method getEnv
+  @private
+  */
+  function getEnv() {
+    var ua = navigator.userAgent;
+
+    env = {
+      // True if this browser supports disabling async mode on dynamically
+      // created script nodes. See
+      // http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order
+      async: doc.createElement('script').async === true
+    };
+
+    (env.webkit = /AppleWebKit\//.test(ua))
+      || (env.ie = /MSIE/.test(ua))
+      || (env.opera = /Opera/.test(ua))
+      || (env.gecko = /Gecko\//.test(ua))
+      || (env.unknown = true);
+  }
+
+  /**
+  Loads the specified resources, or the next resource of the specified type
+  in the queue if no resources are specified. If a resource of the specified
+  type is already being loaded, the new request will be queued until the
+  first request has been finished.
+
+  When an array of resource URLs is specified, those URLs will be loaded in
+  parallel if it is possible to do so while preserving execution order. All
+  browsers support parallel loading of CSS, but only Firefox and Opera
+  support parallel loading of scripts. In other browsers, scripts will be
+  queued and loaded one at a time to ensure correct execution order.
+
+  @method load
+  @param {String} type resource type ('css' or 'js')
+  @param {String|Array} urls (optional) URL or array of URLs to load
+  @param {Function} callback (optional) callback function to execute when the
+    resource is loaded
+  @param {Object} obj (optional) object to pass to the callback function
+  @param {Object} context (optional) if provided, the callback function will
+    be executed in this object's context
+  @private
+  */
+  function load(type, urls, callback, obj, context) {
+    var _finish = function () { finish(type); },
+        isCSS   = type === 'css',
+        nodes   = [],
+        i, len, node, p, pendingUrls, url;
+
+    env || getEnv();
+
+    if (urls) {
+      // If urls is a string, wrap it in an array. Otherwise assume it's an
+      // array and create a copy of it so modifications won't be made to the
+      // original.
+      urls = typeof urls === 'string' ? [urls] : urls.concat();
+
+      // Create a request object for each URL. If multiple URLs are specified,
+      // the callback will only be executed after all URLs have been loaded.
+      //
+      // Sadly, Firefox and Opera are the only browsers capable of loading
+      // scripts in parallel while preserving execution order. In all other
+      // browsers, scripts must be loaded sequentially.
+      //
+      // All browsers respect CSS specificity based on the order of the link
+      // elements in the DOM, regardless of the order in which the stylesheets
+      // are actually downloaded.
+      if (isCSS || env.async || env.gecko || env.opera) {
+        // Load in parallel.
+        queue[type].push({
+          urls    : urls,
+          callback: callback,
+          obj     : obj,
+          context : context
+        });
+      } else {
+        // Load sequentially.
+        for (i = 0, len = urls.length; i < len; ++i) {
+          queue[type].push({
+            urls    : [urls[i]],
+            callback: i === len - 1 ? callback : null, // callback is only added to the last URL
+            obj     : obj,
+            context : context
+          });
+        }
+      }
+    }
+
+    // If a previous load request of this type is currently in progress, we'll
+    // wait our turn. Otherwise, grab the next item in the queue.
+    if (pending[type] || !(p = pending[type] = queue[type].shift())) {
+      return;
+    }
+
+    head || (head = doc.head || doc.getElementsByTagName('head')[0]);
+    pendingUrls = p.urls;
+
+    for (i = 0, len = pendingUrls.length; i < len; ++i) {
+      url = pendingUrls[i];
+
+      if (isCSS) {
+          node = env.gecko ? createNode('style') : createNode('link', {
+            href: url,
+            rel : 'stylesheet'
+          });
+      } else {
+        node = createNode('script', {src: url});
+        node.async = false;
+      }
+
+      node.className = 'lazyload';
+      node.setAttribute('charset', 'utf-8');
+
+      if (env.ie && !isCSS) {
+        node.onreadystatechange = function () {
+          if (/loaded|complete/.test(node.readyState)) {
+            node.onreadystatechange = null;
+            _finish();
+          }
+        };
+      } else if (isCSS && (env.gecko || env.webkit)) {
+        // Gecko and WebKit don't support the onload event on link nodes.
+        if (env.webkit) {
+          // In WebKit, we can poll for changes to document.styleSheets to
+          // figure out when stylesheets have loaded.
+          p.urls[i] = node.href; // resolve relative URLs (or polling won't work)
+          pollWebKit();
+        } else {
+          // In Gecko, we can import the requested URL into a <style> node and
+          // poll for the existence of node.sheet.cssRules. Props to Zach
+          // Leatherman for calling my attention to this technique.
+          node.innerHTML = '@import "' + url + '";';
+          pollGecko(node);
+        }
+      } else {
+        node.onload = node.onerror = _finish;
+      }
+
+      nodes.push(node);
+    }
+
+    for (i = 0, len = nodes.length; i < len; ++i) {
+      head.appendChild(nodes[i]);
+    }
+  }
+
+  /**
+  Begins polling to determine when the specified stylesheet has finished loading
+  in Gecko. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  Thanks to Zach Leatherman for calling my attention to the @import-based
+  cross-domain technique used here, and to Oleg Slobodskoi for an earlier
+  same-domain implementation. See Zach's blog for more details:
+  http://www.zachleat.com/web/2010/07/29/load-css-dynamically/
+
+  @method pollGecko
+  @param {HTMLElement} node Style node to poll.
+  @private
+  */
+  function pollGecko(node) {
+    var hasRules;
+
+    try {
+      // We don't really need to store this value or ever refer to it again, but
+      // if we don't store it, Closure Compiler assumes the code is useless and
+      // removes it.
+      hasRules = !!node.sheet.cssRules;
+    } catch (ex) {
+      // An exception means the stylesheet is still loading.
+      pollCount += 1;
+
+      if (pollCount < 200) {
+        setTimeout(function () { pollGecko(node); }, 50);
+      } else {
+        // We've been polling for 10 seconds and nothing's happened. Stop
+        // polling and finish the pending requests to avoid blocking further
+        // requests.
+        hasRules && finish('css');
+      }
+
+      return;
+    }
+
+    // If we get here, the stylesheet has loaded.
+    finish('css');
+  }
+
+  /**
+  Begins polling to determine when pending stylesheets have finished loading
+  in WebKit. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  @method pollWebKit
+  @private
+  */
+  function pollWebKit() {
+    var css = pending.css, i;
+
+    if (css) {
+      i = styleSheets.length;
+
+      // Look for a stylesheet matching the pending URL.
+      while (--i >= 0) {
+        if (styleSheets[i].href === css.urls[0]) {
+          finish('css');
+          break;
+        }
+      }
+
+      pollCount += 1;
+
+      if (css) {
+        if (pollCount < 200) {
+          setTimeout(pollWebKit, 50);
+        } else {
+          // We've been polling for 10 seconds and nothing's happened, which may
+          // indicate that the stylesheet has been removed from the document
+          // before it had a chance to load. Stop polling and finish the pending
+          // request to prevent blocking further requests.
+          finish('css');
+        }
+      }
+    }
+  }
+
+  return {
+
+    /**
+    Requests the specified CSS URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified, the stylesheets will be loaded in parallel and the callback
+    will be executed after all stylesheets have finished loading.
+
+    @method css
+    @param {String|Array} urls CSS URL or array of CSS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified stylesheets are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    css: function (urls, callback, obj, context) {
+      load('css', urls, callback, obj, context);
+    },
+
+    /**
+    Requests the specified JavaScript URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified and the browser supports it, the scripts will be loaded in
+    parallel and the callback will be executed after all scripts have
+    finished loading.
+
+    Currently, only Firefox and Opera support parallel loading of scripts while
+    preserving execution order. In other browsers, scripts will be
+    queued and loaded one at a time to ensure correct execution order.
+
+    @method js
+    @param {String|Array} urls JS URL or array of JS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified scripts are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    js: function (urls, callback, obj, context) {
+      load('js', urls, callback, obj, context);
+    }
+
+  };
+})(this.document);
+
+
+/* **********************************************
+     Begin Embed.LoadLib.js
+********************************************** */
+
+/*
+	LoadLib
+	Designed and built by Zach Wise http://zachwise.com/
+	Extends LazyLoad
+*/
+
+/*	* CodeKit Import
+	* https://incident57.com/codekit/
+================================================== */
+// @codekit-prepend "LazyLoad.js";
+
+LoadLib = (function (doc) {
+	var loaded	= [];
+	
+	function isLoaded(url) {
+		
+		var i			= 0,
+			has_loaded	= false;
+			
+		for (i = 0; i < loaded.length; i++) {
+			if (loaded[i] == url) {
+				has_loaded = true;
+			}
+		}
+		
+		if (has_loaded) {
+			return true;
+		} else {
+			loaded.push(url);
+			return false;
+		}
+		
+	}
+	
+	return {
+		
+		css: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				LazyLoad.css(urls, callback, obj, context);
+			}
+		},
+
+		js: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				LazyLoad.js(urls, callback, obj, context);
+			}
+		}
+    };
+	
+})(this.document);
+
+
+/* **********************************************
+     Begin Embed.js
+********************************************** */
+
+//StoryJS Embed Loader
+// Provide a bootstrap method for instantiating a timeline. On page load, check the definition of these window scoped variables in this order: [url_config, timeline_config, storyjs_config, config]. As soon as one of these is found to be defined with type 'object,' it will be used to automatically instantiate a timeline.
+
+/*  CodeKit Import
+  https://incident57.com/codekit/
+================================================== */
+// @codekit-prepend "Embed.LoadLib.js";
+
+if(typeof embed_path == 'undefined') {
+  // REPLACE WITH YOUR BASEPATH IF YOU WANT OTHERWISE IT WILL TRY AND FIGURE IT OUT
+  var _tmp_script_path = getEmbedScriptPath("timeline-embed.js");
+  var embed_path = _tmp_script_path.substr(0,_tmp_script_path.lastIndexOf('js/'))
+}
+
+function getEmbedScriptPath(scriptname) {
+  var scriptTags = document.getElementsByTagName('script'),
+    script_path = "",
+    script_path_end = "";
+  for(var i = 0; i < scriptTags.length; i++) {
+    if (scriptTags[i].src.match(scriptname)) {
+      script_path = scriptTags[i].src;
+    }
+  }
+  if (script_path != "") {
+    script_path_end = "/"
+  }
+  return script_path.split('?')[0].split('/').slice(0, -1).join('/') + script_path_end;
+}
+
+/* CHECK TO SEE IF A CONFIG IS ALREADY DEFINED (FOR EASY EMBED)
+================================================== */
+(function() {
+  if (typeof url_config == 'object') {
+    createStoryJS(url_config);
+  } else if (typeof timeline_config == 'object') {
+    createStoryJS(timeline_config);
+  } else if (typeof storyjs_config == 'object') {
+    createStoryJS(storyjs_config);
+  } else if (typeof config == 'object') {
+    createStoryJS(config);
+  } else {
+    // No existing config. Call createStoryJS(your_config) manually with a config
+  }
+})();
+
+/* CREATE StoryJS Embed
+================================================== */
+function createStoryJS(c, src) {
+  /* VARS
+  ================================================== */
+  var storyjs_embedjs, t, te, x,
+    isCDN         = false,
+    js_version        = "2.24",
+    ready = {
+      timeout:  "",
+      checks:   0,
+      finished: false,
+      js:     false,
+      css:    false,
+      font: {
+        css:  false
+      }
+    },
+    path = {
+      base:   embed_path,
+      css:    embed_path + "css/",
+      js:     embed_path + "js/",
+      font: {
+        google: false,
+        css:  embed_path + "css/fonts/",
+        js:   "//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"
+      }
+    },
+    storyjs_e_config = {
+      version:  js_version,
+      debug:    false,
+      type:   'timeline',
+      id:     'storyjs',
+      embed_id: 'timeline-embed',
+      is_embed:   true,
+      width:    '100%',
+      height:   '100%',
+      source:   'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html',
+      lang:   'en',
+      font:   'default',
+      start_at_end: false,
+      timenav_position: 'bottom',
+      css:    path.css + 'timeline.css?'+js_version,
+      js:     '',
+      api_keys: {
+        google:       "",
+        flickr:       "",
+        twitter:      ""
+      },
+      gmap_key:   ""
+    }
+  /* BUILD CONFIG
+  ================================================== */
+  if (typeof c == 'object') {
+    for (x in c) {
+      if (Object.prototype.hasOwnProperty.call(c, x)) {
+        storyjs_e_config[x] = c[x];
+      }
+    }
+  }
+
+  if (typeof src != 'undefined') {
+    storyjs_e_config.source = src;
+  }
+
+  /* CDN VERSION?
+  ================================================== */
+  if (typeof url_config == 'object') {
+    isCDN = true;
+
+    /* IS THE SOURCE GOOGLE SPREADSHEET WITH JUST THE KEY?
+    ================================================== */
+    if (storyjs_e_config.source.match("docs.google.com") || storyjs_e_config.source.match("json") || storyjs_e_config.source.match("storify") ) {
+
+    } else {
+      storyjs_e_config.source = "https://docs.google.com/spreadsheet/pub?key=" + storyjs_e_config.source + "&output=html";
+    }
+
+  }
+
+  /* DETERMINE TYPE
+  ================================================== */
+  if (storyjs_e_config.js.match("/")) {
+
+  } else {
+    storyjs_e_config.css  = path.css + storyjs_e_config.type + ".css?" + js_version;
+
+    // Use unminified js file if in debug mode
+    storyjs_e_config.js   = path.js  + storyjs_e_config.type;
+    if (storyjs_e_config.debug) {
+      storyjs_e_config.js += ".js?"  + js_version;
+    } else {
+      storyjs_e_config.js += "-min.js?"  + js_version;
+    }
+
+    storyjs_e_config.id   = "storyjs-" + storyjs_e_config.type;
+  }
+
+  /* PREPARE
+  ================================================== */
+  createEmbedDiv();
+
+  /* Load CSS
+  ================================================== */
+  LoadLib.css(storyjs_e_config.css, onloaded_css);
+
+  /* Load FONT
+  ================================================== */
+  if (storyjs_e_config.font == "default") {
+    ready.font.css    = true;
+  } else {
+    // FONT CSS
+    var fn;
+    if (storyjs_e_config.font.match("/")) {
+      fn        = storyjs_e_config.font.split(".css")[0].split("/");
+      path.font.name  = fn[fn.length -1];
+      path.font.css = storyjs_e_config.font;
+    } else {
+      path.font.name  = storyjs_e_config.font;
+      path.font.css = path.font.css + "font."+storyjs_e_config.font.toLowerCase()+".css?" + js_version;
+    }
+    LoadLib.css(path.font.css, onloaded_font_css);
+  }
+    LoadLib.js(storyjs_e_config.js, onloaded_js);
+
+  /* On Loaded
+  ================================================== */
+
+  function onloaded_js() {
+    ready.js = true;
+    onloaded_check();
+  }
+
+  function onloaded_css() {
+    ready.css = true;
+    onloaded_check();
+  }
+  function onloaded_font_css() {
+    ready.font.css = true;
+    onloaded_check();
+  }
+  function onloaded_check() {
+    if (ready.checks > 40) {
+      return;
+      alert("Error Loading Files");
+    } else {
+      ready.checks++;
+      if (ready.js && ready.css && ready.font.css) {
+        if (!ready.finished) {
+          ready.finished = true;
+          buildEmbed();
+        }
+      } else {
+        ready.timeout = setTimeout('onloaded_check_again();', 250);
+      }
+    }
+  };
+  this.onloaded_check_again = function() {
+    onloaded_check();
+  };
+
+  /* Build Timeline
+  ================================================== */
+  function createEmbedDiv() {
+    var embed_classname = "tl-timeline-embed";
+
+    t = document.createElement('div');
+
+    if (storyjs_e_config.embed_id != "") {
+      te = document.getElementById(storyjs_e_config.embed_id);
+    } else {
+      te = document.getElementById("timeline-embed");
+    }
+
+    te.appendChild(t);
+    t.setAttribute("id", storyjs_e_config.id);
+
+    if (storyjs_e_config.width.toString().match("%") ) {
+      te.style.width = storyjs_e_config.width.split("%")[0] + "%";
+    } else {
+      storyjs_e_config.width = storyjs_e_config.width - 2;
+      te.style.width = (storyjs_e_config.width) + 'px';
+    }
+
+    if (storyjs_e_config.height.toString().match("%")) {
+      te.style.height = storyjs_e_config.height;
+      embed_classname += " tl-timeline-full-embed";
+      te.style.height = storyjs_e_config.height.split("%")[0] + "%";
+
+    } else if (storyjs_e_config.width.toString().match("%")) {
+      embed_classname += " tl-timeline-full-embed";
+      storyjs_e_config.height = storyjs_e_config.height - 16;
+      te.style.height = (storyjs_e_config.height) + 'px';
+    }else {
+      embed_classname += " sized-embed";
+      storyjs_e_config.height = storyjs_e_config.height - 16;
+      te.style.height = (storyjs_e_config.height) + 'px';
+    }
+
+    te.setAttribute("class", embed_classname);
+    te.setAttribute("className", embed_classname);
+    t.style.position = 'relative';
+  }
+
+  function buildEmbed() {
+    TL.debug = storyjs_e_config.debug;
+
+    storyjs_e_config['ga_property_id'] = 'UA-27829802-4';
+    storyjs_e_config.language = storyjs_e_config.lang;
+    if (storyjs_e_config.width == '100%') {
+      storyjs_e_config.is_full_embed = true;
+    }
+    var embed_id = 'timeline-embed';
+    if ('' != storyjs_e_config.embed_id)
+      embed_id = storyjs_e_config.embed_id;
+    window.timeline = new TL.Timeline(embed_id, storyjs_e_config);
+  }
+
+}
+
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-min.js b/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-min.js
new file mode 100644
index 0000000000000000000000000000000000000000..bda2fb8cc685e9baab4a8a3c4105e04ea58a909c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/timeline-min.js
@@ -0,0 +1,14 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+function TL_Error(t,e){this.name="TL.Error",this.message=t||"error",this.message_key=this.message,this.detail=e||"";var i=new Error;i.hasOwnProperty("stack")&&(this.stack=i.stack)}!function(t){t.TL={VERSION:"0.1",_originalL:t.TL}}(this),TL.debug=!1,TL.Bind=function(t,e){return function(){return t.apply(e,arguments)}},trace=function(t){TL.debug&&(window.console?console.log(t):"undefined"!=typeof jsTrace&&jsTrace.send(t))},TL_Error.prototype=Object.create(Error.prototype),TL_Error.prototype.constructor=TL_Error,TL.Error=TL_Error,TL.Util={mergeData:function(t,e){var i;for(i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},extend:function(t){for(var e,i=Array.prototype.slice.call(arguments,1),n=0,a=i.length;n<a;n++)e=i[n]||{},TL.Util.mergeData(t,e);return t},isEven:function(t){return t==parseFloat(t)?!(t%2):void 0},isTrue:function(t){return null!=t&&(1==t||"true"==String(t).toLowerCase()||1==Number(t))},findArrayNumberByUniqueID:function(t,e,i,n){for(var a=n||0,s=0;s<e.length;s++)e[s].data[i]==t&&(a=s);return a},convertUnixTime:function(t){var e,i,n,a,s,o,r=[],l={ymd:"",time:"",time_array:[],date_array:[],full_array:[]};l.ymd=t.split(" ")[0],l.time=t.split(" ")[1],l.date_array=l.ymd.split("-"),l.time_array=l.time.split(":"),l.full_array=l.date_array.concat(l.time_array);for(var h=0;h<l.full_array.length;h++)r.push(parseInt(l.full_array[h]));return e=new Date(r[0],r[1],r[2],r[3],r[4],r[5]),i=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],n=e.getFullYear(),a=i[e.getMonth()],s=e.getDate(),o=a+", "+s+" "+n},setData:function(t,e){t.data=TL.Util.extend({},t.data,e),""===t.data.unique_id&&(t.data.unique_id=TL.Util.unique_ID(6))},stamp:function(){var t=0,e="_tl_id";return function(i){return i[e]=i[e]||++t,i[e]}}(),isArray:function(){if(Array.isArray)return Array.isArray;var t=Object.prototype.toString,e=t.call([]);return function(i){return t.call(i)===e}}(),getRandomNumber:function(t){return Math.floor(Math.random()*t)},unique_ID:function(t,e){var i=function(t){return Math.floor(Math.random()*t)},n=function(){var t="abcdefghijklmnopqurstuvwxyz";return t.substr(i(32),1)},a=function(t){for(var e="",i=0;i<t;i++)e+=n();return e};return e?e+"-"+a(t):"tl-"+a(t)},ensureUniqueKey:function(t,e){if(e||(e=TL.Util.unique_ID(6)),!(e in t))return e;var i=e.match(/^(.+)(-\d+)?$/)[1],n=[];for(key in t)key.match(/^(.+?)(-\d+)?$/)[1]==i&&n.push(key);e=i+"-"+(n.length+1);for(var a=n.length;n.indexOf(e)!=-1;a++)e=i+"-"+a;return e},htmlify:function(t){return t.match(/<p>[\s\S]*?<\/p>/)?t:"<p>"+t+"</p>"},linkify:function(t,e,i){var n=function(t,e,i){i||(i="");var n=30;return e&&e.length>n&&(e=e.substring(0,n)+"…"),i+"<a class='tl-makelink' href='"+t+"' onclick='void(0)'>"+e+"</a>"},a=/\b(?:https?|ftp):\/\/([a-z0-9-+&@#\/%?=~_|!:,.;]*[a-z0-9-+&@#\/%=~_|])/gim,s=/(^|[^\/>])(www\.[\S]+(\b|$))/gim,o=/([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)/gim;return t.replace(a,function(t,e,i,a){if(i>0){var s=a[i-1];if('"'==s||"'"==s||"="==s)return t}return n(t,e)}).replace(s,function(t,e,i,a,s){return n("http://"+i,i,e)}).replace(o,function(t,e,i,a){return n("mailto:"+e,e)})},unlinkify:function(t){return t?(t=t.replace(/<a\b[^>]*>/i,""),t=t.replace(/<\/a>/i,"")):t},getParamString:function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(i+"="+t[i]);return"?"+e.join("&")},formatNum:function(t,e){var i=Math.pow(10,e||5);return Math.round(t*i)/i},falseFn:function(){return!1},requestAnimFrame:function(){function t(t){window.setTimeout(t,1e3/60)}var e=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||t;return function(i,n,a,s){i=n?TL.Util.bind(i,n):i,a&&e===t?i():e(i,s)}}(),bind:function(t,e){return function(){return t.apply(e,arguments)}},template:function(t,e){return t.replace(/\{ *([\w_]+) *\}/g,function(t,i){var n=e[i];if(!e.hasOwnProperty(i))throw new TL.Error("template_value_err",t);return n})},hexToRgb:function(t){TL.Util.css_named_colors[t.toLowerCase()]&&(t=TL.Util.css_named_colors[t.toLowerCase()]);var e=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;t=t.replace(e,function(t,e,i,n){return e+e+i+i+n+n});var i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(t);return i?{r:parseInt(i[1],16),g:parseInt(i[2],16),b:parseInt(i[3],16)}:null},rgbToHex:function(t){var e,i,n;if("object"==typeof t)e=t.r,i=t.g,n=t.b;else if("function"==typeof t.match){var a=t.match(/^rgb\((\d+),(\d+),(\d+)\)$/);a&&(e=a[1],i=a[2],n=a[3])}if(isNaN(e)||isNaN(n)||isNaN(i))throw new TL.Error("invalid_rgb_err");return"#"+TL.Util.intToHexString(e)+TL.Util.intToHexString(i)+TL.Util.intToHexString(n)},colorObjToHex:function(t){var e=[t.r,t.g,t.b];return TL.Util.rgbToHex("rgb("+e.join(",")+")")},css_named_colors:{aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},ratio:{square:function(t){var e={w:0,h:0};return t.w>t.h&&t.h>0?(e.h=t.h,e.w=t.h):(e.w=t.w,e.h=t.w),e},r16_9:function(t){return null!==t.w&&""!==t.w?Math.round(t.w/16*9):null!==t.h&&""!==t.h?Math.round(t.h/9*16):0},r4_3:function(t){return null!==t.w&&""!==t.w?Math.round(t.w/4*3):null!==t.h&&""!==t.h?Math.round(t.h/3*4):void 0}},getObjectAttributeByIndex:function(t,e){if("undefined"!=typeof t){var i=0;for(var n in t){if(e===i)return t[n];i++}return""}return""},getUrlVars:function(t){var e,i,n,a=[];e=t.toString(),e.match("&#038;")?e=e.replace("&#038;","&"):e.match("&#38;")?e=e.replace("&#38;","&"):e.match("&amp;")&&(e=e.replace("&amp;","&")),n=e.slice(e.indexOf("?")+1).split("&");for(var s=0;s<n.length;s++)i=n[s].split("="),a.push(i[0]),a[i[0]]=i[1];return a},trim:function(t){return t&&"function"==typeof t.replace?t.replace(/^\s+|\s+$/g,""):""},slugify:function(t){t=TL.Util.trim(t),t=t.toLowerCase();for(var e="ãàáäâẽèéëêìíïîõòóöôùúüûñç·/_,:;",i="aaaaaeeeeeiiiiooooouuuunc------",n=0,a=e.length;n<a;n++)t=t.replace(new RegExp(e.charAt(n),"g"),i.charAt(n));return t=t.replace(/[^a-z0-9 -]/g,"").replace(/\s+/g,"-").replace(/-+/g,"-"),t=t.replace(/^([0-9])/,"_$1")},maxDepth:function(t){for(var e=[],i=0,n=0;n<t.length;n++){if(e.push(t[n]),e.length>1){for(var a=e[e.length-1],s=-1,o=0;o<e.length-1;o++)e[o][1]<a[0]&&(s=o);s>=0&&(e=e.slice(s+1))}e.length>i&&(i=e.length)}return i},pad:function(t,e){for(t=String(t),e=e||2;t.length<e;)t="0"+t;return t},intToHexString:function(t){return TL.Util.pad(parseInt(t,10).toString(16))},findNextGreater:function(t,e,i){for(var n=0;n<t.length;n++)if(e<t[n])return t[n];return i?i:e},findNextLesser:function(t,e,i){for(var n=t.length-1;n>=0;n--)if(e>t[n])return t[n];return i?i:e},isEmptyObject:function(t){var e=[];if(Object.keys)e=Object.keys(t);else for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.push(i);for(var n=0;n<e.length;n++){var a=e[n];if(null!=t[a]&&"string"!=typeof t[a])return!1;if(0!=TL.Util.trim(t[a]).length)return!1}return!0},parseYouTubeTime:function(t){if("string"==typeof t){if(parts=t.match(/^\s*(\d+h)?(\d+m)?(\d+s)?\s*/i),parts){var e=parseInt(parts[1])||0,i=parseInt(parts[2])||0,n=parseInt(parts[3])||0;return n+60*i+60*e*60}}else if("number"==typeof t)return t;return 0},transformImageURL:function(t){return t.replace(/(.*)www.dropbox.com\/(.*)/,"$1dl.dropboxusercontent.com/$2")},base58:function(t){var e=t||"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ",i=e.length;return{encode:function(t){if("number"!=typeof t||t!==parseInt(t))throw'"encode" only accepts integers.';for(var n="";t;){var a=t%i;t=Math.floor(t/i),n=e[a].toString()+n}return n},decode:function(t){if("string"!=typeof t)throw'"decode" only accepts strings.';for(var n=0;t;){var a=e.indexOf(t[0]);if(a<0)throw'"decode" can\'t find "'+t[0]+'" in the alphabet: "'+e+'"';var s=t.length-1;n+=a*Math.pow(i,s),t=t.substring(1)}return n}}}()},function(t){var e=function(){function t(t){return null==t?String(t):Z[Y.call(t)]||"object"}function e(e){return"function"==t(e)}function i(t){return null!=t&&t==t.window}function n(t){return null!=t&&t.nodeType==t.DOCUMENT_NODE}function a(e){return"object"==t(e)}function s(t){return a(t)&&!i(t)&&Object.getPrototypeOf(t)==Object.prototype}function o(t){return"number"==typeof t.length}function r(t){return E.call(t,function(t){return null!=t})}function l(t){return t.length>0?$.fn.concat.apply([],t):t}function h(t){return t.replace(/::/g,"/").replace(/([A-Z]+)([A-Z][a-z])/g,"$1_$2").replace(/([a-z\d])([A-Z])/g,"$1_$2").replace(/_/g,"-").toLowerCase()}function d(t){return t in N?N[t]:N[t]=new RegExp("(^|\\s)"+t+"(\\s|$)")}function c(t,e){return"number"!=typeof e||I[h(t)]?e:e+"px"}function u(t){var e,i;return C[t]||(e=S.createElement(t),S.body.appendChild(e),i=getComputedStyle(e,"").getPropertyValue("display"),e.parentNode.removeChild(e),"none"==i&&(i="block"),C[t]=i),C[t]}function m(t){return"children"in t?M.call(t.children):$.map(t.childNodes,function(t){if(1==t.nodeType)return t})}function _(t,e,i){for(w in e)i&&(s(e[w])||X(e[w]))?(s(e[w])&&!s(t[w])&&(t[w]={}),X(e[w])&&!X(t[w])&&(t[w]=[]),_(t[w],e[w],i)):e[w]!==L&&(t[w]=e[w])}function f(t,e){return null==e?$(t):$(t).filter(e)}function p(t,i,n,a){return e(i)?i.call(t,n,a):i}function g(t,e,i){null==i?t.removeAttribute(e):t.setAttribute(e,i)}function v(t,e){var i=t.className,n=i&&i.baseVal!==L;return e===L?n?i.baseVal:i:void(n?i.baseVal=e:t.className=e)}function y(t){var e;try{return t?"true"==t||"false"!=t&&("null"==t?null:/^0/.test(t)||isNaN(e=Number(t))?/^[\[\{]/.test(t)?$.parseJSON(t):t:e):t}catch(e){return t}}function T(t,e){e(t);for(var i in t.childNodes)T(t.childNodes[i],e)}var L,w,$,b,x,k,D=[],M=D.slice,E=D.filter,S=window.document,C={},N={},I={"column-count":1,columns:1,"font-weight":1,"line-height":1,opacity:1,"z-index":1,zoom:1},U=/^\s*<(\w+|!)[^>]*>/,A=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,j=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,O=/^(?:body|html)$/i,P=/([A-Z])/g,z=["val","css","html","text","data","width","height","offset"],B=["after","prepend","before","append"],q=S.createElement("table"),R=S.createElement("tr"),H={tr:S.createElement("tbody"),tbody:q,thead:q,tfoot:q,td:R,th:R,"*":S.createElement("div")},F=/complete|loaded|interactive/,W=/^[\w-]*$/,Z={},Y=Z.toString,G={},J=S.createElement("div"),V={tabindex:"tabIndex",readonly:"readOnly",for:"htmlFor",class:"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},X=Array.isArray||function(t){return t instanceof Array};return G.matches=function(t,e){if(!e||!t||1!==t.nodeType)return!1;var i=t.webkitMatchesSelector||t.mozMatchesSelector||t.oMatchesSelector||t.matchesSelector;if(i)return i.call(t,e);var n,a=t.parentNode,s=!a;return s&&(a=J).appendChild(t),n=~G.qsa(a,e).indexOf(t),s&&J.removeChild(t),n},x=function(t){return t.replace(/-+(.)?/g,function(t,e){return e?e.toUpperCase():""})},k=function(t){return E.call(t,function(e,i){return t.indexOf(e)==i})},G.fragment=function(t,e,i){var n,a,o;return A.test(t)&&(n=$(S.createElement(RegExp.$1))),n||(t.replace&&(t=t.replace(j,"<$1></$2>")),e===L&&(e=U.test(t)&&RegExp.$1),e in H||(e="*"),o=H[e],o.innerHTML=""+t,n=$.each(M.call(o.childNodes),function(){o.removeChild(this)})),s(i)&&(a=$(n),$.each(i,function(t,e){z.indexOf(t)>-1?a[t](e):a.attr(t,e)})),n},G.Z=function(t,e){return t=t||[],t.__proto__=$.fn,t.selector=e||"",t},G.isZ=function(t){return t instanceof G.Z},G.init=function(t,i){var n;if(!t)return G.Z();if("string"==typeof t)if(t=t.trim(),"<"==t[0]&&U.test(t))n=G.fragment(t,RegExp.$1,i),t=null;else{if(i!==L)return $(i).find(t);n=G.qsa(S,t)}else{if(e(t))return $(S).ready(t);if(G.isZ(t))return t;if(X(t))n=r(t);else if(a(t))n=[t],t=null;else if(U.test(t))n=G.fragment(t.trim(),RegExp.$1,i),t=null;else{if(i!==L)return $(i).find(t);n=G.qsa(S,t)}}return G.Z(n,t)},$=function(t,e){return G.init(t,e)},$.extend=function(t){var e,i=M.call(arguments,1);return"boolean"==typeof t&&(e=t,t=i.shift()),i.forEach(function(i){_(t,i,e)}),t},G.qsa=function(t,e){var i,a="#"==e[0],s=!a&&"."==e[0],o=a||s?e.slice(1):e,r=W.test(o);return n(t)&&r&&a?(i=t.getElementById(o))?[i]:[]:1!==t.nodeType&&9!==t.nodeType?[]:M.call(r&&!a?s?t.getElementsByClassName(o):t.getElementsByTagName(e):t.querySelectorAll(e))},$.contains=function(t,e){return t!==e&&t.contains(e)},$.type=t,$.isFunction=e,$.isWindow=i,$.isArray=X,$.isPlainObject=s,$.isEmptyObject=function(t){var e;for(e in t)return!1;return!0},$.inArray=function(t,e,i){return D.indexOf.call(e,t,i)},$.camelCase=x,$.trim=function(t){return null==t?"":String.prototype.trim.call(t)},$.uuid=0,$.support={},$.expr={},$.map=function(t,e){var i,n,a,s=[];if(o(t))for(n=0;n<t.length;n++)i=e(t[n],n),null!=i&&s.push(i);else for(a in t)i=e(t[a],a),null!=i&&s.push(i);return l(s)},$.each=function(t,e){var i,n;if(o(t)){for(i=0;i<t.length;i++)if(e.call(t[i],i,t[i])===!1)return t}else for(n in t)if(e.call(t[n],n,t[n])===!1)return t;return t},$.grep=function(t,e){return E.call(t,e)},window.JSON&&($.parseJSON=JSON.parse),$.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(t,e){Z["[object "+e+"]"]=e.toLowerCase()}),$.fn={forEach:D.forEach,reduce:D.reduce,push:D.push,sort:D.sort,indexOf:D.indexOf,concat:D.concat,map:function(t){return $($.map(this,function(e,i){return t.call(e,i,e)}))},slice:function(){return $(M.apply(this,arguments))},ready:function(t){return F.test(S.readyState)&&S.body?t($):S.addEventListener("DOMContentLoaded",function(){t($)},!1),this},get:function(t){return t===L?M.call(this):this[t>=0?t:t+this.length]},toArray:function(){return this.get()},size:function(){return this.length},remove:function(){return this.each(function(){null!=this.parentNode&&this.parentNode.removeChild(this)})},each:function(t){return D.every.call(this,function(e,i){return t.call(e,i,e)!==!1}),this},filter:function(t){return e(t)?this.not(this.not(t)):$(E.call(this,function(e){return G.matches(e,t)}))},add:function(t,e){return $(k(this.concat($(t,e))))},is:function(t){return this.length>0&&G.matches(this[0],t)},not:function(t){var i=[];if(e(t)&&t.call!==L)this.each(function(e){t.call(this,e)||i.push(this)});else{var n="string"==typeof t?this.filter(t):o(t)&&e(t.item)?M.call(t):$(t);this.forEach(function(t){n.indexOf(t)<0&&i.push(t)})}return $(i)},has:function(t){return this.filter(function(){return a(t)?$.contains(this,t):$(this).find(t).size()})},eq:function(t){return t===-1?this.slice(t):this.slice(t,+t+1)},first:function(){var t=this[0];return t&&!a(t)?t:$(t)},last:function(){var t=this[this.length-1];return t&&!a(t)?t:$(t)},find:function(t){var e,i=this;return e="object"==typeof t?$(t).filter(function(){var t=this;return D.some.call(i,function(e){return $.contains(e,t)})}):1==this.length?$(G.qsa(this[0],t)):this.map(function(){return G.qsa(this,t)})},closest:function(t,e){var i=this[0],a=!1;for("object"==typeof t&&(a=$(t));i&&!(a?a.indexOf(i)>=0:G.matches(i,t));)i=i!==e&&!n(i)&&i.parentNode;return $(i)},parents:function(t){for(var e=[],i=this;i.length>0;)i=$.map(i,function(t){if((t=t.parentNode)&&!n(t)&&e.indexOf(t)<0)return e.push(t),t});return f(e,t)},parent:function(t){return f(k(this.pluck("parentNode")),t)},children:function(t){return f(this.map(function(){return m(this)}),t)},contents:function(){return this.map(function(){return M.call(this.childNodes)})},siblings:function(t){return f(this.map(function(t,e){return E.call(m(e.parentNode),function(t){return t!==e})}),t)},empty:function(){return this.each(function(){this.innerHTML=""})},pluck:function(t){return $.map(this,function(e){return e[t]})},show:function(){return this.each(function(){"none"==this.style.display&&(this.style.display=""),"none"==getComputedStyle(this,"").getPropertyValue("display")&&(this.style.display=u(this.nodeName))})},replaceWith:function(t){return this.before(t).remove()},wrap:function(t){var i=e(t);if(this[0]&&!i)var n=$(t).get(0),a=n.parentNode||this.length>1;return this.each(function(e){$(this).wrapAll(i?t.call(this,e):a?n.cloneNode(!0):n)})},wrapAll:function(t){if(this[0]){$(this[0]).before(t=$(t));for(var e;(e=t.children()).length;)t=e.first();$(t).append(this)}return this},wrapInner:function(t){var i=e(t);return this.each(function(e){var n=$(this),a=n.contents(),s=i?t.call(this,e):t;a.length?a.wrapAll(s):n.append(s)})},unwrap:function(){return this.parent().each(function(){$(this).replaceWith($(this).children())}),this},clone:function(){return this.map(function(){return this.cloneNode(!0)})},hide:function(){return this.css("display","none")},toggle:function(t){return this.each(function(){var e=$(this);(t===L?"none"==e.css("display"):t)?e.show():e.hide()})},prev:function(t){return $(this.pluck("previousElementSibling")).filter(t||"*")},next:function(t){return $(this.pluck("nextElementSibling")).filter(t||"*")},html:function(t){return 0===arguments.length?this.length>0?this[0].innerHTML:null:this.each(function(e){var i=this.innerHTML;$(this).empty().append(p(this,t,e,i))})},text:function(t){return 0===arguments.length?this.length>0?this[0].textContent:null:this.each(function(){this.textContent=t===L?"":""+t})},attr:function(t,e){var i;return"string"==typeof t&&e===L?0==this.length||1!==this[0].nodeType?L:"value"==t&&"INPUT"==this[0].nodeName?this.val():!(i=this[0].getAttribute(t))&&t in this[0]?this[0][t]:i:this.each(function(i){if(1===this.nodeType)if(a(t))for(w in t)g(this,w,t[w]);else g(this,t,p(this,e,i,this.getAttribute(t)))})},removeAttr:function(t){return this.each(function(){1===this.nodeType&&g(this,t)})},prop:function(t,e){return t=V[t]||t,e===L?this[0]&&this[0][t]:this.each(function(i){this[t]=p(this,e,i,this[t])})},data:function(t,e){var i=this.attr("data-"+t.replace(P,"-$1").toLowerCase(),e);return null!==i?y(i):L},val:function(t){return 0===arguments.length?this[0]&&(this[0].multiple?$(this[0]).find("option").filter(function(){return this.selected}).pluck("value"):this[0].value):this.each(function(e){this.value=p(this,t,e,this.value)})},offset:function(t){if(t)return this.each(function(e){var i=$(this),n=p(this,t,e,i.offset()),a=i.offsetParent().offset(),s={top:n.top-a.top,left:n.left-a.left};"static"==i.css("position")&&(s.position="relative"),i.css(s)});if(0==this.length)return null;var e=this[0].getBoundingClientRect();return{left:e.left+window.pageXOffset,top:e.top+window.pageYOffset,width:Math.round(e.width),height:Math.round(e.height)}},css:function(e,i){if(arguments.length<2){var n=this[0],a=getComputedStyle(n,"");if(!n)return;if("string"==typeof e)return n.style[x(e)]||a.getPropertyValue(e);if(X(e)){var s={};return $.each(X(e)?e:[e],function(t,e){s[e]=n.style[x(e)]||a.getPropertyValue(e)}),s}}var o="";if("string"==t(e))i||0===i?o=h(e)+":"+c(e,i):this.each(function(){this.style.removeProperty(h(e))});else for(w in e)e[w]||0===e[w]?o+=h(w)+":"+c(w,e[w])+";":this.each(function(){this.style.removeProperty(h(w))});return this.each(function(){this.style.cssText+=";"+o})},index:function(t){return t?this.indexOf($(t)[0]):this.parent().children().indexOf(this[0])},hasClass:function(t){return!!t&&D.some.call(this,function(t){return this.test(v(t))},d(t))},addClass:function(t){return t?this.each(function(e){b=[];var i=v(this),n=p(this,t,e,i);n.split(/\s+/g).forEach(function(t){$(this).hasClass(t)||b.push(t)},this),b.length&&v(this,i+(i?" ":"")+b.join(" "))}):this},removeClass:function(t){return this.each(function(e){return t===L?v(this,""):(b=v(this),p(this,t,e,b).split(/\s+/g).forEach(function(t){b=b.replace(d(t)," ")}),void v(this,b.trim()))})},toggleClass:function(t,e){return t?this.each(function(i){var n=$(this),a=p(this,t,i,v(this));a.split(/\s+/g).forEach(function(t){(e===L?!n.hasClass(t):e)?n.addClass(t):n.removeClass(t)})}):this},scrollTop:function(t){if(this.length){var e="scrollTop"in this[0];return t===L?e?this[0].scrollTop:this[0].pageYOffset:this.each(e?function(){this.scrollTop=t}:function(){this.scrollTo(this.scrollX,t)})}},scrollLeft:function(t){if(this.length){var e="scrollLeft"in this[0];return t===L?e?this[0].scrollLeft:this[0].pageXOffset:this.each(e?function(){this.scrollLeft=t}:function(){this.scrollTo(t,this.scrollY)})}},position:function(){if(this.length){var t=this[0],e=this.offsetParent(),i=this.offset(),n=O.test(e[0].nodeName)?{top:0,left:0}:e.offset();return i.top-=parseFloat($(t).css("margin-top"))||0,i.left-=parseFloat($(t).css("margin-left"))||0,n.top+=parseFloat($(e[0]).css("border-top-width"))||0,n.left+=parseFloat($(e[0]).css("border-left-width"))||0,{top:i.top-n.top,left:i.left-n.left}}},offsetParent:function(){return this.map(function(){for(var t=this.offsetParent||S.body;t&&!O.test(t.nodeName)&&"static"==$(t).css("position");)t=t.offsetParent;return t})}},$.fn.detach=$.fn.remove,["width","height"].forEach(function(t){var e=t.replace(/./,function(t){return t[0].toUpperCase()});$.fn[t]=function(a){var s,o=this[0];return a===L?i(o)?o["inner"+e]:n(o)?o.documentElement["scroll"+e]:(s=this.offset())&&s[t]:this.each(function(e){o=$(this),o.css(t,p(this,a,e,o[t]()))})}}),B.forEach(function(e,i){var n=i%2;$.fn[e]=function(){var e,a,s=$.map(arguments,function(i){return e=t(i),"object"==e||"array"==e||null==i?i:G.fragment(i)}),o=this.length>1;return s.length<1?this:this.each(function(t,e){a=n?e:e.parentNode,e=0==i?e.nextSibling:1==i?e.firstChild:2==i?e:null,s.forEach(function(t){if(o)t=t.cloneNode(!0);else if(!a)return $(t).remove();T(a.insertBefore(t,e),function(t){null==t.nodeName||"SCRIPT"!==t.nodeName.toUpperCase()||t.type&&"text/javascript"!==t.type||t.src||window.eval.call(window,t.innerHTML)})})})},$.fn[n?e+"To":"insert"+(i?"Before":"After")]=function(t){return $(t)[e](this),this}}),G.Z.prototype=$.fn,G.uniq=k,G.deserializeValue=y,$.zepto=G,$}();window.Zepto=e,void 0===window.$&&(window.$=e),function($){function t(t){return t._zid||(t._zid=c++)}function e(e,a,s,o){if(a=i(a),a.ns)var r=n(a.ns);return(f[t(e)]||[]).filter(function(e){return e&&(!a.e||e.e==a.e)&&(!a.ns||r.test(e.ns))&&(!s||t(e.fn)===t(s))&&(!o||e.sel==o)})}function i(t){var e=(""+t).split(".");return{e:e[0],ns:e.slice(1).sort().join(" ")}}function n(t){return new RegExp("(?:^| )"+t.replace(" "," .* ?")+"(?: |$)")}function a(t,e){return t.del&&!g&&t.e in v||!!e}function s(t){return y[t]||g&&v[t]||t}function o(e,n,o,r,h,c,u){var m=t(e),_=f[m]||(f[m]=[]);n.split(/\s/).forEach(function(t){if("ready"==t)return $(document).ready(o);var n=i(t);n.fn=o,n.sel=h,n.e in y&&(o=function(t){var e=t.relatedTarget;if(!e||e!==this&&!$.contains(this,e))return n.fn.apply(this,arguments)}),n.del=c;var m=c||o;n.proxy=function(t){if(t=l(t),!t.isImmediatePropagationStopped()){t.data=r;var i=m.apply(e,t._args==d?[t]:[t].concat(t._args));return i===!1&&(t.preventDefault(),t.stopPropagation()),i}},n.i=_.length,_.push(n),"addEventListener"in e&&e.addEventListener(s(n.e),n.proxy,a(n,u))})}function r(i,n,o,r,l){var h=t(i);(n||"").split(/\s/).forEach(function(t){e(i,t,o,r).forEach(function(t){delete f[h][t.i],"removeEventListener"in i&&i.removeEventListener(s(t.e),t.proxy,a(t,l))})})}function l(t,e){return!e&&t.isDefaultPrevented||(e||(e=t),$.each(b,function(i,n){var a=e[i];t[i]=function(){return this[n]=T,a&&a.apply(e,arguments)},t[n]=L}),(e.defaultPrevented!==d?e.defaultPrevented:"returnValue"in e?e.returnValue===!1:e.getPreventDefault&&e.getPreventDefault())&&(t.isDefaultPrevented=T)),t}function h(t){var e,i={originalEvent:t};for(e in t)w.test(e)||t[e]===d||(i[e]=t[e]);return l(i,t)}var d,c=($.zepto.qsa,1),u=Array.prototype.slice,m=$.isFunction,_=function(t){return"string"==typeof t},f={},p={},g="onfocusin"in window,v={focus:"focusin",blur:"focusout"},y={mouseenter:"mouseover",mouseleave:"mouseout"};p.click=p.mousedown=p.mouseup=p.mousemove="MouseEvents",$.event={add:o,remove:r},$.proxy=function(e,i){if(m(e)){var n=function(){return e.apply(i,arguments)};return n._zid=t(e),n}if(_(i))return $.proxy(e[i],e);throw new TypeError("expected function")},$.fn.bind=function(t,e,i){return this.on(t,e,i)},$.fn.unbind=function(t,e){return this.off(t,e)},$.fn.one=function(t,e,i,n){return this.on(t,e,i,n,1)};var T=function(){return!0},L=function(){return!1},w=/^([A-Z]|returnValue$|layer[XY]$)/,b={preventDefault:"isDefaultPrevented",stopImmediatePropagation:"isImmediatePropagationStopped",stopPropagation:"isPropagationStopped"};$.fn.delegate=function(t,e,i){return this.on(e,t,i)},$.fn.undelegate=function(t,e,i){return this.off(e,t,i)},$.fn.live=function(t,e){return $(document.body).delegate(this.selector,t,e),this},$.fn.die=function(t,e){return $(document.body).undelegate(this.selector,t,e),this},$.fn.on=function(t,e,i,n,a){var s,l,c=this;return t&&!_(t)?($.each(t,function(t,n){c.on(t,e,i,n,a)}),c):(_(e)||m(n)||n===!1||(n=i,i=e,e=d),(m(i)||i===!1)&&(n=i,i=d),n===!1&&(n=L),c.each(function(d,c){a&&(s=function(t){return r(c,t.type,n),n.apply(this,arguments)}),e&&(l=function(t){var i,a=$(t.target).closest(e,c).get(0);if(a&&a!==c)return i=$.extend(h(t),{currentTarget:a,liveFired:c}),(s||n).apply(a,[i].concat(u.call(arguments,1)))}),o(c,t,n,i,e,l||s)}))},$.fn.off=function(t,e,i){var n=this;return t&&!_(t)?($.each(t,function(t,i){n.off(t,e,i)}),n):(_(e)||m(i)||i===!1||(i=e,e=d),i===!1&&(i=L),n.each(function(){r(this,t,i,e)}))},$.fn.trigger=function(t,e){return t=_(t)||$.isPlainObject(t)?$.Event(t):l(t),t._args=e,this.each(function(){"dispatchEvent"in this?this.dispatchEvent(t):$(this).triggerHandler(t,e)})},$.fn.triggerHandler=function(t,i){var n,a;return this.each(function(s,o){n=h(_(t)?$.Event(t):t),n._args=i,n.target=o,$.each(e(o,t.type||t),function(t,e){if(a=e.proxy(n),n.isImmediatePropagationStopped())return!1})}),a},"focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select keydown keypress keyup error".split(" ").forEach(function(t){$.fn[t]=function(e){return e?this.bind(t,e):this.trigger(t)}}),["focus","blur"].forEach(function(t){$.fn[t]=function(e){return e?this.bind(t,e):this.each(function(){try{this[t]()}catch(t){}}),this}}),$.Event=function(t,e){_(t)||(e=t,t=e.type);var i=document.createEvent(p[t]||"Events"),n=!0;if(e)for(var a in e)"bubbles"==a?n=!!e[a]:i[a]=e[a];return i.initEvent(t,n,!0),l(i)}}(e),function($){function t(t,e,i){var n=$.Event(e);return $(t).trigger(n,i),!n.isDefaultPrevented()}function e(e,i,n,a){if(e.global)return t(i||g,n,a)}function i(t){t.global&&0===$.active++&&e(t,null,"ajaxStart")}function n(t){t.global&&!--$.active&&e(t,null,"ajaxStop")}function a(t,i){var n=i.context;return i.beforeSend.call(n,t,i)!==!1&&e(i,n,"ajaxBeforeSend",[t,i])!==!1&&void e(i,n,"ajaxSend",[t,i])}function s(t,i,n,a){var s=n.context,o="success";n.success.call(s,t,o,i),a&&a.resolveWith(s,[t,o,i]),e(n,s,"ajaxSuccess",[i,n,t]),r(o,i,n)}function o(t,i,n,a,s){var o=a.context;a.error.call(o,n,i,t),s&&s.rejectWith(o,[n,i,t]),e(a,o,"ajaxError",[n,a,t||i]),r(i,n,a)}function r(t,i,a){var s=a.context;a.complete.call(s,i,t),e(a,s,"ajaxComplete",[i,a]),n(a)}function l(){}function h(t){return t&&(t=t.split(";",2)[0]),t&&(t==w?"html":t==L?"json":y.test(t)?"script":T.test(t)&&"xml")||"text"}function d(t,e){return""==e?t:(t+"&"+e).replace(/[&?]{1,2}/,"?")}function c(t){t.processData&&t.data&&"string"!=$.type(t.data)&&(t.data=$.param(t.data,t.traditional)),!t.data||t.type&&"GET"!=t.type.toUpperCase()||(t.url=d(t.url,t.data),t.data=void 0)}function u(t,e,i,n){var a=!$.isFunction(e);return{url:t,data:a?e:void 0,success:a?$.isFunction(i)?i:void 0:e,dataType:a?n||i:i}}function m(t,e,i,n){var a,s=$.isArray(e),o=$.isPlainObject(e);$.each(e,function(e,r){a=$.type(r),n&&(e=i?n:n+"["+(o||"object"==a||"array"==a?e:"")+"]"),!n&&s?t.add(r.name,r.value):"array"==a||!i&&"object"==a?m(t,r,i,e):t.add(e,r)})}var _,f,p=0,g=window.document,v=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,y=/^(?:text|application)\/javascript/i,T=/^(?:text|application)\/xml/i,L="application/json",w="text/html",b=/^\s*$/;$.active=0,$.ajaxJSONP=function(t,e){if(!("type"in t))return $.ajax(t);var i,n,r=t.jsonpCallback,l=($.isFunction(r)?r():r)||"jsonp"+ ++p,h=g.createElement("script"),d=window[l],c=function(t){$(h).triggerHandler("error",t||"abort")},u={abort:c};return e&&e.promise(u),$(h).on("load error",function(a,r){clearTimeout(n),$(h).off().remove(),"error"!=a.type&&i?s(i[0],u,t,e):o(null,r||"error",u,t,e),window[l]=d,i&&$.isFunction(d)&&d(i[0]),d=i=void 0}),a(u,t)===!1?(c("abort"),u):(window[l]=function(){i=arguments},h.src=t.url.replace(/\?(.+)=\?/,"?$1="+l),g.head.appendChild(h),t.timeout>0&&(n=setTimeout(function(){c("timeout")},t.timeout)),u)},$.ajaxSettings={type:"GET",beforeSend:l,success:l,error:l,complete:l,context:null,global:!0,xhr:function(){return new window.XMLHttpRequest},accepts:{script:"text/javascript, application/javascript, application/x-javascript",json:L,xml:"application/xml, text/xml",html:w,text:"text/plain"},crossDomain:!1,timeout:0,processData:!0,cache:!0},$.ajax=function(t){var e=$.extend({},t||{}),n=$.Deferred&&$.Deferred();for(_ in $.ajaxSettings)void 0===e[_]&&(e[_]=$.ajaxSettings[_]);i(e),e.crossDomain||(e.crossDomain=/^([\w-]+:)?\/\/([^\/]+)/.test(e.url)&&RegExp.$2!=window.location.host),e.url||(e.url=window.location.toString()),c(e),e.cache===!1&&(e.url=d(e.url,"_="+Date.now()));var r=e.dataType,u=/\?.+=\?/.test(e.url);if("jsonp"==r||u)return u||(e.url=d(e.url,e.jsonp?e.jsonp+"=?":e.jsonp===!1?"":"callback=?")),$.ajaxJSONP(e,n);var m,p=e.accepts[r],g={},v=function(t,e){
+g[t.toLowerCase()]=[t,e]},y=/^([\w-]+:)\/\//.test(e.url)?RegExp.$1:window.location.protocol,T=e.xhr(),L=T.setRequestHeader;if(n&&n.promise(T),e.crossDomain||v("X-Requested-With","XMLHttpRequest"),v("Accept",p||"*/*"),(p=e.mimeType||p)&&(p.indexOf(",")>-1&&(p=p.split(",",2)[0]),T.overrideMimeType&&T.overrideMimeType(p)),(e.contentType||e.contentType!==!1&&e.data&&"GET"!=e.type.toUpperCase())&&v("Content-Type",e.contentType||"application/x-www-form-urlencoded"),e.headers)for(f in e.headers)v(f,e.headers[f]);if(T.setRequestHeader=v,T.onreadystatechange=function(){if(4==T.readyState){T.onreadystatechange=l,clearTimeout(m);var t,i=!1;if(T.status>=200&&T.status<300||304==T.status||0==T.status&&"file:"==y){r=r||h(e.mimeType||T.getResponseHeader("content-type")),t=T.responseText;try{"script"==r?(0,eval)(t):"xml"==r?t=T.responseXML:"json"==r&&(t=b.test(t)?null:$.parseJSON(t))}catch(t){i=t}i?o(i,"parsererror",T,e,n):s(t,T,e,n)}else o(T.statusText||null,T.status?"error":"abort",T,e,n)}},a(T,e)===!1)return T.abort(),o(null,"abort",T,e,n),T;if(e.xhrFields)for(f in e.xhrFields)T[f]=e.xhrFields[f];var w=!("async"in e)||e.async;T.open(e.type,e.url,w,e.username,e.password);for(f in g)L.apply(T,g[f]);return e.timeout>0&&(m=setTimeout(function(){T.onreadystatechange=l,T.abort(),o(null,"timeout",T,e,n)},e.timeout)),T.send(e.data?e.data:null),T},$.get=function(t,e,i,n){return $.ajax(u.apply(null,arguments))},$.post=function(t,e,i,n){var a=u.apply(null,arguments);return a.type="POST",$.ajax(a)},$.getJSON=function(t,e,i){var n=u.apply(null,arguments);return n.dataType="json",$.ajax(n)},$.fn.load=function(t,e,i){if(!this.length)return this;var n,a=this,s=t.split(/\s/),o=u(t,e,i),r=o.success;return s.length>1&&(o.url=s[0],n=s[1]),o.success=function(t){a.html(n?$("<div>").html(t.replace(v,"")).find(n):t),r&&r.apply(a,arguments)},$.ajax(o),this};var x=encodeURIComponent;$.param=function(t,e){var i=[];return i.add=function(t,e){this.push(x(t)+"="+x(e))},m(i,t,e),i.join("&").replace(/%20/g,"+")}}(e),function($){$.fn.serializeArray=function(){var t,e=[];return $([].slice.call(this.get(0).elements)).each(function(){t=$(this);var i=t.attr("type");"fieldset"!=this.nodeName.toLowerCase()&&!this.disabled&&"submit"!=i&&"reset"!=i&&"button"!=i&&("radio"!=i&&"checkbox"!=i||this.checked)&&e.push({name:t.attr("name"),value:t.val()})}),e},$.fn.serialize=function(){var t=[];return this.serializeArray().forEach(function(e){t.push(encodeURIComponent(e.name)+"="+encodeURIComponent(e.value))}),t.join("&")},$.fn.submit=function(t){if(t)this.bind("submit",t);else if(this.length){var e=$.Event("submit");this.eq(0).trigger(e),e.isDefaultPrevented()||this.get(0).submit()}return this}}(e),function($){"__proto__"in{}||$.extend($.zepto,{Z:function(t,e){return t=t||[],$.extend(t,$.fn),t.selector=e||"",t.__Z=!0,t},isZ:function(t){return"array"===$.type(t)&&"__Z"in t}});try{getComputedStyle(void 0)}catch(e){var t=getComputedStyle;window.getComputedStyle=function(e,i){try{return t(e,i)}catch(t){return null}}}}(e),t.getJSON=e.getJSON,t.ajax=e.ajax}(TL),TL.Class=function(){},TL.Class.extend=function(t){var e=function(){this.initialize&&this.initialize.apply(this,arguments)},i=function(){};i.prototype=this.prototype;var n=new i;n.constructor=e,e.prototype=n,e.superclass=this.prototype;for(var a in this)this.hasOwnProperty(a)&&"prototype"!==a&&"superclass"!==a&&(e[a]=this[a]);return t.statics&&(TL.Util.extend(e,t.statics),delete t.statics),t.includes&&(TL.Util.extend.apply(null,[n].concat(t.includes)),delete t.includes),t.options&&n.options&&(t.options=TL.Util.extend({},n.options,t.options)),TL.Util.extend(n,t),e.extend=TL.Class.extend,e.include=function(t){TL.Util.extend(this.prototype,t)},e},TL.Events={addEventListener:function(t,e,i){var n=this._tl_events=this._tl_events||{};return n[t]=n[t]||[],n[t].push({action:e,context:i||this}),this},hasEventListeners:function(t){var e="_tl_events";return e in this&&t in this[e]&&this[e][t].length>0},removeEventListener:function(t,e,i){if(!this.hasEventListeners(t))return this;for(var n=0,a=this._tl_events,s=a[t].length;n<s;n++)if(a[t][n].action===e&&(!i||a[t][n].context===i))return a[t].splice(n,1),this;return this},fireEvent:function(t,e){if(!this.hasEventListeners(t))return this;for(var i=TL.Util.mergeData({type:t,target:this},e),n=this._tl_events[t].slice(),a=0,s=n.length;a<s;a++)n[a].action.call(n[a].context||this,i);return this}},TL.Events.on=TL.Events.addEventListener,TL.Events.off=TL.Events.removeEventListener,TL.Events.fire=TL.Events.fireEvent,function(){var t=navigator.userAgent.toLowerCase(),e=document.documentElement,i="ActiveXObject"in window,n=t.indexOf("webkit")!==-1,a=t.indexOf("phantom")!==-1,s=t.search("android [23]")!==-1,o="undefined"!=typeof orientation,r=navigator.msPointerEnabled&&navigator.msMaxTouchPoints&&!window.PointerEvent,l=window.PointerEvent&&navigator.pointerEnabled&&navigator.maxTouchPoints||r,h=i&&"transition"in e.style,d="WebKitCSSMatrix"in window&&"m11"in new window.WebKitCSSMatrix&&!s,c="MozPerspective"in e.style,u="OTransition"in e.style,m=(window.opera,"devicePixelRatio"in window&&window.devicePixelRatio>1);if(!m&&"matchMedia"in window){var _=window.matchMedia("(min-resolution:144dpi)");m=_&&_.matches}var f=!window.L_NO_TOUCH&&!a&&(l||"ontouchstart"in window||window.DocumentTouch&&document instanceof window.DocumentTouch);TL.Browser={ie:i,ua:t,ie9:Boolean(i&&t.match(/MSIE 9/i)),ielt9:i&&!document.addEventListener,webkit:n,firefox:t.indexOf("gecko")!==-1&&!n&&!window.opera&&!i,android:t.indexOf("android")!==-1,android23:s,chrome:t.indexOf("chrome")!==-1,edge:t.indexOf("edge/")!==-1,ie3d:h,webkit3d:d,gecko3d:c,opera3d:u,any3d:!window.L_DISABLE_3D&&(h||d||c||u)&&!a,mobile:o,mobileWebkit:o&&n,mobileWebkit3d:o&&d,mobileOpera:o&&window.opera,touch:!!f,msPointer:!!r,pointer:!!l,retina:!!m,orientation:function(){var t=window.innerWidth,e=window.innerHeight,i="portrait";return t>e&&(i="landscape"),90==Math.abs(window.orientation),trace(i),i}}}(),TL.Load=function(t){function e(t){var e=0,n=!1;for(e=0;e<i.length;e++)i[e]==t&&(n=!0);return!!n||(i.push(t),!1)}var i=[];return{css:function(t,i,n,a){e(t)?i():TL.LoadIt.css(t,i,n,a)},js:function(t,i,n,a){e(t)?i():TL.LoadIt.js(t,i,n,a)}}}(this.document),TL.LoadIt=function(t){function e(e,i){var n,a=t.createElement(e);for(n in i)i.hasOwnProperty(n)&&a.setAttribute(n,i[n]);return a}function i(t){var e,i,n=h[t];n&&(e=n.callback,i=n.urls,i.shift(),d=0,i.length||(e&&e.call(n.context,n.obj),h[t]=null,c[t].length&&a(t)))}function n(){var e=navigator.userAgent;r={async:t.createElement("script").async===!0},(r.webkit=/AppleWebKit\//.test(e))||(r.ie=/MSIE/.test(e))||(r.opera=/Opera/.test(e))||(r.gecko=/Gecko\//.test(e))||(r.unknown=!0)}function a(a,d,u,m,_){var f,p,g,v,y,T,L=function(){i(a)},w="css"===a,b=[];if(r||n(),d)if(d="string"==typeof d?[d]:d.concat(),w||r.async||r.gecko||r.opera)c[a].push({urls:d,callback:u,obj:m,context:_});else for(f=0,p=d.length;f<p;++f)c[a].push({urls:[d[f]],callback:f===p-1?u:null,obj:m,context:_});if(!h[a]&&(v=h[a]=c[a].shift())){for(l||(l=t.head||t.getElementsByTagName("head")[0]),y=v.urls,f=0,p=y.length;f<p;++f)T=y[f],w?g=r.gecko?e("style"):e("link",{href:T,rel:"stylesheet"}):(g=e("script",{src:T}),g.async=!1),g.className="lazyload",g.setAttribute("charset","utf-8"),r.ie&&!w?g.onreadystatechange=function(){/loaded|complete/.test(g.readyState)&&(g.onreadystatechange=null,L())}:w&&(r.gecko||r.webkit)?r.webkit?(v.urls[f]=g.href,o()):(g.innerHTML='@import "'+T+'";',s(g)):g.onload=g.onerror=L,b.push(g);for(f=0,p=b.length;f<p;++f)l.appendChild(b[f])}}function s(t){var e;try{e=!!t.sheet.cssRules}catch(n){return d+=1,void(d<200?setTimeout(function(){s(t)},50):e&&i("css"))}i("css")}function o(){var t,e=h.css;if(e){for(t=u.length;--t>=0;)if(u[t].href===e.urls[0]){i("css");break}d+=1,e&&(d<200?setTimeout(o,50):i("css"))}}var r,l,h={},d=0,c={css:[],js:[]},u=t.styleSheets;return{css:function(t,e,i,n){a("css",t,e,i,n)},js:function(t,e,i,n){a("js",t,e,i,n)}}}(this.document),TL.TimelineConfig=TL.Class.extend({includes:[],initialize:function(t){if(this.title="",this.scale="",this.events=[],this.eras=[],this.event_dict={},this.messages={errors:[],warnings:[]},"object"==typeof t&&t.events){if(this.scale=t.scale,this.events=[],this._ensureValidScale(t.events),t.title){var e=this._assignID(t.title);this._tidyFields(t.title),this.title=t.title,this.event_dict[e]=this.title}for(var i=0;i<t.events.length;i++)try{this.addEvent(t.events[i],!0)}catch(t){this.logError(t)}if(t.eras)for(var i=0;i<t.eras.length;i++)try{this.addEra(t.eras[i],!0)}catch(t){this.logError("Era "+i+": "+t)}TL.DateUtil.sortByDate(this.events),TL.DateUtil.sortByDate(this.eras)}},logError:function(t){trace(t),this.messages.errors.push(t)},getErrors:function(t){return t?this.messages.errors.join(t):this.messages.errors},validate:function(){"undefined"!=typeof this.events&&"undefined"!=typeof this.events.length&&0!=this.events.length||this.logError("Timeline configuration has no events.");for(var t=0;t<this.eras.length;t++)if("undefined"==typeof this.eras[t].start_date||"undefined"==typeof this.eras[t].end_date){var e;e=this.eras[t].text&&this.eras[t].text.headline?this.eras[t].text.headline:"era "+(t+1),this.logError("All eras must have start and end dates. ["+e+"]")}},isValid:function(){return 0==this.messages.errors.length},addEvent:function(t,e){var i=this._assignID(t);if("undefined"==typeof t.start_date)throw new TL.Error("missing_start_date_err",i);return this._processDates(t),this._tidyFields(t),this.events.push(t),this.event_dict[i]=t,e||TL.DateUtil.sortByDate(this.events),i},addEra:function(t,e){var i=this._assignID(t);if("undefined"==typeof t.start_date)throw new TL.Error("missing_start_date_err",i);return this._processDates(t),this._tidyFields(t),this.eras.push(t),this.event_dict[i]=t,e||TL.DateUtil.sortByDate(this.eras),i},_assignID:function(t){var e=t.unique_id;return TL.Util.trim(e)||(e=t.text?TL.Util.slugify(t.text.headline):null),t.unique_id=TL.Util.ensureUniqueKey(this.event_dict,e),t.unique_id},_makeUniqueIdentifiers:function(t,e){for(var i=[t],n=0;n<e.length;n++)TL.Util.trim(e[n].unique_id)&&(e[n].unique_id=TL.Util.slugify(e[n].unique_id),i.indexOf(e[n].unique_id)==-1?i.push(e[n].unique_id):e[n].unique_id="");if(i.length!=e.length+1)for(var n=0;n<e.length;n++)if(!e[n].unique_id){var a=e[n].text?TL.Util.slugify(e[n].text.headline):null;a||(a=TL.Util.unique_ID(6)),i.indexOf(a)!=-1&&(a=a+"-"+n),i.push(a),e[n].unique_id=a}},_ensureValidScale:function(t){if(!this.scale){trace("Determining scale dynamically"),this.scale="human";for(var e=0;e<t.length;e++){if("cosmological"==t[e].scale){this.scale="cosmological";break}if(t[e].start_date&&"undefined"!=typeof t[e].start_date.year){var i=new TL.BigDate(t[e].start_date),n=i.data.date_obj.year;if(n<-271820||n>275759){this.scale="cosmological";break}}}}var a=TL.DateUtil.SCALE_DATE_CLASSES[this.scale];a||this.logError("Don't know how to process dates on scale "+this.scale)},_processDates:function(t){var e=TL.DateUtil.SCALE_DATE_CLASSES[this.scale];if(!(t.start_date instanceof e)){var i=t.start_date;if(t.start_date=new e(i),"undefined"!=typeof t.end_date&&!(t.end_date instanceof e)){var n=t.end_date,a=!0;for(property in i)a=a&&i[property]==n[property];a?(trace("End date same as start date is redundant; dropping end date"),delete t.end_date):t.end_date=new e(n)}}},getEarliestDate:function(){var t=this.events[0].start_date;return this.eras&&this.eras.length>0&&this.eras[0].start_date.isBefore(t)?this.eras[0].start_date:t},getLatestDate:function(){for(var t=[],e=0;e<this.events.length;e++)this.events[e].end_date?t.push({date:this.events[e].end_date}):t.push({date:this.events[e].start_date});for(var e=0;e<this.eras.length;e++)this.eras[e].end_date?t.push({date:this.eras[e].end_date}):t.push({date:this.eras[e].start_date});return TL.DateUtil.sortByDate(t,"date"),t.slice(-1)[0].date},_tidyFields:function(t){function e(t,e,i){i||(i=""),t.hasOwnProperty(e)||(t[e]=i)}t.group&&(t.group=TL.Util.trim(t.group)),t.text||(t.text={}),e(t.text,"text"),e(t.text,"headline")}}),function(t){function e(t){parts={key:null,worksheet:0};var e=/\bkey=([-_A-Za-z0-9]+)&?/i,i=/docs.google.com\/spreadsheets(.*?)\/d\//;if(t.match(e))parts.key=t.match(e)[1];else if(t.match(i)){var n=t.search(i)+t.match(i)[0].length,a=t.substr(n);parts.key=a.split("/")[0],t.match(/\?gid=(\d+)/)&&(parts.worksheet=t.match(/\?gid=(\d+)/)[1])}else t.match(/^\b[-_A-Za-z0-9]+$/)&&(parts.key=t);return parts.key?parts:null}function i(e){var i={};for(k in e)0==k.indexOf("gsx$")&&(i[k.substr(4)]=e[k].$t);if(t.Util.isEmptyObject(i))return null;var n={media:{caption:i.mediacaption||"",credit:i.mediacredit||"",url:i.media||"",thumbnail:i.mediathumbnail||""},text:{headline:i.headline||"",text:i.text||""},group:i.tag||"",type:i.type||""};return i.startdate&&(n.start_date=t.Date.parseDate(i.startdate)),i.enddate&&(n.end_date=t.Date.parseDate(i.enddate)),n}function n(e){function i(t){if(t)return t.replace(/[\s,]+/g,"")}var n={};for(k in e)0==k.indexOf("gsx$")&&(n[k.substr(4)]=t.Util.trim(e[k].$t));if(t.Util.isEmptyObject(n))return null;var a={media:{caption:n.mediacaption||"",credit:n.mediacredit||"",url:n.media||"",thumbnail:n.mediathumbnail||""},text:{headline:n.headline||"",text:n.text||""},start_date:{year:i(n.year),month:i(n.month)||"",day:i(n.day)||""},end_date:{year:i(n.endyear)||"",month:i(n.endmonth)||"",day:i(n.endday)||""},display_date:n.displaydate||"",type:n.type||""};if(n.time&&t.Util.mergeData(a.start_date,t.DateUtil.parseTime(n.time)),n.endtime&&t.Util.mergeData(a.end_date,t.DateUtil.parseTime(n.endtime)),n.group&&(a.group=n.group),""==a.end_date.year){var s=a.end_date;if(delete a.end_date,""!=s.month||""!=s.day||""!=s.time){a.text.headline||trace("Invalid end date for spreadsheet row. Must have a year if any other date fields are specified.");trace(e)}}return n.background&&(n.background.match(/^(https?:)?\/\/?/)?a.background={url:n.background}:a.background={color:n.background}),a}var a=function(e){if("undefined"==typeof e.feed.entry||0==e.feed.entry.length)throw new t.Error("empty_feed_err");var a=e.feed.entry[0];if("undefined"!=typeof a.gsx$startdate)return i;if("undefined"!=typeof a.gsx$year){return n}throw new t.Error("invalid_data_format_err")},s=function(t){return"https://spreadsheets.google.com/feeds/list/"+t.key+"/1/public/values?alt=json"},o=function(i){var i=s(e(i)),n=t.ajax({url:i,async:!1});return n=JSON.parse(n.responseText),r(n)},r=function(t){for(var e={events:[],errors:[],warnings:[],eras:[]},i=a(t),n=0;n<t.feed.entry.length;n++)try{var s=i(t.feed.entry[n]);if(s){var o="event";"undefined"!=typeof s.type&&(o=s.type,delete s.type),"title"==o?e.title?(e.warnings.push("Multiple title slides detected."),e.events.push(s)):e.title=s:"era"==o?e.eras.push(s):e.events.push(s)}}catch(t){t.message&&(t=t.message),e.errors.push(t+" ["+n+"]")}return e},l=function(i,n){var a,s=e(i);if(s){try{var r=o(i)}catch(e){return a=new t.TimelineConfig,"NetworkError"==e.name?a.logError(new t.Error("network_err")):"TL.Error"==e.name?a.logError(e):a.logError(new t.Error("unknown_read_err",e.name)),void n(a)}if(a=new t.TimelineConfig(r),r.errors)for(var l=0;l<r.errors.length;l++)a.logError(r.errors[l]);n(a)}else t.ajax({url:i,dataType:"json",success:function(e){try{a=new t.TimelineConfig(e)}catch(e){a=new t.TimelineConfig,a.logError(e)}n(a)},error:function(e,i,s){if(a=new t.TimelineConfig,"parsererror"==i)var s=new t.Error("invalid_url_err");else var s=new t.Error("unknown_read_err",i);a.logError(s),n(a)}})};t.ConfigFactory={parseGoogleSpreadsheetURL:e,googleFeedJSONtoTimelineJSON:r,fromGoogle:function(t){return console.warn("TL.ConfigFactory.fromGoogle is deprecated and will be removed soon. Use TL.ConfigFactory.makeConfig(url,callback)"),o(t)},makeConfig:l}}(TL),TL.Language=function(t){for(k in TL.Language.languages.en)this[k]=TL.Language.languages.en[k];if(t&&t.language&&"string"==typeof t.language&&"en"!=t.language){var e=t.language;if(!(e in TL.Language.languages)){if(/\.json$/.test(e))var i=e;else{var n="/locale/"+e+".json",a=t.script_path||TL.Timeline.source_path;/\/$/.test(a)&&(n=n.substr(1));var i=a+n}var s=TL.ajax({url:i,async:!1});if(200!=s.status)throw"Could not load language ["+e+"]: "+s.statusText;TL.Language.languages[e]=JSON.parse(s.responseText)}TL.Util.mergeData(this,TL.Language.languages[e])}},TL.Language.formatNumber=function(t,e){if(e.match(/%(\.(\d+))?f/)){var i=e.match(/%(\.(\d+))?f/),n=i[0];return i[2]&&(t=t.toFixed(i[2])),e.replace(n,t)}return e},TL.Language.prototype.mergeData=function(t){for(k in TL.Language.languages.en)t[k]&&("object"==typeof this[k]?TL.Util.mergeData(t[k],this[k]):this[k]=t[k])},TL.Language.fallback={messages:{}},TL.Language.prototype.getMessage=function(t){return this.messages[t]||TL.Language.fallback.messages[t]||t},TL.Language.prototype._=TL.Language.prototype.getMessage,TL.Language.prototype.formatDate=function(t,e){return t.constructor==Date?this.formatJSDate(t,e):t.constructor==TL.BigYear?this.formatBigYear(t,e):t.data&&t.data.date_obj?this.formatDate(t.data.date_obj,e):(trace("Unfamiliar date presented for formatting"),t.toString())},TL.Language.prototype.formatBigYear=function(t,e){var i=t.year,n=this.bigdateformats[e]||this.bigdateformats.fallback;if(n){for(var a=0;a<n.length;a++){var s=n[a];if(Math.abs(i/s[0])>1)return TL.Language.formatNumber(Math.abs(i/s[0]),s[1])}return i.toString()}return trace("Language file dateformats missing cosmological. Falling back."),TL.Language.formatNumber(i,e)},TL.Language.prototype.formatJSDate=function(t,e){var i=this,n=function(t,e){var n=i.period_labels[t];if(n)var t=e<12?n[0]:n[1];return"<span class='tl-timeaxis-timesuffix'>"+t+"</span>"},a=!1,s=/\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,o=/[^-+\dA-Z]/g;e||(e="full");var r=this.dateformats[e]||TL.Language.fallback.dateformats[e];r||(r=e);var l=a?"getUTC":"get",h=t[l+"Date"](),d=t[l+"Day"](),c=t[l+"Month"](),u=t[l+"FullYear"](),m=t[l+"Hours"](),_=t[l+"Minutes"](),f=t[l+"Seconds"](),p=t[l+"Milliseconds"](),g=a?0:t.getTimezoneOffset(),v={d:h,dd:TL.Util.pad(h),ddd:this.date.day_abbr[d],dddd:this.date.day[d],m:c+1,mm:TL.Util.pad(c+1),mmm:this.date.month_abbr[c],mmmm:this.date.month[c],yy:String(u).slice(2),yyyy:u<0&&this.has_negative_year_modifier()?Math.abs(u):u,h:m%12||12,hh:TL.Util.pad(m%12||12),H:m,HH:TL.Util.pad(m),M:_,MM:TL.Util.pad(_),s:f,ss:TL.Util.pad(f),l:TL.Util.pad(p,3),L:TL.Util.pad(p>99?Math.round(p/10):p),t:n("t",m),tt:n("tt",m),T:n("T",m),TT:n("TT",m),Z:a?"UTC":(String(t).match(s)||[""]).pop().replace(o,""),o:(g>0?"-":"+")+TL.Util.pad(100*Math.floor(Math.abs(g)/60)+Math.abs(g)%60,4),S:["th","st","nd","rd"][h%10>3?0:(h%100-h%10!=10)*h%10]},y=r.replace(TL.Language.DATE_FORMAT_TOKENS,function(t){return t in v?v[t]:t.slice(1,t.length-1)});return this._applyEra(y,u)},TL.Language.prototype.has_negative_year_modifier=function(){return Boolean(this.era_labels.negative_year.prefix||this.era_labels.negative_year.suffix)},TL.Language.prototype._applyEra=function(t,e){var i=e<0?this.era_labels.negative_year:this.era_labels.positive_year,n="";return i.prefix&&(n+="<span>"+i.prefix+"</span> "),n+=t,i.suffix&&(n+=" <span>"+i.suffix+"</span>"),n},TL.Language.DATE_FORMAT_TOKENS=/d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g,TL.Language.languages={en:{name:"English",lang:"en",api:{wikipedia:"en"},messages:{loading:"Loading",wikipedia:"From Wikipedia, the free encyclopedia",error:"Error",contract_timeline:"Contract Timeline",return_to_title:"Return to Title",loading_content:"Loading Content",expand_timeline:"Expand Timeline",loading_timeline:"Loading Timeline... ",swipe_to_navigate:"Swipe to Navigate<br><span class='tl-button'>OK</span>",unknown_read_err:"An unexpected error occurred trying to read your spreadsheet data",invalid_url_err:"Unable to read Timeline data. Make sure your URL is for a Google Spreadsheet or a Timeline JSON file.",network_err:"Unable to read your Google Spreadsheet. Make sure you have published it to the web.",empty_feed_err:"No data entries found",missing_start_date_err:"Missing start_date",invalid_data_format_err:"Header row has been modified.",date_compare_err:"Can't compare TL.Dates on different scales",invalid_scale_err:"Invalid scale",invalid_date_err:"Invalid date: month, day and year must be numbers.",invalid_separator_error:"Invalid time: misuse of : or . as separator.",invalid_hour_err:"Invalid time (hour)",invalid_minute_err:"Invalid time (minute)",invalid_second_err:"Invalid time (second)",invalid_fractional_err:"Invalid time (fractional seconds)",invalid_second_fractional_err:"Invalid time (seconds and fractional seconds)",invalid_year_err:"Invalid year",flickr_notfound_err:"Photo not found or private",flickr_invalidurl_err:"Invalid Flickr URL",imgur_invalidurl_err:"Invalid Imgur URL",twitter_invalidurl_err:"Invalid Twitter URL",twitter_load_err:"Unable to load Tweet",twitterembed_invalidurl_err:"Invalid Twitter Embed url",wikipedia_load_err:"Unable to load Wikipedia entry",youtube_invalidurl_err:"Invalid YouTube URL",spotify_invalid_url:"Invalid Spotify URL",template_value_err:"No value provided for variable",invalid_rgb_err:"Invalid RGB argument",time_scale_scale_err:"Don't know how to get date from time for scale",axis_helper_no_options_err:"Axis helper must be configured with options",axis_helper_scale_err:"No AxisHelper available for scale",invalid_integer_option:"Invalid option value—must be a whole number."},date:{month:["January","February","March","April","May","June","July","August","September","October","November","December"],month_abbr:["Jan.","Feb.","March","April","May","June","July","Aug.","Sept.","Oct.","Nov.","Dec."],day:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],day_abbr:["Sun.","Mon.","Tues.","Wed.","Thurs.","Fri.","Sat."]},era_labels:{positive_year:{prefix:"",suffix:""},negative_year:{prefix:"",suffix:"BCE"}},period_labels:{t:["a","p"],tt:["am","pm"],T:["A","P"],TT:["AM","PM"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time:"h:MM:ss TT' <small>'mmmm d',' yyyy'</small>'",time_short:"h:MM:ss TT",time_no_seconds_short:"h:MM TT",time_no_minutes_short:"h TT",time_no_seconds_small_date:"h:MM TT' <small>'mmmm d',' yyyy'</small>'",time_milliseconds:"l",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT' <small>mmm d',' yyyy'</small>'"},bigdateformats:{fallback:[[1e9,"%.2f billion years ago"],[1e6,"%.1f million years ago"],[1e3,"%.1f thousand years ago"],[1,"%f years ago"]],compact:[[1e9,"%.2f bya"],[1e6,"%.1f mya"],[1e3,"%.1f kya"],[1,"%f years ago"]],verbose:[[1e9,"%.2f billion years ago"],[1e6,"%.1f million years ago"],[1e3,"%.1f thousand years ago"],[1,"%f years ago"]]}}},TL.Language.fallback=new TL.Language,TL.I18NMixins={getLanguage:function(){return this.options&&this.options.language?this.options.language:(trace("Expected a language option"),TL.Language.fallback)},_:function(t){return this.getLanguage()._(t)}},TL.Easings={ease:[.25,.1,.25,1],linear:[0,0,1,1],easein:[.42,0,1,1],easeout:[0,0,.58,1],easeinout:[.42,0,.58,1]},TL.Ease={KeySpline:function(t){function e(t,e){return 1-3*e+3*t}function i(t,e){return 3*e-6*t}function n(t){return 3*t}function a(t,a,s){return((e(a,s)*t+i(a,s))*t+n(a))*t}function s(t,a,s){return 3*e(a,s)*t*t+2*i(a,s)*t+n(a)}function o(e){for(var i=e,n=0;n<4;++n){var o=s(i,t[0],t[2]);if(0==o)return i;var r=a(i,t[0],t[2])-e;i-=r/o}return i}this.get=function(e){return t[0]==t[1]&&t[2]==t[3]?e:a(o(e),t[1],t[3])}},easeInSpline:function(t){var e=new TL.Ease.KeySpline(TL.Easings.easein);return e.get(t)},easeInOutExpo:function(t){var e=new TL.Ease.KeySpline(TL.Easings.easein);return e.get(t)},easeOut:function(t){return Math.sin(t*Math.PI/2)},easeOutStrong:function(t){return 1==t?1:1-Math.pow(2,-10*t)},easeIn:function(t){return t*t},easeInStrong:function(t){return 0==t?0:Math.pow(2,10*(t-1))},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},bounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},bouncePast:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?2-(7.5625*(t-=1.5/2.75)*t+.75):t<2.5/2.75?2-(7.5625*(t-=2.25/2.75)*t+.9375):2-(7.5625*(t-=2.625/2.75)*t+.984375)},swingTo:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},swingFrom:function(t){var e=1.70158;return t*t*((e+1)*t-e)},elastic:function(t){return-1*Math.pow(4,-8*t)*Math.sin((6*t-1)*(2*Math.PI)/2)+1},spring:function(t){return 1-Math.cos(4.5*t*Math.PI)*Math.exp(6*-t)},blink:function(t,e){return Math.round(t*(e||5))%2},pulse:function(t,e){return-Math.cos(t*((e||5)-.5)*2*Math.PI)/2+.5},wobble:function(t){return-Math.cos(t*Math.PI*(9*t))/2+.5},sinusoidal:function(t){return-Math.cos(t*Math.PI)/2+.5},flicker:function(t){var t=t+(Math.random()-.5)/5;return easings.sinusoidal(t<0?0:t>1?1:t)},mirror:function(t){return t<.5?easings.sinusoidal(2*t):easings.sinusoidal(1-2*(t-.5))},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return t*(2-t)},easeInOutQuad:function(t){return t<.5?2*t*t:-1+(4-2*t)*t},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return--t*t*t+1},easeInOutCubic:function(t){return t<.5?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return 1- --t*t*t*t},easeInOutQuart:function(t){return t<.5?8*t*t*t*t:1-8*--t*t*t*t},easeInQuint:function(t){return t*t*t*t*t},easeOutQuint:function(t){return 1+--t*t*t*t*t},easeInOutQuint:function(t){return t<.5?16*t*t*t*t*t:1+16*--t*t*t*t*t}},TL.Animate=function(t,e){var i=new tlanimate(t,e);return i},window.tlanimate=function(){function t(t,e,i){if(Array.prototype.indexOf)return t.indexOf(e);for(i=0;i<t.length;++i)if(t[i]===e)return i}function e(t){var i,n=P.length;for(T&&t>1e12&&(t=L()),b&&(t=L()),i=n;i--;)P[i](t);P.length&&O(e)}function i(t){1===P.push(t)&&O(e)}function n(e){var i,n=t(P,e);n>=0&&(i=P.slice(n+1),P.length=n,P=P.concat(i))}function a(t,e){var i,n={};return(i=t.match(E))&&(n.rotate=f(i[1],e?e.rotate:null)),(i=t.match(S))&&(n.scale=f(i[1],e?e.scale:null)),(i=t.match(C))&&(n.skewx=f(i[1],e?e.skewx:null),n.skewy=f(i[3],e?e.skewy:null)),(i=t.match(N))&&(n.translatex=f(i[1],e?e.translatex:null),n.translatey=f(i[3],e?e.translatey:null)),n}function s(t){var e="";return"rotate"in t&&(e+="rotate("+t.rotate+"deg) "),"scale"in t&&(e+="scale("+t.scale+") "),"translatex"in t&&(e+="translate("+t.translatex+"px,"+t.translatey+"px) "),"skewx"in t&&(e+="skew("+t.skewx+"deg,"+t.skewy+"deg)"),e}function o(t,e,i){return"#"+(1<<24|t<<16|e<<8|i).toString(16).slice(1)}function r(t){var e=t.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/);return(e?o(e[1],e[2],e[3]):t).replace(/#(\w)(\w)(\w)$/,"#$1$1$2$2$3$3")}function l(t){return t.replace(/-(.)/g,function(t,e){return e.toUpperCase()})}function h(t){return"function"==typeof t}function d(t){return Math.sin(t*Math.PI/2)}function c(t,e,a,s,o,r){function l(t){var i=t-_;return i>c||f?(r=isFinite(r)?r:1,f?g&&e(r):e(r),n(l),a&&a.apply(u)):void e(isFinite(r)?m*s(i/c)+o:s(i/c))}s=h(s)?s:p.easings[s]||d;var c=t||x,u=this,m=r-o,_=L(),f=0,g=0;return i(l),{stop:function(t){f=1,g=t,t||(a=null)}}}function u(t,e){var i,n,a=t.length,s=[];for(i=0;i<a;++i)s[i]=[t[i][0],t[i][1]];for(n=1;n<a;++n)for(i=0;i<a-n;++i)s[i][0]=(1-e)*s[i][0]+e*s[parseInt(i+1,10)][0],s[i][1]=(1-e)*s[i][1]+e*s[parseInt(i+1,10)][1];return[s[0][0],s[0][1]]}function m(t,e,i){var n,a,s,o,r=[];for(n=0;n<6;n++)s=Math.min(15,parseInt(e.charAt(n),16)),o=Math.min(15,parseInt(i.charAt(n),16)),a=Math.floor((o-s)*t+s),a=a>15?15:a<0?0:a,r[n]=a.toString(16);return"#"+r.join("")}function _(t,e,i,n,a,s,o){if("transform"==a){o={};for(var r in i[s][a])o[r]=r in n[s][a]?Math.round(((n[s][a][r]-i[s][a][r])*t+i[s][a][r])*x)/x:i[s][a][r];return o}return"string"==typeof i[s][a]?m(t,i[s][a],n[s][a]):(o=Math.round(((n[s][a]-i[s][a])*t+i[s][a])*x)/x,a in I||(o+=e[s][a]||"px"),o)}function f(t,e,i,n,a){return(i=D.exec(t))?(a=parseFloat(i[2]))&&e+("+"==i[1]?1:-1)*a:parseFloat(t)}function p(t,e){var i,n,o,d=t?d=isFinite(t.length)?t:[t]:[],m=e.complete,p=e.duration,g=e.easing,v=e.bezier,y=[],T=[],L=[],w=[];for(v&&(n=e.left,o=e.top,delete e.right,delete e.bottom,delete e.left,delete e.top),i=d.length;i--;){if(y[i]={},T[i]={},L[i]={},v){var b=j(d[i],"left"),x=j(d[i],"top"),D=[f(h(n)?n(d[i]):n||0,parseFloat(b)),f(h(o)?o(d[i]):o||0,parseFloat(x))];w[i]=h(v)?v(d[i],D):v,w[i].push(D),w[i].unshift([parseInt(b,10),parseInt(x,10)])}for(var E in e){switch(E){case"complete":case"duration":case"easing":case"bezier":continue}var S,C=j(d[i],E),N=h(e[E])?e[E](d[i]):e[E];"string"!=typeof N||!k.test(N)||k.test(C)?(y[i][E]="transform"==E?a(C):"string"==typeof N&&k.test(N)?r(C).slice(1):parseFloat(C),T[i][E]="transform"==E?a(N,y[i][E]):"string"==typeof N&&"#"==N.charAt(0)?r(N).slice(1):f(N,parseFloat(C)),"string"==typeof N&&(S=N.match(M))&&(L[i][E]=S[1])):delete e[E]}}return c.apply(d,[p,function(t,n,a){for(i=d.length;i--;){v&&(a=u(w[i],t),d[i].style.left=a[0]+"px",d[i].style.top=a[1]+"px");for(var o in e)n=_(t,L,y,T,o,i),"transform"==o?d[i].style[U]=s(n):"opacity"!=o||A?d[i].style[l(o)]=n:d[i].style.filter="alpha(opacity="+100*n+")"}},m,g])}var g=document,v=window,y=v.performance,T=y&&(y.now||y.webkitNow||y.msNow||y.mozNow),L=T?function(){return T.call(y)}:function(){return+new Date},w=g.documentElement,b=!1,x=1e3,k=/^rgb\(|#/,D=/^([+\-])=([\d\.]+)/,M=/^(?:[\+\-]=?)?\d+(?:\.\d+)?(%|in|cm|mm|em|ex|pt|pc|px)$/,E=/rotate\(((?:[+\-]=)?([\-\d\.]+))deg\)/,S=/scale\(((?:[+\-]=)?([\d\.]+))\)/,C=/skew\(((?:[+\-]=)?([\-\d\.]+))deg, ?((?:[+\-]=)?([\-\d\.]+))deg\)/,N=/translate\(((?:[+\-]=)?([\-\d\.]+))px, ?((?:[+\-]=)?([\-\d\.]+))px\)/,I={lineHeight:1,zoom:1,zIndex:1,opacity:1,transform:1},U=function(){var t,e=g.createElement("a").style,i=["webkitTransform","MozTransform","OTransform","msTransform","Transform"];for(t=0;t<i.length;t++)if(i[t]in e)return i[t]}(),A=function(){return"undefined"!=typeof g.createElement("a").style.opacity}(),j=g.defaultView&&g.defaultView.getComputedStyle?function(t,e){e="transform"==e?U:e,e=l(e);var i=null,n=g.defaultView.getComputedStyle(t,"");return n&&(i=n[e]),t.style[e]||i}:w.currentStyle?function(t,e){if(e=l(e),"opacity"==e){var i=100;try{i=t.filters["DXImageTransform.Microsoft.Alpha"].opacity}catch(e){try{i=t.filters("alpha").opacity}catch(t){}}return i/100}var n=t.currentStyle?t.currentStyle[e]:null;return t.style[e]||n}:function(t,e){return t.style[l(e)]},O=function(){return v.requestAnimationFrame||v.webkitRequestAnimationFrame||v.mozRequestAnimationFrame||v.msRequestAnimationFrame||v.oRequestAnimationFrame||function(t){v.setTimeout(function(){t(+new Date)},17)}}(),P=[];return O(function(t){b=t>1e12!=L()>1e12}),p.tween=c,p.getStyle=j,p.bezier=u,p.transform=U,p.parseTransform=a,p.formatTransform=s,p.easings={},p}(),TL.Point=function(t,e,i){this.x=i?Math.round(t):t,this.y=i?Math.round(e):e},TL.Point.prototype={add:function(t){return this.clone()._add(t)},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(t)},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t,e){return new TL.Point(this.x/t,this.y/t,e)},multiplyBy:function(t){return new TL.Point(this.x*t,this.y*t)},distanceTo:function(t){var e=t.x-this.x,i=t.y-this.y;return Math.sqrt(e*e+i*i)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},clone:function(){return new TL.Point(this.x,this.y)},toString:function(){return"Point("+TL.Util.formatNum(this.x)+", "+TL.Util.formatNum(this.y)+")"}},TL.DomMixins={show:function(t){t||(this._el.container.style.display="block")},hide:function(t){
+this._el.container.style.display="none"},addTo:function(t){t.appendChild(this._el.container),this.onAdd()},removeFrom:function(t){t.removeChild(this._el.container),this.onRemove()},animatePosition:function(t,e){var i={duration:this.options.duration,easing:this.options.ease};for(var n in t)t.hasOwnProperty(n)&&(i[n]=t[n]+"px");this.animator&&this.animator.stop(),this.animator=TL.Animate(e,i)},onLoaded:function(){this.fire("loaded",this.data)},onAdd:function(){this.fire("added",this.data)},onRemove:function(){this.fire("removed",this.data)},setPosition:function(t,e){for(var i in t)t.hasOwnProperty(i)&&(e?e.style[i]=t[i]+"px":this._el.container.style[i]=t[i]+"px")},getPosition:function(){return TL.Dom.getPosition(this._el.container)}},TL.Dom={get:function(t){return"string"==typeof t?document.getElementById(t):t},getByClass:function(t){if(t)return document.getElementsByClassName(t)},create:function(t,e,i){var n=document.createElement(t);return n.className=e,i&&i.appendChild(n),n},createText:function(t,e){var i=document.createTextNode(t);return e&&e.appendChild(i),i},getTranslateString:function(t){return TL.Dom.TRANSLATE_OPEN+t.x+"px,"+t.y+"px"+TL.Dom.TRANSLATE_CLOSE},setPosition:function(t,e){t._tl_pos=e,TL.Browser.webkit3d?(t.style[TL.Dom.TRANSFORM]=TL.Dom.getTranslateString(e),TL.Browser.android&&(t.style["-webkit-perspective"]="1000",t.style["-webkit-backface-visibility"]="hidden")):(t.style.left=e.x+"px",t.style.top=e.y+"px")},getPosition:function(t){for(var e={x:0,y:0};t&&!isNaN(t.offsetLeft)&&!isNaN(t.offsetTop);)e.x+=t.offsetLeft,e.y+=t.offsetTop,t=t.offsetParent;return e},testProp:function(t){for(var e=document.documentElement.style,i=0;i<t.length;i++)if(t[i]in e)return t[i];return!1}},TL.Util.mergeData(TL.Dom,{TRANSITION:TL.Dom.testProp(["transition","webkitTransition","OTransition","MozTransition","msTransition"]),TRANSFORM:TL.Dom.testProp(["transformProperty","WebkitTransform","OTransform","MozTransform","msTransform"]),TRANSLATE_OPEN:"translate"+(TL.Browser.webkit3d?"3d(":"("),TRANSLATE_CLOSE:TL.Browser.webkit3d?",0)":")"}),TL.DomUtil={get:function(t){return"string"==typeof t?document.getElementById(t):t},getStyle:function(t,e){var i=t.style[e];if(!i&&t.currentStyle&&(i=t.currentStyle[e]),!i||"auto"===i){var n=document.defaultView.getComputedStyle(t,null);i=n?n[e]:null}return"auto"===i?null:i},getViewportOffset:function(t){var e=0,i=0,n=t,a=document.body;do{if(e+=n.offsetTop||0,i+=n.offsetLeft||0,n.offsetParent===a&&"absolute"===TL.DomUtil.getStyle(n,"position"))break;n=n.offsetParent}while(n);n=t;do{if(n===a)break;e-=n.scrollTop||0,i-=n.scrollLeft||0,n=n.parentNode}while(n);return new TL.Point(i,e)},create:function(t,e,i){var n=document.createElement(t);return n.className=e,i&&i.appendChild(n),n},disableTextSelection:function(){document.selection&&document.selection.empty&&document.selection.empty(),this._onselectstart||(this._onselectstart=document.onselectstart,document.onselectstart=TL.Util.falseFn)},enableTextSelection:function(){document.onselectstart=this._onselectstart,this._onselectstart=null},hasClass:function(t,e){return t.className.length>0&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(t.className)},addClass:function(t,e){TL.DomUtil.hasClass(t,e)||(t.className+=(t.className?" ":"")+e)},removeClass:function(t,e){t.className=t.className.replace(/(\S+)\s*/g,function(t,i){return i===e?"":t}).replace(/^\s+/,"")},setOpacity:function(t,e){TL.Browser.ie?t.style.filter="alpha(opacity="+Math.round(100*e)+")":t.style.opacity=e},testProp:function(t){for(var e=document.documentElement.style,i=0;i<t.length;i++)if(t[i]in e)return t[i];return!1},getTranslateString:function(t){return TL.DomUtil.TRANSLATE_OPEN+t.x+"px,"+t.y+"px"+TL.DomUtil.TRANSLATE_CLOSE},getScaleString:function(t,e){var i=TL.DomUtil.getTranslateString(e),n=" scale("+t+") ",a=TL.DomUtil.getTranslateString(e.multiplyBy(-1));return i+n+a},setPosition:function(t,e){t._tl_pos=e,TL.Browser.webkit3d?(t.style[TL.DomUtil.TRANSFORM]=TL.DomUtil.getTranslateString(e),TL.Browser.android&&(t.style["-webkit-perspective"]="1000",t.style["-webkit-backface-visibility"]="hidden")):(t.style.left=e.x+"px",t.style.top=e.y+"px")},getPosition:function(t){return t._tl_pos}},TL.DomEvent={addListener:function(t,e,i,n){var a=TL.Util.stamp(i),s="_tl_"+e+a;if(!t[s]){var o=function(e){return i.call(n||t,e||TL.DomEvent._getEvent())};if(TL.Browser.touch&&"dblclick"===e&&this.addDoubleTapListener)this.addDoubleTapListener(t,o,a);else if("addEventListener"in t)if("mousewheel"===e)t.addEventListener("DOMMouseScroll",o,!1),t.addEventListener(e,o,!1);else if("mouseenter"===e||"mouseleave"===e){var r=o,l="mouseenter"===e?"mouseover":"mouseout";o=function(e){if(TL.DomEvent._checkMouse(t,e))return r(e)},t.addEventListener(l,o,!1)}else t.addEventListener(e,o,!1);else"attachEvent"in t&&t.attachEvent("on"+e,o);t[s]=o}},removeListener:function(t,e,i){var n=TL.Util.stamp(i),a="_tl_"+e+n,s=t[a];s&&(TL.Browser.touch&&"dblclick"===e&&this.removeDoubleTapListener?this.removeDoubleTapListener(t,n):"removeEventListener"in t?"mousewheel"===e?(t.removeEventListener("DOMMouseScroll",s,!1),t.removeEventListener(e,s,!1)):"mouseenter"===e||"mouseleave"===e?t.removeEventListener("mouseenter"===e?"mouseover":"mouseout",s,!1):t.removeEventListener(e,s,!1):"detachEvent"in t&&t.detachEvent("on"+e,s),t[a]=null)},_checkMouse:function(t,e){var i=e.relatedTarget;if(!i)return!0;try{for(;i&&i!==t;)i=i.parentNode}catch(t){return!1}return i!==t},_getEvent:function(){var t=window.event;if(!t)for(var e=arguments.callee.caller;e&&(t=e.arguments[0],!t||window.Event!==t.constructor);)e=e.caller;return t},stopPropagation:function(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0},disableClickPropagation:function(t){TL.DomEvent.addListener(t,TL.Draggable.START,TL.DomEvent.stopPropagation),TL.DomEvent.addListener(t,"click",TL.DomEvent.stopPropagation),TL.DomEvent.addListener(t,"dblclick",TL.DomEvent.stopPropagation)},preventDefault:function(t){t.preventDefault?t.preventDefault():t.returnValue=!1},stop:function(t){TL.DomEvent.preventDefault(t),TL.DomEvent.stopPropagation(t)},getWheelDelta:function(t){var e=0;return t.wheelDelta&&(e=t.wheelDelta/120),t.detail&&(e=-t.detail/3),e}},TL.StyleSheet=TL.Class.extend({includes:[TL.Events],_el:{},initialize:function(){this.style=document.createElement("style"),this.style.appendChild(document.createTextNode("")),document.head.appendChild(this.style),this.sheet=this.style.sheet},addRule:function(t,e,i){var n=0;i&&(n=i),"insertRule"in this.sheet?this.sheet.insertRule(t+"{"+e+"}",n):"addRule"in this.sheet&&this.sheet.addRule(t,e,n)},onLoaded:function(t){this._state.loaded=!0,this.fire("loaded",this.data)}}),TL.Date=TL.Class.extend({initialize:function(t,e,i){"number"==typeof t?this.data={format:"yyyy mmmm",date_obj:new Date(t)}:Date==t.constructor?this.data={format:"yyyy mmmm",date_obj:t}:(this.data=JSON.parse(JSON.stringify(t)),this._createDateObj()),this._setFormat(e,i)},setDateFormat:function(t){this.data.format=t},getDisplayDate:function(t,e){if(this.data.display_date)return this.data.display_date;t||(t=TL.Language.fallback),t.constructor!=TL.Language&&(trace("First argument to getDisplayDate must be TL.Language"),t=TL.Language.fallback);var i=e||this.data.format;return t.formatDate(this.data.date_obj,i)},getMillisecond:function(){return this.getTime()},getTime:function(){return this.data.date_obj.getTime()},isBefore:function(t){if(!this.data.date_obj.constructor==t.data.date_obj.constructor)throw new TL.Error("date_compare_err");return"isBefore"in this.data.date_obj?this.data.date_obj.isBefore(t.data.date_obj):this.data.date_obj<t.data.date_obj},isAfter:function(t){if(!this.data.date_obj.constructor==t.data.date_obj.constructor)throw new TL.Error("date_compare_err");return"isAfter"in this.data.date_obj?this.data.date_obj.isAfter(t.data.date_obj):this.data.date_obj>t.data.date_obj},floor:function(t){for(var e=new Date(this.data.date_obj.getTime()),i=0;i<TL.Date.SCALES.length;i++)if(TL.Date.SCALES[i][2](e),TL.Date.SCALES[i][0]==t)return new TL.Date(e);throw new TL.Error("invalid_scale_err",t)},_getDateData:function(){var t={year:0,month:1,day:1,hour:0,minute:0,second:0,millisecond:0};TL.Util.mergeData(t,this.data);var e=TL.Date.DATE_PARTS;for(var i in e){var n=TL.Util.trim(t[e[i]]);if(!n.match(/^-?\d*$/))throw new TL.Error("invalid_date_err",e[i]+" = '"+t[e[i]]+"'");var a=parseInt(t[e[i]]);isNaN(a)&&(a=4==i||5==i?1:0),t[e[i]]=a}return t.month>0&&t.month<=12&&(t.month=t.month-1),t},_createDateObj:function(){var t=this._getDateData();this.data.date_obj=new Date(t.year,t.month,t.day,t.hour,t.minute,t.second,t.millisecond),this.data.date_obj.getFullYear()!=t.year&&this.data.date_obj.setFullYear(t.year)},findBestFormat:function(t){for(var e=TL.Date.DATE_PARTS,i=0;i<e.length;i++)if(this.data[e[i]])return t?t in TL.Date.BEST_DATEFORMATS||(t="short"):t="base",TL.Date.BEST_DATEFORMATS[t][e[i]];return""},_setFormat:function(t,e){t?this.data.format=t:this.data.format||(this.data.format=this.findBestFormat()),e?this.data.format_short=e:this.data.format_short||(this.data.format_short=this.findBestFormat(!0))}}),TL.Date.makeDate=function(t){var e=new TL.Date(t);return isNaN(e.getTime())?new TL.BigDate(t):e},TL.BigYear=TL.Class.extend({initialize:function(t){if(this.year=parseInt(t),isNaN(this.year))throw new TL.Error("invalid_year_err",t)},isBefore:function(t){return this.year<t.year},isAfter:function(t){return this.year>t.year},getTime:function(){return this.year}}),function(t){t.SCALES=[["millisecond",1,function(t){}],["second",1e3,function(t){t.setMilliseconds(0)}],["minute",6e4,function(t){t.setSeconds(0)}],["hour",36e5,function(t){t.setMinutes(0)}],["day",864e5,function(t){t.setHours(0)}],["month",2592e6,function(t){t.setDate(1)}],["year",31536e6,function(t){t.setMonth(0)}],["decade",31536e7,function(t){var e=t.getFullYear();t.setFullYear(e-e%10)}],["century",31536e8,function(t){var e=t.getFullYear();t.setFullYear(e-e%100)}],["millennium",31536e9,function(t){var e=t.getFullYear();t.setFullYear(e-e%1e3)}]],t.DATE_PARTS=["millisecond","second","minute","hour","day","month","year"];var e=/^([\+-]?\d+?)(-\d{2}?)?(-\d{2}?)?$/,i=/^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/;t.parseISODate=function(t){var e=new Date(t);if(isNaN(e))throw new TL.Error("invalid_date_err",t);return{year:e.getFullYear(),month:e.getMonth()+1,day:e.getDate(),hour:e.getHours(),minute:e.getMinutes(),second:e.getSeconds(),millisecond:e.getMilliseconds()}},t.parseDate=function(n){if(n.match(e)){var a=n.match(e).slice(1),s={year:a[0].replace("+","")};return a[1]&&(s.month=a[1].replace("-","")),a[2]&&(s.day=a[2].replace("-","")),s}if(n.match(i))return t.parseISODate(n);if(n.match(/^\-?\d+$/))return{year:n};var o={};if(n.match(/\d+\/\d+\/\d+/)){var r=n.match(/\d+\/\d+\/\d+/)[0];n=TL.Util.trim(n.replace(r,""));var l=r.split("/");o.month=l[0],o.day=l[1],o.year=l[2]}if(n.match(/\d+\/\d+/)){var r=n.match(/\d+\/\d+/)[0];n=TL.Util.trim(n.replace(r,""));var l=r.split("/");o.month=l[0],o.year=l[1]}if(n.match(":")){var h=n.split(":");o.hour=h[0],o.minute=h[1],h[2]&&(second_parts=h[2].split("."),o.second=second_parts[0],o.millisecond=second_parts[1])}return o},t.BEST_DATEFORMATS={base:{millisecond:"time_short",second:"time",minute:"time_no_seconds_small_date",hour:"time_no_seconds_small_date",day:"full",month:"month",year:"year",decade:"year",century:"year",millennium:"year",age:"fallback",epoch:"fallback",era:"fallback",eon:"fallback",eon2:"fallback"},short:{millisecond:"time_short",second:"time_short",minute:"time_no_seconds_short",hour:"time_no_minutes_short",day:"full_short",month:"month_short",year:"year",decade:"year",century:"year",millennium:"year",age:"fallback",epoch:"fallback",era:"fallback",eon:"fallback",eon2:"fallback"}}}(TL.Date),TL.BigDate=TL.Date.extend({initialize:function(t,e,i){TL.BigYear==t.constructor?this.data={date_obj:t}:(this.data=JSON.parse(JSON.stringify(t)),this._createDateObj()),this._setFormat(e,i)},_createDateObj:function(){var t=this._getDateData();this.data.date_obj=new TL.BigYear(t.year)},floor:function(t){for(var e=0;e<TL.BigDate.SCALES.length;e++)if(TL.BigDate.SCALES[e][0]==t){var i=TL.BigDate.SCALES[e][2](this.data.date_obj);return new TL.BigDate(i)}throw new TL.Error("invalid_scale_err",t)}}),function(t){var e=1e6,i=10*e,n=10*i,a=10*n,s=function(t){return function(e){var i=e.getTime();return new TL.BigYear(Math.floor(i/t)*t)}};t.SCALES=[["year",1,new s(1)],["decade",10,new s(10)],["century",100,new s(100)],["millennium",1e3,new s(1e3)],["age",e,new s(e)],["epoch",i,new s(i)],["era",n,new s(n)],["eon",a,new s(a)]]}(TL.BigDate),TL.DateUtil={get:function(t){return"string"==typeof t?document.getElementById(t):t},sortByDate:function(t,e){var e=e||"start_date";t.sort(function(t,i){return t[e].isBefore(i[e])?-1:t[e].isAfter(i[e])?1:0})},parseTime:function(t){var e={hour:null,minute:null,second:null,millisecond:null},i=null,n=t.match(/(\s*[AaPp]\.?[Mm]\.?\s*)$/);n&&(i=TL.Util.trim(n[0]),t=TL.Util.trim(t.substring(0,t.lastIndexOf(i))));var a=[],s=t.match(/^\s*(\d{1,2})(\d{2})\s*$/);if(s?a=s.slice(1):(a=t.split(":"),1==a.length&&(a=t.split("."))),a.length>4)throw new TL.Error("invalid_separator_error");if(e.hour=parseInt(a[0]),i&&"p"==i.toLowerCase()[0]&&12!=e.hour?e.hour+=12:i&&"a"==i.toLowerCase()[0]&&12==e.hour&&(e.hour=0),isNaN(e.hour)||e.hour<0||e.hour>23)throw new TL.Error("invalid_hour_err",e.hour);if(a.length>1&&(e.minute=parseInt(a[1]),isNaN(e.minute)))throw new TL.Error("invalid_minute_err",e.minute);if(a.length>2){var o=a[2].split(/[\.,]/);if(a=o.concat(a.slice(3)),a.length>2)throw new TL.Error("invalid_second_fractional_err");if(e.second=parseInt(a[0]),isNaN(e.second))throw new TL.Error("invalid_second_err");if(2==a.length){var r=parseInt(a[1]);if(isNaN(r))throw new TL.Error("invalid_fractional_err");e.millisecond=100*r}}return e},SCALE_DATE_CLASSES:{human:TL.Date,cosmological:TL.BigDate}},TL.Draggable=TL.Class.extend({includes:TL.Events,_el:{},mousedrag:{down:"mousedown",up:"mouseup",leave:"mouseleave",move:"mousemove"},touchdrag:{down:"touchstart",up:"touchend",leave:"mouseleave",move:"touchmove"},initialize:function(t,e,i){this._el={drag:t,move:t},i&&(this._el.move=i),this.options={enable:{x:!0,y:!0},constraint:{top:!1,bottom:!1,left:!1,right:!1},momentum_multiplier:2e3,duration:1e3,ease:TL.Ease.easeInOutQuint},this.animator=null,this.dragevent=this.mousedrag,TL.Browser.touch&&(this.dragevent=this.touchdrag),this.data={sliding:!1,direction:"none",pagex:{start:0,end:0},pagey:{start:0,end:0},pos:{start:{x:0,y:0},end:{x:0,y:0}},new_pos:{x:0,y:0},new_pos_parent:{x:0,y:0},time:{start:0,end:0},touch:!1},TL.Util.mergeData(this.options,e)},enable:function(t){this.data.pos.start=0,this._el.move.style.left=this.data.pos.start.x+"px",this._el.move.style.top=this.data.pos.start.y+"px",this._el.move.style.position="absolute"},disable:function(){TL.DomEvent.removeListener(this._el.drag,this.dragevent.down,this._onDragStart,this),TL.DomEvent.removeListener(this._el.drag,this.dragevent.up,this._onDragEnd,this)},stopMomentum:function(){this.animator&&this.animator.stop()},updateConstraint:function(t){this.options.constraint=t},_onDragStart:function(t){TL.Browser.touch?t.originalEvent?(this.data.pagex.start=t.originalEvent.touches[0].screenX,this.data.pagey.start=t.originalEvent.touches[0].screenY):(this.data.pagex.start=t.targetTouches[0].screenX,this.data.pagey.start=t.targetTouches[0].screenY):(this.data.pagex.start=t.pageX,this.data.pagey.start=t.pageY),this.options.enable.x&&(this._el.move.style.left=this.data.pagex.start-this._el.move.offsetWidth/2+"px"),this.options.enable.y&&(this._el.move.style.top=this.data.pagey.start-this._el.move.offsetHeight/2+"px"),this.data.pos.start=TL.Dom.getPosition(this._el.drag),this.data.time.start=(new Date).getTime(),this.fire("dragstart",this.data),TL.DomEvent.addListener(this._el.drag,this.dragevent.move,this._onDragMove,this),TL.DomEvent.addListener(this._el.drag,this.dragevent.leave,this._onDragEnd,this)},_onDragEnd:function(t){this.data.sliding=!1,TL.DomEvent.removeListener(this._el.drag,this.dragevent.move,this._onDragMove,this),TL.DomEvent.removeListener(this._el.drag,this.dragevent.leave,this._onDragEnd,this),this.fire("dragend",this.data),this._momentum()},_onDragMove:function(t){t.preventDefault(),this.data.sliding=!0,TL.Browser.touch?t.originalEvent?(this.data.pagex.end=t.originalEvent.touches[0].screenX,this.data.pagey.end=t.originalEvent.touches[0].screenY):(this.data.pagex.end=t.targetTouches[0].screenX,this.data.pagey.end=t.targetTouches[0].screenY):(this.data.pagex.end=t.pageX,this.data.pagey.end=t.pageY),this.data.pos.end=TL.Dom.getPosition(this._el.drag),this.data.new_pos.x=-(this.data.pagex.start-this.data.pagex.end-this.data.pos.start.x),this.data.new_pos.y=-(this.data.pagey.start-this.data.pagey.end-this.data.pos.start.y),this.options.enable.x&&(this._el.move.style.left=this.data.new_pos.x+"px"),this.options.enable.y&&(this._el.move.style.top=this.data.new_pos.y+"px"),this.fire("dragmove",this.data)},_momentum:function(){var t={x:0,y:0,time:0},e={x:0,y:0,time:0},i=!1;TL.Browser.touch,t.time=10*((new Date).getTime()-this.data.time.start),e.time=10*((new Date).getTime()-this.data.time.start),e.x=this.options.momentum_multiplier*(Math.abs(this.data.pagex.end)-Math.abs(this.data.pagex.start)),e.y=this.options.momentum_multiplier*(Math.abs(this.data.pagey.end)-Math.abs(this.data.pagey.start)),t.x=Math.round(e.x/e.time),t.y=Math.round(e.y/e.time),this.data.new_pos.x=Math.min(this.data.pos.end.x+t.x),this.data.new_pos.y=Math.min(this.data.pos.end.y+t.y),this.options.enable.x?this.data.new_pos.x<0&&(this.data.new_pos.x=0):this.data.new_pos.x=this.data.pos.start.x,this.options.enable.y?this.data.new_pos.y<0&&(this.data.new_pos.y=0):this.data.new_pos.y=this.data.pos.start.y,e.time<3e3&&(i=!0),Math.abs(e.x)>1e4&&(this.data.direction="left",e.x>0&&(this.data.direction="right")),Math.abs(e.y)>1e4&&(this.data.direction="up",e.y>0&&(this.data.direction="down")),this._animateMomentum(),i&&this.fire("swipe_"+this.data.direction,this.data)},_animateMomentum:function(){var t={x:this.data.new_pos.x,y:this.data.new_pos.y},e={duration:this.options.duration,easing:TL.Ease.easeOutStrong};this.options.enable.y&&((this.options.constraint.top||this.options.constraint.bottom)&&(t.y>this.options.constraint.bottom?t.y=this.options.constraint.bottom:t.y<this.options.constraint.top&&(t.y=this.options.constraint.top)),e.top=Math.floor(t.y)+"px"),this.options.enable.x&&((this.options.constraint.left||this.options.constraint.right)&&(t.x>this.options.constraint.left?t.x=this.options.constraint.left:t.x<this.options.constraint.right&&(t.x=this.options.constraint.right)),e.left=Math.floor(t.x)+"px"),this.animator=TL.Animate(this._el.move,e),this.fire("momentum",this.data)}}),TL.Swipable=TL.Class.extend({includes:TL.Events,_el:{},mousedrag:{down:"mousedown",up:"mouseup",leave:"mouseleave",move:"mousemove"},touchdrag:{down:"touchstart",up:"touchend",leave:"mouseleave",move:"touchmove"},initialize:function(t,e,i){this._el={drag:t,move:t},e&&(this._el.move=e),this.options={snap:!1,enable:{x:!0,y:!0},constraint:{top:!1,bottom:!1,left:0,right:!1},momentum_multiplier:2e3,duration:1e3,ease:TL.Ease.easeInOutQuint},this.animator=null,this.dragevent=this.mousedrag,TL.Browser.touch&&(this.dragevent=this.touchdrag),this.data={sliding:!1,direction:"none",pagex:{start:0,end:0},pagey:{start:0,end:0},pos:{start:{x:0,y:0},end:{x:0,y:0}},new_pos:{x:0,y:0},new_pos_parent:{x:0,y:0},time:{start:0,end:0},touch:!1},TL.Util.mergeData(this.options,i)},enable:function(t){TL.DomEvent.addListener(this._el.drag,this.dragevent.down,this._onDragStart,this),TL.DomEvent.addListener(this._el.drag,this.dragevent.up,this._onDragEnd,this),this.data.pos.start=0,this._el.move.style.left=this.data.pos.start.x+"px",this._el.move.style.top=this.data.pos.start.y+"px",this._el.move.style.position="absolute"},disable:function(){TL.DomEvent.removeListener(this._el.drag,this.dragevent.down,this._onDragStart,this),TL.DomEvent.removeListener(this._el.drag,this.dragevent.up,this._onDragEnd,this)},stopMomentum:function(){this.animator&&this.animator.stop()},updateConstraint:function(t){this.options.constraint=t},_onDragStart:function(t){this.animator&&this.animator.stop(),TL.Browser.touch?t.originalEvent?(this.data.pagex.start=t.originalEvent.touches[0].screenX,this.data.pagey.start=t.originalEvent.touches[0].screenY):(this.data.pagex.start=t.targetTouches[0].screenX,this.data.pagey.start=t.targetTouches[0].screenY):(this.data.pagex.start=t.pageX,this.data.pagey.start=t.pageY),this.options.enable.x,this.options.enable.y,this.data.pos.start={x:this._el.move.offsetLeft,y:this._el.move.offsetTop},this.data.time.start=(new Date).getTime(),this.fire("dragstart",this.data),TL.DomEvent.addListener(this._el.drag,this.dragevent.move,this._onDragMove,this),TL.DomEvent.addListener(this._el.drag,this.dragevent.leave,this._onDragEnd,this)},_onDragEnd:function(t){this.data.sliding=!1,TL.DomEvent.removeListener(this._el.drag,this.dragevent.move,this._onDragMove,this),TL.DomEvent.removeListener(this._el.drag,this.dragevent.leave,this._onDragEnd,this),this.fire("dragend",this.data),this._momentum()},_onDragMove:function(t){var e={x:0,y:0};this.data.sliding=!0,TL.Browser.touch?t.originalEvent?(this.data.pagex.end=t.originalEvent.touches[0].screenX,this.data.pagey.end=t.originalEvent.touches[0].screenY):(this.data.pagex.end=t.targetTouches[0].screenX,this.data.pagey.end=t.targetTouches[0].screenY):(this.data.pagex.end=t.pageX,this.data.pagey.end=t.pageY),e.x=this.data.pagex.start-this.data.pagex.end,e.y=this.data.pagey.start-this.data.pagey.end,this.data.pos.end={x:this._el.drag.offsetLeft,y:this._el.drag.offsetTop},this.data.new_pos.x=-(e.x-this.data.pos.start.x),this.data.new_pos.y=-(e.y-this.data.pos.start.y),this.options.enable.x&&Math.abs(e.x)>Math.abs(e.y)&&(t.preventDefault(),this._el.move.style.left=this.data.new_pos.x+"px"),this.options.enable.y&&Math.abs(e.y)>Math.abs(e.y)&&(t.preventDefault(),this._el.move.style.top=this.data.new_pos.y+"px"),this.fire("dragmove",this.data)},_momentum:function(){var t={x:0,y:0,time:0},e={x:0,y:0,time:0},i={x:!1,y:!1},n=!1;this.data.direction=null,t.time=10*((new Date).getTime()-this.data.time.start),e.time=10*((new Date).getTime()-this.data.time.start),e.x=this.options.momentum_multiplier*(Math.abs(this.data.pagex.end)-Math.abs(this.data.pagex.start)),e.y=this.options.momentum_multiplier*(Math.abs(this.data.pagey.end)-Math.abs(this.data.pagey.start)),t.x=Math.round(e.x/e.time),t.y=Math.round(e.y/e.time),this.data.new_pos.x=Math.min(this.data.new_pos.x+t.x),this.data.new_pos.y=Math.min(this.data.new_pos.y+t.y),this.options.enable.x?this.options.constraint.left&&this.data.new_pos.x>this.options.constraint.left&&(this.data.new_pos.x=this.options.constraint.left):this.data.new_pos.x=this.data.pos.start.x,this.options.enable.y?this.data.new_pos.y<0&&(this.data.new_pos.y=0):this.data.new_pos.y=this.data.pos.start.y,e.time<2e3&&(n=!0),this.options.enable.x&&this.options.enable.y?Math.abs(e.x)>Math.abs(e.y)?i.x=!0:i.y=!0:this.options.enable.x?Math.abs(e.x)>Math.abs(e.y)&&(i.x=!0):Math.abs(e.y)>Math.abs(e.x)&&(i.y=!0),i.x&&(Math.abs(e.x)>this._el.drag.offsetWidth/2&&(n=!0),Math.abs(e.x)>1e4&&(this.data.direction="left",e.x>0&&(this.data.direction="right"))),i.y&&(Math.abs(e.y)>this._el.drag.offsetHeight/2&&(n=!0),Math.abs(e.y)>1e4&&(this.data.direction="up",e.y>0&&(this.data.direction="down"))),e.time<1e3||this._animateMomentum(),n&&this.data.direction?this.fire("swipe_"+this.data.direction,this.data):this.data.direction?this.fire("swipe_nodirection",this.data):this.options.snap&&(this.animator.stop(),this.animator=TL.Animate(this._el.move,{top:this.data.pos.start.y,left:this.data.pos.start.x,duration:this.options.duration,easing:TL.Ease.easeOutStrong}))},_animateMomentum:function(){var t={x:this.data.new_pos.x,y:this.data.new_pos.y},e={duration:this.options.duration,easing:TL.Ease.easeOutStrong};this.options.enable.y&&((this.options.constraint.top||this.options.constraint.bottom)&&(t.y>this.options.constraint.bottom?t.y=this.options.constraint.bottom:t.y<this.options.constraint.top&&(t.y=this.options.constraint.top)),e.top=Math.floor(t.y)+"px"),this.options.enable.x&&(this.options.constraint.left&&t.x>=this.options.constraint.left&&(t.x=this.options.constraint.left),this.options.constraint.right&&t.x<this.options.constraint.right&&(t.x=this.options.constraint.right),e.left=Math.floor(t.x)+"px"),this.animator=TL.Animate(this._el.move,e),this.fire("momentum",this.data)}}),TL.MenuBar=TL.Class.extend({includes:[TL.Events,TL.DomMixins],_el:{},initialize:function(t,e,i){this._el={parent:{},container:{},button_backtostart:{},button_zoomin:{},button_zoomout:{},arrow:{},line:{},coverbar:{},grip:{}},this.collapsed=!1,"object"==typeof t?this._el.container=t:this._el.container=TL.Dom.get(t),e&&(this._el.parent=e),this.options={width:600,height:600,duration:1e3,ease:TL.Ease.easeInOutQuint,menubar_default_y:0},this.animator={},TL.Util.mergeData(this.options,i),this._initLayout(),this._initEvents()},show:function(t){var e=this.options.duration;t&&(e=t)},hide:function(t){},toogleZoomIn:function(t){t?TL.DomUtil.removeClass(this._el.button_zoomin,"tl-menubar-button-inactive"):TL.DomUtil.addClass(this._el.button_zoomin,"tl-menubar-button-inactive")},toogleZoomOut:function(t){t?TL.DomUtil.removeClass(this._el.button_zoomout,"tl-menubar-button-inactive"):TL.DomUtil.addClass(this._el.button_zoomout,"tl-menubar-button-inactive")},setSticky:function(t){this.options.menubar_default_y=t},setColor:function(t){t?this._el.container.className="tl-menubar tl-menubar-inverted":this._el.container.className="tl-menubar"},updateDisplay:function(t,e,i,n){this._updateDisplay(t,e,i,n)},_onButtonZoomIn:function(t){this.fire("zoom_in",t)},_onButtonZoomOut:function(t){this.fire("zoom_out",t)},_onButtonBackToStart:function(t){this.fire("back_to_start",t)},_initLayout:function(){this._el.button_zoomin=TL.Dom.create("span","tl-menubar-button",this._el.container),this._el.button_zoomout=TL.Dom.create("span","tl-menubar-button",this._el.container),this._el.button_backtostart=TL.Dom.create("span","tl-menubar-button",this._el.container),TL.Browser.mobile&&this._el.container.setAttribute("ontouchstart"," "),this._el.button_backtostart.innerHTML="<span class='tl-icon-goback'></span>",this._el.button_zoomin.innerHTML="<span class='tl-icon-zoom-in'></span>",this._el.button_zoomout.innerHTML="<span class='tl-icon-zoom-out'></span>"},_initEvents:function(){TL.DomEvent.addListener(this._el.button_backtostart,"click",this._onButtonBackToStart,this),TL.DomEvent.addListener(this._el.button_zoomin,"click",this._onButtonZoomIn,this),TL.DomEvent.addListener(this._el.button_zoomout,"click",this._onButtonZoomOut,this)},_updateDisplay:function(t,e,i){t&&(this.options.width=t),e&&(this.options.height=e)}}),TL.Message=TL.Class.extend({includes:[TL.Events,TL.DomMixins,TL.I18NMixins],_el:{},initialize:function(t,e,i){this._el={parent:{},container:{},message_container:{},loading_icon:{},message:{}},this.options={width:600,height:600,message_class:"tl-message",message_icon_class:"tl-loading-icon"},this._add_to_container=i||{},TL.Util.mergeData(this.data,t),TL.Util.mergeData(this.options,e),this._el.container=TL.Dom.create("div",this.options.message_class),i&&(i.appendChild(this._el.container),this._el.parent=i),this.animator={},this._initLayout(),this._initEvents()},updateMessage:function(t){this._updateMessage(t)},updateDisplay:function(t,e){this._updateDisplay(t,e)},_updateMessage:function(t){t?this._el.message.innerHTML=t:this._el.message.innerHTML=this._("loading"),!this._el.parent.atrributes&&this._add_to_container.attributes&&(this._add_to_container.appendChild(this._el.container),this._el.parent=this._add_to_container)},_onMouseClick:function(){this.fire("clicked",this.options)},_onRemove:function(){this._el.parent={}},_initLayout:function(){this._el.message_container=TL.Dom.create("div","tl-message-container",this._el.container),this._el.loading_icon=TL.Dom.create("div",this.options.message_icon_class,this._el.message_container),this._el.message=TL.Dom.create("div","tl-message-content",this._el.message_container),this._updateMessage()},_initEvents:function(){TL.DomEvent.addListener(this._el.container,"click",this._onMouseClick,this),TL.DomEvent.addListener(this,"removed",this._onRemove,this)},_updateDisplay:function(t,e,i){}}),TL.MediaType=function(t,e){var i={},n=[{type:"youtube",name:"YouTube",match_str:"^(https?:)?/*(www.)?youtube|youtu.be",cls:TL.Media.YouTube},{type:"vimeo",name:"Vimeo",match_str:"^(https?:)?/*(player.)?vimeo.com",cls:TL.Media.Vimeo},{type:"dailymotion",name:"DailyMotion",match_str:"^(https?:)?/*(www.)?dailymotion.com",cls:TL.Media.DailyMotion},{type:"vine",name:"Vine",match_str:"^(https?:)?/*(www.)?vine.co",cls:TL.Media.Vine},{type:"soundcloud",name:"SoundCloud",match_str:"^(https?:)?/*(player.)?soundcloud.com",cls:TL.Media.SoundCloud},{type:"twitter",name:"Twitter",match_str:"^(https?:)?/*(www.)?twitter.com",cls:TL.Media.Twitter},{type:"twitterembed",name:"TwitterEmbed",match_str:'<blockquote class="twitter-tweet"',cls:TL.Media.TwitterEmbed},{type:"googlemaps",name:"Google Map",match_str:/google.+?\/maps\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/search\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/place\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/dir\/([\w\W]+)\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)/,cls:TL.Media.GoogleMap},{type:"googleplus",name:"Google+",match_str:"^(https?:)?/*plus.google",cls:TL.Media.GooglePlus},{type:"flickr",name:"Flickr",match_str:"^(https?:)?/*(www.)?flickr.com/photos",cls:TL.Media.Flickr},{type:"flickr",name:"Flickr",match_str:"^(https?://)?flic.kr/.*",cls:TL.Media.Flickr},{type:"instagram",name:"Instagram",match_str:/^(https?:)?\/*(www.)?(instagr.am|^(https?:)?\/*(www.)?instagram.com)\/p\//,cls:TL.Media.Instagram},{type:"profile",name:"Profile",match_str:/^(https?:)?\/*(www.)?instagr.am\/[a-zA-Z0-9]{2,}|^(https?:)?\/*(www.)?instagram.com\/[a-zA-Z0-9]{2,}/,cls:TL.Media.Profile},{type:"documentcloud",name:"Document Cloud",match_str:/documentcloud.org\//,cls:TL.Media.DocumentCloud},{type:"image",name:"Image",match_str:/(jpg|jpeg|png|gif|svg)(\?.*)?$/i,cls:TL.Media.Image},{type:"imgur",name:"Imgur",match_str:/^.*imgur.com\/.+$/i,cls:TL.Media.Imgur},{type:"googledocs",name:"Google Doc",match_str:"^(https?:)?/*[^.]*.google.com/[^/]*/d/[^/]*/[^/]*?usp=sharing|^(https?:)?/*drive.google.com/open?id=[^&]*&authuser=0|^(https?:)?/*drive.google.com/open?id=[^&]*|^(https?:)?/*[^.]*.googledrive.com/host/[^/]*/",cls:TL.Media.GoogleDoc},{type:"pdf",name:"PDF",match_str:/^.*\.pdf(\?.*)?(\#.*)?/,cls:TL.Media.PDF},{type:"wikipedia",name:"Wikipedia",match_str:"^(https?:)?/*(www.)?wikipedia.org|^(https?:)?/*([a-z][a-z].)?wikipedia.org",cls:TL.Media.Wikipedia},{type:"spotify",name:"spotify",match_str:"spotify",cls:TL.Media.Spotify},{type:"iframe",name:"iFrame",match_str:"iframe",cls:TL.Media.IFrame},{type:"storify",name:"Storify",match_str:"storify",cls:TL.Media.Storify},{type:"blockquote",name:"Quote",match_str:"blockquote",cls:TL.Media.Blockquote},{type:"imageblank",name:"Imageblank",match_str:"",cls:TL.Media.Image}];if(e){if(t instanceof Array)return!1;for(var a=0;a<n.length;a++)switch(n[a].type){case"flickr":case"image":case"imgur":case"instagram":if(t.url.match(n[a].match_str))return i=n[a]}}else for(var a=0;a<n.length;a++){if(t instanceof Array)return i={type:"slider",cls:TL.Media.Slider};if(t.url.match(n[a].match_str))return i=n[a]}return!1},TL.Media=TL.Class.extend({includes:[TL.Events,TL.I18NMixins],_el:{},initialize:function(t,e,i){this._el={container:{},content_container:{},
+content:{},content_item:{},content_link:{},caption:null,credit:null,parent:{},link:null},this.player=null,this.timer=null,this.load_timer=null,this.message=null,this.media_id=null,this._state={loaded:!1,show_meta:!1,media_loaded:!1},this.data={unique_id:null,url:null,credit:null,caption:null,credit_alternate:null,caption_alternate:null,link:null,link_target:null},this.options={api_key_flickr:"f2cc870b4d233dd0a5bfe73fd0d64ef0",api_key_googlemaps:"AIzaSyB9dW8e_iRrATFa8g24qB6BDBGdkrLDZYI",api_key_embedly:"",credit_height:0,caption_height:0,background:0},this.animator={},TL.Util.mergeData(this.options,e),TL.Util.mergeData(this.data,t),this.options.background||(this._el.container=TL.Dom.create("div","tl-media"),this.data.unique_id&&(this._el.container.id=this.data.unique_id),this._initLayout(),i&&(i.appendChild(this._el.container),this._el.parent=i))},loadMedia:function(){var t=this;if(!this._state.loaded)try{this.load_timer=setTimeout(function(){t.loadingMessage(),t._loadMedia(),t._updateDisplay()},1200)}catch(t){trace("Error loading media for ",this._media),trace(t)}},_updateMessage:function(t){this.message&&this.message.updateMessage(t)},loadingMessage:function(){this._updateMessage(this._("loading")+" "+this.options.media_name)},errorMessage:function(t){t=t?this._("error")+": "+t:this._("error"),this._updateMessage(t)},updateMediaDisplay:function(t){this._state.loaded&&!this.options.background&&(TL.Browser.mobile?this._el.content_item.style.maxHeight=this.options.height/2+"px":this._el.content_item.style.maxHeight=this.options.height-this.options.credit_height-this.options.caption_height-30+"px",this._el.container.style.maxWidth=this.options.width+"px",TL.Browser.firefox&&this._el.content_item.offsetWidth>this._el.content_item.offsetHeight,this._updateMediaDisplay(t),this._state.media_loaded&&(this._el.credit&&(this._el.credit.style.width=this._el.content_item.offsetWidth+"px"),this._el.caption&&(this._el.caption.style.width=this._el.content_item.offsetWidth+"px")))},_loadMedia:function(){this.onLoaded()},_updateMediaDisplay:function(t){TL.Browser.firefox&&(this._el.content_item.style.maxWidth=this.options.width+"px",this._el.content_item.style.width="auto")},_getMeta:function(){},_getImageURL:function(t,e){return""},show:function(){},hide:function(){},addTo:function(t){t.appendChild(this._el.container),this.onAdd()},removeFrom:function(t){t.removeChild(this._el.container),this.onRemove()},getImageURL:function(t,e){return this._getImageURL(t,e)},updateDisplay:function(t,e,i){this._updateDisplay(t,e,i)},stopMedia:function(){this._stopMedia()},loadErrorDisplay:function(t){try{this._el.content.removeChild(this._el.content_item)}catch(t){}this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-loaderror",this._el.content),this._el.content_item.innerHTML="<div class='tl-icon-"+this.options.media_type+"'></div><p>"+t+"</p>",this.onLoaded(!0)},onLoaded:function(t){this._state.loaded=!0,this.fire("loaded",this.data),this.message&&this.message.hide(),t||this.options.background||this.showMeta(),this.updateDisplay()},onMediaLoaded:function(t){this._state.media_loaded=!0,this.fire("media_loaded",this.data),this._el.credit&&(this._el.credit.style.width=this._el.content_item.offsetWidth+"px"),this._el.caption&&(this._el.caption.style.width=this._el.content_item.offsetWidth+"px")},showMeta:function(t,e){this._state.show_meta=!0,this.data.credit&&""!=this.data.credit&&(this._el.credit=TL.Dom.create("div","tl-credit",this._el.content_container),this._el.credit.innerHTML=1==this.options.autolink?TL.Util.linkify(this.data.credit):this.data.credit,this.options.credit_height=this._el.credit.offsetHeight),this.data.caption&&""!=this.data.caption&&(this._el.caption=TL.Dom.create("div","tl-caption",this._el.content_container),this._el.caption.innerHTML=1==this.options.autolink?TL.Util.linkify(this.data.caption):this.data.caption,this.options.caption_height=this._el.caption.offsetHeight),this.data.caption&&this.data.credit||this.getMeta()},getMeta:function(){this._getMeta()},updateMeta:function(){!this.data.credit&&this.data.credit_alternate&&(this._el.credit=TL.Dom.create("div","tl-credit",this._el.content_container),this._el.credit.innerHTML=this.data.credit_alternate,this.options.credit_height=this._el.credit.offsetHeight),!this.data.caption&&this.data.caption_alternate&&(this._el.caption=TL.Dom.create("div","tl-caption",this._el.content_container),this._el.caption.innerHTML=this.data.caption_alternate,this.options.caption_height=this._el.caption.offsetHeight),this.updateDisplay()},onAdd:function(){this.fire("added",this.data)},onRemove:function(){this.fire("removed",this.data)},_initLayout:function(){this.message=new TL.Message({},this.options),this.message.addTo(this._el.container),this._el.content_container=TL.Dom.create("div","tl-media-content-container",this._el.container),this.data.link&&""!=this.data.link?(this._el.link=TL.Dom.create("a","tl-media-link",this._el.content_container),this._el.link.href=this.data.link,this.data.link_target&&""!=this.data.link_target?this._el.link.target=this.data.link_target:this._el.link.target="_blank",this._el.content=TL.Dom.create("div","tl-media-content",this._el.link)):this._el.content=TL.Dom.create("div","tl-media-content",this._el.content_container)},_updateDisplay:function(t,e,i){t&&(this.options.width=t),e&&(this.options.height=e),i&&(this.options.layout=i),this._el.credit&&(this.options.credit_height=this._el.credit.offsetHeight),this._el.caption&&(this.options.caption_height=this._el.caption.offsetHeight+5),this.updateMediaDisplay(this.options.layout)},_stopMedia:function(){}}),TL.Media.Blockquote=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-blockquote",this._el.content),this._el.content_container.className="tl-media-content-container tl-media-content-container-text",this.media_id=this.data.url,this._el.content_item.innerHTML=this.media_id,this.onLoaded()},updateMediaDisplay:function(){},_updateMediaDisplay:function(){}}),TL.Media.DailyMotion=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe tl-media-dailymotion",this._el.content),this.data.url.match("video")?this.media_id=this.data.url.split("video/")[1].split(/[?&]/)[0]:this.media_id=this.data.url.split("embed/")[1].split(/[?&]/)[0],t="https://www.dailymotion.com/embed/video/"+this.media_id+"?api=postMessage",this._el.content_item.innerHTML="<iframe autostart='false' frameborder='0' width='100%' height='100%' src='"+t+"'></iframe>",this.onLoaded()},_updateMediaDisplay:function(){this._el.content_item.style.height=TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth})+"px"},_stopMedia:function(){this._el.content_item.querySelector("iframe").contentWindow.postMessage('{"command":"pause","parameters":[]}',"*")}}),TL.Media.DocumentCloud=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t=this;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-documentcloud tl-media-shadow",this._el.content),this._el.content_item.id=TL.Util.unique_ID(7),this.data.url.match(/\.html$/)?this.data.url=this._transformURL(this.data.url):this.data.url.match(/.(json|js)$/)||trace("DOCUMENT CLOUD IN URL BUT INVALID SUFFIX"),TL.Load.js(["https://assets.documentcloud.org/viewer/loader.js","https://assets.documentcloud.org/viewer/viewer.js"],function(){t.createMedia()})},_transformURL:function(t){return t.replace(/(.*)\.html$/,"$1.js")},_updateMediaDisplay:function(){this._el.content_item.style.height=this.options.height+"px"},createMedia:function(){DV.load(this.data.url,{container:"#"+this._el.content_item.id,showSidebar:!1}),this.onLoaded()}}),TL.Media.Flickr=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t,e=this;try{this.establishMediaID(),t="https://api.flickr.com/services/rest/?method=flickr.photos.getSizes&api_key="+this.options.api_key_flickr+"&photo_id="+this.media_id+"&format=json&jsoncallback=?",TL.getJSON(t,function(t){"ok"==t.stat?(e.sizes=t.sizes.size,e.options.background||e.createMedia(),e.onLoaded()):e.loadErrorDisplay(e._("flickr_notfound_err"))})}catch(t){e.loadErrorDisplay(e._(t.message_key))}},establishMediaID:function(){if(this.data.url.match(/flic.kr\/.+/i)){var t=this.data.url.split("/").slice(-1)[0];this.media_id=TL.Util.base58.decode(t)}else{var e="flickr.com/photos/",i=this.data.url.indexOf(e);if(i==-1)throw new TL.Error("flickr_invalidurl_err");var n=i+e.length;this.media_id=this.data.url.substr(n).split("/")[1]}},createMedia:function(){var t=this;this._el.content_link=TL.Dom.create("a","",this._el.content),this._el.content_link.href=this.data.url,this._el.content_link.target="_blank",this._el.content_item=TL.Dom.create("img","tl-media-item tl-media-image tl-media-flickr tl-media-shadow",this._el.content_link),this._el.content_item.addEventListener("load",function(e){t.onMediaLoaded()}),this._el.content_item.src=this.getImageURL(this.options.width,this.options.height)},getImageURL:function(t,e){for(var i=this.size_label(e),n=this.sizes[this.sizes.length-2].source,a=0;a<this.sizes.length;a++)this.sizes[a].label==i&&(n=this.sizes[a].source);return n},_getMeta:function(){var t,e=this;t="https://api.flickr.com/services/rest/?method=flickr.photos.getInfo&api_key="+this.options.api_key_flickr+"&photo_id="+this.media_id+"&format=json&jsoncallback=?",TL.getJSON(t,function(t){e.data.credit_alternate="<a href='"+e.data.url+"' target='_blank'>"+t.photo.owner.realname+"</a>",e.data.caption_alternate=t.photo.title._content+" "+t.photo.description._content,e.updateMeta()})},size_label:function(t){var e="";return e=t<=75?t<=0?"Large":"Thumbnail":t<=180?"Small":t<=240?"Small 320":t<=375?"Medium":t<=480?"Medium 640":"Large"}}),TL.Media.GoogleDoc=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t;if(this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe",this._el.content),this.data.url.match("open?id="))this.media_id=this.data.url.split("open?id=")[1],this.data.url.match("&authuser=0")&&(t=this.media_id.match("&authuser=0")[0]);else if(this.data.url.match(/file\/d\/([^\/]*)\/?/)){var e=this.data.url.match(/file\/d\/([^\/]*)\/?/)[1];t="https://drive.google.com/file/d/"+e+"/preview"}else t=this.data.url;this._el.content_item.innerHTML="<iframe class='doc' frameborder='0' width='100%' height='100%' src='"+t+"'></iframe>",this.onLoaded()},_updateMediaDisplay:function(){this._el.content_item.style.height=this.options.height+"px"}}),TL.Media.GooglePlus=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-googleplus",this._el.content),this.media_id=this.data.url,t=this.media_id,this._el.content_item.innerHTML="<iframe frameborder='0' width='100%' height='100%' src='"+t+"'></iframe>",this.onLoaded()},_updateMediaDisplay:function(){this._el.content_item.style.height=this.options.height+"px"}}),TL.Media.IFrame=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe",this._el.content),this.media_id=this.data.url,t=this.media_id,this._el.content_item.innerHTML=t,this.onLoaded()},_updateMediaDisplay:function(){this._el.content_item.style.height=this.options.height+"px"}}),TL.Media.Image=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){this.loadingMessage(),this.options.background||this.createMedia(),this.onLoaded()},createMedia:function(){var t=this,e="tl-media-item tl-media-image tl-media-shadow";(this.data.url.match(/.png(\?.*)?$/)||this.data.url.match(/.svg(\?.*)?$/))&&(e="tl-media-item tl-media-image"),this.data.link?(this._el.content_link=TL.Dom.create("a","",this._el.content),this._el.content_link.href=this.data.link,this._el.content_link.target="_blank",this._el.content_item=TL.Dom.create("img",e,this._el.content_link)):this._el.content_item=TL.Dom.create("img",e,this._el.content),this._el.content_item.addEventListener("load",function(e){t.onMediaLoaded()}),this._el.content_item.src=this.getImageURL()},getImageURL:function(t,e){return TL.Util.transformImageURL(this.data.url)},_updateMediaDisplay:function(t){TL.Browser.firefox&&(this._el.content_item.style.width="auto")}}),TL.Media.Imgur=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){try{this.media_id=this.data.url.split("/").slice(-1)[0],this.options.background||this.createMedia(),this.onLoaded()}catch(t){this.loadErrorDisplay(this._("imgur_invalidurl_err"))}},createMedia:function(){var t=this;this._el.content_link=TL.Dom.create("a","",this._el.content),this._el.content_link.href=this.data.url,this._el.content_link.target="_blank",this._el.content_item=TL.Dom.create("img","tl-media-item tl-media-image tl-media-imgur tl-media-shadow",this._el.content_link),this._el.content_item.addEventListener("load",function(e){t.onMediaLoaded()}),this._el.content_item.src=this.getImageURL()},getImageURL:function(t,e){return"https://i.imgur.com/"+this.media_id+".jpg"}}),TL.Media.Instagram=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){this.media_id=this.data.url.split("/p/")[1].split("/")[0],this.options.background||this.createMedia(),this.onLoaded()},createMedia:function(){var t=this;this._el.content_link=TL.Dom.create("a","",this._el.content),this._el.content_link.href=this.data.url,this._el.content_link.target="_blank",this._el.content_item=TL.Dom.create("img","tl-media-item tl-media-image tl-media-instagram tl-media-shadow",this._el.content_link),this._el.content_item.addEventListener("load",function(e){t.onMediaLoaded()}),this._el.content_item.src=this.getImageURL(this._el.content.offsetWidth)},getImageURL:function(t,e){return"https://instagram.com/p/"+this.media_id+"/media/?size="+this.sizes(t)},_getMeta:function(){var t,e=this;t="https://api.instagram.com/oembed?url=https://instagr.am/p/"+this.media_id+"&callback=?",TL.getJSON(t,function(t){e.data.credit_alternate="<a href='"+t.author_url+"' target='_blank'>"+t.author_name+"</a>",e.data.caption_alternate=t.title,e.updateMeta()})},sizes:function(t){var e="";return e=t<=150?"t":t<=306?"m":"l"}}),TL.Media.GoogleMap=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-map tl-media-shadow",this._el.content),this.media_id=this.data.url,this.mapframe=TL.Dom.create("iframe","",this._el.content_item),window.stash=this,this.mapframe.width="100%",this.mapframe.height="100%",this.mapframe.frameBorder="0",this.mapframe.src=this.makeGoogleMapsEmbedURL(this.media_id,this.options.api_key_googlemaps),this.onLoaded()},_updateMediaDisplay:function(){if(this._state.loaded){var t=TL.Util.ratio.square({w:this._el.content_item.offsetWidth});this._el.content_item.style.height=t.h+"px"}},makeGoogleMapsEmbedURL:function(t,e){function i(t){function i(e,i){if("z"==e.slice(-1))i.zoom=e;else if("m"==e.slice(-1))i.zoom=14,i.maptype="satellite";else if("t"==e.slice(-1)){if(n=!0,"place"==mapmode)var s=t.match(h.place)[3]+","+t.match(h.place)[4];else{var s=i.center;delete i.center}i={},i.location=s,streetview_params=e.split(",");for(param in a.streetview){var o=parseInt(param)+1;"pitch"==a.streetview[param]&&"90t"==streetview_params[o]?i[a.streetview[param]]=0:i[a.streetview[param]]=streetview_params[o].slice(0,-1)}}return i}function s(t,s){var o={},r=s[1],l=s[s.length-1];for(param in a[t]){var h=parseInt(param)+2;"center"==a[t][param]?o[a[t][param]]=s[h]+","+s[++h]:o[a[t][param]]=s[h]}return o=i(l,o),o.key=e,1==n&&(t="streetview"),r+"/embed/v1/"+t+TL.Util.getParamString(o)}return mapmode="view",t.match(h.place)?mapmode="place":t.match(h.directions)?mapmode="directions":t.match(h.search)&&(mapmode="search"),s(mapmode,t.match(h[mapmode]))}var n=!1,a={view:["center"],place:["q","center"],directions:["origin","destination","center"],search:["q","center"],streetview:["fov","heading","pitch"]},s=/(https:\/\/.+google.+?\/maps)/,o=/@([-\d.]+),([-\d.]+)/,r=/([\w\W]+)/,l=/,((?:[-\d.]+[zmayht],?)*)/,h={view:new RegExp(s.source+"/"+o.source+l.source),place:new RegExp(s.source+"/place/"+r.source+"/"+o.source+l.source),directions:new RegExp(s.source+"/dir/"+r.source+"/"+r.source+"/"+o.source+l.source),search:new RegExp(s.source+"/search/"+r.source+"/"+o.source+l.source)};return i(t)}}),TL.Media.PDF=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t=TL.Util.transformImageURL(this.data.url);this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe",this._el.content);var e="";e=TL.Browser.ie||TL.Browser.edge||t.match(/dl.dropboxusercontent.com/)?"<iframe class='doc' frameborder='0' width='100%' height='100%' src='//docs.google.com/viewer?url="+t+"&amp;embedded=true'></iframe>":"<iframe class='doc' frameborder='0' width='100%' height='100%' src='"+t+"'></iframe>",this._el.content_item.innerHTML=e,this.onLoaded()},_updateMediaDisplay:function(){this._el.content_item.style.height=this.options.height+"px"}}),TL.Media.Profile=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){this._el.content_item=TL.Dom.create("img","tl-media-item tl-media-image tl-media-profile tl-media-shadow",this._el.content),this._el.content_item.src=this.data.url,this.onLoaded()},_updateMediaDisplay:function(t){TL.Browser.firefox&&(this._el.content_item.style.maxWidth=this.options.width/2-40+"px")}}),TL.Media.Slider=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){this._el.content_item=TL.Dom.create("img","tl-media-item tl-media-image",this._el.content),this._el.content_item.src=this.data.url,this.onLoaded()}});var soundCoudCreated=!1;TL.Media.SoundCloud=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t,e=this;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe tl-media-soundcloud tl-media-shadow",this._el.content),this.media_id=this.data.url,t="https://soundcloud.com/oembed?url="+this.media_id+"&format=js&callback=?",TL.getJSON(t,function(t){TL.Load.js("https://w.soundcloud.com/player/api.js",function(){e.createMedia(t)})})},createMedia:function(t){this._el.content_item.innerHTML=t.html,this.soundCloudCreated=!0,self.widget=SC.Widget(this._el.content_item.querySelector("iframe")),this.onLoaded()},_stopMedia:function(){this.soundCloudCreated&&self.widget.pause()}}),TL.Media.Spotify=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t;if(this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe tl-media-spotify",this._el.content),(this.data.url.match(/^spotify:track/)||this.data.url.match(/^spotify:user:.+:playlist:/))&&(this.media_id=this.data.url),this.data.url.match(/spotify.com\/track\/(.+)/))this.media_id="spotify:track:"+this.data.url.match(/spotify.com\/track\/(.+)/)[1];else if(this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)){var e=this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)[1],i=this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)[2];this.media_id="spotify:user:"+e+":playlist:"+i}this.media_id?(t="https://embed.spotify.com/?uri="+this.media_id+"&theme=white&view=coverart",this.player=TL.Dom.create("iframe","tl-media-shadow",this._el.content_item),this.player.width="100%",this.player.height="100%",this.player.frameBorder="0",this.player.src=t,this.onLoaded()):this.loadErrorDisplay(this._("spotify_invalid_url"))},_updateMediaDisplay:function(t){var e=this.options.height,i=0,n=0;e=TL.Browser.mobile?this.options.height/2:this.options.height-this.options.credit_height-this.options.caption_height-30,this._el.content_item.style.maxHeight="none",trace(e),trace(this.options.width),e>this.options.width?(trace("height is greater"),i=this.options.width+80+"px",n=this.options.width+"px"):(trace("width is greater"),trace(this.options.width),i=e+"px",n=e-80+"px"),this.player.style.width=n,this.player.style.height=i,this._el.credit&&(this._el.credit.style.width=n),this._el.caption&&(this._el.caption.style.width=n)},_stopMedia:function(){}}),TL.Media.Storify=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe tl-media-storify",this._el.content),this.media_id=this.data.url,t="<iframe frameborder='0' width='100%' height='100%' src='"+this.media_id+"/embed'></iframe>",t+="<script src='"+this.media_id+".js'></script>",this._el.content_item.innerHTML=t,this.onLoaded()},_updateMediaDisplay:function(){this._el.content_item.style.height=this.options.height+"px"}}),TL.Media.Text=TL.Class.extend({includes:[TL.Events],_el:{container:{},content_container:{},content:{},headline:{},date:{}},data:{unique_id:"",headline:"headline",text:"text"},options:{title:!1},initialize:function(t,e,i){TL.Util.setData(this,t),TL.Util.mergeData(this.options,e),this._el.container=TL.Dom.create("div","tl-text"),this._el.container.id=this.data.unique_id,this._initLayout(),i&&i.appendChild(this._el.container)},show:function(){},hide:function(){},addTo:function(t){t.appendChild(this._el.container)},removeFrom:function(t){t.removeChild(this._el.container)},headlineHeight:function(){return this._el.headline.offsetHeight+40},addDateText:function(t){this._el.date.innerHTML=t},onLoaded:function(){this.fire("loaded",this.data)},onAdd:function(){this.fire("added",this.data)},onRemove:function(){this.fire("removed",this.data)},_initLayout:function(){if(this._el.content_container=TL.Dom.create("div","tl-text-content-container",this._el.container),this._el.date=TL.Dom.create("h3","tl-headline-date",this._el.content_container),""!=this.data.headline){var t="tl-headline";this.options.title&&(t="tl-headline tl-headline-title"),this._el.headline=TL.Dom.create("h2",t,this._el.content_container),this._el.headline.innerHTML=this.data.headline}if(""!=this.data.text){var e="";e+=TL.Util.htmlify(1==this.options.autolink?TL.Util.linkify(this.data.text):this.data.text),trace(this.data.text),this._el.content=TL.Dom.create("div","tl-text-content",this._el.content_container),this._el.content.innerHTML=e,trace(e),trace(this._el.content)}this.onLoaded()}}),TL.Media.Twitter=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t,e=this;this._el.content_item=TL.Dom.create("div","tl-media-twitter",this._el.content),this._el.content_container.className="tl-media-content-container tl-media-content-container-text",this.data.url.match("status/")?this.media_id=this.data.url.split("status/")[1]:this.data.url.match("statuses/")?this.media_id=this.data.url.split("statuses/")[1]:this.media_id="",t="https://api.twitter.com/1/statuses/oembed.json?id="+this.media_id+"&omit_script=true&include_entities=true&callback=?",TL.ajax({type:"GET",url:t,dataType:"json",success:function(t){e.createMedia(t)},error:function(t,i){var n="";n+=e._("twitter_load_err")+"<br/>"+e.media_id+"<br/>"+i,e.loadErrorDisplay(n)}})},createMedia:function(t){var e="",i="",n="",a="",s="",o="";i=t.html.split("</p>&mdash;")[0]+"</p></blockquote>",n=t.author_url.split("twitter.com/")[1],a=t.html.split("</p>&mdash;")[1].split('<a href="')[1],s=a.split('">')[0],o=a.split('">')[1].split("</a>")[0],i=i.replace(/<a href/gi,'<a class="tl-makelink" target="_blank" href'),e+=i,e+="<div class='vcard'>",e+="<a href='"+s+"' class='twitter-date' target='_blank'>"+o+"</a>",e+="<div class='author'>",e+="<a class='screen-name url' href='"+t.author_url+"' target='_blank'>",e+="<span class='avatar'></span>",e+="<span class='fn'>"+t.author_name+" <span class='tl-icon-twitter'></span></span>",e+="<span class='nickname'>@"+n+"<span class='thumbnail-inline'></span></span>",e+="</a>",e+="</div>",e+="</div>",this._el.content_item.innerHTML=e,this.onLoaded()},updateMediaDisplay:function(){},_updateMediaDisplay:function(){}}),TL.Media.TwitterEmbed=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t,e=this;this._el.content_item=TL.Dom.create("div","tl-media-twitter",this._el.content),this._el.content_container.className="tl-media-content-container tl-media-content-container-text";var i=this.data.url.match(/(status|statuses)\/(\d+)/);return i&&i.length>2?(this.media_id=i[2],t="https://api.twitter.com/1/statuses/oembed.json?id="+this.media_id+"&omit_script=true&include_entities=true&callback=?",void TL.ajax({type:"GET",url:t,dataType:"json",success:function(t){e.createMedia(t)},error:function(t,i){var n="";n+=e._("twitter_load_err")+"<br/>"+e.media_id+"<br/>"+i,e.loadErrorDisplay(n)}})):void e.loadErrorDisplay(e._("twitterembed_invalidurl_err"))},createMedia:function(t){trace("create_media");var e="",i="",n="",a="",s="",o="";i=t.html.split("</p>&mdash;")[0]+"</p></blockquote>",n=t.author_url.split("twitter.com/")[1],a=t.html.split("</p>&mdash;")[1].split('<a href="')[1],s=a.split('">')[0],o=a.split('">')[1].split("</a>")[0],i=i.replace(/<a href/gi,'<a target="_blank" href'),e+=i,e+="<div class='vcard'>",e+="<a href='"+s+"' class='twitter-date' target='_blank'>"+o+"</a>",e+="<div class='author'>",e+="<a class='screen-name url' href='"+t.author_url+"' target='_blank'>",e+="<span class='avatar'></span>",e+="<span class='fn'>"+t.author_name+" <span class='tl-icon-twitter'></span></span>",e+="<span class='nickname'>@"+n+"<span class='thumbnail-inline'></span></span>",e+="</a>",e+="</div>",e+="</div>",this._el.content_item.innerHTML=e,this.onLoaded()},updateMediaDisplay:function(){},_updateMediaDisplay:function(){}}),TL.Media.Vimeo=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t,e=this;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe tl-media-vimeo tl-media-shadow",this._el.content),this.media_id=this.data.url.split(/video\/|\/\/vimeo\.com\//)[1].split(/[?&]/)[0],t="https://player.vimeo.com/video/"+this.media_id+"?api=1&title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff",this.player=TL.Dom.create("iframe","",this._el.content_item),this.player.addEventListener("load",function(t){e.onMediaLoaded()}),this.player.width="100%",this.player.height="100%",this.player.frameBorder="0",this.player.src=t,this.player.setAttribute("allowfullscreen",""),this.player.setAttribute("webkitallowfullscreen",""),this.player.setAttribute("mozallowfullscreen",""),this.onLoaded()},_updateMediaDisplay:function(){this._el.content_item.style.height=TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth})+"px"},_stopMedia:function(){try{this.player.contentWindow.postMessage(JSON.stringify({method:"pause"}),"https://player.vimeo.com")}catch(t){trace(t)}}}),TL.Media.Vine=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-iframe tl-media-vine tl-media-shadow",this._el.content),this.media_id=this.data.url.split("vine.co/v/")[1],t="https://vine.co/v/"+this.media_id+"/embed/simple",this._el.content_item.innerHTML="<iframe frameborder='0' width='100%' height='100%' src='"+t+"'></iframe><script async src='https://platform.vine.co/static/scripts/embed.js' charset='utf-8'></script>",this.onLoaded()},_updateMediaDisplay:function(){var t=TL.Util.ratio.square({w:this._el.content_item.offsetWidth,h:this.options.height});this._el.content_item.style.height=t.h+"px"},_stopMedia:function(){this._el.content_item.querySelector("iframe").contentWindow.postMessage("pause","*")}}),TL.Media.Website=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t=this;this.media_id=this.data.url.replace(/.*?:\/\//g,""),this.options.api_key_embedly?(api_url="https://api.embed.ly/1/extract?key="+this.options.api_key_embedly+"&url="+this.media_id+"&callback=?",TL.getJSON(api_url,function(e){t.createMedia(e)})):this.createCardContent()},createCardContent:function(){!function(t,e){var i="embedly-platform",n="script";if(!e.getElementById(i)){t.embedly=t.embedly||function(){(t.embedly.q=t.embedly.q||[]).push(arguments)};var a=e.createElement(n);a.id=i,a.async=1,a.src=("https:"===document.location.protocol?"https":"http")+"://cdn.embedly.com/widgets/platform.js";var s=e.getElementsByTagName(n)[0];s.parentNode.insertBefore(a,s)}}(window,document);var t='<a href="'+this.data.url+'" class="embedly-card">'+this.data.url+"</a>";this._setContent(t)},createMedia:function(t){var e="";e+="<h4><a href='"+this.data.url+"' target='_blank'>"+t.title+"</a></h4>",t.images&&t.images[0]&&(trace(t.images[0].url),e+="<img src='"+t.images[0].url+"' />"),t.favicon_url&&(e+="<img class='tl-media-website-icon' src='"+t.favicon_url+"' />"),e+="<span class='tl-media-website-description'>"+t.provider_name+"</span><br/>",e+="<p>"+t.description+"</p>",this._setContent(e)},_setContent:function(t){this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-website",this._el.content),this._el.content_container.className="tl-media-content-container tl-media-content-container-text",this._el.content_item.innerHTML=t,this.onLoaded()},updateMediaDisplay:function(){},_updateMediaDisplay:function(){}}),TL.Media.Wikipedia=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t,e,i=this;this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-wikipedia",this._el.content),this._el.content_container.className="tl-media-content-container tl-media-content-container-text",this.media_id=this.data.url.split("wiki/")[1].split("#")[0].replace("_"," "),this.media_id=this.media_id.replace(" ","%20"),e=this.data.url.split("//")[1].split(".wikipedia")[0],t="https://"+e+".wikipedia.org/w/api.php?action=query&prop=extracts|pageimages&redirects=&titles="+this.media_id+"&exintro=1&format=json&callback=?",TL.ajax({type:"GET",url:t,dataType:"json",success:function(t){i.createMedia(t)},error:function(t,e){var n="";n+=i._("wikipedia_load_err")+"<br/>"+i.media_id+"<br/>"+e,i.loadErrorDisplay(n)}})},createMedia:function(t){var e="";if(t.query){var i="",e={entry:{},title:"",text:"",extract:"",paragraphs:1,page_image:"",text_array:[]};e.entry=TL.Util.getObjectAttributeByIndex(t.query.pages,0),e.extract=e.entry.extract,e.title=e.entry.title,e.page_image=e.entry.thumbnail,e.extract.match("<p>")?e.text_array=e.extract.split("<p>"):e.text_array.push(e.extract);for(var n=0;n<e.text_array.length;n++)n+1<=e.paragraphs&&n+1<e.text_array.length&&(e.text+="<p>"+e.text_array[n+1]);i+="<span class='tl-icon-wikipedia'></span>",i+="<div class='tl-wikipedia-title'><h4><a href='"+this.data.url+"' target='_blank'>"+e.title+"</a></h4>",i+="<span class='tl-wikipedia-source'>"+this._("wikipedia")+"</span></div>",e.page_image,i+=e.text,e.extract.match("REDIRECT")||(this._el.content_item.innerHTML=i,this.onLoaded())}},updateMediaDisplay:function(){},_updateMediaDisplay:function(){}}),TL.Media.YouTube=TL.Media.extend({includes:[TL.Events],_loadMedia:function(){var t,e=this;this.youtube_loaded=!1,this._el.content_item=TL.Dom.create("div","tl-media-item tl-media-youtube tl-media-shadow",this._el.content),this._el.content_item.id=TL.Util.unique_ID(7),t=TL.Util.getUrlVars(this.data.url),this.media_id={},this.data.url.match("v=")?this.media_id.id=t.v:this.data.url.match("/embed/")?this.media_id.id=this.data.url.split("embed/")[1].split(/[?&]/)[0]:this.data.url.match(/v\/|v=|youtu\.be\//)?this.media_id.id=this.data.url.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0]:trace("YOUTUBE IN URL BUT NOT A VALID VIDEO"),this.media_id.start=parseInt(t.start),isNaN(this.media_id.start)&&(this.media_id.start=TL.Util.parseYouTubeTime(t.t)),this.media_id.end=parseInt(t.end),this.media_id.hd=Boolean("undefined"!=typeof t.hd),TL.Load.js("https://www.youtube.com/iframe_api",function(){e.createMedia()})},_updateMediaDisplay:function(){this._el.content_item.style.height=TL.Util.ratio.r16_9({w:this.options.width})+"px",this._el.content_item.style.width=this.options.width+"px"},_stopMedia:function(){if(this.youtube_loaded)try{this.player.getPlayerState()==YT.PlayerState.PLAYING&&this.player.pauseVideo()}catch(t){trace(t)}},createMedia:function(){var t=this;clearTimeout(this.timer),"undefined"!=typeof YT&&"undefined"!=typeof YT.Player?this.player=new YT.Player(this._el.content_item.id,{playerVars:{enablejsapi:1,color:"white",autohide:1,showinfo:0,theme:"light",start:this.media_id.start,end:this.media_id.end,
+fs:0,rel:0},videoId:this.media_id.id,events:{onReady:function(){t.onPlayerReady(),t.onLoaded()},onStateChange:t.onStateChange}}):this.timer=setTimeout(function(){t.createMedia()},1e3)},onPlayerReady:function(t){this.youtube_loaded=!0,this._el.content_item=document.getElementById(this._el.content_item.id),this.onMediaLoaded()},onStateChange:function(t){t.data==YT.PlayerState.ENDED&&(t.target.seekTo(0),t.target.pauseVideo())}}),TL.Slide=TL.Class.extend({includes:[TL.Events,TL.DomMixins,TL.I18NMixins],_el:{},initialize:function(t,e,i){this._el={container:{},scroll_container:{},background:{},content_container:{},content:{}},this._media=null,this._mediaclass={},this._text={},this._background_media=null,this._state={loaded:!1},this.has={headline:!1,text:!1,media:!1,title:!1,background:{image:!1,color:!1,color_value:""}},this.has.title=i,this.data={unique_id:null,background:null,start_date:null,end_date:null,location:null,text:null,media:null,autolink:!0},this.options={duration:1e3,slide_padding_lr:40,ease:TL.Ease.easeInSpline,width:600,height:600,skinny_size:650,media_name:""},this.active=!1,this.animator={},TL.Util.mergeData(this.options,e),TL.Util.mergeData(this.data,t),this._initLayout(),this._initEvents()},show:function(){this.animator=TL.Animate(this._el.slider_container,{left:-(this._el.container.offsetWidth*n)+"px",duration:this.options.duration,easing:this.options.ease})},hide:function(){},setActive:function(t){this.active=t,this.active?(this.data.background&&this.fire("background_change",this.has.background),this.loadMedia()):this.stopMedia()},addTo:function(t){t.appendChild(this._el.container)},removeFrom:function(t){t.removeChild(this._el.container)},updateDisplay:function(t,e,i){this._updateDisplay(t,e,i)},loadMedia:function(){var t=this;this._media&&!this._state.loaded&&(this._media.loadMedia(),this._state.loaded=!0),this._background_media&&!this._background_media._state.loaded&&(this._background_media.on("loaded",function(){t._updateBackgroundDisplay()}),this._background_media.loadMedia())},stopMedia:function(){this._media&&this._state.loaded&&this._media.stopMedia()},getBackground:function(){return this.has.background},scrollToTop:function(){this._el.container.scrollTop=0},getFormattedDate:function(){if(TL.Util.trim(this.data.display_date).length>0)return this.data.display_date;var t="";return this.has.title||(this.data.end_date&&(t=" &mdash; "+this.data.end_date.getDisplayDate(this.getLanguage())),this.data.start_date&&(t=this.data.start_date.getDisplayDate(this.getLanguage())+t)),t},_initLayout:function(){if(this._el.container=TL.Dom.create("div","tl-slide"),this.has.title&&(this._el.container.className="tl-slide tl-slide-titleslide"),this.data.unique_id&&(this._el.container.id=this.data.unique_id),this._el.scroll_container=TL.Dom.create("div","tl-slide-scrollable-container",this._el.container),this._el.content_container=TL.Dom.create("div","tl-slide-content-container",this._el.scroll_container),this._el.content=TL.Dom.create("div","tl-slide-content",this._el.content_container),this._el.background=TL.Dom.create("div","tl-slide-background",this._el.container),this.data.background){if(this.data.background.url){var t=TL.MediaType(this.data.background,!0);t&&(this._background_media=new t.cls(this.data.background,{background:1}),this.has.background.image=!0,this._el.container.className+=" tl-full-image-background",this.has.background.color_value="#000",this._el.background.style.display="block")}this.data.background.color&&(this.has.background.color=!0,this._el.container.className+=" tl-full-color-background",this.has.background.color_value=this.data.background.color),this.data.background.text_background&&(this._el.container.className+=" tl-text-background")}this.data.media&&this.data.media.url&&""!=this.data.media.url&&(this.has.media=!0),this.data.text&&this.data.text.text&&(this.has.text=!0),this.data.text&&this.data.text.headline&&(this.has.headline=!0),this.has.media&&(this.data.media.mediatype=TL.MediaType(this.data.media),this.options.media_name=this.data.media.mediatype.name,this.options.media_type=this.data.media.mediatype.type,this.options.autolink=this.data.autolink,this._media=new this.data.media.mediatype.cls(this.data.media,this.options)),(this.has.text||this.has.headline)&&(this._text=new TL.Media.Text(this.data.text,{title:this.has.title,language:this.options.language,autolink:this.data.autolink}),this._text.addDateText(this.getFormattedDate())),this.has.text||this.has.headline||!this.has.media?this.has.headline&&this.has.media&&!this.has.text?(TL.DomUtil.addClass(this._el.container,"tl-slide-media-only"),this._text.addTo(this._el.content),this._media.addTo(this._el.content)):this.has.text&&this.has.media?(this._media.addTo(this._el.content),this._text.addTo(this._el.content)):(this.has.text||this.has.headline)&&(TL.DomUtil.addClass(this._el.container,"tl-slide-text-only"),this._text.addTo(this._el.content)):(TL.DomUtil.addClass(this._el.container,"tl-slide-media-only"),this._media.addTo(this._el.content)),this.onLoaded()},_initEvents:function(){},_updateDisplay:function(t,e,i){var n,a=this.options.slide_padding_lr,s=this.options.slide_padding_lr;t?this.options.width=t:this.options.width=this._el.container.offsetWidth,n=this.options.width-2*this.options.slide_padding_lr,TL.Browser.mobile&&this.options.width<=this.options.skinny_size?(a=0,s=0,n=this.options.width):"landscape"==i||this.options.width<=this.options.skinny_size&&(a=50,s=50,n=this.options.width-a-s),this._el.content.style.paddingLeft=a+"px",this._el.content.style.paddingRight=s+"px",this._el.content.style.width=n+"px",e?this.options.height=e:this.options.height=this._el.container.offsetHeight,this._media&&(!this.has.text&&this.has.headline?this._media.updateDisplay(n,this.options.height-this._text.headlineHeight(),i):this.has.text||this.has.headline?this.options.width<=this.options.skinny_size?this._media.updateDisplay(n,this.options.height,i):this._media.updateDisplay(n/2,this.options.height,i):this._media.updateDisplay(n,this.options.height,i)),this._updateBackgroundDisplay()},_updateBackgroundDisplay:function(){this._background_media&&this._background_media._state.loaded&&(this._el.background.style.backgroundImage="url('"+this._background_media.getImageURL(this.options.width,this.options.height)+"')")}}),TL.SlideNav=TL.Class.extend({includes:[TL.Events,TL.DomMixins],_el:{},initialize:function(t,e,i){this._el={container:{},content_container:{},icon:{},title:{},description:{}},this.mediatype={},this.data={title:"Navigation",description:"Description",date:"Date"},this.options={direction:"previous"},this.animator=null,TL.Util.mergeData(this.options,e),TL.Util.mergeData(this.data,t),this._el.container=TL.Dom.create("div","tl-slidenav-"+this.options.direction),TL.Browser.mobile&&this._el.container.setAttribute("ontouchstart"," "),this._initLayout(),this._initEvents(),i&&i.appendChild(this._el.container)},update:function(t){var e={title:"",description:"",date:t.getFormattedDate()};t.data.text&&t.data.text.headline&&(e.title=t.data.text.headline),this._update(e)},setColor:function(t){t?this._el.content_container.className="tl-slidenav-content-container tl-slidenav-inverted":this._el.content_container.className="tl-slidenav-content-container"},_onMouseClick:function(){this.fire("clicked",this.options)},_update:function(t){this.data=TL.Util.mergeData(this.data,t),this._el.title.innerHTML=TL.Util.unlinkify(this.data.title),this._el.description.innerHTML=TL.Util.unlinkify(this.data.date)},_initLayout:function(){this._el.content_container=TL.Dom.create("div","tl-slidenav-content-container",this._el.container),this._el.icon=TL.Dom.create("div","tl-slidenav-icon",this._el.content_container),this._el.title=TL.Dom.create("div","tl-slidenav-title",this._el.content_container),this._el.description=TL.Dom.create("div","tl-slidenav-description",this._el.content_container),this._el.icon.innerHTML="&nbsp;",this._update()},_initEvents:function(){TL.DomEvent.addListener(this._el.container,"click",this._onMouseClick,this)}}),TL.StorySlider=TL.Class.extend({includes:[TL.Events,TL.I18NMixins],initialize:function(t,e,i,n){this._el={container:{},background:{},slider_container_mask:{},slider_container:{},slider_item_container:{}},this._nav={},this._nav.previous={},this._nav.next={},this.slide_spacing=0,this._slides=[],this._swipable,this.preloadTimer,this._message,this.current_id="",this.data={},this.options={id:"",layout:"portrait",width:600,height:600,default_bg_color:{r:255,g:255,b:255},slide_padding_lr:40,start_at_slide:1,slide_default_fade:"0%",duration:1e3,ease:TL.Ease.easeInOutQuint,dragging:!0,trackResize:!0},"object"==typeof t?(this._el.container=t,this.options.id=TL.Util.unique_ID(6,"tl")):(this.options.id=t,this._el.container=TL.Dom.get(t)),this._el.container.id||(this._el.container.id=this.options.id),this.animator=null,TL.Util.mergeData(this.options,i),TL.Util.mergeData(this.data,e),n&&this.init()},init:function(){this._initLayout(),this._initEvents(),this._initData(),this._updateDisplay(),this.goTo(this.options.start_at_slide),this._onLoaded()},_addSlide:function(t){t.addTo(this._el.slider_item_container),t.on("added",this._onSlideAdded,this),t.on("background_change",this._onBackgroundChange,this)},_createSlide:function(t,e,i){var n=new TL.Slide(t,this.options,e);this._addSlide(n),i<0?this._slides.push(n):this._slides.splice(i,0,n)},_createSlides:function(t){for(var e=0;e<t.length;e++)""==t[e].unique_id&&(t[e].unique_id=TL.Util.unique_ID(6,"tl-slide")),this._createSlide(t[e],!1,-1)},_removeSlide:function(t){t.removeFrom(this._el.slider_item_container),t.off("added",this._onSlideRemoved,this),t.off("background_change",this._onBackgroundChange)},_destroySlide:function(t){this._removeSlide(this._slides[t]),this._slides.splice(t,1)},_findSlideIndex:function(t){var e=t;return("string"==typeof t||t instanceof String)&&(e=TL.Util.findArrayNumberByUniqueID(t,this._slides,"unique_id")),e},updateDisplay:function(t,e,i,n){this._updateDisplay(t,e,i,n)},createSlide:function(t,e){this._createSlide(t,!1,e)},createSlides:function(t){this._createSlides(t)},destroySlide:function(t){this._destroySlide(t)},destroySlideId:function(t){this.destroySlide(this._findSlideIndex(t))},goTo:function(t,e,i){t=parseInt(t),isNaN(t)&&(t=0);var n=this;this.changeBackground({color_value:"",image:!1}),this.preloadTimer&&clearTimeout(this.preloadTimer);for(var a=0;a<this._slides.length;a++)this._slides[a].setActive(!1);t<this._slides.length&&t>=0&&(this.current_id=this._slides[t].data.unique_id,this.animator&&this.animator.stop(),this._swipable&&this._swipable.stopMomentum(),e?(this._el.slider_container.style.left=-(this.slide_spacing*t)+"px",this._onSlideChange(i)):this.animator=TL.Animate(this._el.slider_container,{left:-(this.slide_spacing*t)+"px",duration:this.options.duration,easing:this.options.ease,complete:this._onSlideChange(i)}),this._slides[t].setActive(!0),this._slides[t+1]?(this.showNav(this._nav.next,!0),this._nav.next.update(this._slides[t+1])):this.showNav(this._nav.next,!1),this._slides[t-1]?(this.showNav(this._nav.previous,!0),this._nav.previous.update(this._slides[t-1])):this.showNav(this._nav.previous,!1),this.preloadTimer=setTimeout(function(){n.preloadSlides(t)},this.options.duration))},goToId:function(t,e,i){this.goTo(this._findSlideIndex(t),e,i)},preloadSlides:function(t){this._slides[t+1]&&(this._slides[t+1].loadMedia(),this._slides[t+1].scrollToTop()),this._slides[t+2]&&(this._slides[t+2].loadMedia(),this._slides[t+2].scrollToTop()),this._slides[t-1]&&(this._slides[t-1].loadMedia(),this._slides[t-1].scrollToTop()),this._slides[t-2]&&(this._slides[t-2].loadMedia(),this._slides[t-2].scrollToTop())},next:function(){var t=this._findSlideIndex(this.current_id);t+1<this._slides.length?this.goTo(t+1):this.goTo(t)},previous:function(){var t=this._findSlideIndex(this.current_id);t-1>=0?this.goTo(t-1):this.goTo(t)},showNav:function(t,e){this.options.width<=500&&TL.Browser.mobile||(e?t.show():t.hide())},changeBackground:function(t){var e,i={r:256,g:256,b:256};t.color_value&&""!=t.color_value?(i=TL.Util.hexToRgb(t.color_value),i||(trace("Invalid color value "+t.color_value),i=this.options.default_bg_color)):(i=this.options.default_bg_color,t.color_value="rgb("+i.r+" , "+i.g+", "+i.b+")"),e=i.r+","+i.g+","+i.b,this._el.background.style.backgroundImage="none",t.color_value?this._el.background.style.backgroundColor=t.color_value:this._el.background.style.backgroundColor="transparent",i.r<255||i.g<255||i.b<255||t.image?(this._nav.next.setColor(!0),this._nav.previous.setColor(!0)):(this._nav.next.setColor(!1),this._nav.previous.setColor(!1))},_updateDisplay:function(t,e,i,n){var a,s;s="undefined"==typeof n?this.options.layout:n,this.options.layout=s,this.slide_spacing=2*this.options.width,t?this.options.width=t:this.options.width=this._el.container.offsetWidth,e?this.options.height=e:this.options.height=this._el.container.offsetHeight,a=this.options.height/2,this._nav.next.setPosition({top:a}),this._nav.previous.setPosition({top:a});for(var o=0;o<this._slides.length;o++)this._slides[o].updateDisplay(this.options.width,this.options.height,s),this._slides[o].setPosition({left:this.slide_spacing*o,top:0});this.goToId(this.current_id,!0,!0)},_updateDrawSlides:function(){for(var t=this.options.layout,e=0;e<this._slides.length;e++)this._slides[e].updateDisplay(this.options.width,this.options.height,t),this._slides[e].setPosition({left:this.slide_spacing*e,top:0});this.goToId(this.current_id,!0,!1)},_initLayout:function(){TL.DomUtil.addClass(this._el.container,"tl-storyslider"),this._el.slider_container_mask=TL.Dom.create("div","tl-slider-container-mask",this._el.container),this._el.background=TL.Dom.create("div","tl-slider-background tl-animate",this._el.container),this._el.slider_container=TL.Dom.create("div","tl-slider-container tlanimate",this._el.slider_container_mask),this._el.slider_item_container=TL.Dom.create("div","tl-slider-item-container",this._el.slider_container),this.options.width=this._el.container.offsetWidth,this.options.height=this._el.container.offsetHeight,this._nav.previous=new TL.SlideNav({title:"Previous",description:"description"},{direction:"previous"}),this._nav.next=new TL.SlideNav({title:"Next",description:"description"},{direction:"next"}),this._nav.next.addTo(this._el.container),this._nav.previous.addTo(this._el.container),this._el.slider_container.style.left="0px",TL.Browser.touch&&(this._swipable=new TL.Swipable(this._el.slider_container_mask,this._el.slider_container,{enable:{x:!0,y:!1},snap:!0}),this._swipable.enable(),this._message=new TL.Message({},{message_class:"tl-message-full",message_icon_class:"tl-icon-swipe-left"}),this._message.updateMessage(this._("swipe_to_navigate")),this._message.addTo(this._el.container))},_initEvents:function(){this._nav.next.on("clicked",this._onNavigation,this),this._nav.previous.on("clicked",this._onNavigation,this),this._message&&this._message.on("clicked",this._onMessageClick,this),this._swipable&&(this._swipable.on("swipe_left",this._onNavigation,this),this._swipable.on("swipe_right",this._onNavigation,this),this._swipable.on("swipe_nodirection",this._onSwipeNoDirection,this))},_initData:function(){this.data.title&&this._createSlide(this.data.title,!0,-1),this._createSlides(this.data.events)},_onBackgroundChange:function(t){var e=this._findSlideIndex(this.current_id),i=this._slides[e].getBackground();this.changeBackground(t),this.fire("colorchange",i)},_onMessageClick:function(t){this._message.hide()},_onSwipeNoDirection:function(t){this.goToId(this.current_id)},_onNavigation:function(t){"next"==t.direction||"left"==t.direction?this.next():"previous"!=t.direction&&"right"!=t.direction||this.previous(),this.fire("nav_"+t.direction,this.data)},_onSlideAdded:function(t){trace("slideadded"),this.fire("slideAdded",this.data)},_onSlideRemoved:function(t){this.fire("slideRemoved",this.data)},_onSlideChange:function(t){t||this.fire("change",{unique_id:this.current_id})},_onMouseClick:function(t){},_fireMouseEvent:function(t){if(this._loaded){var e=t.type;e="mouseenter"===e?"mouseover":"mouseleave"===e?"mouseout":e,this.hasEventListeners(e)&&("contextmenu"===e&&TL.DomEvent.preventDefault(t),this.fire(e,{latlng:"something",layerPoint:"something else"}))}},_onLoaded:function(){this.fire("loaded",this.data)}}),TL.TimeNav=TL.Class.extend({includes:[TL.Events,TL.DomMixins],_el:{},initialize:function(t,e,i,n){this._el={parent:{},container:{},slider:{},slider_background:{},line:{},marker_container_mask:{},marker_container:{},marker_item_container:{},timeaxis:{},timeaxis_background:{},attribution:{}},this.collapsed=!1,"object"==typeof t?this._el.container=t:this._el.container=TL.Dom.get(t),this.config=e,this.options={width:600,height:600,duration:1e3,ease:TL.Ease.easeInOutQuint,has_groups:!1,optimal_tick_width:50,scale_factor:2,marker_padding:5,timenav_height_min:150,marker_height_min:30,marker_width_min:100,zoom_sequence:[.5,1,2,3,5,8,13,21,34,55,89]},this.animator=null,this.ready=!1,this._markers=[],this._eras=[],this.has_eras=!1,this._groups=[],this._calculated_row_height=100,this.current_id="",this.timescale={},this.timeaxis={},this.axishelper={},this.max_rows=6,this.animate_css=!1,this._swipable,TL.Util.mergeData(this.options,i),n&&this.init()},init:function(){this._initLayout(),this._initEvents(),this._initData(),this._updateDisplay(),this._onLoaded()},positionMarkers:function(){this._positionMarkers()},updateDisplay:function(t,e,i,n){this._updateDisplay(t,e,i,n)},_getTimeScale:function(){var t=0;try{t=parseInt(this.options.marker_height_min)}catch(e){trace("Invalid value for marker_height_min option."),t=30}return 0==t&&(trace("marker_height_min option must not be zero."),t=30),this.max_rows=Math.round((this.options.height-this._el.timeaxis_background.offsetHeight-this.options.marker_padding)/t),this.max_rows<1&&(this.max_rows=1),new TL.TimeScale(this.config,{display_width:this._el.container.offsetWidth,screen_multiplier:this.options.scale_factor,max_rows:this.max_rows})},_updateTimeScale:function(t){this.options.scale_factor=t,this._updateDrawTimeline()},zoomIn:function(){var t=TL.Util.findNextGreater(this.options.zoom_sequence,this.options.scale_factor);this.setZoomFactor(t)},zoomOut:function(){var t=TL.Util.findNextLesser(this.options.zoom_sequence,this.options.scale_factor);this.setZoomFactor(t)},setZoom:function(t){var e=this.options.zoom_sequence[t];"number"==typeof e?this.setZoomFactor(e):console.warn("Invalid zoom level. Please use an index number between 0 and "+(this.options.zoom_sequence.length-1))},setZoomFactor:function(t){t<=this.options.zoom_sequence[0]?this.fire("zoomtoggle",{zoom:"out",show:!1}):this.fire("zoomtoggle",{zoom:"out",show:!0}),t>=this.options.zoom_sequence[this.options.zoom_sequence.length-1]?this.fire("zoomtoggle",{zoom:"in",show:!1}):this.fire("zoomtoggle",{zoom:"in",show:!0}),0==t&&(console.warn("Zoom factor must be greater than zero. Using 0.1"),t=.1),this.options.scale_factor=t,this.goToId(this.current_id,!this._updateDrawTimeline(!0),!0)},_createGroups:function(){var t=this.timescale.getGroupLabels();if(t){this.options.has_groups=!0;for(var e=0;e<t.length;e++)this._createGroup(t[e])}},_createGroup:function(t){var e=new TL.TimeGroup(t);this._addGroup(e),this._groups.push(e)},_addGroup:function(t){t.addTo(this._el.container)},_positionGroups:function(){if(this.options.has_groups)for(var t=this.options.height-this._el.timeaxis_background.offsetHeight,e=Math.floor(t/this.timescale.getNumberOfRows()-this.options.marker_padding),i=(this.timescale.getGroupLabels(),0),n=0;i<this._groups.length;i++){var a=Math.floor(n*(e+this.options.marker_padding)),s=!1;a>t-this.options.marker_padding&&(s=!0),this._groups[i].setRowPosition(a,this._calculated_row_height+this.options.marker_padding/2),this._groups[i].setAlternateRowColor(TL.Util.isEven(i),s),n+=this._groups[i].data.rows}},_addMarker:function(t){t.addTo(this._el.marker_item_container),t.on("markerclick",this._onMarkerClick,this),t.on("added",this._onMarkerAdded,this)},_createMarker:function(t,e){var i=new TL.TimeMarker(t,this.options);this._addMarker(i),e<0?this._markers.push(i):this._markers.splice(e,0,i)},_createMarkers:function(t){for(var e=0;e<t.length;e++)this._createMarker(t[e],-1)},_removeMarker:function(t){t.removeFrom(this._el.marker_item_container)},_destroyMarker:function(t){this._removeMarker(this._markers[t]),this._markers.splice(t,1)},_positionMarkers:function(t){for(var e=0;e<this._markers.length;e++){var i=this.timescale.getPositionInfo(e);t?this._markers[e].setClass("tl-timemarker tl-timemarker-fast"):this._markers[e].setClass("tl-timemarker"),this._markers[e].setPosition({left:i.start}),this._markers[e].setWidth(i.width)}},_calculateMarkerHeight:function(t){return t/this.timescale.getNumberOfRows()-this.options.marker_padding},_calculateRowHeight:function(t){return t/this.timescale.getNumberOfRows()},_calculateAvailableHeight:function(){return this.options.height-this._el.timeaxis_background.offsetHeight-this.options.marker_padding},_calculateMinimumTimeNavHeight:function(){return this.timescale.getNumberOfRows()*this.options.marker_height_min+this._el.timeaxis_background.offsetHeight+this.options.marker_padding},getMinimumHeight:function(){return this._calculateMinimumTimeNavHeight()},_assignRowsToMarkers:function(){var t=this._calculateAvailableHeight(),e=this._calculateMarkerHeight(t);this._positionGroups(),this._calculated_row_height=this._calculateRowHeight(t);for(var i=0;i<this._markers.length;i++){this._markers[i].setHeight(e);var n=this.timescale.getPositionInfo(i).row,a=Math.floor(n*(e+this.options.marker_padding))+this.options.marker_padding,s=t-a+this.options.marker_padding;this._markers[i].setRowPosition(a,s)}},_resetMarkersActive:function(){for(var t=0;t<this._markers.length;t++)this._markers[t].setActive(!1)},_findMarkerIndex:function(t){var e=-1;return("string"==typeof t||t instanceof String)&&(e=TL.Util.findArrayNumberByUniqueID(t,this._markers,"unique_id",e)),e},_createEras:function(t){for(var e=0;e<t.length;e++)this._createEra(t[e],-1)},_createEra:function(t,e){var i=new TL.TimeEra(t,this.options);this._addEra(i),e<0?this._eras.push(i):this._eras.splice(e,0,i)},_addEra:function(t){t.addTo(this._el.marker_item_container),t.on("added",this._onEraAdded,this)},_removeEra:function(t){t.removeFrom(this._el.marker_item_container)},_destroyEra:function(t){this._removeEra(this._eras[t]),this._eras.splice(t,1)},_positionEras:function(t){for(var e=0,i=0;i<this._eras.length;i++){var n={start:0,end:0,width:0};n.start=this.timescale.getPosition(this._eras[i].data.start_date.getTime()),n.end=this.timescale.getPosition(this._eras[i].data.end_date.getTime()),n.width=n.end-n.start,t?this._eras[i].setClass("tl-timeera tl-timeera-fast"):this._eras[i].setClass("tl-timeera"),this._eras[i].setPosition({left:n.start}),this._eras[i].setWidth(n.width),e++,e>5&&(e=0),this._eras[i].setColor(e)}},createMarker:function(t,e){this._createMarker(t,e)},createMarkers:function(t){this._createMarkers(t)},destroyMarker:function(t){this._destroyMarker(t)},destroyMarkerId:function(t){this.destroyMarker(this._findMarkerIndex(t))},goTo:function(t,e,i){var n=this.options.ease,a=this.options.duration,s=t<0?0:t;this._resetMarkersActive(),t>=0&&t<this._markers.length&&this._markers[t].setActive(!0),this.animator&&this.animator.stop(),e?(this._el.slider.className="tl-timenav-slider",this._el.slider.style.left=-this._markers[s].getLeft()+this.options.width/2+"px"):i?(this._el.slider.className="tl-timenav-slider tl-timenav-slider-animate",this.animate_css=!0,this._el.slider.style.left=-this._markers[s].getLeft()+this.options.width/2+"px"):(this._el.slider.className="tl-timenav-slider",this.animator=TL.Animate(this._el.slider,{left:-this._markers[s].getLeft()+this.options.width/2+"px",duration:a,easing:n})),t>=0&&t<this._markers.length?this.current_id=this._markers[t].data.unique_id:this.current_id=""},goToId:function(t,e,i){this.goTo(this._findMarkerIndex(t),e,i)},_onLoaded:function(){this.ready=!0,this.fire("loaded",this.config)},_onMarkerAdded:function(t){this.fire("dateAdded",this.config)},_onEraAdded:function(t){this.fire("eraAdded",this.config)},_onMarkerRemoved:function(t){this.fire("dateRemoved",this.config)},_onMarkerClick:function(t){this.goToId(t.unique_id),this.fire("change",{unique_id:t.unique_id})},_onMouseScroll:function(t){var e=0,i=0,n={right:-(this.timescale.getPixelWidth()-this.options.width/2),left:this.options.width/2};t||(t=window.event),t.originalEvent&&(t=t.originalEvent),"undefined"!=typeof t.wheelDeltaX&&(e=t.wheelDeltaY/6,e=Math.abs(t.wheelDeltaX)>Math.abs(t.wheelDeltaY)?t.wheelDeltaX/6:0),e&&(t.preventDefault&&t.preventDefault(),t.returnValue=!1),i=parseInt(this._el.slider.style.left.replace("px",""))+e,i>n.left?i=n.left:i<n.right&&(i=n.right),this.animate_css&&(this._el.slider.className="tl-timenav-slider",this.animate_css=!1),this._el.slider.style.left=i+"px"},_onDragMove:function(t){this.animate_css&&(this._el.slider.className="tl-timenav-slider",this.animate_css=!1)},_updateDisplay:function(t,e,i){t&&(this.options.width=t),e&&e!=this.options.height&&(this.options.height=e,this.timescale=this._getTimeScale()),this._assignRowsToMarkers(),this._el.slider_background.style.width=this.timescale.getPixelWidth()+this.options.width+"px",this._el.slider_background.style.left=-(this.options.width/2)+"px",this._el.slider.style.width=this.timescale.getPixelWidth()+this.options.width+"px",this._swipable.updateConstraint({top:!1,bottom:!1,left:this.options.width/2,right:-(this.timescale.getPixelWidth()-this.options.width/2)}),this.goToId(this.current_id,!0)},_drawTimeline:function(t){this.timescale=this._getTimeScale(),this.timeaxis.drawTicks(this.timescale,this.options.optimal_tick_width),this._positionMarkers(t),this._assignRowsToMarkers(),this._createGroups(),this._positionGroups(),this.has_eras&&this._positionEras(t)},_updateDrawTimeline:function(t){var e=!1;if(t){var i=new TL.TimeScale(this.config,{display_width:this._el.container.offsetWidth,screen_multiplier:this.options.scale_factor,max_rows:this.max_rows});this.timescale.getMajorScale()==i.getMajorScale()&&this.timescale.getMinorScale()==i.getMinorScale()&&(e=!0)}else e=!0;return e?(this.timescale=this._getTimeScale(),this.timeaxis.positionTicks(this.timescale,this.options.optimal_tick_width),this._positionMarkers(),this._assignRowsToMarkers(),this._positionGroups(),this.has_eras&&this._positionEras(),this._updateDisplay()):this._drawTimeline(!0),e},_initLayout:function(){this._el.attribution=TL.Dom.create("div","tl-attribution",this._el.container),this._el.line=TL.Dom.create("div","tl-timenav-line",this._el.container),this._el.slider=TL.Dom.create("div","tl-timenav-slider",this._el.container),this._el.slider_background=TL.Dom.create("div","tl-timenav-slider-background",this._el.slider),this._el.marker_container_mask=TL.Dom.create("div","tl-timenav-container-mask",this._el.slider),this._el.marker_container=TL.Dom.create("div","tl-timenav-container",this._el.marker_container_mask),this._el.marker_item_container=TL.Dom.create("div","tl-timenav-item-container",this._el.marker_container),this._el.timeaxis=TL.Dom.create("div","tl-timeaxis",this._el.slider),this._el.timeaxis_background=TL.Dom.create("div","tl-timeaxis-background",this._el.container),this._el.attribution.innerHTML="<a href='http://timeline.knightlab.com' target='_blank'><span class='tl-knightlab-logo'></span>Timeline JS</a>",this.timeaxis=new TL.TimeAxis(this._el.timeaxis,this.options),this._swipable=new TL.Swipable(this._el.slider_background,this._el.slider,{enable:{x:!0,y:!1},constraint:{top:!1,bottom:!1,left:this.options.width/2,right:!1},snap:!1}),this._swipable.enable()},_initEvents:function(){this._swipable.on("dragmove",this._onDragMove,this),TL.DomEvent.addListener(this._el.container,"mousewheel",this._onMouseScroll,this),TL.DomEvent.addListener(this._el.container,"DOMMouseScroll",this._onMouseScroll,this)},_initData:function(){this._createMarkers(this.config.events),this.config.eras&&(this.has_eras=!0,this._createEras(this.config.eras)),this._drawTimeline()}}),TL.TimeMarker=TL.Class.extend({includes:[TL.Events,TL.DomMixins],_el:{},initialize:function(t,e){this._el={container:{},content_container:{},media_container:{},timespan:{},line_left:{},line_right:{},content:{},text:{},media:{}},this._text={},this._state={loaded:!1},this.data={unique_id:"",background:null,date:{year:0,month:0,day:0,hour:0,minute:0,second:0,millisecond:0,thumbnail:"",format:""},text:{headline:"",text:""},media:null},this.options={duration:1e3,ease:TL.Ease.easeInSpline,width:600,height:600,marker_width_min:100},this.active=!1,this.animator={},this.has_end_date=!1,TL.Util.mergeData(this.options,e),TL.Util.mergeData(this.data,t),this._initLayout(),this._initEvents()},show:function(){},hide:function(){},setActive:function(t){this.active=t,this.active&&this.has_end_date?this._el.container.className="tl-timemarker tl-timemarker-with-end tl-timemarker-active":this.active?this._el.container.className="tl-timemarker tl-timemarker-active":this.has_end_date?this._el.container.className="tl-timemarker tl-timemarker-with-end":this._el.container.className="tl-timemarker"},addTo:function(t){t.appendChild(this._el.container)},removeFrom:function(t){t.removeChild(this._el.container)},updateDisplay:function(t,e){this._updateDisplay(t,e)},loadMedia:function(){this._media&&!this._state.loaded&&(this._media.loadMedia(),this._state.loaded=!0)},stopMedia:function(){this._media&&this._state.loaded&&this._media.stopMedia()},getLeft:function(){return this._el.container.style.left.slice(0,-2)},getTime:function(){return this.data.start_date.getTime()},getEndTime:function(){return!!this.data.end_date&&this.data.end_date.getTime()},setHeight:function(t){var e=12,i=1;this._el.content_container.style.height=t+"px",this._el.timespan_content.style.height=t+"px",t<=30?this._el.content.className="tl-timemarker-content tl-timemarker-content-small":this._el.content.className="tl-timemarker-content",t<=56?TL.DomUtil.addClass(this._el.content_container,"tl-timemarker-content-container-small"):TL.DomUtil.removeClass(this._el.content_container,"tl-timemarker-content-container-small"),TL.Browser.webkit?(i=Math.floor(t/(e+2)),i<1&&(i=1),this._text.className="tl-headline",this._text.style.webkitLineClamp=i):(i=t/e,i>1?this._text.className="tl-headline tl-headline-fadeout":this._text.className="tl-headline",this._text.style.height=i*e+"px")},setWidth:function(t){this.data.end_date&&(this._el.container.style.width=t+"px",t>this.options.marker_width_min?(this._el.content_container.style.width=t+"px",this._el.content_container.className="tl-timemarker-content-container tl-timemarker-content-container-long"):(this._el.content_container.style.width=this.options.marker_width_min+"px",this._el.content_container.className="tl-timemarker-content-container"))},setClass:function(t){this._el.container.className=t},setRowPosition:function(t,e){this.setPosition({top:t}),this._el.timespan.style.height=e+"px"},_onMarkerClick:function(t){this.fire("markerclick",{unique_id:this.data.unique_id})},_initLayout:function(){if(this._el.container=TL.Dom.create("div","tl-timemarker"),this.data.unique_id&&(this._el.container.id=this.data.unique_id+"-marker"),this.data.end_date&&(this.has_end_date=!0,this._el.container.className="tl-timemarker tl-timemarker-with-end"),this._el.timespan=TL.Dom.create("div","tl-timemarker-timespan",this._el.container),this._el.timespan_content=TL.Dom.create("div","tl-timemarker-timespan-content",this._el.timespan),this._el.content_container=TL.Dom.create("div","tl-timemarker-content-container",this._el.container),this._el.content=TL.Dom.create("div","tl-timemarker-content",this._el.content_container),this._el.line_left=TL.Dom.create("div","tl-timemarker-line-left",this._el.timespan),this._el.line_right=TL.Dom.create("div","tl-timemarker-line-right",this._el.timespan),this.data.media){this._el.media_container=TL.Dom.create("div","tl-timemarker-media-container",this._el.content);
+var t={url:this.data.media.thumbnail},e=this.data.media.thumbnail?TL.MediaType(t,!0):null;if(e){var i=new e.cls(t);i.on("loaded",function(){this._el.media=TL.Dom.create("img","tl-timemarker-media",this._el.media_container),this._el.media.src=i.getImageURL()}.bind(this)),i.loadMedia()}else{var n=TL.MediaType(this.data.media).type;this._el.media=TL.Dom.create("span","tl-icon-"+n,this._el.media_container)}}this._el.text=TL.Dom.create("div","tl-timemarker-text",this._el.content),this._text=TL.Dom.create("h2","tl-headline",this._el.text),this.data.text.headline&&""!=this.data.text.headline?this._text.innerHTML=TL.Util.unlinkify(this.data.text.headline):this.data.text.text&&""!=this.data.text.text?this._text.innerHTML=TL.Util.unlinkify(this.data.text.text):this.data.media.caption&&""!=this.data.media.caption&&(this._text.innerHTML=TL.Util.unlinkify(this.data.media.caption)),this.onLoaded()},_initEvents:function(){TL.DomEvent.addListener(this._el.container,"click",this._onMarkerClick,this)},_updateDisplay:function(t,e,i){t&&(this.options.width=t),e&&(this.options.height=e)}}),TL.TimeEra=TL.Class.extend({includes:[TL.Events,TL.DomMixins],_el:{},initialize:function(t,e){this._el={container:{},background:{},content_container:{},content:{},text:{}},this._text={},this._state={loaded:!1},this.data={unique_id:"",date:{year:0,month:0,day:0,hour:0,minute:0,second:0,millisecond:0,thumbnail:"",format:""},text:{headline:"",text:""}},this.options={duration:1e3,ease:TL.Ease.easeInSpline,width:600,height:600,marker_width_min:100},this.active=!1,this.animator={},this.has_end_date=!1,TL.Util.mergeData(this.options,e),TL.Util.mergeData(this.data,t),this._initLayout(),this._initEvents()},show:function(){},hide:function(){},setActive:function(t){},addTo:function(t){t.appendChild(this._el.container)},removeFrom:function(t){t.removeChild(this._el.container)},updateDisplay:function(t,e){this._updateDisplay(t,e)},getLeft:function(){return this._el.container.style.left.slice(0,-2)},getTime:function(){return this.data.start_date.getTime()},getEndTime:function(){return!!this.data.end_date&&this.data.end_date.getTime()},setHeight:function(t){var e=12,i=1;this._el.content_container.style.height=t+"px",this._el.content.className="tl-timeera-content",TL.Browser.webkit?(i=Math.floor(t/(e+2)),i<1&&(i=1),this._text.className="tl-headline",this._text.style.webkitLineClamp=i):(i=t/e,i>1?this._text.className="tl-headline tl-headline-fadeout":this._text.className="tl-headline",this._text.style.height=i*e+"px")},setWidth:function(t){this.data.end_date&&(this._el.container.style.width=t+"px",t>this.options.marker_width_min?(this._el.content_container.style.width=t+"px",this._el.content_container.className="tl-timeera-content-container tl-timeera-content-container-long"):(this._el.content_container.style.width=this.options.marker_width_min+"px",this._el.content_container.className="tl-timeera-content-container"))},setClass:function(t){this._el.container.className=t},setRowPosition:function(t,e){this.setPosition({top:t})},setColor:function(t){this._el.container.className="tl-timeera tl-timeera-color"+t},_initLayout:function(){this._el.container=TL.Dom.create("div","tl-timeera"),this.data.unique_id&&(this._el.container.id=this.data.unique_id+"-era"),this.data.end_date&&(this.has_end_date=!0,this._el.container.className="tl-timeera tl-timeera-with-end"),this._el.content_container=TL.Dom.create("div","tl-timeera-content-container",this._el.container),this._el.background=TL.Dom.create("div","tl-timeera-background",this._el.content_container),this._el.content=TL.Dom.create("div","tl-timeera-content",this._el.content_container),this._el.text=TL.Dom.create("div","tl-timeera-text",this._el.content),this._text=TL.Dom.create("h2","tl-headline",this._el.text),this.data.text.headline&&""!=this.data.text.headline&&(this._text.innerHTML=TL.Util.unlinkify(this.data.text.headline)),this.onLoaded()},_initEvents:function(){},_updateDisplay:function(t,e,i){t&&(this.options.width=t),e&&(this.options.height=e)}}),TL.TimeGroup=TL.Class.extend({includes:[TL.Events,TL.DomMixins],_el:{},initialize:function(t){this._el={parent:{},container:{},message:{}},this.options={width:600,height:600},this.data={label:"",rows:1},this._el.container=TL.Dom.create("div","tl-timegroup"),TL.Util.mergeData(this.data,t),this.animator={},this._initLayout(),this._initEvents()},updateDisplay:function(t,e){},setRowPosition:function(t,e){this.options.height=e*this.data.rows,this.setPosition({top:t}),this._el.container.style.height=this.options.height+"px"},setAlternateRowColor:function(t,e){var i="tl-timegroup";t&&(i+=" tl-timegroup-alternate"),e&&(i+=" tl-timegroup-hidden"),this._el.container.className=i},_onMouseClick:function(){this.fire("clicked",this.options)},_initLayout:function(){this._el.message=TL.Dom.create("div","tl-timegroup-message",this._el.container),this._el.message.innerHTML=this.data.label},_initEvents:function(){TL.DomEvent.addListener(this._el.container,"click",this._onMouseClick,this)},_updateDisplay:function(t,e,i){}}),TL.TimeScale=TL.Class.extend({initialize:function(t,e){var i=t.events;this._scale=t.scale,e=TL.Util.mergeData({display_width:500,screen_multiplier:3,max_rows:null},e),this._display_width=e.display_width,this._screen_multiplier=e.screen_multiplier,this._pixel_width=this._screen_multiplier*this._display_width,this._group_labels=void 0,this._positions=[],this._pixels_per_milli=0,this._earliest=t.getEarliestDate().getTime(),this._latest=t.getLatestDate().getTime(),this._span_in_millis=this._latest-this._earliest,this._span_in_millis<=0&&(this._span_in_millis=this._computeDefaultSpan(t)),this._average=this._span_in_millis/i.length,this._pixels_per_milli=this.getPixelWidth()/this._span_in_millis,this._axis_helper=TL.AxisHelper.getBestHelper(this),this._scaled_padding=1/this.getPixelsPerTick()*(this._display_width/2),this._computePositionInfo(i,e.max_rows)},_computeDefaultSpan:function(t){if("human"==t.scale){for(var e={},i=0;i<t.events.length;i++){var n=t.events[i].start_date.findBestFormat();e[n]=e[n]?e[n]+1:1}for(var i=TL.Date.SCALES.length-1;i>=0;i--)if(e.hasOwnProperty(TL.Date.SCALES[i][0])){var a=TL.Date.SCALES[TL.Date.SCALES.length-1];return TL.Date.SCALES[i+1]&&(a=TL.Date.SCALES[i+1]),a[1]}return 31536e6}return 2e5},getGroupLabels:function(){return this._group_labels||[]},getScale:function(){return this._scale},getNumberOfRows:function(){return this._number_of_rows},getPixelWidth:function(){return this._pixel_width},getPosition:function(t){return(t-this._earliest)*this._pixels_per_milli},getPositionInfo:function(t){return this._positions[t]},getPixelsPerTick:function(){return this._axis_helper.getPixelsPerTick(this._pixels_per_milli)},getTicks:function(){return{major:this._axis_helper.getMajorTicks(this),minor:this._axis_helper.getMinorTicks(this)}},getDateFromTime:function(t){if("human"==this._scale)return new TL.Date(t);if("cosmological"==this._scale)return new TL.BigDate(new TL.BigYear(t));throw new TL.Error("time_scale_scale_err",this._scale)},getMajorScale:function(){return this._axis_helper.major.name},getMinorScale:function(){return this._axis_helper.minor.name},_assessGroups:function(t){for(var e=[],i=!1,n=0;n<t.length;n++)t[n].group&&(e.indexOf(t[n].group)<0?e.push(t[n].group):i=!0);return e.length&&i&&e.push(""),e},_computeRowInfo:function(t,e){for(var i=[],n=0,a=0;a<t.length;a++){var s=t[a],o=[];delete s.row;for(var r=0;r<i.length;r++)if(o.push(i[r].end-s.start),o[r]<=0){s.row=r,i[r]=s;break}if("undefined"==typeof s.row)if(null===e)s.row=i.length,i.push(s);else if(e>0)s.row=i.length,i.push(s),e--;else{var l=Math.min.apply(null,o),h=o.indexOf(l);s.row=h,s.end>i[h].end&&(i[h]=s),n++}}return{n_rows:i.length,n_overlaps:n}},_computePositionInfo:function(t,e,i){i=i||100;for(var n=[],a=!1,s=0;s<t.length;s++){var o={start:this.getPosition(t[s].start_date.getTime())};if(this._positions.push(o),"undefined"!=typeof t[s].end_date){var r=this.getPosition(t[s].end_date.getTime());o.width=r-o.start,o.width>i?o.end=o.start+o.width:o.end=o.start+i}else o.width=i,o.end=o.start+i;t[s].group?n.indexOf(t[s].group)<0&&n.push(t[s].group):a=!0}if(n.length){a&&n.push("");for(var l=[],s=0;s<n.length;s++)l[s]={label:n[s],idx:s,positions:[],n_rows:1,n_overlaps:0};for(var s=0;s<this._positions.length;s++){var o=this._positions[s];o.group=n.indexOf(t[s].group||""),o.row=0;for(var h=l[o.group],d=h.positions.length-1;d>=0;d--)h.positions[d].end>o.start&&h.n_overlaps++;h.positions.push(o)}for(var c=n.length;;){var u=Math.max(0,e-c);if(!u)break;if(l.sort(function(t,e){return t.n_overlaps>e.n_overlaps?-1:t.n_overlaps<e.n_overlaps?1:t.idx-e.idx}),!l[0].n_overlaps)break;for(var c=0,s=0;s<l.length;s++){var h=l[s];if(h.n_overlaps&&u){var m=this._computeRowInfo(h.positions,h.n_rows+1);h.n_rows=m.n_rows,h.n_overlaps=m.n_overlaps,u--}c+=h.n_rows}}this._number_of_rows=c,this._group_labels=[],l.sort(function(t,e){return t.idx-e.idx});for(var s=0,_=0;s<l.length;s++){this._group_labels.push({label:l[s].label,rows:l[s].n_rows});for(var d=0;d<l[s].positions.length;d++){var o=l[s].positions[d];o.row+=_}_+=l[s].n_rows}}else{var f=this._computeRowInfo(this._positions,e);this._number_of_rows=f.n_rows}}}),TL.TimeAxis=TL.Class.extend({includes:[TL.Events,TL.DomMixins,TL.I18NMixins],_el:{},initialize:function(t,e){this._el={container:{},content_container:{},major:{},minor:{}},this._text={},this._state={loaded:!1},this.data={},this.options={duration:1e3,ease:TL.Ease.easeInSpline,width:600,height:600},this.active=!1,this.animator={},this.axis_helper={},this.minor_ticks=[],this.major_ticks=[],this.dateformat_lookup={millisecond:"time_milliseconds",second:"time_short",minute:"time_no_seconds_short",hour:"time_no_minutes_short",day:"full_short",month:"month_short",year:"year",decade:"year",century:"year",millennium:"year",age:"compact",epoch:"compact",era:"compact",eon:"compact",eon2:"compact"},"object"==typeof t?this._el.container=t:this._el.container=TL.Dom.get(t),TL.Util.mergeData(this.options,e),this._initLayout(),this._initEvents()},show:function(){},hide:function(){},addTo:function(t){t.appendChild(this._el.container)},removeFrom:function(t){t.removeChild(this._el.container)},updateDisplay:function(t,e){this._updateDisplay(t,e)},getLeft:function(){return this._el.container.style.left.slice(0,-2)},drawTicks:function(t,e){var i=t.getTicks();({minor:{el:this._el.minor,dateformat:this.dateformat_lookup[i.minor.name],ts_ticks:i.minor.ticks,tick_elements:this.minor_ticks},major:{el:this._el.major,dateformat:this.dateformat_lookup[i.major.name],ts_ticks:i.major.ticks,tick_elements:this.major_ticks}});this._el.major.className="tl-timeaxis-major",this._el.minor.className="tl-timeaxis-minor",this._el.major.style.opacity=0,this._el.minor.style.opacity=0,this.major_ticks=this._createTickElements(i.major.ticks,this._el.major,this.dateformat_lookup[i.major.name]),this.minor_ticks=this._createTickElements(i.minor.ticks,this._el.minor,this.dateformat_lookup[i.minor.name],i.major.ticks),this.positionTicks(t,e,!0),this._el.major.className="tl-timeaxis-major tl-animate-opacity tl-timeaxis-animate-opacity",this._el.minor.className="tl-timeaxis-minor tl-animate-opacity tl-timeaxis-animate-opacity",this._el.major.style.opacity=1,this._el.minor.style.opacity=1},_createTickElements:function(t,e,i,n){e.innerHTML="";var a={},s=new Date(-1,13,-30);if(a[s.getTime()]=!0,n)for(var o=0;o<n.length;o++)a[n[o].getTime()]=!0;for(var r=[],o=0;o<t.length;o++){var l=t[o];if(!(l.getTime()in a)){var h=TL.Dom.create("div","tl-timeaxis-tick",e),d=TL.Dom.create("span","tl-timeaxis-tick-text tl-animate-opacity",h);d.innerHTML=l.getDisplayDate(this.getLanguage(),i),r.push({tick:h,tick_text:d,display_date:l.getDisplayDate(this.getLanguage(),i),date:l})}}return r},positionTicks:function(t,e,i){i?(this._el.major.className="tl-timeaxis-major",this._el.minor.className="tl-timeaxis-minor"):(this._el.major.className="tl-timeaxis-major tl-timeaxis-animate",this._el.minor.className="tl-timeaxis-minor tl-timeaxis-animate"),this._positionTickArray(this.major_ticks,t,e),this._positionTickArray(this.minor_ticks,t,e)},_positionTickArray:function(t,e,i){if(t[1]&&t[0]){var n=e.getPosition(t[1].date.getMillisecond())-e.getPosition(t[0].date.getMillisecond()),a=1;n<i&&(a=Math.round(i/e.getPixelsPerTick()));for(var s=1,o=0;o<t.length;o++){var r=t[o];r.tick.style.left=e.getPosition(r.date.getMillisecond())+"px",r.tick_text.innerHTML=r.display_date,a>1?s>=a?(s=1,r.tick_text.style.opacity=1,r.tick.className="tl-timeaxis-tick"):(s++,r.tick_text.style.opacity=0,r.tick.className="tl-timeaxis-tick tl-timeaxis-tick-hidden"):(r.tick_text.style.opacity=1,r.tick.className="tl-timeaxis-tick")}}},_initLayout:function(){this._el.content_container=TL.Dom.create("div","tl-timeaxis-content-container",this._el.container),this._el.major=TL.Dom.create("div","tl-timeaxis-major",this._el.content_container),this._el.minor=TL.Dom.create("div","tl-timeaxis-minor",this._el.content_container),this.onLoaded()},_initEvents:function(){},_updateDisplay:function(t,e,i){t&&(this.options.width=t),e&&(this.options.height=e)}}),TL.AxisHelper=TL.Class.extend({initialize:function(t){if(!t)throw new TL.Error("axis_helper_no_options_err");this.scale=t.scale,this.minor=t.minor,this.major=t.major},getPixelsPerTick:function(t){return t*this.minor.factor},getMajorTicks:function(t){return this._getTicks(t,this.major)},getMinorTicks:function(t){return this._getTicks(t,this.minor)},_getTicks:function(t,e){for(var i=t._scaled_padding*e.factor,n=t._earliest-i,a=t._latest+i,s=[],o=n;o<a;o+=e.factor)s.push(t.getDateFromTime(o).floor(e.name));return{name:e.name,ticks:s}}}),function(t){var e={},i=function(i,n){e[i]=[];for(var a=0;a<n.length-1;a++){var s=n[a],o=n[a+1];e[i].push(new t({scale:s[3],minor:{name:s[0],factor:s[1]},major:{name:o[0],factor:o[1]}}))}};i("human",TL.Date.SCALES),i("cosmological",TL.BigDate.SCALES),t.HELPERS=e,t.getBestHelper=function(t,i){"number"!=typeof i&&(i=100);var n=t.getScale(),a=e[n];if(!a)throw new TL.Error("axis_helper_scale_err",n);for(var s=null,o=0;o<a.length;o++){var r=a[o],l=r.getPixelsPerTick(t._pixels_per_milli);if(l>i){if(null==s)return r;var h=Math.abs(i-l),d=Math.abs(i-l);return h<d?r:s}s=r}return a[a.length-1]}}(TL.AxisHelper),TL.Timeline=TL.Class.extend({includes:[TL.Events,TL.I18NMixins],initialize:function(t,e,i){var n=this;if(i||(i={}),this.version="3.2.6",this.ready=!1,this._el={container:{},storyslider:{},timenav:{},menubar:{}},"object"==typeof t?this._el.container=t:this._el.container=TL.Dom.get(t),this._storyslider={},this._style_sheet=new TL.StyleSheet,this._timenav={},this._menubar={},this._loaded={storyslider:!1,timenav:!1},this.config=null,this.options={script_path:"",height:this._el.container.offsetHeight,width:this._el.container.offsetWidth,debug:!1,is_embed:!1,is_full_embed:!1,hash_bookmark:!1,default_bg_color:{r:255,g:255,b:255},scale_factor:2,layout:"landscape",timenav_position:"bottom",optimal_tick_width:60,base_class:"tl-timeline",timenav_height:null,timenav_height_percentage:25,timenav_mobile_height_percentage:40,timenav_height_min:175,marker_height_min:30,marker_width_min:100,marker_padding:5,start_at_slide:0,start_at_end:!1,menubar_height:0,skinny_size:650,medium_size:800,relative_date:!1,use_bc:!1,duration:1e3,ease:TL.Ease.easeInOutQuint,dragging:!0,trackResize:!0,map_type:"stamen:toner-lite",slide_padding_lr:100,slide_default_fade:"0%",zoom_sequence:[.5,1,2,3,5,8,13,21,34,55,89],language:"en",ga_property_id:null,track_events:["back_to_start","nav_next","nav_previous","zoom_in","zoom_out"]},this.animator_timenav=null,this.animator_storyslider=null,this.animator_menubar=null,this.message=new TL.Message({},{message_class:"tl-message-full"},this._el.container),"string"==typeof i.default_bg_color){var a=TL.Util.hexToRgb(i.default_bg_color);a?i.default_bg_color=a:(delete i.default_bg_color,trace("Invalid default background color. Ignoring."))}TL.Util.mergeData(this.options,i),window.addEventListener("resize",function(t){n.updateDisplay()}),TL.debug=this.options.debug,TL.DomUtil.addClass(this._el.container,"tl-timeline"),this.options.is_embed&&TL.DomUtil.addClass(this._el.container,"tl-timeline-embed"),this.options.is_full_embed&&TL.DomUtil.addClass(this._el.container,"tl-timeline-full-embed"),this.options.relative_date?"undefined"!=typeof moment?n._loadLanguage(e):TL.Load.js(this.options.script_path+"/library/moment.js",function(){n._loadLanguage(e),trace("LOAD MOMENTJS")}):n._loadLanguage(e)},_translateError:function(t){return t.hasOwnProperty("stack")&&trace(t.stack),t.message_key?this._(t.message_key)+(t.detail?" ["+t.detail+"]":""):t},_loadLanguage:function(t){try{this.options.language=new TL.Language(this.options),this._initData(t)}catch(t){this.showMessage(this._translateError(t))}},goToId:function(t){this.current_id!=t&&(this.current_id=t,this._timenav.goToId(this.current_id),this._storyslider.goToId(this.current_id,!1,!0),this.fire("change",{unique_id:this.current_id},this))},goTo:function(t){this.config.title?0==t?this.goToId(this.config.title.unique_id):this.goToId(this.config.events[t-1].unique_id):this.goToId(this.config.events[t].unique_id)},goToStart:function(){this.goTo(0)},goToEnd:function(){var t=this.config.events.length-1;this.goTo(this.config.title?t+1:t)},goToPrev:function(){this.goTo(this._getSlideIndex(this.current_id)-1)},goToNext:function(){this.goTo(this._getSlideIndex(this.current_id)+1)},add:function(t){var e=this.config.addEvent(t),i=this._getEventIndex(e),n=this.config.events[i];this._storyslider.createSlide(n,this.config.title?i+1:i),this._storyslider._updateDrawSlides(),this._timenav.createMarker(n,i),this._timenav._updateDrawTimeline(!1),this.fire("added",{unique_id:e})},remove:function(t){if(t>=0&&t<this.config.events.length){this.config.events[t].unique_id==this.current_id&&(t<this.config.events.length-1?this.goTo(t+1):this.goTo(t-1));var e=this.config.events.splice(t,1);delete this.config.event_dict[e[0].unique_id],this._storyslider.destroySlide(this.config.title?t+1:t),this._storyslider._updateDrawSlides(),this._timenav.destroyMarker(t),this._timenav._updateDrawTimeline(!1),this.fire("removed",{unique_id:e[0].unique_id})}},removeId:function(t){this.remove(this._getEventIndex(t))},getData:function(t){if(this.config.title){if(0==t)return this.config.title;if(t>0&&t<=this.config.events.length)return this.config.events[t-1]}else if(t>=0&&t<this.config.events.length)return this.config.events[t];return null},getDataById:function(t){return this.getData(this._getSlideIndex(t))},getSlide:function(t){return t>=0&&t<this._storyslider._slides.length?this._storyslider._slides[t]:null},getSlideById:function(t){return this.getSlide(this._getSlideIndex(t))},getCurrentSlide:function(){return this.getSlideById(this.current_id)},updateDisplay:function(){this.ready&&this._updateDisplay()},_calculateTimeNavHeight:function(t,e){var i=0;return t?i=t:(this.options.timenav_height_percentage||e)&&(i=e?Math.round(this.options.height/100*e):Math.round(this.options.height/100*this.options.timenav_height_percentage)),this._timenav.ready&&this.options.timenav_height_min<this._timenav.getMinimumHeight()&&(this.options.timenav_height_min=this._timenav.getMinimumHeight()),i<this.options.timenav_height_min&&(i=this.options.timenav_height_min),i-=2*this.options.marker_padding},_updateDisplay:function(t,e,i){var n=this.options.duration,a=this.options.base_class,s=0;i&&(n=i),this.options.width=this._el.container.offsetWidth,this.options.height=this._el.container.offsetHeight,this.options.width<=this.options.skinny_size?(a+=" tl-skinny",this.options.layout="portrait"):this.options.width<=this.options.medium_size?(a+=" tl-medium",this.options.layout="landscape"):this.options.layout="landscape",TL.Browser.touch&&(this.options.layout=TL.Browser.orientation()),TL.Browser.mobile?(a+=" tl-mobile",this.options.timenav_height=this._calculateTimeNavHeight(t,this.options.timenav_mobile_height_percentage)):this.options.timenav_height=this._calculateTimeNavHeight(t),a+="portrait"==this.options.layout?" tl-layout-portrait":" tl-layout-landscape",this.options.storyslider_height=this.options.height-this.options.timenav_height,s="top"==this.options.timenav_position?Math.ceil(this.options.timenav_height)/2-this._el.menubar.offsetHeight/2-19.5:Math.round(this.options.storyslider_height+1+Math.ceil(this.options.timenav_height)/2-this._el.menubar.offsetHeight/2-17.5),e?(this._el.timenav.style.height=Math.ceil(this.options.timenav_height)+"px",this.animator_storyslider&&this.animator_storyslider.stop(),this.animator_storyslider=TL.Animate(this._el.storyslider,{height:this.options.storyslider_height+"px",duration:n/2,easing:TL.Ease.easeOutStrong}),this.animator_menubar&&this.animator_menubar.stop(),this.animator_menubar=TL.Animate(this._el.menubar,{top:s+"px",duration:n/2,easing:TL.Ease.easeOutStrong})):(this._el.timenav.style.height=Math.ceil(this.options.timenav_height)+"px",this._el.storyslider.style.height=this.options.storyslider_height+"px",this._el.menubar.style.top=s+"px"),this.message&&this.message.updateDisplay(this.options.width,this.options.height),this._timenav.updateDisplay(this.options.width,this.options.timenav_height,e),this._storyslider.updateDisplay(this.options.width,this.options.storyslider_height,e,this.options.layout),"rtl"==this.options.language.direction&&(a+=" tl-rtl"),this._el.container.className=a},_updateHashBookmark:function(t){var e="#event-"+t.toString();"file:"!=window.location.protocol&&window.history.replaceState(null,"Browsing TimelineJS",e),this.fire("hash_updated",{unique_id:this.current_id,hashbookmark:"#event-"+t.toString()},this)},_initData:function(t){var e=this;if("string"==typeof t){var e=this;TL.ConfigFactory.makeConfig(t,function(t){e.setConfig(t)})}else TL.TimelineConfig==t.constructor?this.setConfig(t):this.setConfig(new TL.TimelineConfig(t))},setConfig:function(t){if(this.config=t,this.config.validate(),this._validateOptions(),this.config.isValid())try{this._onDataLoaded()}catch(t){this.showMessage("<strong>"+this._("error")+":</strong> "+this._translateError(t))}else{for(var e=[],i=0,n=this.config.getErrors();i<n.length;i++)e.push(this._translateError(n[i]));this.showMessage("<strong>"+this._("error")+":</strong> "+e.join("<br>"))}},_validateOptions:function(){for(var t=["timenav_height","timenav_height_min","marker_height_min","marker_width_min","marker_padding","start_at_slide","slide_padding_lr"],e=0;e<t.length;e++){var i=t[e],n=this.options[i];valid=!0,"number"==typeof n?valid=n==parseInt(n):"string"==typeof n&&(valid=n.match(/^\s*(\-?\d+)?\s*$/)),valid||this.config.logError({message_key:"invalid_integer_option",detail:i})}},_initLayout:function(){this.message.removeFrom(this._el.container),this._el.container.innerHTML="","top"==this.options.timenav_position?(this._el.timenav=TL.Dom.create("div","tl-timenav",this._el.container),this._el.storyslider=TL.Dom.create("div","tl-storyslider",this._el.container)):(this._el.storyslider=TL.Dom.create("div","tl-storyslider",this._el.container),this._el.timenav=TL.Dom.create("div","tl-timenav",this._el.container)),this._el.menubar=TL.Dom.create("div","tl-menubar",this._el.container),this.options.width=this._el.container.offsetWidth,this.options.height=this._el.container.offsetHeight,this._el.storyslider.style.top="1px",this.options.timenav_height=this._calculateTimeNavHeight(this.options.timenav_height),this._timenav=new TL.TimeNav(this._el.timenav,this.config,this.options),this._timenav.on("loaded",this._onTimeNavLoaded,this),this._timenav.on("update_timenav_min",this._updateTimeNavHeightMin,this),this._timenav.options.height=this.options.timenav_height,this._timenav.init(),this.options.initial_zoom&&this.setZoom(this.options.initial_zoom),this._storyslider=new TL.StorySlider(this._el.storyslider,this.config,this.options),this._storyslider.on("loaded",this._onStorySliderLoaded,this),this._storyslider.init(),this._menubar=new TL.MenuBar(this._el.menubar,this._el.container,this.options),"portrait"==this.options.layout?this.options.storyslider_height=this.options.height-this.options.timenav_height-1:this.options.storyslider_height=this.options.height-1,this._updateDisplay(this._timenav.options.height,!0,2e3)},_initEvents:function(){this._timenav.on("change",this._onTimeNavChange,this),this._timenav.on("zoomtoggle",this._onZoomToggle,this),this._storyslider.on("change",this._onSlideChange,this),this._storyslider.on("colorchange",this._onColorChange,this),this._storyslider.on("nav_next",this._onStorySliderNext,this),this._storyslider.on("nav_previous",this._onStorySliderPrevious,this),this._menubar.on("zoom_in",this._onZoomIn,this),this._menubar.on("zoom_out",this._onZoomOut,this),this._menubar.on("back_to_start",this._onBackToStart,this)},_initGoogleAnalytics:function(){!function(t,e,i,n,a,s,o){t.GoogleAnalyticsObject=a,t[a]=t[a]||function(){(t[a].q=t[a].q||[]).push(arguments)},t[a].l=1*new Date,s=e.createElement(i),o=e.getElementsByTagName(i)[0],s.async=1,s.src=n,o.parentNode.insertBefore(s,o)}(window,document,"script","//www.google-analytics.com/analytics.js","ga"),ga("create",this.options.ga_property_id,"auto")},_initAnalytics:function(){if(null!==this.options.ga_property_id){this._initGoogleAnalytics(),ga("send","pageview");var t=this.options.track_events;for(i=0;i<t.length;i++){var e=t[i];this.addEventListener(e,function(t){ga("send","event",t.type,"clicked")})}}},_onZoomToggle:function(t){"in"==t.zoom?this._menubar.toogleZoomIn(t.show):"out"==t.zoom&&this._menubar.toogleZoomOut(t.show)},_getEventIndex:function(t){for(var e=0;e<this.config.events.length;e++)if(t==this.config.events[e].unique_id)return e;return-1},_getSlideIndex:function(t){if(this.config.title&&this.config.title.unique_id==t)return 0;for(var e=0;e<this.config.events.length;e++)if(t==this.config.events[e].unique_id)return this.config.title?e+1:e;return-1},_onDataLoaded:function(t){this.fire("dataloaded"),this._initLayout(),this._initEvents(),this._initAnalytics(),this.message&&this.message.hide(),this.ready=!0},showMessage:function(t){this.message?this.message.updateMessage(t):(trace("No message display available."),trace(t))},_onColorChange:function(t){this.fire("color_change",{unique_id:this.current_id},this),t.color||t.image},_onSlideChange:function(t){this.current_id!=t.unique_id&&(this.current_id=t.unique_id,this._timenav.goToId(this.current_id),this._onChange(t))},_onTimeNavChange:function(t){this.current_id!=t.unique_id&&(this.current_id=t.unique_id,this._storyslider.goToId(this.current_id),this._onChange(t))},_onChange:function(t){this.fire("change",{unique_id:this.current_id},this),this.options.hash_bookmark&&this.current_id&&this._updateHashBookmark(this.current_id)},_onBackToStart:function(t){this._storyslider.goTo(0),this.fire("back_to_start",{unique_id:this.current_id},this)},zoomIn:function(){this._timenav.zoomIn()},zoomOut:function(){this._timenav.zoomOut()},setZoom:function(t){this._timenav.setZoom(t)},_onZoomIn:function(t){this._timenav.zoomIn(),this.fire("zoom_in",{zoom_level:this._timenav.options.scale_factor},this)},_onZoomOut:function(t){this._timenav.zoomOut(),this.fire("zoom_out",{zoom_level:this._timenav.options.scale_factor},this)},_onTimeNavLoaded:function(){this._loaded.timenav=!0,this._onLoaded()},_onStorySliderLoaded:function(){this._loaded.storyslider=!0,this._onLoaded()},_onStorySliderNext:function(t){this.fire("nav_next",t)},_onStorySliderPrevious:function(t){this.fire("nav_previous",t)},_onLoaded:function(){this._loaded.storyslider&&this._loaded.timenav&&(this.fire("loaded",this.config),this.options.hash_bookmark&&""!=window.location.hash?this.goToId(window.location.hash.replace("#event-","")):(TL.Util.isTrue(this.options.start_at_end)||this.options.start_at_slide>this.config.events.length?this.goToEnd():this.goTo(this.options.start_at_slide),this.options.hash_bookmark&&this._updateHashBookmark(this.current_id)))}}),TL.Timeline.source_path=function(){var t=document.getElementsByTagName("script"),e=t[t.length-1].src;return e.substr(0,e.lastIndexOf("/"))}();
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/js/timeline.js b/public/opac/TimelineJS3-3.5.1/compiled/js/timeline.js
new file mode 100644
index 0000000000000000000000000000000000000000..cce2261261b19dc9f720b15543b0e980c5bb8fa8
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/js/timeline.js
@@ -0,0 +1,13455 @@
+/*
+    TimelineJS - ver. 2017-03-31-15-29-59 - 2017-03-31
+    Copyright (c) 2012-2016 Northwestern University
+    a project of the Northwestern University Knight Lab, originally created by Zach Wise
+    https://github.com/NUKnightLab/TimelineJS3
+    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*/
+
+/* **********************************************
+     Begin TL.js
+********************************************** */
+
+/*!
+	TL
+*/
+
+(function (root) {
+	root.TL = {
+		VERSION: '0.1',
+		_originalL: root.TL
+	};
+}(this));
+
+/*	TL.Debug
+	Debug mode
+================================================== */
+TL.debug = false;
+
+
+
+/*	TL.Bind
+================================================== */
+TL.Bind = function (/*Function*/ fn, /*Object*/ obj) /*-> Object*/ {
+	return function () {
+		return fn.apply(obj, arguments);
+	};
+};
+
+
+
+/* Trace (console.log)
+================================================== */
+trace = function( msg ) {
+	if (TL.debug) {
+		if (window.console) {
+			console.log(msg);
+		} else if ( typeof( jsTrace ) != 'undefined' ) {
+			jsTrace.send( msg );
+		} else {
+			//alert(msg);
+		}
+	}
+}
+
+
+/* **********************************************
+     Begin TL.Error.js
+********************************************** */
+
+/* Timeline Error class */
+
+function TL_Error(message_key, detail) {
+    this.name = 'TL.Error';
+    this.message = message_key || 'error';
+    this.message_key = this.message;
+    this.detail = detail || '';
+  
+    // Grab stack?
+    var e = new Error();
+    if(e.hasOwnProperty('stack')) {
+        this.stack = e.stack;
+    }
+}
+
+TL_Error.prototype = Object.create(Error.prototype);
+TL_Error.prototype.constructor = TL_Error;
+
+TL.Error = TL_Error;
+
+
+/* **********************************************
+     Begin TL.Util.js
+********************************************** */
+
+/*	TL.Util
+	Class of utilities
+================================================== */
+
+TL.Util = {
+	mergeData: function(data_main, data_to_merge) {
+		var x;
+		for (x in data_to_merge) {
+			if (Object.prototype.hasOwnProperty.call(data_to_merge, x)) {
+				data_main[x] = data_to_merge[x];
+			}
+		}
+		return data_main;
+	},
+
+	// like TL.Util.mergeData but takes an arbitrarily long list of sources to merge.
+	extend: function (/*Object*/ dest) /*-> Object*/ {	// merge src properties into dest
+		var sources = Array.prototype.slice.call(arguments, 1);
+		for (var j = 0, len = sources.length, src; j < len; j++) {
+			src = sources[j] || {};
+			TL.Util.mergeData(dest, src);
+		}
+		return dest;
+	},
+
+	isEven: function(n) {
+	  return n == parseFloat(n)? !(n%2) : void 0;
+	},
+
+	isTrue: function(s) {
+		if (s == null) return false;
+		return s == true || String(s).toLowerCase() == 'true' || Number(s) == 1;
+	},
+
+	findArrayNumberByUniqueID: function(id, array, prop, defaultVal) {
+		var _n = defaultVal || 0;
+
+		for (var i = 0; i < array.length; i++) {
+			if (array[i].data[prop] == id) {
+				_n = i;
+			}
+		};
+
+		return _n;
+	},
+
+	convertUnixTime: function(str) {
+		var _date, _months, _year, _month, _day, _time, _date_array = [],
+			_date_str = {
+				ymd:"",
+				time:"",
+				time_array:[],
+				date_array:[],
+				full_array:[]
+			};
+
+		_date_str.ymd = str.split(" ")[0];
+		_date_str.time = str.split(" ")[1];
+		_date_str.date_array = _date_str.ymd.split("-");
+		_date_str.time_array = _date_str.time.split(":");
+		_date_str.full_array = _date_str.date_array.concat(_date_str.time_array)
+
+		for(var i = 0; i < _date_str.full_array.length; i++) {
+			_date_array.push( parseInt(_date_str.full_array[i]) )
+		}
+
+		_date = new Date(_date_array[0], _date_array[1], _date_array[2], _date_array[3], _date_array[4], _date_array[5]);
+		_months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
+		_year = _date.getFullYear();
+		_month = _months[_date.getMonth()];
+		_day = _date.getDate();
+		_time = _month + ', ' + _day + ' ' + _year;
+
+		return _time;
+	},
+
+	setData: function (obj, data) {
+		obj.data = TL.Util.extend({}, obj.data, data);
+		if (obj.data.unique_id === "") {
+			obj.data.unique_id = TL.Util.unique_ID(6);
+		}
+	},
+
+	stamp: (function () {
+		var lastId = 0, key = '_tl_id';
+
+
+		return function (/*Object*/ obj) {
+			obj[key] = obj[key] || ++lastId;
+			return obj[key];
+		};
+	}()),
+
+	isArray: (function () {
+	    // Use compiler's own isArray when available
+	    if (Array.isArray) {
+	        return Array.isArray;
+	    }
+
+	    // Retain references to variables for performance
+	    // optimization
+	    var objectToStringFn = Object.prototype.toString,
+	        arrayToStringResult = objectToStringFn.call([]);
+
+	    return function (subject) {
+	        return objectToStringFn.call(subject) === arrayToStringResult;
+	    };
+	}()),
+
+    getRandomNumber: function(range) {
+   		return Math.floor(Math.random() * range);
+   	},
+
+	unique_ID: function(size, prefix) {
+
+		var getRandomNumber = function(range) {
+			return Math.floor(Math.random() * range);
+		};
+
+		var getRandomChar = function() {
+			var chars = "abcdefghijklmnopqurstuvwxyz";
+			return chars.substr( getRandomNumber(32), 1 );
+		};
+
+		var randomID = function(size) {
+			var str = "";
+			for(var i = 0; i < size; i++) {
+				str += getRandomChar();
+			}
+			return str;
+		};
+
+		if (prefix) {
+			return prefix + "-" + randomID(size);
+		} else {
+			return "tl-" + randomID(size);
+		}
+	},
+
+	ensureUniqueKey: function(obj, candidate) {
+		if (!candidate) { candidate = TL.Util.unique_ID(6); }
+
+		if (!(candidate in obj)) { return candidate; }
+
+		var root = candidate.match(/^(.+)(-\d+)?$/)[1];
+		var similar_ids = [];
+		// get an alternative
+		for (key in obj) {
+			if (key.match(/^(.+?)(-\d+)?$/)[1] == root) {
+				similar_ids.push(key);
+			}
+		}
+		candidate = root + "-" + (similar_ids.length + 1);
+
+		for (var counter = similar_ids.length; similar_ids.indexOf(candidate) != -1; counter++) {
+			candidate = root + '-' + counter;
+		}
+
+		return candidate;
+	},
+
+
+	htmlify: function(str) {
+		//if (str.match(/<\s*p[^>]*>([^<]*)<\s*\/\s*p\s*>/)) {
+		if (str.match(/<p>[\s\S]*?<\/p>/)) {
+
+			return str;
+		} else {
+			return "<p>" + str + "</p>";
+		}
+	},
+
+	/*	* Turns plain text links into real links
+	================================================== */
+	linkify: function(text,targets,is_touch) {
+
+        var make_link = function(url, link_text, prefix) {
+            if (!prefix) {
+                prefix = "";
+            }
+            var MAX_LINK_TEXT_LENGTH = 30;
+            if (link_text && link_text.length > MAX_LINK_TEXT_LENGTH) {
+                link_text = link_text.substring(0,MAX_LINK_TEXT_LENGTH) + "\u2026"; // unicode ellipsis
+            }
+            return prefix + "<a class='tl-makelink' href='" + url + "' onclick='void(0)'>" + link_text + "</a>";
+        }
+		// http://, https://, ftp://
+		var urlPattern = /\b(?:https?|ftp):\/\/([a-z0-9-+&@#\/%?=~_|!:,.;]*[a-z0-9-+&@#\/%=~_|])/gim;
+
+		// www. sans http:// or https://
+		var pseudoUrlPattern = /(^|[^\/>])(www\.[\S]+(\b|$))/gim;
+
+		// Email addresses
+		var emailAddressPattern = /([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)/gim;
+
+
+		return text
+			.replace(urlPattern, function(match, url_sans_protocol, offset, string) {
+                // Javascript doesn't support negative lookbehind assertions, so
+                // we need to handle risk of matching URLs in legit hrefs
+                if (offset > 0) {
+                    var prechar = string[offset-1];
+                    if (prechar == '"' || prechar == "'" || prechar == "=") {
+                        return match;
+                    }
+                }
+                return make_link(match, url_sans_protocol);
+            })
+			.replace(pseudoUrlPattern, function(match, beforePseudo, pseudoUrl, offset, string) {
+                return make_link('http://' + pseudoUrl, pseudoUrl, beforePseudo);
+            })
+			.replace(emailAddressPattern, function(match, email, offset, string) {
+                return make_link('mailto:' + email, email);
+            });
+	},
+
+	unlinkify: function(text) {
+		if(!text) return text;
+		text = text.replace(/<a\b[^>]*>/i,"");
+		text = text.replace(/<\/a>/i, "");
+		return text;
+	},
+
+	getParamString: function (obj) {
+		var params = [];
+		for (var i in obj) {
+			if (obj.hasOwnProperty(i)) {
+				params.push(i + '=' + obj[i]);
+			}
+		}
+		return '?' + params.join('&');
+	},
+
+	formatNum: function (num, digits) {
+		var pow = Math.pow(10, digits || 5);
+		return Math.round(num * pow) / pow;
+	},
+
+	falseFn: function () {
+		return false;
+	},
+
+	requestAnimFrame: (function () {
+		function timeoutDefer(callback) {
+			window.setTimeout(callback, 1000 / 60);
+		}
+
+		var requestFn = window.requestAnimationFrame ||
+			window.webkitRequestAnimationFrame ||
+			window.mozRequestAnimationFrame ||
+			window.oRequestAnimationFrame ||
+			window.msRequestAnimationFrame ||
+			timeoutDefer;
+
+		return function (callback, context, immediate, contextEl) {
+			callback = context ? TL.Util.bind(callback, context) : callback;
+			if (immediate && requestFn === timeoutDefer) {
+				callback();
+			} else {
+				requestFn(callback, contextEl);
+			}
+		};
+	}()),
+
+	bind: function (/*Function*/ fn, /*Object*/ obj) /*-> Object*/ {
+		return function () {
+			return fn.apply(obj, arguments);
+		};
+	},
+
+	template: function (str, data) {
+		return str.replace(/\{ *([\w_]+) *\}/g, function (str, key) {
+			var value = data[key];
+			if (!data.hasOwnProperty(key)) {
+			    throw new TL.Error("template_value_err", str);
+			}
+			return value;
+		});
+	},
+
+	hexToRgb: function(hex) {
+	    // Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
+        if (TL.Util.css_named_colors[hex.toLowerCase()]) {
+            hex = TL.Util.css_named_colors[hex.toLowerCase()];
+        }
+	    var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
+	    hex = hex.replace(shorthandRegex, function(m, r, g, b) {
+	        return r + r + g + g + b + b;
+	    });
+
+	    var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
+	    return result ? {
+	        r: parseInt(result[1], 16),
+	        g: parseInt(result[2], 16),
+	        b: parseInt(result[3], 16)
+	    } : null;
+	},
+	// given an object with r, g, and b keys, or a string of the form 'rgb(mm,nn,ll)', return a CSS hex string including the leading '#' character
+	rgbToHex: function(rgb) {
+		var r,g,b;
+		if (typeof(rgb) == 'object') {
+			r = rgb.r;
+			g = rgb.g;
+			b = rgb.b;
+		} else if (typeof(rgb.match) == 'function'){
+			var parts = rgb.match(/^rgb\((\d+),(\d+),(\d+)\)$/);
+			if (parts) {
+				r = parts[1];
+				g = parts[2];
+				b = parts[3];
+			}
+		}
+		if (isNaN(r) || isNaN(b) || isNaN(g)) {
+			throw new TL.Error("invalid_rgb_err");
+		}
+		return "#" + TL.Util.intToHexString(r) + TL.Util.intToHexString(g) + TL.Util.intToHexString(b);
+	},
+	colorObjToHex: function(o) {
+		var parts = [o.r, o.g, o.b];
+		return TL.Util.rgbToHex("rgb(" + parts.join(',') + ")")
+	},
+    css_named_colors: {
+        "aliceblue": "#f0f8ff",
+        "antiquewhite": "#faebd7",
+        "aqua": "#00ffff",
+        "aquamarine": "#7fffd4",
+        "azure": "#f0ffff",
+        "beige": "#f5f5dc",
+        "bisque": "#ffe4c4",
+        "black": "#000000",
+        "blanchedalmond": "#ffebcd",
+        "blue": "#0000ff",
+        "blueviolet": "#8a2be2",
+        "brown": "#a52a2a",
+        "burlywood": "#deb887",
+        "cadetblue": "#5f9ea0",
+        "chartreuse": "#7fff00",
+        "chocolate": "#d2691e",
+        "coral": "#ff7f50",
+        "cornflowerblue": "#6495ed",
+        "cornsilk": "#fff8dc",
+        "crimson": "#dc143c",
+        "cyan": "#00ffff",
+        "darkblue": "#00008b",
+        "darkcyan": "#008b8b",
+        "darkgoldenrod": "#b8860b",
+        "darkgray": "#a9a9a9",
+        "darkgreen": "#006400",
+        "darkkhaki": "#bdb76b",
+        "darkmagenta": "#8b008b",
+        "darkolivegreen": "#556b2f",
+        "darkorange": "#ff8c00",
+        "darkorchid": "#9932cc",
+        "darkred": "#8b0000",
+        "darksalmon": "#e9967a",
+        "darkseagreen": "#8fbc8f",
+        "darkslateblue": "#483d8b",
+        "darkslategray": "#2f4f4f",
+        "darkturquoise": "#00ced1",
+        "darkviolet": "#9400d3",
+        "deeppink": "#ff1493",
+        "deepskyblue": "#00bfff",
+        "dimgray": "#696969",
+        "dodgerblue": "#1e90ff",
+        "firebrick": "#b22222",
+        "floralwhite": "#fffaf0",
+        "forestgreen": "#228b22",
+        "fuchsia": "#ff00ff",
+        "gainsboro": "#dcdcdc",
+        "ghostwhite": "#f8f8ff",
+        "gold": "#ffd700",
+        "goldenrod": "#daa520",
+        "gray": "#808080",
+        "green": "#008000",
+        "greenyellow": "#adff2f",
+        "honeydew": "#f0fff0",
+        "hotpink": "#ff69b4",
+        "indianred": "#cd5c5c",
+        "indigo": "#4b0082",
+        "ivory": "#fffff0",
+        "khaki": "#f0e68c",
+        "lavender": "#e6e6fa",
+        "lavenderblush": "#fff0f5",
+        "lawngreen": "#7cfc00",
+        "lemonchiffon": "#fffacd",
+        "lightblue": "#add8e6",
+        "lightcoral": "#f08080",
+        "lightcyan": "#e0ffff",
+        "lightgoldenrodyellow": "#fafad2",
+        "lightgray": "#d3d3d3",
+        "lightgreen": "#90ee90",
+        "lightpink": "#ffb6c1",
+        "lightsalmon": "#ffa07a",
+        "lightseagreen": "#20b2aa",
+        "lightskyblue": "#87cefa",
+        "lightslategray": "#778899",
+        "lightsteelblue": "#b0c4de",
+        "lightyellow": "#ffffe0",
+        "lime": "#00ff00",
+        "limegreen": "#32cd32",
+        "linen": "#faf0e6",
+        "magenta": "#ff00ff",
+        "maroon": "#800000",
+        "mediumaquamarine": "#66cdaa",
+        "mediumblue": "#0000cd",
+        "mediumorchid": "#ba55d3",
+        "mediumpurple": "#9370db",
+        "mediumseagreen": "#3cb371",
+        "mediumslateblue": "#7b68ee",
+        "mediumspringgreen": "#00fa9a",
+        "mediumturquoise": "#48d1cc",
+        "mediumvioletred": "#c71585",
+        "midnightblue": "#191970",
+        "mintcream": "#f5fffa",
+        "mistyrose": "#ffe4e1",
+        "moccasin": "#ffe4b5",
+        "navajowhite": "#ffdead",
+        "navy": "#000080",
+        "oldlace": "#fdf5e6",
+        "olive": "#808000",
+        "olivedrab": "#6b8e23",
+        "orange": "#ffa500",
+        "orangered": "#ff4500",
+        "orchid": "#da70d6",
+        "palegoldenrod": "#eee8aa",
+        "palegreen": "#98fb98",
+        "paleturquoise": "#afeeee",
+        "palevioletred": "#db7093",
+        "papayawhip": "#ffefd5",
+        "peachpuff": "#ffdab9",
+        "peru": "#cd853f",
+        "pink": "#ffc0cb",
+        "plum": "#dda0dd",
+        "powderblue": "#b0e0e6",
+        "purple": "#800080",
+        "rebeccapurple": "#663399",
+        "red": "#ff0000",
+        "rosybrown": "#bc8f8f",
+        "royalblue": "#4169e1",
+        "saddlebrown": "#8b4513",
+        "salmon": "#fa8072",
+        "sandybrown": "#f4a460",
+        "seagreen": "#2e8b57",
+        "seashell": "#fff5ee",
+        "sienna": "#a0522d",
+        "silver": "#c0c0c0",
+        "skyblue": "#87ceeb",
+        "slateblue": "#6a5acd",
+        "slategray": "#708090",
+        "snow": "#fffafa",
+        "springgreen": "#00ff7f",
+        "steelblue": "#4682b4",
+        "tan": "#d2b48c",
+        "teal": "#008080",
+        "thistle": "#d8bfd8",
+        "tomato": "#ff6347",
+        "turquoise": "#40e0d0",
+        "violet": "#ee82ee",
+        "wheat": "#f5deb3",
+        "white": "#ffffff",
+        "whitesmoke": "#f5f5f5",
+        "yellow": "#ffff00",
+        "yellowgreen": "#9acd32"
+    },
+	ratio: {
+		square: function(size) {
+			var s = {
+				w: 0,
+				h: 0
+			}
+			if (size.w > size.h && size.h > 0) {
+				s.h = size.h;
+				s.w = size.h;
+			} else {
+				s.w = size.w;
+				s.h = size.w;
+			}
+			return s;
+		},
+
+		r16_9: function(size) {
+			if (size.w !== null && size.w !== "") {
+				return Math.round((size.w / 16) * 9);
+			} else if (size.h !== null && size.h !== "") {
+				return Math.round((size.h / 9) * 16);
+			} else {
+				return 0;
+			}
+		},
+		r4_3: function(size) {
+			if (size.w !== null && size.w !== "") {
+				return Math.round((size.w / 4) * 3);
+			} else if (size.h !== null && size.h !== "") {
+				return Math.round((size.h / 3) * 4);
+			}
+		}
+	},
+	getObjectAttributeByIndex: function(obj, index) {
+		if(typeof obj != 'undefined') {
+			var i = 0;
+			for (var attr in obj){
+				if (index === i){
+					return obj[attr];
+				}
+				i++;
+			}
+			return "";
+		} else {
+			return "";
+		}
+
+	},
+	getUrlVars: function(string) {
+		var str,
+			vars = [],
+			hash,
+			hashes;
+
+		str = string.toString();
+
+		if (str.match('&#038;')) {
+			str = str.replace("&#038;", "&");
+		} else if (str.match('&#38;')) {
+			str = str.replace("&#38;", "&");
+		} else if (str.match('&amp;')) {
+			str = str.replace("&amp;", "&");
+		}
+
+		hashes = str.slice(str.indexOf('?') + 1).split('&');
+
+		for(var i = 0; i < hashes.length; i++) {
+			hash = hashes[i].split('=');
+			vars.push(hash[0]);
+			vars[hash[0]] = hash[1];
+		}
+
+
+		return vars;
+	},
+    /**
+     * Remove any leading or trailing whitespace from the given string.
+     * If `str` is undefined or does not have a `replace` function, return
+     * an empty string.
+     */
+	trim: function(str) {
+        if (str && typeof(str.replace) == 'function') {
+            return str.replace(/^\s+|\s+$/g, '');
+        }
+        return "";
+	},
+
+	slugify: function(str) {
+		// borrowed from http://stackoverflow.com/a/5782563/102476
+		str = TL.Util.trim(str);
+		str = str.toLowerCase();
+
+		// remove accents, swap ñ for n, etc
+		var from = "ãàáäâẽèéëêìíïîõòóöôùúüûñç·/_,:;";
+		var to   = "aaaaaeeeeeiiiiooooouuuunc------";
+		for (var i=0, l=from.length ; i<l ; i++) {
+		str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
+		}
+
+		str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
+		.replace(/\s+/g, '-') // collapse whitespace and replace by -
+		.replace(/-+/g, '-'); // collapse dashes
+
+		str = str.replace(/^([0-9])/,'_$1');
+		return str;
+	},
+	maxDepth: function(ary) {
+		// given a sorted array of 2-tuples of numbers, count how many "deep" the items are.
+		// that is, what is the maximum number of tuples that occupy any one moment
+		// each tuple should also be sorted
+		var stack = [];
+		var max_depth = 0;
+		for (var i = 0; i < ary.length; i++) {
+
+			stack.push(ary[i]);
+			if (stack.length > 1) {
+				var top = stack[stack.length - 1]
+				var bottom_idx = -1;
+				for (var j = 0; j < stack.length - 1; j++) {
+					if (stack[j][1] < top[0]) {
+						bottom_idx = j;
+					}
+				};
+				if (bottom_idx >= 0) {
+					stack = stack.slice(bottom_idx + 1);
+				}
+
+			}
+
+			if (stack.length > max_depth) {
+				max_depth = stack.length;
+			}
+		};
+		return max_depth;
+	},
+
+	pad: function (val, len) {
+		val = String(val);
+		len = len || 2;
+		while (val.length < len) val = "0" + val;
+		return val;
+	},
+	intToHexString: function(i) {
+		return TL.Util.pad(parseInt(i,10).toString(16));
+	},
+    findNextGreater: function(list, current, default_value) {
+        // given a sorted list and a current value which *might* be in the list,
+        // return the next greatest value if the current value is >= the last item in the list, return default,
+        // or if default is undefined, return input value
+        for (var i = 0; i < list.length; i++) {
+            if (current < list[i]) {
+                return list[i];
+            }
+        }
+
+        return (default_value) ? default_value : current;
+    },
+
+    findNextLesser: function(list, current, default_value) {
+        // given a sorted list and a current value which *might* be in the list,
+        // return the next lesser value if the current value is <= the last item in the list, return default,
+        // or if default is undefined, return input value
+        for (var i = list.length - 1; i >= 0; i--) {
+            if (current > list[i]) {
+                return list[i];
+            }
+        }
+
+        return (default_value) ? default_value : current;
+    },
+
+	isEmptyObject: function(o) {
+		var properties = []
+		if (Object.keys) {
+			properties = Object.keys(o);
+		} else { // all this to support IE 8
+		    for (var p in o) if (Object.prototype.hasOwnProperty.call(o,p)) properties.push(p);
+    }
+		for (var i = 0; i < properties.length; i++) {
+			var k = properties[i];
+			if (o[k] != null && typeof o[k] != "string") return false;
+			if (TL.Util.trim(o[k]).length != 0) return false;
+		}
+		return true;
+	},
+	parseYouTubeTime: function(s) {
+	    // given a YouTube start time string in a reasonable format, reduce it to a number of seconds as an integer.
+		if (typeof(s) == 'string') {
+			parts = s.match(/^\s*(\d+h)?(\d+m)?(\d+s)?\s*/i);
+			if (parts) {
+				var hours = parseInt(parts[1]) || 0;
+				var minutes = parseInt(parts[2]) || 0;
+				var seconds = parseInt(parts[3]) || 0;
+				return seconds + (minutes * 60) + (hours * 60 * 60);
+			}
+		} else if (typeof(s) == 'number') {
+			return s;
+		}
+		return 0;
+	},
+	/**
+	 * Try to make seamless the process of interpreting a URL to a web page which embeds an image for sharing purposes
+	 * as a direct image link. Some services have predictable transformations we can use rather than explain to people
+	 * this subtlety.
+	 */
+	transformImageURL: function(url) {
+		return url.replace(/(.*)www.dropbox.com\/(.*)/, '$1dl.dropboxusercontent.com/$2')
+	},
+
+	base58: (function(alpha) {
+	    var alphabet = alpha || '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ',
+	        base = alphabet.length;
+	    return {
+	        encode: function(enc) {
+	            if(typeof enc!=='number' || enc !== parseInt(enc))
+	                throw '"encode" only accepts integers.';
+	            var encoded = '';
+	            while(enc) {
+	                var remainder = enc % base;
+	                enc = Math.floor(enc / base);
+	                encoded = alphabet[remainder].toString() + encoded;
+	            }
+	            return encoded;
+	        },
+	        decode: function(dec) {
+	            if(typeof dec!=='string')
+	                throw '"decode" only accepts strings.';
+	            var decoded = 0;
+	            while(dec) {
+	                var alphabetPosition = alphabet.indexOf(dec[0]);
+	                if (alphabetPosition < 0)
+	                    throw '"decode" can\'t find "' + dec[0] + '" in the alphabet: "' + alphabet + '"';
+	                var powerOf = dec.length - 1;
+	                decoded += alphabetPosition * (Math.pow(base, powerOf));
+	                dec = dec.substring(1);
+	            }
+	            return decoded;
+	        }
+	    };
+	})()
+
+};
+
+
+/* **********************************************
+     Begin TL.Data.js
+********************************************** */
+
+// Expects TL to be visible in scope
+
+;(function(TL){
+    /* Zepto v1.1.2-15-g59d3fe5 - zepto event ajax form ie - zeptojs.com/license */
+
+    var Zepto = (function() {
+      var undefined, key, $, classList, emptyArray = [], slice = emptyArray.slice, filter = emptyArray.filter,
+        document = window.document,
+        elementDisplay = {}, classCache = {},
+        cssNumber = { 'column-count': 1, 'columns': 1, 'font-weight': 1, 'line-height': 1,'opacity': 1, 'z-index': 1, 'zoom': 1 },
+        fragmentRE = /^\s*<(\w+|!)[^>]*>/,
+        singleTagRE = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
+        tagExpanderRE = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,
+        rootNodeRE = /^(?:body|html)$/i,
+        capitalRE = /([A-Z])/g,
+
+        // special attributes that should be get/set via method calls
+        methodAttributes = ['val', 'css', 'html', 'text', 'data', 'width', 'height', 'offset'],
+
+        adjacencyOperators = [ 'after', 'prepend', 'before', 'append' ],
+        table = document.createElement('table'),
+        tableRow = document.createElement('tr'),
+        containers = {
+          'tr': document.createElement('tbody'),
+          'tbody': table, 'thead': table, 'tfoot': table,
+          'td': tableRow, 'th': tableRow,
+          '*': document.createElement('div')
+        },
+        readyRE = /complete|loaded|interactive/,
+        classSelectorRE = /^\.([\w-]+)$/,
+        idSelectorRE = /^#([\w-]*)$/,
+        simpleSelectorRE = /^[\w-]*$/,
+        class2type = {},
+        toString = class2type.toString,
+        zepto = {},
+        camelize, uniq,
+        tempParent = document.createElement('div'),
+        propMap = {
+          'tabindex': 'tabIndex',
+          'readonly': 'readOnly',
+          'for': 'htmlFor',
+          'class': 'className',
+          'maxlength': 'maxLength',
+          'cellspacing': 'cellSpacing',
+          'cellpadding': 'cellPadding',
+          'rowspan': 'rowSpan',
+          'colspan': 'colSpan',
+          'usemap': 'useMap',
+          'frameborder': 'frameBorder',
+          'contenteditable': 'contentEditable'
+        },
+        isArray = Array.isArray ||
+          function(object){ return object instanceof Array }
+
+      zepto.matches = function(element, selector) {
+        if (!selector || !element || element.nodeType !== 1) return false
+        var matchesSelector = element.webkitMatchesSelector || element.mozMatchesSelector ||
+                              element.oMatchesSelector || element.matchesSelector
+        if (matchesSelector) return matchesSelector.call(element, selector)
+        // fall back to performing a selector:
+        var match, parent = element.parentNode, temp = !parent
+        if (temp) (parent = tempParent).appendChild(element)
+        match = ~zepto.qsa(parent, selector).indexOf(element)
+        temp && tempParent.removeChild(element)
+        return match
+      }
+
+      function type(obj) {
+        return obj == null ? String(obj) :
+          class2type[toString.call(obj)] || "object"
+      }
+
+      function isFunction(value) { return type(value) == "function" }
+      function isWindow(obj)     { return obj != null && obj == obj.window }
+      function isDocument(obj)   { return obj != null && obj.nodeType == obj.DOCUMENT_NODE }
+      function isObject(obj)     { return type(obj) == "object" }
+      function isPlainObject(obj) {
+        return isObject(obj) && !isWindow(obj) && Object.getPrototypeOf(obj) == Object.prototype
+      }
+      function likeArray(obj) { return typeof obj.length == 'number' }
+
+      function compact(array) { return filter.call(array, function(item){ return item != null }) }
+      function flatten(array) { return array.length > 0 ? $.fn.concat.apply([], array) : array }
+      camelize = function(str){ return str.replace(/-+(.)?/g, function(match, chr){ return chr ? chr.toUpperCase() : '' }) }
+      function dasherize(str) {
+        return str.replace(/::/g, '/')
+               .replace(/([A-Z]+)([A-Z][a-z])/g, '$1_$2')
+               .replace(/([a-z\d])([A-Z])/g, '$1_$2')
+               .replace(/_/g, '-')
+               .toLowerCase()
+      }
+      uniq = function(array){ return filter.call(array, function(item, idx){ return array.indexOf(item) == idx }) }
+
+      function classRE(name) {
+        return name in classCache ?
+          classCache[name] : (classCache[name] = new RegExp('(^|\\s)' + name + '(\\s|$)'))
+      }
+
+      function maybeAddPx(name, value) {
+        return (typeof value == "number" && !cssNumber[dasherize(name)]) ? value + "px" : value
+      }
+
+      function defaultDisplay(nodeName) {
+        var element, display
+        if (!elementDisplay[nodeName]) {
+          element = document.createElement(nodeName)
+          document.body.appendChild(element)
+          display = getComputedStyle(element, '').getPropertyValue("display")
+          element.parentNode.removeChild(element)
+          display == "none" && (display = "block")
+          elementDisplay[nodeName] = display
+        }
+        return elementDisplay[nodeName]
+      }
+
+      function children(element) {
+        return 'children' in element ?
+          slice.call(element.children) :
+          $.map(element.childNodes, function(node){ if (node.nodeType == 1) return node })
+      }
+
+      // `$.zepto.fragment` takes a html string and an optional tag name
+      // to generate DOM nodes nodes from the given html string.
+      // The generated DOM nodes are returned as an array.
+      // This function can be overriden in plugins for example to make
+      // it compatible with browsers that don't support the DOM fully.
+      zepto.fragment = function(html, name, properties) {
+        var dom, nodes, container
+
+        // A special case optimization for a single tag
+        if (singleTagRE.test(html)) dom = $(document.createElement(RegExp.$1))
+
+        if (!dom) {
+          if (html.replace) html = html.replace(tagExpanderRE, "<$1></$2>")
+          if (name === undefined) name = fragmentRE.test(html) && RegExp.$1
+          if (!(name in containers)) name = '*'
+
+          container = containers[name]
+          container.innerHTML = '' + html
+          dom = $.each(slice.call(container.childNodes), function(){
+            container.removeChild(this)
+          })
+        }
+
+        if (isPlainObject(properties)) {
+          nodes = $(dom)
+          $.each(properties, function(key, value) {
+            if (methodAttributes.indexOf(key) > -1) nodes[key](value)
+            else nodes.attr(key, value)
+          })
+        }
+
+        return dom
+      }
+
+      // `$.zepto.Z` swaps out the prototype of the given `dom` array
+      // of nodes with `$.fn` and thus supplying all the Zepto functions
+      // to the array. Note that `__proto__` is not supported on Internet
+      // Explorer. This method can be overriden in plugins.
+      zepto.Z = function(dom, selector) {
+        dom = dom || []
+        dom.__proto__ = $.fn
+        dom.selector = selector || ''
+        return dom
+      }
+
+      // `$.zepto.isZ` should return `true` if the given object is a Zepto
+      // collection. This method can be overriden in plugins.
+      zepto.isZ = function(object) {
+        return object instanceof zepto.Z
+      }
+
+      // `$.zepto.init` is Zepto's counterpart to jQuery's `$.fn.init` and
+      // takes a CSS selector and an optional context (and handles various
+      // special cases).
+      // This method can be overriden in plugins.
+      zepto.init = function(selector, context) {
+        var dom
+        // If nothing given, return an empty Zepto collection
+        if (!selector) return zepto.Z()
+        // Optimize for string selectors
+        else if (typeof selector == 'string') {
+          selector = selector.trim()
+          // If it's a html fragment, create nodes from it
+          // Note: In both Chrome 21 and Firefox 15, DOM error 12
+          // is thrown if the fragment doesn't begin with <
+          if (selector[0] == '<' && fragmentRE.test(selector))
+            dom = zepto.fragment(selector, RegExp.$1, context), selector = null
+          // If there's a context, create a collection on that context first, and select
+          // nodes from there
+          else if (context !== undefined) return $(context).find(selector)
+          // If it's a CSS selector, use it to select nodes.
+          else dom = zepto.qsa(document, selector)
+        }
+        // If a function is given, call it when the DOM is ready
+        else if (isFunction(selector)) return $(document).ready(selector)
+        // If a Zepto collection is given, just return it
+        else if (zepto.isZ(selector)) return selector
+        else {
+          // normalize array if an array of nodes is given
+          if (isArray(selector)) dom = compact(selector)
+          // Wrap DOM nodes.
+          else if (isObject(selector))
+            dom = [selector], selector = null
+          // If it's a html fragment, create nodes from it
+          else if (fragmentRE.test(selector))
+            dom = zepto.fragment(selector.trim(), RegExp.$1, context), selector = null
+          // If there's a context, create a collection on that context first, and select
+          // nodes from there
+          else if (context !== undefined) return $(context).find(selector)
+          // And last but no least, if it's a CSS selector, use it to select nodes.
+          else dom = zepto.qsa(document, selector)
+        }
+        // create a new Zepto collection from the nodes found
+        return zepto.Z(dom, selector)
+      }
+
+      // `$` will be the base `Zepto` object. When calling this
+      // function just call `$.zepto.init, which makes the implementation
+      // details of selecting nodes and creating Zepto collections
+      // patchable in plugins.
+      $ = function(selector, context){
+        return zepto.init(selector, context)
+      }
+
+      function extend(target, source, deep) {
+        for (key in source)
+          if (deep && (isPlainObject(source[key]) || isArray(source[key]))) {
+            if (isPlainObject(source[key]) && !isPlainObject(target[key]))
+              target[key] = {}
+            if (isArray(source[key]) && !isArray(target[key]))
+              target[key] = []
+            extend(target[key], source[key], deep)
+          }
+          else if (source[key] !== undefined) target[key] = source[key]
+      }
+
+      // Copy all but undefined properties from one or more
+      // objects to the `target` object.
+      $.extend = function(target){
+        var deep, args = slice.call(arguments, 1)
+        if (typeof target == 'boolean') {
+          deep = target
+          target = args.shift()
+        }
+        args.forEach(function(arg){ extend(target, arg, deep) })
+        return target
+      }
+
+      // `$.zepto.qsa` is Zepto's CSS selector implementation which
+      // uses `document.querySelectorAll` and optimizes for some special cases, like `#id`.
+      // This method can be overriden in plugins.
+      zepto.qsa = function(element, selector){
+        var found,
+            maybeID = selector[0] == '#',
+            maybeClass = !maybeID && selector[0] == '.',
+            nameOnly = maybeID || maybeClass ? selector.slice(1) : selector, // Ensure that a 1 char tag name still gets checked
+            isSimple = simpleSelectorRE.test(nameOnly)
+        return (isDocument(element) && isSimple && maybeID) ?
+          ( (found = element.getElementById(nameOnly)) ? [found] : [] ) :
+          (element.nodeType !== 1 && element.nodeType !== 9) ? [] :
+          slice.call(
+            isSimple && !maybeID ?
+              maybeClass ? element.getElementsByClassName(nameOnly) : // If it's simple, it could be a class
+              element.getElementsByTagName(selector) : // Or a tag
+              element.querySelectorAll(selector) // Or it's not simple, and we need to query all
+          )
+      }
+
+      function filtered(nodes, selector) {
+        return selector == null ? $(nodes) : $(nodes).filter(selector)
+      }
+
+      $.contains = function(parent, node) {
+        return parent !== node && parent.contains(node)
+      }
+
+      function funcArg(context, arg, idx, payload) {
+        return isFunction(arg) ? arg.call(context, idx, payload) : arg
+      }
+
+      function setAttribute(node, name, value) {
+        value == null ? node.removeAttribute(name) : node.setAttribute(name, value)
+      }
+
+      // access className property while respecting SVGAnimatedString
+      function className(node, value){
+        var klass = node.className,
+            svg   = klass && klass.baseVal !== undefined
+
+        if (value === undefined) return svg ? klass.baseVal : klass
+        svg ? (klass.baseVal = value) : (node.className = value)
+      }
+
+      // "true"  => true
+      // "false" => false
+      // "null"  => null
+      // "42"    => 42
+      // "42.5"  => 42.5
+      // "08"    => "08"
+      // JSON    => parse if valid
+      // String  => self
+      function deserializeValue(value) {
+        var num
+        try {
+          return value ?
+            value == "true" ||
+            ( value == "false" ? false :
+              value == "null" ? null :
+              !/^0/.test(value) && !isNaN(num = Number(value)) ? num :
+              /^[\[\{]/.test(value) ? $.parseJSON(value) :
+              value )
+            : value
+        } catch(e) {
+          return value
+        }
+      }
+
+      $.type = type
+      $.isFunction = isFunction
+      $.isWindow = isWindow
+      $.isArray = isArray
+      $.isPlainObject = isPlainObject
+
+      $.isEmptyObject = function(obj) {
+        var name
+        for (name in obj) return false
+        return true
+      }
+
+      $.inArray = function(elem, array, i){
+        return emptyArray.indexOf.call(array, elem, i)
+      }
+
+      $.camelCase = camelize
+      $.trim = function(str) {
+        return str == null ? "" : String.prototype.trim.call(str)
+      }
+
+      // plugin compatibility
+      $.uuid = 0
+      $.support = { }
+      $.expr = { }
+
+      $.map = function(elements, callback){
+        var value, values = [], i, key
+        if (likeArray(elements))
+          for (i = 0; i < elements.length; i++) {
+            value = callback(elements[i], i)
+            if (value != null) values.push(value)
+          }
+        else
+          for (key in elements) {
+            value = callback(elements[key], key)
+            if (value != null) values.push(value)
+          }
+        return flatten(values)
+      }
+
+      $.each = function(elements, callback){
+        var i, key
+        if (likeArray(elements)) {
+          for (i = 0; i < elements.length; i++)
+            if (callback.call(elements[i], i, elements[i]) === false) return elements
+        } else {
+          for (key in elements)
+            if (callback.call(elements[key], key, elements[key]) === false) return elements
+        }
+
+        return elements
+      }
+
+      $.grep = function(elements, callback){
+        return filter.call(elements, callback)
+      }
+
+      if (window.JSON) $.parseJSON = JSON.parse
+
+      // Populate the class2type map
+      $.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
+        class2type[ "[object " + name + "]" ] = name.toLowerCase()
+      })
+
+      // Define methods that will be available on all
+      // Zepto collections
+      $.fn = {
+        // Because a collection acts like an array
+        // copy over these useful array functions.
+        forEach: emptyArray.forEach,
+        reduce: emptyArray.reduce,
+        push: emptyArray.push,
+        sort: emptyArray.sort,
+        indexOf: emptyArray.indexOf,
+        concat: emptyArray.concat,
+
+        // `map` and `slice` in the jQuery API work differently
+        // from their array counterparts
+        map: function(fn){
+          return $($.map(this, function(el, i){ return fn.call(el, i, el) }))
+        },
+        slice: function(){
+          return $(slice.apply(this, arguments))
+        },
+
+        ready: function(callback){
+          // need to check if document.body exists for IE as that browser reports
+          // document ready when it hasn't yet created the body element
+          if (readyRE.test(document.readyState) && document.body) callback($)
+          else document.addEventListener('DOMContentLoaded', function(){ callback($) }, false)
+          return this
+        },
+        get: function(idx){
+          return idx === undefined ? slice.call(this) : this[idx >= 0 ? idx : idx + this.length]
+        },
+        toArray: function(){ return this.get() },
+        size: function(){
+          return this.length
+        },
+        remove: function(){
+          return this.each(function(){
+            if (this.parentNode != null)
+              this.parentNode.removeChild(this)
+          })
+        },
+        each: function(callback){
+          emptyArray.every.call(this, function(el, idx){
+            return callback.call(el, idx, el) !== false
+          })
+          return this
+        },
+        filter: function(selector){
+          if (isFunction(selector)) return this.not(this.not(selector))
+          return $(filter.call(this, function(element){
+            return zepto.matches(element, selector)
+          }))
+        },
+        add: function(selector,context){
+          return $(uniq(this.concat($(selector,context))))
+        },
+        is: function(selector){
+          return this.length > 0 && zepto.matches(this[0], selector)
+        },
+        not: function(selector){
+          var nodes=[]
+          if (isFunction(selector) && selector.call !== undefined)
+            this.each(function(idx){
+              if (!selector.call(this,idx)) nodes.push(this)
+            })
+          else {
+            var excludes = typeof selector == 'string' ? this.filter(selector) :
+              (likeArray(selector) && isFunction(selector.item)) ? slice.call(selector) : $(selector)
+            this.forEach(function(el){
+              if (excludes.indexOf(el) < 0) nodes.push(el)
+            })
+          }
+          return $(nodes)
+        },
+        has: function(selector){
+          return this.filter(function(){
+            return isObject(selector) ?
+              $.contains(this, selector) :
+              $(this).find(selector).size()
+          })
+        },
+        eq: function(idx){
+          return idx === -1 ? this.slice(idx) : this.slice(idx, + idx + 1)
+        },
+        first: function(){
+          var el = this[0]
+          return el && !isObject(el) ? el : $(el)
+        },
+        last: function(){
+          var el = this[this.length - 1]
+          return el && !isObject(el) ? el : $(el)
+        },
+        find: function(selector){
+          var result, $this = this
+          if (typeof selector == 'object')
+            result = $(selector).filter(function(){
+              var node = this
+              return emptyArray.some.call($this, function(parent){
+                return $.contains(parent, node)
+              })
+            })
+          else if (this.length == 1) result = $(zepto.qsa(this[0], selector))
+          else result = this.map(function(){ return zepto.qsa(this, selector) })
+          return result
+        },
+        closest: function(selector, context){
+          var node = this[0], collection = false
+          if (typeof selector == 'object') collection = $(selector)
+          while (node && !(collection ? collection.indexOf(node) >= 0 : zepto.matches(node, selector)))
+            node = node !== context && !isDocument(node) && node.parentNode
+          return $(node)
+        },
+        parents: function(selector){
+          var ancestors = [], nodes = this
+          while (nodes.length > 0)
+            nodes = $.map(nodes, function(node){
+              if ((node = node.parentNode) && !isDocument(node) && ancestors.indexOf(node) < 0) {
+                ancestors.push(node)
+                return node
+              }
+            })
+          return filtered(ancestors, selector)
+        },
+        parent: function(selector){
+          return filtered(uniq(this.pluck('parentNode')), selector)
+        },
+        children: function(selector){
+          return filtered(this.map(function(){ return children(this) }), selector)
+        },
+        contents: function() {
+          return this.map(function() { return slice.call(this.childNodes) })
+        },
+        siblings: function(selector){
+          return filtered(this.map(function(i, el){
+            return filter.call(children(el.parentNode), function(child){ return child!==el })
+          }), selector)
+        },
+        empty: function(){
+          return this.each(function(){ this.innerHTML = '' })
+        },
+        // `pluck` is borrowed from Prototype.js
+        pluck: function(property){
+          return $.map(this, function(el){ return el[property] })
+        },
+        show: function(){
+          return this.each(function(){
+            this.style.display == "none" && (this.style.display = '')
+            if (getComputedStyle(this, '').getPropertyValue("display") == "none")
+              this.style.display = defaultDisplay(this.nodeName)
+          })
+        },
+        replaceWith: function(newContent){
+          return this.before(newContent).remove()
+        },
+        wrap: function(structure){
+          var func = isFunction(structure)
+          if (this[0] && !func)
+            var dom   = $(structure).get(0),
+                clone = dom.parentNode || this.length > 1
+
+          return this.each(function(index){
+            $(this).wrapAll(
+              func ? structure.call(this, index) :
+                clone ? dom.cloneNode(true) : dom
+            )
+          })
+        },
+        wrapAll: function(structure){
+          if (this[0]) {
+            $(this[0]).before(structure = $(structure))
+            var children
+            // drill down to the inmost element
+            while ((children = structure.children()).length) structure = children.first()
+            $(structure).append(this)
+          }
+          return this
+        },
+        wrapInner: function(structure){
+          var func = isFunction(structure)
+          return this.each(function(index){
+            var self = $(this), contents = self.contents(),
+                dom  = func ? structure.call(this, index) : structure
+            contents.length ? contents.wrapAll(dom) : self.append(dom)
+          })
+        },
+        unwrap: function(){
+          this.parent().each(function(){
+            $(this).replaceWith($(this).children())
+          })
+          return this
+        },
+        clone: function(){
+          return this.map(function(){ return this.cloneNode(true) })
+        },
+        hide: function(){
+          return this.css("display", "none")
+        },
+        toggle: function(setting){
+          return this.each(function(){
+            var el = $(this)
+            ;(setting === undefined ? el.css("display") == "none" : setting) ? el.show() : el.hide()
+          })
+        },
+        prev: function(selector){ return $(this.pluck('previousElementSibling')).filter(selector || '*') },
+        next: function(selector){ return $(this.pluck('nextElementSibling')).filter(selector || '*') },
+        html: function(html){
+          return arguments.length === 0 ?
+            (this.length > 0 ? this[0].innerHTML : null) :
+            this.each(function(idx){
+              var originHtml = this.innerHTML
+              $(this).empty().append( funcArg(this, html, idx, originHtml) )
+            })
+        },
+        text: function(text){
+          return arguments.length === 0 ?
+            (this.length > 0 ? this[0].textContent : null) :
+            this.each(function(){ this.textContent = (text === undefined) ? '' : ''+text })
+        },
+        attr: function(name, value){
+          var result
+          return (typeof name == 'string' && value === undefined) ?
+            (this.length == 0 || this[0].nodeType !== 1 ? undefined :
+              (name == 'value' && this[0].nodeName == 'INPUT') ? this.val() :
+              (!(result = this[0].getAttribute(name)) && name in this[0]) ? this[0][name] : result
+            ) :
+            this.each(function(idx){
+              if (this.nodeType !== 1) return
+              if (isObject(name)) for (key in name) setAttribute(this, key, name[key])
+              else setAttribute(this, name, funcArg(this, value, idx, this.getAttribute(name)))
+            })
+        },
+        removeAttr: function(name){
+          return this.each(function(){ this.nodeType === 1 && setAttribute(this, name) })
+        },
+        prop: function(name, value){
+          name = propMap[name] || name
+          return (value === undefined) ?
+            (this[0] && this[0][name]) :
+            this.each(function(idx){
+              this[name] = funcArg(this, value, idx, this[name])
+            })
+        },
+        data: function(name, value){
+          var data = this.attr('data-' + name.replace(capitalRE, '-$1').toLowerCase(), value)
+          return data !== null ? deserializeValue(data) : undefined
+        },
+        val: function(value){
+          return arguments.length === 0 ?
+            (this[0] && (this[0].multiple ?
+               $(this[0]).find('option').filter(function(){ return this.selected }).pluck('value') :
+               this[0].value)
+            ) :
+            this.each(function(idx){
+              this.value = funcArg(this, value, idx, this.value)
+            })
+        },
+        offset: function(coordinates){
+          if (coordinates) return this.each(function(index){
+            var $this = $(this),
+                coords = funcArg(this, coordinates, index, $this.offset()),
+                parentOffset = $this.offsetParent().offset(),
+                props = {
+                  top:  coords.top  - parentOffset.top,
+                  left: coords.left - parentOffset.left
+                }
+
+            if ($this.css('position') == 'static') props['position'] = 'relative'
+            $this.css(props)
+          })
+          if (this.length==0) return null
+          var obj = this[0].getBoundingClientRect()
+          return {
+            left: obj.left + window.pageXOffset,
+            top: obj.top + window.pageYOffset,
+            width: Math.round(obj.width),
+            height: Math.round(obj.height)
+          }
+        },
+        css: function(property, value){
+          if (arguments.length < 2) {
+            var element = this[0], computedStyle = getComputedStyle(element, '')
+            if(!element) return
+            if (typeof property == 'string')
+              return element.style[camelize(property)] || computedStyle.getPropertyValue(property)
+            else if (isArray(property)) {
+              var props = {}
+              $.each(isArray(property) ? property: [property], function(_, prop){
+                props[prop] = (element.style[camelize(prop)] || computedStyle.getPropertyValue(prop))
+              })
+              return props
+            }
+          }
+
+          var css = ''
+          if (type(property) == 'string') {
+            if (!value && value !== 0)
+              this.each(function(){ this.style.removeProperty(dasherize(property)) })
+            else
+              css = dasherize(property) + ":" + maybeAddPx(property, value)
+          } else {
+            for (key in property)
+              if (!property[key] && property[key] !== 0)
+                this.each(function(){ this.style.removeProperty(dasherize(key)) })
+              else
+                css += dasherize(key) + ':' + maybeAddPx(key, property[key]) + ';'
+          }
+
+          return this.each(function(){ this.style.cssText += ';' + css })
+        },
+        index: function(element){
+          return element ? this.indexOf($(element)[0]) : this.parent().children().indexOf(this[0])
+        },
+        hasClass: function(name){
+          if (!name) return false
+          return emptyArray.some.call(this, function(el){
+            return this.test(className(el))
+          }, classRE(name))
+        },
+        addClass: function(name){
+          if (!name) return this
+          return this.each(function(idx){
+            classList = []
+            var cls = className(this), newName = funcArg(this, name, idx, cls)
+            newName.split(/\s+/g).forEach(function(klass){
+              if (!$(this).hasClass(klass)) classList.push(klass)
+            }, this)
+            classList.length && className(this, cls + (cls ? " " : "") + classList.join(" "))
+          })
+        },
+        removeClass: function(name){
+          return this.each(function(idx){
+            if (name === undefined) return className(this, '')
+            classList = className(this)
+            funcArg(this, name, idx, classList).split(/\s+/g).forEach(function(klass){
+              classList = classList.replace(classRE(klass), " ")
+            })
+            className(this, classList.trim())
+          })
+        },
+        toggleClass: function(name, when){
+          if (!name) return this
+          return this.each(function(idx){
+            var $this = $(this), names = funcArg(this, name, idx, className(this))
+            names.split(/\s+/g).forEach(function(klass){
+              (when === undefined ? !$this.hasClass(klass) : when) ?
+                $this.addClass(klass) : $this.removeClass(klass)
+            })
+          })
+        },
+        scrollTop: function(value){
+          if (!this.length) return
+          var hasScrollTop = 'scrollTop' in this[0]
+          if (value === undefined) return hasScrollTop ? this[0].scrollTop : this[0].pageYOffset
+          return this.each(hasScrollTop ?
+            function(){ this.scrollTop = value } :
+            function(){ this.scrollTo(this.scrollX, value) })
+        },
+        scrollLeft: function(value){
+          if (!this.length) return
+          var hasScrollLeft = 'scrollLeft' in this[0]
+          if (value === undefined) return hasScrollLeft ? this[0].scrollLeft : this[0].pageXOffset
+          return this.each(hasScrollLeft ?
+            function(){ this.scrollLeft = value } :
+            function(){ this.scrollTo(value, this.scrollY) })
+        },
+        position: function() {
+          if (!this.length) return
+
+          var elem = this[0],
+            // Get *real* offsetParent
+            offsetParent = this.offsetParent(),
+            // Get correct offsets
+            offset       = this.offset(),
+            parentOffset = rootNodeRE.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset()
+
+          // Subtract element margins
+          // note: when an element has margin: auto the offsetLeft and marginLeft
+          // are the same in Safari causing offset.left to incorrectly be 0
+          offset.top  -= parseFloat( $(elem).css('margin-top') ) || 0
+          offset.left -= parseFloat( $(elem).css('margin-left') ) || 0
+
+          // Add offsetParent borders
+          parentOffset.top  += parseFloat( $(offsetParent[0]).css('border-top-width') ) || 0
+          parentOffset.left += parseFloat( $(offsetParent[0]).css('border-left-width') ) || 0
+
+          // Subtract the two offsets
+          return {
+            top:  offset.top  - parentOffset.top,
+            left: offset.left - parentOffset.left
+          }
+        },
+        offsetParent: function() {
+          return this.map(function(){
+            var parent = this.offsetParent || document.body
+            while (parent && !rootNodeRE.test(parent.nodeName) && $(parent).css("position") == "static")
+              parent = parent.offsetParent
+            return parent
+          })
+        }
+      }
+
+      // for now
+      $.fn.detach = $.fn.remove
+
+      // Generate the `width` and `height` functions
+      ;['width', 'height'].forEach(function(dimension){
+        var dimensionProperty =
+          dimension.replace(/./, function(m){ return m[0].toUpperCase() })
+
+        $.fn[dimension] = function(value){
+          var offset, el = this[0]
+          if (value === undefined) return isWindow(el) ? el['inner' + dimensionProperty] :
+            isDocument(el) ? el.documentElement['scroll' + dimensionProperty] :
+            (offset = this.offset()) && offset[dimension]
+          else return this.each(function(idx){
+            el = $(this)
+            el.css(dimension, funcArg(this, value, idx, el[dimension]()))
+          })
+        }
+      })
+
+      function traverseNode(node, fun) {
+        fun(node)
+        for (var key in node.childNodes) traverseNode(node.childNodes[key], fun)
+      }
+
+      // Generate the `after`, `prepend`, `before`, `append`,
+      // `insertAfter`, `insertBefore`, `appendTo`, and `prependTo` methods.
+      adjacencyOperators.forEach(function(operator, operatorIndex) {
+        var inside = operatorIndex % 2 //=> prepend, append
+
+        $.fn[operator] = function(){
+          // arguments can be nodes, arrays of nodes, Zepto objects and HTML strings
+          var argType, nodes = $.map(arguments, function(arg) {
+                argType = type(arg)
+                return argType == "object" || argType == "array" || arg == null ?
+                  arg : zepto.fragment(arg)
+              }),
+              parent, copyByClone = this.length > 1
+          if (nodes.length < 1) return this
+
+          return this.each(function(_, target){
+            parent = inside ? target : target.parentNode
+
+            // convert all methods to a "before" operation
+            target = operatorIndex == 0 ? target.nextSibling :
+                     operatorIndex == 1 ? target.firstChild :
+                     operatorIndex == 2 ? target :
+                     null
+
+            nodes.forEach(function(node){
+              if (copyByClone) node = node.cloneNode(true)
+              else if (!parent) return $(node).remove()
+
+              traverseNode(parent.insertBefore(node, target), function(el){
+                if (el.nodeName != null && el.nodeName.toUpperCase() === 'SCRIPT' &&
+                   (!el.type || el.type === 'text/javascript') && !el.src)
+                  window['eval'].call(window, el.innerHTML)
+              })
+            })
+          })
+        }
+
+        // after    => insertAfter
+        // prepend  => prependTo
+        // before   => insertBefore
+        // append   => appendTo
+        $.fn[inside ? operator+'To' : 'insert'+(operatorIndex ? 'Before' : 'After')] = function(html){
+          $(html)[operator](this)
+          return this
+        }
+      })
+
+      zepto.Z.prototype = $.fn
+
+      // Export internal API functions in the `$.zepto` namespace
+      zepto.uniq = uniq
+      zepto.deserializeValue = deserializeValue
+      $.zepto = zepto
+
+      return $
+    })()
+
+    window.Zepto = Zepto
+    window.$ === undefined && (window.$ = Zepto)
+
+    ;(function($){
+      var $$ = $.zepto.qsa, _zid = 1, undefined,
+          slice = Array.prototype.slice,
+          isFunction = $.isFunction,
+          isString = function(obj){ return typeof obj == 'string' },
+          handlers = {},
+          specialEvents={},
+          focusinSupported = 'onfocusin' in window,
+          focus = { focus: 'focusin', blur: 'focusout' },
+          hover = { mouseenter: 'mouseover', mouseleave: 'mouseout' }
+
+      specialEvents.click = specialEvents.mousedown = specialEvents.mouseup = specialEvents.mousemove = 'MouseEvents'
+
+      function zid(element) {
+        return element._zid || (element._zid = _zid++)
+      }
+      function findHandlers(element, event, fn, selector) {
+        event = parse(event)
+        if (event.ns) var matcher = matcherFor(event.ns)
+        return (handlers[zid(element)] || []).filter(function(handler) {
+          return handler
+            && (!event.e  || handler.e == event.e)
+            && (!event.ns || matcher.test(handler.ns))
+            && (!fn       || zid(handler.fn) === zid(fn))
+            && (!selector || handler.sel == selector)
+        })
+      }
+      function parse(event) {
+        var parts = ('' + event).split('.')
+        return {e: parts[0], ns: parts.slice(1).sort().join(' ')}
+      }
+      function matcherFor(ns) {
+        return new RegExp('(?:^| )' + ns.replace(' ', ' .* ?') + '(?: |$)')
+      }
+
+      function eventCapture(handler, captureSetting) {
+        return handler.del &&
+          (!focusinSupported && (handler.e in focus)) ||
+          !!captureSetting
+      }
+
+      function realEvent(type) {
+        return hover[type] || (focusinSupported && focus[type]) || type
+      }
+
+      function add(element, events, fn, data, selector, delegator, capture){
+        var id = zid(element), set = (handlers[id] || (handlers[id] = []))
+        events.split(/\s/).forEach(function(event){
+          if (event == 'ready') return $(document).ready(fn)
+          var handler   = parse(event)
+          handler.fn    = fn
+          handler.sel   = selector
+          // emulate mouseenter, mouseleave
+          if (handler.e in hover) fn = function(e){
+            var related = e.relatedTarget
+            if (!related || (related !== this && !$.contains(this, related)))
+              return handler.fn.apply(this, arguments)
+          }
+          handler.del   = delegator
+          var callback  = delegator || fn
+          handler.proxy = function(e){
+            e = compatible(e)
+            if (e.isImmediatePropagationStopped()) return
+            e.data = data
+            var result = callback.apply(element, e._args == undefined ? [e] : [e].concat(e._args))
+            if (result === false) e.preventDefault(), e.stopPropagation()
+            return result
+          }
+          handler.i = set.length
+          set.push(handler)
+          if ('addEventListener' in element)
+            element.addEventListener(realEvent(handler.e), handler.proxy, eventCapture(handler, capture))
+        })
+      }
+      function remove(element, events, fn, selector, capture){
+        var id = zid(element)
+        ;(events || '').split(/\s/).forEach(function(event){
+          findHandlers(element, event, fn, selector).forEach(function(handler){
+            delete handlers[id][handler.i]
+          if ('removeEventListener' in element)
+            element.removeEventListener(realEvent(handler.e), handler.proxy, eventCapture(handler, capture))
+          })
+        })
+      }
+
+      $.event = { add: add, remove: remove }
+
+      $.proxy = function(fn, context) {
+        if (isFunction(fn)) {
+          var proxyFn = function(){ return fn.apply(context, arguments) }
+          proxyFn._zid = zid(fn)
+          return proxyFn
+        } else if (isString(context)) {
+          return $.proxy(fn[context], fn)
+        } else {
+          throw new TypeError("expected function")
+        }
+      }
+
+      $.fn.bind = function(event, data, callback){
+        return this.on(event, data, callback)
+      }
+      $.fn.unbind = function(event, callback){
+        return this.off(event, callback)
+      }
+      $.fn.one = function(event, selector, data, callback){
+        return this.on(event, selector, data, callback, 1)
+      }
+
+      var returnTrue = function(){return true},
+          returnFalse = function(){return false},
+          ignoreProperties = /^([A-Z]|returnValue$|layer[XY]$)/,
+          eventMethods = {
+            preventDefault: 'isDefaultPrevented',
+            stopImmediatePropagation: 'isImmediatePropagationStopped',
+            stopPropagation: 'isPropagationStopped'
+          }
+
+      function compatible(event, source) {
+        if (source || !event.isDefaultPrevented) {
+          source || (source = event)
+
+          $.each(eventMethods, function(name, predicate) {
+            var sourceMethod = source[name]
+            event[name] = function(){
+              this[predicate] = returnTrue
+              return sourceMethod && sourceMethod.apply(source, arguments)
+            }
+            event[predicate] = returnFalse
+          })
+
+          if (source.defaultPrevented !== undefined ? source.defaultPrevented :
+              'returnValue' in source ? source.returnValue === false :
+              source.getPreventDefault && source.getPreventDefault())
+            event.isDefaultPrevented = returnTrue
+        }
+        return event
+      }
+
+      function createProxy(event) {
+        var key, proxy = { originalEvent: event }
+        for (key in event)
+          if (!ignoreProperties.test(key) && event[key] !== undefined) proxy[key] = event[key]
+
+        return compatible(proxy, event)
+      }
+
+      $.fn.delegate = function(selector, event, callback){
+        return this.on(event, selector, callback)
+      }
+      $.fn.undelegate = function(selector, event, callback){
+        return this.off(event, selector, callback)
+      }
+
+      $.fn.live = function(event, callback){
+        $(document.body).delegate(this.selector, event, callback)
+        return this
+      }
+      $.fn.die = function(event, callback){
+        $(document.body).undelegate(this.selector, event, callback)
+        return this
+      }
+
+      $.fn.on = function(event, selector, data, callback, one){
+        var autoRemove, delegator, $this = this
+        if (event && !isString(event)) {
+          $.each(event, function(type, fn){
+            $this.on(type, selector, data, fn, one)
+          })
+          return $this
+        }
+
+        if (!isString(selector) && !isFunction(callback) && callback !== false)
+          callback = data, data = selector, selector = undefined
+        if (isFunction(data) || data === false)
+          callback = data, data = undefined
+
+        if (callback === false) callback = returnFalse
+
+        return $this.each(function(_, element){
+          if (one) autoRemove = function(e){
+            remove(element, e.type, callback)
+            return callback.apply(this, arguments)
+          }
+
+          if (selector) delegator = function(e){
+            var evt, match = $(e.target).closest(selector, element).get(0)
+            if (match && match !== element) {
+              evt = $.extend(createProxy(e), {currentTarget: match, liveFired: element})
+              return (autoRemove || callback).apply(match, [evt].concat(slice.call(arguments, 1)))
+            }
+          }
+
+          add(element, event, callback, data, selector, delegator || autoRemove)
+        })
+      }
+      $.fn.off = function(event, selector, callback){
+        var $this = this
+        if (event && !isString(event)) {
+          $.each(event, function(type, fn){
+            $this.off(type, selector, fn)
+          })
+          return $this
+        }
+
+        if (!isString(selector) && !isFunction(callback) && callback !== false)
+          callback = selector, selector = undefined
+
+        if (callback === false) callback = returnFalse
+
+        return $this.each(function(){
+          remove(this, event, callback, selector)
+        })
+      }
+
+      $.fn.trigger = function(event, args){
+        event = (isString(event) || $.isPlainObject(event)) ? $.Event(event) : compatible(event)
+        event._args = args
+        return this.each(function(){
+          // items in the collection might not be DOM elements
+          if('dispatchEvent' in this) this.dispatchEvent(event)
+          else $(this).triggerHandler(event, args)
+        })
+      }
+
+      // triggers event handlers on current element just as if an event occurred,
+      // doesn't trigger an actual event, doesn't bubble
+      $.fn.triggerHandler = function(event, args){
+        var e, result
+        this.each(function(i, element){
+          e = createProxy(isString(event) ? $.Event(event) : event)
+          e._args = args
+          e.target = element
+          $.each(findHandlers(element, event.type || event), function(i, handler){
+            result = handler.proxy(e)
+            if (e.isImmediatePropagationStopped()) return false
+          })
+        })
+        return result
+      }
+
+      // shortcut methods for `.bind(event, fn)` for each event type
+      ;('focusin focusout load resize scroll unload click dblclick '+
+      'mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave '+
+      'change select keydown keypress keyup error').split(' ').forEach(function(event) {
+        $.fn[event] = function(callback) {
+          return callback ?
+            this.bind(event, callback) :
+            this.trigger(event)
+        }
+      })
+
+      ;['focus', 'blur'].forEach(function(name) {
+        $.fn[name] = function(callback) {
+          if (callback) this.bind(name, callback)
+          else this.each(function(){
+            try { this[name]() }
+            catch(e) {}
+          })
+          return this
+        }
+      })
+
+      $.Event = function(type, props) {
+        if (!isString(type)) props = type, type = props.type
+        var event = document.createEvent(specialEvents[type] || 'Events'), bubbles = true
+        if (props) for (var name in props) (name == 'bubbles') ? (bubbles = !!props[name]) : (event[name] = props[name])
+        event.initEvent(type, bubbles, true)
+        return compatible(event)
+      }
+
+    })(Zepto)
+
+    ;(function($){
+      var jsonpID = 0,
+          document = window.document,
+          key,
+          name,
+          rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
+          scriptTypeRE = /^(?:text|application)\/javascript/i,
+          xmlTypeRE = /^(?:text|application)\/xml/i,
+          jsonType = 'application/json',
+          htmlType = 'text/html',
+          blankRE = /^\s*$/
+
+      // trigger a custom event and return false if it was cancelled
+      function triggerAndReturn(context, eventName, data) {
+        var event = $.Event(eventName)
+        $(context).trigger(event, data)
+        return !event.isDefaultPrevented()
+      }
+
+      // trigger an Ajax "global" event
+      function triggerGlobal(settings, context, eventName, data) {
+        if (settings.global) return triggerAndReturn(context || document, eventName, data)
+      }
+
+      // Number of active Ajax requests
+      $.active = 0
+
+      function ajaxStart(settings) {
+        if (settings.global && $.active++ === 0) triggerGlobal(settings, null, 'ajaxStart')
+      }
+      function ajaxStop(settings) {
+        if (settings.global && !(--$.active)) triggerGlobal(settings, null, 'ajaxStop')
+      }
+
+      // triggers an extra global event "ajaxBeforeSend" that's like "ajaxSend" but cancelable
+      function ajaxBeforeSend(xhr, settings) {
+        var context = settings.context
+        if (settings.beforeSend.call(context, xhr, settings) === false ||
+            triggerGlobal(settings, context, 'ajaxBeforeSend', [xhr, settings]) === false)
+          return false
+
+        triggerGlobal(settings, context, 'ajaxSend', [xhr, settings])
+      }
+      function ajaxSuccess(data, xhr, settings, deferred) {
+        var context = settings.context, status = 'success'
+        settings.success.call(context, data, status, xhr)
+        if (deferred) deferred.resolveWith(context, [data, status, xhr])
+        triggerGlobal(settings, context, 'ajaxSuccess', [xhr, settings, data])
+        ajaxComplete(status, xhr, settings)
+      }
+      // type: "timeout", "error", "abort", "parsererror"
+      function ajaxError(error, type, xhr, settings, deferred) {
+        var context = settings.context
+        settings.error.call(context, xhr, type, error)
+        if (deferred) deferred.rejectWith(context, [xhr, type, error])
+        triggerGlobal(settings, context, 'ajaxError', [xhr, settings, error || type])
+        ajaxComplete(type, xhr, settings)
+      }
+      // status: "success", "notmodified", "error", "timeout", "abort", "parsererror"
+      function ajaxComplete(status, xhr, settings) {
+        var context = settings.context
+        settings.complete.call(context, xhr, status)
+        triggerGlobal(settings, context, 'ajaxComplete', [xhr, settings])
+        ajaxStop(settings)
+      }
+
+      // Empty function, used as default callback
+      function empty() {}
+
+      $.ajaxJSONP = function(options, deferred){
+        if (!('type' in options)) return $.ajax(options)
+
+        var _callbackName = options.jsonpCallback,
+          callbackName = ($.isFunction(_callbackName) ?
+            _callbackName() : _callbackName) || ('jsonp' + (++jsonpID)),
+          script = document.createElement('script'),
+          originalCallback = window[callbackName],
+          responseData,
+          abort = function(errorType) {
+            $(script).triggerHandler('error', errorType || 'abort')
+          },
+          xhr = { abort: abort }, abortTimeout
+
+        if (deferred) deferred.promise(xhr)
+
+        $(script).on('load error', function(e, errorType){
+          clearTimeout(abortTimeout)
+          $(script).off().remove()
+
+          if (e.type == 'error' || !responseData) {
+            ajaxError(null, errorType || 'error', xhr, options, deferred)
+          } else {
+            ajaxSuccess(responseData[0], xhr, options, deferred)
+          }
+
+          window[callbackName] = originalCallback
+          if (responseData && $.isFunction(originalCallback))
+            originalCallback(responseData[0])
+
+          originalCallback = responseData = undefined
+        })
+
+        if (ajaxBeforeSend(xhr, options) === false) {
+          abort('abort')
+          return xhr
+        }
+
+        window[callbackName] = function(){
+          responseData = arguments
+        }
+
+        script.src = options.url.replace(/\?(.+)=\?/, '?$1=' + callbackName)
+        document.head.appendChild(script)
+
+        if (options.timeout > 0) abortTimeout = setTimeout(function(){
+          abort('timeout')
+        }, options.timeout)
+
+        return xhr
+      }
+
+      $.ajaxSettings = {
+        // Default type of request
+        type: 'GET',
+        // Callback that is executed before request
+        beforeSend: empty,
+        // Callback that is executed if the request succeeds
+        success: empty,
+        // Callback that is executed the the server drops error
+        error: empty,
+        // Callback that is executed on request complete (both: error and success)
+        complete: empty,
+        // The context for the callbacks
+        context: null,
+        // Whether to trigger "global" Ajax events
+        global: true,
+        // Transport
+        xhr: function () {
+          return new window.XMLHttpRequest()
+        },
+        // MIME types mapping
+        // IIS returns Javascript as "application/x-javascript"
+        accepts: {
+          script: 'text/javascript, application/javascript, application/x-javascript',
+          json:   jsonType,
+          xml:    'application/xml, text/xml',
+          html:   htmlType,
+          text:   'text/plain'
+        },
+        // Whether the request is to another domain
+        crossDomain: false,
+        // Default timeout
+        timeout: 0,
+        // Whether data should be serialized to string
+        processData: true,
+        // Whether the browser should be allowed to cache GET responses
+        cache: true
+      }
+
+      function mimeToDataType(mime) {
+        if (mime) mime = mime.split(';', 2)[0]
+        return mime && ( mime == htmlType ? 'html' :
+          mime == jsonType ? 'json' :
+          scriptTypeRE.test(mime) ? 'script' :
+          xmlTypeRE.test(mime) && 'xml' ) || 'text'
+      }
+
+      function appendQuery(url, query) {
+        if (query == '') return url
+        return (url + '&' + query).replace(/[&?]{1,2}/, '?')
+      }
+
+      // serialize payload and append it to the URL for GET requests
+      function serializeData(options) {
+        if (options.processData && options.data && $.type(options.data) != "string")
+          options.data = $.param(options.data, options.traditional)
+        if (options.data && (!options.type || options.type.toUpperCase() == 'GET'))
+          options.url = appendQuery(options.url, options.data), options.data = undefined
+      }
+
+      $.ajax = function(options){
+        var settings = $.extend({}, options || {}),
+            deferred = $.Deferred && $.Deferred()
+        for (key in $.ajaxSettings) if (settings[key] === undefined) settings[key] = $.ajaxSettings[key]
+
+        ajaxStart(settings)
+
+        if (!settings.crossDomain) settings.crossDomain = /^([\w-]+:)?\/\/([^\/]+)/.test(settings.url) &&
+          RegExp.$2 != window.location.host
+
+        if (!settings.url) settings.url = window.location.toString()
+        serializeData(settings)
+        if (settings.cache === false) settings.url = appendQuery(settings.url, '_=' + Date.now())
+
+        var dataType = settings.dataType, hasPlaceholder = /\?.+=\?/.test(settings.url)
+        if (dataType == 'jsonp' || hasPlaceholder) {
+          if (!hasPlaceholder)
+            settings.url = appendQuery(settings.url,
+              settings.jsonp ? (settings.jsonp + '=?') : settings.jsonp === false ? '' : 'callback=?')
+          return $.ajaxJSONP(settings, deferred)
+        }
+
+        var mime = settings.accepts[dataType],
+            headers = { },
+            setHeader = function(name, value) { headers[name.toLowerCase()] = [name, value] },
+            protocol = /^([\w-]+:)\/\//.test(settings.url) ? RegExp.$1 : window.location.protocol,
+            xhr = settings.xhr(),
+            nativeSetHeader = xhr.setRequestHeader,
+            abortTimeout
+
+        if (deferred) deferred.promise(xhr)
+
+        if (!settings.crossDomain) setHeader('X-Requested-With', 'XMLHttpRequest')
+        setHeader('Accept', mime || '*/*')
+        if (mime = settings.mimeType || mime) {
+          if (mime.indexOf(',') > -1) mime = mime.split(',', 2)[0]
+          xhr.overrideMimeType && xhr.overrideMimeType(mime)
+        }
+        if (settings.contentType || (settings.contentType !== false && settings.data && settings.type.toUpperCase() != 'GET'))
+          setHeader('Content-Type', settings.contentType || 'application/x-www-form-urlencoded')
+
+        if (settings.headers) for (name in settings.headers) setHeader(name, settings.headers[name])
+        xhr.setRequestHeader = setHeader
+
+        xhr.onreadystatechange = function(){
+          if (xhr.readyState == 4) {
+            xhr.onreadystatechange = empty
+            clearTimeout(abortTimeout)
+            var result, error = false
+            if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304 || (xhr.status == 0 && protocol == 'file:')) {
+              dataType = dataType || mimeToDataType(settings.mimeType || xhr.getResponseHeader('content-type'))
+              result = xhr.responseText
+
+              try {
+                // http://perfectionkills.com/global-eval-what-are-the-options/
+                if (dataType == 'script')    (1,eval)(result)
+                else if (dataType == 'xml')  result = xhr.responseXML
+                else if (dataType == 'json') result = blankRE.test(result) ? null : $.parseJSON(result)
+              } catch (e) { error = e }
+
+              if (error) ajaxError(error, 'parsererror', xhr, settings, deferred)
+              else ajaxSuccess(result, xhr, settings, deferred)
+            } else {
+              ajaxError(xhr.statusText || null, xhr.status ? 'error' : 'abort', xhr, settings, deferred)
+            }
+          }
+        }
+
+        if (ajaxBeforeSend(xhr, settings) === false) {
+          xhr.abort()
+          ajaxError(null, 'abort', xhr, settings, deferred)
+          return xhr
+        }
+
+        if (settings.xhrFields) for (name in settings.xhrFields) xhr[name] = settings.xhrFields[name]
+
+        var async = 'async' in settings ? settings.async : true
+        xhr.open(settings.type, settings.url, async, settings.username, settings.password)
+
+        for (name in headers) nativeSetHeader.apply(xhr, headers[name])
+
+        if (settings.timeout > 0) abortTimeout = setTimeout(function(){
+            xhr.onreadystatechange = empty
+            xhr.abort()
+            ajaxError(null, 'timeout', xhr, settings, deferred)
+          }, settings.timeout)
+
+        // avoid sending empty string (#319)
+        xhr.send(settings.data ? settings.data : null)
+        return xhr
+      }
+
+      // handle optional data/success arguments
+      function parseArguments(url, data, success, dataType) {
+        var hasData = !$.isFunction(data)
+        return {
+          url:      url,
+          data:     hasData  ? data : undefined,
+          success:  !hasData ? data : $.isFunction(success) ? success : undefined,
+          dataType: hasData  ? dataType || success : success
+        }
+      }
+
+      $.get = function(url, data, success, dataType){
+        return $.ajax(parseArguments.apply(null, arguments))
+      }
+
+      $.post = function(url, data, success, dataType){
+        var options = parseArguments.apply(null, arguments)
+        options.type = 'POST'
+        return $.ajax(options)
+      }
+
+      $.getJSON = function(url, data, success){
+        var options = parseArguments.apply(null, arguments)
+        options.dataType = 'json'
+        return $.ajax(options)
+      }
+
+      $.fn.load = function(url, data, success){
+        if (!this.length) return this
+        var self = this, parts = url.split(/\s/), selector,
+            options = parseArguments(url, data, success),
+            callback = options.success
+        if (parts.length > 1) options.url = parts[0], selector = parts[1]
+        options.success = function(response){
+          self.html(selector ?
+            $('<div>').html(response.replace(rscript, "")).find(selector)
+            : response)
+          callback && callback.apply(self, arguments)
+        }
+        $.ajax(options)
+        return this
+      }
+
+      var escape = encodeURIComponent
+
+      function serialize(params, obj, traditional, scope){
+        var type, array = $.isArray(obj), hash = $.isPlainObject(obj)
+        $.each(obj, function(key, value) {
+          type = $.type(value)
+          if (scope) key = traditional ? scope :
+            scope + '[' + (hash || type == 'object' || type == 'array' ? key : '') + ']'
+          // handle data in serializeArray() format
+          if (!scope && array) params.add(value.name, value.value)
+          // recurse into nested objects
+          else if (type == "array" || (!traditional && type == "object"))
+            serialize(params, value, traditional, key)
+          else params.add(key, value)
+        })
+      }
+
+      $.param = function(obj, traditional){
+        var params = []
+        params.add = function(k, v){ this.push(escape(k) + '=' + escape(v)) }
+        serialize(params, obj, traditional)
+        return params.join('&').replace(/%20/g, '+')
+      }
+    })(Zepto)
+
+    ;(function($){
+      $.fn.serializeArray = function() {
+        var result = [], el
+        $([].slice.call(this.get(0).elements)).each(function(){
+          el = $(this)
+          var type = el.attr('type')
+          if (this.nodeName.toLowerCase() != 'fieldset' &&
+            !this.disabled && type != 'submit' && type != 'reset' && type != 'button' &&
+            ((type != 'radio' && type != 'checkbox') || this.checked))
+            result.push({
+              name: el.attr('name'),
+              value: el.val()
+            })
+        })
+        return result
+      }
+
+      $.fn.serialize = function(){
+        var result = []
+        this.serializeArray().forEach(function(elm){
+          result.push(encodeURIComponent(elm.name) + '=' + encodeURIComponent(elm.value))
+        })
+        return result.join('&')
+      }
+
+      $.fn.submit = function(callback) {
+        if (callback) this.bind('submit', callback)
+        else if (this.length) {
+          var event = $.Event('submit')
+          this.eq(0).trigger(event)
+          if (!event.isDefaultPrevented()) this.get(0).submit()
+        }
+        return this
+      }
+
+    })(Zepto)
+
+    ;(function($){
+      // __proto__ doesn't exist on IE<11, so redefine
+      // the Z function to use object extension instead
+      if (!('__proto__' in {})) {
+        $.extend($.zepto, {
+          Z: function(dom, selector){
+            dom = dom || []
+            $.extend(dom, $.fn)
+            dom.selector = selector || ''
+            dom.__Z = true
+            return dom
+          },
+          // this is a kludge but works
+          isZ: function(object){
+            return $.type(object) === 'array' && '__Z' in object
+          }
+        })
+      }
+
+      // getComputedStyle shouldn't freak out when called
+      // without a valid element as argument
+      try {
+        getComputedStyle(undefined)
+      } catch(e) {
+        var nativeGetComputedStyle = getComputedStyle;
+        window.getComputedStyle = function(element, pseudoElement){
+          try {
+            return nativeGetComputedStyle(element, pseudoElement)
+          } catch(e) {
+            return null
+          }
+        }
+      }
+    })(Zepto)
+
+
+  TL.getJSON = Zepto.getJSON;
+	TL.ajax = Zepto.ajax;
+})(TL)
+
+//     Based on https://github.com/madrobby/zepto/blob/5585fe00f1828711c04208372265a5d71e3238d1/src/ajax.js
+//     Zepto.js
+//     (c) 2010-2012 Thomas Fuchs
+//     Zepto.js may be freely distributed under the MIT license.
+/*
+Copyright (c) 2010-2012 Thomas Fuchs
+http://zeptojs.com
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
+of this software and associated documentation files (the "Software"), to deal 
+in the Software without restriction, including without limitation the rights 
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
+copies of the Software, and to permit persons to whom the Software is 
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
+SOFTWARE.
+*/
+
+
+/* **********************************************
+     Begin TL.Class.js
+********************************************** */
+
+/*	TL.Class
+	Class powers the OOP facilities of the library.
+================================================== */
+TL.Class = function () {};
+
+TL.Class.extend = function (/*Object*/ props) /*-> Class*/ {
+ 
+	// extended class with the new prototype
+	var NewClass = function () {
+		if (this.initialize) {
+			this.initialize.apply(this, arguments);
+		}
+	};
+
+	// instantiate class without calling constructor
+	var F = function () {};
+	F.prototype = this.prototype;
+	var proto = new F();
+
+	proto.constructor = NewClass;
+	NewClass.prototype = proto;
+
+	// add superclass access
+	NewClass.superclass = this.prototype;
+
+	// add class name
+	//proto.className = props;
+
+	//inherit parent's statics
+	for (var i in this) {
+		if (this.hasOwnProperty(i) && i !== 'prototype' && i !== 'superclass') {
+			NewClass[i] = this[i];
+		}
+	}
+
+	// mix static properties into the class
+	if (props.statics) {
+		TL.Util.extend(NewClass, props.statics);
+		delete props.statics;
+	}
+
+	// mix includes into the prototype
+	if (props.includes) {
+		TL.Util.extend.apply(null, [proto].concat(props.includes));
+		delete props.includes;
+	}
+
+	// merge options
+	if (props.options && proto.options) {
+		props.options = TL.Util.extend({}, proto.options, props.options);
+	}
+
+	// mix given properties into the prototype
+	TL.Util.extend(proto, props);
+
+	// allow inheriting further
+	NewClass.extend = TL.Class.extend;
+
+	// method for adding properties to prototype
+	NewClass.include = function (props) {
+		TL.Util.extend(this.prototype, props);
+	};
+
+	return NewClass;
+};
+
+
+/* **********************************************
+     Begin TL.Events.js
+********************************************** */
+
+/*	TL.Events
+	adds custom events functionality to TL classes
+================================================== */
+TL.Events = {
+	addEventListener: function (/*String*/ type, /*Function*/ fn, /*(optional) Object*/ context) {
+		var events = this._tl_events = this._tl_events || {};
+		events[type] = events[type] || [];
+		events[type].push({
+			action: fn,
+			context: context || this
+		});
+		return this;
+	},
+
+	hasEventListeners: function (/*String*/ type) /*-> Boolean*/ {
+		var k = '_tl_events';
+		return (k in this) && (type in this[k]) && (this[k][type].length > 0);
+	},
+
+	removeEventListener: function (/*String*/ type, /*Function*/ fn, /*(optional) Object*/ context) {
+		if (!this.hasEventListeners(type)) {
+			return this;
+		}
+
+		for (var i = 0, events = this._tl_events, len = events[type].length; i < len; i++) {
+			if (
+				(events[type][i].action === fn) &&
+				(!context || (events[type][i].context === context))
+			) {
+				events[type].splice(i, 1);
+				return this;
+			}
+		}
+		return this;
+	},
+
+	fireEvent: function (/*String*/ type, /*(optional) Object*/ data) {
+		if (!this.hasEventListeners(type)) {
+			return this;
+		}
+
+		var event = TL.Util.mergeData({
+			type: type,
+			target: this
+		}, data);
+
+		var listeners = this._tl_events[type].slice();
+
+		for (var i = 0, len = listeners.length; i < len; i++) {
+			listeners[i].action.call(listeners[i].context || this, event);
+		}
+
+		return this;
+	}
+};
+
+TL.Events.on	= TL.Events.addEventListener;
+TL.Events.off	= TL.Events.removeEventListener;
+TL.Events.fire = TL.Events.fireEvent;
+
+
+/* **********************************************
+     Begin TL.Browser.js
+********************************************** */
+
+/*
+	Based on Leaflet Browser
+	TL.Browser handles different browser and feature detections for internal  use.
+*/
+
+
+(function() {
+
+	var ua = navigator.userAgent.toLowerCase(),
+		doc = document.documentElement,
+
+		ie = 'ActiveXObject' in window,
+
+		webkit = ua.indexOf('webkit') !== -1,
+		phantomjs = ua.indexOf('phantom') !== -1,
+		android23 = ua.search('android [23]') !== -1,
+
+		mobile = typeof orientation !== 'undefined',
+		msPointer = navigator.msPointerEnabled && navigator.msMaxTouchPoints && !window.PointerEvent,
+		pointer = (window.PointerEvent && navigator.pointerEnabled && navigator.maxTouchPoints) || msPointer,
+
+		ie3d = ie && ('transition' in doc.style),
+		webkit3d = ('WebKitCSSMatrix' in window) && ('m11' in new window.WebKitCSSMatrix()) && !android23,
+		gecko3d = 'MozPerspective' in doc.style,
+		opera3d = 'OTransition' in doc.style,
+		opera = window.opera;
+
+
+	var retina = 'devicePixelRatio' in window && window.devicePixelRatio > 1;
+
+	if (!retina && 'matchMedia' in window) {
+		var matches = window.matchMedia('(min-resolution:144dpi)');
+		retina = matches && matches.matches;
+	}
+
+	var touch = !window.L_NO_TOUCH && !phantomjs && (pointer || 'ontouchstart' in window || (window.DocumentTouch && document instanceof window.DocumentTouch));
+
+	TL.Browser = {
+		ie: ie,
+		ua: ua,
+		ie9: Boolean(ie && ua.match(/MSIE 9/i)),
+		ielt9: ie && !document.addEventListener,
+		webkit: webkit,
+		//gecko: (ua.indexOf('gecko') !== -1) && !webkit && !window.opera && !ie,
+		firefox: (ua.indexOf('gecko') !== -1) && !webkit && !window.opera && !ie,
+		android: ua.indexOf('android') !== -1,
+		android23: android23,
+		chrome: ua.indexOf('chrome') !== -1,
+		edge: ua.indexOf('edge/') !== -1,
+
+		ie3d: ie3d,
+		webkit3d: webkit3d,
+		gecko3d: gecko3d,
+		opera3d: opera3d,
+		any3d: !window.L_DISABLE_3D && (ie3d || webkit3d || gecko3d || opera3d) && !phantomjs,
+
+		mobile: mobile,
+		mobileWebkit: mobile && webkit,
+		mobileWebkit3d: mobile && webkit3d,
+		mobileOpera: mobile && window.opera,
+
+		touch: !! touch,
+		msPointer: !! msPointer,
+		pointer: !! pointer,
+
+		retina: !! retina,
+		orientation: function() {
+			var w = window.innerWidth,
+				h = window.innerHeight,
+				_orientation = "portrait";
+
+			if (w > h) {
+				_orientation = "landscape";
+			}
+			if (Math.abs(window.orientation) == 90) {
+				//_orientation = "landscape";
+			}
+			trace(_orientation);
+			return _orientation;
+		}
+	};
+
+}());
+
+
+/* **********************************************
+     Begin TL.Load.js
+********************************************** */
+
+/*	TL.Load
+	Loads External Javascript and CSS
+================================================== */
+
+TL.Load = (function (doc) {
+	var loaded	= [];
+	
+	function isLoaded(url) {
+		
+		var i			= 0,
+			has_loaded	= false;
+		
+		for (i = 0; i < loaded.length; i++) {
+			if (loaded[i] == url) {
+				has_loaded = true;
+			}
+		}
+		
+		if (has_loaded) {
+			return true;
+		} else {
+			loaded.push(url);
+			return false;
+		}
+		
+	}
+	
+	return {
+		
+		css: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				TL.LoadIt.css(urls, callback, obj, context);
+			} else {
+				callback();
+			}
+		},
+
+		js: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				TL.LoadIt.js(urls, callback, obj, context);
+			} else {
+				callback();
+			}
+		}
+    };
+	
+})(this.document);
+
+
+/*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false */
+
+/*
+LazyLoad makes it easy and painless to lazily load one or more external
+JavaScript or CSS files on demand either during or after the rendering of a web
+page.
+
+Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile
+Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and
+are not officially supported.
+
+Visit https://github.com/rgrove/lazyload/ for more info.
+
+Copyright (c) 2011 Ryan Grove <ryan@wonko.com>
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the 'Software'), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+@module lazyload
+@class LazyLoad
+@static
+@version 2.0.3 (git)
+*/
+
+TL.LoadIt = (function (doc) {
+  // -- Private Variables ------------------------------------------------------
+
+  // User agent and feature test information.
+  var env,
+
+  // Reference to the <head> element (populated lazily).
+  head,
+
+  // Requests currently in progress, if any.
+  pending = {},
+
+  // Number of times we've polled to check whether a pending stylesheet has
+  // finished loading. If this gets too high, we're probably stalled.
+  pollCount = 0,
+
+  // Queued requests.
+  queue = {css: [], js: []},
+
+  // Reference to the browser's list of stylesheets.
+  styleSheets = doc.styleSheets;
+
+  // -- Private Methods --------------------------------------------------------
+
+  /**
+  Creates and returns an HTML element with the specified name and attributes.
+
+  @method createNode
+  @param {String} name element name
+  @param {Object} attrs name/value mapping of element attributes
+  @return {HTMLElement}
+  @private
+  */
+  function createNode(name, attrs) {
+    var node = doc.createElement(name), attr;
+
+    for (attr in attrs) {
+      if (attrs.hasOwnProperty(attr)) {
+        node.setAttribute(attr, attrs[attr]);
+      }
+    }
+
+    return node;
+  }
+
+  /**
+  Called when the current pending resource of the specified type has finished
+  loading. Executes the associated callback (if any) and loads the next
+  resource in the queue.
+
+  @method finish
+  @param {String} type resource type ('css' or 'js')
+  @private
+  */
+  function finish(type) {
+    var p = pending[type],
+        callback,
+        urls;
+
+    if (p) {
+      callback = p.callback;
+      urls     = p.urls;
+
+      urls.shift();
+      pollCount = 0;
+
+      // If this is the last of the pending URLs, execute the callback and
+      // start the next request in the queue (if any).
+      if (!urls.length) {
+        callback && callback.call(p.context, p.obj);
+        pending[type] = null;
+        queue[type].length && load(type);
+      }
+    }
+  }
+
+  /**
+  Populates the <code>env</code> variable with user agent and feature test
+  information.
+
+  @method getEnv
+  @private
+  */
+  function getEnv() {
+    var ua = navigator.userAgent;
+
+    env = {
+      // True if this browser supports disabling async mode on dynamically
+      // created script nodes. See
+      // http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order
+      async: doc.createElement('script').async === true
+    };
+
+    (env.webkit = /AppleWebKit\//.test(ua))
+      || (env.ie = /MSIE/.test(ua))
+      || (env.opera = /Opera/.test(ua))
+      || (env.gecko = /Gecko\//.test(ua))
+      || (env.unknown = true);
+  }
+
+  /**
+  Loads the specified resources, or the next resource of the specified type
+  in the queue if no resources are specified. If a resource of the specified
+  type is already being loaded, the new request will be queued until the
+  first request has been finished.
+
+  When an array of resource URLs is specified, those URLs will be loaded in
+  parallel if it is possible to do so while preserving execution order. All
+  browsers support parallel loading of CSS, but only Firefox and Opera
+  support parallel loading of scripts. In other browsers, scripts will be
+  queued and loaded one at a time to ensure correct execution order.
+
+  @method load
+  @param {String} type resource type ('css' or 'js')
+  @param {String|Array} urls (optional) URL or array of URLs to load
+  @param {Function} callback (optional) callback function to execute when the
+    resource is loaded
+  @param {Object} obj (optional) object to pass to the callback function
+  @param {Object} context (optional) if provided, the callback function will
+    be executed in this object's context
+  @private
+  */
+  function load(type, urls, callback, obj, context) {
+    var _finish = function () { finish(type); },
+        isCSS   = type === 'css',
+        nodes   = [],
+        i, len, node, p, pendingUrls, url;
+
+    env || getEnv();
+
+    if (urls) {
+      // If urls is a string, wrap it in an array. Otherwise assume it's an
+      // array and create a copy of it so modifications won't be made to the
+      // original.
+      urls = typeof urls === 'string' ? [urls] : urls.concat();
+
+      // Create a request object for each URL. If multiple URLs are specified,
+      // the callback will only be executed after all URLs have been loaded.
+      //
+      // Sadly, Firefox and Opera are the only browsers capable of loading
+      // scripts in parallel while preserving execution order. In all other
+      // browsers, scripts must be loaded sequentially.
+      //
+      // All browsers respect CSS specificity based on the order of the link
+      // elements in the DOM, regardless of the order in which the stylesheets
+      // are actually downloaded.
+      if (isCSS || env.async || env.gecko || env.opera) {
+        // Load in parallel.
+        queue[type].push({
+          urls    : urls,
+          callback: callback,
+          obj     : obj,
+          context : context
+        });
+      } else {
+        // Load sequentially.
+        for (i = 0, len = urls.length; i < len; ++i) {
+          queue[type].push({
+            urls    : [urls[i]],
+            callback: i === len - 1 ? callback : null, // callback is only added to the last URL
+            obj     : obj,
+            context : context
+          });
+        }
+      }
+    }
+
+    // If a previous load request of this type is currently in progress, we'll
+    // wait our turn. Otherwise, grab the next item in the queue.
+    if (pending[type] || !(p = pending[type] = queue[type].shift())) {
+      return;
+    }
+
+    head || (head = doc.head || doc.getElementsByTagName('head')[0]);
+    pendingUrls = p.urls;
+
+    for (i = 0, len = pendingUrls.length; i < len; ++i) {
+      url = pendingUrls[i];
+
+      if (isCSS) {
+          node = env.gecko ? createNode('style') : createNode('link', {
+            href: url,
+            rel : 'stylesheet'
+          });
+      } else {
+        node = createNode('script', {src: url});
+        node.async = false;
+      }
+
+      node.className = 'lazyload';
+      node.setAttribute('charset', 'utf-8');
+
+      if (env.ie && !isCSS) {
+        node.onreadystatechange = function () {
+          if (/loaded|complete/.test(node.readyState)) {
+            node.onreadystatechange = null;
+            _finish();
+          }
+        };
+      } else if (isCSS && (env.gecko || env.webkit)) {
+        // Gecko and WebKit don't support the onload event on link nodes.
+        if (env.webkit) {
+          // In WebKit, we can poll for changes to document.styleSheets to
+          // figure out when stylesheets have loaded.
+          p.urls[i] = node.href; // resolve relative URLs (or polling won't work)
+          pollWebKit();
+        } else {
+          // In Gecko, we can import the requested URL into a <style> node and
+          // poll for the existence of node.sheet.cssRules. Props to Zach
+          // Leatherman for calling my attention to this technique.
+          node.innerHTML = '@import "' + url + '";';
+          pollGecko(node);
+        }
+      } else {
+        node.onload = node.onerror = _finish;
+      }
+
+      nodes.push(node);
+    }
+
+    for (i = 0, len = nodes.length; i < len; ++i) {
+      head.appendChild(nodes[i]);
+    }
+  }
+
+  /**
+  Begins polling to determine when the specified stylesheet has finished loading
+  in Gecko. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  Thanks to Zach Leatherman for calling my attention to the @import-based
+  cross-domain technique used here, and to Oleg Slobodskoi for an earlier
+  same-domain implementation. See Zach's blog for more details:
+  http://www.zachleat.com/web/2010/07/29/load-css-dynamically/
+
+  @method pollGecko
+  @param {HTMLElement} node Style node to poll.
+  @private
+  */
+  function pollGecko(node) {
+    var hasRules;
+
+    try {
+      // We don't really need to store this value or ever refer to it again, but
+      // if we don't store it, Closure Compiler assumes the code is useless and
+      // removes it.
+      hasRules = !!node.sheet.cssRules;
+    } catch (ex) {
+      // An exception means the stylesheet is still loading.
+      pollCount += 1;
+
+      if (pollCount < 200) {
+        setTimeout(function () { pollGecko(node); }, 50);
+      } else {
+        // We've been polling for 10 seconds and nothing's happened. Stop
+        // polling and finish the pending requests to avoid blocking further
+        // requests.
+        hasRules && finish('css');
+      }
+
+      return;
+    }
+
+    // If we get here, the stylesheet has loaded.
+    finish('css');
+  }
+
+  /**
+  Begins polling to determine when pending stylesheets have finished loading
+  in WebKit. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  @method pollWebKit
+  @private
+  */
+  function pollWebKit() {
+    var css = pending.css, i;
+
+    if (css) {
+      i = styleSheets.length;
+
+      // Look for a stylesheet matching the pending URL.
+      while (--i >= 0) {
+        if (styleSheets[i].href === css.urls[0]) {
+          finish('css');
+          break;
+        }
+      }
+
+      pollCount += 1;
+
+      if (css) {
+        if (pollCount < 200) {
+          setTimeout(pollWebKit, 50);
+        } else {
+          // We've been polling for 10 seconds and nothing's happened, which may
+          // indicate that the stylesheet has been removed from the document
+          // before it had a chance to load. Stop polling and finish the pending
+          // request to prevent blocking further requests.
+          finish('css');
+        }
+      }
+    }
+  }
+
+  return {
+
+    /**
+    Requests the specified CSS URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified, the stylesheets will be loaded in parallel and the callback
+    will be executed after all stylesheets have finished loading.
+
+    @method css
+    @param {String|Array} urls CSS URL or array of CSS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified stylesheets are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    css: function (urls, callback, obj, context) {
+      load('css', urls, callback, obj, context);
+    },
+
+    /**
+    Requests the specified JavaScript URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified and the browser supports it, the scripts will be loaded in
+    parallel and the callback will be executed after all scripts have
+    finished loading.
+
+    Currently, only Firefox and Opera support parallel loading of scripts while
+    preserving execution order. In other browsers, scripts will be
+    queued and loaded one at a time to ensure correct execution order.
+
+    @method js
+    @param {String|Array} urls JS URL or array of JS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified scripts are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    js: function (urls, callback, obj, context) {
+      load('js', urls, callback, obj, context);
+    }
+
+  };
+})(this.document);
+
+
+/* **********************************************
+     Begin TL.TimelineConfig.js
+********************************************** */
+
+/*  TL.TimelineConfig
+separate the configuration from the display (TL.Timeline)
+to make testing easier
+================================================== */
+TL.TimelineConfig = TL.Class.extend({
+
+	includes: [],
+	initialize: function (data) {
+		this.title = '';
+		this.scale = '';
+		this.events = [];
+		this.eras = [];
+		this.event_dict = {}; // despite name, all slides (events + title) indexed by slide.unique_id
+		this.messages = {
+			errors: [],
+			warnings: []
+		};
+
+		// Initialize the data
+		if (typeof data === 'object' && data.events) {
+			this.scale = data.scale;
+			this.events = [];
+			this._ensureValidScale(data.events);
+
+			if (data.title) {
+				var title_id = this._assignID(data.title);
+				this._tidyFields(data.title);
+				this.title = data.title;
+				this.event_dict[title_id] = this.title;
+			}
+
+			for (var i = 0; i < data.events.length; i++) {
+				try {
+					this.addEvent(data.events[i], true);
+				} catch (e) {
+				    this.logError(e);
+				}
+			}
+
+			if (data.eras) {
+				for (var i = 0; i < data.eras.length; i++) {
+					try {
+						this.addEra(data.eras[i], true);
+					} catch (e) {
+						this.logError("Era " + i + ": " + e);
+					}
+				}
+			}
+
+			TL.DateUtil.sortByDate(this.events);
+			TL.DateUtil.sortByDate(this.eras);
+
+		}
+	},
+	logError: function(msg) {
+		trace(msg);
+		this.messages.errors.push(msg);
+	},
+	/*
+	 * Return any accumulated error messages. If `sep` is passed, it should be a string which will be used to join all messages, resulting in a string return value. Otherwise,
+	 * errors will be returned as an array.
+	 */
+	getErrors: function(sep) {
+		if (sep) {
+			return this.messages.errors.join(sep);
+		} else {
+			return this.messages.errors;
+		}
+	},
+	/*
+	 * Perform any sanity checks we can before trying to use this to make a timeline. Returns nothing, but errors will be logged
+	 * such that after this is called, one can test `this.isValid()` to see if everything is OK.
+	 */
+	validate: function() {
+		if (typeof(this.events) == "undefined" || typeof(this.events.length) == "undefined" || this.events.length == 0) {
+			this.logError("Timeline configuration has no events.")
+		}
+
+		// make sure all eras have start and end dates
+		for (var i = 0; i < this.eras.length; i++) {
+			if (typeof(this.eras[i].start_date) == 'undefined' || typeof(this.eras[i].end_date) == 'undefined') {
+				var era_identifier;
+				if (this.eras[i].text && this.eras[i].text.headline) {
+					era_identifier = this.eras[i].text.headline
+				} else {
+					era_identifier = "era " + (i+1);
+				}
+				this.logError("All eras must have start and end dates. [" + era_identifier + "]") // add internationalization (I18N) and context
+			}
+		};
+	},
+
+	isValid: function() {
+		return this.messages.errors.length == 0;
+	},
+	/* Add an event (including cleaning/validation) and return the unique id.
+	* All event data validation should happen in here.
+	* Throws: TL.Error for any validation problems.
+	*/
+	addEvent: function(data, defer_sort) {
+		var event_id = this._assignID(data);
+
+		if (typeof(data.start_date) == 'undefined') {
+		    throw new TL.Error("missing_start_date_err", event_id);
+		} else {
+			this._processDates(data);
+			this._tidyFields(data);
+		}
+
+		this.events.push(data);
+		this.event_dict[event_id] = data;
+
+		if (!defer_sort) {
+			TL.DateUtil.sortByDate(this.events);
+		}
+		return event_id;
+	},
+
+	addEra: function(data, defer_sort) {
+		var event_id = this._assignID(data);
+
+		if (typeof(data.start_date) == 'undefined') {
+		    throw new TL.Error("missing_start_date_err", event_id);
+		} else {
+			this._processDates(data);
+			this._tidyFields(data);
+		}
+
+		this.eras.push(data);
+		this.event_dict[event_id] = data;
+
+		if (!defer_sort) {
+			TL.DateUtil.sortByDate(this.eras);
+		}
+		return event_id;
+	},
+
+	/**
+	 * Given a slide, verify that its ID is unique, or assign it one which is.
+	 * The assignment happens in this function, and the assigned ID is also
+	 * the return value. Not thread-safe, because ids are not reserved
+	 * when assigned here.
+	 */
+	_assignID: function(slide) {
+		var slide_id = slide.unique_id;
+		if (!TL.Util.trim(slide_id)) {
+			// give it an ID if it doesn't have one
+			slide_id = (slide.text) ? TL.Util.slugify(slide.text.headline) : null;
+		}
+		// make sure it's unique and add it.
+		slide.unique_id = TL.Util.ensureUniqueKey(this.event_dict,slide_id);
+		return slide.unique_id
+	},
+
+	/**
+	 * Given an array of slide configs (the events), ensure that each one has a distinct unique_id. The id of the title
+	 * is also passed in because in most ways it functions as an event slide, and the event IDs must also all be unique
+	 * from the title ID.
+	 */
+	_makeUniqueIdentifiers: function(title_id, array) {
+		var used = [title_id];
+
+		// establish which IDs are assigned and if any appear twice, clear out successors.
+		for (var i = 0; i < array.length; i++) {
+			if (TL.Util.trim(array[i].unique_id)) {
+				array[i].unique_id = TL.Util.slugify(array[i].unique_id); // enforce valid
+				if (used.indexOf(array[i].unique_id) == -1) {
+					used.push(array[i].unique_id);
+				} else { // it was already used, wipe it out
+					array[i].unique_id = '';
+				}
+			}
+		};
+
+		if (used.length != (array.length + 1)) {
+			// at least some are yet to be assigned
+			for (var i = 0; i < array.length; i++) {
+				if (!array[i].unique_id) {
+					// use the headline for the unique ID if it's available
+					var slug = (array[i].text) ? TL.Util.slugify(array[i].text.headline) : null;
+					if (!slug) {
+						slug = TL.Util.unique_ID(6); // or generate a random ID
+					}
+					if (used.indexOf(slug) != -1) {
+						slug = slug + '-' + i; // use the index to get a unique ID.
+					}
+					used.push(slug);
+					array[i].unique_id = slug;
+				}
+			}
+		}
+	},
+	_ensureValidScale: function(events) {
+		if(!this.scale) {
+			trace("Determining scale dynamically");
+			this.scale = "human"; // default to human unless there's a slide which is explicitly 'cosmological' or one which has a cosmological year
+
+			for (var i = 0; i < events.length; i++) {
+				if (events[i].scale == 'cosmological') {
+					this.scale = 'cosmological';
+					break;
+				}
+				if (events[i].start_date && typeof(events[i].start_date.year) != "undefined") {
+					var d = new TL.BigDate(events[i].start_date);
+					var year = d.data.date_obj.year;
+					if(year < -271820 || year >  275759) {
+						this.scale = "cosmological";
+						break;
+					}
+				}
+			}
+		}
+		var dateCls = TL.DateUtil.SCALE_DATE_CLASSES[this.scale];
+		if (!dateCls) { this.logError("Don't know how to process dates on scale "+this.scale); }
+	},
+	/*
+	   Given a thing which has a start_date and optionally an end_date, make sure that it is an instance
+		 of the correct date class (for human or cosmological scale). For slides, remove redundant end dates
+		 (people frequently configure an end date which is the same as the start date).
+	 */
+	_processDates: function(slide_or_era) {
+		var dateCls = TL.DateUtil.SCALE_DATE_CLASSES[this.scale];
+		if(!(slide_or_era.start_date instanceof dateCls)) {
+			var start_date = slide_or_era.start_date;
+			slide_or_era.start_date = new dateCls(start_date);
+
+			// eliminate redundant end dates.
+			if (typeof(slide_or_era.end_date) != 'undefined' && !(slide_or_era.end_date instanceof dateCls)) {
+				var end_date = slide_or_era.end_date;
+				var equal = true;
+				for (property in start_date) {
+					equal = equal && (start_date[property] == end_date[property]);
+				}
+				if (equal) {
+					trace("End date same as start date is redundant; dropping end date");
+					delete slide_or_era.end_date;
+				} else {
+					slide_or_era.end_date = new dateCls(end_date);
+				}
+
+			}
+		}
+
+	},
+	/**
+	 * Return the earliest date that this config knows about, whether it's a slide or an era
+	 */
+	getEarliestDate: function() {
+		// counting that dates were sorted in initialization
+		var date = this.events[0].start_date;
+		if (this.eras && this.eras.length > 0) {
+			if (this.eras[0].start_date.isBefore(date)) {
+				return this.eras[0].start_date;
+			}
+		}
+		return date;
+
+	},
+	/**
+	 * Return the latest date that this config knows about, whether it's a slide or an era, taking end_dates into account.
+	 */
+	getLatestDate: function() {
+		var dates = [];
+		for (var i = 0; i < this.events.length; i++) {
+			if (this.events[i].end_date) {
+				dates.push({ date: this.events[i].end_date });
+			} else {
+				dates.push({ date: this.events[i].start_date });
+			}
+		}
+		for (var i = 0; i < this.eras.length; i++) {
+			if (this.eras[i].end_date) {
+				dates.push({ date: this.eras[i].end_date });
+			} else {
+				dates.push({ date: this.eras[i].start_date });
+			}
+		}
+		TL.DateUtil.sortByDate(dates, 'date');
+		return dates.slice(-1)[0].date;
+	},
+	_tidyFields: function(slide) {
+
+		function fillIn(obj,key,default_value) {
+			if (!default_value) default_value = '';
+			if (!obj.hasOwnProperty(key)) { obj[key] = default_value }
+		}
+
+		if (slide.group) {
+			slide.group = TL.Util.trim(slide.group);
+		}
+
+		if (!slide.text) {
+			slide.text = {};
+		}
+		fillIn(slide.text,'text');
+		fillIn(slide.text,'headline');
+	}
+});
+
+
+/* **********************************************
+     Begin TL.ConfigFactory.js
+********************************************** */
+
+/* TL.ConfigFactory.js
+ * Build TimelineConfig objects from other data sources
+ */
+;(function(TL){
+    /*
+     * Convert a URL to a Google Spreadsheet (typically a /pubhtml version but somewhat flexible) into an object with the spreadsheet key (ID) and worksheet ID.
+
+     If `url` is actually a string which is only letters, numbers, '-' and '_', then it's assumed to be an ID already. If we had a more precise way of testing to see if the input argument was a valid key, we might apply it, but I don't know where that's documented.
+
+     If we're pretty sure this isn't a bare key or a url that could be used to find a Google spreadsheet then return null.
+     */
+    function parseGoogleSpreadsheetURL(url) {
+        parts = {
+            key: null,
+            worksheet: 0 // not really sure how to use this to get the feed for that sheet, so this is not ready except for first sheet right now
+        }
+        // key as url parameter (old-fashioned)
+        var key_pat = /\bkey=([-_A-Za-z0-9]+)&?/i;
+        var url_pat = /docs.google.com\/spreadsheets(.*?)\/d\//; // fixing issue of URLs with u/0/d
+
+        if (url.match(key_pat)) {
+            parts.key = url.match(key_pat)[1];
+            // can we get a worksheet from this form?
+        } else if (url.match(url_pat)) {
+            var pos = url.search(url_pat) + url.match(url_pat)[0].length;
+            var tail = url.substr(pos);
+            parts.key = tail.split('/')[0]
+            if (url.match(/\?gid=(\d+)/)) {
+                parts.worksheet = url.match(/\?gid=(\d+)/)[1];
+            }
+        } else if (url.match(/^\b[-_A-Za-z0-9]+$/)) {
+            parts.key = url;
+        }
+
+        if (parts.key) {
+            return parts;
+        } else {
+            return null;
+        }
+    }
+
+    function extractGoogleEntryData_V1(item) {
+        var item_data = {}
+        for (k in item) {
+            if (k.indexOf('gsx$') == 0) {
+                item_data[k.substr(4)] = item[k].$t;
+            }
+        }
+        if (TL.Util.isEmptyObject(item_data)) return null;
+        var d = {
+            media: {
+                caption: item_data.mediacaption || '',
+                credit: item_data.mediacredit || '',
+                url: item_data.media || '',
+                thumbnail: item_data.mediathumbnail || ''
+            },
+            text: {
+                headline: item_data.headline || '',
+                text: item_data.text || ''
+            },
+            group: item_data.tag || '',
+            type: item_data.type || ''
+        }
+        if (item_data.startdate) {
+            d['start_date'] = TL.Date.parseDate(item_data.startdate);
+        }
+        if (item_data.enddate) {
+            d['end_date'] = TL.Date.parseDate(item_data.enddate);
+        }
+
+
+        return d;
+    }
+
+    function extractGoogleEntryData_V3(item) {
+
+        function clean_integer(s) {
+            if (s) {
+                return s.replace(/[\s,]+/g,''); // doesn't handle '.' as comma separator, but how to distinguish that from decimal separator?
+            }
+        }
+
+        var item_data = {}
+        for (k in item) {
+            if (k.indexOf('gsx$') == 0) {
+                item_data[k.substr(4)] = TL.Util.trim(item[k].$t);
+            }
+        }
+        if (TL.Util.isEmptyObject(item_data)) return null;
+        var d = {
+            media: {
+                caption: item_data.mediacaption || '',
+                credit: item_data.mediacredit || '',
+                url: item_data.media || '',
+                thumbnail: item_data.mediathumbnail || ''
+            },
+            text: {
+                headline: item_data.headline || '',
+                text: item_data.text || ''
+            },
+            start_date: {
+                year: clean_integer(item_data.year),
+                month: clean_integer(item_data.month) || '',
+                day: clean_integer(item_data.day) || ''
+            },
+            end_date: {
+                year: clean_integer(item_data.endyear) || '',
+                month: clean_integer(item_data.endmonth) || '',
+                day: clean_integer(item_data.endday) || ''
+            },
+            display_date: item_data.displaydate || '',
+
+            type: item_data.type || ''
+        }
+
+        if (item_data.time) {
+            TL.Util.mergeData(d.start_date,TL.DateUtil.parseTime(item_data.time));
+        }
+
+        if (item_data.endtime) {
+            TL.Util.mergeData(d.end_date,TL.DateUtil.parseTime(item_data.endtime));
+        }
+
+
+        if (item_data.group) {
+            d.group = item_data.group;
+        }
+
+        if (d.end_date.year == '') {
+            var bad_date = d.end_date;
+            delete d.end_date;
+            if (bad_date.month != '' || bad_date.day != '' || bad_date.time != '') {
+                var label = d.text.headline ||
+                trace("Invalid end date for spreadsheet row. Must have a year if any other date fields are specified.");
+                trace(item);
+            }
+        }
+
+        if (item_data.background) {
+            if (item_data.background.match(/^(https?:)?\/\/?/)) { // support http, https, protocol relative, site relative
+                d['background'] = { 'url': item_data.background }
+            } else { // for now we'll trust it's a color
+                d['background'] = { 'color': item_data.background }
+            }
+        }
+
+        return d;
+    }
+
+    var getGoogleItemExtractor = function(data) {
+        if (typeof data.feed.entry === 'undefined'
+                || data.feed.entry.length == 0) {
+            throw new TL.Error("empty_feed_err");
+        }
+        var entry = data.feed.entry[0];
+
+        if (typeof entry.gsx$startdate !== 'undefined') {
+            // check headers V1
+            // var headers_V1 = ['startdate', 'enddate', 'headline','text','media','mediacredit','mediacaption','mediathumbnail','media','type','tag'];
+            // for (var i = 0; i < headers_V1.length; i++) {
+            //     if (typeof entry['gsx$' + headers_V1[i]] == 'undefined') {
+            //         throw new TL.Error("invalid_data_format_err");
+            //     }
+            // }
+            return extractGoogleEntryData_V1;
+        } else if (typeof entry.gsx$year !== 'undefined') {
+            // check rest of V3 headers
+            var headers_V3 = ['month', 'day', 'time', 'endmonth', 'endyear', 'endday', 'endtime', 'displaydate', 'headline','text','media','mediacredit','mediacaption','mediathumbnail','type','group','background'];
+            // for (var i = 0; i < headers_V3.length; i++) {
+            //     if (typeof entry['gsx$' + headers_V3[i]] == 'undefined') {
+            //         throw new TL.Error("invalid_data_format_err");
+            //     }
+            // }
+            return extractGoogleEntryData_V3;
+        }
+        throw new TL.Error("invalid_data_format_err");
+    }
+
+    var buildGoogleFeedURL = function(parts) {
+        return "https://spreadsheets.google.com/feeds/list/" + parts.key + "/1/public/values?alt=json";
+
+    }
+
+    var jsonFromGoogleURL = function(url) {
+        var url = buildGoogleFeedURL(parseGoogleSpreadsheetURL(url));
+            var timeline_config = { 'events': [] };
+            var data = TL.ajax({
+                url: url,
+                async: false
+            });
+            data = JSON.parse(data.responseText);
+            return googleFeedJSONtoTimelineJSON(data);
+        }
+
+    var googleFeedJSONtoTimelineJSON = function(data) {
+        var timeline_config = { 'events': [], 'errors': [], 'warnings': [], 'eras': [] }
+        var extract = getGoogleItemExtractor(data);
+        for (var i = 0; i < data.feed.entry.length; i++) {
+            try {
+                var event = extract(data.feed.entry[i]);
+                if (event) { // blank rows return null
+                  var row_type = 'event';
+                  if (typeof(event.type) != 'undefined') {
+                      row_type = event.type;
+                      delete event.type;
+                  }
+                  if (row_type == 'title') {
+                    if (!timeline_config.title) {
+                      timeline_config.title = event;
+                    } else {
+                      timeline_config.warnings.push("Multiple title slides detected.");
+                      timeline_config.events.push(event);
+                    }
+                  } else if (row_type == 'era') {
+                    timeline_config.eras.push(event);
+                  } else {
+                      timeline_config.events.push(event);
+                  }
+                }
+            } catch(e) {
+                if (e.message) {
+                    e = e.message;
+                }
+                timeline_config.errors.push(e + " ["+ i +"]");
+            }
+        };
+        return timeline_config;
+
+    }
+
+    var makeConfig = function(url, callback) {
+        var tc,
+            key = parseGoogleSpreadsheetURL(url);
+
+        if (key) {
+            try {
+                var json = jsonFromGoogleURL(url);
+            } catch(e) {
+                tc = new TL.TimelineConfig();
+                if (e.name == 'NetworkError') {
+                    tc.logError(new TL.Error("network_err"));
+                } else if(e.name == 'TL.Error') {
+                    tc.logError(e);
+                } else {
+                    tc.logError(new TL.Error("unknown_read_err", e.name));
+                }
+                callback(tc);
+                return;
+            }
+            tc = new TL.TimelineConfig(json);
+            if (json.errors) {
+                for (var i = 0; i < json.errors.length; i++) {
+                    tc.logError(json.errors[i]);
+                };
+            }
+            callback(tc);
+        } else {
+          TL.ajax({
+            url: url,
+            dataType: 'json',
+            success: function(data){
+            try {
+                tc = new TL.TimelineConfig(data);
+            } catch(e) {
+                tc = new TL.TimelineConfig();
+                tc.logError(e);
+            }
+            callback(tc);
+            },
+            error: function(xhr, errorType, error) {
+              tc = new TL.TimelineConfig();
+              if (errorType == 'parsererror') {
+                var error = new TL.Error("invalid_url_err");
+              } else {
+                var error = new TL.Error("unknown_read_err", errorType)
+              }
+              tc.logError(error);
+              callback(tc);
+            }
+          });
+
+        }
+    }
+
+    TL.ConfigFactory = {
+        // export for unit testing and use by authoring tool
+        parseGoogleSpreadsheetURL: parseGoogleSpreadsheetURL,
+        // export for unit testing
+        googleFeedJSONtoTimelineJSON: googleFeedJSONtoTimelineJSON,
+
+
+        fromGoogle: function(url) {
+            console.warn("TL.ConfigFactory.fromGoogle is deprecated and will be removed soon. Use TL.ConfigFactory.makeConfig(url,callback)")
+            return jsonFromGoogleURL(url);
+
+        },
+
+        /*
+         * Given a URL to a Timeline data source, read the data, create a TimelineConfig
+         * object, and call the given `callback` function passing the created config as
+         * the only argument. This should be the main public interface to getting configs
+         * from any kind of URL, Google or direct JSON.
+         */
+        makeConfig: makeConfig,
+    }
+})(TL)
+
+
+/* **********************************************
+     Begin TL.Language.js
+********************************************** */
+
+TL.Language = function(options) {
+	// borrowed from http://stackoverflow.com/a/14446414/102476
+	for (k in TL.Language.languages.en) {
+		this[k] = TL.Language.languages.en[k];
+	}
+	if (options && options.language && typeof(options.language) == 'string' && options.language != 'en') {
+		var code = options.language;
+		if (!(code in TL.Language.languages)) {
+			if (/\.json$/.test(code)) {
+				var url = code;
+			} else {
+				var fragment = "/locale/" + code + ".json";
+				var script_path = options.script_path || TL.Timeline.source_path;
+				if (/\/$/.test(script_path)) { fragment = fragment.substr(1)}
+				var url = script_path + fragment;
+			}
+			var self = this;
+			var xhr = TL.ajax({
+				url: url, async: false
+			});
+			if (xhr.status == 200) {
+				TL.Language.languages[code] = JSON.parse(xhr.responseText);
+			} else {
+				throw "Could not load language [" + code + "]: " + xhr.statusText;
+			}
+		}
+		TL.Util.mergeData(this,TL.Language.languages[code]);
+
+	}
+}
+
+TL.Language.formatNumber = function(val,mask) {
+		if (mask.match(/%(\.(\d+))?f/)) {
+			var match = mask.match(/%(\.(\d+))?f/);
+			var token = match[0];
+			if (match[2]) {
+				val = val.toFixed(match[2]);
+			}
+			return mask.replace(token,val);
+		}
+		// use mask as literal display value.
+		return mask;
+	}
+
+
+
+/* TL.Util.mergeData is shallow, we have nested dicts.
+   This is a simplistic handling but should work.
+ */
+TL.Language.prototype.mergeData = function(lang_json) {
+	for (k in TL.Language.languages.en) {
+		if (lang_json[k]) {
+			if (typeof(this[k]) == 'object') {
+				TL.Util.mergeData(lang_json[k], this[k]);
+			} else {
+				this[k] = lang_json[k]; // strings, mostly
+			}
+		}
+	}
+}
+
+TL.Language.fallback = { messages: {} }; // placeholder to satisfy IE8 early compilation
+TL.Language.prototype.getMessage = function(k) {
+	return this.messages[k] || TL.Language.fallback.messages[k] || k;
+}
+
+TL.Language.prototype._ = TL.Language.prototype.getMessage; // keep it concise
+
+TL.Language.prototype.formatDate = function(date, format_name) {
+
+	if (date.constructor == Date) {
+		return this.formatJSDate(date, format_name);
+	}
+
+	if (date.constructor == TL.BigYear) {
+		return this.formatBigYear(date, format_name);
+	}
+
+	if (date.data && date.data.date_obj) {
+		return this.formatDate(date.data.date_obj, format_name);
+	}
+
+	trace("Unfamiliar date presented for formatting");
+	return date.toString();
+}
+
+TL.Language.prototype.formatBigYear = function(bigyear, format_name) {
+	var the_year = bigyear.year;
+	var format_list = this.bigdateformats[format_name] || this.bigdateformats['fallback'];
+
+	if (format_list) {
+		for (var i = 0; i < format_list.length; i++) {
+			var tuple = format_list[i];
+			if (Math.abs(the_year / tuple[0]) > 1) {
+				// will we ever deal with distant future dates?
+				return TL.Language.formatNumber(Math.abs(the_year / tuple[0]),tuple[1])
+			}
+		};
+
+		return the_year.toString();
+
+	} else {
+	    trace("Language file dateformats missing cosmological. Falling back.");
+	    return TL.Language.formatNumber(the_year,format_name);
+	}
+}
+
+TL.Language.prototype.formatJSDate = function(js_date, format_name) {
+	// ultimately we probably want this to work with TL.Date instead of (in addition to?) JS Date
+	// utc, timezone and timezoneClip are carry over from Steven Levithan implementation. We probably aren't going to use them.
+	var self = this;
+	var formatPeriod = function(fmt, value) {
+		var formats = self.period_labels[fmt];
+		if (formats) {
+			var fmt = (value < 12) ? formats[0] : formats[1];
+		}
+		return "<span class='tl-timeaxis-timesuffix'>" + fmt + "</span>";
+	}
+
+	var utc = false,
+		timezone = /\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,
+		timezoneClip = /[^-+\dA-Z]/g;
+
+
+	if (!format_name) {
+		format_name = 'full';
+	}
+
+	var mask = this.dateformats[format_name] || TL.Language.fallback.dateformats[format_name];
+	if (!mask) {
+		mask = format_name; // allow custom format strings
+	}
+
+
+	var	_ = utc ? "getUTC" : "get",
+		d = js_date[_ + "Date"](),
+		D = js_date[_ + "Day"](),
+		m = js_date[_ + "Month"](),
+		y = js_date[_ + "FullYear"](),
+		H = js_date[_ + "Hours"](),
+		M = js_date[_ + "Minutes"](),
+		s = js_date[_ + "Seconds"](),
+		L = js_date[_ + "Milliseconds"](),
+		o = utc ? 0 : js_date.getTimezoneOffset(),
+		year = "",
+		flags = {
+			d:    d,
+			dd:   TL.Util.pad(d),
+			ddd:  this.date.day_abbr[D],
+			dddd: this.date.day[D],
+			m:    m + 1,
+			mm:   TL.Util.pad(m + 1),
+			mmm:  this.date.month_abbr[m],
+			mmmm: this.date.month[m],
+			yy:   String(y).slice(2),
+			yyyy: (y < 0 && this.has_negative_year_modifier()) ? Math.abs(y) : y,
+			h:    H % 12 || 12,
+			hh:   TL.Util.pad(H % 12 || 12),
+			H:    H,
+			HH:   TL.Util.pad(H),
+			M:    M,
+			MM:   TL.Util.pad(M),
+			s:    s,
+			ss:   TL.Util.pad(s),
+			l:    TL.Util.pad(L, 3),
+			L:    TL.Util.pad(L > 99 ? Math.round(L / 10) : L),
+			t:    formatPeriod('t',H),
+			tt:   formatPeriod('tt',H),
+			T:    formatPeriod('T',H),
+			TT:   formatPeriod('TT',H),
+			Z:    utc ? "UTC" : (String(js_date).match(timezone) || [""]).pop().replace(timezoneClip, ""),
+			o:    (o > 0 ? "-" : "+") + TL.Util.pad(Math.floor(Math.abs(o) / 60) * 100 + Math.abs(o) % 60, 4),
+			S:    ["th", "st", "nd", "rd"][d % 10 > 3 ? 0 : (d % 100 - d % 10 != 10) * d % 10]
+		};
+
+		var formatted = mask.replace(TL.Language.DATE_FORMAT_TOKENS, function ($0) {
+			return $0 in flags ? flags[$0] : $0.slice(1, $0.length - 1);
+		});
+
+		return this._applyEra(formatted, y);
+}
+
+TL.Language.prototype.has_negative_year_modifier = function() {
+	return Boolean(this.era_labels.negative_year.prefix || this.era_labels.negative_year.suffix);
+}
+
+
+TL.Language.prototype._applyEra = function(formatted_date, original_year) {
+	// trusts that the formatted_date was property created with a non-negative year if there are
+	// negative affixes to be applied
+	var labels = (original_year < 0) ? this.era_labels.negative_year : this.era_labels.positive_year;
+	var result = '';
+	if (labels.prefix) { result += '<span>' + labels.prefix + '</span> ' }
+	result += formatted_date;
+	if (labels.suffix) { result += ' <span>' + labels.suffix + '</span>' }
+	return result;
+}
+
+
+TL.Language.DATE_FORMAT_TOKENS = /d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g;
+
+TL.Language.languages = {
+/*
+	This represents the canonical list of message keys which translation files should handle. The existence of the 'en.json' file should not mislead you.
+	It is provided more as a starting point for someone who wants to provide a
+	new translation since the form for non-default languages (JSON not JS) is slightly different from what appears below. Also, those files have some message keys grandfathered in from TimelineJS2 which we'd rather not have to
+	get "re-translated" if we use them.
+*/
+	en: {
+		name: 					"English",
+		lang: 					"en",
+        api: {
+            wikipedia:          "en" // the two letter code at the beginning of the Wikipedia subdomain for this language
+        },
+		messages: {
+			loading: 			            		  "Loading",
+			wikipedia: 			            		"From Wikipedia, the free encyclopedia",
+			error: 				            			"Error",
+      contract_timeline:              "Contract Timeline",
+      return_to_title:                "Return to Title",
+      loading_content:                "Loading Content",
+      expand_timeline:                "Expand Timeline",
+      loading_timeline:               "Loading Timeline... ",
+      swipe_to_navigate:              "Swipe to Navigate<br><span class='tl-button'>OK</span>",
+      unknown_read_err:               "An unexpected error occurred trying to read your spreadsheet data",
+			invalid_url_err: 								"Unable to read Timeline data. Make sure your URL is for a Google Spreadsheet or a Timeline JSON file.",
+      network_err:                    "Unable to read your Google Spreadsheet. Make sure you have published it to the web.",
+      empty_feed_err:                 "No data entries found",
+      missing_start_date_err:         "Missing start_date",
+      invalid_data_format_err:        "Header row has been modified.",
+      date_compare_err:               "Can't compare TL.Dates on different scales",
+      invalid_scale_err:              "Invalid scale",
+      invalid_date_err:               "Invalid date: month, day and year must be numbers.",
+      invalid_separator_error:        "Invalid time: misuse of : or . as separator.",
+      invalid_hour_err:               "Invalid time (hour)",
+      invalid_minute_err:             "Invalid time (minute)",
+      invalid_second_err:             "Invalid time (second)",
+      invalid_fractional_err:         "Invalid time (fractional seconds)",
+      invalid_second_fractional_err:  "Invalid time (seconds and fractional seconds)",
+      invalid_year_err:               "Invalid year",
+      flickr_notfound_err:            "Photo not found or private",
+      flickr_invalidurl_err:          "Invalid Flickr URL",
+      imgur_invalidurl_err:           "Invalid Imgur URL",
+      twitter_invalidurl_err:         "Invalid Twitter URL",
+      twitter_load_err:               "Unable to load Tweet",
+      twitterembed_invalidurl_err:    "Invalid Twitter Embed url",
+      wikipedia_load_err:             "Unable to load Wikipedia entry",
+      youtube_invalidurl_err:         "Invalid YouTube URL",
+      spotify_invalid_url:            "Invalid Spotify URL",
+      template_value_err:             "No value provided for variable",
+      invalid_rgb_err:                "Invalid RGB argument",
+      time_scale_scale_err:           "Don't know how to get date from time for scale",
+      axis_helper_no_options_err:     "Axis helper must be configured with options",
+      axis_helper_scale_err:          "No AxisHelper available for scale",
+      invalid_integer_option:       	"Invalid option value—must be a whole number."
+		},
+		date: {
+      month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
+      month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
+      day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
+      day_abbr: ["Sun.","Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."]
+		},
+		era_labels: { // specify prefix or suffix to apply to formatted date. Blanks mean no change.
+	        positive_year: {
+	        	prefix: '',
+	        	suffix: ''
+	        },
+	        negative_year: { // if either of these is specified, the year will be converted to positive before they are applied
+	        	prefix: '',
+	        	suffix: 'BCE'
+	        }
+        },
+        period_labels: {  // use of t/tt/T/TT legacy of original Timeline date format
+			t: ['a', 'p'],
+			tt: ['am', 'pm'],
+			T: ['A', 'P'],
+			TT: ['AM', 'PM']
+		},
+		dateformats: {
+			year: "yyyy",
+			month_short: "mmm",
+			month: "mmmm yyyy",
+			full_short: "mmm d",
+			full: "mmmm d',' yyyy",
+			time: "h:MM:ss TT' <small>'mmmm d',' yyyy'</small>'",
+			time_short: "h:MM:ss TT",
+			time_no_seconds_short: "h:MM TT",
+			time_no_minutes_short: "h TT",
+			time_no_seconds_small_date: "h:MM TT' <small>'mmmm d',' yyyy'</small>'",
+			time_milliseconds: "l",
+			full_long: "mmm d',' yyyy 'at' h:MM TT",
+			full_long_small_date: "h:MM TT' <small>mmm d',' yyyy'</small>'"
+		},
+		bigdateformats: {
+			fallback: [ // a list of tuples, with t[0] an order of magnitude and t[1] a format string. format string syntax may change...
+				[1000000000,"%.2f billion years ago"],
+				[1000000,"%.1f million years ago"],
+				[1000,"%.1f thousand years ago"],
+				[1, "%f years ago"]
+			],
+		    compact: [
+				[1000000000,"%.2f bya"],
+				[1000000,"%.1f mya"],
+				[1000,"%.1f kya"],
+				[1, "%f years ago"]
+			],
+		    verbose: [
+				[1000000000,"%.2f billion years ago"],
+				[1000000,"%.1f million years ago"],
+				[1000,"%.1f thousand years ago"],
+				[1, "%f years ago"]
+			]
+		}
+	}
+}
+
+TL.Language.fallback = new TL.Language();
+
+
+/* **********************************************
+     Begin TL.I18NMixins.js
+********************************************** */
+
+/*  TL.I18NMixins
+    assumes that its class has an options object with a TL.Language instance    
+================================================== */
+TL.I18NMixins = {
+    getLanguage: function() {
+        if (this.options && this.options.language) {
+            return this.options.language;
+        }
+        trace("Expected a language option");
+        return TL.Language.fallback;
+    },
+
+    _: function(msg) {
+        return this.getLanguage()._(msg);
+    }
+}
+
+
+/* **********************************************
+     Begin TL.Ease.js
+********************************************** */
+
+/* The equations defined here are open source under BSD License.
+ * http://www.robertpenner.com/easing_terms_of_use.html (c) 2003 Robert Penner
+ * Adapted to single time-based by
+ * Brian Crescimanno <brian.crescimanno@gmail.com>
+ * Ken Snyder <kendsnyder@gmail.com>
+ */
+
+/** MIT License
+ *
+ * KeySpline - use bezier curve for transition easing function
+ * Copyright (c) 2012 Gaetan Renaudeau <renaudeau.gaetan@gmail.com>
+ * 
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ * 
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ * 
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+/**
+ * KeySpline - use bezier curve for transition easing function
+ * is inspired from Firefox's nsSMILKeySpline.cpp
+ * Usage:
+ * var spline = new KeySpline(0.25, 0.1, 0.25, 1.0)
+ * spline.get(x) => returns the easing value | x must be in [0, 1] range
+ */
+
+TL.Easings = {
+    ease:        [0.25, 0.1, 0.25, 1.0], 
+    linear:      [0.00, 0.0, 1.00, 1.0],
+    easein:     [0.42, 0.0, 1.00, 1.0],
+    easeout:    [0.00, 0.0, 0.58, 1.0],
+    easeinout: [0.42, 0.0, 0.58, 1.0]
+};
+
+TL.Ease = {
+	KeySpline: function(a) {
+	//KeySpline: function(mX1, mY1, mX2, mY2) {
+		this.get = function(aX) {
+			if (a[0] == a[1] && a[2] == a[3]) return aX; // linear
+			return CalcBezier(GetTForX(aX), a[1], a[3]);
+		}
+
+		function A(aA1, aA2) {
+			return 1.0 - 3.0 * aA2 + 3.0 * aA1;
+		}
+
+		function B(aA1, aA2) {
+			return 3.0 * aA2 - 6.0 * aA1;
+		}
+
+		function C(aA1) {
+			return 3.0 * aA1;
+		}
+
+		// Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.
+
+		function CalcBezier(aT, aA1, aA2) {
+			return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT;
+		}
+
+		// Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.
+
+		function GetSlope(aT, aA1, aA2) {
+			return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1);
+		}
+
+		function GetTForX(aX) {
+			// Newton raphson iteration
+			var aGuessT = aX;
+			for (var i = 0; i < 4; ++i) {
+				var currentSlope = GetSlope(aGuessT, a[0], a[2]);
+				if (currentSlope == 0.0) return aGuessT;
+				var currentX = CalcBezier(aGuessT, a[0], a[2]) - aX;
+				aGuessT -= currentX / currentSlope;
+			}
+			return aGuessT;
+		}
+	},
+	
+	easeInSpline: function(t) {
+		var spline = new TL.Ease.KeySpline(TL.Easings.easein);
+		return spline.get(t);
+	},
+	
+	easeInOutExpo: function(t) {
+		var spline = new TL.Ease.KeySpline(TL.Easings.easein);
+		return spline.get(t);
+	},
+	
+	easeOut: function(t) {
+		return Math.sin(t * Math.PI / 2);
+	},
+	easeOutStrong: function(t) {
+		return (t == 1) ? 1 : 1 - Math.pow(2, - 10 * t);
+	},
+	easeIn: function(t) {
+		return t * t;
+	},
+	easeInStrong: function(t) {
+		return (t == 0) ? 0 : Math.pow(2, 10 * (t - 1));
+	},
+	easeOutBounce: function(pos) {
+		if ((pos) < (1 / 2.75)) {
+			return (7.5625 * pos * pos);
+		} else if (pos < (2 / 2.75)) {
+			return (7.5625 * (pos -= (1.5 / 2.75)) * pos + .75);
+		} else if (pos < (2.5 / 2.75)) {
+			return (7.5625 * (pos -= (2.25 / 2.75)) * pos + .9375);
+		} else {
+			return (7.5625 * (pos -= (2.625 / 2.75)) * pos + .984375);
+		}
+	},
+	easeInBack: function(pos) {
+		var s = 1.70158;
+		return (pos) * pos * ((s + 1) * pos - s);
+	},
+	easeOutBack: function(pos) {
+		var s = 1.70158;
+		return (pos = pos - 1) * pos * ((s + 1) * pos + s) + 1;
+	},
+	bounce: function(t) {
+		if (t < (1 / 2.75)) {
+			return 7.5625 * t * t;
+		}
+		if (t < (2 / 2.75)) {
+			return 7.5625 * (t -= (1.5 / 2.75)) * t + 0.75;
+		}
+		if (t < (2.5 / 2.75)) {
+			return 7.5625 * (t -= (2.25 / 2.75)) * t + 0.9375;
+		}
+		return 7.5625 * (t -= (2.625 / 2.75)) * t + 0.984375;
+	},
+	bouncePast: function(pos) {
+		if (pos < (1 / 2.75)) {
+			return (7.5625 * pos * pos);
+		} else if (pos < (2 / 2.75)) {
+			return 2 - (7.5625 * (pos -= (1.5 / 2.75)) * pos + .75);
+		} else if (pos < (2.5 / 2.75)) {
+			return 2 - (7.5625 * (pos -= (2.25 / 2.75)) * pos + .9375);
+		} else {
+			return 2 - (7.5625 * (pos -= (2.625 / 2.75)) * pos + .984375);
+		}
+	},
+	swingTo: function(pos) {
+		var s = 1.70158;
+		return (pos -= 1) * pos * ((s + 1) * pos + s) + 1;
+	},
+	swingFrom: function(pos) {
+		var s = 1.70158;
+		return pos * pos * ((s + 1) * pos - s);
+	},
+	elastic: function(pos) {
+		return -1 * Math.pow(4, - 8 * pos) * Math.sin((pos * 6 - 1) * (2 * Math.PI) / 2) + 1;
+	},
+	spring: function(pos) {
+		return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6));
+	},
+	blink: function(pos, blinks) {
+		return Math.round(pos * (blinks || 5)) % 2;
+	},
+	pulse: function(pos, pulses) {
+		return (-Math.cos((pos * ((pulses || 5) - .5) * 2) * Math.PI) / 2) + .5;
+	},
+	wobble: function(pos) {
+		return (-Math.cos(pos * Math.PI * (9 * pos)) / 2) + 0.5;
+	},
+	sinusoidal: function(pos) {
+		return (-Math.cos(pos * Math.PI) / 2) + 0.5;
+	},
+	flicker: function(pos) {
+		var pos = pos + (Math.random() - 0.5) / 5;
+		return easings.sinusoidal(pos < 0 ? 0 : pos > 1 ? 1 : pos);
+	},
+	mirror: function(pos) {
+		if (pos < 0.5) return easings.sinusoidal(pos * 2);
+		else return easings.sinusoidal(1 - (pos - 0.5) * 2);
+	},
+	// accelerating from zero velocity
+	easeInQuad: function (t) { return t*t },
+	// decelerating to zero velocity
+	easeOutQuad: function (t) { return t*(2-t) },
+	// acceleration until halfway, then deceleration
+	easeInOutQuad: function (t) { return t<.5 ? 2*t*t : -1+(4-2*t)*t },
+	// accelerating from zero velocity 
+	easeInCubic: function (t) { return t*t*t },
+	// decelerating to zero velocity 
+	easeOutCubic: function (t) { return (--t)*t*t+1 },
+	// acceleration until halfway, then deceleration 
+	easeInOutCubic: function (t) { return t<.5 ? 4*t*t*t : (t-1)*(2*t-2)*(2*t-2)+1 },
+	// accelerating from zero velocity 
+	easeInQuart: function (t) { return t*t*t*t },
+	// decelerating to zero velocity 
+	easeOutQuart: function (t) { return 1-(--t)*t*t*t },
+	// acceleration until halfway, then deceleration
+	easeInOutQuart: function (t) { return t<.5 ? 8*t*t*t*t : 1-8*(--t)*t*t*t },
+	// accelerating from zero velocity
+	easeInQuint: function (t) { return t*t*t*t*t },
+	// decelerating to zero velocity
+	easeOutQuint: function (t) { return 1+(--t)*t*t*t*t },
+	// acceleration until halfway, then deceleration 
+	easeInOutQuint: function (t) { return t<.5 ? 16*t*t*t*t*t : 1+16*(--t)*t*t*t*t }
+};
+
+/*
+Math.easeInExpo = function (t, b, c, d) {
+	return c * Math.pow( 2, 10 * (t/d - 1) ) + b;
+};
+
+		
+
+// exponential easing out - decelerating to zero velocity
+
+
+Math.easeOutExpo = function (t, b, c, d) {
+	return c * ( -Math.pow( 2, -10 * t/d ) + 1 ) + b;
+};
+
+		
+
+// exponential easing in/out - accelerating until halfway, then decelerating
+
+
+Math.easeInOutExpo = function (t, b, c, d) {
+	t /= d/2;
+	if (t < 1) return c/2 * Math.pow( 2, 10 * (t - 1) ) + b;
+	t--;
+	return c/2 * ( -Math.pow( 2, -10 * t) + 2 ) + b;
+};
+*/
+
+/* **********************************************
+     Begin TL.Animate.js
+********************************************** */
+
+/*	TL.Animate
+	Basic animation
+================================================== */
+
+TL.Animate = function(el, options) {
+	var animation = new tlanimate(el, options),
+		webkit_timeout;
+		/*
+		// POSSIBLE ISSUE WITH WEBKIT FUTURE BUILDS
+	var onWebKitTimeout = function() {
+
+		animation.stop(true);
+	}
+	if (TL.Browser.webkit) {
+		webkit_timeout = setTimeout(function(){onWebKitTimeout()}, options.duration);
+	}
+	*/
+	return animation;
+};
+
+
+/*	Based on: Morpheus
+	https://github.com/ded/morpheus - (c) Dustin Diaz 2011
+	License MIT
+================================================== */
+window.tlanimate = (function() {
+
+	var doc = document,
+		win = window,
+		perf = win.performance,
+		perfNow = perf && (perf.now || perf.webkitNow || perf.msNow || perf.mozNow),
+		now = perfNow ? function () { return perfNow.call(perf) } : function () { return +new Date() },
+		html = doc.documentElement,
+		fixTs = false, // feature detected below
+		thousand = 1000,
+		rgbOhex = /^rgb\(|#/,
+		relVal = /^([+\-])=([\d\.]+)/,
+		numUnit = /^(?:[\+\-]=?)?\d+(?:\.\d+)?(%|in|cm|mm|em|ex|pt|pc|px)$/,
+		rotate = /rotate\(((?:[+\-]=)?([\-\d\.]+))deg\)/,
+		scale = /scale\(((?:[+\-]=)?([\d\.]+))\)/,
+		skew = /skew\(((?:[+\-]=)?([\-\d\.]+))deg, ?((?:[+\-]=)?([\-\d\.]+))deg\)/,
+		translate = /translate\(((?:[+\-]=)?([\-\d\.]+))px, ?((?:[+\-]=)?([\-\d\.]+))px\)/,
+		// these elements do not require 'px'
+		unitless = { lineHeight: 1, zoom: 1, zIndex: 1, opacity: 1, transform: 1};
+
+  // which property name does this browser use for transform
+	var transform = function () {
+		var styles = doc.createElement('a').style,
+			props = ['webkitTransform', 'MozTransform', 'OTransform', 'msTransform', 'Transform'],
+			i;
+
+		for (i = 0; i < props.length; i++) {
+			if (props[i] in styles) return props[i]
+		};
+	}();
+
+	// does this browser support the opacity property?
+	var opacity = function () {
+		return typeof doc.createElement('a').style.opacity !== 'undefined'
+	}();
+
+	// initial style is determined by the elements themselves
+	var getStyle = doc.defaultView && doc.defaultView.getComputedStyle ?
+	function (el, property) {
+		property = property == 'transform' ? transform : property
+		property = camelize(property)
+		var value = null,
+			computed = doc.defaultView.getComputedStyle(el, '');
+
+		computed && (value = computed[property]);
+		return el.style[property] || value;
+	} : html.currentStyle ?
+
+    function (el, property) {
+		property = camelize(property)
+
+		if (property == 'opacity') {
+			var val = 100
+			try {
+				val = el.filters['DXImageTransform.Microsoft.Alpha'].opacity
+			} catch (e1) {
+				try {
+					val = el.filters('alpha').opacity
+				} catch (e2) {
+
+				}
+			}
+			return val / 100
+		}
+		var value = el.currentStyle ? el.currentStyle[property] : null
+		return el.style[property] || value
+	} :
+
+    function (el, property) {
+		return el.style[camelize(property)]
+    }
+
+  var frame = function () {
+    // native animation frames
+    // http://webstuff.nfshost.com/anim-timing/Overview.html
+    // http://dev.chromium.org/developers/design-documents/requestanimationframe-implementation
+    return win.requestAnimationFrame  ||
+      win.webkitRequestAnimationFrame ||
+      win.mozRequestAnimationFrame    ||
+      win.msRequestAnimationFrame     ||
+      win.oRequestAnimationFrame      ||
+      function (callback) {
+        win.setTimeout(function () {
+          callback(+new Date())
+        }, 17) // when I was 17..
+      }
+  }()
+
+  var children = []
+
+	frame(function(timestamp) {
+	  	// feature-detect if rAF and now() are of the same scale (epoch or high-res),
+		// if not, we have to do a timestamp fix on each frame
+		fixTs = timestamp > 1e12 != now() > 1e12
+	})
+
+  function has(array, elem, i) {
+    if (Array.prototype.indexOf) return array.indexOf(elem)
+    for (i = 0; i < array.length; ++i) {
+      if (array[i] === elem) return i
+    }
+  }
+
+  function render(timestamp) {
+    var i, count = children.length
+    // if we're using a high res timer, make sure timestamp is not the old epoch-based value.
+    // http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision
+    if (perfNow && timestamp > 1e12) timestamp = now()
+	if (fixTs) timestamp = now()
+    for (i = count; i--;) {
+      children[i](timestamp)
+    }
+    children.length && frame(render)
+  }
+
+  function live(f) {
+    if (children.push(f) === 1) frame(render)
+  }
+
+  function die(f) {
+    var rest, index = has(children, f)
+    if (index >= 0) {
+      rest = children.slice(index + 1)
+      children.length = index
+      children = children.concat(rest)
+    }
+  }
+
+  function parseTransform(style, base) {
+    var values = {}, m
+    if (m = style.match(rotate)) values.rotate = by(m[1], base ? base.rotate : null)
+    if (m = style.match(scale)) values.scale = by(m[1], base ? base.scale : null)
+    if (m = style.match(skew)) {values.skewx = by(m[1], base ? base.skewx : null); values.skewy = by(m[3], base ? base.skewy : null)}
+    if (m = style.match(translate)) {values.translatex = by(m[1], base ? base.translatex : null); values.translatey = by(m[3], base ? base.translatey : null)}
+    return values
+  }
+
+  function formatTransform(v) {
+    var s = ''
+    if ('rotate' in v) s += 'rotate(' + v.rotate + 'deg) '
+    if ('scale' in v) s += 'scale(' + v.scale + ') '
+    if ('translatex' in v) s += 'translate(' + v.translatex + 'px,' + v.translatey + 'px) '
+    if ('skewx' in v) s += 'skew(' + v.skewx + 'deg,' + v.skewy + 'deg)'
+    return s
+  }
+
+  function rgb(r, g, b) {
+    return '#' + (1 << 24 | r << 16 | g << 8 | b).toString(16).slice(1)
+  }
+
+  // convert rgb and short hex to long hex
+  function toHex(c) {
+    var m = c.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/)
+    return (m ? rgb(m[1], m[2], m[3]) : c)
+      .replace(/#(\w)(\w)(\w)$/, '#$1$1$2$2$3$3') // short skirt to long jacket
+  }
+
+  // change font-size => fontSize etc.
+  function camelize(s) {
+    return s.replace(/-(.)/g, function (m, m1) {
+      return m1.toUpperCase()
+    })
+  }
+
+  // aren't we having it?
+  function fun(f) {
+    return typeof f == 'function'
+  }
+
+  function nativeTween(t) {
+    // default to a pleasant-to-the-eye easeOut (like native animations)
+    return Math.sin(t * Math.PI / 2)
+  }
+
+  /**
+    * Core tween method that requests each frame
+    * @param duration: time in milliseconds. defaults to 1000
+    * @param fn: tween frame callback function receiving 'position'
+    * @param done {optional}: complete callback function
+    * @param ease {optional}: easing method. defaults to easeOut
+    * @param from {optional}: integer to start from
+    * @param to {optional}: integer to end at
+    * @returns method to stop the animation
+    */
+  function tween(duration, fn, done, ease, from, to) {
+    ease = fun(ease) ? ease : morpheus.easings[ease] || nativeTween
+    var time = duration || thousand
+      , self = this
+      , diff = to - from
+      , start = now()
+      , stop = 0
+      , end = 0
+
+    function run(t) {
+      var delta = t - start
+      if (delta > time || stop) {
+        to = isFinite(to) ? to : 1
+        stop ? end && fn(to) : fn(to)
+        die(run)
+        return done && done.apply(self)
+      }
+      // if you don't specify a 'to' you can use tween as a generic delta tweener
+      // cool, eh?
+      isFinite(to) ?
+        fn((diff * ease(delta / time)) + from) :
+        fn(ease(delta / time))
+    }
+
+    live(run)
+
+    return {
+      stop: function (jump) {
+        stop = 1
+        end = jump // jump to end of animation?
+        if (!jump) done = null // remove callback if not jumping to end
+      }
+    }
+  }
+
+  /**
+    * generic bezier method for animating x|y coordinates
+    * minimum of 2 points required (start and end).
+    * first point start, last point end
+    * additional control points are optional (but why else would you use this anyway ;)
+    * @param points: array containing control points
+       [[0, 0], [100, 200], [200, 100]]
+    * @param pos: current be(tween) position represented as float  0 - 1
+    * @return [x, y]
+    */
+  function bezier(points, pos) {
+    var n = points.length, r = [], i, j
+    for (i = 0; i < n; ++i) {
+      r[i] = [points[i][0], points[i][1]]
+    }
+    for (j = 1; j < n; ++j) {
+      for (i = 0; i < n - j; ++i) {
+        r[i][0] = (1 - pos) * r[i][0] + pos * r[parseInt(i + 1, 10)][0]
+        r[i][1] = (1 - pos) * r[i][1] + pos * r[parseInt(i + 1, 10)][1]
+      }
+    }
+    return [r[0][0], r[0][1]]
+  }
+
+  // this gets you the next hex in line according to a 'position'
+  function nextColor(pos, start, finish) {
+    var r = [], i, e, from, to
+    for (i = 0; i < 6; i++) {
+      from = Math.min(15, parseInt(start.charAt(i),  16))
+      to   = Math.min(15, parseInt(finish.charAt(i), 16))
+      e = Math.floor((to - from) * pos + from)
+      e = e > 15 ? 15 : e < 0 ? 0 : e
+      r[i] = e.toString(16)
+    }
+    return '#' + r.join('')
+  }
+
+  // this retreives the frame value within a sequence
+  function getTweenVal(pos, units, begin, end, k, i, v) {
+    if (k == 'transform') {
+      v = {}
+      for (var t in begin[i][k]) {
+        v[t] = (t in end[i][k]) ? Math.round(((end[i][k][t] - begin[i][k][t]) * pos + begin[i][k][t]) * thousand) / thousand : begin[i][k][t]
+      }
+      return v
+    } else if (typeof begin[i][k] == 'string') {
+      return nextColor(pos, begin[i][k], end[i][k])
+    } else {
+      // round so we don't get crazy long floats
+      v = Math.round(((end[i][k] - begin[i][k]) * pos + begin[i][k]) * thousand) / thousand
+      // some css properties don't require a unit (like zIndex, lineHeight, opacity)
+      if (!(k in unitless)) v += units[i][k] || 'px'
+      return v
+    }
+  }
+
+  // support for relative movement via '+=n' or '-=n'
+  function by(val, start, m, r, i) {
+    return (m = relVal.exec(val)) ?
+      (i = parseFloat(m[2])) && (start + (m[1] == '+' ? 1 : -1) * i) :
+      parseFloat(val)
+  }
+
+  /**
+    * morpheus:
+    * @param element(s): HTMLElement(s)
+    * @param options: mixed bag between CSS Style properties & animation options
+    *  - {n} CSS properties|values
+    *     - value can be strings, integers,
+    *     - or callback function that receives element to be animated. method must return value to be tweened
+    *     - relative animations start with += or -= followed by integer
+    *  - duration: time in ms - defaults to 1000(ms)
+    *  - easing: a transition method - defaults to an 'easeOut' algorithm
+    *  - complete: a callback method for when all elements have finished
+    *  - bezier: array of arrays containing x|y coordinates that define the bezier points. defaults to none
+    *     - this may also be a function that receives element to be animated. it must return a value
+    */
+  function morpheus(elements, options) {
+    var els = elements ? (els = isFinite(elements.length) ? elements : [elements]) : [], i
+      , complete = options.complete
+      , duration = options.duration
+      , ease = options.easing
+      , points = options.bezier
+      , begin = []
+      , end = []
+      , units = []
+      , bez = []
+      , originalLeft
+      , originalTop
+
+    if (points) {
+      // remember the original values for top|left
+      originalLeft = options.left;
+      originalTop = options.top;
+      delete options.right;
+      delete options.bottom;
+      delete options.left;
+      delete options.top;
+    }
+
+    for (i = els.length; i--;) {
+
+      // record beginning and end states to calculate positions
+      begin[i] = {}
+      end[i] = {}
+      units[i] = {}
+
+      // are we 'moving'?
+      if (points) {
+
+        var left = getStyle(els[i], 'left')
+          , top = getStyle(els[i], 'top')
+          , xy = [by(fun(originalLeft) ? originalLeft(els[i]) : originalLeft || 0, parseFloat(left)),
+                  by(fun(originalTop) ? originalTop(els[i]) : originalTop || 0, parseFloat(top))]
+
+        bez[i] = fun(points) ? points(els[i], xy) : points
+        bez[i].push(xy)
+        bez[i].unshift([
+          parseInt(left, 10),
+          parseInt(top, 10)
+        ])
+      }
+
+      for (var k in options) {
+        switch (k) {
+        case 'complete':
+        case 'duration':
+        case 'easing':
+        case 'bezier':
+          continue
+        }
+        var v = getStyle(els[i], k), unit
+          , tmp = fun(options[k]) ? options[k](els[i]) : options[k]
+        if (typeof tmp == 'string' &&
+            rgbOhex.test(tmp) &&
+            !rgbOhex.test(v)) {
+          delete options[k]; // remove key :(
+          continue; // cannot animate colors like 'orange' or 'transparent'
+                    // only #xxx, #xxxxxx, rgb(n,n,n)
+        }
+
+        begin[i][k] = k == 'transform' ? parseTransform(v) :
+          typeof tmp == 'string' && rgbOhex.test(tmp) ?
+            toHex(v).slice(1) :
+            parseFloat(v)
+        end[i][k] = k == 'transform' ? parseTransform(tmp, begin[i][k]) :
+          typeof tmp == 'string' && tmp.charAt(0) == '#' ?
+            toHex(tmp).slice(1) :
+            by(tmp, parseFloat(v));
+        // record original unit
+        (typeof tmp == 'string') && (unit = tmp.match(numUnit)) && (units[i][k] = unit[1])
+      }
+    }
+    // ONE TWEEN TO RULE THEM ALL
+    return tween.apply(els, [duration, function (pos, v, xy) {
+      // normally not a fan of optimizing for() loops, but we want something
+      // fast for animating
+      for (i = els.length; i--;) {
+        if (points) {
+          xy = bezier(bez[i], pos)
+          els[i].style.left = xy[0] + 'px'
+          els[i].style.top = xy[1] + 'px'
+        }
+        for (var k in options) {
+          v = getTweenVal(pos, units, begin, end, k, i)
+          k == 'transform' ?
+            els[i].style[transform] = formatTransform(v) :
+            k == 'opacity' && !opacity ?
+              (els[i].style.filter = 'alpha(opacity=' + (v * 100) + ')') :
+              (els[i].style[camelize(k)] = v)
+        }
+      }
+    }, complete, ease])
+  }
+
+  // expose useful methods
+  morpheus.tween = tween
+  morpheus.getStyle = getStyle
+  morpheus.bezier = bezier
+  morpheus.transform = transform
+  morpheus.parseTransform = parseTransform
+  morpheus.formatTransform = formatTransform
+  morpheus.easings = {}
+
+  return morpheus
+})();
+
+
+/* **********************************************
+     Begin TL.Point.js
+********************************************** */
+
+/*	TL.Point
+	Inspired by Leaflet
+	TL.Point represents a point with x and y coordinates.
+================================================== */
+
+TL.Point = function (/*Number*/ x, /*Number*/ y, /*Boolean*/ round) {
+	this.x = (round ? Math.round(x) : x);
+	this.y = (round ? Math.round(y) : y);
+};
+
+TL.Point.prototype = {
+	add: function (point) {
+		return this.clone()._add(point);
+	},
+
+	_add: function (point) {
+		this.x += point.x;
+		this.y += point.y;
+		return this;
+	},
+
+	subtract: function (point) {
+		return this.clone()._subtract(point);
+	},
+
+	// destructive subtract (faster)
+	_subtract: function (point) {
+		this.x -= point.x;
+		this.y -= point.y;
+		return this;
+	},
+
+	divideBy: function (num, round) {
+		return new TL.Point(this.x / num, this.y / num, round);
+	},
+
+	multiplyBy: function (num) {
+		return new TL.Point(this.x * num, this.y * num);
+	},
+
+	distanceTo: function (point) {
+		var x = point.x - this.x,
+			y = point.y - this.y;
+		return Math.sqrt(x * x + y * y);
+	},
+
+	round: function () {
+		return this.clone()._round();
+	},
+
+	// destructive round
+	_round: function () {
+		this.x = Math.round(this.x);
+		this.y = Math.round(this.y);
+		return this;
+	},
+
+	clone: function () {
+		return new TL.Point(this.x, this.y);
+	},
+
+	toString: function () {
+		return 'Point(' +
+				TL.Util.formatNum(this.x) + ', ' +
+				TL.Util.formatNum(this.y) + ')';
+	}
+};
+
+/* **********************************************
+     Begin TL.DomMixins.js
+********************************************** */
+
+/*	TL.DomMixins
+	DOM methods used regularly
+	Assumes there is a _el.container and animator
+================================================== */
+TL.DomMixins = {
+	
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function(animate) {
+		if (animate) {
+			/*
+			this.animator = TL.Animate(this._el.container, {
+				left: 		-(this._el.container.offsetWidth * n) + "px",
+				duration: 	this.options.duration,
+				easing: 	this.options.ease
+			});
+			*/
+		} else {
+			this._el.container.style.display = "block";
+		}
+	},
+	
+	hide: function(animate) {
+		this._el.container.style.display = "none";
+	},
+	
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+		this.onAdd();
+	},
+	
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+		this.onRemove();
+	},
+	
+	/*	Animate to Position
+	================================================== */
+	animatePosition: function(pos, el) {
+		var ani = {
+			duration: 	this.options.duration,
+			easing: 	this.options.ease
+		};
+		for (var name in pos) {
+			if (pos.hasOwnProperty(name)) {
+				ani[name] = pos[name] + "px";
+			}
+		}
+		
+		if (this.animator) {
+			this.animator.stop();
+		}
+		this.animator = TL.Animate(el, ani);
+	},
+	
+	/*	Events
+	================================================== */
+	
+	onLoaded: function() {
+		this.fire("loaded", this.data);
+	},
+	
+	onAdd: function() {
+		this.fire("added", this.data);
+	},
+
+	onRemove: function() {
+		this.fire("removed", this.data);
+	},
+	
+	/*	Set the Position
+	================================================== */
+	setPosition: function(pos, el) {
+		for (var name in pos) {
+			if (pos.hasOwnProperty(name)) {
+				if (el) {
+					el.style[name] = pos[name] + "px";
+				} else {
+					this._el.container.style[name] = pos[name] + "px";
+				};
+			}
+		}
+	},
+	
+	getPosition: function() {
+		return TL.Dom.getPosition(this._el.container);
+	}
+	
+};
+
+
+/* **********************************************
+     Begin TL.Dom.js
+********************************************** */
+
+/*	TL.Dom
+	Utilities for working with the DOM
+================================================== */
+
+TL.Dom = {
+
+	get: function(id) {
+		return (typeof id === 'string' ? document.getElementById(id) : id);
+	},
+
+	getByClass: function(id) {
+		if (id) {
+			return document.getElementsByClassName(id);
+		}
+	},
+
+	create: function(tagName, className, container) {
+		var el = document.createElement(tagName);
+		el.className = className;
+		if (container) {
+			container.appendChild(el);
+		}
+		return el;
+	},
+
+	createText: function(content, container) {
+		var el = document.createTextNode(content);
+		if (container) {
+			container.appendChild(el);
+		}
+		return el;
+	},
+
+	getTranslateString: function (point) {
+		return TL.Dom.TRANSLATE_OPEN +
+				point.x + 'px,' + point.y + 'px' +
+				TL.Dom.TRANSLATE_CLOSE;
+	},
+
+	setPosition: function (el, point) {
+		el._tl_pos = point;
+		if (TL.Browser.webkit3d) {
+			el.style[TL.Dom.TRANSFORM] =  TL.Dom.getTranslateString(point);
+
+			if (TL.Browser.android) {
+				el.style['-webkit-perspective'] = '1000';
+				el.style['-webkit-backface-visibility'] = 'hidden';
+			}
+		} else {
+			el.style.left = point.x + 'px';
+			el.style.top = point.y + 'px';
+		}
+	},
+
+	getPosition: function(el){
+	    var pos = {
+	    	x: 0,
+			y: 0
+	    }
+	    while( el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) {
+	        pos.x += el.offsetLeft// - el.scrollLeft;
+	        pos.y += el.offsetTop// - el.scrollTop;
+	        el = el.offsetParent;
+	    }
+	    return pos;
+	},
+
+	testProp: function(props) {
+		var style = document.documentElement.style;
+
+		for (var i = 0; i < props.length; i++) {
+			if (props[i] in style) {
+				return props[i];
+			}
+		}
+		return false;
+	}
+
+};
+
+TL.Util.mergeData(TL.Dom, {
+	TRANSITION: TL.Dom.testProp(['transition', 'webkitTransition', 'OTransition', 'MozTransition', 'msTransition']),
+	TRANSFORM: TL.Dom.testProp(['transformProperty', 'WebkitTransform', 'OTransform', 'MozTransform', 'msTransform']),
+
+	TRANSLATE_OPEN: 'translate' + (TL.Browser.webkit3d ? '3d(' : '('),
+	TRANSLATE_CLOSE: TL.Browser.webkit3d ? ',0)' : ')'
+});
+
+
+/* **********************************************
+     Begin TL.DomUtil.js
+********************************************** */
+
+/*	TL.DomUtil
+	Inspired by Leaflet
+	TL.DomUtil contains various utility functions for working with DOM
+================================================== */
+
+
+TL.DomUtil = {
+	get: function (id) {
+		return (typeof id === 'string' ? document.getElementById(id) : id);
+	},
+
+	getStyle: function (el, style) {
+		var value = el.style[style];
+		if (!value && el.currentStyle) {
+			value = el.currentStyle[style];
+		}
+		if (!value || value === 'auto') {
+			var css = document.defaultView.getComputedStyle(el, null);
+			value = css ? css[style] : null;
+		}
+		return (value === 'auto' ? null : value);
+	},
+
+	getViewportOffset: function (element) {
+		var top = 0,
+			left = 0,
+			el = element,
+			docBody = document.body;
+
+		do {
+			top += el.offsetTop || 0;
+			left += el.offsetLeft || 0;
+
+			if (el.offsetParent === docBody &&
+					TL.DomUtil.getStyle(el, 'position') === 'absolute') {
+				break;
+			}
+			el = el.offsetParent;
+		} while (el);
+
+		el = element;
+
+		do {
+			if (el === docBody) {
+				break;
+			}
+
+			top -= el.scrollTop || 0;
+			left -= el.scrollLeft || 0;
+
+			el = el.parentNode;
+		} while (el);
+
+		return new TL.Point(left, top);
+	},
+
+	create: function (tagName, className, container) {
+		var el = document.createElement(tagName);
+		el.className = className;
+		if (container) {
+			container.appendChild(el);
+		}
+		return el;
+	},
+
+	disableTextSelection: function () {
+		if (document.selection && document.selection.empty) {
+			document.selection.empty();
+		}
+		if (!this._onselectstart) {
+			this._onselectstart = document.onselectstart;
+			document.onselectstart = TL.Util.falseFn;
+		}
+	},
+
+	enableTextSelection: function () {
+		document.onselectstart = this._onselectstart;
+		this._onselectstart = null;
+	},
+
+	hasClass: function (el, name) {
+		return (el.className.length > 0) &&
+				new RegExp("(^|\\s)" + name + "(\\s|$)").test(el.className);
+	},
+
+	addClass: function (el, name) {
+		if (!TL.DomUtil.hasClass(el, name)) {
+			el.className += (el.className ? ' ' : '') + name;
+		}
+	},
+
+	removeClass: function (el, name) {
+		el.className = el.className.replace(/(\S+)\s*/g, function (w, match) {
+			if (match === name) {
+				return '';
+			}
+			return w;
+		}).replace(/^\s+/, '');
+	},
+
+	setOpacity: function (el, value) {
+		if (TL.Browser.ie) {
+			el.style.filter = 'alpha(opacity=' + Math.round(value * 100) + ')';
+		} else {
+			el.style.opacity = value;
+		}
+	},
+
+
+	testProp: function (props) {
+		var style = document.documentElement.style;
+
+		for (var i = 0; i < props.length; i++) {
+			if (props[i] in style) {
+				return props[i];
+			}
+		}
+		return false;
+	},
+
+	getTranslateString: function (point) {
+
+		return TL.DomUtil.TRANSLATE_OPEN +
+				point.x + 'px,' + point.y + 'px' +
+				TL.DomUtil.TRANSLATE_CLOSE;
+	},
+
+	getScaleString: function (scale, origin) {
+		var preTranslateStr = TL.DomUtil.getTranslateString(origin),
+			scaleStr = ' scale(' + scale + ') ',
+			postTranslateStr = TL.DomUtil.getTranslateString(origin.multiplyBy(-1));
+
+		return preTranslateStr + scaleStr + postTranslateStr;
+	},
+
+	setPosition: function (el, point) {
+		el._tl_pos = point;
+		if (TL.Browser.webkit3d) {
+			el.style[TL.DomUtil.TRANSFORM] =  TL.DomUtil.getTranslateString(point);
+
+			if (TL.Browser.android) {
+				el.style['-webkit-perspective'] = '1000';
+				el.style['-webkit-backface-visibility'] = 'hidden';
+			}
+		} else {
+			el.style.left = point.x + 'px';
+			el.style.top = point.y + 'px';
+		}
+	},
+
+	getPosition: function (el) {
+		return el._tl_pos;
+	}
+};
+
+/* **********************************************
+     Begin TL.DomEvent.js
+********************************************** */
+
+/*	TL.DomEvent
+	Inspired by Leaflet 
+	DomEvent contains functions for working with DOM events.
+================================================== */
+// TODO stamp
+
+TL.DomEvent = {
+	/* inpired by John Resig, Dean Edwards and YUI addEvent implementations */
+	addListener: function (/*HTMLElement*/ obj, /*String*/ type, /*Function*/ fn, /*Object*/ context) {
+		var id = TL.Util.stamp(fn),
+			key = '_tl_' + type + id;
+
+		if (obj[key]) {
+			return;
+		}
+
+		var handler = function (e) {
+			return fn.call(context || obj, e || TL.DomEvent._getEvent());
+		};
+
+		if (TL.Browser.touch && (type === 'dblclick') && this.addDoubleTapListener) {
+			this.addDoubleTapListener(obj, handler, id);
+		} else if ('addEventListener' in obj) {
+			if (type === 'mousewheel') {
+				obj.addEventListener('DOMMouseScroll', handler, false);
+				obj.addEventListener(type, handler, false);
+			} else if ((type === 'mouseenter') || (type === 'mouseleave')) {
+				var originalHandler = handler,
+					newType = (type === 'mouseenter' ? 'mouseover' : 'mouseout');
+				handler = function (e) {
+					if (!TL.DomEvent._checkMouse(obj, e)) {
+						return;
+					}
+					return originalHandler(e);
+				};
+				obj.addEventListener(newType, handler, false);
+			} else {
+				obj.addEventListener(type, handler, false);
+			}
+		} else if ('attachEvent' in obj) {
+			obj.attachEvent("on" + type, handler);
+		}
+
+		obj[key] = handler;
+	},
+
+	removeListener: function (/*HTMLElement*/ obj, /*String*/ type, /*Function*/ fn) {
+		var id = TL.Util.stamp(fn),
+			key = '_tl_' + type + id,
+			handler = obj[key];
+
+		if (!handler) {
+			return;
+		}
+
+		if (TL.Browser.touch && (type === 'dblclick') && this.removeDoubleTapListener) {
+			this.removeDoubleTapListener(obj, id);
+		} else if ('removeEventListener' in obj) {
+			if (type === 'mousewheel') {
+				obj.removeEventListener('DOMMouseScroll', handler, false);
+				obj.removeEventListener(type, handler, false);
+			} else if ((type === 'mouseenter') || (type === 'mouseleave')) {
+				obj.removeEventListener((type === 'mouseenter' ? 'mouseover' : 'mouseout'), handler, false);
+			} else {
+				obj.removeEventListener(type, handler, false);
+			}
+		} else if ('detachEvent' in obj) {
+			obj.detachEvent("on" + type, handler);
+		}
+		obj[key] = null;
+	},
+
+	_checkMouse: function (el, e) {
+		var related = e.relatedTarget;
+
+		if (!related) {
+			return true;
+		}
+
+		try {
+			while (related && (related !== el)) {
+				related = related.parentNode;
+			}
+		} catch (err) {
+			return false;
+		}
+
+		return (related !== el);
+	},
+
+	/*jshint noarg:false */ // evil magic for IE
+	_getEvent: function () {
+		var e = window.event;
+		if (!e) {
+			var caller = arguments.callee.caller;
+			while (caller) {
+				e = caller['arguments'][0];
+				if (e && window.Event === e.constructor) {
+					break;
+				}
+				caller = caller.caller;
+			}
+		}
+		return e;
+	},
+	/*jshint noarg:false */
+
+	stopPropagation: function (/*Event*/ e) {
+		if (e.stopPropagation) {
+			e.stopPropagation();
+		} else {
+			e.cancelBubble = true;
+		}
+	},
+	
+	// TODO TL.Draggable.START
+	disableClickPropagation: function (/*HTMLElement*/ el) {
+		TL.DomEvent.addListener(el, TL.Draggable.START, TL.DomEvent.stopPropagation);
+		TL.DomEvent.addListener(el, 'click', TL.DomEvent.stopPropagation);
+		TL.DomEvent.addListener(el, 'dblclick', TL.DomEvent.stopPropagation);
+	},
+
+	preventDefault: function (/*Event*/ e) {
+		if (e.preventDefault) {
+			e.preventDefault();
+		} else {
+			e.returnValue = false;
+		}
+	},
+
+	stop: function (e) {
+		TL.DomEvent.preventDefault(e);
+		TL.DomEvent.stopPropagation(e);
+	},
+
+
+	getWheelDelta: function (e) {
+		var delta = 0;
+		if (e.wheelDelta) {
+			delta = e.wheelDelta / 120;
+		}
+		if (e.detail) {
+			delta = -e.detail / 3;
+		}
+		return delta;
+	}
+};
+
+
+
+
+/* **********************************************
+     Begin TL.StyleSheet.js
+********************************************** */
+
+/*	TL.StyleSheet
+	Style Sheet Object
+================================================== */
+
+TL.StyleSheet = TL.Class.extend({
+	
+	includes: [TL.Events],
+	
+	_el: {},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function() {
+		// Borrowed from: http://davidwalsh.name/add-rules-stylesheets
+		this.style = document.createElement("style");
+		
+		// WebKit hack :(
+		this.style.appendChild(document.createTextNode(""));
+		
+		// Add the <style> element to the page
+		document.head.appendChild(this.style);
+		
+		this.sheet = this.style.sheet;
+		
+	},
+	
+	addRule: function(selector, rules, index) {
+		var _index = 0;
+		
+		if (index) {
+			_index = index;
+		}
+		
+		if("insertRule" in this.sheet) {
+			this.sheet.insertRule(selector + "{" + rules + "}", _index);
+		}
+		else if("addRule" in this.sheet) {
+			this.sheet.addRule(selector, rules, _index);
+		}
+	},
+	
+
+	/*	Events
+	================================================== */
+	onLoaded: function(error) {
+		this._state.loaded = true;
+		this.fire("loaded", this.data);
+	}
+	
+});
+
+/* **********************************************
+     Begin TL.Date.js
+********************************************** */
+
+/*	TL.Date
+	Date object
+	MONTHS are 1-BASED, not 0-BASED (different from Javascript date objects)
+================================================== */
+
+//
+// Class for human dates
+//
+
+TL.Date = TL.Class.extend({
+
+    // @data = ms, JS Date object, or JS dictionary with date properties
+	initialize: function (data, format, format_short) {
+	    if (typeof(data) == 'number') {
+			this.data = {
+				format:     "yyyy mmmm",
+				date_obj:   new Date(data)
+			};
+	    } else if(Date == data.constructor) {
+			this.data = {
+				format:     "yyyy mmmm",
+				date_obj:   data
+			};
+	    } else {
+	        this.data = JSON.parse(JSON.stringify(data)); // clone don't use by reference.
+            this._createDateObj();
+	    }
+
+		this._setFormat(format, format_short);
+    },
+
+	setDateFormat: function(format) {
+		this.data.format = format;
+	},
+
+	getDisplayDate: function(language, format) {
+	    if (this.data.display_date) {
+	        return this.data.display_date;
+	    }
+        if (!language) {
+            language = TL.Language.fallback;
+        }
+        if (language.constructor != TL.Language) {
+            trace("First argument to getDisplayDate must be TL.Language");
+            language = TL.Language.fallback;
+        }
+
+        var format_key = format || this.data.format;
+        return language.formatDate(this.data.date_obj, format_key);
+	},
+
+	getMillisecond: function() {
+		return this.getTime();
+	},
+
+	getTime: function() {
+		return this.data.date_obj.getTime();
+	},
+
+	isBefore: function(other_date) {
+        if (!this.data.date_obj.constructor == other_date.data.date_obj.constructor) {
+            throw new TL.Error("date_compare_err") // but should be able to compare 'cosmological scale' dates once we get to that...
+        }
+        if ('isBefore' in this.data.date_obj) {
+            return this.data.date_obj['isBefore'](other_date.data.date_obj);
+        }
+        return this.data.date_obj < other_date.data.date_obj
+	},
+
+	isAfter: function(other_date) {
+        if (!this.data.date_obj.constructor == other_date.data.date_obj.constructor) {
+            throw new TL.Error("date_compare_err") // but should be able to compare 'cosmological scale' dates once we get to that...
+        }
+        if ('isAfter' in this.data.date_obj) {
+            return this.data.date_obj['isAfter'](other_date.data.date_obj);
+        }
+        return this.data.date_obj > other_date.data.date_obj
+	},
+
+    // Return a new TL.Date which has been 'floored' at the given scale.
+    // @scale = string value from TL.Date.SCALES
+    floor: function(scale) {
+        var d = new Date(this.data.date_obj.getTime());
+        for (var i = 0; i < TL.Date.SCALES.length; i++) {
+             // for JS dates, we iteratively apply flooring functions
+            TL.Date.SCALES[i][2](d);
+            if (TL.Date.SCALES[i][0] == scale) return new TL.Date(d);
+        };
+
+        throw new TL.Error("invalid_scale_err", scale);
+    },
+
+	/*	Private Methods
+	================================================== */
+
+    _getDateData: function() {
+        var _date = {
+            year: 			0,
+            month: 			1, // stupid JS dates
+            day: 			1,
+            hour: 			0,
+            minute: 		0,
+            second: 		0,
+            millisecond: 	0
+		};
+
+		// Merge data
+		TL.Util.mergeData(_date, this.data);
+
+ 		// Make strings into numbers
+		var DATE_PARTS = TL.Date.DATE_PARTS;
+
+ 		for (var ix in DATE_PARTS) {
+ 		    var x = TL.Util.trim(_date[DATE_PARTS[ix]]);
+ 		    if (!x.match(/^-?\d*$/)) {
+ 		        throw new TL.Error("invalid_date_err", DATE_PARTS[ix] + " = '" + _date[DATE_PARTS[ix]] + "'");
+ 		    }
+ 		    
+			var parsed = parseInt(_date[DATE_PARTS[ix]]);
+			if (isNaN(parsed)) {
+                parsed = (ix == 4 || ix == 5) ? 1 : 0; // month and day have diff baselines
+            }
+			_date[DATE_PARTS[ix]] = parsed;
+		}
+
+		if (_date.month > 0 && _date.month <= 12) { // adjust for JS's weirdness
+			_date.month = _date.month - 1;
+		}
+
+		return _date;
+    },
+
+	_createDateObj: function() {
+	    var _date = this._getDateData();
+        this.data.date_obj = new Date(_date.year, _date.month, _date.day, _date.hour, _date.minute, _date.second, _date.millisecond);
+        if (this.data.date_obj.getFullYear() != _date.year) {
+            // Javascript has stupid defaults for two-digit years
+            this.data.date_obj.setFullYear(_date.year);
+        }
+	},
+
+    /*  Find Best Format
+     * this may not work with 'cosmologic' dates, or with TL.Date if we
+     * support constructing them based on JS Date and time
+    ================================================== */
+    findBestFormat: function(variant) {
+        var eval_array = TL.Date.DATE_PARTS,
+            format = "";
+
+        for (var i = 0; i < eval_array.length; i++) {
+            if ( this.data[eval_array[i]]) {
+                if (variant) {
+                    if (!(variant in TL.Date.BEST_DATEFORMATS)) {
+                        variant = 'short'; // legacy
+                    }
+                } else {
+                    variant = 'base'
+                }
+                return TL.Date.BEST_DATEFORMATS[variant][eval_array[i]];
+            }
+        };
+        return "";
+    },
+    _setFormat: function(format, format_short) {
+		if (format) {
+			this.data.format = format;
+		} else if (!this.data.format) {
+			this.data.format = this.findBestFormat();
+		}
+
+		if (format_short) {
+			this.data.format_short = format_short;
+		} else if (!this.data.format_short) {
+			this.data.format_short = this.findBestFormat(true);
+		}
+    }
+});
+
+// offer something that can figure out the right date class to return
+TL.Date.makeDate = function(data) {
+    var date = new TL.Date(data);
+    if (!isNaN(date.getTime())) {
+        return date;
+    }
+    return new TL.BigDate(data);
+}
+
+TL.BigYear = TL.Class.extend({
+    initialize: function (year) {
+        this.year = parseInt(year);
+        if (isNaN(this.year)) {
+            throw new TL.Error('invalid_year_err', year);
+        }
+    },
+
+    isBefore: function(that) {
+        return this.year < that.year;
+    },
+
+    isAfter: function(that) {
+        return this.year > that.year;
+    },
+
+    getTime: function() {
+        return this.year;
+    }
+});
+
+(function(cls){
+    // human scales
+    cls.SCALES = [ // ( name, units_per_tick, flooring function )
+        ['millisecond',1, function(d) { }],
+        ['second',1000, function(d) { d.setMilliseconds(0);}],
+        ['minute',1000 * 60, function(d) { d.setSeconds(0);}],
+        ['hour',1000 * 60 * 60, function(d) { d.setMinutes(0);}],
+        ['day',1000 * 60 * 60 * 24, function(d) { d.setHours(0);}],
+        ['month',1000 * 60 * 60 * 24 * 30, function(d) { d.setDate(1);}],
+        ['year',1000 * 60 * 60 * 24 * 365, function(d) { d.setMonth(0);}],
+        ['decade',1000 * 60 * 60 * 24 * 365 * 10, function(d) {
+            var real_year = d.getFullYear();
+            d.setFullYear( real_year - (real_year % 10))
+        }],
+        ['century',1000 * 60 * 60 * 24 * 365 * 100, function(d) {
+            var real_year = d.getFullYear();
+            d.setFullYear( real_year - (real_year % 100))
+        }],
+        ['millennium',1000 * 60 * 60 * 24 * 365 * 1000, function(d) {
+            var real_year = d.getFullYear();
+            d.setFullYear( real_year - (real_year % 1000))
+        }]
+    ];
+
+    // Date parts from highest to lowest precision
+    cls.DATE_PARTS = ["millisecond", "second", "minute", "hour", "day", "month", "year"];
+
+    var ISO8601_SHORT_PATTERN = /^([\+-]?\d+?)(-\d{2}?)?(-\d{2}?)?$/;
+    // regex below from
+    // http://www.pelagodesign.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/
+    var ISO8601_PATTERN = /^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/;
+
+    /* For now, rather than extract parts from regexp, lets trust the browser.
+     * Famous last words...
+     * What about UTC vs local time?
+     * see also http://stackoverflow.com/questions/10005374/ecmascript-5-date-parse-results-for-iso-8601-test-cases
+     */
+    cls.parseISODate = function(str) {
+        var d = new Date(str);
+        if (isNaN(d)) {
+            throw new TL.Error("invalid_date_err", str);
+        }
+        return {
+            year: d.getFullYear(),
+            month: d.getMonth() + 1,
+            day: d.getDate(),
+            hour: d.getHours(),
+            minute: d.getMinutes(),
+            second: d.getSeconds(),
+            millisecond: d.getMilliseconds()
+        }
+
+    }
+
+    cls.parseDate = function(str) {
+
+        if (str.match(ISO8601_SHORT_PATTERN)) {
+            // parse short specifically to avoid timezone offset confusion
+            // most browsers assume short is UTC, not local time.
+            var parts = str.match(ISO8601_SHORT_PATTERN).slice(1);
+            var d = { year: parts[0].replace('+','')} // year can be negative
+            if (parts[1]) { d['month'] = parts[1].replace('-',''); }
+            if (parts[2]) { d['day'] = parts[2].replace('-',''); }
+            return d;
+        }
+
+        if (str.match(ISO8601_PATTERN)) {
+            return cls.parseISODate(str);
+        }
+
+        if (str.match(/^\-?\d+$/)) {
+            return { year: str }
+        }
+
+        var parsed = {}
+        if (str.match(/\d+\/\d+\/\d+/)) { // mm/yy/dddd
+            var date = str.match(/\d+\/\d+\/\d+/)[0];
+            str = TL.Util.trim(str.replace(date,''));
+            var date_parts = date.split('/');
+            parsed.month = date_parts[0];
+            parsed.day = date_parts[1];
+            parsed.year = date_parts[2];
+        }
+
+        if (str.match(/\d+\/\d+/)) { // mm/yy
+            var date = str.match(/\d+\/\d+/)[0];
+            str = TL.Util.trim(str.replace(date,''));
+            var date_parts = date.split('/');
+            parsed.month = date_parts[0];
+            parsed.year = date_parts[1];
+        }
+        // todo: handle hours, minutes, seconds, millis other date formats, etc...
+        if (str.match(':')) {
+            var time_parts = str.split(':');
+            parsed.hour = time_parts[0];
+            parsed.minute = time_parts[1];
+            if (time_parts[2]) {
+                second_parts = time_parts[2].split('.');
+                parsed.second = second_parts[0];
+                parsed.millisecond = second_parts[1];
+            }
+        }
+        return parsed;
+    }
+
+    cls.BEST_DATEFORMATS = {
+        base: {
+            millisecond: 'time_short',
+            second: 'time',
+            minute: 'time_no_seconds_small_date',
+            hour: 'time_no_seconds_small_date',
+            day: 'full',
+            month: 'month',
+            year: 'year',
+            decade: 'year',
+            century: 'year',
+            millennium: 'year',
+            age: 'fallback',
+            epoch: 'fallback',
+            era: 'fallback',
+            eon: 'fallback',
+            eon2: 'fallback'
+        },
+
+        short: {
+            millisecond: 'time_short',
+            second: 'time_short',
+            minute: 'time_no_seconds_short',
+            hour: 'time_no_minutes_short',
+            day: 'full_short',
+            month: 'month_short',
+            year: 'year',
+            decade: 'year',
+            century: 'year',
+            millennium: 'year',
+            age: 'fallback',
+            epoch: 'fallback',
+            era: 'fallback',
+            eon: 'fallback',
+            eon2: 'fallback'
+        }
+    }
+
+
+})(TL.Date)
+
+
+//
+// Class for cosmological dates
+//
+TL.BigDate = TL.Date.extend({
+
+    // @data = TL.BigYear object or JS dictionary with date properties
+    initialize: function(data, format, format_short) {
+        if (TL.BigYear == data.constructor) {
+            this.data = {
+                date_obj:   data
+            }
+        } else {
+            this.data = JSON.parse(JSON.stringify(data));
+            this._createDateObj();
+        }
+
+        this._setFormat(format, format_short);
+    },
+
+    // Create date_obj
+    _createDateObj: function() {
+	    var _date = this._getDateData();
+        this.data.date_obj = new TL.BigYear(_date.year);
+    },
+
+    // Return a new TL.BigDate which has been 'floored' at the given scale.
+    // @scale = string value from TL.BigDate.SCALES
+    floor: function(scale) {
+        for (var i = 0; i < TL.BigDate.SCALES.length; i++) {
+            if (TL.BigDate.SCALES[i][0] == scale) {
+                var floored = TL.BigDate.SCALES[i][2](this.data.date_obj);
+                return new TL.BigDate(floored);
+            }
+        };
+
+        throw new TL.Error("invalid_scale_err", scale);
+    }
+});
+
+(function(cls){
+    // cosmo units are years, not millis
+    var AGE = 1000000;
+    var EPOCH = AGE * 10;
+    var ERA = EPOCH * 10;
+    var EON = ERA * 10;
+
+    var Floorer = function(unit) {
+        return function(a_big_year) {
+            var year = a_big_year.getTime();
+            return new TL.BigYear(Math.floor(year/unit) * unit);
+        }
+    }
+
+    // cosmological scales
+    cls.SCALES = [ // ( name, units_per_tick, flooring function )
+				['year',1, new Floorer(1)],
+				['decade',10, new Floorer(10)],
+				['century',100, new Floorer(100)],
+				['millennium',1000, new Floorer(1000)],
+        ['age',AGE, new Floorer(AGE)],          // 1M years
+        ['epoch',EPOCH, new Floorer(EPOCH)],    // 10M years
+        ['era',ERA, new Floorer(ERA)],          // 100M years
+        ['eon',EON, new Floorer(EON)]           // 1B years
+    ];
+
+})(TL.BigDate)
+
+
+/* **********************************************
+     Begin TL.DateUtil.js
+********************************************** */
+
+/*	TL.DateUtil
+	Utilities for parsing time
+================================================== */
+
+
+TL.DateUtil = {
+	get: function (id) {
+		return (typeof id === 'string' ? document.getElementById(id) : id);
+	},
+
+	sortByDate: function(array,prop_name) { // only for use with slide data objects
+		var prop_name = prop_name || 'start_date';
+		array.sort(function(a,b){
+			if (a[prop_name].isBefore(b[prop_name])) return -1;
+			if (a[prop_name].isAfter(b[prop_name])) return 1;
+			return 0;
+		});
+	},
+
+	parseTime: function(time_str) {
+		var parsed = {
+			hour: null, minute: null, second: null, millisecond: null // conform to keys in TL.Date
+		}
+		var period = null;
+		var match = time_str.match(/(\s*[AaPp]\.?[Mm]\.?\s*)$/);
+		if (match) {
+			period = TL.Util.trim(match[0]);
+			time_str = TL.Util.trim(time_str.substring(0,time_str.lastIndexOf(period)));
+		}
+
+		var parts = [];
+		var no_separators = time_str.match(/^\s*(\d{1,2})(\d{2})\s*$/);
+		if (no_separators) {
+			parts = no_separators.slice(1);
+		} else {
+			parts = time_str.split(':');
+			if (parts.length == 1) {
+				parts = time_str.split('.');
+			}
+		}
+
+		if (parts.length > 4) { 
+		    throw new TL.Error("invalid_separator_error");
+		}
+
+		parsed.hour = parseInt(parts[0]);
+
+		if (period && period.toLowerCase()[0] == 'p' && parsed.hour != 12) {
+			parsed.hour += 12;
+		} else if (period && period.toLowerCase()[0] == 'a' && parsed.hour == 12) {
+			parsed.hour = 0;
+		}
+
+
+		if (isNaN(parsed.hour) || parsed.hour < 0 || parsed.hour > 23) {
+			throw new TL.Error("invalid_hour_err", parsed.hour);
+		}
+
+		if (parts.length > 1) {
+			parsed.minute = parseInt(parts[1]);
+			if (isNaN(parsed.minute)) { 
+			    throw new TL.Error("invalid_minute_err", parsed.minute); 
+			}
+		}
+
+		if (parts.length > 2) {
+			var sec_parts = parts[2].split(/[\.,]/);
+			parts = sec_parts.concat(parts.slice(3)) // deal with various methods of specifying fractional seconds
+			if (parts.length > 2) { 
+			    throw new TL.Error("invalid_second_fractional_err");
+			}
+			parsed.second = parseInt(parts[0]);
+			if (isNaN(parsed.second)) { 
+			    throw new TL.Error("invalid_second_err");
+			}
+			if (parts.length == 2) {
+				var frac_secs = parseInt(parts[1]);
+				if (isNaN(frac_secs)) { 
+				    throw new TL.Error("invalid_fractional_err");
+				}
+				parsed.millisecond = 100 * frac_secs;
+			}
+		}
+
+		return parsed;
+	},
+
+	SCALE_DATE_CLASSES: {
+		human: TL.Date,
+		cosmological: TL.BigDate
+	}
+
+
+};
+
+
+/* **********************************************
+     Begin TL.Draggable.js
+********************************************** */
+
+/*	TL.Draggable
+	TL.Draggable allows you to add dragging capabilities to any element. Supports mobile devices too.
+	TODO Enable constraints
+================================================== */
+
+TL.Draggable = TL.Class.extend({
+	
+	includes: TL.Events,
+	
+	_el: {},
+	
+	mousedrag: {
+		down:		"mousedown",
+		up:			"mouseup",
+		leave:		"mouseleave",
+		move:		"mousemove"
+	},
+	
+	touchdrag: {
+		down:		"touchstart",
+		up:			"touchend",
+		leave:		"mouseleave",
+		move:		"touchmove"
+	},
+
+	initialize: function (drag_elem, options, move_elem) {
+		
+		// DOM ELements 
+		this._el = {
+			drag: drag_elem,
+			move: drag_elem
+		};
+		
+		if (move_elem) {
+			this._el.move = move_elem;
+		}
+		
+		
+		//Options
+		this.options = {
+			enable:	{
+				x: true,
+				y: true
+			},
+			constraint: {
+				top: false,
+				bottom: false,
+				left: false,
+				right: false
+			},
+			momentum_multiplier: 	2000,
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint
+		};
+		
+		
+		// Animation Object
+		this.animator = null;
+		
+		// Drag Event Type
+		this.dragevent = this.mousedrag;
+		
+		if (TL.Browser.touch) {
+			this.dragevent = this.touchdrag;
+		}
+		
+		// Draggable Data
+		this.data = {
+			sliding:		false,
+			direction: 		"none",
+			pagex: {
+				start:		0,
+				end:		0
+			},
+			pagey: {
+				start:		0,
+				end:		0
+			},
+			pos: {
+				start: {
+					x: 0,
+					y:0
+				},
+				end: {
+					x: 0,
+					y:0
+				}
+			},
+			new_pos: {
+				x: 0,
+				y: 0
+			},
+			new_pos_parent: {
+				x: 0,
+				y: 0
+			},
+			time: {
+				start:		0,
+				end:		0
+			},
+			touch:			false
+		};
+		
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		
+		
+	},
+	
+	enable: function(e) {
+		
+		this.data.pos.start = 0; 
+		this._el.move.style.left = this.data.pos.start.x + "px";
+		this._el.move.style.top = this.data.pos.start.y + "px";
+		this._el.move.style.position = "absolute";
+	},
+	
+	disable: function() {
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
+	},
+	
+	stopMomentum: function() {
+		if (this.animator) {
+			this.animator.stop();
+		}
+
+	},
+	
+	updateConstraint: function(c) {
+		this.options.constraint = c;
+		
+	},
+	
+	/*	Private Methods
+	================================================== */
+	_onDragStart: function(e) {
+		if (TL.Browser.touch) {
+			if (e.originalEvent) {
+				this.data.pagex.start = e.originalEvent.touches[0].screenX;
+				this.data.pagey.start = e.originalEvent.touches[0].screenY;
+			} else {
+				this.data.pagex.start = e.targetTouches[0].screenX;
+				this.data.pagey.start = e.targetTouches[0].screenY;
+			}
+		} else {
+			this.data.pagex.start = e.pageX;
+			this.data.pagey.start = e.pageY;
+		}
+		
+		// Center element to finger or mouse
+		if (this.options.enable.x) {
+			this._el.move.style.left = this.data.pagex.start - (this._el.move.offsetWidth / 2) + "px";
+		}
+		
+		if (this.options.enable.y) {
+			this._el.move.style.top = this.data.pagey.start - (this._el.move.offsetHeight / 2) + "px";
+		}
+		
+		this.data.pos.start = TL.Dom.getPosition(this._el.drag);
+		this.data.time.start = new Date().getTime();
+		
+		this.fire("dragstart", this.data);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
+	},
+	
+	_onDragEnd: function(e) {
+		this.data.sliding = false;
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
+		this.fire("dragend", this.data);
+		
+		//  momentum
+		this._momentum();
+	},
+	
+	_onDragMove: function(e) {
+		e.preventDefault();
+		this.data.sliding = true;
+		
+		if (TL.Browser.touch) {
+			if (e.originalEvent) {
+				this.data.pagex.end = e.originalEvent.touches[0].screenX;
+				this.data.pagey.end = e.originalEvent.touches[0].screenY;
+			} else {
+				this.data.pagex.end = e.targetTouches[0].screenX;
+				this.data.pagey.end = e.targetTouches[0].screenY;
+			}
+
+		} else {
+			this.data.pagex.end = e.pageX;
+			this.data.pagey.end = e.pageY;
+		}
+		
+		this.data.pos.end = TL.Dom.getPosition(this._el.drag);
+		this.data.new_pos.x = -(this.data.pagex.start - this.data.pagex.end - this.data.pos.start.x);
+		this.data.new_pos.y = -(this.data.pagey.start - this.data.pagey.end - this.data.pos.start.y );
+		
+		if (this.options.enable.x) {
+			this._el.move.style.left = this.data.new_pos.x + "px";
+		}
+		
+		if (this.options.enable.y) {
+			this._el.move.style.top = this.data.new_pos.y + "px";
+		}
+		
+		this.fire("dragmove", this.data);
+	},
+	
+	_momentum: function() {
+		var pos_adjust = {
+				x: 0,
+				y: 0,
+				time: 0
+			},
+			pos_change = {
+				x: 0,
+				y: 0,
+				time: 0
+			},
+			swipe = false,
+			swipe_direction = "";
+		
+		
+		if (TL.Browser.touch) {
+			// Treat mobile multiplier differently
+			//this.options.momentum_multiplier = this.options.momentum_multiplier * 2;
+		}
+		
+		pos_adjust.time = (new Date().getTime() - this.data.time.start) * 10;
+		pos_change.time = (new Date().getTime() - this.data.time.start) * 10;
+		
+		pos_change.x = this.options.momentum_multiplier * (Math.abs(this.data.pagex.end) - Math.abs(this.data.pagex.start));
+		pos_change.y = this.options.momentum_multiplier * (Math.abs(this.data.pagey.end) - Math.abs(this.data.pagey.start));
+		
+		pos_adjust.x = Math.round(pos_change.x / pos_change.time);
+		pos_adjust.y = Math.round(pos_change.y / pos_change.time);
+		
+		this.data.new_pos.x = Math.min(this.data.pos.end.x + pos_adjust.x);
+		this.data.new_pos.y = Math.min(this.data.pos.end.y + pos_adjust.y);
+
+		
+		if (!this.options.enable.x) {
+			this.data.new_pos.x = this.data.pos.start.x;
+		} else if (this.data.new_pos.x < 0) {
+			this.data.new_pos.x = 0;
+		}
+		
+		if (!this.options.enable.y) {
+			this.data.new_pos.y = this.data.pos.start.y;
+		} else if (this.data.new_pos.y < 0) {
+			this.data.new_pos.y = 0;
+		}
+		
+		// Detect Swipe
+		if (pos_change.time < 3000) {
+			swipe = true;
+		}
+		
+		// Detect Direction
+		if (Math.abs(pos_change.x) > 10000) {
+			this.data.direction = "left";
+			if (pos_change.x > 0) {
+				this.data.direction = "right";
+			}
+		}
+		// Detect Swipe
+		if (Math.abs(pos_change.y) > 10000) {
+			this.data.direction = "up";
+			if (pos_change.y > 0) {
+				this.data.direction = "down";
+			}
+		}
+		this._animateMomentum();
+		if (swipe) {
+			this.fire("swipe_" + this.data.direction, this.data);
+		}
+		
+	},
+	
+	
+	_animateMomentum: function() {
+		var pos = {
+				x: this.data.new_pos.x,
+				y: this.data.new_pos.y
+			},
+			animate = {
+				duration: 	this.options.duration,
+				easing: 	TL.Ease.easeOutStrong
+			};
+		
+		if (this.options.enable.y) {
+			if (this.options.constraint.top || this.options.constraint.bottom) {
+				if (pos.y > this.options.constraint.bottom) {
+					pos.y = this.options.constraint.bottom;
+				} else if (pos.y < this.options.constraint.top) {
+					pos.y = this.options.constraint.top;
+				}
+			}
+			animate.top = Math.floor(pos.y) + "px";
+		}
+		
+		if (this.options.enable.x) {
+			if (this.options.constraint.left || this.options.constraint.right) {
+				if (pos.x > this.options.constraint.left) {
+					pos.x = this.options.constraint.left;
+				} else if (pos.x < this.options.constraint.right) {
+					pos.x = this.options.constraint.right;
+				}
+			}
+			animate.left = Math.floor(pos.x) + "px";
+		}
+		
+		this.animator = TL.Animate(this._el.move, animate);
+		
+		this.fire("momentum", this.data);
+	}
+});
+
+
+/* **********************************************
+     Begin TL.Swipable.js
+********************************************** */
+
+/*	TL.Swipable
+	TL.Draggable allows you to add dragging capabilities to any element. Supports mobile devices too.
+	TODO Enable constraints
+================================================== */
+
+TL.Swipable = TL.Class.extend({
+	
+	includes: TL.Events,
+	
+	_el: {},
+	
+	mousedrag: {
+		down:		"mousedown",
+		up:			"mouseup",
+		leave:		"mouseleave",
+		move:		"mousemove"
+	},
+	
+	touchdrag: {
+		down:		"touchstart",
+		up:			"touchend",
+		leave:		"mouseleave",
+		move:		"touchmove"
+	},
+
+	initialize: function (drag_elem, move_elem, options) {
+		
+		// DOM ELements 
+		this._el = {
+			drag: drag_elem,
+			move: drag_elem
+		};
+		
+		if (move_elem) {
+			this._el.move = move_elem;
+		}
+		
+		
+		//Options
+		this.options = {
+			snap: false,
+			enable:	{
+				x: true,
+				y: true
+			},
+			constraint: {
+				top: false,
+				bottom: false,
+				left: 0,
+				right: false
+			},
+			momentum_multiplier: 	2000,
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint
+		};
+		
+		
+		// Animation Object
+		this.animator = null;
+		
+		// Drag Event Type
+		this.dragevent = this.mousedrag;
+		
+		if (TL.Browser.touch) {
+			this.dragevent = this.touchdrag;
+		}
+		
+		// Draggable Data
+		this.data = {
+			sliding:		false,
+			direction: 		"none",
+			pagex: {
+				start:		0,
+				end:		0
+			},
+			pagey: {
+				start:		0,
+				end:		0
+			},
+			pos: {
+				start: {
+					x: 0,
+					y:0
+				},
+				end: {
+					x: 0,
+					y:0
+				}
+			},
+			new_pos: {
+				x: 0,
+				y: 0
+			},
+			new_pos_parent: {
+				x: 0,
+				y: 0
+			},
+			time: {
+				start:		0,
+				end:		0
+			},
+			touch:			false
+		};
+		
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		
+		
+	},
+	
+	enable: function(e) {
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
+		
+		this.data.pos.start = 0; //TL.Dom.getPosition(this._el.move);
+		this._el.move.style.left = this.data.pos.start.x + "px";
+		this._el.move.style.top = this.data.pos.start.y + "px";
+		this._el.move.style.position = "absolute";
+		//this._el.move.style.zIndex = "11";
+		//this._el.move.style.cursor = "move";
+	},
+	
+	disable: function() {
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
+	},
+	
+	stopMomentum: function() {
+		if (this.animator) {
+			this.animator.stop();
+		}
+
+	},
+	
+	updateConstraint: function(c) {
+		this.options.constraint = c;
+		
+		// Temporary until issues are fixed
+		
+	},
+	
+	/*	Private Methods
+	================================================== */
+	_onDragStart: function(e) {
+		
+		if (this.animator) {
+			this.animator.stop();
+		}
+		
+		if (TL.Browser.touch) {
+			if (e.originalEvent) {
+				this.data.pagex.start = e.originalEvent.touches[0].screenX;
+				this.data.pagey.start = e.originalEvent.touches[0].screenY;
+			} else {
+				this.data.pagex.start = e.targetTouches[0].screenX;
+				this.data.pagey.start = e.targetTouches[0].screenY;
+			}
+		} else {
+			this.data.pagex.start = e.pageX;
+			this.data.pagey.start = e.pageY;
+		}
+		
+		// Center element to finger or mouse
+		if (this.options.enable.x) {
+			//this._el.move.style.left = this.data.pagex.start - (this._el.move.offsetWidth / 2) + "px";
+		}
+		
+		if (this.options.enable.y) {
+			//this._el.move.style.top = this.data.pagey.start - (this._el.move.offsetHeight / 2) + "px";
+		}
+		
+		this.data.pos.start = {x:this._el.move.offsetLeft, y:this._el.move.offsetTop};
+		
+		
+		this.data.time.start 			= new Date().getTime();
+		
+		this.fire("dragstart", this.data);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
+	},
+	
+	_onDragEnd: function(e) {
+		this.data.sliding = false;
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
+		this.fire("dragend", this.data);
+		
+		//  momentum
+		this._momentum();
+	},
+	
+	_onDragMove: function(e) {
+		var change = {
+			x:0,
+			y:0
+		}
+		//e.preventDefault();
+		this.data.sliding = true;
+		
+		if (TL.Browser.touch) {
+			if (e.originalEvent) {
+				this.data.pagex.end = e.originalEvent.touches[0].screenX;
+				this.data.pagey.end = e.originalEvent.touches[0].screenY;
+			} else {
+				this.data.pagex.end = e.targetTouches[0].screenX;
+				this.data.pagey.end = e.targetTouches[0].screenY;
+			}
+
+		} else {
+			this.data.pagex.end = e.pageX;
+			this.data.pagey.end = e.pageY;
+		}
+		
+		change.x = this.data.pagex.start - this.data.pagex.end;
+		change.y = this.data.pagey.start - this.data.pagey.end;
+		
+		this.data.pos.end = {x:this._el.drag.offsetLeft, y:this._el.drag.offsetTop};
+		
+		this.data.new_pos.x = -(change.x - this.data.pos.start.x);
+		this.data.new_pos.y = -(change.y - this.data.pos.start.y );
+		
+		if (this.options.enable.x && ( Math.abs(change.x) > Math.abs(change.y) ) ) {
+			e.preventDefault();
+			this._el.move.style.left = this.data.new_pos.x + "px";
+		}
+		
+		if (this.options.enable.y && ( Math.abs(change.y) > Math.abs(change.y) ) ) {
+			e.preventDefault();
+			this._el.move.style.top = this.data.new_pos.y + "px";
+		}
+		
+		this.fire("dragmove", this.data);
+	},
+	
+	_momentum: function() {
+		var pos_adjust = {
+				x: 0,
+				y: 0,
+				time: 0
+			},
+			pos_change = {
+				x: 0,
+				y: 0,
+				time: 0
+			},
+			swipe_detect = {
+				x: false,
+				y: false
+			},
+			swipe = false,
+			swipe_direction = "";
+		
+		
+		this.data.direction = null;
+		
+		pos_adjust.time = (new Date().getTime() - this.data.time.start) * 10;
+		pos_change.time = (new Date().getTime() - this.data.time.start) * 10;
+		
+		pos_change.x = this.options.momentum_multiplier * (Math.abs(this.data.pagex.end) - Math.abs(this.data.pagex.start));
+		pos_change.y = this.options.momentum_multiplier * (Math.abs(this.data.pagey.end) - Math.abs(this.data.pagey.start));
+		
+		pos_adjust.x = Math.round(pos_change.x / pos_change.time);
+		pos_adjust.y = Math.round(pos_change.y / pos_change.time);
+		
+		this.data.new_pos.x = Math.min(this.data.new_pos.x + pos_adjust.x);
+		this.data.new_pos.y = Math.min(this.data.new_pos.y + pos_adjust.y);
+		
+		if (!this.options.enable.x) {
+			this.data.new_pos.x = this.data.pos.start.x;
+		} else if (this.options.constraint.left && this.data.new_pos.x > this.options.constraint.left) {
+			this.data.new_pos.x = this.options.constraint.left;
+		}
+		
+		if (!this.options.enable.y) {
+			this.data.new_pos.y = this.data.pos.start.y;
+		} else if (this.data.new_pos.y < 0) {
+			this.data.new_pos.y = 0;
+		}
+		
+		// Detect Swipe
+		if (pos_change.time < 2000) {
+			swipe = true;
+		}
+		
+		
+		if (this.options.enable.x && this.options.enable.y) {
+			if (Math.abs(pos_change.x) > Math.abs(pos_change.y)) {
+				swipe_detect.x = true;
+			} else {
+				swipe_detect.y = true;
+			}
+		} else if (this.options.enable.x) {
+			if (Math.abs(pos_change.x) > Math.abs(pos_change.y)) {
+				swipe_detect.x = true;
+			}
+		} else {
+			if (Math.abs(pos_change.y) > Math.abs(pos_change.x)) {
+				swipe_detect.y = true;
+			}
+		}
+		
+		// Detect Direction and long swipe
+		if (swipe_detect.x) {
+			
+			// Long Swipe
+			if (Math.abs(pos_change.x) > (this._el.drag.offsetWidth/2)) {
+				swipe = true;
+			}
+			
+			if (Math.abs(pos_change.x) > 10000) {
+				this.data.direction = "left";
+				if (pos_change.x > 0) {
+					this.data.direction = "right";
+				}
+			}
+		}
+		
+		if (swipe_detect.y) {
+			
+			// Long Swipe
+			if (Math.abs(pos_change.y) > (this._el.drag.offsetHeight/2)) {
+				swipe = true;
+			}
+			
+			if (Math.abs(pos_change.y) > 10000) {
+				this.data.direction = "up";
+				if (pos_change.y > 0) {
+					this.data.direction = "down";
+				}
+			}
+		}
+		
+		if (pos_change.time < 1000 ) {
+			
+		} else {
+			this._animateMomentum();
+		}
+		
+		if (swipe && this.data.direction) {
+			this.fire("swipe_" + this.data.direction, this.data);
+		} else if (this.data.direction) {
+			this.fire("swipe_nodirection", this.data);
+		} else if (this.options.snap) {
+			this.animator.stop();
+			
+			this.animator = TL.Animate(this._el.move, {
+				top: 		this.data.pos.start.y,
+				left: 		this.data.pos.start.x,
+				duration: 	this.options.duration,
+				easing: 	TL.Ease.easeOutStrong
+			});
+		}
+		
+	},
+	
+	
+	_animateMomentum: function() {
+		var pos = {
+				x: this.data.new_pos.x,
+				y: this.data.new_pos.y
+			},
+			animate = {
+				duration: 	this.options.duration,
+				easing: 	TL.Ease.easeOutStrong
+			};
+		
+		if (this.options.enable.y) {
+			if (this.options.constraint.top || this.options.constraint.bottom) {
+				if (pos.y > this.options.constraint.bottom) {
+					pos.y = this.options.constraint.bottom;
+				} else if (pos.y < this.options.constraint.top) {
+					pos.y = this.options.constraint.top;
+				}
+			}
+			animate.top = Math.floor(pos.y) + "px";
+		}
+		
+		if (this.options.enable.x) {
+			if (this.options.constraint.left && pos.x >= this.options.constraint.left) {
+				pos.x = this.options.constraint.left;
+			}
+			if (this.options.constraint.right && pos.x < this.options.constraint.right) {
+				pos.x = this.options.constraint.right;
+			}
+
+			animate.left = Math.floor(pos.x) + "px";
+		}
+		
+		this.animator = TL.Animate(this._el.move, animate);
+		
+		this.fire("momentum", this.data);
+	}
+});
+
+
+/* **********************************************
+     Begin TL.MenuBar.js
+********************************************** */
+
+/*	TL.MenuBar
+	Draggable component to control size
+================================================== */
+
+TL.MenuBar = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(elem, parent_elem, options) {
+		// DOM ELEMENTS
+		this._el = {
+			parent: {},
+			container: {},
+			button_backtostart: {},
+			button_zoomin: {},
+			button_zoomout: {},
+			arrow: {},
+			line: {},
+			coverbar: {},
+			grip: {}
+		};
+
+		this.collapsed = false;
+
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+		} else {
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		if (parent_elem) {
+			this._el.parent = parent_elem;
+		}
+
+		//Options
+		this.options = {
+			width: 					600,
+			height: 				600,
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint,
+			menubar_default_y: 		0
+		};
+
+		// Animation
+		this.animator = {};
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+
+		this._initLayout();
+		this._initEvents();
+	},
+
+	/*	Public
+	================================================== */
+	show: function(d) {
+
+		var duration = this.options.duration;
+		if (d) {
+			duration = d;
+		}
+		/*
+		this.animator = TL.Animate(this._el.container, {
+			top: 		this.options.menubar_default_y + "px",
+			duration: 	duration,
+			easing: 	TL.Ease.easeOutStrong
+		});
+		*/
+	},
+
+	hide: function(top) {
+		/*
+		this.animator = TL.Animate(this._el.container, {
+			top: 		top,
+			duration: 	this.options.duration,
+			easing: 	TL.Ease.easeOutStrong
+		});
+		*/
+	},
+
+	toogleZoomIn: function(show) {
+		if (show) {
+      TL.DomUtil.removeClass(this._el.button_zoomin,'tl-menubar-button-inactive');
+		} else {
+      TL.DomUtil.addClass(this._el.button_zoomin,'tl-menubar-button-inactive');
+		}
+	},
+
+	toogleZoomOut: function(show) {
+		if (show) {
+      TL.DomUtil.removeClass(this._el.button_zoomout,'tl-menubar-button-inactive');
+		} else {
+      TL.DomUtil.addClass(this._el.button_zoomout,'tl-menubar-button-inactive');
+		}
+	},
+
+	setSticky: function(y) {
+		this.options.menubar_default_y = y;
+	},
+
+	/*	Color
+	================================================== */
+	setColor: function(inverted) {
+		if (inverted) {
+			this._el.container.className = 'tl-menubar tl-menubar-inverted';
+		} else {
+			this._el.container.className = 'tl-menubar';
+		}
+	},
+
+	/*	Update Display
+	================================================== */
+	updateDisplay: function(w, h, a, l) {
+		this._updateDisplay(w, h, a, l);
+	},
+
+
+	/*	Events
+	================================================== */
+	_onButtonZoomIn: function(e) {
+		this.fire("zoom_in", e);
+	},
+
+	_onButtonZoomOut: function(e) {
+		this.fire("zoom_out", e);
+	},
+
+	_onButtonBackToStart: function(e) {
+		this.fire("back_to_start", e);
+	},
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+
+		// Create Layout
+		this._el.button_zoomin 							= TL.Dom.create('span', 'tl-menubar-button', this._el.container);
+		this._el.button_zoomout 						= TL.Dom.create('span', 'tl-menubar-button', this._el.container);
+		this._el.button_backtostart 					= TL.Dom.create('span', 'tl-menubar-button', this._el.container);
+
+		if (TL.Browser.mobile) {
+			this._el.container.setAttribute("ontouchstart"," ");
+		}
+
+		this._el.button_backtostart.innerHTML		= "<span class='tl-icon-goback'></span>";
+		this._el.button_zoomin.innerHTML			= "<span class='tl-icon-zoom-in'></span>";
+		this._el.button_zoomout.innerHTML			= "<span class='tl-icon-zoom-out'></span>";
+
+
+	},
+
+	_initEvents: function () {
+		TL.DomEvent.addListener(this._el.button_backtostart, 'click', this._onButtonBackToStart, this);
+		TL.DomEvent.addListener(this._el.button_zoomin, 'click', this._onButtonZoomIn, this);
+		TL.DomEvent.addListener(this._el.button_zoomout, 'click', this._onButtonZoomOut, this);
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, animate) {
+
+		if (width) {
+			this.options.width = width;
+		}
+		if (height) {
+			this.options.height = height;
+		}
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Message.js
+********************************************** */
+
+/*	TL.Message
+	
+================================================== */
+ 
+TL.Message = TL.Class.extend({
+	
+	includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
+	
+	_el: {},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, add_to_container) {
+		// DOM ELEMENTS
+		this._el = {
+			parent: {},
+			container: {},
+			message_container: {},
+			loading_icon: {},
+			message: {}
+		};
+	
+		//Options
+		this.options = {
+			width: 					600,
+			height: 				600,
+			message_class: 			"tl-message",
+			message_icon_class: 	"tl-loading-icon"
+		};
+		
+		this._add_to_container = add_to_container || {}; // save ref
+		
+		// Merge Data and Options
+		TL.Util.mergeData(this.data, data);
+		TL.Util.mergeData(this.options, options);
+		
+		this._el.container = TL.Dom.create("div", this.options.message_class);
+		
+		if (add_to_container) {
+			add_to_container.appendChild(this._el.container);
+			this._el.parent = add_to_container;
+		}
+		
+		// Animation
+		this.animator = {};
+				
+		this._initLayout();
+		this._initEvents();
+	},
+	
+	/*	Public
+	================================================== */
+	updateMessage: function(t) {
+		this._updateMessage(t);
+	},
+	
+	
+	/*	Update Display
+	================================================== */
+	updateDisplay: function(w, h) {
+		this._updateDisplay(w, h);
+	},
+	
+	_updateMessage: function(t) {
+		if (!t) {
+			this._el.message.innerHTML = this._('loading');
+		} else {
+			this._el.message.innerHTML = t;
+		}
+		
+		// Re-add to DOM?
+		if(!this._el.parent.atrributes && this._add_to_container.attributes) {
+		    this._add_to_container.appendChild(this._el.container);
+		    this._el.parent = this._add_to_container;
+		}
+	},
+	
+
+	/*	Events
+	================================================== */
+
+	
+	_onMouseClick: function() {
+		this.fire("clicked", this.options);
+	},
+	
+	_onRemove: function() {
+	    this._el.parent = {};
+	},
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		
+		// Create Layout
+		this._el.message_container = TL.Dom.create("div", "tl-message-container", this._el.container);
+		this._el.loading_icon = TL.Dom.create("div", this.options.message_icon_class, this._el.message_container);
+		this._el.message = TL.Dom.create("div", "tl-message-content", this._el.message_container);
+		
+		this._updateMessage();
+		
+	},
+	
+	_initEvents: function () {
+		TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
+		TL.DomEvent.addListener(this, 'removed', this._onRemove, this);
+	},
+	
+	// Update Display
+	_updateDisplay: function(width, height, animate) {
+		
+	}
+	
+});
+
+/* **********************************************
+     Begin TL.MediaType.js
+********************************************** */
+
+/*	TL.MediaType
+	Determines the type of media the url string is.
+	returns an object with .type and .id
+	You can add new media types by adding a regex
+	to match and the media class name to use to
+	render the media
+	
+	The image_only parameter indicates that the
+	call only wants an image-based media type
+	that can be resolved to an image URL.
+
+	TODO
+	Allow array so a slideshow can be a mediatype
+================================================== */
+TL.MediaType = function(m, image_only) {
+	var media = {},
+		media_types = 	[
+			{
+				type: 		"youtube",
+				name: 		"YouTube",
+				match_str: 	"^(https?:)?\/*(www.)?youtube|youtu\.be",
+				cls: 		TL.Media.YouTube
+			},
+			{
+				type: 		"vimeo",
+				name: 		"Vimeo",
+				match_str: 	"^(https?:)?\/*(player.)?vimeo\.com",
+				cls: 		TL.Media.Vimeo
+			},
+			{
+				type: 		"dailymotion",
+				name: 		"DailyMotion",
+				match_str: 	"^(https?:)?\/*(www.)?dailymotion\.com",
+				cls: 		TL.Media.DailyMotion
+			},
+			{
+				type: 		"vine",
+				name: 		"Vine",
+				match_str: 	"^(https?:)?\/*(www.)?vine\.co",
+				cls: 		TL.Media.Vine
+			},
+			{
+				type: 		"soundcloud",
+				name: 		"SoundCloud",
+				match_str: 	"^(https?:)?\/*(player.)?soundcloud\.com",
+				cls: 		TL.Media.SoundCloud
+			},
+			{
+				type: 		"twitter",
+				name: 		"Twitter",
+				match_str: 	"^(https?:)?\/*(www.)?twitter\.com",
+				cls: 		TL.Media.Twitter
+			},
+			{
+				type: 		"twitterembed",
+				name: 		"TwitterEmbed",
+				match_str: 	"<blockquote class=\"twitter-tweet\"",
+				cls: 		TL.Media.TwitterEmbed
+			},
+			{
+				type: 		"googlemaps",
+				name: 		"Google Map",
+				match_str: 	/google.+?\/maps\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/search\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/place\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/dir\/([\w\W]+)\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)/,
+				cls: 		TL.Media.GoogleMap
+			},
+			{
+				type: 		"googleplus",
+				name: 		"Google+",
+				match_str: 	"^(https?:)?\/*plus.google",
+				cls: 		TL.Media.GooglePlus
+			},
+			{
+				type: 		"flickr",
+				name: 		"Flickr",
+				match_str: 	"^(https?:)?\/*(www.)?flickr.com\/photos",
+				cls: 		TL.Media.Flickr
+			},
+			{
+				type: 		"flickr",
+				name: 		"Flickr",
+				match_str: 	"^(https?:\/\/)?flic.kr\/.*",
+				cls: 		TL.Media.Flickr
+			},
+			{
+				type: 		"instagram",
+				name: 		"Instagram",
+				match_str: 	/^(https?:)?\/*(www.)?(instagr.am|^(https?:)?\/*(www.)?instagram.com)\/p\//,
+				cls: 		TL.Media.Instagram
+			},
+			{
+				type: 		"profile",
+				name: 		"Profile",
+				match_str: 	/^(https?:)?\/*(www.)?instagr.am\/[a-zA-Z0-9]{2,}|^(https?:)?\/*(www.)?instagram.com\/[a-zA-Z0-9]{2,}/,
+				cls: 		TL.Media.Profile
+			},
+			{
+			    type:       "documentcloud",
+			    name:       "Document Cloud",
+			    match_str:  /documentcloud.org\//,
+			    cls:        TL.Media.DocumentCloud
+			},
+			{
+				type: 		"image",
+				name: 		"Image",
+				match_str: 	/(jpg|jpeg|png|gif|svg)(\?.*)?$/i,
+				cls: 		TL.Media.Image
+			},
+			{
+				type: 		"imgur",
+				name: 		"Imgur",
+				match_str: 	/^.*imgur.com\/.+$/i,
+				cls: 		TL.Media.Imgur
+			},
+			{
+				type: 		"googledocs",
+				name: 		"Google Doc",
+				match_str: 	"^(https?:)?\/*[^.]*.google.com\/[^\/]*\/d\/[^\/]*\/[^\/]*\?usp=sharing|^(https?:)?\/*drive.google.com\/open\?id=[^\&]*\&authuser=0|^(https?:)?\/*drive.google.com\/open\?id=[^\&]*|^(https?:)?\/*[^.]*.googledrive.com\/host\/[^\/]*\/",
+				cls: 		TL.Media.GoogleDoc
+			},
+			{
+				type: 		"pdf",
+				name: 		"PDF",
+				match_str: 	/^.*\.pdf(\?.*)?(\#.*)?/,
+				cls: 		TL.Media.PDF
+			},
+			{
+				type: 		"wikipedia",
+				name: 		"Wikipedia",
+				match_str: 	"^(https?:)?\/*(www.)?wikipedia\.org|^(https?:)?\/*([a-z][a-z].)?wikipedia\.org",
+				cls: 		TL.Media.Wikipedia
+			},
+			{
+				type: 		"spotify",
+				name: 		"spotify",
+				match_str: 	"spotify",
+				cls: 		TL.Media.Spotify
+			},
+			{
+				type: 		"iframe",
+				name: 		"iFrame",
+				match_str: 	"iframe",
+				cls: 		TL.Media.IFrame
+			},
+			{
+				type: 		"storify",
+				name: 		"Storify",
+				match_str: 	"storify",
+				cls: 		TL.Media.Storify
+			},
+			{
+				type: 		"blockquote",
+				name: 		"Quote",
+				match_str: 	"blockquote",
+				cls: 		TL.Media.Blockquote
+			},
+			// {
+			// 	type: 		"website",
+			// 	name: 		"Website",
+			// 	match_str: 	"https?://",
+			// 	cls: 		TL.Media.Website
+			// },
+			{
+				type: 		"imageblank",
+				name: 		"Imageblank",
+				match_str: 	"",
+				cls: 		TL.Media.Image
+			}
+		];
+	
+	if(image_only) {
+        if (m instanceof Array) {
+            return false;
+        }
+        for (var i = 0; i < media_types.length; i++) {
+            switch(media_types[i].type) {
+                case "flickr":
+                case "image":
+                case "imgur":
+                case "instagram":
+                    if (m.url.match(media_types[i].match_str)) {
+                        media = media_types[i];
+                        return media;
+                    }
+                    break;
+                
+                default:
+                    break;            
+            }
+        }        
+	
+	} else {
+        for (var i = 0; i < media_types.length; i++) {
+            if (m instanceof Array) {
+                return media = {
+                    type: 		"slider",
+                    cls: 		TL.Media.Slider
+                };
+            } else if (m.url.match(media_types[i].match_str)) {
+                media 		= media_types[i];
+                return media;
+            }
+        };
+    }
+
+	return false;
+
+}
+
+
+/* **********************************************
+     Begin TL.Media.js
+********************************************** */
+
+/*	TL.Media
+	Main media template for media assets.
+	Takes a data object and populates a dom object
+================================================== */
+// TODO add link
+
+TL.Media = TL.Class.extend({
+
+	includes: [TL.Events, TL.I18NMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, add_to_container) {
+		// DOM ELEMENTS
+		this._el = {
+			container: {},
+			content_container: {},
+			content: {},
+			content_item: {},
+			content_link: {},
+			caption: null,
+			credit: null,
+			parent: {},
+			link: null
+		};
+
+		// Player (If Needed)
+		this.player = null;
+
+		// Timer (If Needed)
+		this.timer = null;
+		this.load_timer = null;
+
+		// Message
+		this.message = null;
+
+		// Media ID
+		this.media_id = null;
+
+		// State
+		this._state = {
+			loaded: false,
+			show_meta: false,
+			media_loaded: false
+		};
+
+		// Data
+		this.data = {
+			unique_id: 			null,
+			url: 				null,
+			credit:				null,
+			caption:			null,
+			credit_alternate: 	null,
+			caption_alternate: 	null,
+			link: 				null,
+			link_target: 		null
+		};
+
+		//Options
+		this.options = {
+			api_key_flickr: 		"f2cc870b4d233dd0a5bfe73fd0d64ef0",
+			api_key_googlemaps: 	"AIzaSyB9dW8e_iRrATFa8g24qB6BDBGdkrLDZYI",
+			api_key_embedly: 		"", // ae2da610d1454b66abdf2e6a4c44026d
+			credit_height: 			0,
+			caption_height: 		0,
+			background:             0   // is background media (for slide)
+		};
+
+		this.animator = {};
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+        // Don't create DOM elements if this is background media
+        if(!this.options.background) {
+            this._el.container = TL.Dom.create("div", "tl-media");
+
+            if (this.data.unique_id) {
+                this._el.container.id = this.data.unique_id;
+            }
+
+            this._initLayout();
+
+            if (add_to_container) {
+                add_to_container.appendChild(this._el.container);
+                this._el.parent = add_to_container;
+            }
+        }
+	},
+
+	loadMedia: function() {
+		var self = this;
+
+		if (!this._state.loaded) {
+			try {
+				this.load_timer = setTimeout(function() {
+		            self.loadingMessage();
+					self._loadMedia();
+					// self._state.loaded = true; handled in onLoaded()
+					self._updateDisplay();
+				}, 1200);
+			} catch (e) {
+				trace("Error loading media for ", this._media);
+				trace(e);
+			}
+		}
+	},
+
+    _updateMessage: function(msg) {
+        if(this.message) {
+            this.message.updateMessage(msg);
+        }    
+    },
+    
+	loadingMessage: function() {
+	    this._updateMessage(this._('loading') + " " + this.options.media_name);
+	},
+
+	errorMessage: function(msg) {
+		if (msg) {
+			msg = this._('error') + ": " + msg;
+		} else {
+			msg = this._('error');
+		}
+		this._updateMessage(msg);
+	},
+
+	updateMediaDisplay: function(layout) {
+		if (this._state.loaded && !this.options.background) {
+
+			if (TL.Browser.mobile) {
+				this._el.content_item.style.maxHeight = (this.options.height/2) + "px";
+			} else {
+				this._el.content_item.style.maxHeight = this.options.height - this.options.credit_height - this.options.caption_height - 30 + "px";
+			}
+
+			//this._el.content_item.style.maxWidth = this.options.width + "px";
+			this._el.container.style.maxWidth = this.options.width + "px";
+			// Fix for max-width issues in Firefox
+			if (TL.Browser.firefox) {
+				if (this._el.content_item.offsetWidth > this._el.content_item.offsetHeight) {
+					//this._el.content_item.style.width = "100%";
+				}
+			}
+
+			this._updateMediaDisplay(layout);
+
+			if (this._state.media_loaded) {
+				if (this._el.credit) {
+					this._el.credit.style.width		= this._el.content_item.offsetWidth + "px";
+				}
+				if (this._el.caption) {
+					this._el.caption.style.width		= this._el.content_item.offsetWidth + "px";
+				}
+			}
+
+		}
+	},
+
+	/*	Media Specific
+	================================================== */
+    _loadMedia: function() {        
+        // All overrides must call this.onLoaded() to set state
+        this.onLoaded();
+    },
+
+    _updateMediaDisplay: function(l) {
+        //this._el.content_item.style.maxHeight = (this.options.height - this.options.credit_height - this.options.caption_height - 16) + "px";
+        if(TL.Browser.firefox) {
+            this._el.content_item.style.maxWidth = this.options.width + "px";
+            this._el.content_item.style.width = "auto";
+        }
+    },
+
+    _getMeta: function() {
+
+    },
+
+    _getImageURL: function(w, h) {
+        // Image-based media types should return <img>-compatible src url
+        return "";
+    },
+    
+	/*	Public
+	================================================== */
+	show: function() {
+
+	},
+
+	hide: function() {
+
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+		this.onAdd();
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+		this.onRemove();
+	},
+
+    getImageURL: function(w, h) {
+        return this._getImageURL(w, h);
+    },
+    
+	// Update Display
+	updateDisplay: function(w, h, l) {
+		this._updateDisplay(w, h, l);
+	},
+
+	stopMedia: function() {
+		this._stopMedia();
+	},
+
+	loadErrorDisplay: function(message) {
+		try {
+			this._el.content.removeChild(this._el.content_item);
+		} catch(e) {
+			// if this._el.content_item isn't a child of this._el then just keep truckin
+		}
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-loaderror", this._el.content);
+		this._el.content_item.innerHTML = "<div class='tl-icon-" + this.options.media_type + "'></div><p>" + message + "</p>";
+
+		// After Loaded
+		this.onLoaded(true);
+	},
+
+	/*	Events
+	================================================== */
+	onLoaded: function(error) {
+		this._state.loaded = true;
+		this.fire("loaded", this.data);
+		if (this.message) {
+			this.message.hide();
+		}
+		if (!(error || this.options.background)) {
+			this.showMeta();
+		}
+		this.updateDisplay();
+	},
+
+	onMediaLoaded: function(e) {
+		this._state.media_loaded = true;
+		this.fire("media_loaded", this.data);
+		if (this._el.credit) {
+			this._el.credit.style.width		= this._el.content_item.offsetWidth + "px";
+		}
+		if (this._el.caption) {
+			this._el.caption.style.width		= this._el.content_item.offsetWidth + "px";
+		}
+	},
+
+	showMeta: function(credit, caption) {
+		this._state.show_meta = true;
+		// Credit
+		if (this.data.credit && this.data.credit != "") {
+			this._el.credit					= TL.Dom.create("div", "tl-credit", this._el.content_container);
+			this._el.credit.innerHTML		= this.options.autolink == true ? TL.Util.linkify(this.data.credit) : this.data.credit;
+			this.options.credit_height 		= this._el.credit.offsetHeight;
+		}
+
+		// Caption
+		if (this.data.caption && this.data.caption != "") {
+			this._el.caption				= TL.Dom.create("div", "tl-caption", this._el.content_container);
+			this._el.caption.innerHTML		= this.options.autolink == true ? TL.Util.linkify(this.data.caption) : this.data.caption;
+			this.options.caption_height 	= this._el.caption.offsetHeight;
+		}
+
+		if (!this.data.caption || !this.data.credit) {
+			this.getMeta();
+		}
+
+	},
+
+	getMeta: function() {
+		this._getMeta();
+	},
+
+	updateMeta: function() {
+		if (!this.data.credit && this.data.credit_alternate) {
+			this._el.credit					= TL.Dom.create("div", "tl-credit", this._el.content_container);
+			this._el.credit.innerHTML		= this.data.credit_alternate;
+			this.options.credit_height 		= this._el.credit.offsetHeight;
+		}
+
+		if (!this.data.caption && this.data.caption_alternate) {
+			this._el.caption				= TL.Dom.create("div", "tl-caption", this._el.content_container);
+			this._el.caption.innerHTML		= this.data.caption_alternate;
+			this.options.caption_height 	= this._el.caption.offsetHeight;
+		}
+
+		this.updateDisplay();
+	},
+
+	onAdd: function() {
+		this.fire("added", this.data);
+	},
+
+	onRemove: function() {
+		this.fire("removed", this.data);
+	},
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+
+		// Message
+		this.message = new TL.Message({}, this.options);
+		this.message.addTo(this._el.container);
+
+		// Create Layout
+		this._el.content_container = TL.Dom.create("div", "tl-media-content-container", this._el.container);
+
+		// Link
+		if (this.data.link && this.data.link != "") {
+
+			this._el.link = TL.Dom.create("a", "tl-media-link", this._el.content_container);
+			this._el.link.href = this.data.link;
+			if (this.data.link_target && this.data.link_target != "") {
+				this._el.link.target = this.data.link_target;
+			} else {
+				this._el.link.target = "_blank";
+			}
+
+			this._el.content = TL.Dom.create("div", "tl-media-content", this._el.link);
+
+		} else {
+			this._el.content = TL.Dom.create("div", "tl-media-content", this._el.content_container);
+		}
+
+
+	},
+
+	// Update Display
+	_updateDisplay: function(w, h, l) {
+		if (w) {
+			this.options.width = w;
+
+		}
+		//this._el.container.style.width = this.options.width + "px";
+		if (h) {
+			this.options.height = h;
+		}
+
+		if (l) {
+			this.options.layout = l;
+		}
+
+		if (this._el.credit) {
+			this.options.credit_height 		= this._el.credit.offsetHeight;
+		}
+		if (this._el.caption) {
+			this.options.caption_height 	= this._el.caption.offsetHeight + 5;
+		}
+
+		this.updateMediaDisplay(this.options.layout);
+
+	},
+
+	_stopMedia: function() {
+
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Blockquote.js
+********************************************** */
+
+/*	TL.Media.Blockquote
+================================================== */
+
+TL.Media.Blockquote = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {		
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-blockquote", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+		
+		// Get Media ID
+		this.media_id = this.data.url;
+		
+		// API Call
+		this._el.content_item.innerHTML = this.media_id;
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	updateMediaDisplay: function() {
+		
+	},
+	
+	_updateMediaDisplay: function() {
+		
+	}
+
+	
+});
+
+
+/* **********************************************
+     Begin TL.Media.DailyMotion.js
+********************************************** */
+
+/*	TL.Media.DailyMotion
+================================================== */
+
+TL.Media.DailyMotion = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-dailymotion", this._el.content);
+
+		// Get Media ID
+		if (this.data.url.match("video")) {
+			this.media_id = this.data.url.split("video\/")[1].split(/[?&]/)[0];
+		} else {
+			this.media_id = this.data.url.split("embed\/")[1].split(/[?&]/)[0];
+		}
+
+		// API URL
+		api_url = "https://www.dailymotion.com/embed/video/" + this.media_id+"?api=postMessage";
+
+		// API Call
+		this._el.content_item.innerHTML = "<iframe autostart='false' frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe>"
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth}) + "px";
+	},
+
+	_stopMedia: function() {
+		this._el.content_item.querySelector("iframe").contentWindow.postMessage('{"command":"pause","parameters":[]}', "*");
+
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.DocumentCloud.js
+********************************************** */
+
+/*	TL.Media.DocumentCloud
+================================================== */
+
+TL.Media.DocumentCloud = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var self = this;
+
+		// Create Dom elements
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-documentcloud tl-media-shadow", this._el.content);
+		this._el.content_item.id = TL.Util.unique_ID(7)
+
+		// Check url
+		if(this.data.url.match(/\.html$/)) {
+		    this.data.url = this._transformURL(this.data.url);
+		} else if(!(this.data.url.match(/.(json|js)$/))) {
+		    trace("DOCUMENT CLOUD IN URL BUT INVALID SUFFIX");
+		}
+
+		// Load viewer API
+        TL.Load.js([
+					'https://assets.documentcloud.org/viewer/loader.js',
+					'https://assets.documentcloud.org/viewer/viewer.js'],
+            function() {	
+	            self.createMedia();
+			}
+		);
+	},
+
+	// Viewer API needs js, not html
+	_transformURL: function(url) {
+        return url.replace(/(.*)\.html$/, '$1.js')
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+        this._el.content_item.style.height = this.options.height + "px";
+		//this._el.content_item.style.width = this.options.width + "px";
+	},
+
+	createMedia: function() {
+		// DocumentCloud API call
+		DV.load(this.data.url, {
+		    container: '#'+this._el.content_item.id,
+		    showSidebar: false
+		});
+		this.onLoaded();
+	},
+
+
+
+	/*	Events
+	================================================== */
+
+
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Flickr.js
+********************************************** */
+
+/*	TL.Media.Flickr
+
+================================================== */
+
+TL.Media.Flickr = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		try {
+		    // Get Media ID
+		    this.establishMediaID();
+
+            // API URL
+            api_url = "https://api.flickr.com/services/rest/?method=flickr.photos.getSizes&api_key=" + this.options.api_key_flickr + "&photo_id=" + this.media_id + "&format=json&jsoncallback=?";
+
+            // API Call
+            TL.getJSON(api_url, function(d) {
+                if (d.stat == "ok") {
+                    self.sizes = d.sizes.size; // store sizes info
+
+                    if(!self.options.background) {
+                        self.createMedia();
+                    }
+
+                    self.onLoaded();
+                } else {
+                    self.loadErrorDisplay(self._("flickr_notfound_err"));
+                }
+            });
+		} catch(e) {
+		    self.loadErrorDisplay(self._(e.message_key));
+		}
+	},
+
+	establishMediaID: function() {
+		if (this.data.url.match(/flic.kr\/.+/i)) {
+			var encoded = this.data.url.split('/').slice(-1)[0];
+			this.media_id = TL.Util.base58.decode(encoded);
+		} else {
+			var marker = 'flickr.com/photos/';
+			var idx = this.data.url.indexOf(marker);
+			if (idx == -1) { throw new TL.Error("flickr_invalidurl_err"); }
+			var pos = idx + marker.length;
+			this.media_id = this.data.url.substr(pos).split("/")[1];
+		}
+	},
+
+	createMedia: function() {
+	    var self = this;
+
+		// Link
+		this._el.content_link = TL.Dom.create("a", "", this._el.content);
+		this._el.content_link.href = this.data.url;
+		this._el.content_link.target = "_blank";
+
+		// Photo
+		this._el.content_item = TL.Dom.create("img", "tl-media-item tl-media-image tl-media-flickr tl-media-shadow", this._el.content_link);
+
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		// Set Image Source
+		this._el.content_item.src = this.getImageURL(this.options.width, this.options.height);
+	},
+
+    getImageURL: function(w, h) {
+        var best_size 	= this.size_label(h),
+            source = this.sizes[this.sizes.length - 2].source;
+
+		for(var i = 0; i < this.sizes.length; i++) {
+			if (this.sizes[i].label == best_size) {
+				source = this.sizes[i].source;
+			}
+		}
+
+		return source;
+    },
+
+	_getMeta: function() {
+		var self = this,
+		api_url;
+
+		// API URL
+		api_url = "https://api.flickr.com/services/rest/?method=flickr.photos.getInfo&api_key=" + this.options.api_key_flickr + "&photo_id=" + this.media_id + "&format=json&jsoncallback=?";
+
+		// API Call
+		TL.getJSON(api_url, function(d) {
+			self.data.credit_alternate = "<a href='" + self.data.url + "' target='_blank'>" + d.photo.owner.realname + "</a>";
+			self.data.caption_alternate = d.photo.title._content + " " + d.photo.description._content;
+			self.updateMeta();
+		});
+	},
+
+	size_label: function(s) {
+		var _size = "";
+
+		if (s <= 75) {
+			if (s <= 0) {
+				_size = "Large";
+			} else {
+				_size = "Thumbnail";
+			}
+		} else if (s <= 180) {
+			_size = "Small";
+		} else if (s <= 240) {
+			_size = "Small 320";
+		} else if (s <= 375) {
+			_size = "Medium";
+		} else if (s <= 480) {
+			_size = "Medium 640";
+		} else if (s <= 600) {
+			_size = "Large";
+		} else {
+			_size = "Large";
+		}
+
+		return _size;
+	}
+
+
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.GoogleDoc.js
+********************************************** */
+
+/*	TL.Media.GoogleDoc
+
+================================================== */
+
+TL.Media.GoogleDoc = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var url,
+			self = this;
+		
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
+		
+		// Get Media ID
+		if (this.data.url.match("open\?id\=")) {
+			this.media_id = this.data.url.split("open\?id\=")[1];
+			if (this.data.url.match("\&authuser\=0")) {
+				url = this.media_id.match("\&authuser\=0")[0];
+			};
+		} else if (this.data.url.match(/file\/d\/([^/]*)\/?/)) {
+			var doc_id = this.data.url.match(/file\/d\/([^/]*)\/?/)[1];
+			url = 'https://drive.google.com/file/d/' + doc_id + '/preview'
+		} else {
+			url = this.data.url;
+		}
+		
+		// this URL makes something suitable for an img src but what if it's not an image?
+		// api_url = "http://www.googledrive.com/host/" + this.media_id + "/";
+		
+		this._el.content_item.innerHTML	=	"<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + url + "'></iframe>";
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+
+	
+});
+
+
+/* **********************************************
+     Begin TL.Media.GooglePlus.js
+********************************************** */
+
+/*	TL.Media.GooglePlus
+================================================== */
+
+TL.Media.GooglePlus = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+		
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-googleplus", this._el.content);
+		
+		// Get Media ID
+		this.media_id = this.data.url;
+		
+		// API URL
+		api_url = this.media_id;
+		
+		// API Call
+		this._el.content_item.innerHTML = "<iframe frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe>"		
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+
+	
+});
+
+
+/* **********************************************
+     Begin TL.Media.IFrame.js
+********************************************** */
+
+/*	TL.Media.IFrame
+================================================== */
+
+TL.Media.IFrame = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+				
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
+		
+		// Get Media ID
+		this.media_id = this.data.url;
+		
+		// API URL
+		api_url = this.media_id;
+		
+		// API Call
+		this._el.content_item.innerHTML = api_url;
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+	
+});
+
+
+/* **********************************************
+     Begin TL.Media.Image.js
+********************************************** */
+
+/*	TL.Media.Image
+	Produces image assets.
+	Takes a data object and populates a dom object
+================================================== */
+
+TL.Media.Image = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		// Loading Message
+		this.loadingMessage();
+
+        // Create media?
+        if(!this.options.background) {
+            this.createMedia();
+        }
+        
+        // After loaded
+		this.onLoaded();
+	},
+
+    createMedia: function() {
+        var self = this,
+            image_class = "tl-media-item tl-media-image tl-media-shadow";
+        
+		if (this.data.url.match(/.png(\?.*)?$/) || this.data.url.match(/.svg(\?.*)?$/)) {
+			image_class = "tl-media-item tl-media-image"
+		}
+		
+ 		// Link
+		if (this.data.link) {
+			this._el.content_link 				= TL.Dom.create("a", "", this._el.content);
+			this._el.content_link.href 			= this.data.link;
+			this._el.content_link.target 		= "_blank";
+			this._el.content_item				= TL.Dom.create("img", image_class, this._el.content_link);
+		} else {
+			this._el.content_item				= TL.Dom.create("img", image_class, this._el.content);
+		}
+		
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		this._el.content_item.src			= this.getImageURL();
+    },
+        
+    getImageURL: function(w, h) {
+        return TL.Util.transformImageURL(this.data.url);
+    },
+    
+	_updateMediaDisplay: function(layout) {
+		if(TL.Browser.firefox) {
+			//this._el.content_item.style.maxWidth = (this.options.width/2) - 40 + "px";
+			this._el.content_item.style.width = "auto";
+		}
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Imgur.js
+********************************************** */
+
+/*	TL.Media.Flickr
+
+================================================== */
+
+TL.Media.Imgur = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		try {
+		    this.media_id = this.data.url.split('/').slice(-1)[0];
+
+            if(!this.options.background) {
+                this.createMedia();
+            }
+
+			// After Loaded
+			this.onLoaded();
+
+		} catch(e) {
+		    this.loadErrorDisplay(this._("imgur_invalidurl_err"));
+		}
+	},
+
+	createMedia: function() {
+	    var self = this;
+
+		// Link
+		this._el.content_link 				= TL.Dom.create("a", "", this._el.content);
+		this._el.content_link.href 			= this.data.url;
+		this._el.content_link.target 		= "_blank";
+
+		// Photo
+		this._el.content_item	= TL.Dom.create("img", "tl-media-item tl-media-image tl-media-imgur tl-media-shadow",
+																					this._el.content_link);
+
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+    this._el.content_item.src			= this.getImageURL();
+	},
+
+	getImageURL: function(w, h) {
+	    return 'https://i.imgur.com/' + this.media_id + '.jpg';
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Instagram.js
+********************************************** */
+
+/*	TL.Media.Instagram
+
+================================================== */
+
+TL.Media.Instagram = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		// Get Media ID
+		this.media_id = this.data.url.split("\/p\/")[1].split("/")[0];
+
+		if(!this.options.background) {
+		    this.createMedia();
+		}
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+    createMedia: function() {
+        var self = this;
+
+		// Link
+		this._el.content_link 				= TL.Dom.create("a", "", this._el.content);
+		this._el.content_link.href 			= this.data.url;
+		this._el.content_link.target 		= "_blank";
+
+		// Photo
+		this._el.content_item				= TL.Dom.create("img", "tl-media-item tl-media-image tl-media-instagram tl-media-shadow", this._el.content_link);
+
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+	    this._el.content_item.src = this.getImageURL(this._el.content.offsetWidth);
+    },
+
+    getImageURL: function(w, h) {
+        return "https://instagram.com/p/" + this.media_id + "/media/?size=" + this.sizes(w);
+    },
+
+	_getMeta: function() {
+		var self = this,
+		    api_url;
+
+		// API URL
+		api_url = "https://api.instagram.com/oembed?url=https://instagr.am/p/" + this.media_id + "&callback=?";
+
+		// API Call
+		TL.getJSON(api_url, function(d) {
+			self.data.credit_alternate = "<a href='" + d.author_url + "' target='_blank'>" + d.author_name + "</a>";
+			self.data.caption_alternate = d.title;
+			self.updateMeta();
+		});
+	},
+
+	sizes: function(s) {
+		var _size = "";
+		if (s <= 150) {
+			_size = "t";
+		} else if (s <= 306) {
+			_size = "m";
+		} else {
+			_size = "l";
+		}
+
+		return _size;
+	}
+
+
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.GoogleMap.js
+********************************************** */
+
+/*  TL.Media.Map
+================================================== */
+
+TL.Media.GoogleMap = TL.Media.extend({
+	includes: [TL.Events],
+
+	/*  Load the media
+	================================================== */
+	_loadMedia: function() {
+
+		// Create Dom element
+		this._el.content_item   = TL.Dom.create("div", "tl-media-item tl-media-map tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url;
+
+		// API Call
+		this.mapframe = TL.Dom.create("iframe", "", this._el.content_item);
+		window.stash = this;
+		this.mapframe.width       = "100%";
+		this.mapframe.height      = "100%";
+		this.mapframe.frameBorder = "0";
+		this.mapframe.src         = this.makeGoogleMapsEmbedURL(this.media_id, this.options.api_key_googlemaps);
+		
+		
+		// After Loaded
+		this.onLoaded();
+	},
+
+	_updateMediaDisplay: function() {
+		if (this._state.loaded) {
+			var dimensions = TL.Util.ratio.square({w:this._el.content_item.offsetWidth});
+			this._el.content_item.style.height = dimensions.h + "px";
+		}
+	},
+	
+	makeGoogleMapsEmbedURL: function(url,api_key) {
+		// Test with https://docs.google.com/spreadsheets/d/1zCpvtRdftlR5fBPppmy_-SkGIo7RMwoPUiGFZDAXbTc/edit
+		var Streetview = false;
+
+		function determineMapMode(url){
+			function parseDisplayMode(display_mode, param_string) {
+				// Set the zoom param
+				if (display_mode.slice(-1) == "z") {
+					param_string["zoom"] = display_mode;
+					// Set the maptype to something other than "roadmap"
+				} else if (display_mode.slice(-1) == "m") {
+					// TODO: make this somehow interpret the correct zoom level
+					// until then fake it by using Google's default zoom level
+					param_string["zoom"] = 14;
+					param_string["maptype"] = "satellite";
+					// Set all the fun streetview params
+				} else if (display_mode.slice(-1) == "t") {
+					Streetview = true;
+					// streetview uses "location" instead of "center"
+					// "place" mode doesn't have the center param, so we may need to grab that now
+					if (mapmode == "place") {
+						var center = url.match(regexes["place"])[3] + "," + url.match(regexes["place"])[4];
+					} else {
+						var center = param_string["center"];
+						delete param_string["center"];
+					}
+					// Clear out all the other params -- this is so hacky
+					param_string = {};
+					param_string["location"] = center;
+					streetview_params = display_mode.split(",");
+					for (param in param_defs["streetview"]) {
+						var i = parseInt(param) + 1;
+						if (param_defs["streetview"][param] == "pitch" && streetview_params[i] == "90t"){
+							// Although 90deg is the horizontal default in the URL, 0 is horizontal default for embed URL. WHY??
+							// https://developers.google.com/maps/documentation/javascript/streetview
+							param_string[param_defs["streetview"][param]] = 0;
+						} else {
+							param_string[param_defs["streetview"][param]] = streetview_params[i].slice(0,-1);
+						}
+					}
+
+				}
+				return param_string;
+			}
+			function determineMapModeURL(mapmode, match) {
+				var param_string = {};
+				var url_root = match[1], display_mode = match[match.length - 1];
+				for (param in param_defs[mapmode]) {
+					// skip first 2 matches, because they reflect the URL and not params
+					var i = parseInt(param)+2;
+					if (param_defs[mapmode][param] == "center") {
+						param_string[param_defs[mapmode][param]] = match[i] + "," + match[++i];
+					} else {
+						param_string[param_defs[mapmode][param]] = match[i];
+					}
+				}
+
+				param_string = parseDisplayMode(display_mode, param_string);
+				param_string["key"] = api_key;
+				if (Streetview == true) {
+					mapmode = "streetview";
+				} else {
+				}
+				return (url_root + "/embed/v1/" + mapmode + TL.Util.getParamString(param_string));
+			}
+
+
+			mapmode = "view";
+			if (url.match(regexes["place"])) {
+				mapmode = "place";
+			} else if (url.match(regexes["directions"])) {
+				mapmode = "directions";
+			} else if (url.match(regexes["search"])) {
+				mapmode = "search";
+			}
+			return determineMapModeURL(mapmode, url.match(regexes[mapmode]));
+
+		}
+
+		// These must be in the order they appear in the original URL
+		// "key" param not included since it's not in the URL structure
+		// Streetview "location" param not included since it's captured as "center"
+		// Place "center" param ...um...
+		var param_defs = {
+			"view": ["center"],
+			"place": ["q", "center"],
+			"directions": ["origin", "destination", "center"],
+			"search": ["q", "center"],
+			"streetview": ["fov", "heading", "pitch"]
+		};
+		// Set up regex parts to make updating these easier if Google changes them
+		var root_url_regex = /(https:\/\/.+google.+?\/maps)/;
+		var coords_regex = /@([-\d.]+),([-\d.]+)/;
+		var address_regex = /([\w\W]+)/;
+
+		// Data doesn't seem to get used for anything
+		var data_regex = /data=[\S]*/;
+
+		// Capture the parameters that determine what map tiles to use
+		// In roadmap view, mode URLs include zoom paramater (e.g. "14z")
+		// In satellite (or "earth") view, URLs include a distance parameter (e.g. "84511m")
+		// In streetview, URLs include paramaters like "3a,75y,49.76h,90t" -- see http://stackoverflow.com/a/22988073
+		var display_mode_regex = /,((?:[-\d.]+[zmayht],?)*)/;
+
+		var regexes = {
+			view: new RegExp(root_url_regex.source + "/" + coords_regex.source + display_mode_regex.source),
+			place: new RegExp(root_url_regex.source + "/place/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source),
+			directions: new RegExp(root_url_regex.source + "/dir/" + address_regex.source + "/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source),
+			search: new RegExp(root_url_regex.source + "/search/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source)
+		};
+		return determineMapMode(url);
+	}
+   
+});
+
+
+/* **********************************************
+     Begin TL.Media.PDF.js
+********************************************** */
+
+/*	TL.Media.PDF
+ * Chrome and Firefox on both OSes and Safari all support PDFs as iframe src.
+ * This prompts for a download on IE10/11. We should investigate using
+ * https://mozilla.github.io/pdf.js/ to support showing PDFs on IE.
+================================================== */
+
+TL.Media.PDF = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var url = TL.Util.transformImageURL(this.data.url),
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
+		var markup = "";
+		// not assigning media_id attribute. Seems like a holdover which is no longer used.
+		if (TL.Browser.ie || TL.Browser.edge || url.match(/dl.dropboxusercontent.com/)) {
+			markup = "<iframe class='doc' frameborder='0' width='100%' height='100%' src='//docs.google.com/viewer?url=" + url + "&amp;embedded=true'></iframe>";
+		} else {
+			markup = "<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + url + "'></iframe>"
+		}
+		this._el.content_item.innerHTML	= markup
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Profile.js
+********************************************** */
+
+/*	TL.Media.Profile
+
+================================================== */
+
+TL.Media.Profile = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		
+		this._el.content_item				= TL.Dom.create("img", "tl-media-item tl-media-image tl-media-profile tl-media-shadow", this._el.content);
+		this._el.content_item.src			= this.data.url;
+		
+		this.onLoaded();
+	},
+	
+	_updateMediaDisplay: function(layout) {
+		
+		
+		if(TL.Browser.firefox) {
+			this._el.content_item.style.maxWidth = (this.options.width/2) - 40 + "px";
+		}
+	}
+	
+});
+
+/* **********************************************
+     Begin TL.Media.Slider.js
+********************************************** */
+
+/*	TL.Media.SLider
+	Produces a Slider
+	Takes a data object and populates a dom object
+	TODO
+	Placeholder
+================================================== */
+
+TL.Media.Slider = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		
+		this._el.content_item				= TL.Dom.create("img", "tl-media-item tl-media-image", this._el.content);
+		this._el.content_item.src			= this.data.url;
+		
+		this.onLoaded();
+	}
+	
+});
+
+/* **********************************************
+     Begin TL.Media.SoundCloud.js
+********************************************** */
+
+/*	TL.Media.SoundCloud
+================================================== */
+
+var soundCoudCreated = false;
+
+TL.Media.SoundCloud = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-soundcloud tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url;
+
+		// API URL
+		api_url = "https://soundcloud.com/oembed?url=" + this.media_id + "&format=js&callback=?"
+
+		// API Call
+		TL.getJSON(api_url, function(d) {
+			TL.Load.js("https://w.soundcloud.com/player/api.js", function() {//load soundcloud api for pausing.
+				self.createMedia(d);
+			});
+		});
+
+	},
+
+	createMedia: function(d) {
+		this._el.content_item.innerHTML = d.html;
+
+		this.soundCloudCreated = true;
+
+		self.widget = SC.Widget(this._el.content_item.querySelector("iframe"));//create widget for api use
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	_stopMedia: function() {
+		if (this.soundCloudCreated)
+		{
+			self.widget.pause();
+		}
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Spotify.js
+********************************************** */
+
+/*	TL.Media.Spotify
+================================================== */
+
+TL.Media.Spotify = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-spotify", this._el.content);
+
+		// Get Media ID
+		if (this.data.url.match(/^spotify:track/) || this.data.url.match(/^spotify:user:.+:playlist:/)) {
+			this.media_id = this.data.url;
+		}
+		if (this.data.url.match(/spotify.com\/track\/(.+)/)) {
+			this.media_id = "spotify:track:" + this.data.url.match(/spotify.com\/track\/(.+)/)[1];
+		} else if (this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)) {
+			var user = this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)[1];
+			var playlist = this.data.url.match(/spotify.com\/user\/(.+?)\/playlist\/(.+)/)[2];
+			this.media_id = "spotify:user:" + user + ":playlist:" + playlist;
+		}
+
+		if (this.media_id) {
+			// API URL
+			api_url = "https://embed.spotify.com/?uri=" + this.media_id + "&theme=white&view=coverart";
+
+			this.player = TL.Dom.create("iframe", "tl-media-shadow", this._el.content_item);
+			this.player.width 		= "100%";
+			this.player.height 		= "100%";
+			this.player.frameBorder = "0";
+			this.player.src 		= api_url;
+
+			// After Loaded
+			this.onLoaded();
+
+		} else {
+				this.loadErrorDisplay(this._('spotify_invalid_url'));
+		}
+	},
+
+	// Update Media Display
+
+	_updateMediaDisplay: function(l) {
+		var _height = this.options.height,
+			_player_height = 0,
+			_player_width = 0;
+
+		if (TL.Browser.mobile) {
+			_height = (this.options.height/2);
+		} else {
+			_height = this.options.height - this.options.credit_height - this.options.caption_height - 30;
+		}
+
+		this._el.content_item.style.maxHeight = "none";
+		trace(_height);
+		trace(this.options.width)
+		if (_height > this.options.width) {
+			trace("height is greater")
+			_player_height = this.options.width + 80 + "px";
+			_player_width = this.options.width + "px";
+		} else {
+			trace("width is greater")
+			trace(this.options.width)
+			_player_height = _height + "px";
+			_player_width = _height - 80 + "px";
+		}
+
+
+		this.player.style.width = _player_width;
+		this.player.style.height = _player_height;
+
+		if (this._el.credit) {
+			this._el.credit.style.width		= _player_width;
+		}
+		if (this._el.caption) {
+			this._el.caption.style.width		= _player_width;
+		}
+	},
+
+
+	_stopMedia: function() {
+		// Need spotify stop code
+
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Storify.js
+********************************************** */
+
+/*	TL.Media.Storify
+================================================== */
+
+TL.Media.Storify = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var content;
+				
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-storify", this._el.content);
+		
+		// Get Media ID
+		this.media_id = this.data.url;
+		
+		// Content
+		content =	"<iframe frameborder='0' width='100%' height='100%' src='" + this.media_id + "/embed'></iframe>";
+		content +=	"<script src='" + this.media_id + ".js'></script>";
+		
+		// API Call
+		this._el.content_item.innerHTML = content;
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+	
+	
+});
+
+
+/* **********************************************
+     Begin TL.Media.Text.js
+********************************************** */
+
+TL.Media.Text = TL.Class.extend({
+	
+	includes: [TL.Events],
+	
+	// DOM ELEMENTS
+	_el: {
+		container: {},
+		content_container: {},
+		content: {},
+		headline: {},
+		date: {}
+	},
+	
+	// Data
+	data: {
+		unique_id: 			"",
+		headline: 			"headline",
+		text: 				"text"
+	},
+	
+	// Options
+	options: {
+		title: 			false
+	},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, add_to_container) {
+		
+		TL.Util.setData(this, data);
+		
+		// Merge Options
+		TL.Util.mergeData(this.options, options);
+		
+		this._el.container = TL.Dom.create("div", "tl-text");
+		this._el.container.id = this.data.unique_id;
+		
+		this._initLayout();
+		
+		if (add_to_container) {
+			add_to_container.appendChild(this._el.container);
+		};
+		
+	},
+	
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+		
+	},
+	
+	hide: function() {
+		
+	},
+	
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+		//this.onAdd();
+	},
+	
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+	
+	headlineHeight: function() {
+		return this._el.headline.offsetHeight + 40;
+	},
+	
+	addDateText: function(str) {
+		this._el.date.innerHTML = str;
+	},
+	
+	/*	Events
+	================================================== */
+	onLoaded: function() {
+		this.fire("loaded", this.data);
+	},
+	
+	onAdd: function() {
+		this.fire("added", this.data);
+	},
+
+	onRemove: function() {
+		this.fire("removed", this.data);
+	},
+	
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		
+		// Create Layout
+		this._el.content_container			= TL.Dom.create("div", "tl-text-content-container", this._el.container);
+		
+		// Date
+		this._el.date 				= TL.Dom.create("h3", "tl-headline-date", this._el.content_container);
+		
+		// Headline
+		if (this.data.headline != "") {
+			var headline_class = "tl-headline";
+			if (this.options.title) {
+				headline_class = "tl-headline tl-headline-title";
+			}
+			this._el.headline				= TL.Dom.create("h2", headline_class, this._el.content_container);
+			this._el.headline.innerHTML		= this.data.headline;
+		}
+
+		// Text
+		if (this.data.text != "") {
+			var text_content = "";
+
+			text_content += TL.Util.htmlify(this.options.autolink == true ? TL.Util.linkify(this.data.text) : this.data.text);
+			trace(this.data.text);
+			this._el.content				= TL.Dom.create("div", "tl-text-content", this._el.content_container);
+			this._el.content.innerHTML		= text_content;
+			trace(text_content);
+			trace(this._el.content)
+		}
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Twitter.js
+********************************************** */
+
+/*	TL.Media.Twitter
+	Produces Twitter Display
+================================================== */
+
+TL.Media.Twitter = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+					
+		// Create Dom element
+		this._el.content_item = TL.Dom.create("div", "tl-media-twitter", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+		
+		// Get Media ID
+		if (this.data.url.match("status\/")) {
+			this.media_id = this.data.url.split("status\/")[1];
+		} else if (this.data.url.match("statuses\/")) {
+			this.media_id = this.data.url.split("statuses\/")[1];
+		} else {
+			this.media_id = "";
+		}
+		
+		// API URL
+		api_url = "https://api.twitter.com/1/statuses/oembed.json?id=" + this.media_id + "&omit_script=true&include_entities=true&callback=?";
+		
+		// API Call
+		TL.ajax({
+			type: 'GET',
+			url: api_url,
+			dataType: 'json', //json data type
+			success: function(d){
+				self.createMedia(d);
+			},
+			error:function(xhr, type){
+				var error_text = "";
+				error_text += self._("twitter_load_err") + "<br/>" + self.media_id + "<br/>" + type;
+				self.loadErrorDisplay(error_text);
+			}
+		});
+		 
+	},
+	
+	createMedia: function(d) {
+		var tweet				= "",
+			tweet_text			= "",
+			tweetuser			= "",
+			tweet_status_temp 	= "",
+			tweet_status_url 	= "",
+			tweet_status_date 	= "";
+			
+		//	TWEET CONTENT
+		tweet_text 			= d.html.split("<\/p>\&mdash;")[0] + "</p></blockquote>";
+		tweetuser			= d.author_url.split("twitter.com\/")[1];
+		tweet_status_temp 	= d.html.split("<\/p>\&mdash;")[1].split("<a href=\"")[1];
+		tweet_status_url 	= tweet_status_temp.split("\"\>")[0];
+		tweet_status_date 	= tweet_status_temp.split("\"\>")[1].split("<\/a>")[0];
+		
+		// Open links in new window
+		tweet_text = tweet_text.replace(/<a href/ig, '<a class="tl-makelink" target="_blank" href');
+
+		// 	TWEET CONTENT
+		tweet += tweet_text;
+		
+		//	TWEET AUTHOR
+		tweet += "<div class='vcard'>";
+		tweet += "<a href='" + tweet_status_url + "' class='twitter-date' target='_blank'>" + tweet_status_date + "</a>";
+		tweet += "<div class='author'>";
+		tweet += "<a class='screen-name url' href='" + d.author_url + "' target='_blank'>";
+		tweet += "<span class='avatar'></span>";
+		tweet += "<span class='fn'>" + d.author_name + " <span class='tl-icon-twitter'></span></span>";
+		tweet += "<span class='nickname'>@" + tweetuser + "<span class='thumbnail-inline'></span></span>";
+		tweet += "</a>";
+		tweet += "</div>";
+		tweet += "</div>";
+		
+		
+		// Add to DOM
+		this._el.content_item.innerHTML	= tweet;
+		
+		// After Loaded
+		this.onLoaded();
+			
+	},
+	
+	updateMediaDisplay: function() {
+		
+	},
+	
+	_updateMediaDisplay: function() {
+		
+	}
+	
+	
+	
+});
+
+
+/* **********************************************
+     Begin TL.Media.TwitterEmbed.js
+********************************************** */
+
+/*	TL.Media.TwitterEmbed
+	Produces Twitter Display
+================================================== */
+
+TL.Media.TwitterEmbed = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+					
+		// Create Dom element
+		this._el.content_item = TL.Dom.create("div", "tl-media-twitter", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+		
+		// Get Media ID
+		var found = this.data.url.match(/(status|statuses)\/(\d+)/);
+		if (found && found.length > 2) {
+		    this.media_id = found[2];
+		} else {
+		    self.loadErrorDisplay(self._("twitterembed_invalidurl_err"));
+		    return;
+		}
+
+		// API URL
+		api_url = "https://api.twitter.com/1/statuses/oembed.json?id=" + this.media_id + "&omit_script=true&include_entities=true&callback=?";
+		
+		// API Call
+		TL.ajax({
+			type: 'GET',
+			url: api_url,
+			dataType: 'json', //json data type
+			success: function(d){
+				self.createMedia(d);
+			},
+			error:function(xhr, type){
+				var error_text = "";
+				error_text += self._("twitter_load_err") + "<br/>" + self.media_id + "<br/>" + type;
+				self.loadErrorDisplay(error_text);
+			}
+		});
+		 
+	},
+	
+	createMedia: function(d) {	
+		trace("create_media")	
+		var tweet				= "",
+			tweet_text			= "",
+			tweetuser			= "",
+			tweet_status_temp 	= "",
+			tweet_status_url 	= "",
+			tweet_status_date 	= "";
+			
+		//	TWEET CONTENT
+		tweet_text 			= d.html.split("<\/p>\&mdash;")[0] + "</p></blockquote>";
+		tweetuser			= d.author_url.split("twitter.com\/")[1];
+		tweet_status_temp 	= d.html.split("<\/p>\&mdash;")[1].split("<a href=\"")[1];
+		tweet_status_url 	= tweet_status_temp.split("\"\>")[0];
+		tweet_status_date 	= tweet_status_temp.split("\"\>")[1].split("<\/a>")[0];
+		
+		// Open links in new window
+		tweet_text = tweet_text.replace(/<a href/ig, '<a target="_blank" href');
+
+		// 	TWEET CONTENT
+		tweet += tweet_text;
+		
+		//	TWEET AUTHOR
+		tweet += "<div class='vcard'>";
+		tweet += "<a href='" + tweet_status_url + "' class='twitter-date' target='_blank'>" + tweet_status_date + "</a>";
+		tweet += "<div class='author'>";
+		tweet += "<a class='screen-name url' href='" + d.author_url + "' target='_blank'>";
+		tweet += "<span class='avatar'></span>";
+		tweet += "<span class='fn'>" + d.author_name + " <span class='tl-icon-twitter'></span></span>";
+		tweet += "<span class='nickname'>@" + tweetuser + "<span class='thumbnail-inline'></span></span>";
+		tweet += "</a>";
+		tweet += "</div>";
+		tweet += "</div>";
+		
+		
+		// Add to DOM
+		this._el.content_item.innerHTML	= tweet;
+		
+		// After Loaded
+		this.onLoaded();
+			
+	},
+	
+	updateMediaDisplay: function() {
+		
+	},
+	
+	_updateMediaDisplay: function() {
+		
+	}
+	
+	
+	
+});
+
+
+/* **********************************************
+     Begin TL.Media.Vimeo.js
+********************************************** */
+
+/*	TL.Media.Vimeo
+================================================== */
+
+TL.Media.Vimeo = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-vimeo tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url.split(/video\/|\/\/vimeo\.com\//)[1].split(/[?&]/)[0];
+
+		// API URL
+		api_url = "https://player.vimeo.com/video/" + this.media_id + "?api=1&title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff";
+
+		this.player = TL.Dom.create("iframe", "", this._el.content_item);
+
+		// Media Loaded Event
+		this.player.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		this.player.width 		= "100%";
+		this.player.height 		= "100%";
+		this.player.frameBorder = "0";
+		this.player.src 		= api_url;
+
+		this.player.setAttribute('allowfullscreen', '');
+		this.player.setAttribute('webkitallowfullscreen', '');
+		this.player.setAttribute('mozallowfullscreen', '');
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth}) + "px";
+
+	},
+
+	_stopMedia: function() {
+
+		try {
+			this.player.contentWindow.postMessage(JSON.stringify({method: "pause"}), "https://player.vimeo.com");
+		}
+		catch(err) {
+			trace(err);
+		}
+
+	}
+});
+
+
+/* **********************************************
+     Begin TL.Media.Vine.js
+********************************************** */
+
+/*	TL.Media.Vine
+
+================================================== */
+
+TL.Media.Vine = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-vine tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url.split("vine.co/v/")[1];
+
+		// API URL
+		api_url = "https://vine.co/v/" + this.media_id + "/embed/simple";
+
+		// API Call
+		this._el.content_item.innerHTML = "<iframe frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe><script async src='https://platform.vine.co/static/scripts/embed.js' charset='utf-8'></script>"		
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		var size = TL.Util.ratio.square({w:this._el.content_item.offsetWidth , h:this.options.height});
+		this._el.content_item.style.height = size.h + "px";
+	},
+
+	_stopMedia: function() {
+		this._el.content_item.querySelector("iframe").contentWindow.postMessage('pause', '*');
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Website.js
+********************************************** */
+
+/*	TL.Media.Website
+	Uses Embedly
+	http://embed.ly/docs/api/extract/endpoints/1/extract
+================================================== */
+
+TL.Media.Website = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var self = this;
+
+		// Get Media ID
+		this.media_id = this.data.url.replace(/.*?:\/\//g, "");
+
+		if (this.options.api_key_embedly) {
+			// API URL
+			api_url = "https://api.embed.ly/1/extract?key=" + this.options.api_key_embedly + "&url=" + this.media_id + "&callback=?";
+
+			// API Call
+			TL.getJSON(api_url, function(d) {
+				self.createMedia(d);
+			});
+		} else {
+			this.createCardContent();
+		}
+	},
+
+	createCardContent: function() {
+		(function(w, d){
+			var id='embedly-platform', n = 'script';
+			if (!d.getElementById(id)){
+			 w.embedly = w.embedly || function() {(w.embedly.q = w.embedly.q || []).push(arguments);};
+			 var e = d.createElement(n); e.id = id; e.async=1;
+			 e.src = ('https:' === document.location.protocol ? 'https' : 'http') + '://cdn.embedly.com/widgets/platform.js';
+			 var s = d.getElementsByTagName(n)[0];
+			 s.parentNode.insertBefore(e, s);
+			}
+		})(window, document);
+
+		var content = "<a href=\"" + this.data.url + "\" class=\"embedly-card\">" + this.data.url + "</a>";
+		this._setContent(content);
+
+	},
+	createMedia: function(d) { // this costs API credits...
+		var content = "";
+
+
+		content		+=	"<h4><a href='" + this.data.url + "' target='_blank'>" + d.title + "</a></h4>";
+		if (d.images) {
+			if (d.images[0]) {
+				trace(d.images[0].url);
+				content		+=	"<img src='" + d.images[0].url + "' />";
+			}
+		}
+		if (d.favicon_url) {
+			content		+=	"<img class='tl-media-website-icon' src='" + d.favicon_url + "' />";
+		}
+		content		+=	"<span class='tl-media-website-description'>" + d.provider_name + "</span><br/>";
+		content		+=	"<p>" + d.description + "</p>";
+
+		this._setContent(content);
+	},
+
+	_setContent: function(content) {
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-website", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+		this._el.content_item.innerHTML = content;
+
+		// After Loaded
+		this.onLoaded();
+
+	},
+
+	updateMediaDisplay: function() {
+
+	},
+
+	_updateMediaDisplay: function() {
+
+	}
+
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.Wikipedia.js
+********************************************** */
+
+/*	TL.Media.Wikipedia
+================================================== */
+
+TL.Media.Wikipedia = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			api_language,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-wikipedia", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+
+		// Get Media ID
+		this.media_id	 = this.data.url.split("wiki\/")[1].split("#")[0].replace("_", " ");
+		this.media_id	 = this.media_id.replace(" ", "%20");
+		api_language	 = this.data.url.split("//")[1].split(".wikipedia")[0];
+
+		// API URL
+		api_url = "https://" + api_language + ".wikipedia.org/w/api.php?action=query&prop=extracts|pageimages&redirects=&titles=" + this.media_id + "&exintro=1&format=json&callback=?";
+
+		// API Call
+		TL.ajax({
+			type: 'GET',
+			url: api_url,
+			dataType: 'json', //json data type
+
+			success: function(d){
+				self.createMedia(d);
+			},
+			error:function(xhr, type){
+				var error_text = "";
+				error_text += self._("wikipedia_load_err") + "<br/>" + self.media_id + "<br/>" + type;
+				self.loadErrorDisplay(error_text);
+			}
+		});
+
+	},
+
+	createMedia: function(d) {
+		var wiki = "";
+
+		if (d.query) {
+			var content = "",
+				wiki = {
+					entry: {},
+					title: "",
+					text: "",
+					extract: "",
+					paragraphs: 1,
+					page_image: "",
+					text_array: []
+				};
+
+			wiki.entry		 = TL.Util.getObjectAttributeByIndex(d.query.pages, 0);
+			wiki.extract	 = wiki.entry.extract;
+			wiki.title		 = wiki.entry.title;
+			wiki.page_image	 = wiki.entry.thumbnail;
+
+			if (wiki.extract.match("<p>")) {
+				wiki.text_array = wiki.extract.split("<p>");
+			} else {
+				wiki.text_array.push(wiki.extract);
+			}
+
+			for(var i = 0; i < wiki.text_array.length; i++) {
+				if (i+1 <= wiki.paragraphs && i+1 < wiki.text_array.length) {
+					wiki.text	+= "<p>" + wiki.text_array[i+1];
+				}
+			}
+
+
+			content		+=	"<span class='tl-icon-wikipedia'></span>";
+			content		+=	"<div class='tl-wikipedia-title'><h4><a href='" + this.data.url + "' target='_blank'>" + wiki.title + "</a></h4>";
+			content		+=	"<span class='tl-wikipedia-source'>" + this._('wikipedia') + "</span></div>";
+
+			if (wiki.page_image) {
+				//content 	+= 	"<img class='tl-wikipedia-pageimage' src='" + wiki.page_image.source +"'>";
+			}
+
+			content		+=	wiki.text;
+
+			if (wiki.extract.match("REDIRECT")) {
+
+			} else {
+				// Add to DOM
+				this._el.content_item.innerHTML	= content;
+				// After Loaded
+				this.onLoaded();
+			}
+
+
+		}
+
+	},
+
+	updateMediaDisplay: function() {
+
+	},
+
+	_updateMediaDisplay: function() {
+
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.Media.YouTube.js
+********************************************** */
+
+/*	TL.Media.YouTube
+================================================== */
+
+TL.Media.YouTube = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var self = this,
+			url_vars;
+
+		this.youtube_loaded = false;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-youtube tl-media-shadow", this._el.content);
+		this._el.content_item.id = TL.Util.unique_ID(7)
+
+		// URL Vars
+		url_vars = TL.Util.getUrlVars(this.data.url);
+
+		// Get Media ID
+		this.media_id = {};
+
+		if (this.data.url.match('v=')) {
+			this.media_id.id	= url_vars["v"];
+		} else if (this.data.url.match('\/embed\/')) {
+			this.media_id.id	= this.data.url.split("embed\/")[1].split(/[?&]/)[0];
+		} else if (this.data.url.match(/v\/|v=|youtu\.be\//)){
+			this.media_id.id	= this.data.url.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0];
+		} else {
+			trace("YOUTUBE IN URL BUT NOT A VALID VIDEO");
+		}
+
+		this.media_id.start		= parseInt(url_vars["start"]);	
+
+		if (isNaN(this.media_id.start)){
+			this.media_id.start		= TL.Util.parseYouTubeTime(url_vars["t"]);
+		}
+
+		this.media_id.end		= parseInt(url_vars["end"]);
+
+		this.media_id.hd		= Boolean(typeof(url_vars["hd"]) != 'undefined');
+
+
+		// API Call
+		TL.Load.js('https://www.youtube.com/iframe_api', function() {
+			self.createMedia();
+		});
+
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		//this.el.content_item = document.getElementById(this._el.content_item.id);
+		this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this.options.width}) + "px";
+		this._el.content_item.style.width = this.options.width + "px";
+	},
+
+	_stopMedia: function() {
+		if (this.youtube_loaded) {
+			try {
+			    if(this.player.getPlayerState() == YT.PlayerState.PLAYING) {
+			        this.player.pauseVideo();
+			    }
+			}
+			catch(err) {
+				trace(err);
+			}
+
+		}
+	},
+	createMedia: function() {
+		var self = this;
+
+		clearTimeout(this.timer);
+
+		if(typeof YT != 'undefined' && typeof YT.Player != 'undefined') {
+			// Create Player
+			this.player = new YT.Player(this._el.content_item.id, {
+				playerVars: {
+					enablejsapi:		1,
+					color: 				'white',
+					autohide: 			1,
+					showinfo:			0,
+					theme:				'light',
+					start:				this.media_id.start,
+					end:  				this.media_id.end,
+					fs: 				0,
+					rel:				0
+				},
+				videoId: this.media_id.id,
+				events: {
+					onReady: 			function() {
+						self.onPlayerReady();
+						// After Loaded
+						self.onLoaded();
+					},
+					'onStateChange': 	self.onStateChange
+				}
+			});
+		} else {
+			this.timer = setTimeout(function() {
+				self.createMedia();
+			}, 1000);
+		}
+	},
+
+	/*	Events
+	================================================== */
+	onPlayerReady: function(e) {
+		this.youtube_loaded = true;
+		this._el.content_item = document.getElementById(this._el.content_item.id);
+		this.onMediaLoaded();
+
+	},
+
+	onStateChange: function(e) {
+        if(e.data == YT.PlayerState.ENDED) {
+            e.target.seekTo(0);
+            e.target.pauseVideo();
+        }				
+	}
+
+
+});
+
+
+/* **********************************************
+     Begin TL.Slide.js
+********************************************** */
+
+/*	TL.Slide
+	Creates a slide. Takes a data object and
+	populates the slide with content.
+================================================== */
+
+TL.Slide = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, title_slide) {
+		// DOM Elements
+		this._el = {
+			container: {},
+			scroll_container: {},
+			background: {},
+			content_container: {},
+			content: {}
+		};
+
+		// Components
+		this._media 		= null;
+		this._mediaclass	= {};
+		this._text			= {};
+		this._background_media = null;
+
+		// State
+		this._state = {
+			loaded: 		false
+		};
+
+		this.has = {
+			headline: 	false,
+			text: 		false,
+			media: 		false,
+			title: 		false,
+			background: {
+				image: false,
+				color: false,
+				color_value :""
+			}
+		}
+
+		this.has.title = title_slide;
+
+		// Data
+		this.data = {
+			unique_id: 				null,
+			background: 			null,
+			start_date: 			null,
+			end_date: 				null,
+			location: 				null,
+			text: 					null,
+			media: 					null,
+            autolink: true
+		};
+
+		// Options
+		this.options = {
+			// animation
+			duration: 			1000,
+			slide_padding_lr: 	40,
+			ease: 				TL.Ease.easeInSpline,
+			width: 				600,
+			height: 			600,
+			skinny_size: 		650,
+			media_name: 		""
+		};
+
+		// Actively Displaying
+		this.active = false;
+
+		// Animation Object
+		this.animator = {};
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+		this._initLayout();
+		this._initEvents();
+
+
+	},
+
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+		this.animator = TL.Animate(this._el.slider_container, {
+			left: 		-(this._el.container.offsetWidth * n) + "px",
+			duration: 	this.options.duration,
+			easing: 	this.options.ease
+		});
+	},
+
+	hide: function() {
+
+	},
+
+	setActive: function(is_active) {
+		this.active = is_active;
+
+		if (this.active) {
+			if (this.data.background) {
+				this.fire("background_change", this.has.background);
+			}
+			this.loadMedia();
+		} else {
+			this.stopMedia();
+		}
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+		//this.onAdd();
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+
+	updateDisplay: function(w, h, l) {
+		this._updateDisplay(w, h, l);
+	},
+
+	loadMedia: function() {
+        var self = this;
+        
+		if (this._media && !this._state.loaded) {
+			this._media.loadMedia();
+			this._state.loaded = true;
+		}
+		
+		if(this._background_media && !this._background_media._state.loaded) {
+		    this._background_media.on("loaded", function() {
+		        self._updateBackgroundDisplay();
+		    });
+		    this._background_media.loadMedia();
+		}
+	},
+
+	stopMedia: function() {
+		if (this._media && this._state.loaded) {
+			this._media.stopMedia();
+		}
+	},
+
+	getBackground: function() {
+		return this.has.background;
+	},
+
+	scrollToTop: function() {
+		this._el.container.scrollTop = 0;
+	},
+
+	getFormattedDate: function() {
+
+		if (TL.Util.trim(this.data.display_date).length > 0) {
+			return this.data.display_date;
+		}
+		var date_text = "";
+
+		if(!this.has.title) {
+            if (this.data.end_date) {
+                date_text = " &mdash; " + this.data.end_date.getDisplayDate(this.getLanguage());
+            }
+            if (this.data.start_date) {
+                date_text = this.data.start_date.getDisplayDate(this.getLanguage()) + date_text;
+            }
+        }
+		return date_text;
+	},
+
+	/*	Events
+	================================================== */
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		// Create Layout
+		this._el.container 				= TL.Dom.create("div", "tl-slide");
+
+		if (this.has.title) {
+			this._el.container.className = "tl-slide tl-slide-titleslide";
+		}
+
+		if (this.data.unique_id) {
+			this._el.container.id 		= this.data.unique_id;
+		}
+		this._el.scroll_container 		= TL.Dom.create("div", "tl-slide-scrollable-container", this._el.container);
+		this._el.content_container		= TL.Dom.create("div", "tl-slide-content-container", this._el.scroll_container);
+		this._el.content				= TL.Dom.create("div", "tl-slide-content", this._el.content_container);
+		this._el.background				= TL.Dom.create("div", "tl-slide-background", this._el.container);
+		// Style Slide Background
+		if (this.data.background) {
+			if (this.data.background.url) {
+			    var media_type = TL.MediaType(this.data.background, true);
+			    if(media_type) {
+                    this._background_media = new media_type.cls(this.data.background, {background: 1});
+                
+                    this.has.background.image 					= true;
+                    this._el.container.className 				+= ' tl-full-image-background';
+                    this.has.background.color_value 			= "#000";
+                    this._el.background.style.display 			= "block";
+                }
+			}
+			if (this.data.background.color) {
+				this.has.background.color 					= true;
+				this._el.container.className 				+= ' tl-full-color-background';
+				this.has.background.color_value 			= this.data.background.color;
+				//this._el.container.style.backgroundColor = this.data.background.color;
+				//this._el.background.style.backgroundColor 	= this.data.background.color;
+				//this._el.background.style.display 			= "block";
+			}
+			if (this.data.background.text_background) {
+				this._el.container.className 				+= ' tl-text-background';
+			}
+
+		}
+
+
+
+		// Determine Assets for layout and loading
+		if (this.data.media && this.data.media.url && this.data.media.url != "") {
+			this.has.media = true;
+		}
+		if (this.data.text && this.data.text.text) {
+			this.has.text = true;
+		}
+		if (this.data.text && this.data.text.headline) {
+			this.has.headline = true;
+		}
+
+		// Create Media
+		if (this.has.media) {
+
+			// Determine the media type
+			this.data.media.mediatype 	= TL.MediaType(this.data.media);
+			this.options.media_name 	= this.data.media.mediatype.name;
+			this.options.media_type 	= this.data.media.mediatype.type;
+            this.options.autolink = this.data.autolink;
+
+			// Create a media object using the matched class name
+			this._media = new this.data.media.mediatype.cls(this.data.media, this.options);
+
+		}
+
+		// Create Text
+		if (this.has.text || this.has.headline) {
+			this._text = new TL.Media.Text(this.data.text, {title:this.has.title,language: this.options.language, autolink: this.data.autolink });
+			this._text.addDateText(this.getFormattedDate());
+		}
+
+
+
+		// Add to DOM
+		if (!this.has.text && !this.has.headline && this.has.media) {
+			TL.DomUtil.addClass(this._el.container, 'tl-slide-media-only');
+			this._media.addTo(this._el.content);
+		} else if (this.has.headline && this.has.media && !this.has.text) {
+			TL.DomUtil.addClass(this._el.container, 'tl-slide-media-only');
+			this._text.addTo(this._el.content);
+			this._media.addTo(this._el.content);
+		} else if (this.has.text && this.has.media) {
+			this._media.addTo(this._el.content);
+			this._text.addTo(this._el.content);
+		} else if (this.has.text || this.has.headline) {
+			TL.DomUtil.addClass(this._el.container, 'tl-slide-text-only');
+			this._text.addTo(this._el.content);
+		}
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+
+	},
+
+	_initEvents: function() {
+
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, layout) {
+		var content_width,
+			content_padding_left = this.options.slide_padding_lr,
+			content_padding_right = this.options.slide_padding_lr;
+
+		if (width) {
+			this.options.width 					= width;
+		} else {
+			this.options.width 					= this._el.container.offsetWidth;
+		}
+
+		content_width = this.options.width - (this.options.slide_padding_lr * 2);
+
+		if(TL.Browser.mobile && (this.options.width <= this.options.skinny_size)) {
+			content_padding_left = 0;
+			content_padding_right = 0;
+			content_width = this.options.width;
+		} else if (layout == "landscape") {
+
+		} else if (this.options.width <= this.options.skinny_size) {
+			content_padding_left = 50;
+			content_padding_right = 50;
+			content_width = this.options.width - content_padding_left - content_padding_right;
+		} else {
+
+		}
+
+		this._el.content.style.paddingLeft 	= content_padding_left + "px";
+		this._el.content.style.paddingRight = content_padding_right + "px";
+		this._el.content.style.width		= content_width + "px";
+
+		if (height) {
+			this.options.height = height;
+			//this._el.scroll_container.style.height		= this.options.height + "px";
+
+		} else {
+			this.options.height = this._el.container.offsetHeight;
+		}
+
+		if (this._media) {
+
+			if (!this.has.text && this.has.headline) {
+				this._media.updateDisplay(content_width, (this.options.height - this._text.headlineHeight()), layout);
+			} else if (!this.has.text && !this.has.headline) {
+				this._media.updateDisplay(content_width, this.options.height, layout);
+			} else if (this.options.width <= this.options.skinny_size) {
+				this._media.updateDisplay(content_width, this.options.height, layout);
+			} else {
+				this._media.updateDisplay(content_width/2, this.options.height, layout);
+			}
+		}
+		
+		this._updateBackgroundDisplay();
+	},
+	
+	_updateBackgroundDisplay: function() {
+	    if(this._background_media && this._background_media._state.loaded) {
+	        this._el.background.style.backgroundImage 	= "url('" + this._background_media.getImageURL(this.options.width, this.options.height) + "')";
+	    }
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.SlideNav.js
+********************************************** */
+
+/*	TL.SlideNav
+	encapsulate DOM display/events for the 
+	'next' and 'previous' buttons on a slide.
+================================================== */
+// TODO null out data
+
+TL.SlideNav = TL.Class.extend({
+	
+	includes: [TL.Events, TL.DomMixins],
+	
+	_el: {},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, add_to_container) {
+		// DOM ELEMENTS
+		this._el = {
+			container: {},
+			content_container: {},
+			icon: {},
+			title: {},
+			description: {}
+		};
+	
+		// Media Type
+		this.mediatype = {};
+		
+		// Data
+		this.data = {
+			title: "Navigation",
+			description: "Description",
+			date: "Date"
+		};
+	
+		//Options
+		this.options = {
+			direction: 			"previous"
+		};
+	
+		this.animator = null;
+		
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+		
+		
+		this._el.container = TL.Dom.create("div", "tl-slidenav-" + this.options.direction);
+		
+		if (TL.Browser.mobile) {
+			this._el.container.setAttribute("ontouchstart"," ");
+		}
+		
+		this._initLayout();
+		this._initEvents();
+		
+		if (add_to_container) {
+			add_to_container.appendChild(this._el.container);
+		};
+		
+	},
+	
+	/*	Update Content
+	================================================== */
+	update: function(slide) {
+		var d = {
+			title: "",
+			description: "",
+			date: slide.getFormattedDate()
+		};
+		
+		if (slide.data.text) {
+			if (slide.data.text.headline) {
+				d.title = slide.data.text.headline;
+			}
+		}
+
+		this._update(d);
+	},
+	
+	/*	Color
+	================================================== */
+	setColor: function(inverted) {
+		if (inverted) {
+			this._el.content_container.className = 'tl-slidenav-content-container tl-slidenav-inverted';
+		} else {
+			this._el.content_container.className = 'tl-slidenav-content-container';
+		}
+	},
+	
+	/*	Events
+	================================================== */
+	_onMouseClick: function() {
+		this.fire("clicked", this.options);
+	},
+	
+	/*	Private Methods
+	================================================== */
+	_update: function(d) {
+		// update data
+		this.data = TL.Util.mergeData(this.data, d);
+		
+		// Title
+		this._el.title.innerHTML = TL.Util.unlinkify(this.data.title);
+		
+		// Date
+		this._el.description.innerHTML	= TL.Util.unlinkify(this.data.date);
+	},
+	
+	_initLayout: function () {
+		
+		// Create Layout
+		this._el.content_container			= TL.Dom.create("div", "tl-slidenav-content-container", this._el.container);
+		this._el.icon						= TL.Dom.create("div", "tl-slidenav-icon", this._el.content_container);
+		this._el.title						= TL.Dom.create("div", "tl-slidenav-title", this._el.content_container);
+		this._el.description				= TL.Dom.create("div", "tl-slidenav-description", this._el.content_container);
+		
+		this._el.icon.innerHTML				= "&nbsp;"
+		
+		this._update();
+	},
+	
+	_initEvents: function () {
+		TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
+	}
+	
+	
+});
+
+/* **********************************************
+     Begin TL.StorySlider.js
+********************************************** */
+
+/*	StorySlider
+	is the central class of the API - it is used to create a StorySlider
+
+	Events:
+	nav_next
+	nav_previous
+	slideDisplayUpdate
+	loaded
+	slideAdded
+	slideLoaded
+	slideRemoved
+
+
+================================================== */
+
+TL.StorySlider = TL.Class.extend({
+
+	includes: [TL.Events, TL.I18NMixins],
+
+	/*	Private Methods
+	================================================== */
+	initialize: function (elem, data, options, init) {
+
+		// DOM ELEMENTS
+		this._el = {
+			container: {},
+			background: {},
+			slider_container_mask: {},
+			slider_container: {},
+			slider_item_container: {}
+		};
+
+		this._nav = {};
+		this._nav.previous = {};
+		this._nav.next = {};
+
+		// Slide Spacing
+		this.slide_spacing = 0;
+
+		// Slides Array
+		this._slides = [];
+
+		// Swipe Object
+		this._swipable;
+
+		// Preload Timer
+		this.preloadTimer;
+
+		// Message
+		this._message;
+
+		// Current Slide
+		this.current_id = '';
+
+		// Data Object
+		this.data = {};
+
+		this.options = {
+			id: 					"",
+			layout: 				"portrait",
+			width: 					600,
+			height: 				600,
+			default_bg_color: 		{r:255, g:255, b:255},
+			slide_padding_lr: 		40, 			// padding on slide of slide
+			start_at_slide: 		1,
+			slide_default_fade: 	"0%", 			// landscape fade
+			// animation
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint,
+			// interaction
+			dragging: 				true,
+			trackResize: 			true
+		};
+
+		// Main element ID
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+			this.options.id = TL.Util.unique_ID(6, "tl");
+		} else {
+			this.options.id = elem;
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		if (!this._el.container.id) {
+			this._el.container.id = this.options.id;
+		}
+
+		// Animation Object
+		this.animator = null;
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+		if (init) {
+			this.init();
+		}
+	},
+
+	init: function() {
+		this._initLayout();
+		this._initEvents();
+		this._initData();
+		this._updateDisplay();
+
+		// Go to initial slide
+		this.goTo(this.options.start_at_slide);
+
+		this._onLoaded();
+	},
+
+	/* Slides
+	================================================== */
+	_addSlide:function(slide) {
+		slide.addTo(this._el.slider_item_container);
+		slide.on('added', this._onSlideAdded, this);
+		slide.on('background_change', this._onBackgroundChange, this);
+	},
+
+	_createSlide: function(d, title_slide, n) {
+		var slide = new TL.Slide(d, this.options, title_slide);
+		this._addSlide(slide);
+		if(n < 0) {
+		    this._slides.push(slide);
+		} else {
+		    this._slides.splice(n, 0, slide);
+		}
+	},
+
+	_createSlides: function(array) {
+		for (var i = 0; i < array.length; i++) {
+			if (array[i].unique_id == "") {
+				array[i].unique_id = TL.Util.unique_ID(6, "tl-slide");
+			}
+            this._createSlide(array[i], false, -1);
+		}
+	},
+
+	_removeSlide: function(slide) {
+		slide.removeFrom(this._el.slider_item_container);
+		slide.off('added', this._onSlideRemoved, this);
+		slide.off('background_change', this._onBackgroundChange);
+	},
+
+	_destroySlide: function(n) {
+		this._removeSlide(this._slides[n]);
+		this._slides.splice(n, 1);
+	},
+
+    _findSlideIndex: function(n) {
+        var _n = n;
+		if (typeof n == 'string' || n instanceof String) {
+			_n = TL.Util.findArrayNumberByUniqueID(n, this._slides, "unique_id");
+		}
+		return _n;
+    },
+
+	/*	Public
+	================================================== */
+	updateDisplay: function(w, h, a, l) {
+		this._updateDisplay(w, h, a, l);
+	},
+
+	// Create a slide
+	createSlide: function(d, n) {
+		this._createSlide(d, false, n);
+	},
+
+	// Create Many Slides from an array
+	createSlides: function(array) {
+		this._createSlides(array);
+	},
+
+	// Destroy slide by index
+	destroySlide: function(n) {
+	    this._destroySlide(n);
+	},
+
+	// Destroy slide by id
+	destroySlideId: function(id) {
+	    this.destroySlide(this._findSlideIndex(id));
+	},
+
+	/*	Navigation
+	================================================== */
+	goTo: function(n, fast, displayupdate) {
+		n = parseInt(n);
+		if (isNaN(n)) n = 0;
+
+		var self = this;
+
+		this.changeBackground({color_value:"", image:false});
+
+		// Clear Preloader Timer
+		if (this.preloadTimer) {
+			clearTimeout(this.preloadTimer);
+		}
+
+		// Set Slide Active State
+		for (var i = 0; i < this._slides.length; i++) {
+			this._slides[i].setActive(false);
+		}
+
+		if (n < this._slides.length && n >= 0) {
+			this.current_id = this._slides[n].data.unique_id;
+
+			// Stop animation
+			if (this.animator) {
+				this.animator.stop();
+			}
+			if (this._swipable) {
+				this._swipable.stopMomentum();
+			}
+
+			if (fast) {
+				this._el.slider_container.style.left = -(this.slide_spacing * n) + "px";
+				this._onSlideChange(displayupdate);
+			} else {
+				this.animator = TL.Animate(this._el.slider_container, {
+					left: 		-(this.slide_spacing * n) + "px",
+					duration: 	this.options.duration,
+					easing: 	this.options.ease,
+					complete: 	this._onSlideChange(displayupdate)
+				});
+			}
+
+			// Set Slide Active State
+			this._slides[n].setActive(true);
+
+			// Update Navigation and Info
+			if (this._slides[n + 1]) {
+				this.showNav(this._nav.next, true);
+				this._nav.next.update(this._slides[n + 1]);
+			} else {
+				this.showNav(this._nav.next, false);
+			}
+			if (this._slides[n - 1]) {
+				this.showNav(this._nav.previous, true);
+				this._nav.previous.update(this._slides[n - 1]);
+			} else {
+				this.showNav(this._nav.previous, false);
+			}
+
+			// Preload Slides
+			this.preloadTimer = setTimeout(function() {
+				self.preloadSlides(n);
+			}, this.options.duration);
+		}
+	},
+
+	goToId: function(id, fast, displayupdate) {
+		this.goTo(this._findSlideIndex(id), fast, displayupdate);
+	},
+
+	preloadSlides: function(n) {
+		if (this._slides[n + 1]) {
+			this._slides[n + 1].loadMedia();
+			this._slides[n + 1].scrollToTop();
+		}
+		if (this._slides[n + 2]) {
+			this._slides[n + 2].loadMedia();
+			this._slides[n + 2].scrollToTop();
+		}
+		if (this._slides[n - 1]) {
+			this._slides[n - 1].loadMedia();
+			this._slides[n - 1].scrollToTop();
+		}
+		if (this._slides[n - 2]) {
+			this._slides[n - 2].loadMedia();
+			this._slides[n - 2].scrollToTop();
+		}
+	},
+
+	next: function() {
+	    var n = this._findSlideIndex(this.current_id);
+		if ((n + 1) < (this._slides.length)) {
+			this.goTo(n + 1);
+		} else {
+			this.goTo(n);
+		}
+	},
+
+	previous: function() {
+	    var n = this._findSlideIndex(this.current_id);
+		if (n - 1 >= 0) {
+			this.goTo(n - 1);
+		} else {
+			this.goTo(n);
+		}
+	},
+
+	showNav: function(nav_obj, show) {
+
+		if (this.options.width <= 500 && TL.Browser.mobile) {
+
+		} else {
+			if (show) {
+				nav_obj.show();
+			} else {
+				nav_obj.hide();
+			}
+
+		}
+	},
+
+
+
+	changeBackground: function(bg) {
+		var bg_color = {r:256, g:256, b:256},
+			bg_color_rgb;
+
+		if (bg.color_value && bg.color_value != "") {
+			bg_color = TL.Util.hexToRgb(bg.color_value);
+			if (!bg_color) {
+				trace("Invalid color value " + bg.color_value);
+				bg_color = this.options.default_bg_color;
+			}
+		} else {
+			bg_color = this.options.default_bg_color;
+			bg.color_value = "rgb(" + bg_color.r + " , " + bg_color.g + ", " + bg_color.b + ")";
+		}
+
+		bg_color_rgb 	= bg_color.r + "," + bg_color.g + "," + bg_color.b;
+		this._el.background.style.backgroundImage = "none";
+
+
+		if (bg.color_value) {
+			this._el.background.style.backgroundColor = bg.color_value;
+		} else {
+			this._el.background.style.backgroundColor = "transparent";
+		}
+
+		if (bg_color.r < 255 || bg_color.g < 255 || bg_color.b < 255 || bg.image) {
+			this._nav.next.setColor(true);
+			this._nav.previous.setColor(true);
+		} else {
+			this._nav.next.setColor(false);
+			this._nav.previous.setColor(false);
+		}
+	},
+	/*	Private Methods
+	================================================== */
+
+	// Update Display
+	_updateDisplay: function(width, height, animate, layout) {
+		var nav_pos, _layout;
+
+		if(typeof layout === 'undefined'){
+			_layout = this.options.layout;
+		} else {
+			_layout = layout;
+		}
+
+		this.options.layout = _layout;
+
+		this.slide_spacing = this.options.width*2;
+
+		if (width) {
+			this.options.width = width;
+		} else {
+			this.options.width = this._el.container.offsetWidth;
+		}
+
+		if (height) {
+			this.options.height = height;
+		} else {
+			this.options.height = this._el.container.offsetHeight;
+		}
+
+		//this._el.container.style.height = this.options.height;
+
+		// position navigation
+		nav_pos = (this.options.height/2);
+		this._nav.next.setPosition({top:nav_pos});
+		this._nav.previous.setPosition({top:nav_pos});
+
+
+		// Position slides
+		for (var i = 0; i < this._slides.length; i++) {
+			this._slides[i].updateDisplay(this.options.width, this.options.height, _layout);
+			this._slides[i].setPosition({left:(this.slide_spacing * i), top:0});
+
+		};
+
+		// Go to the current slide
+		this.goToId(this.current_id, true, true);
+	},
+
+	// Reposition and redraw slides
+    _updateDrawSlides: function() {
+	    var _layout = this.options.layout;
+
+		for (var i = 0; i < this._slides.length; i++) {
+			this._slides[i].updateDisplay(this.options.width, this.options.height, _layout);
+			this._slides[i].setPosition({left:(this.slide_spacing * i), top:0});
+		};
+
+		this.goToId(this.current_id, true, false);
+	},
+
+
+	/*	Init
+	================================================== */
+	_initLayout: function () {
+
+		TL.DomUtil.addClass(this._el.container, 'tl-storyslider');
+
+		// Create Layout
+		this._el.slider_container_mask		= TL.Dom.create('div', 'tl-slider-container-mask', this._el.container);
+		this._el.background 				= TL.Dom.create('div', 'tl-slider-background tl-animate', this._el.container);
+		this._el.slider_container			= TL.Dom.create('div', 'tl-slider-container tlanimate', this._el.slider_container_mask);
+		this._el.slider_item_container		= TL.Dom.create('div', 'tl-slider-item-container', this._el.slider_container);
+
+
+		// Update Size
+		this.options.width = this._el.container.offsetWidth;
+		this.options.height = this._el.container.offsetHeight;
+
+		// Create Navigation
+		this._nav.previous = new TL.SlideNav({title: "Previous", description: "description"}, {direction:"previous"});
+		this._nav.next = new TL.SlideNav({title: "Next",description: "description"}, {direction:"next"});
+
+		// add the navigation to the dom
+		this._nav.next.addTo(this._el.container);
+		this._nav.previous.addTo(this._el.container);
+
+
+
+		this._el.slider_container.style.left="0px";
+
+		if (TL.Browser.touch) {
+			//this._el.slider_touch_mask = TL.Dom.create('div', 'tl-slider-touch-mask', this._el.slider_container_mask);
+			this._swipable = new TL.Swipable(this._el.slider_container_mask, this._el.slider_container, {
+				enable: {x:true, y:false},
+				snap: 	true
+			});
+			this._swipable.enable();
+
+			// Message
+			this._message = new TL.Message({}, {
+				message_class: 		"tl-message-full",
+				message_icon_class: "tl-icon-swipe-left"
+			});
+			this._message.updateMessage(this._("swipe_to_navigate"));
+			this._message.addTo(this._el.container);
+		}
+
+	},
+
+	_initEvents: function () {
+		this._nav.next.on('clicked', this._onNavigation, this);
+		this._nav.previous.on('clicked', this._onNavigation, this);
+
+		if (this._message) {
+			this._message.on('clicked', this._onMessageClick, this);
+		}
+
+		if (this._swipable) {
+			this._swipable.on('swipe_left', this._onNavigation, this);
+			this._swipable.on('swipe_right', this._onNavigation, this);
+			this._swipable.on('swipe_nodirection', this._onSwipeNoDirection, this);
+		}
+
+
+	},
+
+	_initData: function() {
+	    if(this.data.title) {
+	        this._createSlide(this.data.title, true, -1);
+	    }
+        this._createSlides(this.data.events);
+	},
+
+	/*	Events
+	================================================== */
+	_onBackgroundChange: function(e) {
+	    var n = this._findSlideIndex(this.current_id);
+		var slide_background = this._slides[n].getBackground();
+		this.changeBackground(e);
+		this.fire("colorchange", slide_background);
+	},
+
+	_onMessageClick: function(e) {
+		this._message.hide();
+	},
+
+	_onSwipeNoDirection: function(e) {
+		this.goToId(this.current_id);
+	},
+
+	_onNavigation: function(e) {
+
+		if (e.direction == "next" || e.direction == "left") {
+			this.next();
+		} else if (e.direction == "previous" || e.direction == "right") {
+			this.previous();
+		}
+		this.fire("nav_" + e.direction, this.data);
+	},
+
+	_onSlideAdded: function(e) {
+		trace("slideadded")
+		this.fire("slideAdded", this.data);
+	},
+
+	_onSlideRemoved: function(e) {
+		this.fire("slideRemoved", this.data);
+	},
+
+	_onSlideChange: function(displayupdate) {
+		if (!displayupdate) {
+			this.fire("change", {unique_id: this.current_id});
+		}
+	},
+
+	_onMouseClick: function(e) {
+
+	},
+
+	_fireMouseEvent: function (e) {
+		if (!this._loaded) {
+			return;
+		}
+
+		var type = e.type;
+		type = (type === 'mouseenter' ? 'mouseover' : (type === 'mouseleave' ? 'mouseout' : type));
+
+		if (!this.hasEventListeners(type)) {
+			return;
+		}
+
+		if (type === 'contextmenu') {
+			TL.DomEvent.preventDefault(e);
+		}
+
+		this.fire(type, {
+			latlng: "something", //this.mouseEventToLatLng(e),
+			layerPoint: "something else" //this.mouseEventToLayerPoint(e)
+		});
+	},
+
+	_onLoaded: function() {
+		this.fire("loaded", this.data);
+	}
+
+
+});
+
+
+/* **********************************************
+     Begin TL.TimeNav.js
+********************************************** */
+
+/*	TL.TimeNav
+
+================================================== */
+
+TL.TimeNav = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function (elem, timeline_config, options, init) {
+		// DOM ELEMENTS
+		this._el = {
+			parent: {},
+			container: {},
+			slider: {},
+			slider_background: {},
+			line: {},
+			marker_container_mask: {},
+			marker_container: {},
+			marker_item_container: {},
+			timeaxis: {},
+			timeaxis_background: {},
+			attribution: {}
+		};
+
+		this.collapsed = false;
+
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+		} else {
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		this.config = timeline_config;
+
+		//Options
+		this.options = {
+			width: 					600,
+			height: 				600,
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint,
+			has_groups: 			false,
+			optimal_tick_width: 	50,
+			scale_factor: 			2, 				// How many screen widths wide should the timeline be
+			marker_padding: 		5,
+			timenav_height_min: 	150, 			// Minimum timenav height
+			marker_height_min: 		30, 			// Minimum Marker Height
+			marker_width_min: 		100, 			// Minimum Marker Width
+			zoom_sequence:          [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] // Array of Fibonacci numbers for TimeNav zoom levels http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibtable.html
+		};
+
+		// Animation
+		this.animator = null;
+
+		// Ready state
+		this.ready = false;
+
+		// Markers Array
+		this._markers = [];
+
+		// Eras Array
+		this._eras = [];
+		this.has_eras = false;
+
+		// Groups Array
+		this._groups = [];
+
+		// Row Height
+		this._calculated_row_height = 100;
+
+		// Current Marker
+		this.current_id = "";
+
+		// TimeScale
+		this.timescale = {};
+
+		// TimeAxis
+		this.timeaxis = {};
+		this.axishelper = {};
+
+		// Max Rows
+		this.max_rows = 6;
+
+		// Animate CSS
+		this.animate_css = false;
+
+		// Swipe Object
+		this._swipable;
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+
+		if (init) {
+			this.init();
+		}
+	},
+
+	init: function() {
+		this._initLayout();
+		this._initEvents();
+		this._initData();
+		this._updateDisplay();
+
+		this._onLoaded();
+	},
+
+	/*	Public
+	================================================== */
+	positionMarkers: function() {
+		this._positionMarkers();
+	},
+
+	/*	Update Display
+	================================================== */
+	updateDisplay: function(w, h, a, l) {
+		this._updateDisplay(w, h, a, l);
+	},
+
+
+	/*	TimeScale
+	================================================== */
+	_getTimeScale: function() {
+		/* maybe the establishing config values (marker_height_min and max_rows) should be
+		separated from making a TimeScale object, which happens in another spot in this file with duplicate mapping of properties of this TimeNav into the TimeScale options object? */
+		// Set Max Rows
+		var marker_height_min = 0;
+		try {
+			marker_height_min = parseInt(this.options.marker_height_min);
+		} catch(e) {
+			trace("Invalid value for marker_height_min option.");
+			marker_height_min = 30;
+		}
+		if (marker_height_min == 0) {
+			trace("marker_height_min option must not be zero.")
+			marker_height_min = 30;
+		}
+		this.max_rows = Math.round((this.options.height - this._el.timeaxis_background.offsetHeight - (this.options.marker_padding)) / marker_height_min);
+		if (this.max_rows < 1) {
+			this.max_rows = 1;
+		}
+		return new TL.TimeScale(this.config, {
+            display_width: this._el.container.offsetWidth,
+            screen_multiplier: this.options.scale_factor,
+            max_rows: this.max_rows
+
+		});
+	},
+
+	_updateTimeScale: function(new_scale) {
+		this.options.scale_factor = new_scale;
+		this._updateDrawTimeline();
+	},
+
+	zoomIn: function() { // move the the next "higher" scale factor
+		var new_scale = TL.Util.findNextGreater(this.options.zoom_sequence, this.options.scale_factor);
+		this.setZoomFactor(new_scale);
+	},
+
+	zoomOut: function() { // move the the next "lower" scale factor
+		var new_scale = TL.Util.findNextLesser(this.options.zoom_sequence, this.options.scale_factor);
+		this.setZoomFactor(new_scale);
+	},
+
+	setZoom: function(level) {
+		var zoom_factor = this.options.zoom_sequence[level];
+		if (typeof(zoom_factor) == 'number') {
+			this.setZoomFactor(zoom_factor);
+		} else {
+			console.warn("Invalid zoom level. Please use an index number between 0 and " + (this.options.zoom_sequence.length - 1));
+		}
+	},
+
+	setZoomFactor: function(factor) {
+		if (factor <= this.options.zoom_sequence[0]) {
+			this.fire("zoomtoggle", {zoom:"out", show:false});
+		} else {
+			this.fire("zoomtoggle", {zoom:"out", show:true});
+		}
+
+		if (factor >= this.options.zoom_sequence[this.options.zoom_sequence.length-1]) {
+			this.fire("zoomtoggle", {zoom:"in", show:false});
+		} else {
+			this.fire("zoomtoggle", {zoom:"in", show:true});
+		}
+
+		if (factor == 0) {
+			console.warn("Zoom factor must be greater than zero. Using 0.1");
+			factor = 0.1;
+		}
+		this.options.scale_factor = factor;
+		//this._updateDrawTimeline(true);
+		this.goToId(this.current_id, !this._updateDrawTimeline(true), true);
+	},
+
+	/*	Groups
+	================================================== */
+	_createGroups: function() {
+		var group_labels = this.timescale.getGroupLabels();
+
+		if (group_labels) {
+			this.options.has_groups = true;
+			for (var i = 0; i < group_labels.length; i++) {
+				this._createGroup(group_labels[i]);
+			}
+		}
+
+	},
+
+	_createGroup: function(group_label) {
+		var group = new TL.TimeGroup(group_label);
+		this._addGroup(group);
+		this._groups.push(group);
+	},
+
+	_addGroup:function(group) {
+		group.addTo(this._el.container);
+
+	},
+
+	_positionGroups: function() {
+		if (this.options.has_groups) {
+			var available_height 	= (this.options.height - this._el.timeaxis_background.offsetHeight ),
+				group_height 		= Math.floor((available_height /this.timescale.getNumberOfRows()) - this.options.marker_padding),
+				group_labels		= this.timescale.getGroupLabels();
+
+			for (var i = 0, group_rows = 0; i < this._groups.length; i++) {
+				var group_y = Math.floor(group_rows * (group_height + this.options.marker_padding));
+				var group_hide = false;
+				if (group_y > (available_height- this.options.marker_padding)) {
+					group_hide = true;
+				}
+
+				this._groups[i].setRowPosition(group_y, this._calculated_row_height + this.options.marker_padding/2);
+				this._groups[i].setAlternateRowColor(TL.Util.isEven(i), group_hide);
+
+				group_rows += this._groups[i].data.rows;    // account for groups spanning multiple rows
+			}
+		}
+	},
+
+	/*	Markers
+	================================================== */
+	_addMarker:function(marker) {
+		marker.addTo(this._el.marker_item_container);
+		marker.on('markerclick', this._onMarkerClick, this);
+		marker.on('added', this._onMarkerAdded, this);
+	},
+
+	_createMarker: function(data, n) {
+		var marker = new TL.TimeMarker(data, this.options);
+		this._addMarker(marker);
+		if(n < 0) {
+		    this._markers.push(marker);
+		} else {
+		    this._markers.splice(n, 0, marker);
+		}
+	},
+
+	_createMarkers: function(array) {
+		for (var i = 0; i < array.length; i++) {
+			this._createMarker(array[i], -1);
+		}
+	},
+
+	_removeMarker: function(marker) {
+		marker.removeFrom(this._el.marker_item_container);
+		//marker.off('added', this._onMarkerRemoved, this);
+	},
+
+	_destroyMarker: function(n) {
+	    this._removeMarker(this._markers[n]);
+	    this._markers.splice(n, 1);
+	},
+
+	_positionMarkers: function(fast) {
+		// POSITION X
+		for (var i = 0; i < this._markers.length; i++) {
+			var pos = this.timescale.getPositionInfo(i);
+			if (fast) {
+				this._markers[i].setClass("tl-timemarker tl-timemarker-fast");
+			} else {
+				this._markers[i].setClass("tl-timemarker");
+			}
+			this._markers[i].setPosition({left:pos.start});
+			this._markers[i].setWidth(pos.width);
+		};
+
+	},
+
+	_calculateMarkerHeight: function(h) {
+		return ((h /this.timescale.getNumberOfRows()) - this.options.marker_padding);
+	},
+
+	_calculateRowHeight: function(h) {
+		return (h /this.timescale.getNumberOfRows());
+	},
+
+	_calculateAvailableHeight: function() {
+		return (this.options.height - this._el.timeaxis_background.offsetHeight - (this.options.marker_padding));
+	},
+
+	_calculateMinimumTimeNavHeight: function() {
+		return (this.timescale.getNumberOfRows() * this.options.marker_height_min) + this._el.timeaxis_background.offsetHeight + (this.options.marker_padding);
+
+	},
+
+	getMinimumHeight: function() {
+		return this._calculateMinimumTimeNavHeight();
+	},
+
+	_assignRowsToMarkers: function() {
+		var available_height 	= this._calculateAvailableHeight(),
+			marker_height 		= this._calculateMarkerHeight(available_height);
+
+
+		this._positionGroups();
+
+		this._calculated_row_height = this._calculateRowHeight(available_height);
+
+		for (var i = 0; i < this._markers.length; i++) {
+
+			// Set Height
+			this._markers[i].setHeight(marker_height);
+
+			//Position by Row
+			var row = this.timescale.getPositionInfo(i).row;
+
+			var marker_y = Math.floor(row * (marker_height + this.options.marker_padding)) + this.options.marker_padding;
+
+			var remainder_height = available_height - marker_y + this.options.marker_padding;
+			this._markers[i].setRowPosition(marker_y, remainder_height);
+		};
+
+	},
+
+	_resetMarkersActive: function() {
+		for (var i = 0; i < this._markers.length; i++) {
+			this._markers[i].setActive(false);
+		};
+	},
+
+	_findMarkerIndex: function(n) {
+	    var _n = -1;
+		if (typeof n == 'string' || n instanceof String) {
+			_n = TL.Util.findArrayNumberByUniqueID(n, this._markers, "unique_id", _n);
+		}
+		return _n;
+	},
+
+	/*	ERAS
+	================================================== */
+	_createEras: function(array) {
+		for (var i = 0; i < array.length; i++) {
+			this._createEra(array[i], -1);
+		}
+	},
+
+	_createEra: function(data, n) {
+		var era = new TL.TimeEra(data, this.options);
+		this._addEra(era);
+		if(n < 0) {
+		    this._eras.push(era);
+		} else {
+		    this._eras.splice(n, 0, era);
+		}
+	},
+
+	_addEra:function(era) {
+		era.addTo(this._el.marker_item_container);
+		era.on('added', this._onEraAdded, this);
+	},
+
+	_removeEra: function(era) {
+		era.removeFrom(this._el.marker_item_container);
+		//marker.off('added', this._onMarkerRemoved, this);
+	},
+
+	_destroyEra: function(n) {
+	    this._removeEra(this._eras[n]);
+	    this._eras.splice(n, 1);
+	},
+
+	_positionEras: function(fast) {
+
+		var era_color = 0;
+		// POSITION X
+		for (var i = 0; i < this._eras.length; i++) {
+			var pos = {
+				start:0,
+				end:0,
+				width:0
+			};
+
+			pos.start = this.timescale.getPosition(this._eras[i].data.start_date.getTime());
+			pos.end = this.timescale.getPosition(this._eras[i].data.end_date.getTime());
+			pos.width = pos.end - pos.start;
+
+			if (fast) {
+				this._eras[i].setClass("tl-timeera tl-timeera-fast");
+			} else {
+				this._eras[i].setClass("tl-timeera");
+			}
+			this._eras[i].setPosition({left:pos.start});
+			this._eras[i].setWidth(pos.width);
+
+			era_color++;
+			if (era_color > 5) {
+				era_color = 0;
+			}
+			this._eras[i].setColor(era_color);
+		};
+
+	},
+
+	/*	Public
+	================================================== */
+
+	// Create a marker
+	createMarker: function(d, n) {
+	    this._createMarker(d, n);
+	},
+
+	// Create many markers from an array
+	createMarkers: function(array) {
+	    this._createMarkers(array);
+	},
+
+	// Destroy marker by index
+	destroyMarker: function(n) {
+	    this._destroyMarker(n);
+	},
+
+	// Destroy marker by id
+	destroyMarkerId: function(id) {
+	    this.destroyMarker(this._findMarkerIndex(id));
+	},
+
+	/*	Navigation
+	================================================== */
+	goTo: function(n, fast, css_animation) {
+		var self = 	this,
+			_ease = this.options.ease,
+			_duration = this.options.duration,
+			_n = (n < 0) ? 0 : n;
+
+		// Set Marker active state
+		this._resetMarkersActive();
+		if(n >= 0 && n < this._markers.length) {
+		    this._markers[n].setActive(true);
+		}
+		// Stop animation
+		if (this.animator) {
+			this.animator.stop();
+		}
+
+		if (fast) {
+			this._el.slider.className = "tl-timenav-slider";
+			this._el.slider.style.left = -this._markers[_n].getLeft() + (this.options.width/2) + "px";
+		} else {
+			if (css_animation) {
+				this._el.slider.className = "tl-timenav-slider tl-timenav-slider-animate";
+				this.animate_css = true;
+				this._el.slider.style.left = -this._markers[_n].getLeft() + (this.options.width/2) + "px";
+			} else {
+				this._el.slider.className = "tl-timenav-slider";
+				this.animator = TL.Animate(this._el.slider, {
+					left: 		-this._markers[_n].getLeft() + (this.options.width/2) + "px",
+					duration: 	_duration,
+					easing: 	_ease
+				});
+			}
+		}
+
+		if(n >= 0 && n < this._markers.length) {
+		    this.current_id = this._markers[n].data.unique_id;
+		} else {
+		    this.current_id = '';
+		}
+	},
+
+	goToId: function(id, fast, css_animation) {
+		this.goTo(this._findMarkerIndex(id), fast, css_animation);
+	},
+
+	/*	Events
+	================================================== */
+	_onLoaded: function() {
+		this.ready = true;
+		this.fire("loaded", this.config);
+	},
+
+	_onMarkerAdded: function(e) {
+		this.fire("dateAdded", this.config);
+	},
+
+	_onEraAdded: function(e) {
+		this.fire("eraAdded", this.config);
+	},
+
+	_onMarkerRemoved: function(e) {
+		this.fire("dateRemoved", this.config);
+	},
+
+	_onMarkerClick: function(e) {
+		// Go to the clicked marker
+		this.goToId(e.unique_id);
+		this.fire("change", {unique_id: e.unique_id});
+	},
+
+	_onMouseScroll: function(e) {
+
+		var delta		= 0,
+			scroll_to	= 0,
+			constraint 	= {
+				right: 	-(this.timescale.getPixelWidth() - (this.options.width/2)),
+				left: 	this.options.width/2
+			};
+		if (!e) {
+			e = window.event;
+		}
+		if (e.originalEvent) {
+			e = e.originalEvent;
+		}
+
+		// Webkit and browsers able to differntiate between up/down and left/right scrolling
+		if (typeof e.wheelDeltaX != 'undefined' ) {
+			delta = e.wheelDeltaY/6;
+			if (Math.abs(e.wheelDeltaX) > Math.abs(e.wheelDeltaY)) {
+				delta = e.wheelDeltaX/6;
+			} else {
+				//delta = e.wheelDeltaY/6;
+				delta = 0;
+			}
+		}
+		if (delta) {
+			if (e.preventDefault) {
+				 e.preventDefault();
+			}
+			e.returnValue = false;
+		}
+		// Stop from scrolling too far
+		scroll_to = parseInt(this._el.slider.style.left.replace("px", "")) + delta;
+
+
+		if (scroll_to > constraint.left) {
+			scroll_to = constraint.left;
+		} else if (scroll_to < constraint.right) {
+			scroll_to = constraint.right;
+		}
+
+		if (this.animate_css) {
+			this._el.slider.className = "tl-timenav-slider";
+			this.animate_css = false;
+		}
+
+		this._el.slider.style.left = scroll_to + "px";
+
+	},
+
+	_onDragMove: function(e) {
+		if (this.animate_css) {
+			this._el.slider.className = "tl-timenav-slider";
+			this.animate_css = false;
+		}
+
+	},
+
+	/*	Private Methods
+	================================================== */
+	// Update Display
+	_updateDisplay: function(width, height, animate) {
+
+		if (width) {
+			this.options.width = width;
+		}
+		if (height && height != this.options.height) {
+			this.options.height = height;
+			this.timescale = this._getTimeScale();
+		}
+
+		// Size Markers
+		this._assignRowsToMarkers();
+
+		// Size swipable area
+		this._el.slider_background.style.width = this.timescale.getPixelWidth() + this.options.width + "px";
+		this._el.slider_background.style.left = -(this.options.width/2) + "px";
+		this._el.slider.style.width = this.timescale.getPixelWidth() + this.options.width + "px";
+
+		// Update Swipable constraint
+		this._swipable.updateConstraint({top: false,bottom: false,left: (this.options.width/2),right: -(this.timescale.getPixelWidth() - (this.options.width/2))});
+
+		// Go to the current slide
+		this.goToId(this.current_id, true);
+	},
+
+	_drawTimeline: function(fast) {
+		this.timescale = this._getTimeScale();
+		this.timeaxis.drawTicks(this.timescale, this.options.optimal_tick_width);
+		this._positionMarkers(fast);
+		this._assignRowsToMarkers();
+		this._createGroups();
+		this._positionGroups();
+
+		if (this.has_eras) {
+
+			this._positionEras(fast);
+		}
+	},
+
+	_updateDrawTimeline: function(check_update) {
+		var do_update = false;
+
+		// Check to see if redraw is needed
+		if (check_update) {
+			/* keep this aligned with _getTimeScale or reduce code duplication */
+			var temp_timescale = new TL.TimeScale(this.config, {
+	            display_width: this._el.container.offsetWidth,
+	            screen_multiplier: this.options.scale_factor,
+	            max_rows: this.max_rows
+
+			});
+
+			if (this.timescale.getMajorScale() == temp_timescale.getMajorScale()
+			 && this.timescale.getMinorScale() == temp_timescale.getMinorScale()) {
+				do_update = true;
+			}
+		} else {
+			do_update = true;
+		}
+
+		// Perform update or redraw
+		if (do_update) {
+			this.timescale = this._getTimeScale();
+			this.timeaxis.positionTicks(this.timescale, this.options.optimal_tick_width);
+			this._positionMarkers();
+			this._assignRowsToMarkers();
+			this._positionGroups();
+			if (this.has_eras) {
+				this._positionEras();
+			}
+			this._updateDisplay();
+		} else {
+			this._drawTimeline(true);
+		}
+
+		return do_update;
+
+	},
+
+
+	/*	Init
+	================================================== */
+	_initLayout: function () {
+		// Create Layout
+		this._el.attribution 				= TL.Dom.create('div', 'tl-attribution', this._el.container);
+		this._el.line						= TL.Dom.create('div', 'tl-timenav-line', this._el.container);
+		this._el.slider						= TL.Dom.create('div', 'tl-timenav-slider', this._el.container);
+		this._el.slider_background			= TL.Dom.create('div', 'tl-timenav-slider-background', this._el.slider);
+		this._el.marker_container_mask		= TL.Dom.create('div', 'tl-timenav-container-mask', this._el.slider);
+		this._el.marker_container			= TL.Dom.create('div', 'tl-timenav-container', this._el.marker_container_mask);
+		this._el.marker_item_container		= TL.Dom.create('div', 'tl-timenav-item-container', this._el.marker_container);
+		this._el.timeaxis 					= TL.Dom.create('div', 'tl-timeaxis', this._el.slider);
+		this._el.timeaxis_background 		= TL.Dom.create('div', 'tl-timeaxis-background', this._el.container);
+
+
+		// Knight Lab Logo
+		this._el.attribution.innerHTML = "<a href='http://timeline.knightlab.com' target='_blank'><span class='tl-knightlab-logo'></span>Timeline JS</a>"
+
+		// Time Axis
+		this.timeaxis = new TL.TimeAxis(this._el.timeaxis, this.options);
+
+		// Swipable
+		this._swipable = new TL.Swipable(this._el.slider_background, this._el.slider, {
+			enable: {x:true, y:false},
+			constraint: {top: false,bottom: false,left: (this.options.width/2),right: false},
+			snap: 	false
+		});
+		this._swipable.enable();
+
+	},
+
+	_initEvents: function () {
+		// Drag Events
+		this._swipable.on('dragmove', this._onDragMove, this);
+
+		// Scroll Events
+		TL.DomEvent.addListener(this._el.container, 'mousewheel', this._onMouseScroll, this);
+		TL.DomEvent.addListener(this._el.container, 'DOMMouseScroll', this._onMouseScroll, this);
+	},
+
+	_initData: function() {
+		// Create Markers and then add them
+		this._createMarkers(this.config.events);
+
+		if (this.config.eras) {
+			this.has_eras = true;
+			this._createEras(this.config.eras);
+		}
+
+		this._drawTimeline();
+
+	}
+
+
+});
+
+
+/* **********************************************
+     Begin TL.TimeMarker.js
+********************************************** */
+
+/*	TL.TimeMarker
+
+================================================== */
+
+TL.TimeMarker = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options) {
+
+		// DOM Elements
+		this._el = {
+			container: {},
+			content_container: {},
+			media_container: {},
+			timespan: {},
+			line_left: {},
+			line_right: {},
+			content: {},
+			text: {},
+			media: {},
+		};
+
+		// Components
+		this._text			= {};
+
+		// State
+		this._state = {
+			loaded: 		false
+		};
+
+
+		// Data
+		this.data = {
+			unique_id: 			"",
+			background: 		null,
+			date: {
+				year:			0,
+				month:			0,
+				day: 			0,
+				hour: 			0,
+				minute: 		0,
+				second: 		0,
+				millisecond: 	0,
+				thumbnail: 		"",
+				format: 		""
+			},
+			text: {
+				headline: 		"",
+				text: 			""
+			},
+			media: 				null
+		};
+
+		// Options
+		this.options = {
+			duration: 			1000,
+			ease: 				TL.Ease.easeInSpline,
+			width: 				600,
+			height: 			600,
+			marker_width_min: 	100 			// Minimum Marker Width
+		};
+
+		// Actively Displaying
+		this.active = false;
+
+		// Animation Object
+		this.animator = {};
+
+		// End date
+		this.has_end_date = false;
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+		this._initLayout();
+		this._initEvents();
+
+
+	},
+
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+
+	},
+
+	hide: function() {
+
+	},
+
+	setActive: function(is_active) {
+		this.active = is_active;
+
+		if (this.active && this.has_end_date) {
+			this._el.container.className = 'tl-timemarker tl-timemarker-with-end tl-timemarker-active';
+		} else if (this.active){
+			this._el.container.className = 'tl-timemarker tl-timemarker-active';
+		} else if (this.has_end_date){
+			this._el.container.className = 'tl-timemarker tl-timemarker-with-end';
+		} else {
+			this._el.container.className = 'tl-timemarker';
+		}
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+
+	updateDisplay: function(w, h) {
+		this._updateDisplay(w, h);
+	},
+
+	loadMedia: function() {
+
+		if (this._media && !this._state.loaded) {
+			this._media.loadMedia();
+			this._state.loaded = true;
+		}
+	},
+
+	stopMedia: function() {
+		if (this._media && this._state.loaded) {
+			this._media.stopMedia();
+		}
+	},
+
+	getLeft: function() {
+		return this._el.container.style.left.slice(0, -2);
+	},
+
+	getTime: function() { // TODO does this need to know about the end date?
+		return this.data.start_date.getTime();
+	},
+
+	getEndTime: function() {
+
+		if (this.data.end_date) {
+			return this.data.end_date.getTime();
+		} else {
+			return false;
+		}
+	},
+
+	setHeight: function(h) {
+		var text_line_height = 12,
+			text_lines = 1;
+
+		this._el.content_container.style.height = h  + "px";
+		this._el.timespan_content.style.height = h + "px";
+		// Handle Line height for better display of text
+		if (h <= 30) {
+			this._el.content.className = "tl-timemarker-content tl-timemarker-content-small";
+		} else {
+			this._el.content.className = "tl-timemarker-content";
+		}
+
+		if (h <= 56) {
+			TL.DomUtil.addClass(this._el.content_container, "tl-timemarker-content-container-small");
+		} else {
+			TL.DomUtil.removeClass(this._el.content_container, "tl-timemarker-content-container-small");
+		}
+
+		// Handle number of lines visible vertically
+
+		if (TL.Browser.webkit) {
+			text_lines = Math.floor(h / (text_line_height + 2));
+			if (text_lines < 1) {
+				text_lines = 1;
+			}
+			this._text.className = "tl-headline";
+			this._text.style.webkitLineClamp = text_lines;
+		} else {
+			text_lines = h / text_line_height;
+			if (text_lines > 1) {
+				this._text.className = "tl-headline tl-headline-fadeout";
+			} else {
+				this._text.className = "tl-headline";
+			}
+			this._text.style.height = (text_lines * text_line_height)  + "px";
+		}
+
+	},
+
+	setWidth: function(w) {
+		if (this.data.end_date) {
+			this._el.container.style.width = w + "px";
+
+			if (w > this.options.marker_width_min) {
+				this._el.content_container.style.width = w + "px";
+				this._el.content_container.className = "tl-timemarker-content-container tl-timemarker-content-container-long";
+			} else {
+				this._el.content_container.style.width = this.options.marker_width_min + "px";
+				this._el.content_container.className = "tl-timemarker-content-container";
+			}
+		}
+
+	},
+
+	setClass: function(n) {
+		this._el.container.className = n;
+	},
+
+	setRowPosition: function(n, remainder) {
+		this.setPosition({top:n});
+		this._el.timespan.style.height = remainder + "px";
+
+		if (remainder < 56) {
+			//TL.DomUtil.removeClass(this._el.content_container, "tl-timemarker-content-container-small");
+		}
+	},
+
+	/*	Events
+	================================================== */
+	_onMarkerClick: function(e) {
+		this.fire("markerclick", {unique_id:this.data.unique_id});
+	},
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		//trace(this.data)
+		// Create Layout
+		this._el.container 				= TL.Dom.create("div", "tl-timemarker");
+		if (this.data.unique_id) {
+			this._el.container.id 		= this.data.unique_id + "-marker";
+		}
+
+		if (this.data.end_date) {
+			this.has_end_date = true;
+			this._el.container.className = 'tl-timemarker tl-timemarker-with-end';
+		}
+
+		this._el.timespan				= TL.Dom.create("div", "tl-timemarker-timespan", this._el.container);
+		this._el.timespan_content		= TL.Dom.create("div", "tl-timemarker-timespan-content", this._el.timespan);
+		this._el.content_container		= TL.Dom.create("div", "tl-timemarker-content-container", this._el.container);
+
+		this._el.content				= TL.Dom.create("div", "tl-timemarker-content", this._el.content_container);
+
+		this._el.line_left				= TL.Dom.create("div", "tl-timemarker-line-left", this._el.timespan);
+		this._el.line_right				= TL.Dom.create("div", "tl-timemarker-line-right", this._el.timespan);
+
+		// Thumbnail or Icon
+		if (this.data.media) {
+			this._el.media_container	= TL.Dom.create("div", "tl-timemarker-media-container", this._el.content);
+			// ugh. needs an overhaul
+			var mtd = {url: this.data.media.thumbnail};
+			var thumbnail_media_type = (this.data.media.thumbnail) ? TL.MediaType(mtd, true) : null;
+			if (thumbnail_media_type) {
+				var thumbnail_media = new thumbnail_media_type.cls(mtd);
+				thumbnail_media.on("loaded", function() {
+					this._el.media				= TL.Dom.create("img", "tl-timemarker-media", this._el.media_container);
+					this._el.media.src			= thumbnail_media.getImageURL();
+				}.bind(this));
+				thumbnail_media.loadMedia();
+			} else {
+				var media_type = TL.MediaType(this.data.media).type;
+				this._el.media				= TL.Dom.create("span", "tl-icon-" + media_type, this._el.media_container);
+
+			}
+
+		}
+
+
+		// Text
+		this._el.text					= TL.Dom.create("div", "tl-timemarker-text", this._el.content);
+		this._text						= TL.Dom.create("h2", "tl-headline", this._el.text);
+		if (this.data.text.headline && this.data.text.headline != "") {
+			this._text.innerHTML		= TL.Util.unlinkify(this.data.text.headline);
+		} else if (this.data.text.text && this.data.text.text != "") {
+			this._text.innerHTML		= TL.Util.unlinkify(this.data.text.text);
+		} else if (this.data.media.caption && this.data.media.caption != "") {
+			this._text.innerHTML		= TL.Util.unlinkify(this.data.media.caption);
+		}
+
+
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+
+	},
+
+	_initEvents: function() {
+		TL.DomEvent.addListener(this._el.container, 'click', this._onMarkerClick, this);
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, layout) {
+
+		if (width) {
+			this.options.width 					= width;
+		}
+
+		if (height) {
+			this.options.height = height;
+		}
+
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.TimeEra.js
+********************************************** */
+
+/*	TL.TimeMarker
+
+================================================== */
+
+TL.TimeEra = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options) {
+
+		// DOM Elements
+		this._el = {
+			container: {},
+			background: {},
+			content_container: {},
+			content: {},
+			text: {}
+		};
+
+		// Components
+		this._text			= {};
+
+		// State
+		this._state = {
+			loaded: 		false
+		};
+
+
+		// Data
+		this.data = {
+			unique_id: 			"",
+			date: {
+				year:			0,
+				month:			0,
+				day: 			0,
+				hour: 			0,
+				minute: 		0,
+				second: 		0,
+				millisecond: 	0,
+				thumbnail: 		"",
+				format: 		""
+			},
+			text: {
+				headline: 		"",
+				text: 			""
+			}
+		};
+
+		// Options
+		this.options = {
+			duration: 			1000,
+			ease: 				TL.Ease.easeInSpline,
+			width: 				600,
+			height: 			600,
+			marker_width_min: 	100 			// Minimum Marker Width
+		};
+
+		// Actively Displaying
+		this.active = false;
+
+		// Animation Object
+		this.animator = {};
+
+		// End date
+		this.has_end_date = false;
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+		this._initLayout();
+		this._initEvents();
+
+
+	},
+
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+
+	},
+
+	hide: function() {
+
+	},
+
+	setActive: function(is_active) {
+
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+
+	updateDisplay: function(w, h) {
+		this._updateDisplay(w, h);
+	},
+
+	getLeft: function() {
+		return this._el.container.style.left.slice(0, -2);
+	},
+
+	getTime: function() { // TODO does this need to know about the end date?
+		return this.data.start_date.getTime();
+	},
+
+	getEndTime: function() {
+
+		if (this.data.end_date) {
+			return this.data.end_date.getTime();
+		} else {
+			return false;
+		}
+	},
+
+	setHeight: function(h) {
+		var text_line_height = 12,
+			text_lines = 1;
+
+		this._el.content_container.style.height = h  + "px";
+		this._el.content.className = "tl-timeera-content";
+
+		// Handle number of lines visible vertically
+
+		if (TL.Browser.webkit) {
+			text_lines = Math.floor(h / (text_line_height + 2));
+			if (text_lines < 1) {
+				text_lines = 1;
+			}
+			this._text.className = "tl-headline";
+			this._text.style.webkitLineClamp = text_lines;
+		} else {
+			text_lines = h / text_line_height;
+			if (text_lines > 1) {
+				this._text.className = "tl-headline tl-headline-fadeout";
+			} else {
+				this._text.className = "tl-headline";
+			}
+			this._text.style.height = (text_lines * text_line_height)  + "px";
+		}
+
+	},
+
+	setWidth: function(w) {
+		if (this.data.end_date) {
+			this._el.container.style.width = w + "px";
+
+			if (w > this.options.marker_width_min) {
+				this._el.content_container.style.width = w + "px";
+				this._el.content_container.className = "tl-timeera-content-container tl-timeera-content-container-long";
+			} else {
+				this._el.content_container.style.width = this.options.marker_width_min + "px";
+				this._el.content_container.className = "tl-timeera-content-container";
+			}
+		}
+
+	},
+
+	setClass: function(n) {
+		this._el.container.className = n;
+	},
+
+	setRowPosition: function(n, remainder) {
+		this.setPosition({top:n});
+
+		if (remainder < 56) {
+			//TL.DomUtil.removeClass(this._el.content_container, "tl-timeera-content-container-small");
+		}
+	},
+
+	setColor: function(color_num) {
+		this._el.container.className = 'tl-timeera tl-timeera-color' + color_num;
+	},
+
+	/*	Events
+	================================================== */
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		//trace(this.data)
+		// Create Layout
+		this._el.container 				= TL.Dom.create("div", "tl-timeera");
+		if (this.data.unique_id) {
+			this._el.container.id 		= this.data.unique_id + "-era";
+		}
+
+		if (this.data.end_date) {
+			this.has_end_date = true;
+			this._el.container.className = 'tl-timeera tl-timeera-with-end';
+		}
+
+		this._el.content_container		= TL.Dom.create("div", "tl-timeera-content-container", this._el.container);
+
+		this._el.background 			= TL.Dom.create("div", "tl-timeera-background", this._el.content_container);
+
+		this._el.content				= TL.Dom.create("div", "tl-timeera-content", this._el.content_container);
+
+		
+
+		// Text
+		this._el.text					= TL.Dom.create("div", "tl-timeera-text", this._el.content);
+		this._text						= TL.Dom.create("h2", "tl-headline", this._el.text);
+		if (this.data.text.headline && this.data.text.headline != "") {
+			this._text.innerHTML		= TL.Util.unlinkify(this.data.text.headline);
+		} 
+
+
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+
+	},
+
+	_initEvents: function() {
+		
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, layout) {
+
+		if (width) {
+			this.options.width 					= width;
+		}
+
+		if (height) {
+			this.options.height = height;
+		}
+
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.TimeGroup.js
+********************************************** */
+
+/*	TL.TimeGroup
+	
+================================================== */
+ 
+TL.TimeGroup = TL.Class.extend({
+	
+	includes: [TL.Events, TL.DomMixins],
+	
+	_el: {},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function(data) {
+		
+		// DOM ELEMENTS
+		this._el = {
+			parent: {},
+			container: {},
+			message: {}
+		};
+		
+		//Options
+		this.options = {
+			width: 					600,
+			height: 				600
+		};
+		
+		// Data
+		this.data = {
+			label: "",
+			rows: 1
+		};
+		
+		
+		this._el.container = TL.Dom.create("div", "tl-timegroup"); 
+		
+		// Merge Data
+		TL.Util.mergeData(this.data, data);
+		
+		// Animation
+		this.animator = {};
+		
+		
+		this._initLayout();
+		this._initEvents();
+	},
+	
+	/*	Public
+	================================================== */
+	
+	
+	
+	/*	Update Display
+	================================================== */
+	updateDisplay: function(w, h) {
+		
+	},
+	
+	setRowPosition: function(n, h) {
+		// trace(n);
+		// trace(this._el.container)
+		this.options.height = h * this.data.rows;
+		this.setPosition({top:n});
+		this._el.container.style.height = this.options.height + "px";
+		
+	},
+	
+	setAlternateRowColor: function(alternate, hide) {
+		var class_name = "tl-timegroup";
+		if (alternate) {
+			class_name += " tl-timegroup-alternate";
+		}
+		if (hide) {
+			class_name += " tl-timegroup-hidden";
+		}
+		this._el.container.className = class_name;
+	},
+	
+	/*	Events
+	================================================== */
+
+	
+	_onMouseClick: function() {
+		this.fire("clicked", this.options);
+	},
+
+	
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		
+		// Create Layout
+		this._el.message = TL.Dom.create("div", "tl-timegroup-message", this._el.container);
+		this._el.message.innerHTML = this.data.label;
+		
+		
+	},
+	
+	_initEvents: function () {
+		TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
+	},
+	
+	// Update Display
+	_updateDisplay: function(width, height, animate) {
+		
+	}
+	
+});
+
+/* **********************************************
+     Begin TL.TimeScale.js
+********************************************** */
+
+/*  TL.TimeScale
+    Strategies for laying out the timenav
+    make a new one if the slides change
+
+    TODOS: deal with clustering
+================================================== */
+TL.TimeScale = TL.Class.extend({
+
+    initialize: function (timeline_config, options) {
+
+        var slides = timeline_config.events;
+        this._scale = timeline_config.scale;
+
+        options = TL.Util.mergeData({ // establish defaults
+            display_width: 500,
+            screen_multiplier: 3,
+            max_rows: null
+        }, options);
+
+        this._display_width = options.display_width;
+        this._screen_multiplier = options.screen_multiplier;
+        this._pixel_width = this._screen_multiplier * this._display_width;
+
+        this._group_labels = undefined;
+        this._positions = [];
+        this._pixels_per_milli = 0;
+
+        this._earliest = timeline_config.getEarliestDate().getTime();
+        this._latest = timeline_config.getLatestDate().getTime();
+        this._span_in_millis = this._latest - this._earliest;
+        if (this._span_in_millis <= 0) {
+            this._span_in_millis = this._computeDefaultSpan(timeline_config);
+        }
+        this._average = (this._span_in_millis)/slides.length;
+
+        this._pixels_per_milli = this.getPixelWidth() / this._span_in_millis;
+
+        this._axis_helper = TL.AxisHelper.getBestHelper(this);
+
+        this._scaled_padding = (1/this.getPixelsPerTick()) * (this._display_width/2)
+        this._computePositionInfo(slides, options.max_rows);
+    },
+
+    _computeDefaultSpan: function(timeline_config) {
+        // this gets called when all events are at the same instant,
+        // or maybe when the span_in_millis is > 0 but still below a desired threshold
+        // TODO: does this need smarts about eras?
+        if (timeline_config.scale == 'human') {
+            var formats = {}
+            for (var i = 0; i < timeline_config.events.length; i++) {
+                var fmt = timeline_config.events[i].start_date.findBestFormat();
+                formats[fmt] = (formats[fmt]) ? formats[fmt] + 1 : 1;
+            };
+
+            for (var i = TL.Date.SCALES.length - 1; i >= 0; i--) {
+                if (formats.hasOwnProperty(TL.Date.SCALES[i][0])) {
+                    var scale = TL.Date.SCALES[TL.Date.SCALES.length - 1]; // default
+                    if (TL.Date.SCALES[i+1]) {
+                        scale = TL.Date.SCALES[i+1]; // one larger than the largest in our data
+                    }
+                    return scale[1]
+                }
+            };
+            return 365 * 24 * 60 * 60 * 1000; // default to a year?
+        }
+
+        return 200000; // what is the right handling for cosmo dates?
+    },
+    getGroupLabels: function() { /*
+        return an array of objects, one per group, in the order (top to bottom) that the groups are expected to appear. Each object will have two properties:
+            * label (the string as specified in one or more 'group' properties of events in the configuration)
+            * rows (the number of rows occupied by events associated with the label. )
+        */
+        return (this._group_labels || []);
+    },
+
+    getScale: function() {
+        return this._scale;
+    },
+
+    getNumberOfRows: function() {
+        return this._number_of_rows
+    },
+
+    getPixelWidth: function() {
+        return this._pixel_width;
+    },
+
+    getPosition: function(time_in_millis) {
+        // be careful using millis, as they won't scale to cosmological time.
+        // however, we're moving to make the arg to this whatever value
+        // comes from TL.Date.getTime() which could be made smart about that --
+        // so it may just be about the naming.
+        return ( time_in_millis - this._earliest ) * this._pixels_per_milli
+    },
+
+    getPositionInfo: function(idx) {
+        return this._positions[idx];
+    },
+
+    getPixelsPerTick: function() {
+        return this._axis_helper.getPixelsPerTick(this._pixels_per_milli);
+    },
+
+    getTicks: function() {
+        return {
+            major: this._axis_helper.getMajorTicks(this),
+            minor: this._axis_helper.getMinorTicks(this) }
+    },
+
+    getDateFromTime: function(t) {
+        if(this._scale == 'human') {
+            return new TL.Date(t);
+        } else if(this._scale == 'cosmological') {
+            return new TL.BigDate(new TL.BigYear(t));
+        }
+        throw new TL.Error("time_scale_scale_err", this._scale);
+    },
+
+    getMajorScale: function() {
+        return this._axis_helper.major.name;
+    },
+
+    getMinorScale: function() {
+        return this._axis_helper.minor.name;
+    },
+
+    _assessGroups: function(slides) {
+        var groups = [];
+        var empty_group = false;
+        for (var i = 0; i < slides.length; i++) {
+            if(slides[i].group) {
+                if(groups.indexOf(slides[i].group) < 0) {
+                    groups.push(slides[i].group);
+                } else {
+                    empty_group = true;
+                }
+            }
+        };
+        if (groups.length && empty_group) {
+            groups.push('');
+        }
+        return groups;
+    },
+
+    /*  Compute the marker row positions, minimizing the number of
+        overlaps.
+
+        @positions = list of objects from this._positions
+        @rows_left = number of rows available (assume > 0)
+    */
+    _computeRowInfo: function(positions, rows_left) {
+        var lasts_in_row = [];
+        var n_overlaps = 0;
+
+        for (var i = 0; i < positions.length; i++) {
+            var pos_info = positions[i];
+            var overlaps = [];
+
+            // See if we can add item to an existing row without
+            // overlapping the previous item in that row
+            delete pos_info.row;
+
+            for (var j = 0; j < lasts_in_row.length; j++) {
+                overlaps.push(lasts_in_row[j].end - pos_info.start);
+                if(overlaps[j] <= 0) {
+                    pos_info.row = j;
+                    lasts_in_row[j] = pos_info;
+                    break;
+                }
+            }
+
+            // If we couldn't add to an existing row without overlap...
+            if (typeof(pos_info.row) == 'undefined') {
+                if (rows_left === null) {
+                    // Make a new row
+                    pos_info.row = lasts_in_row.length;
+                    lasts_in_row.push(pos_info);
+                } else if (rows_left > 0) {
+                    // Make a new row
+                    pos_info.row = lasts_in_row.length;
+                    lasts_in_row.push(pos_info);
+                    rows_left--;
+                } else {
+                    // Add to existing row with minimum overlap.
+                    var min_overlap = Math.min.apply(null, overlaps);
+                    var idx = overlaps.indexOf(min_overlap);
+                    pos_info.row = idx;
+                    if (pos_info.end > lasts_in_row[idx].end) {
+                        lasts_in_row[idx] = pos_info;
+                    }
+                    n_overlaps++;
+                }
+            }
+        }
+
+        return {n_rows: lasts_in_row.length, n_overlaps: n_overlaps};
+    },
+
+    /*  Compute marker positions.  If using groups, this._number_of_rows
+        will never be less than the number of groups.
+
+        @max_rows = total number of available rows
+        @default_marker_width should be in pixels
+    */
+    _computePositionInfo: function(slides, max_rows, default_marker_width) {
+        default_marker_width = default_marker_width || 100;
+
+        var groups = [];
+        var empty_group = false;
+
+        // Set start/end/width; enumerate groups
+        for (var i = 0; i < slides.length; i++) {
+            var pos_info = {
+                start: this.getPosition(slides[i].start_date.getTime())
+            };
+            this._positions.push(pos_info);
+
+            if (typeof(slides[i].end_date) != 'undefined') {
+                var end_pos = this.getPosition(slides[i].end_date.getTime());
+                pos_info.width = end_pos - pos_info.start;
+                if (pos_info.width > default_marker_width) {
+                    pos_info.end = pos_info.start + pos_info.width;
+                } else {
+                    pos_info.end = pos_info.start + default_marker_width;
+                }
+            } else {
+                pos_info.width = default_marker_width;
+                pos_info.end = pos_info.start + default_marker_width;
+            }
+
+            if(slides[i].group) {
+                if(groups.indexOf(slides[i].group) < 0) {
+                    groups.push(slides[i].group);
+                }
+            } else {
+                empty_group = true;
+            }
+        }
+
+        if(!(groups.length)) {
+            var result = this._computeRowInfo(this._positions, max_rows);
+            this._number_of_rows = result.n_rows;
+        } else {
+            if(empty_group) {
+                groups.push("");
+            }
+
+            // Init group info
+            var group_info = [];
+
+            for(var i = 0; i < groups.length; i++) {
+                group_info[i] = {
+                    label: groups[i],
+                    idx: i,
+                    positions: [],
+                    n_rows: 1,      // default
+                    n_overlaps: 0
+                };
+            }
+
+            for(var i = 0; i < this._positions.length; i++) {
+                var pos_info = this._positions[i];
+
+                pos_info.group = groups.indexOf(slides[i].group || "");
+                pos_info.row = 0;
+
+                var gi = group_info[pos_info.group];
+                for(var j = gi.positions.length - 1; j >= 0; j--) {
+                    if(gi.positions[j].end > pos_info.start) {
+                        gi.n_overlaps++;
+                    }
+                }
+
+                gi.positions.push(pos_info);
+            }
+
+            var n_rows = groups.length; // start with 1 row per group
+
+            while(true) {
+                // Count free rows available
+                var rows_left = Math.max(0, max_rows - n_rows);
+                if(!rows_left) {
+                    break;  // no free rows, nothing to do
+                }
+
+                // Sort by # overlaps, idx
+               group_info.sort(function(a, b) {
+                    if(a.n_overlaps > b.n_overlaps) {
+                        return -1;
+                    } else if(a.n_overlaps < b.n_overlaps) {
+                        return 1;
+                    }
+                    return a.idx - b.idx;
+                });
+                if(!group_info[0].n_overlaps) {
+                    break; // no overlaps, nothing to do
+                }
+
+                // Distribute free rows among groups with overlaps
+                var n_rows = 0;
+                for(var i = 0; i < group_info.length; i++) {
+                    var gi = group_info[i];
+
+                    if(gi.n_overlaps && rows_left) {
+                        var res = this._computeRowInfo(gi.positions,  gi.n_rows + 1);
+                        gi.n_rows = res.n_rows;     // update group info
+                        gi.n_overlaps = res.n_overlaps;
+                        rows_left--;                // update rows left
+                    }
+
+                    n_rows += gi.n_rows;            // update rows used
+                }
+            }
+
+            // Set number of rows
+            this._number_of_rows = n_rows;
+
+            // Set group labels; offset row positions
+            this._group_labels = [];
+
+            group_info.sort(function(a, b) {return a.idx - b.idx; });
+
+            for(var i = 0, row_offset = 0; i < group_info.length; i++) {
+                this._group_labels.push({
+                    label: group_info[i].label,
+                    rows: group_info[i].n_rows
+                });
+
+                for(var j = 0; j < group_info[i].positions.length; j++) {
+                    var pos_info = group_info[i].positions[j];
+                    pos_info.row += row_offset;
+                }
+
+                row_offset += group_info[i].n_rows;
+            }
+        }
+
+    }
+});
+
+
+/* **********************************************
+     Begin TL.TimeAxis.js
+********************************************** */
+
+/*	TL.TimeAxis
+	Display element for showing timescale ticks
+================================================== */
+
+TL.TimeAxis = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(elem, options) {
+		// DOM Elements
+		this._el = {
+			container: {},
+			content_container: {},
+			major: {},
+			minor: {},
+		};
+
+		// Components
+		this._text			= {};
+
+		// State
+		this._state = {
+			loaded: 		false
+		};
+
+
+		// Data
+		this.data = {};
+
+		// Options
+		this.options = {
+			duration: 				1000,
+			ease: 					TL.Ease.easeInSpline,
+			width: 					600,
+			height: 				600
+		};
+
+		// Actively Displaying
+		this.active = false;
+
+		// Animation Object
+		this.animator = {};
+
+		// Axis Helper
+		this.axis_helper = {};
+
+		// Minor tick dom element array
+		this.minor_ticks = [];
+
+		// Minor tick dom element array
+		this.major_ticks = [];
+
+		// Date Format Lookup, map TL.Date.SCALES names to...
+		this.dateformat_lookup = {
+	        millisecond: 'time_milliseconds',     // ...TL.Language.<code>.dateformats
+	        second: 'time_short',
+	        minute: 'time_no_seconds_short',
+	        hour: 'time_no_minutes_short',
+	        day: 'full_short',
+	        month: 'month_short',
+	        year: 'year',
+	        decade: 'year',
+	        century: 'year',
+	        millennium: 'year',
+	        age: 'compact',  // ...TL.Language.<code>.bigdateformats
+	        epoch: 'compact',
+	        era: 'compact',
+	        eon: 'compact',
+	        eon2: 'compact'
+	    }
+
+		// Main element
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+		} else {
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+
+		this._initLayout();
+		this._initEvents();
+
+	},
+
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+
+	},
+
+	hide: function() {
+
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+
+	updateDisplay: function(w, h) {
+		this._updateDisplay(w, h);
+	},
+
+	getLeft: function() {
+		return this._el.container.style.left.slice(0, -2);
+	},
+
+	drawTicks: function(timescale, optimal_tick_width) {
+
+		var ticks = timescale.getTicks();
+
+		var controls = {
+			minor: {
+				el: this._el.minor,
+				dateformat: this.dateformat_lookup[ticks['minor'].name],
+				ts_ticks: ticks['minor'].ticks,
+				tick_elements: this.minor_ticks
+			},
+			major: {
+				el: this._el.major,
+				dateformat: this.dateformat_lookup[ticks['major'].name],
+				ts_ticks: ticks['major'].ticks,
+				tick_elements: this.major_ticks
+			}
+		}
+		// FADE OUT
+		this._el.major.className = "tl-timeaxis-major";
+		this._el.minor.className = "tl-timeaxis-minor";
+		this._el.major.style.opacity = 0;
+		this._el.minor.style.opacity = 0;
+
+		// CREATE MAJOR TICKS
+		this.major_ticks = this._createTickElements(
+			ticks['major'].ticks,
+			this._el.major,
+			this.dateformat_lookup[ticks['major'].name]
+		);
+
+		// CREATE MINOR TICKS
+		this.minor_ticks = this._createTickElements(
+			ticks['minor'].ticks,
+			this._el.minor,
+			this.dateformat_lookup[ticks['minor'].name],
+			ticks['major'].ticks
+		);
+
+		this.positionTicks(timescale, optimal_tick_width, true);
+
+		// FADE IN
+		this._el.major.className = "tl-timeaxis-major tl-animate-opacity tl-timeaxis-animate-opacity";
+		this._el.minor.className = "tl-timeaxis-minor tl-animate-opacity tl-timeaxis-animate-opacity";
+		this._el.major.style.opacity = 1;
+		this._el.minor.style.opacity = 1;
+	},
+
+	_createTickElements: function(ts_ticks,tick_element,dateformat,ticks_to_skip) {
+		tick_element.innerHTML = "";
+		var skip_times = {};
+
+		var yearZero = new Date(-1,13,-30);
+		skip_times[yearZero.getTime()] = true;
+
+		if (ticks_to_skip){
+			for (var i = 0; i < ticks_to_skip.length; i++) {
+				skip_times[ticks_to_skip[i].getTime()] = true;
+			}
+		}
+
+		var tick_elements = []
+		for (var i = 0; i < ts_ticks.length; i++) {
+			var ts_tick = ts_ticks[i];
+			if (!(ts_tick.getTime() in skip_times)) {
+				var tick = TL.Dom.create("div", "tl-timeaxis-tick", tick_element),
+					tick_text 	= TL.Dom.create("span", "tl-timeaxis-tick-text tl-animate-opacity", tick);
+
+				tick_text.innerHTML = ts_tick.getDisplayDate(this.getLanguage(), dateformat);
+
+				tick_elements.push({
+					tick:tick,
+					tick_text:tick_text,
+					display_date:ts_tick.getDisplayDate(this.getLanguage(), dateformat),
+					date:ts_tick
+				});
+			}
+		}
+		return tick_elements;
+	},
+
+	positionTicks: function(timescale, optimal_tick_width, no_animate) {
+
+		// Handle Animation
+		if (no_animate) {
+			this._el.major.className = "tl-timeaxis-major";
+			this._el.minor.className = "tl-timeaxis-minor";
+		} else {
+			this._el.major.className = "tl-timeaxis-major tl-timeaxis-animate";
+			this._el.minor.className = "tl-timeaxis-minor tl-timeaxis-animate";
+		}
+
+		this._positionTickArray(this.major_ticks, timescale, optimal_tick_width);
+		this._positionTickArray(this.minor_ticks, timescale, optimal_tick_width);
+
+	},
+
+	_positionTickArray: function(tick_array, timescale, optimal_tick_width) {
+		// Poition Ticks & Handle density of ticks
+		if (tick_array[1] && tick_array[0]) {
+			var distance = ( timescale.getPosition(tick_array[1].date.getMillisecond()) - timescale.getPosition(tick_array[0].date.getMillisecond()) ),
+				fraction_of_array = 1;
+
+
+			if (distance < optimal_tick_width) {
+				fraction_of_array = Math.round(optimal_tick_width/timescale.getPixelsPerTick());
+			}
+
+			var show = 1;
+
+			for (var i = 0; i < tick_array.length; i++) {
+
+				var tick = tick_array[i];
+
+				// Poition Ticks
+				tick.tick.style.left = timescale.getPosition(tick.date.getMillisecond()) + "px";
+				tick.tick_text.innerHTML = tick.display_date;
+
+				// Handle density of ticks
+				if (fraction_of_array > 1) {
+					if (show >= fraction_of_array) {
+						show = 1;
+						tick.tick_text.style.opacity = 1;
+						tick.tick.className = "tl-timeaxis-tick";
+					} else {
+						show++;
+						tick.tick_text.style.opacity = 0;
+						tick.tick.className = "tl-timeaxis-tick tl-timeaxis-tick-hidden";
+					}
+				} else {
+					tick.tick_text.style.opacity = 1;
+					tick.tick.className = "tl-timeaxis-tick";
+				}
+
+			};
+		}
+	},
+
+	/*	Events
+	================================================== */
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		this._el.content_container		= TL.Dom.create("div", "tl-timeaxis-content-container", this._el.container);
+		this._el.major					= TL.Dom.create("div", "tl-timeaxis-major", this._el.content_container);
+		this._el.minor					= TL.Dom.create("div", "tl-timeaxis-minor", this._el.content_container);
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+	},
+
+	_initEvents: function() {
+
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, layout) {
+
+		if (width) {
+			this.options.width 					= width;
+		}
+
+		if (height) {
+			this.options.height = height;
+		}
+
+	}
+
+});
+
+
+/* **********************************************
+     Begin TL.AxisHelper.js
+********************************************** */
+
+/*  TL.AxisHelper
+    Strategies for laying out the timenav
+    markers and time axis
+    Intended as a private class -- probably only known to TimeScale
+================================================== */
+TL.AxisHelper = TL.Class.extend({
+    initialize: function (options) {
+		if (options) {
+            this.scale = options.scale;
+	        this.minor = options.minor;
+	        this.major = options.major;
+		} else {
+            throw new TL.Error("axis_helper_no_options_err")
+        }
+       
+    },
+    
+    getPixelsPerTick: function(pixels_per_milli) {
+        return pixels_per_milli * this.minor.factor;
+    },
+
+    getMajorTicks: function(timescale) {
+		return this._getTicks(timescale, this.major)
+    },
+
+    getMinorTicks: function(timescale) {
+        return this._getTicks(timescale, this.minor)
+    },
+
+    _getTicks: function(timescale, option) {
+
+        var factor_scale = timescale._scaled_padding * option.factor;
+        var first_tick_time = timescale._earliest - factor_scale;
+        var last_tick_time = timescale._latest + factor_scale;
+        var ticks = []
+        for (var i = first_tick_time; i < last_tick_time; i += option.factor) {
+            ticks.push(timescale.getDateFromTime(i).floor(option.name));
+        }
+
+        return {
+            name: option.name,
+            ticks: ticks
+        }
+
+    }
+
+});
+
+(function(cls){ // add some class-level behavior
+
+    var HELPERS = {};
+    
+    var setHelpers = function(scale_type, scales) {
+        HELPERS[scale_type] = [];
+        
+        for (var idx = 0; idx < scales.length - 1; idx++) {
+            var minor = scales[idx];
+            var major = scales[idx+1];
+            HELPERS[scale_type].push(new cls({
+                scale: minor[3],
+                minor: { name: minor[0], factor: minor[1]},
+                major: { name: major[0], factor: major[1]}
+            }));
+        }
+    };
+    
+    setHelpers('human', TL.Date.SCALES);
+    setHelpers('cosmological', TL.BigDate.SCALES);
+    
+    cls.HELPERS = HELPERS;
+    
+    cls.getBestHelper = function(ts,optimal_tick_width) {
+        if (typeof(optimal_tick_width) != 'number' ) {
+            optimal_tick_width = 100;
+        }
+        var ts_scale = ts.getScale();
+        var helpers = HELPERS[ts_scale];
+        
+        if (!helpers) {
+            throw new TL.Error("axis_helper_scale_err", ts_scale);
+        }
+        
+        var prev = null;
+        for (var idx = 0; idx < helpers.length; idx++) {
+            var curr = helpers[idx];
+            var pixels_per_tick = curr.getPixelsPerTick(ts._pixels_per_milli);
+            if (pixels_per_tick > optimal_tick_width)  {
+                if (prev == null) return curr;
+                var curr_dist = Math.abs(optimal_tick_width - pixels_per_tick);
+                var prev_dist = Math.abs(optimal_tick_width - pixels_per_tick);
+                if (curr_dist < prev_dist) {
+                    return curr;
+                } else {
+                    return prev;
+                }
+            }
+            prev = curr;
+        }
+        return helpers[helpers.length - 1]; // last resort           
+    }
+})(TL.AxisHelper);
+
+
+/* **********************************************
+     Begin TL.Timeline.js
+********************************************** */
+
+/*  TimelineJS
+Designed and built by Zach Wise at KnightLab
+
+This Source Code Form is subject to the terms of the Mozilla Public
+License, v. 2.0. If a copy of the MPL was not distributed with this
+file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
+================================================== */
+/*
+TODO
+
+*/
+
+/*  Required Files
+CodeKit Import
+https://incident57.com/codekit/
+================================================== */
+
+// CORE
+	// @codekit-prepend "core/TL.js";
+	// @codekit-prepend "core/TL.Error.js";
+	// @codekit-prepend "core/TL.Util.js";
+	// @codekit-prepend "data/TL.Data.js";
+	// @codekit-prepend "core/TL.Class.js";
+	// @codekit-prepend "core/TL.Events.js";
+	// @codekit-prepend "core/TL.Browser.js";
+	// @codekit-prepend "core/TL.Load.js";
+	// @codekit-prepend "core/TL.TimelineConfig.js";
+	// @codekit-prepend "core/TL.ConfigFactory.js";
+
+
+// LANGUAGE
+	// @codekit-prepend "language/TL.Language.js";
+	// @codekit-prepend "language/TL.I18NMixins.js";
+
+// ANIMATION
+	// @codekit-prepend "animation/TL.Ease.js";
+	// @codekit-prepend "animation/TL.Animate.js";
+
+// DOM
+	// @codekit-prepend "dom/TL.Point.js";
+	// @codekit-prepend "dom/TL.DomMixins.js";
+	// @codekit-prepend "dom/TL.Dom.js";
+	// @codekit-prepend "dom/TL.DomUtil.js";
+	// @codekit-prepend "dom/TL.DomEvent.js";
+	// @codekit-prepend "dom/TL.StyleSheet.js";
+
+// Date
+	// @codekit-prepend "date/TL.Date.js";
+	// @codekit-prepend "date/TL.DateUtil.js";
+
+// UI
+	// @codekit-prepend "ui/TL.Draggable.js";
+	// @codekit-prepend "ui/TL.Swipable.js";
+	// @codekit-prepend "ui/TL.MenuBar.js";
+	// @codekit-prepend "ui/TL.Message.js";
+
+// MEDIA
+	// @codekit-prepend "media/TL.MediaType.js";
+	// @codekit-prepend "media/TL.Media.js";
+
+// MEDIA TYPES
+	// @codekit-prepend "media/types/TL.Media.Blockquote.js";
+	// @codekit-prepend "media/types/TL.Media.DailyMotion.js";
+	// @codekit-prepend "media/types/TL.Media.DocumentCloud.js";
+	// @codekit-prepend "media/types/TL.Media.Flickr.js";
+	// @codekit-prepend "media/types/TL.Media.GoogleDoc.js";
+	// @codekit-prepend "media/types/TL.Media.GooglePlus.js";
+	// @codekit-prepend "media/types/TL.Media.IFrame.js";
+	// @codekit-prepend "media/types/TL.Media.Image.js";
+	// @codekit-prepend "media/types/TL.Media.Imgur.js";
+	// @codekit-prepend "media/types/TL.Media.Instagram.js";
+	// @codekit-prepend "media/types/TL.Media.GoogleMap.js";
+	// @codekit-prepend "media/types/TL.Media.PDF.js";
+	// @codekit-prepend "media/types/TL.Media.Profile.js";
+	// @codekit-prepend "media/types/TL.Media.Slider.js";
+	// @codekit-prepend "media/types/TL.Media.SoundCloud.js";
+	// @codekit-prepend "media/types/TL.Media.Spotify.js";
+	// @codekit-prepend "media/types/TL.Media.Storify.js";
+	// @codekit-prepend "media/types/TL.Media.Text.js";
+	// @codekit-prepend "media/types/TL.Media.Twitter.js";
+	// @codekit-prepend "media/types/TL.Media.TwitterEmbed.js";
+	// @codekit-prepend "media/types/TL.Media.Vimeo.js";
+	// @codekit-prepend "media/types/TL.Media.Vine.js";
+	// @codekit-prepend "media/types/TL.Media.Website.js";
+	// @codekit-prepend "media/types/TL.Media.Wikipedia.js";
+	// @codekit-prepend "media/types/TL.Media.YouTube.js";
+
+// STORYSLIDER
+	// @codekit-prepend "slider/TL.Slide.js";
+	// @codekit-prepend "slider/TL.SlideNav.js";
+	// @codekit-prepend "slider/TL.StorySlider.js";
+
+// TIMENAV
+	// @codekit-prepend "timenav/TL.TimeNav.js";
+	// @codekit-prepend "timenav/TL.TimeMarker.js";
+	// @codekit-prepend "timenav/TL.TimeEra.js";
+	// @codekit-prepend "timenav/TL.TimeGroup.js";
+	// @codekit-prepend "timenav/TL.TimeScale.js";
+	// @codekit-prepend "timenav/TL.TimeAxis.js";
+	// @codekit-prepend "timenav/TL.AxisHelper.js";
+
+
+TL.Timeline = TL.Class.extend({
+	includes: [TL.Events, TL.I18NMixins],
+
+	/*  Private Methods
+	================================================== */
+	initialize: function (elem, data, options) {
+		var self = this;
+		if (!options) { options = {}};
+		// Version
+		this.version = "3.2.6";
+
+		// Ready
+		this.ready = false;
+
+		// DOM ELEMENTS
+		this._el = {
+			container: {},
+			storyslider: {},
+			timenav: {},
+			menubar: {}
+		};
+
+		// Determine Container Element
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+		} else {
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		// Slider
+		this._storyslider = {};
+
+		// Style Sheet
+		this._style_sheet = new TL.StyleSheet();
+
+		// TimeNav
+		this._timenav = {};
+
+		// Menu Bar
+		this._menubar = {};
+
+		// Loaded State
+		this._loaded = {storyslider:false, timenav:false};
+
+		// Data Object
+		this.config = null;
+
+		this.options = {
+			script_path: 				"",
+			height: 					this._el.container.offsetHeight,
+			width: 						this._el.container.offsetWidth,
+			debug: 						false,
+			is_embed: 					false,
+			is_full_embed: 				false,
+			hash_bookmark: false,
+			default_bg_color: 			{r:255, g:255, b:255},
+			scale_factor: 				2,						// How many screen widths wide should the timeline be
+			layout: 					"landscape",			// portrait or landscape
+			timenav_position: 			"bottom",				// timeline on top or bottom
+			optimal_tick_width: 		60,						// optimal distance (in pixels) between ticks on axis
+			base_class: 				"tl-timeline", 		// removing tl-timeline will break all default stylesheets...
+			timenav_height: 			null,
+			timenav_height_percentage: 	25,						// Overrides timenav height as a percentage of the screen
+			timenav_mobile_height_percentage: 40, 				// timenav height as a percentage on mobile devices
+			timenav_height_min: 		175,					// Minimum timenav height
+			marker_height_min: 			30,						// Minimum Marker Height
+			marker_width_min: 			100,					// Minimum Marker Width
+			marker_padding: 			5,						// Top Bottom Marker Padding
+			start_at_slide: 			0,
+			start_at_end: 				false,
+			menubar_height: 			0,
+			skinny_size: 				650,
+			medium_size: 				800,
+			relative_date: 				false,					// Use momentjs to show a relative date from the slide.text.date.created_time field
+			use_bc: 					false,					// Use declared suffix on dates earlier than 0
+			// animation
+			duration: 					1000,
+			ease: 						TL.Ease.easeInOutQuint,
+			// interaction
+			dragging: 					true,
+			trackResize: 				true,
+			map_type: 					"stamen:toner-lite",
+			slide_padding_lr: 			100,					// padding on slide of slide
+			slide_default_fade: 		"0%",					// landscape fade
+			zoom_sequence: 				[0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89], // Array of Fibonacci numbers for TimeNav zoom levels
+			language: 					"en",
+			ga_property_id: 			null,
+			track_events: 				['back_to_start','nav_next','nav_previous','zoom_in','zoom_out' ]
+		};
+
+		// Animation Objects
+		this.animator_timenav = null;
+		this.animator_storyslider = null;
+		this.animator_menubar = null;
+
+		// Add message to DOM
+		this.message = new TL.Message({}, {message_class: "tl-message-full"}, this._el.container);
+
+		// Merge Options
+		if (typeof(options.default_bg_color) == "string") {
+			var parsed = TL.Util.hexToRgb(options.default_bg_color); // will clear it out if its invalid
+			if (parsed) {
+				options.default_bg_color = parsed;
+			} else {
+				delete options.default_bg_color
+				trace("Invalid default background color. Ignoring.");
+			}
+		}
+		TL.Util.mergeData(this.options, options);
+
+		window.addEventListener("resize", function(e){
+			self.updateDisplay();
+		});
+
+		// Set Debug Mode
+		TL.debug = this.options.debug;
+
+		// Apply base class to container
+		TL.DomUtil.addClass(this._el.container, 'tl-timeline');
+
+		if (this.options.is_embed) {
+			TL.DomUtil.addClass(this._el.container, 'tl-timeline-embed');
+		}
+
+		if (this.options.is_full_embed) {
+			TL.DomUtil.addClass(this._el.container, 'tl-timeline-full-embed');
+		}
+
+		// Use Relative Date Calculations
+		// NOT YET IMPLEMENTED
+		if(this.options.relative_date) {
+			if (typeof(moment) !== 'undefined') {
+				self._loadLanguage(data);
+			} else {
+				TL.Load.js(this.options.script_path + "/library/moment.js", function() {
+					self._loadLanguage(data);
+					trace("LOAD MOMENTJS")
+				});
+			}
+		} else {
+			self._loadLanguage(data);
+		}
+
+	},
+	_translateError: function(e) {
+	    if(e.hasOwnProperty('stack')) {
+	        trace(e.stack);
+	    }
+	    if(e.message_key) {
+	        return this._(e.message_key) + (e.detail ? ' [' + e.detail +']' : '')
+	    }
+	    return e;
+	},
+
+	/*  Load Language
+	================================================== */
+	_loadLanguage: function(data) {
+		try {
+		    this.options.language = new TL.Language(this.options);
+
+		    this._initData(data);
+		} catch(e) {
+		    this.showMessage(this._translateError(e));
+		}
+	},
+
+
+	/*  Navigation
+	================================================== */
+
+	// Goto slide with id
+	goToId: function(id) {
+		if (this.current_id != id) {
+			this.current_id = id;
+			this._timenav.goToId(this.current_id);
+			this._storyslider.goToId(this.current_id, false, true);
+			this.fire("change", {unique_id: this.current_id}, this);
+		}
+	},
+
+	// Goto slide n
+	goTo: function(n) {
+		if(this.config.title) {
+			if(n == 0) {
+				this.goToId(this.config.title.unique_id);
+			} else {
+				this.goToId(this.config.events[n - 1].unique_id);
+			}
+		} else {
+			this.goToId(this.config.events[n].unique_id);
+		}
+	},
+
+	// Goto first slide
+	goToStart: function() {
+		this.goTo(0);
+	},
+
+	// Goto last slide
+	goToEnd: function() {
+		var _n = this.config.events.length - 1;
+		this.goTo(this.config.title ? _n + 1 : _n);
+	},
+
+	// Goto previous slide
+	goToPrev: function() {
+		this.goTo(this._getSlideIndex(this.current_id) - 1);
+	},
+
+	// Goto next slide
+	goToNext: function() {
+		this.goTo(this._getSlideIndex(this.current_id) + 1);
+	},
+
+	/* Event maniupluation
+	================================================== */
+
+	// Add an event
+	add: function(data) {
+		var unique_id = this.config.addEvent(data);
+
+		var n = this._getEventIndex(unique_id);
+		var d = this.config.events[n];
+
+		this._storyslider.createSlide(d, this.config.title ? n+1 : n);
+		this._storyslider._updateDrawSlides();
+
+		this._timenav.createMarker(d, n);
+		this._timenav._updateDrawTimeline(false);
+
+		this.fire("added", {unique_id: unique_id});
+	},
+
+	// Remove an event
+	remove: function(n) {
+		if(n >= 0  && n < this.config.events.length) {
+			// If removing the current, nav to new one first
+			if(this.config.events[n].unique_id == this.current_id) {
+				if(n < this.config.events.length - 1) {
+					this.goTo(n + 1);
+				} else {
+					this.goTo(n - 1);
+				}
+			}
+
+			var event = this.config.events.splice(n, 1);
+			delete this.config.event_dict[event[0].unique_id];
+			this._storyslider.destroySlide(this.config.title ? n+1 : n);
+			this._storyslider._updateDrawSlides();
+
+			this._timenav.destroyMarker(n);
+			this._timenav._updateDrawTimeline(false);
+
+			this.fire("removed", {unique_id: event[0].unique_id});
+		}
+	},
+
+	removeId: function(id) {
+		this.remove(this._getEventIndex(id));
+	},
+
+	/* Get slide data
+	================================================== */
+
+	getData: function(n) {
+		if(this.config.title) {
+			if(n == 0) {
+				return this.config.title;
+			} else if(n > 0 && n <= this.config.events.length) {
+				return this.config.events[n - 1];
+			}
+		} else if(n >= 0 && n < this.config.events.length) {
+			return this.config.events[n];
+		}
+		return null;
+	},
+
+	getDataById: function(id) {
+		return this.getData(this._getSlideIndex(id));
+	},
+
+	/* Get slide object
+	================================================== */
+
+	getSlide: function(n) {
+		if(n >= 0 && n < this._storyslider._slides.length) {
+			return this._storyslider._slides[n];
+		}
+		return null;
+	},
+
+	getSlideById: function(id) {
+		return this.getSlide(this._getSlideIndex(id));
+	},
+
+	getCurrentSlide: function() {
+		return this.getSlideById(this.current_id);
+	},
+
+
+	/*  Display
+	================================================== */
+	updateDisplay: function() {
+		if (this.ready) {
+			this._updateDisplay();
+		}
+	},
+
+  	/*
+  		Compute the height of the navigation section of the Timeline, taking into account
+  		the possibility of an explicit height or height percentage, but also honoring the
+  		`timenav_height_min` option value. If `timenav_height` is specified it takes precedence over `timenav_height_percentage` but in either case, if the resultant pixel height is less than `options.timenav_height_min` then the value of `options.timenav_height_min` will be returned. (A minor adjustment is made to the returned value to account for marker padding.)
+
+  		Arguments:
+  		@timenav_height (optional): an integer value for the desired height in pixels
+  		@timenav_height_percentage (optional): an integer between 1 and 100
+
+  	 */
+	_calculateTimeNavHeight: function(timenav_height, timenav_height_percentage) {
+
+		var height = 0;
+
+		if (timenav_height) {
+			height = timenav_height;
+		} else {
+			if (this.options.timenav_height_percentage || timenav_height_percentage) {
+				if (timenav_height_percentage) {
+					height = Math.round((this.options.height/100)*timenav_height_percentage);
+				} else {
+					height = Math.round((this.options.height/100)*this.options.timenav_height_percentage);
+				}
+
+			}
+		}
+
+		// Set new minimum based on how many rows needed
+		if (this._timenav.ready) {
+			if (this.options.timenav_height_min < this._timenav.getMinimumHeight()) {
+				this.options.timenav_height_min = this._timenav.getMinimumHeight();
+			}
+		}
+
+		// If height is less than minimum set it to minimum
+		if (height < this.options.timenav_height_min) {
+			height = this.options.timenav_height_min;
+		}
+
+		height = height - (this.options.marker_padding * 2);
+
+		return height;
+	},
+
+	/*  Private Methods
+	================================================== */
+
+	// Update View
+	_updateDisplay: function(timenav_height, animate, d) {
+		var duration    = this.options.duration,
+		display_class   = this.options.base_class,
+		menu_position   = 0,
+		self      = this;
+
+		if (d) {
+			duration = d;
+		}
+
+		// Update width and height
+		this.options.width = this._el.container.offsetWidth;
+		this.options.height = this._el.container.offsetHeight;
+
+		// Check if skinny
+		if (this.options.width <= this.options.skinny_size) {
+			display_class += " tl-skinny";
+			this.options.layout = "portrait";
+		} else if (this.options.width <= this.options.medium_size) {
+			display_class += " tl-medium";
+			this.options.layout = "landscape";
+		} else {
+			this.options.layout = "landscape";
+		}
+
+		// Detect Mobile and Update Orientation on Touch devices
+		if (TL.Browser.touch) {
+			this.options.layout = TL.Browser.orientation();
+		}
+
+		if (TL.Browser.mobile) {
+			display_class += " tl-mobile";
+			// Set TimeNav Height
+			this.options.timenav_height = this._calculateTimeNavHeight(timenav_height, this.options.timenav_mobile_height_percentage);
+		} else {
+			// Set TimeNav Height
+			this.options.timenav_height = this._calculateTimeNavHeight(timenav_height);
+		}
+
+		// LAYOUT
+		if (this.options.layout == "portrait") {
+			// Portrait
+			display_class += " tl-layout-portrait";
+
+		} else {
+			// Landscape
+			display_class += " tl-layout-landscape";
+
+		}
+
+		// Set StorySlider Height
+		this.options.storyslider_height = (this.options.height - this.options.timenav_height);
+
+		// Positon Menu
+		if (this.options.timenav_position == "top") {
+			menu_position = ( Math.ceil(this.options.timenav_height)/2 ) - (this._el.menubar.offsetHeight/2) - (39/2) ;
+		} else {
+			menu_position = Math.round(this.options.storyslider_height + 1 + ( Math.ceil(this.options.timenav_height)/2 ) - (this._el.menubar.offsetHeight/2) - (35/2));
+		}
+
+
+		if (animate) {
+
+			// Animate TimeNav
+
+			/*
+			if (this.animator_timenav) {
+			this.animator_timenav.stop();
+			}
+
+			this.animator_timenav = TL.Animate(this._el.timenav, {
+			height:   (this.options.timenav_height) + "px",
+			duration:   duration/4,
+			easing:   TL.Ease.easeOutStrong,
+			complete: function () {
+			//self._map.updateDisplay(self.options.width, self.options.timenav_height, animate, d, self.options.menubar_height);
+			}
+			});
+			*/
+
+			this._el.timenav.style.height = Math.ceil(this.options.timenav_height) + "px";
+
+			// Animate StorySlider
+			if (this.animator_storyslider) {
+				this.animator_storyslider.stop();
+			}
+			this.animator_storyslider = TL.Animate(this._el.storyslider, {
+				height:   this.options.storyslider_height + "px",
+				duration:   duration/2,
+				easing:   TL.Ease.easeOutStrong
+			});
+
+			// Animate Menubar
+			if (this.animator_menubar) {
+				this.animator_menubar.stop();
+			}
+
+			this.animator_menubar = TL.Animate(this._el.menubar, {
+				top:  menu_position + "px",
+				duration:   duration/2,
+				easing:   TL.Ease.easeOutStrong
+			});
+
+		} else {
+			// TimeNav
+			this._el.timenav.style.height = Math.ceil(this.options.timenav_height) + "px";
+
+			// StorySlider
+			this._el.storyslider.style.height = this.options.storyslider_height + "px";
+
+			// Menubar
+			this._el.menubar.style.top = menu_position + "px";
+		}
+
+		if (this.message) {
+			this.message.updateDisplay(this.options.width, this.options.height);
+		}
+		// Update Component Displays
+		this._timenav.updateDisplay(this.options.width, this.options.timenav_height, animate);
+		this._storyslider.updateDisplay(this.options.width, this.options.storyslider_height, animate, this.options.layout);
+
+		if (this.options.language.direction == 'rtl') {
+			display_class += ' tl-rtl';
+		}
+
+
+		// Apply class
+		this._el.container.className = display_class;
+
+	},
+
+	// Update hashbookmark in the url bar
+	_updateHashBookmark: function(id) {
+		var hash = "#" + "event-" + id.toString();
+		if (window.location.protocol != 'file:') {
+			window.history.replaceState(null, "Browsing TimelineJS", hash);
+		}
+		this.fire("hash_updated", {unique_id:this.current_id, hashbookmark:"#" + "event-" + id.toString()}, this);
+	},
+
+	/*  Init
+	================================================== */
+	// Initialize the data
+	_initData: function(data) {
+		var self = this;
+
+		if (typeof data == 'string') {
+			var self = this;
+			TL.ConfigFactory.makeConfig(data, function(config) {
+				self.setConfig(config);
+			});
+		} else if (TL.TimelineConfig == data.constructor) {
+			this.setConfig(data);
+		} else {
+			this.setConfig(new TL.TimelineConfig(data));
+		}
+	},
+
+	setConfig: function(config) {
+		this.config = config;
+		this.config.validate();
+		this._validateOptions();
+		if (this.config.isValid()) {
+		    try {
+			    this._onDataLoaded();
+			} catch(e) {
+			    this.showMessage("<strong>"+ this._('error') +":</strong> " + this._translateError(e));
+			}
+		} else {
+		    var translated_errs = [];
+
+		    for(var i = 0, errs = this.config.getErrors(); i < errs.length; i++) {
+		        translated_errs.push(this._translateError(errs[i]));
+		    }
+
+			this.showMessage("<strong>"+ this._('error') +":</strong> " + translated_errs.join('<br>'));
+			// should we set 'self.ready'? if not, it won't resize,
+			// but most resizing would only work
+			// if more setup happens
+		}
+	},
+	_validateOptions: function() {
+		// assumes that this.options and this.config have been set.
+		var INTEGER_PROPERTIES = ['timenav_height', 'timenav_height_min', 'marker_height_min', 'marker_width_min', 'marker_padding', 'start_at_slide', 'slide_padding_lr'  ];
+
+		for (var i = 0; i < INTEGER_PROPERTIES.length; i++) {
+				var opt = INTEGER_PROPERTIES[i];
+				var value = this.options[opt];
+				valid = true;
+				if (typeof(value) == 'number') {
+					valid = (value == parseInt(value))
+				} else if (typeof(value) == "string") {
+					valid = (value.match(/^\s*(\-?\d+)?\s*$/));
+				}
+				if (!valid) {
+					this.config.logError({ message_key: 'invalid_integer_option', detail: opt });
+				}
+		}
+	},
+	// Initialize the layout
+	_initLayout: function () {
+		var self = this;
+
+        this.message.removeFrom(this._el.container);
+		this._el.container.innerHTML = "";
+
+		// Create Layout
+		if (this.options.timenav_position == "top") {
+			this._el.timenav		= TL.Dom.create('div', 'tl-timenav', this._el.container);
+			this._el.storyslider	= TL.Dom.create('div', 'tl-storyslider', this._el.container);
+		} else {
+			this._el.storyslider  	= TL.Dom.create('div', 'tl-storyslider', this._el.container);
+			this._el.timenav		= TL.Dom.create('div', 'tl-timenav', this._el.container);
+		}
+
+		this._el.menubar			= TL.Dom.create('div', 'tl-menubar', this._el.container);
+
+
+		// Initial Default Layout
+		this.options.width        = this._el.container.offsetWidth;
+		this.options.height       = this._el.container.offsetHeight;
+		this._el.storyslider.style.top  = "1px";
+
+		// Set TimeNav Height
+		this.options.timenav_height = this._calculateTimeNavHeight(this.options.timenav_height);
+
+		// Create TimeNav
+		this._timenav = new TL.TimeNav(this._el.timenav, this.config, this.options);
+		this._timenav.on('loaded', this._onTimeNavLoaded, this);
+		this._timenav.on('update_timenav_min', this._updateTimeNavHeightMin, this);
+		this._timenav.options.height = this.options.timenav_height;
+		this._timenav.init();
+
+        // intial_zoom cannot be applied before the timenav has been created
+        if (this.options.initial_zoom) {
+            // at this point, this.options refers to the merged set of options
+            this.setZoom(this.options.initial_zoom);
+        }
+
+		// Create StorySlider
+		this._storyslider = new TL.StorySlider(this._el.storyslider, this.config, this.options);
+		this._storyslider.on('loaded', this._onStorySliderLoaded, this);
+		this._storyslider.init();
+
+		// Create Menu Bar
+		this._menubar = new TL.MenuBar(this._el.menubar, this._el.container, this.options);
+
+		// LAYOUT
+		if (this.options.layout == "portrait") {
+			this.options.storyslider_height = (this.options.height - this.options.timenav_height - 1);
+		} else {
+			this.options.storyslider_height = (this.options.height - 1);
+		}
+
+
+		// Update Display
+		this._updateDisplay(this._timenav.options.height, true, 2000);
+
+	},
+
+  /* Depends upon _initLayout because these events are on things the layout initializes */
+	_initEvents: function () {
+		// TimeNav Events
+		this._timenav.on('change', this._onTimeNavChange, this);
+		this._timenav.on('zoomtoggle', this._onZoomToggle, this);
+
+		// StorySlider Events
+		this._storyslider.on('change', this._onSlideChange, this);
+		this._storyslider.on('colorchange', this._onColorChange, this);
+		this._storyslider.on('nav_next', this._onStorySliderNext, this);
+		this._storyslider.on('nav_previous', this._onStorySliderPrevious, this);
+
+		// Menubar Events
+		this._menubar.on('zoom_in', this._onZoomIn, this);
+		this._menubar.on('zoom_out', this._onZoomOut, this);
+		this._menubar.on('back_to_start', this._onBackToStart, this);
+
+	},
+
+	/* Analytics
+	================================================== */
+	_initGoogleAnalytics: function() {
+		(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+
+		ga('create', this.options.ga_property_id, 'auto');
+	},
+
+	_initAnalytics: function() {
+		if (this.options.ga_property_id === null) { return; }
+		this._initGoogleAnalytics();
+        ga('send', 'pageview');
+		var events = this.options.track_events;
+		for (i=0; i < events.length; i++) {
+			var event_ = events[i];
+			this.addEventListener(event_, function(e) {
+				ga('send', 'event', e.type, 'clicked');
+			});
+		}
+	},
+
+	_onZoomToggle: function(e) {
+		if (e.zoom == "in") {
+			this._menubar.toogleZoomIn(e.show);
+		} else if (e.zoom == "out") {
+			this._menubar.toogleZoomOut(e.show);
+		}
+
+	},
+
+	/* Get index of event by id
+	================================================== */
+	_getEventIndex: function(id) {
+		for(var i = 0; i < this.config.events.length; i++) {
+			if(id == this.config.events[i].unique_id) {
+				return i;
+			}
+		}
+		return -1;
+	},
+
+	/*  Get index of slide by id
+	================================================== */
+	_getSlideIndex: function(id) {
+		if(this.config.title && this.config.title.unique_id == id) {
+			return 0;
+		}
+		for(var i = 0; i < this.config.events.length; i++) {
+			if(id == this.config.events[i].unique_id) {
+				return this.config.title ? i+1 : i;
+			}
+		}
+		return -1;
+	},
+
+	/*  Events
+	================================================== */
+
+	_onDataLoaded: function(e) {
+		this.fire("dataloaded");
+		this._initLayout();
+		this._initEvents();
+		this._initAnalytics();
+		if (this.message) {
+			this.message.hide();
+		}
+
+		this.ready = true;
+
+	},
+
+	showMessage: function(msg) {
+		if (this.message) {
+			this.message.updateMessage(msg);
+		} else {
+			trace("No message display available.")
+			trace(msg);
+		}
+	},
+
+	_onColorChange: function(e) {
+		this.fire("color_change", {unique_id:this.current_id}, this);
+		if (e.color || e.image) {
+
+		} else {
+
+		}
+	},
+
+	_onSlideChange: function(e) {
+		if (this.current_id != e.unique_id) {
+			this.current_id = e.unique_id;
+			this._timenav.goToId(this.current_id);
+			this._onChange(e);
+		}
+	},
+
+	_onTimeNavChange: function(e) {
+		if (this.current_id != e.unique_id) {
+			this.current_id = e.unique_id;
+			this._storyslider.goToId(this.current_id);
+			this._onChange(e);
+		}
+	},
+
+	_onChange: function(e) {
+		this.fire("change", {unique_id:this.current_id}, this);
+		if (this.options.hash_bookmark && this.current_id) {
+			this._updateHashBookmark(this.current_id);
+		}
+	},
+
+	_onBackToStart: function(e) {
+		this._storyslider.goTo(0);
+		this.fire("back_to_start", {unique_id:this.current_id}, this);
+	},
+
+	/**
+	 * Zoom in and zoom out should be part of the public API.
+	 */
+	zoomIn: function() {
+	    this._timenav.zoomIn();
+	},
+	zoomOut: function() {
+	    this._timenav.zoomOut();
+	},
+
+	setZoom: function(level) {
+	    this._timenav.setZoom(level);
+	},
+
+	_onZoomIn: function(e) {
+		this._timenav.zoomIn();
+		this.fire("zoom_in", {zoom_level:this._timenav.options.scale_factor}, this);
+	},
+
+	_onZoomOut: function(e) {
+		this._timenav.zoomOut();
+		this.fire("zoom_out", {zoom_level:this._timenav.options.scale_factor}, this);
+	},
+
+	_onTimeNavLoaded: function() {
+		this._loaded.timenav = true;
+		this._onLoaded();
+	},
+
+	_onStorySliderLoaded: function() {
+		this._loaded.storyslider = true;
+		this._onLoaded();
+	},
+
+	_onStorySliderNext: function(e) {
+		this.fire("nav_next", e);
+	},
+
+	_onStorySliderPrevious: function(e) {
+		this.fire("nav_previous", e);
+	},
+
+	_onLoaded: function() {
+		if (this._loaded.storyslider && this._loaded.timenav) {
+			this.fire("loaded", this.config);
+			// Go to proper slide
+			if (this.options.hash_bookmark && window.location.hash != "") {
+				this.goToId(window.location.hash.replace("#event-", ""));
+			} else {
+				if( TL.Util.isTrue(this.options.start_at_end) || this.options.start_at_slide > this.config.events.length ) {
+					this.goToEnd();
+				} else {
+					this.goTo(this.options.start_at_slide);
+				}
+				if (this.options.hash_bookmark ) {
+					this._updateHashBookmark(this.current_id);
+				}
+			}
+
+		}
+	}
+
+});
+
+TL.Timeline.source_path = (function() {
+	var script_tags = document.getElementsByTagName('script');
+	var src = script_tags[script_tags.length-1].src;
+	return src.substr(0,src.lastIndexOf('/'));
+})();
+
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/test/js/data/VCO.getJSON.html b/public/opac/TimelineJS3-3.5.1/compiled/test/js/data/VCO.getJSON.html
new file mode 100644
index 0000000000000000000000000000000000000000..2e66cc1fc0f2073f4274a688c0e59e5e74463c7f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/test/js/data/VCO.getJSON.html
@@ -0,0 +1,34 @@
+<html>
+    <head>
+        <title>Test getJSON methods</title>
+        <style type="text/css" media="screen">
+          .test_data {
+            font-weight: bold;
+          }
+        </style>
+    </head>
+    <body>
+        <strong>This page tests AJAX behavior.</strong>
+        <h2>Date and Time</h2>
+        <p id="date_explainer">Using the http://date.jsontest.com/ endpoint, you should see the current date and time (in UTC) below.</p>
+        <ul>
+          <li>Date: <span class='test_data' id="json_test_date"></span></li>
+          <li>Time (UTC): <span class='test_data' id="json_test_time"></span></li>
+          <li>Milliseconds since epoch: <span class='test_data' id="json_test_millis"></span></li>
+        </ul>
+        <script type="text/javascript" src="../../../js/storyslider.js"></script>
+        <script type="text/javascript" charset="utf-8">
+          function test_date() {
+            VCO.getJSON('http://date.jsontest.com/?callback=?', function(data, status, xhr){
+              document.getElementById("json_test_date").innerText = data['date'];
+              document.getElementById("json_test_time").innerText = data['time'];
+              document.getElementById("json_test_millis").innerText = data['milliseconds_since_epoch'];
+            });
+          }
+          
+          // execute tests
+          test_date();
+          
+        </script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/compiled/timeline.html b/public/opac/TimelineJS3-3.5.1/compiled/timeline.html
new file mode 100644
index 0000000000000000000000000000000000000000..26d99ce206f8591d1e73db3329bfcb6861231fff
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/compiled/timeline.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>TimelineJS Example</title>
+    <meta charset="utf-8">
+    <meta name="description" content="TimelineJS Embed">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+    <!-- CSS-->
+    <link rel="stylesheet" href="css/timeline.css?v1">
+    <!--FONT-->
+    <link rel="stylesheet" href="css/fonts/font.default.css?v1">
+    <!-- Style-->
+    <style>
+      html, body {
+      	height:100%;
+      	width:100%;
+      	padding: 0px;
+      	margin: 0px;
+      }
+      .tl-timeline {
+      	
+      }
+      
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements-->
+    <!--if lt IE 9
+    script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+    
+    -->
+  </head>
+  <body>
+    <div id="timeline"></div>
+    <!-- JavaScript-->
+    <script src="js/timeline.js"></script>
+    <script>
+      var timeline = new TL.Timeline('timeline', 'examples/welcome.json', {
+      	theme_color: "#288EC3",
+      	ga_property_id: "UA-27829802-4"
+      });
+    </script>
+  </body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/config.codekit b/public/opac/TimelineJS3-3.5.1/config.codekit
new file mode 100644
index 0000000000000000000000000000000000000000..7ceb520088ffca1b771a63f7fa2c1e11fa1c0fcf
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/config.codekit
@@ -0,0 +1,13085 @@
+{
+"CodeKitInfo": "This is a CodeKit 2.x project configuration file. It is designed to sync project settings across multiple machines. MODIFYING THE CONTENTS OF THIS FILE IS A POOR LIFE DECISION. If you do so, you will likely cause CodeKit to crash. This file is not useful unless accompanied by the project that created it in CodeKit 2. This file is not backwards-compatible with CodeKit 1.x. For more information, see: http:\/\/incident57.com\/codekit",
+"creatorBuild": "19127",
+"files": {
+	"\/API.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 1,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/API.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/API.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/API_TEST.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/API_TEST.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.abril-droidsans.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.abril-droidsans.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.amatic-andika.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.amatic-andika.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.bevan-pontanosans.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.bevan-pontanosans.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.bitter-raleway.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.bitter-raleway.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.clicker-garamond.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.clicker-garamond.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.dancing-ledger.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.dancing-ledger.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.default.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.default.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.fjalla-average.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.fjalla-average.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.georgia-helvetica.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.georgia-helvetica.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.knightlab.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.knightlab.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.lustria-lato.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.lustria-lato.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.medula-lato.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.medula-lato.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.oldstandard.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.oldstandard.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.opensans-gentiumbook.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.opensans-gentiumbook.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.playfair-faunaone.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.playfair-faunaone.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.playfair.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.playfair.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.pt.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.pt.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.roboto-megrim.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.roboto-megrim.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.rufina-sintony.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.rufina-sintony.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.ubuntu.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.ubuntu.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/fonts\/font.unicaone-vollkorn.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/fonts\/font.unicaone-vollkorn.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/icons\/icons.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/icons\/icons.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/themes\/timeline.theme.dark.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/themes\/timeline.theme.dark.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/css\/timeline.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/css\/timeline.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/embed\/index.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/embed\/index.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/build\/js\/library\/moment.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/library\/moment.js",
+		"outputAbbreviatedPath": "\/build\/js\/library\/min\/moment-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/build\/js\/locale\/af.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/af.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/af-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ar.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ar.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ar-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/be.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/be.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/be-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/bg.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/bg.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/bg-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ca.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ca.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ca-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/cz.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/cz.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/cz-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/da.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/da.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/da-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/de.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/de.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/de-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/el.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/el.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/el-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/en-24hr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/en-24hr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/en-24hr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/en-week.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/en-week.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/en-week-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/en.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/en.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/en-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/eo.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/eo.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/eo-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/es.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/es.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/es-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/et.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/et.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/et-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/eu.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/eu.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/eu-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/fa.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/fa.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/fa-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/fi.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/fi.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/fi-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/fo.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/fo.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/fo-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/fr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/fr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/fr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/fy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/fy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/fy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ga.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ga.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ga-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/gl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/gl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/gl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/he.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/he.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/he-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/hi.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/hi.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/hi-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/hr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/hr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/hr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/hu.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/hu.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/hu-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/hy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/hy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/hy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/id.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/id.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/id-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/is.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/is.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/is-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/it.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/it.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/it-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/iw.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/iw.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/iw-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ja.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ja.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ja-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ka.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ka.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ka-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ko.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ko.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ko-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/lb.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/lb.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/lb-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/lt.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/lt.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/lt-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/lv.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/lv.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/lv-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ms.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ms.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ms-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ne.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ne.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ne-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/nl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/nl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/nl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/no.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/no.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/no-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/pl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/pl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/pl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/pt-br.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/pt-br.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/pt-br-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/pt.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/pt.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/pt-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/rm.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/rm.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/rm-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ro.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ro.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ro-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ru.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ru.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ru-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/si.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/si.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/si-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/sk.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/sk.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/sk-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/sl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/sl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/sl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/sr-cy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/sr-cy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/sr-cy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/sr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/sr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/sr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/sv.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/sv.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/sv-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ta.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ta.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ta-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/te.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/te.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/te-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/th.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/th.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/th-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/tl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/tl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/tl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/tr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/tr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/tr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/uk.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/uk.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/uk-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/ur.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/ur.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/ur-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/zh-cn.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/zh-cn.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/zh-cn-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/locale\/zh-tw.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/locale\/zh-tw.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/build\/js\/locale\/zh-tw-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/build\/js\/timeline-embed-cdn.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/timeline-embed-cdn.js",
+		"outputAbbreviatedPath": "\/build\/js\/min\/timeline-embed-cdn-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/build\/js\/timeline-embed.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/timeline-embed.js",
+		"outputAbbreviatedPath": "\/build\/js\/min\/timeline-embed-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/build\/js\/timeline-min.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/timeline-min.js",
+		"outputAbbreviatedPath": "\/build\/js\/min\/timeline-min-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/build\/js\/timeline.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/build\/js\/timeline.js",
+		"outputAbbreviatedPath": "\/build\/js\/min\/timeline-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/compiled\/css\/fonts\/font.abril-droidsans.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.abril-droidsans.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.amatic-andika.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.amatic-andika.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.bevan-pontanosans.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.bevan-pontanosans.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.bitter-raleway.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.bitter-raleway.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.clicker-garamond.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.clicker-garamond.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.dancing-ledger.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.dancing-ledger.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.default.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.default.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.fjalla-average.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.fjalla-average.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.georgia-helvetica.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.georgia-helvetica.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.knightlab.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.knightlab.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.lustria-lato.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.lustria-lato.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.medula-lato.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.medula-lato.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.oldstandard.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.oldstandard.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.opensans-gentiumbook.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.opensans-gentiumbook.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.playfair-faunaone.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.playfair-faunaone.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.playfair.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.playfair.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.pt.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.pt.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.roboto-megrim.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.roboto-megrim.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.rufina-sintony.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.rufina-sintony.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.ubuntu.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.ubuntu.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/fonts\/font.unicaone-vollkorn.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/fonts\/font.unicaone-vollkorn.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/icons\/icons.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/icons\/icons.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/themes\/timeline.theme.dark.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/themes\/timeline.theme.dark.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/css\/timeline.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/css\/timeline.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/embed\/index.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/embed\/index.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/cosmological.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/cosmological.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/cosmological.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/cosmological.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/cosmological-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/dark_theme_example.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/dark_theme_example.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/eras.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/eras.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/eras.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/eras.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/eras-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/error_message_test.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/error_message_test.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/error_message_test.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/error_message_test.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/error_message_test-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/google_spreadsheet.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/google_spreadsheet.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/google_spreadsheet_tester.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/google_spreadsheet_tester.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/groups_test_2.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/groups_test_2.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/groups_test_2.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/groups_test_2.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/groups_test_2-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/groups_test_3.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/groups_test_3.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/groups_test_3.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/groups_test_3.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/groups_test_3-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/long_time_ticks.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/long_time_ticks.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/mark_twain.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/mark_twain.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/marktwain.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/marktwain.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/marktwain-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/marktwain_juked.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/marktwain_juked.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/marktwain_juked-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/marktwain_test.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/marktwain_test.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/marktwain_test-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/media_types.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/media_types.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/media_types.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/media_types.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/media_types-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/milliseconds.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/milliseconds.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/milliseconds.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/milliseconds.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/milliseconds-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/multiple_timeline.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/multiple_timeline.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/science.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/science.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/science-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/seventh_century.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/seventh_century.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/seventh_century.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/seventh_century.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/seventh_century-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/sizes.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/sizes.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/timeline_language.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/timeline_language.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/timeline_top_nav.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/timeline_top_nav.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/timenav_height_example.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/timenav_height_example.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/wedding.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/wedding.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/examples\/wedding.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/wedding.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/wedding-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/wedding_backup.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/wedding_backup.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/wedding_backup-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/welcome.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/welcome.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/welcome-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/examples\/years.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/examples\/years.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/examples\/years-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/library\/moment.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/library\/moment.js",
+		"outputAbbreviatedPath": "\/compiled\/js\/library\/min\/moment-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/compiled\/js\/locale\/af.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/af.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/af-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ar.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ar.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ar-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/be.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/be.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/be-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/bg.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/bg.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/bg-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ca.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ca.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ca-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/cz.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/cz.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/cz-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/da.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/da.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/da-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/de.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/de.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/de-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/el.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/el.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/el-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/en-24hr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/en-24hr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/en-24hr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/en-week.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/en-week.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/en-week-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/en.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/en.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/en-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/eo.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/eo.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/eo-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/es.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/es.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/es-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/et.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/et.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/et-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/eu.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/eu.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/eu-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/fa.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/fa.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/fa-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/fi.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/fi.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/fi-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/fo.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/fo.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/fo-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/fr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/fr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/fr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/fy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/fy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/fy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ga.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ga.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ga-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/gl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/gl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/gl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/he.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/he.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/he-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/hi.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/hi.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/hi-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/hr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/hr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/hr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/hu.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/hu.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/hu-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/hy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/hy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/hy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/id.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/id.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/id-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/is.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/is.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/is-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/it.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/it.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/it-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/iw.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/iw.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/iw-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ja.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ja.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ja-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ka.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ka.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ka-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ko.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ko.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ko-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/lb.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/lb.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/lb-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/lt.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/lt.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/lt-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/lv.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/lv.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/lv-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ms.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ms.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ms-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ne.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ne.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ne-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/nl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/nl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/nl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/no.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/no.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/no-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/pl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/pl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/pl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/pt-br.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/pt-br.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/pt-br-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/pt.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/pt.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/pt-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/rm.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/rm.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/rm-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ro.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ro.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ro-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ru.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ru.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ru-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/si.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/si.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/si-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/sk.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/sk.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/sk-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/sl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/sl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/sl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/sr-cy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/sr-cy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/sr-cy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/sr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/sr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/sr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/sv.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/sv.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/sv-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ta.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ta.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ta-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/te.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/te.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/te-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/th.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/th.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/th-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/tl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/tl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/tl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/tr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/tr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/tr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/uk.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/uk.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/uk-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/ur.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/ur.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/ur-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/zh-cn.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/zh-cn.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/zh-cn-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/locale\/zh-tw.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/locale\/zh-tw.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/compiled\/js\/locale\/zh-tw-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/compiled\/js\/timeline-embed-cdn.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/timeline-embed-cdn.js",
+		"outputAbbreviatedPath": "\/compiled\/js\/min\/timeline-embed-cdn-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/compiled\/js\/timeline-embed.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/timeline-embed.js",
+		"outputAbbreviatedPath": "\/compiled\/js\/min\/timeline-embed-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/compiled\/js\/timeline-min.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/timeline-min.js",
+		"outputAbbreviatedPath": "\/compiled\/js\/min\/timeline-min-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/compiled\/js\/timeline.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/js\/timeline.js",
+		"outputAbbreviatedPath": "\/compiled\/js\/min\/timeline-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/compiled\/test\/js\/data\/VCO.getJSON.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/test\/js\/data\/VCO.getJSON.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/compiled\/timeline.html": {
+		"fileType": 8192,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/compiled\/timeline.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/config.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/config.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/config-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/CONTRIBUTING.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/CONTRIBUTING.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/CONTRIBUTING.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/DEPLOYING.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/DEPLOYING.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/DEPLOYING.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less-plugin-clean-css\/lib\/clean-css-processor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/lib\/clean-css-processor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/lib\/min\/clean-css-processor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/lib\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/lib\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/lib\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/lib\/parse-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/lib\/parse-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/lib\/min\/parse-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/lib\/usage.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/lib\/usage.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/lib\/min\/usage-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/History.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/History.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/History.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/clean.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/clean.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/min\/clean-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/hsl-to-hex.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/hsl-to-hex.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/min\/hsl-to-hex-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/long-to-short-hex.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/long-to-short-hex.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/min\/long-to-short-hex-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/rgb-to-hex.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/rgb-to-hex.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/min\/rgb-to-hex-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/shortener.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/shortener.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/colors\/min\/shortener-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/images\/url-rebase.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/images\/url-rebase.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/images\/min\/url-rebase-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/images\/url-rewriter.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/images\/url-rewriter.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/images\/min\/url-rewriter-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/imports\/inliner.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/imports\/inliner.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/imports\/min\/inliner-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/optimizer.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/optimizer.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/min\/optimizer-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/override-compactor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/override-compactor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/min\/override-compactor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/processable.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/processable.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/min\/processable-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/scanner.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/scanner.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/min\/scanner-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/shorthand-compactor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/shorthand-compactor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/min\/shorthand-compactor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/token.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/token.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/min\/token-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/validator.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/validator.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/properties\/min\/validator-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/empty-removal.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/empty-removal.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/min\/empty-removal-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/optimizer.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/optimizer.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/min\/optimizer-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/tokenizer.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/tokenizer.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/selectors\/min\/tokenizer-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/comments.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/comments.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/min\/comments-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/escape-store.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/escape-store.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/min\/escape-store-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/expressions.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/expressions.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/min\/expressions-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/free.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/free.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/min\/free-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/name-quotes.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/name-quotes.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/min\/name-quotes-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/quote-scanner.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/quote-scanner.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/min\/quote-scanner-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/splitter.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/splitter.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/min\/splitter-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/urls.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/urls.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/lib\/text\/min\/urls-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/Readme.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/Readme.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/node_modules\/commander\/Readme.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/README.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/README.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/node_modules\/clean-css\/README.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less-plugin-clean-css\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less-plugin-clean-css\/README.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/README.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less-plugin-clean-css\/README.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/bower.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/bower.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/bower-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/browser.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/browser.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/min\/browser-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/CHANGELOG.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/CHANGELOG.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/CHANGELOG.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/CONTRIBUTING.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/CONTRIBUTING.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/CONTRIBUTING.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/dist\/less.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/dist\/less.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/dist\/min\/less-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/dist\/less.min.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/dist\/less.min.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/dist\/min\/less.min-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/Gruntfile.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/Gruntfile.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/min\/Gruntfile-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/add-default-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/add-default-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/add-default-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/bootstrap.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/bootstrap.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/bootstrap-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/browser.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/browser.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/browser-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/cache.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/cache.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/cache-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/error-reporting.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/error-reporting.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/error-reporting-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/file-manager.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/file-manager.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/file-manager-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/log-listener.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/log-listener.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/log-listener-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-browser\/utils.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/utils.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-browser\/min\/utils-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-node\/environment.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/environment.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/min\/environment-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-node\/file-manager.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/file-manager.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/min\/file-manager-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-node\/fs.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/fs.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/min\/fs-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-node\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-node\/lessc-helper.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/lessc-helper.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/min\/lessc-helper-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-node\/plugin-loader.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/plugin-loader.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/min\/plugin-loader-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-node\/url-file-manager.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/url-file-manager.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-node\/min\/url-file-manager-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less-rhino\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less-rhino\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less-rhino\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/contexts.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/contexts.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/contexts-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/data\/colors.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/data\/colors.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/data\/min\/colors-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/data\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/data\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/data\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/data\/unit-conversions.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/data\/unit-conversions.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/data\/min\/unit-conversions-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/environment\/abstract-file-manager.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/environment\/abstract-file-manager.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/environment\/min\/abstract-file-manager-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/environment\/environment-api.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/environment\/environment-api.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/environment\/min\/environment-api-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/environment\/environment.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/environment\/environment.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/environment\/min\/environment-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/environment\/file-manager-api.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/environment\/file-manager-api.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/environment\/min\/file-manager-api-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/color-blending.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/color-blending.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/color-blending-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/color.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/color.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/color-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/data-uri.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/data-uri.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/data-uri-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/default.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/default.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/default-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/function-caller.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/function-caller.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/function-caller-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/function-registry.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/function-registry.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/function-registry-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/math.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/math.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/math-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/number.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/number.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/number-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/string.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/string.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/string-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/svg.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/svg.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/svg-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/functions\/types.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/types.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/functions\/min\/types-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/import-manager.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/import-manager.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/import-manager-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/less-error.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/less-error.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/less-error-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/logger.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/logger.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/logger-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/parse-tree.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/parse-tree.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/parse-tree-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/parser\/chunker.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/parser\/chunker.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/parser\/min\/chunker-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/parser\/parser-input.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/parser\/parser-input.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/parser\/min\/parser-input-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/parser\/parser.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/parser\/parser.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/parser\/min\/parser-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/plugin-manager.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/plugin-manager.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/plugin-manager-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/render.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/render.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/render-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/source-map-builder.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/source-map-builder.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/source-map-builder-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/source-map-output.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/source-map-output.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/source-map-output-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/transform-tree.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/transform-tree.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/transform-tree-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/alpha.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/alpha.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/alpha-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/anonymous.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/anonymous.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/anonymous-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/assignment.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/assignment.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/assignment-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/attribute.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/attribute.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/attribute-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/call.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/call.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/call-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/color.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/color.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/color-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/combinator.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/combinator.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/combinator-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/comment.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/comment.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/comment-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/condition.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/condition.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/condition-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/debug-info.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/debug-info.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/debug-info-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/detached-ruleset.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/detached-ruleset.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/detached-ruleset-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/dimension.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/dimension.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/dimension-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/directive.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/directive.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/directive-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/element.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/element.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/element-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/expression.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/expression.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/expression-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/extend.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/extend.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/extend-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/import.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/import.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/import-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/javascript.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/javascript.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/javascript-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/js-eval-node.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/js-eval-node.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/js-eval-node-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/keyword.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/keyword.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/keyword-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/media.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/media.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/media-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/mixin-call.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/mixin-call.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/mixin-call-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/mixin-definition.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/mixin-definition.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/mixin-definition-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/negative.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/negative.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/negative-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/node.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/node.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/node-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/operation.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/operation.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/operation-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/paren.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/paren.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/paren-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/quoted.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/quoted.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/quoted-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/rule.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/rule.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/rule-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/ruleset-call.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/ruleset-call.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/ruleset-call-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/ruleset.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/ruleset.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/ruleset-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/selector.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/selector.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/selector-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/unicode-descriptor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/unicode-descriptor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/unicode-descriptor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/unit.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/unit.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/unit-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/url.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/url.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/url-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/value.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/value.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/value-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/tree\/variable.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/variable.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/tree\/min\/variable-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/utils.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/utils.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/min\/utils-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/visitors\/extend-visitor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/extend-visitor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/min\/extend-visitor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/visitors\/import-sequencer.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/import-sequencer.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/min\/import-sequencer-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/visitors\/import-visitor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/import-visitor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/min\/import-visitor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/visitors\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/visitors\/join-selector-visitor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/join-selector-visitor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/min\/join-selector-visitor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/visitors\/to-css-visitor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/to-css-visitor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/min\/to-css-visitor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/less\/visitors\/visitor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/visitor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/less\/visitors\/min\/visitor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/source-map\/source-map-0.1.31.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/source-map\/source-map-0.1.31.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/source-map\/min\/source-map-0.1.31-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/source-map\/source-map-footer.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/source-map\/source-map-footer.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/source-map\/min\/source-map-footer-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/lib\/source-map\/source-map-header.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/lib\/source-map\/source-map-header.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/lib\/source-map\/min\/source-map-header-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mime\/mime.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mime\/mime.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mime\/min\/mime-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mime\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mime\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mime\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mime\/README.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mime\/README.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mime\/README.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/node_modules\/mime\/test.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mime\/test.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mime\/min\/test-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/bin\/cmd.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/bin\/cmd.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/bin\/min\/cmd-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/examples\/pow.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/examples\/pow.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/examples\/min\/pow-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/example\/parse.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/example\/parse.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/example\/min\/parse-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/dash.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/dash.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/min\/dash-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/default_bool.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/default_bool.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/min\/default_bool-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/dotted.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/dotted.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/min\/dotted-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/long.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/long.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/min\/long-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/parse.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/parse.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/min\/parse-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/parse_modified.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/parse_modified.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/min\/parse_modified-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/short.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/short.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/min\/short-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/whitespace.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/whitespace.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/node_modules\/minimist\/test\/min\/whitespace-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/chmod.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/chmod.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/chmod-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/clobber.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/clobber.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/clobber-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/mkdirp.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/mkdirp.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/mkdirp-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/opts_fs.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/opts_fs.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/opts_fs-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/opts_fs_sync.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/opts_fs_sync.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/opts_fs_sync-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/perm.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/perm.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/perm-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/perm_sync.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/perm_sync.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/perm_sync-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/race.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/race.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/race-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/rel.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/rel.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/rel-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/return.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/return.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/return-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/return_sync.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/return_sync.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/return_sync-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/root.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/root.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/root-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/sync.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/sync.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/sync-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/umask.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/umask.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/umask-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/mkdirp\/test\/umask_sync.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/umask_sync.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/mkdirp\/test\/min\/umask_sync-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/core.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/core.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/min\/core-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/lib\/core.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/lib\/core.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/lib\/min\/core-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/lib\/done.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/lib\/done.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/lib\/min\/done-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/lib\/es6-extensions.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/lib\/es6-extensions.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/lib\/min\/es6-extensions-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/lib\/node-extensions.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/lib\/node-extensions.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/lib\/min\/node-extensions-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/asap.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/asap.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/min\/asap-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/LICENSE.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/LICENSE.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/LICENSE.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/README.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/README.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/node_modules\/asap\/README.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/node_modules\/promise\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/polyfill-done.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/polyfill-done.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/min\/polyfill-done-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/polyfill.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/polyfill.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/min\/polyfill-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/promise\/Readme.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/Readme.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/promise\/Readme.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/build\/assert-shim.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/assert-shim.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/min\/assert-shim-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/build\/mini-require.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/mini-require.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/min\/mini-require-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/build\/suffix-browser.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/suffix-browser.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/min\/suffix-browser-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/build\/test-prefix.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/test-prefix.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/min\/test-prefix-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/build\/test-suffix.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/test-suffix.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/build\/min\/test-suffix-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/CHANGELOG.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/CHANGELOG.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/CHANGELOG.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/min\/source-map-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/array-set.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/array-set.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/min\/array-set-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/base64-vlq.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/base64-vlq.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/min\/base64-vlq-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/base64.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/base64.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/min\/base64-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/binary-search.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/binary-search.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/min\/binary-search-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/source-map-consumer.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/source-map-consumer.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/min\/source-map-consumer-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/source-map-generator.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/source-map-generator.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/min\/source-map-generator-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/source-node.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/source-node.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/min\/source-node-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/util.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/util.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/lib\/source-map\/min\/util-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/Makefile.dryice.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/Makefile.dryice.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/min\/Makefile.dryice-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/amdefine.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/amdefine.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/min\/amdefine-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/intercept.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/intercept.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/min\/intercept-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/README.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/README.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/node_modules\/amdefine\/README.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/README.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/README.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/README.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/run-tests.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/run-tests.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/min\/run-tests-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-api.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-api.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-api-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-array-set.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-array-set.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-array-set-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-base64-vlq.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-base64-vlq.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-base64-vlq-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-base64.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-base64.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-base64-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-binary-search.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-binary-search.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-binary-search-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-dog-fooding.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-dog-fooding.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-dog-fooding-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-source-map-consumer.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-source-map-consumer.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-source-map-consumer-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-source-map-generator.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-source-map-generator.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-source-map-generator-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-source-node.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-source-node.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-source-node-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-util.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/test-util.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/test-util-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/util.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/util.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/node_modules\/source-map\/test\/source-map\/min\/util-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/package.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/package.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/package-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/README.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/README.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/node_modules\/less\/README.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/node_modules\/less\/test\/browser\/common.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/common.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/common-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/css\/global-vars\/simple.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/css\/global-vars\/simple.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/browser\/css\/modify-vars\/simple.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/css\/modify-vars\/simple.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/browser\/css\/postProcessor\/postProcessor.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/css\/postProcessor\/postProcessor.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/browser\/css\/relative-urls\/urls.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/css\/relative-urls\/urls.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/browser\/css\/rootpath-relative\/urls.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/css\/rootpath-relative\/urls.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/browser\/css\/rootpath\/urls.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/css\/rootpath\/urls.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/browser\/css\/urls.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/css\/urls.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/browser\/jasmine-jsreporter.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/jasmine-jsreporter.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/jasmine-jsreporter-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/less.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/less-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/less\/console-errors\/test-error.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/console-errors\/test-error.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/test-error.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/global-vars\/simple.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/global-vars\/simple.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/simple.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/imports\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/imports\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/imports\/urls2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/imports\/urls2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/urls2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/modify-vars\/imports\/simple2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/modify-vars\/imports\/simple2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/modify-vars\/css\/simple2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/modify-vars\/simple.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/modify-vars\/simple.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/simple.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/postProcessor\/postProcessor.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/postProcessor\/postProcessor.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/postProcessor.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/relative-urls\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/relative-urls\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/rootpath-relative\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/rootpath-relative\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/rootpath\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/rootpath\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/less\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/less\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/browser\/runner-browser-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-browser-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-browser-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-browser-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-browser-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-browser-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-console-errors.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-console-errors.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-console-errors-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-errors-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-errors-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-errors-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-errors-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-errors-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-errors-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-global-vars-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-global-vars-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-global-vars-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-global-vars-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-global-vars-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-global-vars-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-legacy-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-legacy-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-legacy-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-legacy-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-legacy-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-legacy-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-main-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-main-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-main-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-main-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-main-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-main-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-modify-vars-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-modify-vars-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-modify-vars-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-modify-vars-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-modify-vars-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-modify-vars-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-no-js-errors-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-no-js-errors-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-no-js-errors-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-no-js-errors-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-no-js-errors-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-no-js-errors-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-postProcessor-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-postProcessor-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-postProcessor-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-postProcessor.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-postProcessor.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-postProcessor-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-production-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-production-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-production-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-production-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-production-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-production-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-relative-urls-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-relative-urls-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-relative-urls-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-relative-urls-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-relative-urls-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-relative-urls-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-rootpath-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-rootpath-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-rootpath-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-rootpath-relative-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-rootpath-relative-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-rootpath-relative-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-rootpath-relative-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-rootpath-relative-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-rootpath-relative-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-rootpath-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-rootpath-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-rootpath-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-strict-units-options.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-strict-units-options.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-strict-units-options-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/browser\/runner-strict-units-spec.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/runner-strict-units-spec.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/browser\/min\/runner-strict-units-spec-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/css\/charsets.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/charsets.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/colors.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/colors.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/comments.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/comments.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/comments2.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/comments2.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/compression\/compression.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/compression\/compression.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/css-3.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/css-3.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/css-escapes.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/css-escapes.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/css-guards.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/css-guards.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/css.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/css.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/debug\/linenumbers-all.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/debug\/linenumbers-all.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/debug\/linenumbers-comments.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/debug\/linenumbers-comments.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/debug\/linenumbers-mediaquery.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/debug\/linenumbers-mediaquery.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/detached-rulesets.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/detached-rulesets.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/empty.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/empty.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/extend-chaining.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-chaining.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/extend-clearfix.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-clearfix.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/extend-exact.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-exact.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/extend-media.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-media.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/extend-nest.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-nest.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/extend-selector.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-selector.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/extend.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/extract-and-length.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extract-and-length.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/functions.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/functions.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/globalVars\/extended.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/globalVars\/extended.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/globalVars\/simple.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/globalVars\/simple.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/ie-filters.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/ie-filters.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/import-inline.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import-inline.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/import-interpolation.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import-interpolation.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/import-once.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import-once.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/import-reference.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import-reference.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/import.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/javascript.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/javascript.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/lazy-eval.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/lazy-eval.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/legacy\/legacy.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/legacy\/legacy.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/media.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/media.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/merge.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/merge.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-args.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-args.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-closure.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-closure.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-guards-default-func.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-guards-default-func.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-guards.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-guards.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-important.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-important.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-interpolated.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-interpolated.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-named-args.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-named-args.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-nested.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-nested.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins-pattern.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-pattern.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/mixins.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/modifyVars\/extended.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/modifyVars\/extended.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/no-output.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/no-output.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/operations.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/operations.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/parens.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/parens.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/property-name-interp.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/property-name-interp.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/rulesets.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/rulesets.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/scope.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/scope.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/selectors.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/selectors.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/static-urls\/urls.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/static-urls\/urls.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/strict-units\/strict-units.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/strict-units\/strict-units.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/strings.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/strings.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/url-args\/urls.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/url-args\/urls.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/urls.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/urls.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/variables-in-at-rules.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/variables-in-at-rules.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/variables.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/variables.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/css\/whitespace.css": {
+		"fileType": 16,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/css\/whitespace.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/data\/data-uri-fail.png": {
+		"fileType": 32768,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"initialSize": 52420,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/data\/data-uri-fail.png",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/data\/data-uri-fail.png",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"processed": 0
+		},
+	"\/node_modules\/less\/test\/data\/image.jpg": {
+		"fileType": 16384,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"initialSize": 25,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/data\/image.jpg",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/data\/image.jpg",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"processed": 0
+		},
+	"\/node_modules\/less\/test\/data\/page.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/data\/page.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/index.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/index.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/min\/index-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/less-test.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less-test.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/min\/less-test-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/less\/charsets.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/charsets.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/charsets.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/colors.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/colors.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/colors.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/comments.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/comments.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/comments.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/comments2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/comments2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/comments2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/compression\/compression.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/compression\/compression.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/compression.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/css-3.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css-3.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/css-3.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/css-escapes.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css-escapes.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/css-escapes.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/css-guards.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css-guards.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/css-guards.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/css.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/css.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/debug\/import\/test.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/debug\/import\/test.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/debug\/css\/test.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/debug\/linenumbers.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/debug\/linenumbers.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/linenumbers.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/detached-rulesets.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/detached-rulesets.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/detached-rulesets.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/empty.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/empty.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/empty.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/add-mixed-units.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/add-mixed-units.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/add-mixed-units.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/add-mixed-units2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/add-mixed-units2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/add-mixed-units2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/at-rules-undefined-var.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/at-rules-undefined-var.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/at-rules-undefined-var.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/bad-variable-declaration1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/bad-variable-declaration1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/bad-variable-declaration1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/color-func-invalid-color.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/color-func-invalid-color.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/color-func-invalid-color.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/color-invalid-hex-code.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/color-invalid-hex-code.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/color-invalid-hex-code.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/color-invalid-hex-code2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/color-invalid-hex-code2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/color-invalid-hex-code2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/css-guard-default-func.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/css-guard-default-func.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/css-guard-default-func.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/detached-ruleset-1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/detached-ruleset-1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/detached-ruleset-1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/detached-ruleset-2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/detached-ruleset-2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/detached-ruleset-2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/detached-ruleset-3.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/detached-ruleset-3.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/detached-ruleset-3.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/detached-ruleset-4.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/detached-ruleset-4.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/detached-ruleset-4.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/detached-ruleset-5.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/detached-ruleset-5.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/detached-ruleset-5.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/detached-ruleset-6.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/detached-ruleset-6.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/detached-ruleset-6.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/divide-mixed-units.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/divide-mixed-units.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/divide-mixed-units.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/extend-no-selector.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/extend-no-selector.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/extend-no-selector.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/extend-not-at-end.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/extend-not-at-end.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/extend-not-at-end.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/import-malformed.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/import-malformed.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-malformed.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/import-missing.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/import-missing.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-missing.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/import-no-semi.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/import-no-semi.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-no-semi.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/import-subfolder1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/import-subfolder1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-subfolder1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/import-subfolder2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/import-subfolder2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-subfolder2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/imports\/import-subfolder1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/imports\/import-subfolder1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/css\/import-subfolder1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/imports\/import-subfolder2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/imports\/import-subfolder2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/css\/import-subfolder2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/imports\/import-test.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/imports\/import-test.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/css\/import-test.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/imports\/subfolder\/mixin-not-defined.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/imports\/subfolder\/mixin-not-defined.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/imports\/css\/mixin-not-defined.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/imports\/subfolder\/parse-error-curly-bracket.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/imports\/subfolder\/parse-error-curly-bracket.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/imports\/css\/parse-error-curly-bracket.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/javascript-error.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/javascript-error.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/javascript-error.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/javascript-undefined-var.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/javascript-undefined-var.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/javascript-undefined-var.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixed-mixin-definition-args-1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixed-mixin-definition-args-1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixed-mixin-definition-args-1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixed-mixin-definition-args-2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixed-mixin-definition-args-2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixed-mixin-definition-args-2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixin-not-defined.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixin-not-defined.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixin-not-defined.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixin-not-matched.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixin-not-matched.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixin-not-matched.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixin-not-matched2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixin-not-matched2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixin-not-matched2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixin-not-visible-in-scope-1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixin-not-visible-in-scope-1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixin-not-visible-in-scope-1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixins-guards-default-func-1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixins-guards-default-func-1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixins-guards-default-func-1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixins-guards-default-func-2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixins-guards-default-func-2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixins-guards-default-func-2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/mixins-guards-default-func-3.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/mixins-guards-default-func-3.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/mixins-guards-default-func-3.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/multiple-guards-on-css-selectors.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/multiple-guards-on-css-selectors.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/multiple-guards-on-css-selectors.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/multiple-guards-on-css-selectors2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/multiple-guards-on-css-selectors2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/multiple-guards-on-css-selectors2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/multiply-mixed-units.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/multiply-mixed-units.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/multiply-mixed-units.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/parens-error-1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/parens-error-1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/parens-error-1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/parens-error-2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/parens-error-2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/parens-error-2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/parens-error-3.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/parens-error-3.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/parens-error-3.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/parse-error-curly-bracket.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/parse-error-curly-bracket.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/parse-error-curly-bracket.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/parse-error-extra-parens.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/parse-error-extra-parens.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/parse-error-extra-parens.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/parse-error-missing-bracket.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/parse-error-missing-bracket.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/parse-error-missing-bracket.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/parse-error-missing-parens.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/parse-error-missing-parens.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/parse-error-missing-parens.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/parse-error-with-import.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/parse-error-with-import.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/parse-error-with-import.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/percentage-missing-space.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/percentage-missing-space.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/percentage-missing-space.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/property-asterisk-only-name.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/property-asterisk-only-name.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/property-asterisk-only-name.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/property-ie5-hack.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/property-ie5-hack.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/property-ie5-hack.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/property-in-root.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/property-in-root.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/property-in-root.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/property-in-root2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/property-in-root2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/property-in-root2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/property-in-root3.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/property-in-root3.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/property-in-root3.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/property-interp-not-defined.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/property-interp-not-defined.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/property-interp-not-defined.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/recursive-variable.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/recursive-variable.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/recursive-variable.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/svg-gradient1.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/svg-gradient1.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/svg-gradient1.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/svg-gradient2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/svg-gradient2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/svg-gradient2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/svg-gradient3.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/svg-gradient3.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/svg-gradient3.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/errors\/unit-function.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/errors\/unit-function.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/unit-function.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/extend-chaining.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/extend-chaining.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-chaining.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/extend-clearfix.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/extend-clearfix.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-clearfix.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/extend-exact.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/extend-exact.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-exact.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/extend-media.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/extend-media.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-media.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/extend-nest.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/extend-nest.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-nest.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/extend-selector.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/extend-selector.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend-selector.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/extend.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/extend.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extend.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/extract-and-length.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/extract-and-length.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/extract-and-length.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/functions.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/functions.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/functions.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/globalVars\/extended.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/globalVars\/extended.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/globalVars\/extended-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/test\/less\/globalVars\/extended.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/globalVars\/extended.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/extended.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/globalVars\/simple.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/globalVars\/simple.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/globalVars\/simple-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/test\/less\/globalVars\/simple.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/globalVars\/simple.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/simple.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/ie-filters.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/ie-filters.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/ie-filters.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import-inline.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import-inline.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import-inline.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import-interpolation.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import-interpolation.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import-interpolation.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import-once.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import-once.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import-once.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import-reference.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import-reference.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import-reference.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/import.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/deeper\/deeper-2\/url-import-2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/deeper\/deeper-2\/url-import-2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/deeper\/css\/url-import-2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/deeper\/deeper-2\/url-import.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/deeper\/deeper-2\/url-import.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/deeper\/css\/url-import.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/deeper\/import-once-test-a.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/deeper\/import-once-test-a.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/css\/import-once-test-a.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/deeper\/url-import.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/deeper\/url-import.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/css\/url-import.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-and-relative-paths-test.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-and-relative-paths-test.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-and-relative-paths-test.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-charset-test.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-charset-test.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-charset-test.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-interpolation.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-interpolation.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-interpolation.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-interpolation2.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-interpolation2.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-interpolation2.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-once-test-c.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-once-test-c.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-once-test-c.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-reference.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-reference.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-reference.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-test-a.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-test-a.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-test-a.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-test-b.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-test-b.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-test-b.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-test-c.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-test-c.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-test-c.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-test-d.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-test-d.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-test-e.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-test-e.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-test-e.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/import-test-f.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/import-test-f.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/import-test-f.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/imports\/font.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/imports\/font.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/css\/font.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/imports\/logo.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/imports\/logo.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/css\/logo.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/interpolation-vars.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/interpolation-vars.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/interpolation-vars.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/invalid-css.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/invalid-css.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/invalid-css.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/import\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/import\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/javascript.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/javascript.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/javascript.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/lazy-eval.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/lazy-eval.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/lazy-eval.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/legacy\/legacy.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/legacy\/legacy.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/legacy.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/media.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/media.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/media.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/merge.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/merge.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/merge.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-args.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-args.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-args.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-closure.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-closure.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-closure.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-guards-default-func.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-guards-default-func.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-guards-default-func.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-guards.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-guards.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-guards.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-important.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-important.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-important.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-interpolated.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-interpolated.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-interpolated.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-named-args.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-named-args.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-named-args.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-nested.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-nested.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-nested.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins-pattern.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins-pattern.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins-pattern.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/mixins.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/mixins.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/mixins.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/modifyVars\/extended.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/modifyVars\/extended.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/modifyVars\/extended-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/test\/less\/modifyVars\/extended.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/modifyVars\/extended.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/extended.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/no-js-errors\/no-js-errors.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/no-js-errors\/no-js-errors.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/no-js-errors.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/no-output.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/no-output.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/no-output.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/operations.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/operations.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/operations.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/parens.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/parens.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/parens.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/property-name-interp.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/property-name-interp.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/property-name-interp.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/rulesets.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/rulesets.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/rulesets.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/scope.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/scope.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/scope.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/selectors.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/selectors.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/selectors.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/sourcemaps\/basic.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/sourcemaps\/basic.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/sourcemaps\/basic-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/test\/less\/sourcemaps\/basic.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/sourcemaps\/basic.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/basic.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/sourcemaps\/imported.css": {
+		"fileType": 16,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/sourcemaps\/imported.css",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/node_modules\/less\/test\/less\/static-urls\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/static-urls\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/strict-units\/strict-units.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/strict-units\/strict-units.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/strict-units.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/strings.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/strings.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/strings.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/url-args\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/url-args\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/less\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/urls.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/urls.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/urls.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/variables-in-at-rules.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/variables-in-at-rules.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/variables-in-at-rules.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/variables.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/variables.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/variables.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/less\/whitespace.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/less\/whitespace.less",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/css\/whitespace.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/node_modules\/less\/test\/modify-vars.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/modify-vars.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/min\/modify-vars-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/rhino\/test-header.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/rhino\/test-header.js",
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/rhino\/min\/test-header-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/node_modules\/less\/test\/sourcemaps\/basic.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/sourcemaps\/basic.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/node_modules\/less\/test\/sourcemaps\/basic-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/node_modules\/less\/test\/sourcemaps\/index.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/node_modules\/less\/test\/sourcemaps\/index.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/README.md": {
+		"criticStyle": 0,
+		"enableFootnotes": 0,
+		"enableLabels": 1,
+		"enableSmartQuotes": 1,
+		"escapeLineBreaks": 0,
+		"fileType": 4096,
+		"ignore": 1,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/README.md",
+		"maskEmailAddresses": 1,
+		"outputAbbreviatedPath": "\/README.html",
+		"outputFormat": 0,
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"parseMetadata": 1,
+		"processHTML": 0,
+		"randomFootnoteNumbers": 0,
+		"useCompatibilityMode": 0
+		},
+	"\/source\/css\/icons\/icons.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/css\/icons\/icons.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/source\/embed\/index.html": {
+		"fileType": 8192,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/embed\/index.html",
+		"outputAbbreviatedPath": "No Output Path",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0
+		},
+	"\/source\/jade\/cosmological.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/cosmological.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/cosmological.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/dark_theme_example.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/dark_theme_example.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/dark_theme_example.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/eras.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/eras.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/eras.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/error_message_test.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/error_message_test.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/error_message_test.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/google_spreadsheet.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/google_spreadsheet.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/google_spreadsheet.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/google_spreadsheet_tester.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/google_spreadsheet_tester.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/google_spreadsheet_tester.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/long_time_ticks.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/long_time_ticks.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/long_time_ticks.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/mark_twain.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/mark_twain.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/mark_twain.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/milliseconds.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/milliseconds.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/milliseconds.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/multiple_timeline.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/multiple_timeline.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/multiple_timeline.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/seventh_century.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/seventh_century.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/seventh_century.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/sizes.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/sizes.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/sizes.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/timeline.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/timeline.jade",
+		"outputAbbreviatedPath": "\/compiled\/timeline.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/timeline_language.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/timeline_language.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/timeline_language.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/timeline_top_nav.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/timeline_top_nav.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/timeline_top_nav.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/timenav_height_example.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/timenav_height_example.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/timenav_height_example.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/jade\/wedding.jade": {
+		"compileDebug": 1,
+		"fileType": 512,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/jade\/wedding.jade",
+		"outputAbbreviatedPath": "\/compiled\/examples\/wedding.html",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0
+		},
+	"\/source\/js\/animation\/TL.Animate.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/animation\/TL.Animate.js",
+		"outputAbbreviatedPath": "\/source\/js\/animation\/min\/TL.Animate-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/animation\/TL.Ease.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/animation\/TL.Ease.js",
+		"outputAbbreviatedPath": "\/source\/js\/animation\/min\/TL.Ease-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.Browser.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.Browser.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL.Browser-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.Class.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.Class.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL.Class-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.ConfigFactory.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.ConfigFactory.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL.ConfigFactory-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.Error.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.Error.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL.Error-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.Events.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.Events.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL.Events-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.Load.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.Load.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL.Load-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.TimelineConfig.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.TimelineConfig.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL.TimelineConfig-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/core\/TL.Util.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/core\/TL.Util.js",
+		"outputAbbreviatedPath": "\/source\/js\/core\/min\/TL.Util-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/data\/TL.Data.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/data\/TL.Data.js",
+		"outputAbbreviatedPath": "\/source\/js\/data\/min\/TL.Data-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/date\/TL.Date.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/date\/TL.Date.js",
+		"outputAbbreviatedPath": "\/source\/js\/date\/min\/TL.Date-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/date\/TL.DateUtil.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/date\/TL.DateUtil.js",
+		"outputAbbreviatedPath": "\/source\/js\/date\/min\/TL.DateUtil-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/dom\/TL.Dom.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/dom\/TL.Dom.js",
+		"outputAbbreviatedPath": "\/source\/js\/dom\/min\/TL.Dom-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/dom\/TL.DomEvent.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/dom\/TL.DomEvent.js",
+		"outputAbbreviatedPath": "\/source\/js\/dom\/min\/TL.DomEvent-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/dom\/TL.DomMixins.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/dom\/TL.DomMixins.js",
+		"outputAbbreviatedPath": "\/source\/js\/dom\/min\/TL.DomMixins-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/dom\/TL.DomUtil.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/dom\/TL.DomUtil.js",
+		"outputAbbreviatedPath": "\/source\/js\/dom\/min\/TL.DomUtil-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/dom\/TL.Point.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/dom\/TL.Point.js",
+		"outputAbbreviatedPath": "\/source\/js\/dom\/min\/TL.Point-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/dom\/TL.StyleSheet.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/dom\/TL.StyleSheet.js",
+		"outputAbbreviatedPath": "\/source\/js\/dom\/min\/TL.StyleSheet-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/embed\/Embed.CDN.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/embed\/Embed.CDN.js",
+		"outputAbbreviatedPath": "\/source\/js\/embed\/min\/Embed.CDN-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/embed\/Embed.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/embed\/Embed.js",
+		"outputAbbreviatedPath": "\/source\/js\/embed\/min\/Embed-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/embed\/Embed.LoadLib.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/embed\/Embed.LoadLib.js",
+		"outputAbbreviatedPath": "\/source\/js\/embed\/min\/Embed.LoadLib-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/embed\/LazyLoad.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/embed\/LazyLoad.js",
+		"outputAbbreviatedPath": "\/source\/js\/embed\/min\/LazyLoad-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/language\/locale\/af.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/af.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/af-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ar.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ar.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ar-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/be.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/be.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/be-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/bg.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/bg.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/bg-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ca.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ca.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ca-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/cz.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/cz.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/cz-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/da.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/da.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/da-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/de.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/de.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/de-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/el.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/el.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/el-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/en-24hr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/en-24hr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/en-24hr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/en-week.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/en-week.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/en-week-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/en.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/en.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/en-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/eo.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/eo.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/eo-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/es.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/es.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/es-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/et.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/et.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/et-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/eu.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/eu.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/eu-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/fa.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/fa.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/fa-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/fi.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/fi.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/fi-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/fo.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/fo.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/fo-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/fr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/fr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/fr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/fy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/fy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/fy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ga.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ga.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ga-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/gl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/gl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/gl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/he.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/he.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/he-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/hi.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/hi.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/hi-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/hr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/hr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/hr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/hu.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/hu.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/hu-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/hy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/hy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/hy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/id.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/id.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/id-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/is.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/is.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/is-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/it.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/it.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/it-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/iw.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/iw.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/iw-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ja.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ja.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ja-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ka.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ka.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ka-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ko.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ko.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ko-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/lb.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/lb.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/lb-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/lt.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/lt.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/lt-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/lv.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/lv.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/lv-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ms.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ms.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ms-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ne.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ne.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ne-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/nl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/nl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/nl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/no.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/no.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/no-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/pl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/pl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/pl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/pt-br.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/pt-br.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/pt-br-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/pt.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/pt.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/pt-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/rm.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/rm.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/rm-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ro.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ro.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ro-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ru.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ru.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ru-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/si.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/si.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/si-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/sk.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/sk.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/sk-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/sl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/sl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/sl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/sr-cy.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/sr-cy.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/sr-cy-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/sr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/sr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/sr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/sv.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/sv.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/sv-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ta.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ta.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ta-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/te.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/te.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/te-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/th.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/th.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/th-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/tl.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/tl.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/tl-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/tr.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/tr.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/tr-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/uk.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/uk.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/uk-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/ur.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/ur.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/ur-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/zh-cn.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/zh-cn.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/zh-cn-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/locale\/zh-tw.json": {
+		"fileType": 524288,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/locale\/zh-tw.json",
+		"orderOutput": 0,
+		"outputAbbreviatedPath": "\/source\/js\/language\/locale\/zh-tw-min.json",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1
+		},
+	"\/source\/js\/language\/TL.I18NMixins.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/TL.I18NMixins.js",
+		"outputAbbreviatedPath": "\/source\/js\/language\/min\/TL.I18NMixins-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/language\/TL.Language.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/language\/TL.Language.js",
+		"outputAbbreviatedPath": "\/source\/js\/language\/min\/TL.Language-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/library\/moment.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/library\/moment.js",
+		"outputAbbreviatedPath": "\/source\/js\/library\/min\/moment-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/TL.Media.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/TL.Media.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/min\/TL.Media-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/TL.MediaType.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/TL.MediaType.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/min\/TL.MediaType-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Blockquote.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Blockquote.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Blockquote-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.DailyMotion.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.DailyMotion.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.DailyMotion-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.DocumentCloud.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.DocumentCloud.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.DocumentCloud-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Flickr.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Flickr.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Flickr-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.GoogleDoc.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.GoogleDoc.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.GoogleDoc-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.GoogleMap.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.GoogleMap.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.GoogleMap-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.GooglePlus.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.GooglePlus.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.GooglePlus-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.IFrame.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.IFrame.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.IFrame-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Image.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Image.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Image-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Imgur.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Imgur.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Imgur-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Instagram.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Instagram.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Instagram-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.PDF.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.PDF.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.PDF-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Profile.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Profile.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Profile-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Slider.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Slider.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Slider-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.SoundCloud.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.SoundCloud.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.SoundCloud-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Spotify.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Spotify.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Spotify-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Storify.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Storify.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Storify-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Text.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Text.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Text-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Twitter.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Twitter.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Twitter-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.TwitterEmbed.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.TwitterEmbed.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.TwitterEmbed-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Vimeo.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Vimeo.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Vimeo-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Vine.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Vine.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Vine-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Website.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Website.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Website-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Wikipedia.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Wikipedia.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Wikipedia-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.YouTube.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.YouTube.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.YouTube-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Audio.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Audio.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Audio-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/media\/types\/TL.Media.Video.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/media\/types\/TL.Media.Video.js",
+		"outputAbbreviatedPath": "\/source\/js\/media\/types\/min\/TL.Media.Video-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/slider\/TL.Slide.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/slider\/TL.Slide.js",
+		"outputAbbreviatedPath": "\/source\/js\/slider\/min\/TL.Slide-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/slider\/TL.SlideNav.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/slider\/TL.SlideNav.js",
+		"outputAbbreviatedPath": "\/source\/js\/slider\/min\/TL.SlideNav-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/slider\/TL.StorySlider.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/slider\/TL.StorySlider.js",
+		"outputAbbreviatedPath": "\/source\/js\/slider\/min\/TL.StorySlider-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/timenav\/TL.AxisHelper.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/timenav\/TL.AxisHelper.js",
+		"outputAbbreviatedPath": "\/source\/js\/timenav\/min\/TL.AxisHelper-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/timenav\/TL.TimeAxis.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/timenav\/TL.TimeAxis.js",
+		"outputAbbreviatedPath": "\/source\/js\/timenav\/min\/TL.TimeAxis-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/timenav\/TL.TimeEra.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/timenav\/TL.TimeEra.js",
+		"outputAbbreviatedPath": "\/source\/js\/timenav\/min\/TL.TimeEra-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/timenav\/TL.TimeGroup.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/timenav\/TL.TimeGroup.js",
+		"outputAbbreviatedPath": "\/source\/js\/timenav\/min\/TL.TimeGroup-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/timenav\/TL.TimeMarker.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/timenav\/TL.TimeMarker.js",
+		"outputAbbreviatedPath": "\/source\/js\/timenav\/min\/TL.TimeMarker-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/timenav\/TL.TimeNav.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/timenav\/TL.TimeNav.js",
+		"outputAbbreviatedPath": "\/source\/js\/timenav\/min\/TL.TimeNav-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/timenav\/TL.TimeScale.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/timenav\/TL.TimeScale.js",
+		"outputAbbreviatedPath": "\/source\/js\/timenav\/min\/TL.TimeScale-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/TL.Timeline.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/js\/TL.Timeline.js",
+		"outputAbbreviatedPath": "\/compiled\/js\/timeline.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 0,
+		"syntaxCheckerStyle": 0
+		},
+	"\/source\/js\/TL.Timeline.Min.js": {
+		"fileType": 64,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/TL.Timeline.Min.js",
+		"outputAbbreviatedPath": "\/compiled\/js\/timeline-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 0
+		},
+	"\/source\/js\/ui\/TL.Draggable.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/ui\/TL.Draggable.js",
+		"outputAbbreviatedPath": "\/source\/js\/ui\/min\/TL.Draggable-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/ui\/TL.MenuBar.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/ui\/TL.MenuBar.js",
+		"outputAbbreviatedPath": "\/source\/js\/ui\/min\/TL.MenuBar-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/ui\/TL.Message.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/ui\/TL.Message.js",
+		"outputAbbreviatedPath": "\/source\/js\/ui\/min\/TL.Message-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/js\/ui\/TL.Swipable.js": {
+		"fileType": 64,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/js\/ui\/TL.Swipable.js",
+		"outputAbbreviatedPath": "\/source\/js\/ui\/min\/TL.Swipable-min.js",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"syntaxCheckerStyle": 1
+		},
+	"\/source\/less\/animation\/TL.Animate.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/animation\/TL.Animate.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.Animate.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/core\/Mixins.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/core\/Mixins.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/Mixins.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/core\/Reset.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/core\/Reset.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/Reset.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/core\/TL.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/core\/TL.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.abril-droidsans.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.abril-droidsans.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.abril-droidsans.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.amatic-andika.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.amatic-andika.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.amatic-andika.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.base.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.base.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/font.base.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.bevan-pontanosans.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.bevan-pontanosans.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.bevan-pontanosans.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.bitter-raleway.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.bitter-raleway.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.bitter-raleway.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.clicker-garamond.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.clicker-garamond.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.clicker-garamond.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.dancing-ledger.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.dancing-ledger.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.dancing-ledger.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.default.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.default.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.default.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.fjalla-average.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.fjalla-average.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.fjalla-average.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.georgia-helvetica.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.georgia-helvetica.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.georgia-helvetica.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.knightlab.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.knightlab.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.knightlab.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.lustria-lato.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.lustria-lato.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.lustria-lato.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.medula-lato.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.medula-lato.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.medula-lato.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.oldstandard.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.oldstandard.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.oldstandard.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.opensans-gentiumbook.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.opensans-gentiumbook.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.opensans-gentiumbook.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.playfair-faunaone.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.playfair-faunaone.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.playfair-faunaone.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.playfair.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.playfair.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.playfair.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.pt.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.pt.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.pt.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.roboto-megrim.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.roboto-megrim.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.roboto-megrim.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.rufina-sintony.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.rufina-sintony.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.rufina-sintony.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.ubuntu.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 1,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.ubuntu.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.ubuntu.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/fonts\/font.unicaone-vollkorn.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/fonts\/font.unicaone-vollkorn.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/fonts\/font.unicaone-vollkorn.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/icons\/Icons.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/icons\/Icons.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/Icons.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/map\/leaflet\/TL.Leaflet.IE.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/map\/leaflet\/TL.Leaflet.IE.less",
+		"outputAbbreviatedPath": "\/source\/less\/map\/css\/TL.Leaflet.IE.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/map\/leaflet\/TL.Leaflet.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/map\/leaflet\/TL.Leaflet.less",
+		"outputAbbreviatedPath": "\/source\/less\/map\/css\/TL.Leaflet.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/map\/leaflet\/TL.Leaflet.Mapbox.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/map\/leaflet\/TL.Leaflet.Mapbox.less",
+		"outputAbbreviatedPath": "\/source\/less\/map\/css\/TL.Leaflet.Mapbox.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/map\/leaflet\/TL.Leaflet.MiniMap.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/map\/leaflet\/TL.Leaflet.MiniMap.less",
+		"outputAbbreviatedPath": "\/source\/less\/map\/css\/TL.Leaflet.MiniMap.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/map\/leaflet\/TL.Map.Leaflet.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/map\/leaflet\/TL.Map.Leaflet.less",
+		"outputAbbreviatedPath": "\/source\/less\/map\/css\/TL.Map.Leaflet.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/map\/TL.ImageMarker.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/map\/TL.ImageMarker.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.ImageMarker.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/map\/TL.Map.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/map\/TL.Map.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.Map.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/map\/TL.MapMarker.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/map\/TL.MapMarker.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.MapMarker.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/TL.Media.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/TL.Media.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.Media.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Blockquote.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Blockquote.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Blockquote.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Flickr.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Flickr.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Flickr.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.IFrame.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.IFrame.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.IFrame.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Image.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Image.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Image.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Instagram.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Instagram.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Instagram.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Profile.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Profile.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Profile.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Text.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Text.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Text.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Twitter.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Twitter.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Twitter.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Website.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Website.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Website.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.Wikipedia.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.Wikipedia.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.Wikipedia.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/media\/types\/TL.Media.YouTube.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/media\/types\/TL.Media.YouTube.less",
+		"outputAbbreviatedPath": "\/source\/less\/media\/css\/TL.Media.YouTube.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/slider\/TL.Slide.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/slider\/TL.Slide.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.Slide.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/slider\/TL.SlideNav.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/slider\/TL.SlideNav.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.SlideNav.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/slider\/TL.StorySlider.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/slider\/TL.StorySlider.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.StorySlider.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/themes\/dark\/TL.Theme.Dark.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/themes\/dark\/TL.Theme.Dark.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/themes\/timeline.theme.dark.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/themes\/dark\/Variables.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/themes\/dark\/Variables.less",
+		"outputAbbreviatedPath": "\/source\/less\/themes\/css\/Variables.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/timenav\/TL.TimeAxis.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/timenav\/TL.TimeAxis.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.TimeAxis.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/timenav\/TL.TimeEra.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/timenav\/TL.TimeEra.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.TimeEra.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/timenav\/TL.TimeGroup.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/timenav\/TL.TimeGroup.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.TimeGroup.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/timenav\/TL.TimeMarker.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/timenav\/TL.TimeMarker.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.TimeMarker.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/timenav\/TL.TimeNav.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/timenav\/TL.TimeNav.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.TimeNav.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/TL.Timeline.Base.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/TL.Timeline.Base.less",
+		"outputAbbreviatedPath": "\/source\/css\/TL.Timeline.Base.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/TL.Timeline.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 0,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/TL.Timeline.less",
+		"outputAbbreviatedPath": "\/compiled\/css\/timeline.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 1,
+		"outputStyle": 1,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/Typography.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/Typography.less",
+		"outputAbbreviatedPath": "\/source\/css\/Typography.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/ui\/TL.MenuBar.Button.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/ui\/TL.MenuBar.Button.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.MenuBar.Button.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/ui\/TL.MenuBar.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/ui\/TL.MenuBar.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.MenuBar.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/ui\/TL.Message.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/ui\/TL.Message.less",
+		"outputAbbreviatedPath": "\/source\/less\/css\/TL.Message.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		},
+	"\/source\/less\/Variables.less": {
+		"allowInsecureImports": 0,
+		"createSourceMap": 0,
+		"disableJavascript": 0,
+		"fileType": 1,
+		"ieCompatibility": 1,
+		"ignore": 1,
+		"ignoreWasSetByUser": 0,
+		"inputAbbreviatedPath": "\/source\/less\/Variables.less",
+		"outputAbbreviatedPath": "\/source\/css\/Variables.css",
+		"outputPathIsOutsideProject": 0,
+		"outputPathIsSetByUser": 0,
+		"outputStyle": 0,
+		"relativeURLS": 0,
+		"shouldRunAutoprefixer": 0,
+		"shouldRunBless": 0,
+		"strictImports": 0,
+		"strictMath": 0,
+		"strictUnits": 0
+		}
+	},
+"hooks": [
+	],
+"lastSavedByUser": "Zach Wise",
+"manualImportLinks": {
+	},
+"projectAttributes": {
+	"bowerAbbreviatedPath": "",
+	"displayValue": "TimelineJS3",
+	"displayValueWasSetByUser": 1,
+	"iconImageName": "harddrive_darkGray"
+	},
+"projectSettings": {
+	"alwaysUseExternalServer": 1,
+	"animateCSSInjections": 1,
+	"autoApplyPSLanguageSettingsStyle": 0,
+	"autoprefixerBrowserString": "> 1%, last 2 versions, Firefox ESR, Opera 12.1",
+	"autoSyncProjectSettingsFile": 1,
+	"browserRefreshDelay": 0,
+	"coffeeAutoOutputPathEnabled": 1,
+	"coffeeAutoOutputPathFilenamePattern": "*.js",
+	"coffeeAutoOutputPathRelativePath": "",
+	"coffeeAutoOutputPathReplace1": "",
+	"coffeeAutoOutputPathReplace2": "",
+	"coffeeAutoOutputPathStyle": 0,
+	"coffeeCreateSourceMap": 0,
+	"coffeeLintFlags2": {
+		"arrow_spacing": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"camel_case_classes": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"colon_assignment_spacing": {
+			"active": 0,
+			"flagValue": 1
+			},
+		"cyclomatic_complexity": {
+			"active": 0,
+			"flagValue": 10
+			},
+		"duplicate_key": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"empty_constructor_needs_parens": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"ensure_comprehensions": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"indentation": {
+			"active": 1,
+			"flagValue": 2
+			},
+		"line_endings": {
+			"active": 0,
+			"flagValue": 0
+			},
+		"max_line_length": {
+			"active": 0,
+			"flagValue": 150
+			},
+		"missing_fat_arrows": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"newlines_after_classes": {
+			"active": 0,
+			"flagValue": 3
+			},
+		"no_backticks": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_debugger": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_empty_functions": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"no_empty_param_list": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"no_implicit_braces": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_implicit_parens": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"no_interpolation_in_single_quotes": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"no_nested_string_interpolation": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_plusplus": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"no_private_function_fat_arrows": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_stand_alone_at": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_tabs": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_this": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"no_throwing_strings": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_trailing_semicolons": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_trailing_whitespace": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"no_unnecessary_double_quotes": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"no_unnecessary_fat_arrows": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"non_empty_constructor_needs_parens": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"prefer_english_operator": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"space_operators": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"spacing_after_comma": {
+			"active": 1,
+			"flagValue": -1
+			}
+		},
+	"coffeeMinifyOutput": 1,
+	"coffeeOutputStyle": 0,
+	"coffeeSyntaxCheckerStyle": 1,
+	"externalServerAddress": "http:\/\/localhost:8888",
+	"externalServerPreviewPathAddition": "\/Projects\/TimelineJS3\/compiled\/",
+	"genericWebpageFileExtensionsString": "html, htm, shtml, shtm, xhtml, php, jsp, asp, aspx, erb, ctp",
+	"hamlAutoOutputPathEnabled": 1,
+	"hamlAutoOutputPathFilenamePattern": "*.html",
+	"hamlAutoOutputPathRelativePath": "",
+	"hamlAutoOutputPathReplace1": "",
+	"hamlAutoOutputPathReplace2": "",
+	"hamlAutoOutputPathStyle": 0,
+	"hamlEscapeHTMLCharacters": 0,
+	"hamlNoEscapeInAttributes": 0,
+	"hamlOutputFormat": 2,
+	"hamlOutputStyle": 0,
+	"hamlUseCDATA": 0,
+	"hamlUseDoubleQuotes": 0,
+	"hamlUseUnixNewlines": 0,
+	"jadeAutoOutputPathEnabled": 1,
+	"jadeAutoOutputPathFilenamePattern": "*.html",
+	"jadeAutoOutputPathRelativePath": "",
+	"jadeAutoOutputPathReplace1": "",
+	"jadeAutoOutputPathReplace2": "",
+	"jadeAutoOutputPathStyle": 0,
+	"jadeCompileDebug": 1,
+	"jadeOutputStyle": 0,
+	"javascriptAutoOutputPathEnabled": 1,
+	"javascriptAutoOutputPathFilenamePattern": "*-min.js",
+	"javascriptAutoOutputPathRelativePath": "\/min",
+	"javascriptAutoOutputPathReplace1": "",
+	"javascriptAutoOutputPathReplace2": "",
+	"javascriptAutoOutputPathStyle": 2,
+	"javascriptCreateSourceMap": 1,
+	"javascriptOutputStyle": 1,
+	"javascriptSyntaxCheckerStyle": 1,
+	"jsCheckerReservedNamesString": "",
+	"jsHintFlags2": {
+		"asi": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"bitwise": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"boss": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"browser": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"browserify": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"camelcase": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"couch": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"curly": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"debug": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"devel": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"dojo": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"elision": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"eqeqeq": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"eqnull": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"es3": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"esnext": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"evil": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"expr": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"forin": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"freeze": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"funcscope": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"futurehostile": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"globalstrict": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"immed": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"indent": {
+			"active": 0,
+			"flagValue": 4
+			},
+		"iterator": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"jasmine": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"jquery": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"lastsemic": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"latedef": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"laxbreak": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"laxcomma": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"loopfunc": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"maxcomplexity": {
+			"active": 0,
+			"flagValue": 10
+			},
+		"maxdepth": {
+			"active": 0,
+			"flagValue": 3
+			},
+		"maxlen": {
+			"active": 0,
+			"flagValue": 150
+			},
+		"maxparams": {
+			"active": 0,
+			"flagValue": 3
+			},
+		"maxstatements": {
+			"active": 0,
+			"flagValue": 4
+			},
+		"mocha": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"mootools": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"moz": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"multistr": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"newcap": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"noarg": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"nocomma": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"node": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"noempty": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"nonbsp": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"nonew": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"nonstandard": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"notypeof": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"noyield": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"onecase": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"phantom": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"plusplus": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"proto": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"prototypejs": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"qunit": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"regexp": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"rhino": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"scripturl": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"shadow": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"shelljs": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"singleGroups": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"strict": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"sub": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"supernew": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"typed": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"undef": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"unused": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"varstmt": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"withstmt": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"worker": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"wsh": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"yui": {
+			"active": 0,
+			"flagValue": -1
+			}
+		},
+	"jsLintFlags2": {
+		"bitwise": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"browser": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"couch": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"devel": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"es6": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"eval": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"for": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"maxlen": {
+			"active": 0,
+			"flagValue": 150
+			},
+		"node": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"this": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"white": {
+			"active": 0,
+			"flagValue": -1
+			}
+		},
+	"jsonAutoOutputPathEnabled": 0,
+	"jsonAutoOutputPathFilenamePattern": "*-min.json",
+	"jsonAutoOutputPathRelativePath": "",
+	"jsonAutoOutputPathReplace1": "",
+	"jsonAutoOutputPathReplace2": "",
+	"jsonAutoOutputPathStyle": 0,
+	"jsonOrderOutput": 0,
+	"jsonOutputStyle": 1,
+	"kitAutoOutputPathEnabled": 1,
+	"kitAutoOutputPathFilenamePattern": "*.html",
+	"kitAutoOutputPathRelativePath": "",
+	"kitAutoOutputPathReplace1": "",
+	"kitAutoOutputPathReplace2": "",
+	"kitAutoOutputPathStyle": 0,
+	"lessAllowInsecureImports": 0,
+	"lessAutoOutputPathEnabled": 1,
+	"lessAutoOutputPathFilenamePattern": "*.css",
+	"lessAutoOutputPathRelativePath": "..\/css",
+	"lessAutoOutputPathReplace1": "less",
+	"lessAutoOutputPathReplace2": "css",
+	"lessAutoOutputPathStyle": 2,
+	"lessCreateSourceMap": 0,
+	"lessDisableJavascript": 0,
+	"lessIeCompatibility": 1,
+	"lessOutputStyle": 0,
+	"lessRelativeURLS": 0,
+	"lessStrictImports": 0,
+	"lessStrictMath": 0,
+	"lessStrictUnits": 0,
+	"markdownAutoOutputPathEnabled": 1,
+	"markdownAutoOutputPathFilenamePattern": "*.html",
+	"markdownAutoOutputPathRelativePath": "",
+	"markdownAutoOutputPathReplace1": "",
+	"markdownAutoOutputPathReplace2": "",
+	"markdownAutoOutputPathStyle": 0,
+	"markdownCriticStyle": 0,
+	"markdownEnableFootnotes": 0,
+	"markdownEnableLabels": 1,
+	"markdownEnableSmartQuotes": 1,
+	"markdownEscapeLineBreaks": 0,
+	"markdownMaskEmailAddresses": 1,
+	"markdownOutputFormat": 0,
+	"markdownOutputStyle": 0,
+	"markdownParseMetadata": 1,
+	"markdownProcessHTML": 0,
+	"markdownRandomFootnoteNumbers": 0,
+	"markdownUseCompatibilityMode": 0,
+	"reloadFileURLs": 0,
+	"sassAutoOutputPathEnabled": 1,
+	"sassAutoOutputPathFilenamePattern": "*.css",
+	"sassAutoOutputPathRelativePath": "..\/css",
+	"sassAutoOutputPathReplace1": "sass",
+	"sassAutoOutputPathReplace2": "css",
+	"sassAutoOutputPathStyle": 2,
+	"sassCreateSourceMap": 0,
+	"sassDebugStyle": 0,
+	"sassDecimalPrecision": 5,
+	"sassOutputStyle": 0,
+	"sassUseLibsass": 0,
+	"shouldRunAutoprefixer": 0,
+	"shouldRunBless": 0,
+	"skippedItemsString": "_cache, logs, _logs, cache, .git, log, \/website, .svn, .hg",
+	"slimAutoOutputPathEnabled": 1,
+	"slimAutoOutputPathFilenamePattern": "*.html",
+	"slimAutoOutputPathRelativePath": "",
+	"slimAutoOutputPathReplace1": "",
+	"slimAutoOutputPathReplace2": "",
+	"slimAutoOutputPathStyle": 0,
+	"slimCompileOnly": 0,
+	"slimLogicless": 0,
+	"slimOutputFormat": 0,
+	"slimOutputStyle": 1,
+	"slimRailsCompatible": 0,
+	"stylusAutoOutputPathEnabled": 1,
+	"stylusAutoOutputPathFilenamePattern": "*.css",
+	"stylusAutoOutputPathRelativePath": "..\/css",
+	"stylusAutoOutputPathReplace1": "stylus",
+	"stylusAutoOutputPathReplace2": "css",
+	"stylusAutoOutputPathStyle": 2,
+	"stylusCreateSourceMap": 0,
+	"stylusDebugStyle": 0,
+	"stylusImportCSS": 0,
+	"stylusOutputStyle": 0,
+	"stylusResolveRelativeURLS": 0,
+	"typescriptAutoOutputPathEnabled": 1,
+	"typescriptAutoOutputPathFilenamePattern": "*.js",
+	"typescriptAutoOutputPathRelativePath": "\/js",
+	"typescriptAutoOutputPathReplace1": "",
+	"typescriptAutoOutputPathReplace2": "",
+	"typescriptAutoOutputPathStyle": 2,
+	"typescriptCreateDeclarationFile": 0,
+	"typescriptCreateSourceMap": 0,
+	"typescriptJSXMode": 0,
+	"typescriptMinifyOutput": 0,
+	"typescriptModuleResolutionType": 0,
+	"typescriptModuleType": 0,
+	"typescriptNoImplicitAny": 0,
+	"typescriptPreserveConstEnums": 0,
+	"typescriptRemoveComments": 0,
+	"typescriptSuppressImplicitAnyIndexErrors": 0,
+	"typescriptTargetECMAVersion": 0,
+	"uglifyDefinesString": "",
+	"uglifyFlags2": {
+		"ascii-only": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"bare-returns": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"booleans": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"bracketize": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"cascade": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"comments": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"comparisons": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"compress": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"conditionals": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"dead_code": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"drop_console": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"drop_debugger": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"eval": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"evaluate": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"hoist_funs": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"hoist_vars": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"if_return": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"indent-level": {
+			"active": 0,
+			"flagValue": 4
+			},
+		"indent-start": {
+			"active": 0,
+			"flagValue": 0
+			},
+		"inline-script": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"join_vars": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"keep_fargs": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"keep_fnames": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"loops": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"mangle": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"max-line-len": {
+			"active": 1,
+			"flagValue": 32000
+			},
+		"negate_iife": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"properties": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"pure_getters": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"quote-keys": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"screw-ie8": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"semicolons": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"sequences": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"sort": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"space-colon": {
+			"active": 1,
+			"flagValue": -1
+			},
+		"toplevel": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"unsafe": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"unused": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"warnings": {
+			"active": 0,
+			"flagValue": -1
+			},
+		"width": {
+			"active": 1,
+			"flagValue": 80
+			}
+		},
+	"uglifyReservedNamesString": "$",
+	"websiteRelativeRoot": ""
+	},
+"settingsFileVersion": "2"
+}
diff --git a/public/opac/TimelineJS3-3.5.1/config.json b/public/opac/TimelineJS3-3.5.1/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..54d34b8869c1f088297de4847208ac9c8074af9d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/config.json
@@ -0,0 +1,169 @@
+//
+// TimelineJS3 configuration
+//
+// All file/directory paths are relative to the project directory.
+//
+// Regular expressions are in python regular expression format, but backslashes
+// must be escaped for JSON.  When used to match files, matching will take
+// place against the the file/directory path realtive to the project directory.
+//
+{
+    //
+    // name of the project as it will appear in the cdn and css/js banners
+    //
+    "name": "timeline3",
+    //
+    // author string to appear in css/js banners
+    //
+    "author": "Northwestern University Knight Lab",
+    //
+    // build
+    //
+    // These commands will be run the exact order in which they appear.
+    // This order is determined in code by fabfile/__init__.py.
+    //
+    "build": {
+        // copy files
+        // input: list of objects specifying inputs and outputs
+        //      @src: source file/directory
+        //      @dst: destination file/directory
+        //      @regex: regular expression to match files (if @src is directory)
+        //
+        "copy": [
+            {
+                "src": "website",
+                "dst": "build",
+                "regex": "(css/.*|img/.*|js/.*|.*\\.(ico))$"
+            },
+            {
+                "src": "source",
+                "dst": "build",
+                "regex": "(css/.*|img/.*|.*\\.(ico|html)|gfx/.*\\.(png|jpg|gif))$"
+            },
+            {
+                "src": "source/js/language/locale",
+                "dst": "build/js/locale",
+                "regex": ".*\\.json"
+            },
+            {
+                "src": "source/embed",
+                "dst": "build/embed"
+            }
+        ],
+        // compile less files
+        // input: list of objects specifying inputs and output
+        // input: list of objects, where
+        //      @src: source file/directory
+        //      @dst: destination file/directory
+        //      @regex: regular expression to match files (if @src is directory)
+        //      @opt: options to pass to lessc
+        "lessc": [
+            {
+                "src": "source/less/TL.Timeline.less",
+                "dst": "build/css/timeline.css",
+                "opt": "--clean-css=--s0"
+            },
+            {
+                "src": "source/less/themes/dark/TL.Theme.Dark.less",
+                "dst": "build/css/themes/timeline.theme.dark.css",
+                "opt": "--clean-css=--s0"
+            },
+            {
+                "src": "source/less/fonts",
+                "dst": "build/css/fonts",
+                "regex": ".*(?<!font.base)\\.less"
+            }
+        ],
+        //
+        // process codekit style imports on files
+        // input: list of objects specifying inputs and output
+        //      @src:    source file
+        //      @dst:    destination file
+        //
+        "process": [
+            {
+                "src": "source/js/TL.Timeline.js",
+                "dst": "build/js/timeline.js"
+            },
+            {
+                "src": "source/js/embed/Embed.CDN.js",
+                "dst": "build/js/timeline-embed-cdn.js"
+            },
+            {
+                "src": "source/js/embed/Embed.js",
+                "dst": "build/js/timeline-embed.js"
+            }
+        ],
+        // concatenate files
+        // input: list of objects, where
+        //      @src: list of source files
+        //      @dst: destination file
+        "concat": [
+        ],
+        // minify files using uglifyjs
+        // input list of objects specifying inputs and output
+        //      @src:   source file/directory
+        //      @dst:   destination file/directory
+        //      @opt:   options to pass to uglifyjs
+        //      @ext:   extension to prepend to destination file name (optional, default = none)
+        //
+        "minify": [
+            {
+                "src": "build/js/timeline.js",
+                "dst": "build/js/timeline-min.js",
+                "opt": "--comments --mangle --reserved $ --compress booleans,cascade,comparisons,conditionals,drop_debugger,evaluate,hoist_funs,if_return,join_vars,loops,properties,sequences"
+            },
+            {
+                "src": "source/js/library/moment.js",
+                "dst": "build/js/library/moment.js",
+                "opt": "--comments --mangle --reserved $ --compress booleans,cascade,comparisons,conditionals,drop_debugger,evaluate,hoist_funs,if_return,join_vars,loops,properties,sequences"
+            }
+        ],
+        //
+        // process usermin style build blocks on html files
+        // input: list of files/directorys to process in-place
+        //
+        "usemin": [
+            "build/embed"
+        ],
+        //
+        // banner
+        // input: list of objects, where
+        //      @src: source file/directory
+        //      @regex: regular expression to match files (if @src is directory)
+        "banner": [
+            {
+                "src": "build",
+                "regex": "(js|css)/.*\\.(css|js)$",
+                "template": [
+                    "/*",
+                    "    TimelineJS - ver. %(version)s - %(date)s",
+                    "    Copyright (c) 2012-2016 Northwestern University",
+                    "    a project of the Northwestern University Knight Lab, originally created by Zach Wise",
+                    "    https://github.com/NUKnightLab/TimelineJS3",
+                    "    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.",
+                    "    If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.",
+                    "*/"
+                ]
+            }
+        ]
+    },
+    //
+    // stage
+    // input: regular expression to match files in the build directory
+    //
+    "stage": [{
+        "src": "build",
+        "regex": "(css/.*|js/.*|gfx/.*|embed/.*)$"
+    }],
+    //
+    // deploy
+    // input: {
+    //   env: {bucket: name of the S3 bucket that will host the website}
+    // }
+    //
+    "deploy": {
+        "stg": {"bucket": "timeline.knilab.com", "usemin_context": {"cdn": "dev"}, "deploy_context": {"cdn": "dev"}},
+        "prd": {"bucket": "timeline.knightlab.com", "usemin_context": {"cdn": "latest"}, "deploy_context": {"cdn": "latest"}}
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/fabfile.py b/public/opac/TimelineJS3-3.5.1/fabfile.py
new file mode 100644
index 0000000000000000000000000000000000000000..793e26677352969060be39bb18161111ee7b3455
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/fabfile.py
@@ -0,0 +1,56 @@
+from os.path import abspath, basename, dirname, join
+import sys
+from fabric.api import env
+from fabric.decorators import roles, runs_once, task
+import distutils.core
+
+#
+# Project-specific settings, alter as needed
+#
+env.project_name = basename(dirname(__file__))
+env.django = False
+
+#
+# Add paths
+#
+def add_paths(*args):
+    """Make paths are in sys.path."""
+    for p in args:
+        if p not in sys.path:
+            sys.path.append(p)
+
+project_path = dirname(abspath(__file__))
+repos_path = dirname(project_path)
+
+add_paths(project_path, repos_path)
+
+#
+# Import from fablib
+#
+from fablib import *
+
+@task
+def stage_wp():
+    """* Use to copy over CSS/JS files to WP Plugin directory"""
+    print("This will copy over the css/js folders from within build to the Wordpress Plugin Directory")
+    if not confirm('Is your TimelineJS-Wordpress-Plugin Directory in the same directory as where TimelineJS is located? (y/n) '):
+    	abort('Cancelling')
+
+    # # Copy over CSS files
+    build_css_dir = "build/css"
+    wp_css_dir = "../TimelineJS-Wordpress-Plugin/v3/css"
+    distutils.dir_util.copy_tree(build_css_dir, wp_css_dir)
+
+    # # Copy over JS files
+    build_js_dir = "build/js"
+    wp_js_dir = "../TimelineJS-Wordpress-Plugin/v3/js"
+    distutils.dir_util.copy_tree(build_js_dir, wp_js_dir)
+
+    print("\nRemember to push the updated files in TimelineJS-Wordpress-Plugin as well....")
+
+@task
+def stage_compiled():
+    """Copy CSS/JS from build to compiled"""
+    # # Copy over CSS files
+    distutils.dir_util.copy_tree("build/css", "compiled/css")
+    distutils.dir_util.copy_tree("build/js", "compiled/js")
diff --git a/public/opac/TimelineJS3-3.5.1/package.json b/public/opac/TimelineJS3-3.5.1/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..904806153b92d4184da484fa1cb52786338d2437
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/package.json
@@ -0,0 +1,21 @@
+{
+  "name": "TimelineJS3",
+  "version": "3.4.0",
+  "description": "TimelineJS v3: A Storytelling Timeline built in JavaScript.",
+  "dependencies": {
+    "less": "^2.1.1",
+    "less-plugin-clean-css": "^1.2.0"
+  },
+  "devDependencies": {},
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/NUKnightLab/TimelineJS3.git"
+  },
+  "keywords": [],
+  "author": "",
+  "license": "Mozilla Public License 2.0",
+  "bugs": {
+    "url": "https://github.com/NUKnightLab/TimelineJS3/issues"
+  },
+  "homepage": "https://github.com/NUKnightLab/TimelineJS3#readme"
+}
diff --git a/public/opac/TimelineJS3-3.5.1/requirements.txt b/public/opac/TimelineJS3-3.5.1/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f574b9048fc8a23f767ddbab4d7398fe99ee93a4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/requirements.txt
@@ -0,0 +1,11 @@
+Flask==0.10.1
+Jinja2==2.7.3
+MarkupSafe==0.23
+Werkzeug==0.9.6
+boto==2.32.1
+itsdangerous==0.24
+wsgiref==0.1.2
+Fabric==1.10.0
+pyOpenSSL==0.15.1
+
+pycrypto==2.6.1
diff --git a/public/opac/TimelineJS3-3.5.1/source/css/icons/icons.html b/public/opac/TimelineJS3-3.5.1/source/css/icons/icons.html
new file mode 100644
index 0000000000000000000000000000000000000000..91f02997069e0450765c7f1edd36cd08287305f8
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/css/icons/icons.html
@@ -0,0 +1,1117 @@
+<!doctype html>
+<html>
+<head>
+	<meta charset="utf-8">
+	<title>IcoMoon Demo</title>
+	<meta name="description" content="An Icon Font Generated By IcoMoon.io">
+	<meta name="viewport" content="width=device-width">
+	<style>
+		body {
+			padding: 0;
+			margin: 0;
+			font-family: sans-serif;
+			font-size: 1em;
+			line-height: 1.5;
+			color: #555;
+			background: #fff;
+		}
+		h1 {
+			font-size: 1.5em;
+			font-weight: normal;
+		}
+		small {
+			font-size: .66666667em;
+		}
+		a {
+			color: #e74c3c;
+			text-decoration: none;
+		}
+		a:hover, a:focus {
+			box-shadow: 0 1px #e74c3c;
+		}
+		.bshadow0, input {
+			box-shadow: inset 0 -2px #e7e7e7;
+		}
+		input:hover {
+			box-shadow: inset 0 -2px #ccc;
+		}
+		input, fieldset {
+			font-size: 1em;
+			margin: 0;
+			padding: 0;
+			border: 0;
+		}
+		input {
+			color: inherit;
+			line-height: 1.5;
+			height: 1.5em;
+			padding: .25em 0;
+		}
+		input:focus {
+			outline: none;
+			box-shadow: inset 0 -2px #449fdb;
+		}
+		.glyph {
+			font-size: 16px;
+			width: 15em;
+			padding-bottom: 1em;
+			margin-right: 4em;
+			margin-bottom: 1em;
+			float: left;
+			overflow: hidden;
+		}
+		.liga {
+			width: 80%;
+			width: calc(100% - 2.5em);
+		}
+		.talign-right {
+			text-align: right;
+		}
+		.talign-center {
+			text-align: center;
+		}
+		.bgc1 {
+			background: #f1f1f1;
+		}
+		.fgc1 {
+			color: #999;
+		}
+		.fgc0 {
+			color: #000;
+		}
+		p {
+			margin-top: 1em;
+			margin-bottom: 1em;
+		}
+		.mvm {
+			margin-top: .75em;
+			margin-bottom: .75em;
+		}
+		.mtn {
+			margin-top: 0;
+		}
+		.mtl, .mal {
+			margin-top: 1.5em;
+		}
+		.mbl, .mal {
+			margin-bottom: 1.5em;
+		}
+		.mal, .mhl {
+			margin-left: 1.5em;
+			margin-right: 1.5em;
+		}
+		.mhmm {
+			margin-left: 1em;
+			margin-right: 1em;
+		}
+		.mls {
+			margin-left: .25em;
+		}
+		.ptl {
+			padding-top: 1.5em;
+		}
+		.pbs, .pvs {
+			padding-bottom: .25em;
+		}
+		.pvs, .pts {
+			padding-top: .25em;
+		}
+		.clearfix {
+			zoom: 1;
+		}
+		.unit {
+			float: left;
+		}
+		.unitRight {
+			float: right;
+		}
+		.size1of2 {
+			width: 50%;
+		}
+		.size1of1 {
+			width: 100%;
+		}
+		.clearfix:before, .clearfix:after {
+			content: " ";
+			display: table;
+		}
+		.clearfix:after {
+			clear: both;
+		}
+		.noLiga-true {
+			display: none;
+		}
+		.textbox0 {
+			width: 3em;
+			background: #f1f1f1;
+			padding: .25em .5em;
+			line-height: 1.5;
+			height: 1.5em;
+		}
+		#testDrive {
+			padding-top: 24px;
+		}
+		.fs0 {
+			font-size: 16px;
+		}
+		.fs1 {
+			font-size: 32px;
+		}
+		.fs2 {
+			font-size: 32px;
+		}
+		.fs3 {
+			font-size: 32px;
+		}
+		.fs4 {
+			font-size: 32px;
+		}
+		
+		@font-face {
+			font-family: 'tl-icons';
+			src:url('fonts/tl-icons.eot');
+			src:url('fonts/tl-icons.eot?#iefix') format('embedded-opentype'),
+				url('fonts/tl-icons.ttf') format('truetype'),
+				url('fonts/tl-icons.woff') format('woff'),
+				url('fonts/tl-icons.svg#tl-icons') format('svg');
+			font-weight: normal;
+			font-style: normal;
+		}
+
+		[class^="tl-icon-"], [class*=" tl-icon-"] {
+			font-family: 'tl-icons';
+			speak: none;
+			font-style: normal;
+			font-weight: normal;
+			font-variant: normal;
+			text-transform: none;
+			line-height: 1;
+
+			/* Better Font Rendering =========== */
+			-webkit-font-smoothing: antialiased;
+			-moz-osx-font-smoothing: grayscale;
+		}
+
+		.tl-icon-vine:before {
+			content: "\e64d";
+		}
+		.tl-icon-wikipedia:before {
+			content: "\e64e";
+		}
+		.tl-icon-chevron-right:before {
+			content: "\e64f";
+		}
+		.tl-icon-chevron-left:before {
+			content: "\e650";
+		}
+		.tl-icon-youtube:before {
+			content: "\e651";
+		}
+		.tl-icon-foursquare:before {
+			content: "\e652";
+		}
+		.tl-icon-camera-retro:before {
+			content: "\e653";
+		}
+		.tl-icon-doc:before {
+			content: "\e654";
+		}
+		.tl-icon-weibo:before {
+			content: "\e655";
+		}
+		.tl-icon-resize-horizontal:before {
+			content: "\e656";
+		}
+		.tl-icon-resize-vertical:before {
+			content: "\e657";
+		}
+		.tl-icon-resize-full:before {
+			content: "\e658";
+		}
+		.tl-icon-resize-small:before {
+			content: "\e659";
+		}
+		.tl-icon-twitter:before {
+			content: "\e62b";
+		}
+		.tl-icon-google-plus:before {
+			content: "\e62c";
+		}
+		.tl-icon-video:before {
+			content: "\e62d";
+		}
+		.tl-icon-plaintext:before {
+			content: "\e62e";
+		}
+		.tl-icon-image-v2:before {
+			content: "\e62f";
+		}
+		.tl-icon-quote-v2:before {
+			content: "\e630";
+		}
+		.tl-icon-zoom-in:before {
+			content: "\e631";
+		}
+		.tl-icon-zoom-out:before {
+			content: "\e632";
+		}
+		.tl-icon-list:before {
+			content: "\e633";
+		}
+		.tl-icon-music:before {
+			content: "\e634";
+		}
+		.tl-icon-location:before {
+			content: "\e635";
+		}
+		.tl-icon-web:before {
+			content: "\e636";
+		}
+		.tl-icon-share-v2:before {
+			content: "\e637";
+		}
+		.tl-icon-soundcloud:before {
+			content: "\e639";
+		}
+		.tl-icon-video-v2:before {
+			content: "\e63a";
+		}
+		.tl-icon-tumblr:before {
+			content: "\e63b";
+		}
+		.tl-icon-lastfm:before {
+			content: "\e63c";
+		}
+		.tl-icon-github:before {
+			content: "\e63d";
+		}
+		.tl-icon-goback:before {
+			content: "\e63e";
+		}
+		.tl-icon-doc-v2:before {
+			content: "\e63f";
+		}
+		.tl-icon-googledrive:before {
+			content: "\e640";
+		}
+		.tl-icon-facebook:before {
+			content: "\e641";
+		}
+		.tl-icon-flickr:before {
+			content: "\e642";
+		}
+		.tl-icon-dribbble:before {
+			content: "\e643";
+		}
+		.tl-icon-image:before {
+			content: "\e605";
+		}
+		.tl-icon-vimeo:before {
+			content: "\e606";
+		}
+		.tl-icon-instagram:before {
+			content: "\e644";
+		}
+		.tl-icon-pinterest:before {
+			content: "\e645";
+		}
+		.tl-icon-arrow-left:before {
+			content: "\e646";
+		}
+		.tl-icon-arrow-down:before {
+			content: "\e647";
+		}
+		.tl-icon-arrow-up:before {
+			content: "\e648";
+		}
+		.tl-icon-arrow-right:before {
+			content: "\e649";
+		}
+		.tl-icon-share:before {
+			content: "\e64a";
+		}
+		.tl-icon-quote:before {
+			content: "\e64b";
+		}
+		.tl-icon-evernote:before {
+			content: "\e64c";
+		}
+		.tl-icon-mappin:before {
+			content: "\e600";
+		}
+		.tl-icon-swipe-right:before {
+			content: "\e601";
+		}
+		.tl-icon-swipe-left:before {
+			content: "\e602";
+		}
+		.tl-icon-touch-spread:before {
+			content: "\e603";
+		}
+		.tl-icon-touch-pinch:before {
+			content: "\e604";
+		}
+
+		
+	</style>
+</head>
+	<body>
+		<div class="bgc1 clearfix">
+			<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> tl-icons <small class="fgc1">(Glyphs:&nbsp;53)</small></h1>
+		</div>
+		<div class="clearfix mhl ptl">
+			<h1 class="mvm mtn bshadow fgc1">Grid Size: 14</h1>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-vine"></span><span class="mls"> icon-vine</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64d" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64d;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-wikipedia"></span><span class="mls"> icon-wikipedia</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64e" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64e;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-chevron-right"></span><span class="mls"> icon-chevron-right</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64f" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64f;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-chevron-left"></span><span class="mls"> icon-chevron-left</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e650" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe650;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-youtube"></span><span class="mls"> icon-youtube</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e651" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe651;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-foursquare"></span><span class="mls"> icon-foursquare</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e652" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe652;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-camera-retro"></span><span class="mls"> icon-camera-retro</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e653" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe653;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-doc"></span><span class="mls"> icon-doc</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e654" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe654;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-weibo"></span><span class="mls"> icon-weibo</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e655" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe655;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-resize-horizontal"></span><span class="mls"> icon-resize-horizontal</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e656" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe656;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-resize-vertical"></span><span class="mls"> icon-resize-vertical</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e657" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe657;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-resize-full"></span><span class="mls"> icon-resize-full</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e658" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe658;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs1">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-resize-small"></span><span class="mls"> icon-resize-small</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e659" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe659;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+		</div>
+		<div class="clearfix mhl ptl">
+			<h1 class="mvm mtn bshadow fgc1">Grid Size: 16</h1>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-twitter"></span><span class="mls"> icon-twitter</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62b" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62b;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-google-plus"></span><span class="mls"> icon-google-plus</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62c" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62c;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-video"></span><span class="mls"> icon-video</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62d" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62d;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-plaintext"></span><span class="mls"> icon-plaintext</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62e" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62e;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-image-v2"></span><span class="mls"> icon-image-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e62f" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe62f;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-quote-v2"></span><span class="mls"> icon-quote-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e630" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe630;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-zoom-in"></span><span class="mls"> icon-zoom-in</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e631" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe631;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-zoom-out"></span><span class="mls"> icon-zoom-out</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e632" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe632;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-list"></span><span class="mls"> icon-list</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e633" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe633;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-music"></span><span class="mls"> icon-music</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e634" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe634;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-location"></span><span class="mls"> icon-location</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e635" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe635;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-web"></span><span class="mls"> icon-web</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e636" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe636;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-share-v2"></span><span class="mls"> icon-share-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e637" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe637;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-soundcloud"></span><span class="mls"> icon-soundcloud</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e639" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe639;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-video-v2"></span><span class="mls"> icon-video-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63a" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63a;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-tumblr"></span><span class="mls"> icon-tumblr</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63b" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63b;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-lastfm"></span><span class="mls"> icon-lastfm</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63c" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63c;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-github"></span><span class="mls"> icon-github</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63d" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63d;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-goback"></span><span class="mls"> icon-goback</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63e" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63e;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-doc-v2"></span><span class="mls"> icon-doc-v2</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e63f" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe63f;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-googledrive"></span><span class="mls"> icon-googledrive</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e640" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe640;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-facebook"></span><span class="mls"> icon-facebook</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e641" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe641;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-flickr"></span><span class="mls"> icon-flickr</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e642" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe642;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-dribbble"></span><span class="mls"> icon-dribbble</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e643" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe643;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-image"></span><span class="mls"> icon-image</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e605" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe605;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs2">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-vimeo"></span><span class="mls"> icon-vimeo</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e606" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe606;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+		</div>
+		<div class="clearfix mhl ptl">
+			<h1 class="mvm mtn bshadow fgc1">Grid Size: 20</h1>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-instagram"></span><span class="mls"> icon-instagram</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e644" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe644;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-pinterest"></span><span class="mls"> icon-pinterest</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e645" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe645;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-arrow-left"></span><span class="mls"> icon-arrow-left</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e646" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe646;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-arrow-down"></span><span class="mls"> icon-arrow-down</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e647" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe647;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-arrow-up"></span><span class="mls"> icon-arrow-up</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e648" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe648;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-arrow-right"></span><span class="mls"> icon-arrow-right</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e649" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe649;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-share"></span><span class="mls"> icon-share</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64a" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64a;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-quote"></span><span class="mls"> icon-quote</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64b" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64b;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs3">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-evernote"></span><span class="mls"> icon-evernote</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e64c" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe64c;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+		</div>
+		<div class="clearfix mhl ptl">
+			<h1 class="mvm mtn bshadow fgc1">Grid Size: Unknown</h1>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-mappin"></span><span class="mls"> icon-mappin</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e600" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe600;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-swipe-right"></span><span class="mls"> icon-swipe-right</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e601" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe601;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-swipe-left"></span><span class="mls"> icon-swipe-left</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e602" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe602;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-touch-spread"></span><span class="mls"> icon-touch-spread</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e603" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe603;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+			<div class="glyph fs4">
+				<div class="clearfix bshadow0 pbs">
+					<span class="tl-icon-touch-pinch"></span><span class="mls"> icon-touch-pinch</span>
+				</div>
+				<fieldset class="fs0 size1of1 clearfix">
+					<input type="text" readonly value="e604" class="unit size1of2" />
+					<input type="text" maxlength="1" readonly value="&#xe604;" class="unitRight size1of2 talign-right" />
+				</fieldset>
+				<div class="fs0 bshadow0 clearfix noLiga-true">
+					<span class="unit pvs fgc1">liga: </span>
+					<input type="text" readonly value="" class="liga unitRight" />
+				</div>
+			</div>
+		</div>
+
+		<!--[if gt IE 8]><!-->
+		<div class="mhl clearfix mbl">
+			<h1>Font Test Drive</h1>
+			<label>
+				Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
+				min="8" value="48" />
+				px
+			</label>
+			<input id="testText" type="text" class="phl size1of1 mvl"
+			placeholder="Type some text to test..."/>
+			</label>
+			<div id="testDrive" class="icon-">&nbsp;
+			</div>
+		</div>
+		<!--<![endif]-->
+		<div class="bgc1 clearfix">
+			<p class="mhl">Generated by <a href="http://icomoon.io/app">IcoMoon</a></p>
+		</div>
+	<script>
+		if (!('boxShadow' in document.body.style)) {
+			document.body.setAttribute('class', 'noBoxShadow');
+		}
+
+		document.body.addEventListener("click", function(e) {
+			var target = e.target;
+			if (target.tagName === "INPUT" &&
+				target.getAttribute('class').indexOf('liga') === -1) {
+				target.select();
+			}
+		});
+
+		(function() {
+			var fontSize = document.getElementById('fontSize'),
+				testDrive = document.getElementById('testDrive'),
+				testText = document.getElementById('testText');
+			function updateTest() {
+				testDrive.innerHTML = testText.value || String.fromCharCode(160);
+				if (window.icomoonLiga) {
+					window.icomoonLiga(testDrive);
+				}
+			}
+			function updateSize() {
+				testDrive.style.fontSize = fontSize.value + 'px';
+			}
+			fontSize.addEventListener('change', updateSize, false);
+			testText.addEventListener('input', updateTest, false);
+			testText.addEventListener('change', updateTest, false);
+			updateSize();
+		}());
+	
+	
+	</script>
+</body>
+</html>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.eot b/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.eot
new file mode 100644
index 0000000000000000000000000000000000000000..179ed2d3d6d1c1b10a53e3c620f57cc69c03764d
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.eot differ
diff --git a/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.svg b/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ff7e2e20b0ca2bc8271d3377a69fe8c3747b4fb6
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.svg
@@ -0,0 +1,63 @@
+<?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>Generated by IcoMoon</metadata>
+<defs>
+<font id="ti-icons" horiz-adv-x="1024">
+<font-face units-per-em="1024" ascent="960" descent="-64" />
+<missing-glyph horiz-adv-x="1024" />
+<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
+<glyph unicode="&#xe600;" d="M240.528 217.598h261.352l-130.673-281.606-130.68 281.606zM179.198 960h383.999c98.969 0 179.205-80.236 179.205-179.198v-384.006c0-98.969-80.228-179.198-179.205-179.198h-383.999c-98.969 0-179.198 80.228-179.198 179.198v384.006c0 98.962 80.228 179.198 179.198 179.198z" horiz-adv-x="742" />
+<glyph unicode="&#xe601;" d="M681.974 701.665l151.347 131.328-145.439 123.904-9.759-68.362c-0.42-0.164-144.189 3.113-252.078-22.446-128.256-30.382-235.151-71.127-234.578-74.056 0.369-1.905 123.699 26.276 270.94 23.788 118.006-1.997 222.382-36.065 222.382-36.065l-2.816-78.090zM676.915 833.72c1.065 29.645 25.969 52.808 55.613 51.732 29.655-1.075 52.797-25.979 51.732-55.624s-25.979-52.808-55.624-51.732c-29.635 1.085-52.787 25.979-51.722 55.624zM376.023 428.902c0 0 5.448 10.711 11.919 19.251 12.042 15.903 31.703 41.267 49.94 75.223 22.067 41.103 27.341 57.702 53.074 82.35 18.309 17.531 101.018 123.863 123.72 156.068 26.399 37.468 73.114 91.812 87.030 100.014 32.205 18.944 51.272 9.533 65.075-16.855 3.85-7.363 2.54-15.401-2.017-27.945-6.676-18.074-13.199-24.269-24.934-40.223-16.937-23.030-43.244-53.821-47.821-62.822-13.998-27.607-62.73-98.867-62.73-98.867s35.154 30.321 78.121 19.528c24.125-8.899 46.981-22.026 48.835-39.055 3.574-32.983 0-58.593 0-58.593s29.297-1.423 39.066-29.297c9.759-27.873-4.014-78.766-4.014-78.766s14.899-5.898 21.975-29.481c7.076-23.583 6.298-64.85 7.731-75.151 2.836-20.613 3.236-7.68 2.437-22.221-0.215-3.625 0.379-21.146-9.226-43.489-29.030-67.461-94.249-191.744-98.693-213.852-1.638-8.12 1.966-21.023 0.973-27.474-2.529-16.927-7.506-22.477-3.932-27.464 4.925-6.871-0.696-5.97-5.151-19.231-4.444-13.23-295.025-62.863-332.032 19.528-12.431 27.699-16.599 71.301-34.355 105.144-9.574 18.248-43.868 62.034-72.53 126.546-24.515 55.163-43.561 132.168-45.885 148.419-3.676 25.723 15.841 61.891 26.644 101.724 8.991 33.167 16.978 69.714 25.641 76.493 27.648 21.637 51.466 25.416 51.466 25.416s7.967 6.861 11.069 7.895c3.113 1.034 22.804 39.844 45.261 40.868 12.82 0.584 23.142-8.581 27.638-31.59 1.29-6.615 1.331-20.009-1.034-33.659-2.56-14.674-15.124-29.348-24.617-45.117-12.308-20.449-28.948-25.344-28.826-24.084-1.085-6.738 7.567-12.933 2.847-28.979-4.884-16.548-11.039-12.145-12.616-19.855 0 0 14.131 2.785 19.528 0 4.649-2.376 10.424-10.394 10.424-10.394z" />
+<glyph unicode="&#xe602;" d="M143.036 699.751l-143.036 137.111 152.096 123.138 5.741-69.879c0.398-0.184 143.782 0.051 249.738-28.315 125.977-33.739 230.055-77.57 229.319-80.543-0.48-1.931-121.677 29.449-268.472 30.092-117.663 0.501-223.62-31.972-223.62-31.972l-1.767-79.634zM101.105 889.171c-29.582-0.449-54.107-25.343-54.771-55.578s22.789-54.383 52.371-53.923c29.592 0.449 54.117 25.332 54.781 55.568 0.664 30.246-22.789 54.383-52.381 53.933zM356.277 24.878c-27.672 14.341-45.874 12.636-99.307 35.384-56.783 24.188-121.82 59.112-139.41 78.857-16.354 18.356-30.94 56.416-46.589 86.631-17.018 32.901-34.413 57.866-34.546 73.607-0.153 16.435 12.799 37.845 19.878 68.806 5.935 25.976 0.388 54.066 11.471 68.867 12.83 17.13 80.522-12.901 79.429-104.169 21.114-26.722 31.318-52.013 31.318-52.013l12.799 4.178c0-0.194-0.97 175.335-22.768 237.154-9.694 27.498-32.023 87.478-62.401 155.008-31.87 70.839-50.185 161.351-25.935 177.766 49.613 33.555 55.343-25.782 82.545-78.193 11.992-23.116 39.132-44.883 49.878-66.028 18.897-37.171 35.976-64.475 36.793-64.077 3.422 1.645-4.321 47.079 35.435 72.146 21.277 13.422 55.701-6.139 73.627-17.477 47.386-29.949 47.876-46.395 46.998-43.137 0 0 29.173 11.154 53.024-0.633 41.032-20.286 56.395-65.721 53.699-65.486 0 0 15.414 7.273 37.753 1.164 48.867-13.371 57.406-66.273 71.503-87.867 27.672-42.391 79.664-235.775 74.628-306.757-2.574-36.231 37.529-74.608 16.711-135.467-41.431-121.146-265.020-150.738-318.075-109.828-7.395 5.69-10.787 57.253-38.458 71.564z" horiz-adv-x="719" />
+<glyph unicode="&#xe603;" d="M306.34 615.24c0 0-49.152-62.198-93.164-128.215-36.188-54.272-68.792-114.698-68.792-114.698l-67.308 17.49c0 0 30.126-233.103 41.83-234.373 11.684-1.27 182.446 148.613 182.446 148.613-1.772-0.020-66.673 28.191-66.673 28.191s11.223 62.935 27.095 125.614c19.569 77.281 44.564 157.379 44.564 157.379zM174.141 214.897c-32.215 0-58.327 26.122-58.327 58.317 0 32.215 26.122 58.327 58.327 58.327 32.215 0 58.327-26.112 58.327-58.327 0-32.195-26.112-58.317-58.327-58.317zM686.1 952.504c-5.028 10.619-255.252-33.096-255.252-33.096l58.716-62.116c0 0-38.318-33.864-72.253-78.633-50.77-66.97-104.11-154.020-104.11-154.020s74.23 69.868 142.991 115.128c50.156 33.024 100.864 45.363 100.864 45.363s47.933-52.050 48.486-53.729c0.010 0 85.596 210.473 80.558 221.102zM572.703 798.167c-32.215 0-58.327 26.112-58.327 58.327 0 32.205 26.112 58.327 58.327 58.327 32.215 0 58.317-26.112 58.317-58.327 0-32.215-26.102-58.327-58.317-58.327zM733.317-49.009c47.872-46.612 288.42 131.123 241.152 192.86-21.914 28.631-40.714 69.151-50.463 97.044-45.138 129.106-46.674 137.605-69.253 197.54-5.96 15.831-7.793 78.438-37.612 87.419-3.697 39.322-12.861 76.964-48.23 76.984-6.185 25.836-13.926 48.742-25.272 63.754-25.672 34.028-77.947-5.55-77.947-5.55s6.339 10.65-4.731 46.223c-10.025 32.225-36.864 87.808-49.121 121.16-13.312 36.147-15.524 68.362-34.99 69.601-14.817 0.932-29.071-15.862-36.444-45.998-9.677-39.649 6.881-111.923 6.543-177.644-0.143-27.658 5.478-69.765 6.717-84.685 2.734-32.911-17.152-53.187-20.419-89.733-2.437-27.361-12.227-176.783-99.922-199.956-50.299-13.302-98.109 14.387-147.732 28.303-34.017 9.554-129.905 10.158-148.357-44.78-20.623-61.389 158.781-75.254 207.718-112.937 15.575-11.991 63.14-36.895 108.022-66.826 30.454-20.285 53.238-44.329 88.75-62.771 47.432-24.617 86.405-32.881 118.364-44.39 16.046-5.786 50.35-23.347 73.226-45.619z" />
+<glyph unicode="&#xe604;" d="M459.52 683.756l-65.229 27.955c0 0 4.628 51.446 18.637 111.811 15.493 66.785 37.274 130.458 37.274 130.458s-47.35-60.447-93.184-121.139c-37.693-49.91-55.91-83.855-55.91-83.855l-65.229 18.637 65.229-167.721 158.413 83.855zM282.337 683.827c0 30.884 25.037 55.91 55.91 55.91 30.884 0 55.9-25.027 55.9-55.91 0-30.874-25.016-55.91-55.9-55.91-30.874 0-55.91 25.037-55.91 55.91zM124.078 516.035l83.855-18.637c0 0-11.203-81.644-15.913-135.301-7.055-80.241-5.96-178.084-5.96-178.084s24.607 94.556 57.344 166.369c23.88 52.367 67.031 109.752 67.031 109.752l65.229-18.637-73.974 158.413-177.613-83.876zM319.713 554.435c17.93-25.139 12.093-60.047-13.046-77.988-25.139-17.93-60.037-12.093-77.988 13.036-17.93 25.129-12.093 60.047 13.046 77.988 25.139 17.93 60.047 12.104 77.988-13.036zM512.256 410.87c0 0 48.64 10.424 61.532 86.272 0.573 3.348 5.222 21.678 4.157 35.748-0.758 9.964-7.281 17.449-7.281 17.449s-26.184-20.521-45.507-18.698c-15.237 1.434-25.917 3.174-34.294 26.778-7.475 21.002 1.188 56.668 1.188 56.668l-4.014 27.668c0.215 0.481-47.442 2.54-47.442 2.54s-54.579-10.179-93.553-4.157c-30.628 4.721-48.077 22.405-45.804 42.772 3.625 32.42 103.332 49.060 181.299 61.614 19.343 3.123 39.485 16.118 53.996 17.254 21.309 1.669 39.567-13.097 39.567-13.097s56.34 31.416 78.971 39.7c40.253 14.725 89.303-68.485 145.213-146.77 20.040-28.078 53.699-56.166 66.12-76.79 41.933-69.642 27.003-316.938 107.633-417.516 37.059-46.223-27.525-113.654-65.362-144.189-67.123-54.2-179.098-95.222-208.333-46.152-5.847 9.83-30.904 37.847-66.028 65.751-31.334 24.883-73.359 45.251-105.738 88.474-35.308 47.145-65.454 99.215-108.257 153.539-15.206 19.313-24.73 51.937-38.164 69.99-19.732 26.522-39.926 43.704-57.006 66.847-14.899 20.214-34.427 56.699-50.883 69.755-30.065 23.9-42.854 57.58-23.132 78.93 27.822 30.106 74.711 18.463 99.4 2.519 66.181-42.732 75.592-68.946 105.196-107.274 21.412-27.709 56.525-35.625 56.525-35.625z" />
+<glyph unicode="&#xe605;" d="M0 832v-832h1024v832h-1024zM960 64h-896v704h896v-704zM704 608c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM896 128h-768l192 512 256-320 128 96z" />
+<glyph unicode="&#xe606;" d="M0 651.63l41.594-54.544c0 0 85.77 67.608 114.36 33.802 28.588-33.802 137.736-441.956 174.17-517.246 31.8-66.030 119.518-153.32 215.714-90.982 96.136 62.34 415.84 335.286 473.066 657.616 57.18 322.226-384.72 254.726-431.53-26.010 116.99 70.236 179.436-28.538 119.57-140.372-59.758-111.724-114.36-184.592-142.952-184.592-28.538 0-50.49 74.768-83.188 205.446-33.798 135.102-33.592 378.46-174.116 350.87-132.518-26.012-306.688-233.988-306.688-233.988z" />
+<glyph unicode="&#xe62b;" d="M1024 765.582c-37.676-16.708-78.164-28.002-120.66-33.080 43.372 26 76.686 67.17 92.372 116.23-40.596-24.078-85.556-41.56-133.41-50.98-38.32 40.83-92.922 66.34-153.346 66.34-116.022 0-210.088-94.058-210.088-210.078 0-16.466 1.858-32.5 5.44-47.878-174.6 8.764-329.402 92.4-433.018 219.506-18.084-31.028-28.446-67.116-28.446-105.618 0-72.888 37.088-137.192 93.46-174.866-34.438 1.092-66.832 10.542-95.154 26.278-0.020-0.876-0.020-1.756-0.020-2.642 0-101.788 72.418-186.696 168.522-206-17.626-4.8-36.188-7.372-55.348-7.372-13.538 0-26.698 1.32-39.528 3.772 26.736-83.46 104.32-144.206 196.252-145.896-71.9-56.35-162.486-89.934-260.916-89.934-16.958 0-33.68 0.994-50.116 2.94 92.972-59.61 203.402-94.394 322.042-94.394 386.422 0 597.736 320.124 597.736 597.744 0 9.108-0.206 18.168-0.61 27.18 41.056 29.62 76.672 66.62 104.836 108.748z" />
+<glyph unicode="&#xe62c;" d="M559.066 896c0 0-200.956 0-267.94 0-120.12 0-233.17-91.006-233.17-196.422 0-107.726 81.882-194.666 204.088-194.666 8.498 0 16.756 0.17 24.842 0.752-7.93-15.186-13.602-32.288-13.602-50.042 0-29.938 16.104-54.21 36.468-74.024-15.386 0-30.242-0.448-46.452-0.448-148.782 0.002-263.3-94.758-263.3-193.020 0-96.778 125.542-157.314 274.334-157.314 169.624 0 263.306 96.244 263.306 193.028 0 77.6-22.896 124.072-93.686 174.134-24.216 17.144-70.53 58.836-70.53 83.344 0 28.72 8.196 42.868 51.428 76.646 44.312 34.624 75.672 83.302 75.672 139.916 0 67.406-30.020 133.098-86.372 154.772h84.954l59.96 43.344zM465.48 240.542c2.126-8.972 3.284-18.206 3.284-27.628 0-78.2-50.392-139.31-194.974-139.31-102.842 0-177.116 65.104-177.116 143.3 0 76.642 92.126 140.444 194.964 139.332 24-0.254 46.368-4.116 66.67-10.69 55.826-38.826 95.876-60.762 107.172-105.004zM300.818 532.224c-69.038 2.064-134.636 77.226-146.552 167.86-11.916 90.666 34.37 160.042 103.388 157.99 69.010-2.074 134.638-74.814 146.558-165.458 11.906-90.66-34.39-162.458-103.394-160.392zM832 704v192h-64v-192h-192v-64h192v-192h64v192h192v64z" />
+<glyph unicode="&#xe62d;" d="M832 832h-640c-105.6 0-192-86.4-192-192v-384c0-105.6 86.4-192 192-192h640c105.6 0 192 86.4 192 192v384c0 105.6-86.4 192-192 192zM384 192v512l320-256-320-256z" />
+<glyph unicode="&#xe62e;" d="M0 768h1024v-64h-1024zM0 640h704v-64h-704zM0 512h1024v-64h-1024zM0 384h704v-64h-704zM0 256h1024v-64h-1024zM0 128h704v-64h-704z" />
+<glyph unicode="&#xe62f;" d="M896 768h-768v-640h768v640zM1024 896v0-896h-1024v896h1024zM832 192h-640v128l192 320 263-320 185 128v-64zM640 608c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96z" />
+<glyph unicode="&#xe630;" d="M225 512c123.712 0 224-100.29 224-224 0-123.712-100.288-224-224-224-123.712 0-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.634-11.636-22.252-24.016-31.83-37.020 11.438 1.8 23.16 2.746 35.104 2.746zM801 512c123.71 0 224-100.29 224-224 0-123.712-100.29-224-224-224-123.71 0-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.636-11.636-22.254-24.016-31.832-37.020 11.44 1.8 23.16 2.746 35.106 2.746z" />
+<glyph unicode="&#xe631;" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
+<glyph unicode="&#xe632;" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
+<glyph unicode="&#xe633;" d="M384 896h640v-128h-640v128zM384 512h640v-128h-640v128zM384 128h640v-128h-640v128zM0 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM0 64c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128z" />
+<glyph unicode="&#xe634;" d="M320 768l704 192v-736c0-88.366-100.29-160-224-160s-224 71.634-224 160c0 88.366 100.29 160 224 160 34.358 0 66.902-5.532 96-15.406v329.588l-448-122.182v-480c0-88.366-100.288-160-224-160-123.712 0-224 71.634-224 160 0 88.366 100.288 160 224 160 34.358 0 66.902-5.532 96-15.406v527.406z" />
+<glyph unicode="&#xe635;" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" />
+<glyph unicode="&#xe636;" d="M874.040 810.038c96.702-96.704 149.96-225.28 149.96-362.040s-53.258-265.334-149.96-362.038c-96.706-96.702-225.28-149.96-362.040-149.96-136.76 0-265.334 53.258-362.040 149.96-96.702 96.704-149.96 225.278-149.96 362.038 0 136.76 53.254 265.336 149.96 362.040 96.706 96.704 225.28 149.962 362.040 149.962 136.76 0 265.334-53.258 362.040-149.962zM828.784 131.214c63.058 63.060 104.986 141.608 122.272 227.062-13.474-19.836-26.362-27.194-34.344 17.206-8.22 72.39-74.708 26.148-116.516 51.86-44.004-29.658-142.906 57.662-126.098-40.824 25.934-44.422 140.008 59.45 83.148-34.542-36.274-65.616-132.642-210.932-120.106-286.258 1.582-109.744-112.134-22.884-151.314 13.52-26.356 72.92-8.982 200.374-77.898 236.086-74.802 3.248-139.004 10.046-167.994 93.67-17.446 59.828 18.564 148.894 82.678 162.644 93.85 58.966 127.374-69.054 215.39-71.434 27.328 28.594 101.816 37.686 107.992 69.75-57.75 10.19 73.268 48.558-5.528 70.382-43.47-5.112-71.478-45.074-48.368-78.958-84.238-19.642-86.936 121.904-167.91 77.258-2.058-70.59-132.222-22.886-45.036-8.572 29.956 13.088-48.86 51.016-6.28 44.124 20.916 1.136 91.332 25.812 72.276 42.402 39.21 24.34 72.16-58.29 110.538 1.882 27.708 46.266-11.62 54.808-46.35 31.356-19.58 21.924 34.57 69.276 82.332 89.738 15.918 6.82 31.122 10.536 42.746 9.484 24.058-27.792 68.55-32.606 70.878 3.342-59.582 28.534-125.276 43.608-193.292 43.608-97.622 0-190.47-31.024-267.308-88.39 20.65-9.46 32.372-21.238 12.478-36.296-15.456-46.054-78.17-107.876-133.224-99.124-28.586-49.296-47.412-103.606-55.46-160.528 46.112-15.256 56.744-45.45 46.836-55.55-23.496-20.488-37.936-49.53-45.376-81.322 15.010-91.836 58.172-176.476 125.27-243.576 84.616-84.614 197.118-131.214 316.784-131.214 119.664 0 232.168 46.6 316.784 131.214z" />
+<glyph unicode="&#xe637;" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
+<glyph unicode="&#xe639;" d="M891.96 445.796c-18.086 0-35.348-3.52-51.064-9.856-10.506 114.358-110.29 204.060-232 204.060-29.786 0-58.682-5.63-84.318-15.164-9.96-3.702-12.578-7.52-12.578-14.916v-402.714c0-7.766 6.24-14.234 14.124-14.996 0.336-0.034 363.536-0.21 365.89-0.21 72.904 0 131.986 56.816 131.986 126.894s-59.134 126.902-132.040 126.902zM400 192h32l16 224.22-16 223.78h-32l-16-223.78zM304 192h-32l-16 162.75 16 157.25h32l16-160zM144 192h32l16 128-16 128h-32l-16-128zM16 256h32l16 64-16 64h-32l-16-64z" />
+<glyph unicode="&#xe63a;" d="M832 832h-640c-105.6 0-192-86.4-192-192v-384c0-105.6 86.4-192 192-192h640c105.6 0 192 86.4 192 192v384c0 105.6-86.4 192-192 192zM960 256c0-33.978-13.374-66.062-37.654-90.346-24.284-24.28-56.366-37.654-90.346-37.654h-640c-33.978 0-66.062 13.374-90.344 37.654-24.282 24.284-37.656 56.368-37.656 90.346v384c0 33.978 13.374 66.062 37.656 90.344s56.366 37.656 90.344 37.656h640c33.978 0 66.062-13.374 90.346-37.656 24.282-24.282 37.654-56.366 37.654-90.344v-384zM384 192l320 256-320 256z" />
+<glyph unicode="&#xe63b;" d="M576.032 512l-0.002-234.184c0-59.418-0.77-93.656 5.53-110.5 6.25-16.754 21.918-34.146 38.99-44.202 22.684-13.588 48.542-20.376 77.708-20.376 51.854 0 82.478 6.848 133.742 40.54v-153.944c-43.7-20.552-81.866-32.594-117.324-40.922-35.5-8.242-73.86-12.406-115.064-12.406-46.828 0-74.456 5.886-110.41 17.656-35.958 11.868-66.66 28.806-92.020 50.54-25.45 21.922-43.022 45.208-52.848 69.832-9.826 24.636-14.716 60.414-14.716 107.244v359.1h-137.426v145.006c40.208 13.042 85.164 31.788 113.78 56.152 28.754 24.45 51.766 53.706 69.106 87.944 17.392 34.146 29.348 77.712 35.872 130.516h165.084l-0.002-255.996h255.968v-192h-255.968z" />
+<glyph unicode="&#xe63c;" d="M819.58 146.372c-106.666 0.418-163.498 52.582-202.992 144.502l-11.298 25.082-97.37 222c-32.292 78.586-112.422 131.672-202.834 131.672-122.334 0-221.584-99.252-221.584-221.672 0-122.418 99.248-221.668 221.584-221.668 85.338 0 159.542 48.25 196.582 119l39.376-90.832c-55.912-68.17-140.876-111.584-235.954-111.584-168.51 0-305.090 136.502-305.090 305.086 0 168.504 136.58 305.172 305.084 305.172 127.166 0 229.836-67.918 282-188.252 3.956-9.336 55.158-129.086 99.826-231 27.668-63.082 51.26-104.918 127.756-107.504 75.168-2.582 126.756 43.168 126.756 101.008 0 56.5-39.336 70.082-105.75 92.164-119.382 39.334-181.006 78.834-181.006 173.502 0 92.336 62.832 153.918 164.914 153.918 66.496 0 114.506-29.586 147.76-88.586l-65.256-33.332c-24.59 34.414-51.708 48-86.172 48-47.912 0-82.126-33.336-82.126-77.666 0-62.922 56.294-72.422 135.006-98.254 105.958-34.5 155.208-73.92 155.208-172.336 0.002-103.336-88.672-178.588-204.42-178.42z" />
+<glyph unicode="&#xe63d;" d="M235.278 711.28c-50.792 0-94.484-16.806-131.084-50.416-38.086-35.852-57.14-80.66-57.14-134.436 0-35.852 10.376-69.462 31.294-100.832 18.674-29.126 38.18-47.806 63.778-56.024v-2.242c-25.598-10.448-36.966-36.59-36.966-78.418 0-32.124 11.372-56.022 36.966-71.708v-2.242c-70.654-23.146-102.992-66.094-102.992-128.83 0-54.534 23.748-94.488 70.066-119.878 36.59-20.172 83.578-30.254 140.346-30.254 138.17 0 207.406 57.882 207.406 173.664 0 72.446-53.322 116.882-160.128 133.316-24.646 3.726-43.286 12.696-55.982 26.89-9.708 9.708-14.542 19.418-14.542 29.126 0 27.632 14.958 43.696 44.82 48.176 45.558 6.714 82.728 27.824 111.486 63.296 28.75 35.48 43.13 77.118 43.13 124.916 0 14.938-4.518 30.996-10.488 48.172 19.418 4.488 33.050 8.594 43.292 12.332v115.392c-45.054-17.928-86.99-26.884-122.842-26.884-31.374 17.922-63.824 26.884-100.42 26.884zM247.602 152.23c62.744 0 94.104-19.042 94.104-57.14 0-40.336-28.754-60.492-86.264-60.492-65.724 0-98.586 19.422-98.586 58.254-0.002 39.59 30.244 59.378 90.746 59.378zM239.76 448c-47.054 0-70.586 25.764-70.586 77.308 0 55.262 23.532 82.906 70.586 82.906 22.402 0 39.958-8.596 52.652-25.768 10.458-15.69 15.69-34.36 15.69-56.022 0-52.278-22.786-78.424-68.342-78.424zM580.384 960c-21.656 0-40.14-8.214-55.454-24.648-15.314-16.436-22.97-36.216-22.97-59.376 0-22.41 7.658-41.82 22.97-58.258 15.308-16.434 33.792-24.64 55.454-24.64 20.91 0 39.028 8.208 54.34 24.64 15.312 16.438 22.96 35.848 22.96 58.258 0 23.16-7.648 42.944-22.96 59.376-15.318 16.434-33.43 24.648-54.34 24.648zM643.13 704.002h-126.606c1.496-14.336-0.64-36.042-0.64-71.14v-348.432c0-35.856 2.136-64.774 0.64-76.036h126.606c-1.5 16.376-5.394 44.668-5.394 82.758v343.946c-0.006 32.864 3.894 54.568 5.394 68.904zM922.336 315.8c-32.872 0-49.082 25.028-49.082 75.066v206.64h49.864c8.96 0 17.032 0.492 27.118-0.246 10.086-0.748 14.152-0.25 19.278-0.25v106.99h-96.258v47.616c0 17.922 2.816 34.302 5.054 44.542h-129.958c2.242-10.24 2.028-25.876 2.028-46.79v-45.368h-56.32v-106.988c15.364 2.24 29.090 3.356 38.796 3.356l17.524-1.118v-202.786c0-62.742 7.958-108.672 23.636-137.8 20.922-38.84 57.622-58.258 112.136-58.258 38.848 0 73.118 7.464 98.714 22.41v112.032c-20.474-12.7-39.382-19.048-62.53-19.048z" />
+<glyph unicode="&#xe63e;" d="M761.862-64c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
+<glyph unicode="&#xe63f;" d="M192 448h192v-64h-192v64zM192 320h192v-64h-192v64zM192 192h192v-64h-192v64zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608zM576 256h188.792c-14.826-73.032-79.386-128-156.792-128-88.366 0-160 71.634-160 160 0 77.406 54.97 141.966 128 156.792v-188.792zM672 512c88.366 0 160-71.634 160-160 0-10.958-1.108-21.66-3.208-32h-188.792v188.792c10.34 2.1 21.042 3.208 32 3.208z" />
+<glyph unicode="&#xe640;" d="M459.33 300.168l-170.654-295.668h564.654l170.67 295.668zM975.612 384l-292.934 507.5h-341.348l292.956-507.5zM292.836 807.486l-292.836-507.318 170.676-295.668 292.832 507.324z" />
+<glyph unicode="&#xe641;" d="M575.87-64h-191.87v512h-128v176.45l128 0.058-0.208 103.952c0 143.952 39.034 231.54 208.598 231.54h141.176v-176.484h-88.23c-66.032 0-69.206-24.656-69.206-70.684l-0.262-88.324h158.69l-18.704-176.45-139.854-0.058-0.13-512z" />
+<glyph unicode="&#xe642;" d="M800 544c-70.58 0-128-57.42-128-128s57.42-128 128-128c70.58 0 128 57.42 128 128 0 70.58-57.42 128-128 128zM800 640v0c123.71 0 224-100.288 224-224 0-123.71-100.29-224-224-224-123.71 0-224 100.29-224 224 0 123.712 100.29 224 224 224zM0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-123.712 0-224 100.288-224 224z" />
+<glyph unicode="&#xe643;" d="M765.666 733.654c-6.882-9.804-64.486-87.23-200.556-138.228-62.704 115.206-132.206 209.85-142.782 224.012 28.776 6.936 58.798 10.64 89.674 10.64 97.23 0 186.088-36.47 253.664-96.424zM538.752 444.076c-197.352-63.796-302.372-237.678-311.042-252.522-61.116 67.842-98.374 157.576-98.374 255.858 0 3.916 0.078 7.81 0.196 11.696 16.744-0.342 202.18-2.732 393.278 54.458 10.952-21.44 21.416-43.202 31.024-64.94-5.064-1.426-10.092-2.94-15.082-4.55zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512.002 0c-247.030 0-448.002 200.97-448.002 448 0 247.028 200.972 448 448.002 448 247.032 0 447.998-200.972 447.998-448 0-247.030-200.966-448-447.998-448zM619.918 483.098c-7.946 18.66-16.482 37.198-25.388 55.428 141.484 57.762 205.61 139.964 213.676 150.878 53.292-65.116 85.566-148.052 86.412-238.372-12.618 2.668-139.13 28.328-266.458 12.316-2.682 6.552-5.426 13.134-8.242 19.75zM491.188 572.412c-178.996-47.532-336.65-46.848-353.766-46.622 24.814 118.742 104.836 217.432 211.892 267.926 10.088-13.834 78.472-108.594 141.874-221.304zM577.32 384.5c0.84 0.292 1.68 0.564 2.522 0.852 53.724-139.606 75.942-256.612 81.636-290.186-45.946-19.568-96.466-30.41-149.476-30.41-88.464 0-170.002 30.184-234.882 80.78 6.886 14.078 84.364 163.754 300.2 238.964zM651.464 403.036c119.916 19.192 225.266-12.232 238.36-16.36-17.060-106.474-78.172-198.428-164.020-256.472-3.922 23.276-24.288 135.294-74.34 272.832z" />
+<glyph unicode="&#xe644;" d="M778.24 460.8c0-147.046-119.245-266.24-266.24-266.24-147.046 0-266.24 119.194-266.24 266.24 0 17.51 1.741 34.611 5.018 51.2h-179.098v-353.894c0-75.981 61.542-137.626 137.626-137.626h605.389c75.981 0 137.626 61.594 137.626 137.626v353.894h-179.046c3.226-16.589 4.966-33.69 4.966-51.2zM814.694 901.12h-605.389c-76.032 0-137.626-61.645-137.626-137.626v-149.094h222.925c48.179 68.096 127.59 112.64 217.395 112.64s169.216-44.544 217.395-112.64h222.925v149.094c0 75.981-61.645 137.626-137.626 137.626zM882.022 731.136c0-13.568-11.059-24.576-24.576-24.576h-73.677c-13.517 0-24.576 11.059-24.576 24.576v73.728c0 13.568 11.11 24.576 24.576 24.576h73.677c13.568 0 24.576-11.059 24.576-24.576v-73.728zM675.84 460.8c0 90.522-73.37 163.84-163.84 163.84s-163.84-73.318-163.84-163.84 73.37-163.84 163.84-163.84 163.84 73.318 163.84 163.84z" />
+<glyph unicode="&#xe645;" d="M441.139 295.526c-26.88-140.954-59.699-276.122-156.979-346.726-30.003 213.094 44.083 373.094 78.49 542.976-58.675 98.816 7.066 297.574 130.867 248.576 152.32-60.262-131.891-367.258 58.88-405.606 199.219-40.038 280.525 345.6 157.030 470.989-178.483 181.146-519.578 4.198-477.594-255.027 10.189-63.386 75.674-82.637 26.163-170.086-114.227 25.293-148.326 115.405-143.923 235.52 7.066 196.557 176.64 334.182 346.726 353.229 215.142 24.115 417.024-78.95 444.826-281.293 31.386-228.352-97.024-475.699-327.117-457.882-62.31 4.762-88.474 35.635-137.37 65.331z" />
+<glyph unicode="&#xe646;" d="M716.749 696.32l0.051-471.040-409.6 235.52z" />
+<glyph unicode="&#xe647;" d="M747.52 665.549l-471.040 0.051 235.52-409.6z" />
+<glyph unicode="&#xe648;" d="M276.48 256h471.040l-235.571 409.6z" />
+<glyph unicode="&#xe649;" d="M307.251 696.32l-0.051-471.040 409.6 235.52z" />
+<glyph unicode="&#xe64a;" d="M768 163.84h-665.6v460.8h132.864c0 0 35.277 45.875 111.104 102.4h-295.168c-28.262 0-51.2-22.938-51.2-51.2v-563.2c0-28.314 22.938-51.2 51.2-51.2h768c28.314 0 51.2 22.886 51.2 51.2v191.795l-102.4-84.224v-56.371zM684.134 519.68v-181.76l339.866 266.291-339.866 255.949v-160.256c-412.774-0.051-412.774-408.064-412.774-408.064 116.838 191.898 188.723 227.84 412.774 227.84z" />
+<glyph unicode="&#xe64b;" d="M251.699 778.086c-82.432 0-149.299-68.762-149.299-153.6s66.867-153.6 149.299-153.6c149.248 0 49.766-296.96-149.299-296.96v-71.629c355.226 0 494.438 675.789 149.299 675.789zM681.728 778.086c-82.432 0-149.299-68.762-149.299-153.6s66.867-153.6 149.299-153.6c149.248 0 49.766-296.96-149.299-296.96v-71.629c355.277 0 494.49 675.789 149.299 675.789z" />
+<glyph unicode="&#xe64c;" d="M887.757 752.23c0 58.88-88.678 65.434-88.678 65.434l-208.333 13.107c0 0-4.454 56.73-46.592 76.39-42.086 19.61-88.371 13.67-121.6 13.312s-41.165-42.803-41.165-82.842 0.768-86.118 0.768-115.2c0-52.019-22.886-74.189-80.179-74.189h-118.118c-33.024 2.15-58.778-3.277-58.778-30.003 0-26.675 38.912-254.566 92.262-307.149 30.976-30.515 220.365-51.917 260.25-51.917s26.624 117.811 37.683 117.811 23.296-66.56 86.118-82.125c62.822-15.667 146.688-12.749 151.142-57.446 5.786-58.982 11.059-135.322-27.75-140.749l-87.808-3.482c-60.211 4.352-44.083 70.093-17.51 70.093s39.885 1.075 39.885 1.075l3.328 71.987c0 0-137.882 16.282-143.77-76.749-5.325-84.992 9.267-125.082 19.968-133.786 10.752-8.806 29.286-25.805 198.144-25.805 237.926 0 150.733 693.402 150.733 752.23zM790.528 444.365c-9.318-9.933-43.11 16.435-75.366 16.435-32.307 0-67.174-17.101-75.366-5.888-8.141 11.264 7.526 101.99 68.352 101.99s91.75-102.554 82.381-112.538zM297.114 759.501c0 11.622 3.021 152.781 3.021 152.781l-179.507-176.077c0 0 124.006 0 148.326 0 24.422 0 28.16 11.622 28.16 23.296z" />
+<glyph unicode="&#xe64d;" d="M903.454 441.796c-26.543-6.081-52.227-8.762-75.342-8.762-130.026 0-230.131 90.233-230.131 247.123 0 76.899 29.922 116.895 72.235 116.895 40.254 0 67.090-35.891 67.090-108.692 0-41.392-11.156-86.763-19.394-113.606 0 0 40.066-69.45 149.637-48.136 23.262 51.319 35.905 117.781 35.905 176.089 0 156.89-80.501 248.15-228.078 248.15-151.689 0-240.435-115.875-240.435-268.661 0-151.361 71.202-281.283 188.627-340.484-49.372-98.143-112.203-184.592-177.722-249.727-118.891 142.795-226.354 333.3-270.462 705.060h-175.384c81.025-619.156 322.514-816.307 386.365-854.159 36.114-21.537 67.216-20.511 100.237-2.039 51.843 29.293 207.512 183.943 293.793 365.093 36.219 0.098 79.733 4.231 123.059 13.956v121.9z" horiz-adv-x="903" />
+<glyph unicode="&#xe64e;" d="M1536.164 933.646c0-5.825-1.738-11.090-5.117-15.924-3.521-4.699-7.177-7.119-11.354-7.119-33.637-3.411-61.339-14.784-82.689-34.274-21.485-19.341-43.497-56.467-66.346-111.073l-348.57-826.872c-2.291-7.698-8.644-11.528-19.18-11.528-8.251 0-14.591 3.83-19.187 11.528l-195.493 430.357-224.83-430.357c-4.596-7.698-10.935-11.528-19.18-11.528-10.002 0-16.619 3.83-19.863 11.528l-342.5 826.872c-21.343 51.343-43.909 87.181-67.685 107.52-23.647 20.339-56.756 32.993-99.037 37.827-3.643 0-7.157 1.995-10.273 6.121-3.231 3.978-4.859 8.676-4.859 13.941 0 13.504 3.643 20.191 10.948 20.191 30.534 0 62.42-1.422 95.787-4.261 30.946-2.993 60.129-4.415 87.419-4.415 27.831 0 60.663 1.422 98.496 4.415 39.584 2.838 74.707 4.261 105.248 4.261 7.292 0 10.948-6.687 10.948-20.191 0-13.375-2.304-20.062-6.758-20.062-30.534-2.414-54.587-10.659-72.152-24.452-17.559-13.948-26.351-32.156-26.351-54.761 0-11.521 3.656-25.874 10.948-43.092l283.047-672.862 160.646 319.439-149.704 330.381c-26.878 58.88-49.039 96.997-66.334 114.053-17.295 16.934-43.497 27.451-78.634 31.294-3.238 0-6.218 1.995-9.198 6.121-2.961 3.971-4.441 8.676-4.441 13.935 0 13.51 3.102 20.197 9.59 20.197 30.528 0 58.494-1.422 84.027-4.261 24.587-2.993 50.803-4.415 78.634-4.415 27.29 0 56.209 1.422 86.743 4.415 31.48 2.838 62.42 4.261 92.955 4.261 7.292 0 10.948-6.687 10.948-20.191 0-13.375-2.163-20.062-6.745-20.062-61.081-4.403-91.616-22.611-91.616-54.755 0-14.36 7.022-36.688 21.214-66.849l99.031-211.623 98.509 193.568c13.639 27.297 20.519 50.339 20.519 69.108 0 44.096-30.528 67.563-91.609 70.543-5.542 0-8.245 6.687-8.245 20.062 0 4.834 1.365 9.391 4.068 13.652 2.826 4.415 5.542 6.546 8.232 6.546 21.89 0 48.782-1.422 80.674-4.261 30.528-2.993 55.643-4.415 75.242-4.415 14.051 0 34.86 1.281 62.156 3.694 34.583 3.27 63.617 4.982 86.866 4.982 5.419 0 8.097-5.696 8.097-17.211 0-15.357-4.988-23.042-14.984-23.042-35.542-3.843-64.177-14.224-85.791-30.998-21.626-16.786-48.653-54.909-80.938-114.349l-131.328-255.57 177.806-381.306 262.502 642.572c9.050 23.461 13.652 45.074 13.652 64.705 0 47.076-30.534 71.965-91.596 74.946-5.542 0-8.232 6.687-8.232 20.062 0 13.504 4.036 20.191 12.287 20.191 22.283 0 48.775-1.422 79.309-4.261 28.23-2.993 52.006-4.415 71.058-4.415 20.14 0 43.388 1.422 69.713 4.415 27.438 2.838 52.025 4.261 73.929 4.261 6.327 0 9.571-5.696 9.571-17.211z" horiz-adv-x="1536" />
+<glyph unicode="&#xe64f;" d="M403.359-73.143l403.246 513.349-403.246 510.495-403.359 0.156 403.223-510.841-400.709-513.159h400.845" horiz-adv-x="807" />
+<glyph unicode="&#xe650;" d="M403.246 950.857l-403.246-513.349 403.246-510.495 403.359-0.156-403.223 510.841 400.709 513.159h-400.845" horiz-adv-x="807" />
+<glyph unicode="&#xe651;" d="M554.857 240v-120.571q0-38.286-22.286-38.286-13.143 0-25.714 12.571v172q12.571 12.571 25.714 12.571 22.286 0 22.286-38.286zM748 239.428v-26.286h-51.429v26.286q0 38.857 25.714 38.857t25.714-38.857zM196 364h61.143v53.714h-178.286v-53.714h60v-325.143h57.143v325.143zM360.571 38.857h50.857v282.286h-50.857v-216q-17.143-24-32.571-24-10.286 0-12 12-0.571 1.714-0.571 20v208h-50.857v-223.429q0-28 4.571-41.714 6.857-21.143 33.143-21.143 27.429 0 58.286 34.857v-30.857zM605.714 123.428v112.571q0 41.714-5.143 56.571-9.714 32-40.571 32-28.571 0-53.143-30.857v124h-50.857v-378.857h50.857v27.429q25.714-31.429 53.143-31.429 30.857 0 40.571 31.429 5.143 15.429 5.143 57.143zM798.857 129.143v7.429h-52q0-29.143-1.143-34.857-4-20.571-22.857-20.571-26.286 0-26.286 39.429v49.714h102.286v58.857q0 45.143-15.429 66.286-22.286 29.143-60.571 29.143-38.857 0-61.143-29.143-16-21.143-16-66.286v-98.857q0-45.143 16.571-66.286 22.286-29.143 61.714-29.143 41.143 0 61.714 30.286 10.286 15.429 12 30.857 1.143 5.143 1.143 33.143zM451.429 650.857v120q0 39.429-24.571 39.429t-24.571-39.429v-120q0-40 24.571-40t24.571 40zM862.286 221.714q0-133.714-14.857-200-8-33.714-33.143-56.571t-58.286-26.286q-105.143-12-317.143-12t-317.143 12q-33.143 3.429-58.571 26.286t-32.857 56.571q-14.857 64-14.857 200 0 133.714 14.857 200 8 33.714 33.143 56.571t58.857 26.857q104.571 11.429 316.571 11.429t317.143-11.429q33.143-4 58.571-26.857t32.857-56.571q14.857-64 14.857-200zM292 950.857h58.286l-69.143-228v-154.857h-57.143v154.857q-8 42.286-34.857 121.143-21.143 58.857-37.143 106.857h60.571l40.571-150.286zM503.429 760.571v-100q0-46.286-16-67.429-21.143-29.143-60.571-29.143-38.286 0-60 29.143-16 21.714-16 67.429v100q0 45.714 16 66.857 21.714 29.143 60 29.143 39.429 0 60.571-29.143 16-21.143 16-66.857zM694.857 853.143v-285.143h-52v31.429q-30.286-35.429-58.857-35.429-26.286 0-33.714 21.143-4.571 13.714-4.571 42.857v225.143h52v-209.714q0-18.857 0.571-20 1.714-12.571 12-12.571 15.429 0 32.571 24.571v217.714h52z" horiz-adv-x="878" />
+<glyph unicode="&#xe652;" d="M847.429 365.714l-335.429-335.429q-29.714-30.286-72.857-30.286t-73.429 30.286l-335.429 335.429q-30.286 30.286-30.286 73.143t30.286 73.143l335.429 335.429q30.286 30.286 73.143 30.286t73.143-30.286l151.429-151.429-227.429-228-107.429 107.429q-24 24-56.571 24-33.714 0-57.143-23.429l-68.571-69.143q-24-22.857-24-56.571 0-33.143 24-57.143l232-233.143q17.143-16 38.286-21.143l3.429-2.286h16q34.286 0 56.571 23.429l353.714 353.714 1.143-1.714q30.286-30.286 30.286-73.143t-30.286-73.143zM803.429 723.428l68.571-68.571q8-8.571 8-20.571t-8-20.571l-417.143-417.143q-9.714-8.571-21.143-8.571v0q-2.286 0-3.429 0.571-10.286 1.143-17.143 8l-232.571 233.143q-8 8.571-8 20.571t8 20l69.143 68.571q7.429 8.571 20 8.571t20.571-8.571l144-144 328 328.571q8.571 8.571 20.571 8.571t20.571-8.571z" horiz-adv-x="951" />
+<glyph unicode="&#xe653;" d="M530.286 475.428q0 8-5.143 13.143t-13.143 5.143q-37.714 0-64.571-26.857t-26.857-64.571q0-8 5.143-13.143t13.143-5.143 13.143 5.143 5.143 13.143q0 22.857 16 38.857t38.857 16q8 0 13.143 5.143t5.143 13.143zM658.286 401.143q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429 42.857 103.429 103.429 42.857 103.429-42.857 42.857-103.429zM73.143 73.143h877.714v73.143h-877.714v-73.143zM731.429 401.143q0 90.857-64.286 155.143t-155.143 64.286-155.143-64.286-64.286-155.143 64.286-155.143 155.143-64.286 155.143 64.286 64.286 155.143zM146.286 768h219.429v73.143h-219.429v-73.143zM73.143 658.286h877.714v146.286h-473.143l-36.571-73.143h-368v-73.143zM1024 804.571v-731.429q0-30.286-21.429-51.714t-51.714-21.429h-877.714q-30.286 0-51.714 21.429t-21.429 51.714v731.429q0 30.286 21.429 51.714t51.714 21.429h877.714q30.286 0 51.714-21.429t21.429-51.714z" />
+<glyph unicode="&#xe654;" d="M73.143 73.143h585.143v438.857h-237.714q-22.857 0-38.857 16t-16 38.857v237.714h-292.571v-731.429zM438.857 585.143h214.857q-5.714 16.571-12.571 23.429l-178.857 178.857q-6.857 6.857-23.429 12.571v-214.857zM731.429 566.857v-512q0-22.857-16-38.857t-38.857-16h-621.714q-22.857 0-38.857 16t-16 38.857v768q0 22.857 16 38.857t38.857 16h365.714q22.857 0 50.286-11.429t43.429-27.429l178.286-178.286q16-16 27.429-43.429t11.429-50.286z" horiz-adv-x="731" />
+<glyph unicode="&#xe655;" d="M385.714 217.143q12 19.429 6.286 39.429t-25.714 28.571q-19.429 8-41.714 0.571t-34.286-26.286q-12.571-19.429-7.429-39.143t24.571-28.857 42.571-1.429 35.714 27.143zM439.429 286.286q4.571 7.429 2 15.143t-10 10.571q-8 2.857-16.286-0.286t-12.286-10.571q-9.714-17.714 7.429-25.714 8-2.857 16.571 0.286t12.571 10.571zM538.857 225.143q-25.714-58.286-90.286-85.714t-128-6.857q-61.143 19.429-84.286 72.286t3.714 107.143q26.857 53.143 86.571 79.429t120.286 10.857q63.429-16.571 90.571-68.286t1.429-108.857zM717.143 316.571q-5.143 54.857-50.857 97.143t-119.143 62.286-156.857 12q-127.429-13.143-211.143-80.857t-75.714-151.143q5.143-54.857 50.857-97.143t119.143-62.286 156.857-12q127.429 13.143 211.143 80.857t75.714 151.143zM893.143 314.286q0-38.857-21.143-79.714t-62.286-78.286-96.286-67.143-129.143-47.429-154.571-17.714-157.143 19.143-137.429 53.143-98 86.286-37.143 114q0 65.714 39.714 140t112.857 147.429q96.571 96.571 195.143 134.857t140.857-4q37.143-36.571 11.429-119.429-2.286-8-0.571-11.429t5.714-4 8.286 0.286 7.714 2l3.429 1.143q79.429 33.714 140.571 33.714t87.429-34.857q25.714-36 0-101.714-1.143-7.429-2.571-11.429t2.571-7.143 6.857-4.286 9.714-3.429q32.571-10.286 58.857-26.857t45.714-46.571 19.429-66.571zM850.857 670.857q24-26.857 31.143-62t-3.714-67.143q-4.571-13.143-16.857-19.429t-25.429-2.286q-13.143 4.571-19.429 16.857t-2.286 25.429q11.429 36-13.714 63.429t-61.143 20q-13.714-2.857-25.714 4.571t-14.286 21.143q-2.857 13.714 4.571 25.429t21.143 14.571q34.286 7.429 68-3.143t57.714-37.429zM954.286 764q49.714-54.857 64.286-127.143t-7.714-138q-5.143-15.429-19.429-22.857t-29.714-2.286-22.857 19.429-2.857 29.714q16 46.857 5.714 98.286t-45.714 90.286q-35.429 39.429-84.571 54.571t-98.857 4.857q-16-3.429-29.714 5.429t-17.143 24.857 5.429 29.429 24.857 16.857q70.286 14.857 139.429-6.571t118.857-76.857z" />
+<glyph unicode="&#xe656;" d="M1024 438.857q0-14.857-10.857-25.714l-146.286-146.286q-10.857-10.857-25.714-10.857t-25.714 10.857-10.857 25.714v73.143h-585.143v-73.143q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857l-146.286 146.286q-10.857 10.857-10.857 25.714t10.857 25.714l146.286 146.286q10.857 10.857 25.714 10.857t25.714-10.857 10.857-25.714v-73.143h585.143v73.143q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857l146.286-146.286q10.857-10.857 10.857-25.714z" />
+<glyph unicode="&#xe657;" d="M402.286 768q0-14.857-10.857-25.714t-25.714-10.857h-73.143v-585.143h73.143q14.857 0 25.714-10.857t10.857-25.714-10.857-25.714l-146.286-146.286q-10.857-10.857-25.714-10.857t-25.714 10.857l-146.286 146.286q-10.857 10.857-10.857 25.714t10.857 25.714 25.714 10.857h73.143v585.143h-73.143q-14.857 0-25.714 10.857t-10.857 25.714 10.857 25.714l146.286 146.286q10.857 10.857 25.714 10.857t25.714-10.857l146.286-146.286q10.857-10.857 10.857-25.714z" horiz-adv-x="439" />
+<glyph unicode="&#xe658;" d="M431.429 347.428q0-7.429-5.714-13.143l-189.714-189.714 82.286-82.286q10.857-10.857 10.857-25.714t-10.857-25.714-25.714-10.857h-256q-14.857 0-25.714 10.857t-10.857 25.714v256q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857l82.286-82.286 189.714 189.714q5.714 5.714 13.143 5.714t13.143-5.714l65.143-65.143q5.714-5.714 5.714-13.143zM877.714 841.143v-256q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857l-82.286 82.286-189.714-189.714q-5.714-5.714-13.143-5.714t-13.143 5.714l-65.143 65.143q-5.714 5.714-5.714 13.143t5.714 13.143l189.714 189.714-82.286 82.286q-10.857 10.857-10.857 25.714t10.857 25.714 25.714 10.857h256q14.857 0 25.714-10.857t10.857-25.714z" horiz-adv-x="878" />
+<glyph unicode="&#xe659;" d="M438.857 402.286v-256q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857l-82.286 82.286-189.714-189.714q-5.714-5.714-13.143-5.714t-13.143 5.714l-65.143 65.143q-5.714 5.714-5.714 13.143t5.714 13.143l189.714 189.714-82.286 82.286q-10.857 10.857-10.857 25.714t10.857 25.714 25.714 10.857h256q14.857 0 25.714-10.857t10.857-25.714zM870.286 786.286q0-7.429-5.714-13.143l-189.714-189.714 82.286-82.286q10.857-10.857 10.857-25.714t-10.857-25.714-25.714-10.857h-256q-14.857 0-25.714 10.857t-10.857 25.714v256q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857l82.286-82.286 189.714 189.714q5.714 5.714 13.143 5.714t13.143-5.714l65.143-65.143q5.714-5.714 5.714-13.143z" horiz-adv-x="878" />
+</font></defs></svg>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.ttf b/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..74eb8c4ab13fc0571f8bd09aa2ea29187cab4bc1
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.ttf differ
diff --git a/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.woff b/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.woff
new file mode 100644
index 0000000000000000000000000000000000000000..d065e98ecb85947c95406745fcfc91d8a8d2fe2a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/source/css/icons/tl-icons.woff differ
diff --git a/public/opac/TimelineJS3-3.5.1/source/embed/index.html b/public/opac/TimelineJS3-3.5.1/source/embed/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..07ce3d63c75ac16d5ee4fd3d02631bc80e38c3af
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/embed/index.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<title>TimelineJS Embed</title>
+<meta charset="utf-8">
+<meta name="description" content="TimelineJS Embed">
+<meta name="apple-mobile-web-app-capable" content="yes">
+<meta name="apple-touch-fullscreen" content="yes">
+<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+<link rel="icon" type="image/png" href="https://cdn.knightlab.com/libs/purpleline/latest/img/favicon.png">
+<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
+<base target="_blank">
+
+<!-- Style-->
+<style>
+html, body {
+    width: 100%;
+    height:100%;
+    padding: 0px;
+    margin: 0px;
+}
+#timeline-embed {
+    height: 100%;
+}
+</style>
+<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
+<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+</head>
+</html>
+<body>
+  <!-- BEGIN Timeline Embed -->
+  <div id="timeline-embed"></div>
+  <!-- Override -->
+  <script type="text/javascript">
+    var lang = window.location.href.match(/&lang=([a-zA-Z]*)&?/);
+
+    if (lang) {
+      document.getElementsByTagName('html')[0].setAttribute('lang', lang[1]);
+    }
+    var trim_point = window.location.href.indexOf('embed/index.html');
+    if (trim_point > 0) {
+      var embed_path = window.location.href.substring(0,trim_point); // supports https access via https://s3.amazonaws.com/cdn.knightlab.com/libs/timeline/latest/embed/index.html
+    } else {
+      var embed_path = "https://cdn.knightlab.com/libs/timeline3/latest/";
+    }
+    var oembed_link = document.createElement('link');
+    oembed_link['rel'] = 'alternate';
+    oembed_link['type'] = 'application/json+oembed';
+    oembed_link['href'] = 'https://oembed.knightlab.com/timeline/?url=' + encodeURIComponent(window.location.href);
+    document.head.appendChild(oembed_link);
+  </script>
+  <!-- build:js ../js/timeline-embed-cdn.js -->
+  <script type="text/javascript">
+    var embed_path = "/build/";
+  </script>
+  <script type="text/javascript" src="/build/js/timeline-embed-cdn.js"></script>
+  <!-- endbuild -->
+  <!-- END Timeline Embed-->
+</body>
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/source/gfx/font-options.acorn b/public/opac/TimelineJS3-3.5.1/source/gfx/font-options.acorn
new file mode 100644
index 0000000000000000000000000000000000000000..02dbcb35e6a76b29d2757797d408ccafe499534c
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/source/gfx/font-options.acorn differ
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/cosmological.jade b/public/opac/TimelineJS3-3.5.1/source/jade/cosmological.jade
new file mode 100644
index 0000000000000000000000000000000000000000..dfdbf049454ac385662d6114c7eec57de11a269d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/cosmological.jade
@@ -0,0 +1,41 @@
+doctype html
+html(lang="en")
+	head
+		title Milliseconds
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'cosmological.json', {
+				ga_property_id: "UA-27829802-4"
+			});
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/dark_theme_example.jade b/public/opac/TimelineJS3-3.5.1/source/jade/dark_theme_example.jade
new file mode 100644
index 0000000000000000000000000000000000000000..a584c62f8ac4c1cde6b0500a5f43ed55336c9cc1
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/dark_theme_example.jade
@@ -0,0 +1,41 @@
+doctype html
+html(lang="en")
+	head
+		title Dark Theme Example
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/themes/timeline.theme.dark.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'marktwain.json', {
+				 
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/eras.jade b/public/opac/TimelineJS3-3.5.1/source/jade/eras.jade
new file mode 100644
index 0000000000000000000000000000000000000000..3894dc5ae867c830b20c4d3f598d4c4655ceea33
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/eras.jade
@@ -0,0 +1,40 @@
+doctype html
+html(lang="en")
+	head
+		title Eras
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'eras.json', {
+				ga_property_id: "UA-27829802-4"
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/error_message_test.jade b/public/opac/TimelineJS3-3.5.1/source/jade/error_message_test.jade
new file mode 100644
index 0000000000000000000000000000000000000000..e7efe32a052550d0b5769aa1caa448d68589f935
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/error_message_test.jade
@@ -0,0 +1,41 @@
+doctype html
+html(lang="en")
+	head
+		title Error Message Test
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'error_message_test.json', {
+				ga_property_id: "UA-27829802-4"
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/google_spreadsheet.jade b/public/opac/TimelineJS3-3.5.1/source/jade/google_spreadsheet.jade
new file mode 100644
index 0000000000000000000000000000000000000000..e7ab89782fd91beef4b8f3a15e4572bb1daf37d3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/google_spreadsheet.jade
@@ -0,0 +1,44 @@
+doctype html
+html(lang="en")
+	head
+		title Mark Twain Example
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			//1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI
+			//https://docs.google.com/spreadsheets/d/1OQCXIQoeMUbeIE3KdKijQhFvgit37m6Sy6S07gAE6fU/pubhtml
+			var timeline = new TL.Timeline('timeline', '1OQCXIQoeMUbeIE3KdKijQhFvgit37m6Sy6S07gAE6fU', {
+				ga_property_id: "UA-27829802-4",
+				debug:true,
+				is_embed:true
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/google_spreadsheet_tester.jade b/public/opac/TimelineJS3-3.5.1/source/jade/google_spreadsheet_tester.jade
new file mode 100644
index 0000000000000000000000000000000000000000..6187ed0c47cfcd002a7817e3a8e3448e30fd32bd
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/google_spreadsheet_tester.jade
@@ -0,0 +1,100 @@
+doctype html
+html(lang="en")
+	head
+		title Milliseconds
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			#input {
+				height: 40px;
+				background-color:#CCC;
+			}
+			#url {
+				margin:10px;
+			}
+			#timeline {
+				height: 100%;
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+		div#input
+			input#url(placeholder="Enter a google spreadsheet URL", size="100", type="text")
+			button#preview(type="button") Go
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = null;
+			var button = document.getElementById('preview');
+			button.addEventListener('click',function(){
+				new_timeline(document.getElementById('url').value);
+			});
+
+			document.getElementById('url').addEventListener('keyup',function(evt) {
+				if (evt.keyCode == 13) {
+					new_timeline(document.getElementById('url').value);
+				}
+			});
+
+			function new_timeline(url) {
+				timeline = null; // TODO: actively 'destroy' an existing timeline?
+				var json = TL.ConfigFactory.fromGoogle(url);
+
+				window.factory_json = json;
+				
+				document.getElementById('input').style.height = "40px"
+				document.getElementById('timeline').style.height = (window.innerHeight - 40 + "px");
+				
+				timeline = new TL.Timeline('timeline', new TL.TimelineConfig(json), {
+					debug:true
+				});
+			  
+				
+				window.onresize = function(event) {
+					console.log("resize")
+					document.getElementById('input').style.height = "30px"
+					document.getElementById('timeline').style.height = (window.innerHeight - 30 + "px");
+					timeline.updateDisplay();
+				}
+			}
+			
+			function getQueryParams(qs) {
+				qs = qs.split("+").join(" ");
+
+				var params = {}, tokens,
+				re = /[?&]?([^=]+)=([^&]*)/g;
+
+				while (tokens = re.exec(qs)) {
+					params[decodeURIComponent(tokens[1])]
+					= decodeURIComponent(tokens[2]);
+				}
+
+				return params;
+			}
+
+			var qs = getQueryParams(window.location.search);
+			if (qs.key) {
+				new_timeline(qs.key);
+			}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/long_time_ticks.jade b/public/opac/TimelineJS3-3.5.1/source/jade/long_time_ticks.jade
new file mode 100644
index 0000000000000000000000000000000000000000..af2a8f6677b26b4707cb5bda7b064874bdff5c05
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/long_time_ticks.jade
@@ -0,0 +1,43 @@
+doctype html
+html(lang="en")
+	head
+		title Long Time Ticks Test
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			#timeline1, #timeline2, #timeline3 {
+				height:600px;
+				width:100%;
+			}
+
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+		div#timeline1
+		div#timeline2
+		div#timeline3
+		div#timeline4
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline_01 = new TL.Timeline('timeline1', 'wedding.json');
+			var timeline_02 = new TL.Timeline('timeline2', 'years.json');
+			var timeline_03 = new TL.Timeline('timeline3', 'science.json');
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/mark_twain.jade b/public/opac/TimelineJS3-3.5.1/source/jade/mark_twain.jade
new file mode 100644
index 0000000000000000000000000000000000000000..688b367f0e1dfa2bddbd3bc48dea856ea794bcd3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/mark_twain.jade
@@ -0,0 +1,41 @@
+doctype html
+html(lang="en")
+	head
+		title Mark Twain Example
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.bevan-potanosans.css?v1')
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'marktwain_juked.json', {
+				ga_property_id: "UA-27829802-4",
+				is_embed:true
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/milliseconds.jade b/public/opac/TimelineJS3-3.5.1/source/jade/milliseconds.jade
new file mode 100644
index 0000000000000000000000000000000000000000..07bc6bcfcc1258b3719e36b6facb8581c03bbf41
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/milliseconds.jade
@@ -0,0 +1,41 @@
+doctype html
+html(lang="en")
+	head
+		title Milliseconds
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'milliseconds.json', {
+				ga_property_id: "UA-27829802-4"
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/multiple_timeline.jade b/public/opac/TimelineJS3-3.5.1/source/jade/multiple_timeline.jade
new file mode 100644
index 0000000000000000000000000000000000000000..b6e190676a998c5d988a0c889759a3c28b9b43b7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/multiple_timeline.jade
@@ -0,0 +1,43 @@
+doctype html
+html(lang="en")
+	head
+		title TimelineJS Multiple Timelines Example
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			#timeline1, #timeline2, #timeline3 {
+				height:600px;
+				width:100%;
+			}
+
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+		div#timeline1
+		div#timeline2
+		div#timeline3
+		div#timeline4
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline_01 = new TL.Timeline('timeline1', 'marktwain.json');
+			var timeline_02 = new TL.Timeline('timeline2', 'years.json');
+			var timeline_03 = new TL.Timeline('timeline3', 'science.json');
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/seventh_century.jade b/public/opac/TimelineJS3-3.5.1/source/jade/seventh_century.jade
new file mode 100644
index 0000000000000000000000000000000000000000..a1e5e49984604f222c37a91e405a12682bdd5098
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/seventh_century.jade
@@ -0,0 +1,43 @@
+doctype html
+html(lang="en")
+	head
+		title The 7th Century
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'seventh_century.json', {
+				ga_property_id: "UA-27829802-4"
+			});
+			window.onresize = function(event) {
+				timeline.updateDisplay();
+			}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/sizes.jade b/public/opac/TimelineJS3-3.5.1/source/jade/sizes.jade
new file mode 100644
index 0000000000000000000000000000000000000000..39aef1e5e3a7e2ed917d06a42ad5a79239bbe624
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/sizes.jade
@@ -0,0 +1,73 @@
+doctype html
+html(lang="en")
+	head
+		title Testing Different Sizes
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			#timeline0, #timeline1, #timeline2, #timeline3, #timeline4 {
+				height:600px;
+				width:100%;
+				margin-bottom:50px;
+				margin-left:50px;
+				//border: 1px solid #999;
+			}
+			#timeline0 {
+				width:800px;
+			}
+			#timeline1 {
+				width:700px;
+			}
+			#timeline2 {
+				width:600px;
+			}
+			#timeline3 {
+				width:500px;
+			}
+			#timeline4 {
+				width:400px;
+			}
+
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+		h2(style="margin-left:50px")  800px
+		div#timeline0
+
+		h2(style="margin-left:50px")  700px
+		div#timeline1
+
+		h2(style="margin-left:50px")  600px
+		div#timeline2
+
+		h2(style="margin-left:50px")  500px
+		div#timeline3
+		
+		h2(style="margin-left:50px")  400px
+		div#timeline4
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline_00 = new TL.Timeline('timeline0', 'marktwain.json', {is_embed:true});
+			var timeline_01 = new TL.Timeline('timeline1', 'marktwain.json', {is_embed:true});
+			var timeline_02 = new TL.Timeline('timeline2', 'marktwain.json', {is_embed:true});
+			var timeline_03 = new TL.Timeline('timeline3', 'marktwain.json', {is_embed:true});
+			var timeline_04 = new TL.Timeline('timeline4', 'marktwain.json', {is_embed:true});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/timeline.jade b/public/opac/TimelineJS3-3.5.1/source/jade/timeline.jade
new file mode 100644
index 0000000000000000000000000000000000000000..0b2a46e58aa1d300f6c413c4ab2c65d76a822f8f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/timeline.jade
@@ -0,0 +1,43 @@
+doctype html
+html(lang="en")
+	head
+		title TimelineJS Example
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='css/timeline.css?v1')
+
+		//FONT
+		link(rel='stylesheet', href='css/fonts/font.default.css?v1')
+		
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'examples/welcome.json', {
+				theme_color: "#288EC3",
+				ga_property_id: "UA-27829802-4"
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/timeline_language.jade b/public/opac/TimelineJS3-3.5.1/source/jade/timeline_language.jade
new file mode 100644
index 0000000000000000000000000000000000000000..0aa8af7bad81f154c0c40a949561643620492637
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/timeline_language.jade
@@ -0,0 +1,43 @@
+doctype html
+html(lang="en")
+	head
+		title TimelineJS
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'marktwain.json', {
+				language: "fr",
+				ga_property_id: "UA-27829802-4"
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/timeline_top_nav.jade b/public/opac/TimelineJS3-3.5.1/source/jade/timeline_top_nav.jade
new file mode 100644
index 0000000000000000000000000000000000000000..90630c577bd469e4417d35e8c1d357c2251fbade
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/timeline_top_nav.jade
@@ -0,0 +1,43 @@
+doctype html
+html(lang="en")
+	head
+		title Timenav on top
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'welcome.json', {
+				timenav_position:"top",
+				ga_property_id: "UA-27829802-4"
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/timenav_height_example.jade b/public/opac/TimelineJS3-3.5.1/source/jade/timenav_height_example.jade
new file mode 100644
index 0000000000000000000000000000000000000000..1b2bdd65f6dfceb65c4dd50a9ae6d089b3ff83bb
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/timenav_height_example.jade
@@ -0,0 +1,57 @@
+doctype html
+html(lang="en")
+	head
+		title Timenav Height Example
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			#timeline1, #timeline2, #timeline3 {
+				height:700px;
+				width:100%;
+				margin-bottom:50px;
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+		h2(style="margin-left:50px") 50%
+		div#timeline1
+
+		h2(style="margin-left:50px")  75%
+		div#timeline2
+
+		h2(style="margin-left:50px")  25%
+		div#timeline3
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline_01 = new TL.Timeline('timeline1', 'marktwain_juked.json', {
+				timenav_height_percentage:50,
+				is_embed:true
+			});
+			var timeline_02 = new TL.Timeline('timeline2', 'marktwain_juked.json', {
+				timenav_height_percentage:75,
+				is_embed:true
+			});
+			var timeline_03 = new TL.Timeline('timeline3', 'marktwain_juked.json', {
+				timenav_height_percentage:25,
+				is_embed:true
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/jade/wedding.jade b/public/opac/TimelineJS3-3.5.1/source/jade/wedding.jade
new file mode 100644
index 0000000000000000000000000000000000000000..e02ca12483fb49d8603271b1fc87a56224bdde12
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/jade/wedding.jade
@@ -0,0 +1,41 @@
+doctype html
+html(lang="en")
+	head
+		title Wedding Example using Time and Seconds
+		meta(charset='utf-8')
+		meta(name='description', content='TimelineJS Embed')
+		meta(name='apple-mobile-web-app-capable', content='yes')
+		meta(name='apple-touch-fullscreen', content='yes')
+		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
+		// CSS
+		link(rel='stylesheet', href='../css/timeline.css?v1')
+		//FONT
+		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
+		
+		// Style
+		style.
+			html, body {
+				height:100%;
+				width:100%;
+				padding: 0px;
+				margin: 0px;
+			}
+			.tl-timeline {
+				
+			}
+
+		// HTML5 shim, for IE6-8 support of HTML elements
+		//if lt IE 9
+			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')
+
+	body
+
+		div#timeline
+
+		
+		// JavaScript
+		script(src='../js/timeline.js')
+		script.
+			var timeline = new TL.Timeline('timeline', 'wedding.json', {
+				ga_property_id: "UA-27829802-4"
+			});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/TL.Timeline.Min.js b/public/opac/TimelineJS3-3.5.1/source/js/TL.Timeline.Min.js
new file mode 100644
index 0000000000000000000000000000000000000000..55d1c670502e28b0ce359f616c6ba263d223b715
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/TL.Timeline.Min.js
@@ -0,0 +1,14 @@
+/*	TimelineJS Minified
+	Designed and built by Zach Wise at KnightLab
+
+	This Source Code Form is subject to the terms of the Mozilla Public
+	License, v. 2.0. If a copy of the MPL was not distributed with this
+	file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
+================================================== */
+
+/*	Required Files
+	CodeKit Import
+	https://incident57.com/codekit/
+================================================== */
+// @codekit-prepend "TL.Timeline.js";
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/TL.Timeline.js b/public/opac/TimelineJS3-3.5.1/source/js/TL.Timeline.js
new file mode 100644
index 0000000000000000000000000000000000000000..0e3c3e7bd88605e12b7345c204219e52975706f6
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/TL.Timeline.js
@@ -0,0 +1,946 @@
+/*  TimelineJS
+Designed and built by Zach Wise at KnightLab
+
+This Source Code Form is subject to the terms of the Mozilla Public
+License, v. 2.0. If a copy of the MPL was not distributed with this
+file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
+================================================== */
+/*
+TODO
+
+*/
+
+/*  Required Files
+CodeKit Import
+https://incident57.com/codekit/
+================================================== */
+
+// CORE
+	// @codekit-prepend "core/TL.js";
+	// @codekit-prepend "core/TL.Error.js";
+	// @codekit-prepend "core/TL.Util.js";
+	// @codekit-prepend "data/TL.Data.js";
+	// @codekit-prepend "core/TL.Class.js";
+	// @codekit-prepend "core/TL.Events.js";
+	// @codekit-prepend "core/TL.Browser.js";
+	// @codekit-prepend "core/TL.Load.js";
+	// @codekit-prepend "core/TL.TimelineConfig.js";
+	// @codekit-prepend "core/TL.ConfigFactory.js";
+
+
+// LANGUAGE
+	// @codekit-prepend "language/TL.Language.js";
+	// @codekit-prepend "language/TL.I18NMixins.js";
+
+// ANIMATION
+	// @codekit-prepend "animation/TL.Ease.js";
+	// @codekit-prepend "animation/TL.Animate.js";
+
+// DOM
+	// @codekit-prepend "dom/TL.Point.js";
+	// @codekit-prepend "dom/TL.DomMixins.js";
+	// @codekit-prepend "dom/TL.Dom.js";
+	// @codekit-prepend "dom/TL.DomUtil.js";
+	// @codekit-prepend "dom/TL.DomEvent.js";
+	// @codekit-prepend "dom/TL.StyleSheet.js";
+
+// Date
+	// @codekit-prepend "date/TL.Date.js";
+	// @codekit-prepend "date/TL.DateUtil.js";
+
+// UI
+	// @codekit-prepend "ui/TL.Draggable.js";
+	// @codekit-prepend "ui/TL.Swipable.js";
+	// @codekit-prepend "ui/TL.MenuBar.js";
+	// @codekit-prepend "ui/TL.Message.js";
+
+// MEDIA
+	// @codekit-prepend "media/TL.MediaType.js";
+	// @codekit-prepend "media/TL.Media.js";
+
+// MEDIA TYPES
+	// @codekit-prepend "media/types/TL.Media.Blockquote.js";
+	// @codekit-prepend "media/types/TL.Media.DailyMotion.js";
+	// @codekit-prepend "media/types/TL.Media.DocumentCloud.js";
+	// @codekit-prepend "media/types/TL.Media.Flickr.js";
+	// @codekit-prepend "media/types/TL.Media.GoogleDoc.js";
+	// @codekit-prepend "media/types/TL.Media.GooglePlus.js";
+	// @codekit-prepend "media/types/TL.Media.IFrame.js";
+	// @codekit-prepend "media/types/TL.Media.Image.js";
+	// @codekit-prepend "media/types/TL.Media.Imgur.js";
+	// @codekit-prepend "media/types/TL.Media.Instagram.js";
+	// @codekit-prepend "media/types/TL.Media.GoogleMap.js";
+	// @codekit-prepend "media/types/TL.Media.PDF.js";
+	// @codekit-prepend "media/types/TL.Media.Profile.js";
+	// @codekit-prepend "media/types/TL.Media.Slider.js";
+	// @codekit-prepend "media/types/TL.Media.SoundCloud.js";
+	// @codekit-prepend "media/types/TL.Media.Spotify.js";
+	// @codekit-prepend "media/types/TL.Media.Storify.js";
+	// @codekit-prepend "media/types/TL.Media.Text.js";
+	// @codekit-prepend "media/types/TL.Media.Twitter.js";
+	// @codekit-prepend "media/types/TL.Media.TwitterEmbed.js";
+	// @codekit-prepend "media/types/TL.Media.Vimeo.js";
+	// @codekit-prepend "media/types/TL.Media.Vine.js";
+	// @codekit-prepend "media/types/TL.Media.Website.js";
+	// @codekit-prepend "media/types/TL.Media.Wikipedia.js";
+	// @codekit-prepend "media/types/TL.Media.Wistia.js";
+	// @codekit-prepend "media/types/TL.Media.YouTube.js";
+	// @codekit-prepend "media/types/TL.Media.Audio.js";
+	// @codekit-prepend "media/types/TL.Media.Video.js";
+
+// STORYSLIDER
+	// @codekit-prepend "slider/TL.Slide.js";
+	// @codekit-prepend "slider/TL.SlideNav.js";
+	// @codekit-prepend "slider/TL.StorySlider.js";
+
+// TIMENAV
+	// @codekit-prepend "timenav/TL.TimeNav.js";
+	// @codekit-prepend "timenav/TL.TimeMarker.js";
+	// @codekit-prepend "timenav/TL.TimeEra.js";
+	// @codekit-prepend "timenav/TL.TimeGroup.js";
+	// @codekit-prepend "timenav/TL.TimeScale.js";
+	// @codekit-prepend "timenav/TL.TimeAxis.js";
+	// @codekit-prepend "timenav/TL.AxisHelper.js";
+
+
+TL.Timeline = TL.Class.extend({
+	includes: [TL.Events, TL.I18NMixins],
+
+	/*  Private Methods
+	================================================== */
+	initialize: function (elem, data, options) {
+		var self = this;
+		if (!options) { options = {}};
+		// Version
+		this.version = "3.2.6";
+
+		// Ready
+		this.ready = false;
+
+		// DOM ELEMENTS
+		this._el = {
+			container: {},
+			storyslider: {},
+			timenav: {},
+			menubar: {}
+		};
+
+		// Determine Container Element
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+		} else {
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		// Slider
+		this._storyslider = {};
+
+		// Style Sheet
+		this._style_sheet = new TL.StyleSheet();
+
+		// TimeNav
+		this._timenav = {};
+
+		// Menu Bar
+		this._menubar = {};
+
+		// Loaded State
+		this._loaded = {storyslider:false, timenav:false};
+
+		// Data Object
+		this.config = null;
+
+		this.options = {
+			script_path: 				"",
+			height: 					this._el.container.offsetHeight,
+			width: 						this._el.container.offsetWidth,
+			debug: 						false,
+			is_embed: 					false,
+			is_full_embed: 				false,
+			hash_bookmark: false,
+			default_bg_color: 			{r:255, g:255, b:255},
+			scale_factor: 				2,						// How many screen widths wide should the timeline be
+			layout: 					"landscape",			// portrait or landscape
+			timenav_position: 			"bottom",				// timeline on top or bottom
+			optimal_tick_width: 		60,						// optimal distance (in pixels) between ticks on axis
+			base_class: 				"tl-timeline", 		// removing tl-timeline will break all default stylesheets...
+			timenav_height: 			null,
+			timenav_height_percentage: 	25,						// Overrides timenav height as a percentage of the screen
+			timenav_mobile_height_percentage: 40, 				// timenav height as a percentage on mobile devices
+			timenav_height_min: 		175,					// Minimum timenav height
+			marker_height_min: 			30,						// Minimum Marker Height
+			marker_width_min: 			100,					// Minimum Marker Width
+			marker_padding: 			5,						// Top Bottom Marker Padding
+			start_at_slide: 			0,
+			start_at_end: 				false,
+			menubar_height: 			0,
+			skinny_size: 				650,
+			medium_size: 				800,
+			relative_date: 				false,					// Use momentjs to show a relative date from the slide.text.date.created_time field
+			use_bc: 					false,					// Use declared suffix on dates earlier than 0
+			// animation
+			duration: 					1000,
+			ease: 						TL.Ease.easeInOutQuint,
+			// interaction
+			dragging: 					true,
+			trackResize: 				true,
+			map_type: 					"stamen:toner-lite",
+			slide_padding_lr: 			100,					// padding on slide of slide
+			slide_default_fade: 		"0%",					// landscape fade
+			zoom_sequence: 				[0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89], // Array of Fibonacci numbers for TimeNav zoom levels
+			language: 					"en",
+			ga_property_id: 			null,
+			track_events: 				['back_to_start','nav_next','nav_previous','zoom_in','zoom_out' ]
+		};
+
+		// Animation Objects
+		this.animator_timenav = null;
+		this.animator_storyslider = null;
+		this.animator_menubar = null;
+
+		// Add message to DOM
+		this.message = new TL.Message({}, {message_class: "tl-message-full"}, this._el.container);
+
+		// Merge Options
+		if (typeof(options.default_bg_color) == "string") {
+			var parsed = TL.Util.hexToRgb(options.default_bg_color); // will clear it out if its invalid
+			if (parsed) {
+				options.default_bg_color = parsed;
+			} else {
+				delete options.default_bg_color
+				trace("Invalid default background color. Ignoring.");
+			}
+		}
+		TL.Util.mergeData(this.options, options);
+
+		window.addEventListener("resize", function(e){
+			self.updateDisplay();
+		});
+
+		// Set Debug Mode
+		TL.debug = this.options.debug;
+
+		// Apply base class to container
+		TL.DomUtil.addClass(this._el.container, 'tl-timeline');
+
+		if (this.options.is_embed) {
+			TL.DomUtil.addClass(this._el.container, 'tl-timeline-embed');
+		}
+
+		if (this.options.is_full_embed) {
+			TL.DomUtil.addClass(this._el.container, 'tl-timeline-full-embed');
+		}
+
+		document.addEventListener("keydown", function(event) {
+			var keyName = event.key;
+			var currentSlide = self._getSlideIndex(self.current_id);
+			var _n = self.config.events.length - 1;
+			var lastSlide = self.config.title ? _n + 1 : _n;
+			var firstSlide = 0;
+
+			if (keyName == 'ArrowLeft'){
+				if (currentSlide!=firstSlide){
+					self.goToPrev();
+				}
+			}
+			else if (keyName == 'ArrowRight'){
+				if (currentSlide!=lastSlide){
+					self.goToNext();
+				}
+			}
+		});
+
+		// Use Relative Date Calculations
+		// NOT YET IMPLEMENTED
+		if(this.options.relative_date) {
+			if (typeof(moment) !== 'undefined') {
+				self._loadLanguage(data);
+			} else {
+				TL.Load.js(this.options.script_path + "/library/moment.js", function() {
+					self._loadLanguage(data);
+					trace("LOAD MOMENTJS")
+				});
+			}
+		} else {
+			self._loadLanguage(data);
+		}
+
+	},
+	_translateError: function(e) {
+	    if(e.hasOwnProperty('stack')) {
+	        trace(e.stack);
+	    }
+	    if(e.message_key) {
+	        return this._(e.message_key) + (e.detail ? ' [' + e.detail +']' : '')
+	    }
+	    return e;
+	},
+
+	/*  Load Language
+	================================================== */
+	_loadLanguage: function(data) {
+		try {
+		    this.options.language = new TL.Language(this.options);
+
+		    this._initData(data);
+		} catch(e) {
+		    this.showMessage(this._translateError(e));
+		}
+	},
+
+
+	/*  Navigation
+	================================================== */
+
+	// Goto slide with id
+	goToId: function(id) {
+		if (this.current_id != id) {
+			this.current_id = id;
+			this._timenav.goToId(this.current_id);
+			this._storyslider.goToId(this.current_id, false, true);
+			this.fire("change", {unique_id: this.current_id}, this);
+		}
+	},
+
+	// Goto slide n
+	goTo: function(n) {
+		if(this.config.title) {
+			if(n == 0) {
+				this.goToId(this.config.title.unique_id);
+			} else {
+				this.goToId(this.config.events[n - 1].unique_id);
+			}
+		} else {
+			this.goToId(this.config.events[n].unique_id);
+		}
+	},
+
+	// Goto first slide
+	goToStart: function() {
+		this.goTo(0);
+	},
+
+	// Goto last slide
+	goToEnd: function() {
+		var _n = this.config.events.length - 1;
+		this.goTo(this.config.title ? _n + 1 : _n);
+	},
+
+	// Goto previous slide
+	goToPrev: function() {
+		this.goTo(this._getSlideIndex(this.current_id) - 1);
+	},
+
+	// Goto next slide
+	goToNext: function() {
+		this.goTo(this._getSlideIndex(this.current_id) + 1);
+	},
+
+	/* Event maniupluation
+	================================================== */
+
+	// Add an event
+	add: function(data) {
+		var unique_id = this.config.addEvent(data);
+
+		var n = this._getEventIndex(unique_id);
+		var d = this.config.events[n];
+
+		this._storyslider.createSlide(d, this.config.title ? n+1 : n);
+		this._storyslider._updateDrawSlides();
+
+		this._timenav.createMarker(d, n);
+		this._timenav._updateDrawTimeline(false);
+
+		this.fire("added", {unique_id: unique_id});
+	},
+
+	// Remove an event
+	remove: function(n) {
+		if(n >= 0  && n < this.config.events.length) {
+			// If removing the current, nav to new one first
+			if(this.config.events[n].unique_id == this.current_id) {
+				if(n < this.config.events.length - 1) {
+					this.goTo(n + 1);
+				} else {
+					this.goTo(n - 1);
+				}
+			}
+
+			var event = this.config.events.splice(n, 1);
+			delete this.config.event_dict[event[0].unique_id];
+			this._storyslider.destroySlide(this.config.title ? n+1 : n);
+			this._storyslider._updateDrawSlides();
+
+			this._timenav.destroyMarker(n);
+			this._timenav._updateDrawTimeline(false);
+
+			this.fire("removed", {unique_id: event[0].unique_id});
+		}
+	},
+
+	removeId: function(id) {
+		this.remove(this._getEventIndex(id));
+	},
+
+	/* Get slide data
+	================================================== */
+
+	getData: function(n) {
+		if(this.config.title) {
+			if(n == 0) {
+				return this.config.title;
+			} else if(n > 0 && n <= this.config.events.length) {
+				return this.config.events[n - 1];
+			}
+		} else if(n >= 0 && n < this.config.events.length) {
+			return this.config.events[n];
+		}
+		return null;
+	},
+
+	getDataById: function(id) {
+		return this.getData(this._getSlideIndex(id));
+	},
+
+	/* Get slide object
+	================================================== */
+
+	getSlide: function(n) {
+		if(n >= 0 && n < this._storyslider._slides.length) {
+			return this._storyslider._slides[n];
+		}
+		return null;
+	},
+
+	getSlideById: function(id) {
+		return this.getSlide(this._getSlideIndex(id));
+	},
+
+	getCurrentSlide: function() {
+		return this.getSlideById(this.current_id);
+	},
+
+
+	/*  Display
+	================================================== */
+	updateDisplay: function() {
+		if (this.ready) {
+			this._updateDisplay();
+		}
+	},
+
+  	/*
+  		Compute the height of the navigation section of the Timeline, taking into account
+  		the possibility of an explicit height or height percentage, but also honoring the
+  		`timenav_height_min` option value. If `timenav_height` is specified it takes precedence over `timenav_height_percentage` but in either case, if the resultant pixel height is less than `options.timenav_height_min` then the value of `options.timenav_height_min` will be returned. (A minor adjustment is made to the returned value to account for marker padding.)
+
+  		Arguments:
+  		@timenav_height (optional): an integer value for the desired height in pixels
+  		@timenav_height_percentage (optional): an integer between 1 and 100
+
+  	 */
+	_calculateTimeNavHeight: function(timenav_height, timenav_height_percentage) {
+
+		var height = 0;
+
+		if (timenav_height) {
+			height = timenav_height;
+		} else {
+			if (this.options.timenav_height_percentage || timenav_height_percentage) {
+				if (timenav_height_percentage) {
+					height = Math.round((this.options.height/100)*timenav_height_percentage);
+				} else {
+					height = Math.round((this.options.height/100)*this.options.timenav_height_percentage);
+				}
+
+			}
+		}
+
+		// Set new minimum based on how many rows needed
+		if (this._timenav.ready) {
+			if (this.options.timenav_height_min < this._timenav.getMinimumHeight()) {
+				this.options.timenav_height_min = this._timenav.getMinimumHeight();
+			}
+		}
+
+		// If height is less than minimum set it to minimum
+		if (height < this.options.timenav_height_min) {
+			height = this.options.timenav_height_min;
+		}
+
+		height = height - (this.options.marker_padding * 2);
+
+		return height;
+	},
+
+	/*  Private Methods
+	================================================== */
+
+	// Update View
+	_updateDisplay: function(timenav_height, animate, d) {
+		var duration    = this.options.duration,
+		display_class   = this.options.base_class,
+		menu_position   = 0,
+		self      = this;
+
+		if (d) {
+			duration = d;
+		}
+
+		// Update width and height
+		this.options.width = this._el.container.offsetWidth;
+		this.options.height = this._el.container.offsetHeight;
+
+		// Check if skinny
+		if (this.options.width <= this.options.skinny_size) {
+			display_class += " tl-skinny";
+			this.options.layout = "portrait";
+		} else if (this.options.width <= this.options.medium_size) {
+			display_class += " tl-medium";
+			this.options.layout = "landscape";
+		} else {
+			this.options.layout = "landscape";
+		}
+
+		// Detect Mobile and Update Orientation on Touch devices
+		if (TL.Browser.touch) {
+			this.options.layout = TL.Browser.orientation();
+		}
+
+		if (TL.Browser.mobile) {
+			display_class += " tl-mobile";
+			// Set TimeNav Height
+			this.options.timenav_height = this._calculateTimeNavHeight(timenav_height, this.options.timenav_mobile_height_percentage);
+		} else {
+			// Set TimeNav Height
+			this.options.timenav_height = this._calculateTimeNavHeight(timenav_height);
+		}
+
+		// LAYOUT
+		if (this.options.layout == "portrait") {
+			// Portrait
+			display_class += " tl-layout-portrait";
+
+		} else {
+			// Landscape
+			display_class += " tl-layout-landscape";
+
+		}
+
+		// Set StorySlider Height
+		this.options.storyslider_height = (this.options.height - this.options.timenav_height);
+
+		// Positon Menu
+		if (this.options.timenav_position == "top") {
+			menu_position = ( Math.ceil(this.options.timenav_height)/2 ) - (this._el.menubar.offsetHeight/2) - (39/2) ;
+		} else {
+			menu_position = Math.round(this.options.storyslider_height + 1 + ( Math.ceil(this.options.timenav_height)/2 ) - (this._el.menubar.offsetHeight/2) - (35/2));
+		}
+
+
+		if (animate) {
+
+			// Animate TimeNav
+
+			/*
+			if (this.animator_timenav) {
+			this.animator_timenav.stop();
+			}
+
+			this.animator_timenav = TL.Animate(this._el.timenav, {
+			height:   (this.options.timenav_height) + "px",
+			duration:   duration/4,
+			easing:   TL.Ease.easeOutStrong,
+			complete: function () {
+			//self._map.updateDisplay(self.options.width, self.options.timenav_height, animate, d, self.options.menubar_height);
+			}
+			});
+			*/
+
+			this._el.timenav.style.height = Math.ceil(this.options.timenav_height) + "px";
+
+			// Animate StorySlider
+			if (this.animator_storyslider) {
+				this.animator_storyslider.stop();
+			}
+			this.animator_storyslider = TL.Animate(this._el.storyslider, {
+				height:   this.options.storyslider_height + "px",
+				duration:   duration/2,
+				easing:   TL.Ease.easeOutStrong
+			});
+
+			// Animate Menubar
+			if (this.animator_menubar) {
+				this.animator_menubar.stop();
+			}
+
+			this.animator_menubar = TL.Animate(this._el.menubar, {
+				top:  menu_position + "px",
+				duration:   duration/2,
+				easing:   TL.Ease.easeOutStrong
+			});
+
+		} else {
+			// TimeNav
+			this._el.timenav.style.height = Math.ceil(this.options.timenav_height) + "px";
+
+			// StorySlider
+			this._el.storyslider.style.height = this.options.storyslider_height + "px";
+
+			// Menubar
+			this._el.menubar.style.top = menu_position + "px";
+		}
+
+		if (this.message) {
+			this.message.updateDisplay(this.options.width, this.options.height);
+		}
+		// Update Component Displays
+		this._timenav.updateDisplay(this.options.width, this.options.timenav_height, animate);
+		this._storyslider.updateDisplay(this.options.width, this.options.storyslider_height, animate, this.options.layout);
+
+		if (this.options.language.direction == 'rtl') {
+			display_class += ' tl-rtl';
+		}
+
+
+		// Apply class
+		this._el.container.className = display_class;
+
+	},
+
+	// Update hashbookmark in the url bar
+	_updateHashBookmark: function(id) {
+		var hash = "#" + "event-" + id.toString();
+		if (window.location.protocol != 'file:') {
+			window.history.replaceState(null, "Browsing TimelineJS", hash);
+		}
+		this.fire("hash_updated", {unique_id:this.current_id, hashbookmark:"#" + "event-" + id.toString()}, this);
+	},
+
+	/*  Init
+	================================================== */
+	// Initialize the data
+	_initData: function(data) {
+		var self = this;
+
+		if (typeof data == 'string') {
+			var self = this;
+			TL.ConfigFactory.makeConfig(data, function(config) {
+				self.setConfig(config);
+			});
+		} else if (TL.TimelineConfig == data.constructor) {
+			this.setConfig(data);
+		} else {
+			this.setConfig(new TL.TimelineConfig(data));
+		}
+	},
+
+	setConfig: function(config) {
+		this.config = config;
+		this.config.validate();
+		this._validateOptions();
+		if (this.config.isValid()) {
+		    try {
+			    this._onDataLoaded();
+			} catch(e) {
+			    this.showMessage("<strong>"+ this._('error') +":</strong> " + this._translateError(e));
+			}
+		} else {
+		    var translated_errs = [];
+
+		    for(var i = 0, errs = this.config.getErrors(); i < errs.length; i++) {
+		        translated_errs.push(this._translateError(errs[i]));
+		    }
+
+			this.showMessage("<strong>"+ this._('error') +":</strong> " + translated_errs.join('<br>'));
+			// should we set 'self.ready'? if not, it won't resize,
+			// but most resizing would only work
+			// if more setup happens
+		}
+	},
+	_validateOptions: function() {
+		// assumes that this.options and this.config have been set.
+		var INTEGER_PROPERTIES = ['timenav_height', 'timenav_height_min', 'marker_height_min', 'marker_width_min', 'marker_padding', 'start_at_slide', 'slide_padding_lr'  ];
+
+		for (var i = 0; i < INTEGER_PROPERTIES.length; i++) {
+				var opt = INTEGER_PROPERTIES[i];
+				var value = this.options[opt];
+				valid = true;
+				if (typeof(value) == 'number') {
+					valid = (value == parseInt(value))
+				} else if (typeof(value) == "string") {
+					valid = (value.match(/^\s*(\-?\d+)?\s*$/));
+				}
+				if (!valid) {
+					this.config.logError({ message_key: 'invalid_integer_option', detail: opt });
+				}
+		}
+	},
+	// Initialize the layout
+	_initLayout: function () {
+		var self = this;
+
+        this.message.removeFrom(this._el.container);
+		this._el.container.innerHTML = "";
+
+		// Create Layout
+		if (this.options.timenav_position == "top") {
+			this._el.timenav		= TL.Dom.create('div', 'tl-timenav', this._el.container);
+			this._el.storyslider	= TL.Dom.create('div', 'tl-storyslider', this._el.container);
+		} else {
+			this._el.storyslider  	= TL.Dom.create('div', 'tl-storyslider', this._el.container);
+			this._el.timenav		= TL.Dom.create('div', 'tl-timenav', this._el.container);
+		}
+
+		this._el.menubar			= TL.Dom.create('div', 'tl-menubar', this._el.container);
+
+
+		// Initial Default Layout
+		this.options.width        = this._el.container.offsetWidth;
+		this.options.height       = this._el.container.offsetHeight;
+		this._el.storyslider.style.top  = "1px";
+
+		// Set TimeNav Height
+		this.options.timenav_height = this._calculateTimeNavHeight(this.options.timenav_height);
+
+		// Create TimeNav
+		this._timenav = new TL.TimeNav(this._el.timenav, this.config, this.options);
+		this._timenav.on('loaded', this._onTimeNavLoaded, this);
+		this._timenav.on('update_timenav_min', this._updateTimeNavHeightMin, this);
+		this._timenav.options.height = this.options.timenav_height;
+		this._timenav.init();
+
+        // intial_zoom cannot be applied before the timenav has been created
+        if (this.options.initial_zoom) {
+            // at this point, this.options refers to the merged set of options
+            this.setZoom(this.options.initial_zoom);
+        }
+
+		// Create StorySlider
+		this._storyslider = new TL.StorySlider(this._el.storyslider, this.config, this.options);
+		this._storyslider.on('loaded', this._onStorySliderLoaded, this);
+		this._storyslider.init();
+
+		// Create Menu Bar
+		this._menubar = new TL.MenuBar(this._el.menubar, this._el.container, this.options);
+
+		// LAYOUT
+		if (this.options.layout == "portrait") {
+			this.options.storyslider_height = (this.options.height - this.options.timenav_height - 1);
+		} else {
+			this.options.storyslider_height = (this.options.height - 1);
+		}
+
+
+		// Update Display
+		this._updateDisplay(this._timenav.options.height, true, 2000);
+
+	},
+
+  /* Depends upon _initLayout because these events are on things the layout initializes */
+	_initEvents: function () {
+		// TimeNav Events
+		this._timenav.on('change', this._onTimeNavChange, this);
+		this._timenav.on('zoomtoggle', this._onZoomToggle, this);
+
+		// StorySlider Events
+		this._storyslider.on('change', this._onSlideChange, this);
+		this._storyslider.on('colorchange', this._onColorChange, this);
+		this._storyslider.on('nav_next', this._onStorySliderNext, this);
+		this._storyslider.on('nav_previous', this._onStorySliderPrevious, this);
+
+		// Menubar Events
+		this._menubar.on('zoom_in', this._onZoomIn, this);
+		this._menubar.on('zoom_out', this._onZoomOut, this);
+		this._menubar.on('back_to_start', this._onBackToStart, this);
+
+	},
+
+	/* Analytics
+	================================================== */
+	_initGoogleAnalytics: function() {
+		(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+
+		ga('create', this.options.ga_property_id, 'auto');
+	},
+
+	_initAnalytics: function() {
+		if (this.options.ga_property_id === null) { return; }
+		this._initGoogleAnalytics();
+        ga('send', 'pageview');
+		var events = this.options.track_events;
+		for (i=0; i < events.length; i++) {
+			var event_ = events[i];
+			this.addEventListener(event_, function(e) {
+				ga('send', 'event', e.type, 'clicked');
+			});
+		}
+	},
+
+	_onZoomToggle: function(e) {
+		if (e.zoom == "in") {
+			this._menubar.toogleZoomIn(e.show);
+		} else if (e.zoom == "out") {
+			this._menubar.toogleZoomOut(e.show);
+		}
+
+	},
+
+	/* Get index of event by id
+	================================================== */
+	_getEventIndex: function(id) {
+		for(var i = 0; i < this.config.events.length; i++) {
+			if(id == this.config.events[i].unique_id) {
+				return i;
+			}
+		}
+		return -1;
+	},
+
+	/*  Get index of slide by id
+	================================================== */
+	_getSlideIndex: function(id) {
+		if(this.config.title && this.config.title.unique_id == id) {
+			return 0;
+		}
+		for(var i = 0; i < this.config.events.length; i++) {
+			if(id == this.config.events[i].unique_id) {
+				return this.config.title ? i+1 : i;
+			}
+		}
+		return -1;
+	},
+
+	/*  Events
+	================================================== */
+
+	_onDataLoaded: function(e) {
+		this.fire("dataloaded");
+		this._initLayout();
+		this._initEvents();
+		this._initAnalytics();
+		if (this.message) {
+			this.message.hide();
+		}
+
+		this.ready = true;
+
+	},
+
+	showMessage: function(msg) {
+		if (this.message) {
+			this.message.updateMessage(msg);
+		} else {
+			trace("No message display available.")
+			trace(msg);
+		}
+	},
+
+	_onColorChange: function(e) {
+		this.fire("color_change", {unique_id:this.current_id}, this);
+		if (e.color || e.image) {
+
+		} else {
+
+		}
+	},
+
+	_onSlideChange: function(e) {
+		if (this.current_id != e.unique_id) {
+			this.current_id = e.unique_id;
+			this._timenav.goToId(this.current_id);
+			this._onChange(e);
+		}
+	},
+
+	_onTimeNavChange: function(e) {
+		if (this.current_id != e.unique_id) {
+			this.current_id = e.unique_id;
+			this._storyslider.goToId(this.current_id);
+			this._onChange(e);
+		}
+	},
+
+	_onChange: function(e) {
+		this.fire("change", {unique_id:this.current_id}, this);
+		if (this.options.hash_bookmark && this.current_id) {
+			this._updateHashBookmark(this.current_id);
+		}
+	},
+
+	_onBackToStart: function(e) {
+		this._storyslider.goTo(0);
+		this.fire("back_to_start", {unique_id:this.current_id}, this);
+	},
+
+	/**
+	 * Zoom in and zoom out should be part of the public API.
+	 */
+	zoomIn: function() {
+	    this._timenav.zoomIn();
+	},
+	zoomOut: function() {
+	    this._timenav.zoomOut();
+	},
+
+	setZoom: function(level) {
+	    this._timenav.setZoom(level);
+	},
+
+	_onZoomIn: function(e) {
+		this._timenav.zoomIn();
+		this.fire("zoom_in", {zoom_level:this._timenav.options.scale_factor}, this);
+	},
+
+	_onZoomOut: function(e) {
+		this._timenav.zoomOut();
+		this.fire("zoom_out", {zoom_level:this._timenav.options.scale_factor}, this);
+	},
+
+	_onTimeNavLoaded: function() {
+		this._loaded.timenav = true;
+		this._onLoaded();
+	},
+
+	_onStorySliderLoaded: function() {
+		this._loaded.storyslider = true;
+		this._onLoaded();
+	},
+
+	_onStorySliderNext: function(e) {
+		this.fire("nav_next", e);
+	},
+
+	_onStorySliderPrevious: function(e) {
+		this.fire("nav_previous", e);
+	},
+
+	_onLoaded: function() {
+		if (this._loaded.storyslider && this._loaded.timenav) {
+			this.fire("loaded", this.config);
+			// Go to proper slide
+			if (this.options.hash_bookmark && window.location.hash != "") {
+				this.goToId(window.location.hash.replace("#event-", ""));
+			} else {
+				if( TL.Util.isTrue(this.options.start_at_end) || this.options.start_at_slide > this.config.events.length ) {
+					this.goToEnd();
+				} else {
+					this.goTo(this.options.start_at_slide);
+				}
+				if (this.options.hash_bookmark ) {
+					this._updateHashBookmark(this.current_id);
+				}
+			}
+
+		}
+	}
+
+});
+
+TL.Timeline.source_path = (function() {
+	var script_tags = document.getElementsByTagName('script');
+	var src = script_tags[script_tags.length-1].src;
+	return src.substr(0,src.lastIndexOf('/'));
+})();
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/animation/TL.Animate.js b/public/opac/TimelineJS3-3.5.1/source/js/animation/TL.Animate.js
new file mode 100644
index 0000000000000000000000000000000000000000..714b67eeffafe92b525394a9fdd48c4172ca886a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/animation/TL.Animate.js
@@ -0,0 +1,430 @@
+/*	TL.Animate
+	Basic animation
+================================================== */
+
+TL.Animate = function(el, options) {
+	var animation = new tlanimate(el, options),
+		webkit_timeout;
+		/*
+		// POSSIBLE ISSUE WITH WEBKIT FUTURE BUILDS
+	var onWebKitTimeout = function() {
+
+		animation.stop(true);
+	}
+	if (TL.Browser.webkit) {
+		webkit_timeout = setTimeout(function(){onWebKitTimeout()}, options.duration);
+	}
+	*/
+	return animation;
+};
+
+
+/*	Based on: Morpheus
+	https://github.com/ded/morpheus - (c) Dustin Diaz 2011
+	License MIT
+================================================== */
+window.tlanimate = (function() {
+
+	var doc = document,
+		win = window,
+		perf = win.performance,
+		perfNow = perf && (perf.now || perf.webkitNow || perf.msNow || perf.mozNow),
+		now = perfNow ? function () { return perfNow.call(perf) } : function () { return +new Date() },
+		html = doc.documentElement,
+		fixTs = false, // feature detected below
+		thousand = 1000,
+		rgbOhex = /^rgb\(|#/,
+		relVal = /^([+\-])=([\d\.]+)/,
+		numUnit = /^(?:[\+\-]=?)?\d+(?:\.\d+)?(%|in|cm|mm|em|ex|pt|pc|px)$/,
+		rotate = /rotate\(((?:[+\-]=)?([\-\d\.]+))deg\)/,
+		scale = /scale\(((?:[+\-]=)?([\d\.]+))\)/,
+		skew = /skew\(((?:[+\-]=)?([\-\d\.]+))deg, ?((?:[+\-]=)?([\-\d\.]+))deg\)/,
+		translate = /translate\(((?:[+\-]=)?([\-\d\.]+))px, ?((?:[+\-]=)?([\-\d\.]+))px\)/,
+		// these elements do not require 'px'
+		unitless = { lineHeight: 1, zoom: 1, zIndex: 1, opacity: 1, transform: 1};
+
+  // which property name does this browser use for transform
+	var transform = function () {
+		var styles = doc.createElement('a').style,
+			props = ['webkitTransform', 'MozTransform', 'OTransform', 'msTransform', 'Transform'],
+			i;
+
+		for (i = 0; i < props.length; i++) {
+			if (props[i] in styles) return props[i]
+		};
+	}();
+
+	// does this browser support the opacity property?
+	var opacity = function () {
+		return typeof doc.createElement('a').style.opacity !== 'undefined'
+	}();
+
+	// initial style is determined by the elements themselves
+	var getStyle = doc.defaultView && doc.defaultView.getComputedStyle ?
+	function (el, property) {
+		property = property == 'transform' ? transform : property
+		property = camelize(property)
+		var value = null,
+			computed = doc.defaultView.getComputedStyle(el, '');
+
+		computed && (value = computed[property]);
+		return el.style[property] || value;
+	} : html.currentStyle ?
+
+    function (el, property) {
+		property = camelize(property)
+
+		if (property == 'opacity') {
+			var val = 100
+			try {
+				val = el.filters['DXImageTransform.Microsoft.Alpha'].opacity
+			} catch (e1) {
+				try {
+					val = el.filters('alpha').opacity
+				} catch (e2) {
+
+				}
+			}
+			return val / 100
+		}
+		var value = el.currentStyle ? el.currentStyle[property] : null
+		return el.style[property] || value
+	} :
+
+    function (el, property) {
+		return el.style[camelize(property)]
+    }
+
+  var frame = function () {
+    // native animation frames
+    // http://webstuff.nfshost.com/anim-timing/Overview.html
+    // http://dev.chromium.org/developers/design-documents/requestanimationframe-implementation
+    return win.requestAnimationFrame  ||
+      win.webkitRequestAnimationFrame ||
+      win.mozRequestAnimationFrame    ||
+      win.msRequestAnimationFrame     ||
+      win.oRequestAnimationFrame      ||
+      function (callback) {
+        win.setTimeout(function () {
+          callback(+new Date())
+        }, 17) // when I was 17..
+      }
+  }()
+
+  var children = []
+
+	frame(function(timestamp) {
+	  	// feature-detect if rAF and now() are of the same scale (epoch or high-res),
+		// if not, we have to do a timestamp fix on each frame
+		fixTs = timestamp > 1e12 != now() > 1e12
+	})
+
+  function has(array, elem, i) {
+    if (Array.prototype.indexOf) return array.indexOf(elem)
+    for (i = 0; i < array.length; ++i) {
+      if (array[i] === elem) return i
+    }
+  }
+
+  function render(timestamp) {
+    var i, count = children.length
+    // if we're using a high res timer, make sure timestamp is not the old epoch-based value.
+    // http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision
+    if (perfNow && timestamp > 1e12) timestamp = now()
+	if (fixTs) timestamp = now()
+    for (i = count; i--;) {
+      children[i](timestamp)
+    }
+    children.length && frame(render)
+  }
+
+  function live(f) {
+    if (children.push(f) === 1) frame(render)
+  }
+
+  function die(f) {
+    var rest, index = has(children, f)
+    if (index >= 0) {
+      rest = children.slice(index + 1)
+      children.length = index
+      children = children.concat(rest)
+    }
+  }
+
+  function parseTransform(style, base) {
+    var values = {}, m
+    if (m = style.match(rotate)) values.rotate = by(m[1], base ? base.rotate : null)
+    if (m = style.match(scale)) values.scale = by(m[1], base ? base.scale : null)
+    if (m = style.match(skew)) {values.skewx = by(m[1], base ? base.skewx : null); values.skewy = by(m[3], base ? base.skewy : null)}
+    if (m = style.match(translate)) {values.translatex = by(m[1], base ? base.translatex : null); values.translatey = by(m[3], base ? base.translatey : null)}
+    return values
+  }
+
+  function formatTransform(v) {
+    var s = ''
+    if ('rotate' in v) s += 'rotate(' + v.rotate + 'deg) '
+    if ('scale' in v) s += 'scale(' + v.scale + ') '
+    if ('translatex' in v) s += 'translate(' + v.translatex + 'px,' + v.translatey + 'px) '
+    if ('skewx' in v) s += 'skew(' + v.skewx + 'deg,' + v.skewy + 'deg)'
+    return s
+  }
+
+  function rgb(r, g, b) {
+    return '#' + (1 << 24 | r << 16 | g << 8 | b).toString(16).slice(1)
+  }
+
+  // convert rgb and short hex to long hex
+  function toHex(c) {
+    var m = c.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/)
+    return (m ? rgb(m[1], m[2], m[3]) : c)
+      .replace(/#(\w)(\w)(\w)$/, '#$1$1$2$2$3$3') // short skirt to long jacket
+  }
+
+  // change font-size => fontSize etc.
+  function camelize(s) {
+    return s.replace(/-(.)/g, function (m, m1) {
+      return m1.toUpperCase()
+    })
+  }
+
+  // aren't we having it?
+  function fun(f) {
+    return typeof f == 'function'
+  }
+
+  function nativeTween(t) {
+    // default to a pleasant-to-the-eye easeOut (like native animations)
+    return Math.sin(t * Math.PI / 2)
+  }
+
+  /**
+    * Core tween method that requests each frame
+    * @param duration: time in milliseconds. defaults to 1000
+    * @param fn: tween frame callback function receiving 'position'
+    * @param done {optional}: complete callback function
+    * @param ease {optional}: easing method. defaults to easeOut
+    * @param from {optional}: integer to start from
+    * @param to {optional}: integer to end at
+    * @returns method to stop the animation
+    */
+  function tween(duration, fn, done, ease, from, to) {
+    ease = fun(ease) ? ease : morpheus.easings[ease] || nativeTween
+    var time = duration || thousand
+      , self = this
+      , diff = to - from
+      , start = now()
+      , stop = 0
+      , end = 0
+
+    function run(t) {
+      var delta = t - start
+      if (delta > time || stop) {
+        to = isFinite(to) ? to : 1
+        stop ? end && fn(to) : fn(to)
+        die(run)
+        return done && done.apply(self)
+      }
+      // if you don't specify a 'to' you can use tween as a generic delta tweener
+      // cool, eh?
+      isFinite(to) ?
+        fn((diff * ease(delta / time)) + from) :
+        fn(ease(delta / time))
+    }
+
+    live(run)
+
+    return {
+      stop: function (jump) {
+        stop = 1
+        end = jump // jump to end of animation?
+        if (!jump) done = null // remove callback if not jumping to end
+      }
+    }
+  }
+
+  /**
+    * generic bezier method for animating x|y coordinates
+    * minimum of 2 points required (start and end).
+    * first point start, last point end
+    * additional control points are optional (but why else would you use this anyway ;)
+    * @param points: array containing control points
+       [[0, 0], [100, 200], [200, 100]]
+    * @param pos: current be(tween) position represented as float  0 - 1
+    * @return [x, y]
+    */
+  function bezier(points, pos) {
+    var n = points.length, r = [], i, j
+    for (i = 0; i < n; ++i) {
+      r[i] = [points[i][0], points[i][1]]
+    }
+    for (j = 1; j < n; ++j) {
+      for (i = 0; i < n - j; ++i) {
+        r[i][0] = (1 - pos) * r[i][0] + pos * r[parseInt(i + 1, 10)][0]
+        r[i][1] = (1 - pos) * r[i][1] + pos * r[parseInt(i + 1, 10)][1]
+      }
+    }
+    return [r[0][0], r[0][1]]
+  }
+
+  // this gets you the next hex in line according to a 'position'
+  function nextColor(pos, start, finish) {
+    var r = [], i, e, from, to
+    for (i = 0; i < 6; i++) {
+      from = Math.min(15, parseInt(start.charAt(i),  16))
+      to   = Math.min(15, parseInt(finish.charAt(i), 16))
+      e = Math.floor((to - from) * pos + from)
+      e = e > 15 ? 15 : e < 0 ? 0 : e
+      r[i] = e.toString(16)
+    }
+    return '#' + r.join('')
+  }
+
+  // this retreives the frame value within a sequence
+  function getTweenVal(pos, units, begin, end, k, i, v) {
+    if (k == 'transform') {
+      v = {}
+      for (var t in begin[i][k]) {
+        v[t] = (t in end[i][k]) ? Math.round(((end[i][k][t] - begin[i][k][t]) * pos + begin[i][k][t]) * thousand) / thousand : begin[i][k][t]
+      }
+      return v
+    } else if (typeof begin[i][k] == 'string') {
+      return nextColor(pos, begin[i][k], end[i][k])
+    } else {
+      // round so we don't get crazy long floats
+      v = Math.round(((end[i][k] - begin[i][k]) * pos + begin[i][k]) * thousand) / thousand
+      // some css properties don't require a unit (like zIndex, lineHeight, opacity)
+      if (!(k in unitless)) v += units[i][k] || 'px'
+      return v
+    }
+  }
+
+  // support for relative movement via '+=n' or '-=n'
+  function by(val, start, m, r, i) {
+    return (m = relVal.exec(val)) ?
+      (i = parseFloat(m[2])) && (start + (m[1] == '+' ? 1 : -1) * i) :
+      parseFloat(val)
+  }
+
+  /**
+    * morpheus:
+    * @param element(s): HTMLElement(s)
+    * @param options: mixed bag between CSS Style properties & animation options
+    *  - {n} CSS properties|values
+    *     - value can be strings, integers,
+    *     - or callback function that receives element to be animated. method must return value to be tweened
+    *     - relative animations start with += or -= followed by integer
+    *  - duration: time in ms - defaults to 1000(ms)
+    *  - easing: a transition method - defaults to an 'easeOut' algorithm
+    *  - complete: a callback method for when all elements have finished
+    *  - bezier: array of arrays containing x|y coordinates that define the bezier points. defaults to none
+    *     - this may also be a function that receives element to be animated. it must return a value
+    */
+  function morpheus(elements, options) {
+    var els = elements ? (els = isFinite(elements.length) ? elements : [elements]) : [], i
+      , complete = options.complete
+      , duration = options.duration
+      , ease = options.easing
+      , points = options.bezier
+      , begin = []
+      , end = []
+      , units = []
+      , bez = []
+      , originalLeft
+      , originalTop
+
+    if (points) {
+      // remember the original values for top|left
+      originalLeft = options.left;
+      originalTop = options.top;
+      delete options.right;
+      delete options.bottom;
+      delete options.left;
+      delete options.top;
+    }
+
+    for (i = els.length; i--;) {
+
+      // record beginning and end states to calculate positions
+      begin[i] = {}
+      end[i] = {}
+      units[i] = {}
+
+      // are we 'moving'?
+      if (points) {
+
+        var left = getStyle(els[i], 'left')
+          , top = getStyle(els[i], 'top')
+          , xy = [by(fun(originalLeft) ? originalLeft(els[i]) : originalLeft || 0, parseFloat(left)),
+                  by(fun(originalTop) ? originalTop(els[i]) : originalTop || 0, parseFloat(top))]
+
+        bez[i] = fun(points) ? points(els[i], xy) : points
+        bez[i].push(xy)
+        bez[i].unshift([
+          parseInt(left, 10),
+          parseInt(top, 10)
+        ])
+      }
+
+      for (var k in options) {
+        switch (k) {
+        case 'complete':
+        case 'duration':
+        case 'easing':
+        case 'bezier':
+          continue
+        }
+        var v = getStyle(els[i], k), unit
+          , tmp = fun(options[k]) ? options[k](els[i]) : options[k]
+        if (typeof tmp == 'string' &&
+            rgbOhex.test(tmp) &&
+            !rgbOhex.test(v)) {
+          delete options[k]; // remove key :(
+          continue; // cannot animate colors like 'orange' or 'transparent'
+                    // only #xxx, #xxxxxx, rgb(n,n,n)
+        }
+
+        begin[i][k] = k == 'transform' ? parseTransform(v) :
+          typeof tmp == 'string' && rgbOhex.test(tmp) ?
+            toHex(v).slice(1) :
+            parseFloat(v)
+        end[i][k] = k == 'transform' ? parseTransform(tmp, begin[i][k]) :
+          typeof tmp == 'string' && tmp.charAt(0) == '#' ?
+            toHex(tmp).slice(1) :
+            by(tmp, parseFloat(v));
+        // record original unit
+        (typeof tmp == 'string') && (unit = tmp.match(numUnit)) && (units[i][k] = unit[1])
+      }
+    }
+    // ONE TWEEN TO RULE THEM ALL
+    return tween.apply(els, [duration, function (pos, v, xy) {
+      // normally not a fan of optimizing for() loops, but we want something
+      // fast for animating
+      for (i = els.length; i--;) {
+        if (points) {
+          xy = bezier(bez[i], pos)
+          els[i].style.left = xy[0] + 'px'
+          els[i].style.top = xy[1] + 'px'
+        }
+        for (var k in options) {
+          v = getTweenVal(pos, units, begin, end, k, i)
+          k == 'transform' ?
+            els[i].style[transform] = formatTransform(v) :
+            k == 'opacity' && !opacity ?
+              (els[i].style.filter = 'alpha(opacity=' + (v * 100) + ')') :
+              (els[i].style[camelize(k)] = v)
+        }
+      }
+    }, complete, ease])
+  }
+
+  // expose useful methods
+  morpheus.tween = tween
+  morpheus.getStyle = getStyle
+  morpheus.bezier = bezier
+  morpheus.transform = transform
+  morpheus.parseTransform = parseTransform
+  morpheus.formatTransform = formatTransform
+  morpheus.easings = {}
+
+  return morpheus
+})();
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/animation/TL.Ease.js b/public/opac/TimelineJS3-3.5.1/source/js/animation/TL.Ease.js
new file mode 100644
index 0000000000000000000000000000000000000000..ff9d423877f0537473157d34565614f04967282e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/animation/TL.Ease.js
@@ -0,0 +1,241 @@
+/* The equations defined here are open source under BSD License.
+ * http://www.robertpenner.com/easing_terms_of_use.html (c) 2003 Robert Penner
+ * Adapted to single time-based by
+ * Brian Crescimanno <brian.crescimanno@gmail.com>
+ * Ken Snyder <kendsnyder@gmail.com>
+ */
+
+/** MIT License
+ *
+ * KeySpline - use bezier curve for transition easing function
+ * Copyright (c) 2012 Gaetan Renaudeau <renaudeau.gaetan@gmail.com>
+ * 
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ * 
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ * 
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+/**
+ * KeySpline - use bezier curve for transition easing function
+ * is inspired from Firefox's nsSMILKeySpline.cpp
+ * Usage:
+ * var spline = new KeySpline(0.25, 0.1, 0.25, 1.0)
+ * spline.get(x) => returns the easing value | x must be in [0, 1] range
+ */
+
+TL.Easings = {
+    ease:        [0.25, 0.1, 0.25, 1.0], 
+    linear:      [0.00, 0.0, 1.00, 1.0],
+    easein:     [0.42, 0.0, 1.00, 1.0],
+    easeout:    [0.00, 0.0, 0.58, 1.0],
+    easeinout: [0.42, 0.0, 0.58, 1.0]
+};
+
+TL.Ease = {
+	KeySpline: function(a) {
+	//KeySpline: function(mX1, mY1, mX2, mY2) {
+		this.get = function(aX) {
+			if (a[0] == a[1] && a[2] == a[3]) return aX; // linear
+			return CalcBezier(GetTForX(aX), a[1], a[3]);
+		}
+
+		function A(aA1, aA2) {
+			return 1.0 - 3.0 * aA2 + 3.0 * aA1;
+		}
+
+		function B(aA1, aA2) {
+			return 3.0 * aA2 - 6.0 * aA1;
+		}
+
+		function C(aA1) {
+			return 3.0 * aA1;
+		}
+
+		// Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.
+
+		function CalcBezier(aT, aA1, aA2) {
+			return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT;
+		}
+
+		// Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.
+
+		function GetSlope(aT, aA1, aA2) {
+			return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1);
+		}
+
+		function GetTForX(aX) {
+			// Newton raphson iteration
+			var aGuessT = aX;
+			for (var i = 0; i < 4; ++i) {
+				var currentSlope = GetSlope(aGuessT, a[0], a[2]);
+				if (currentSlope == 0.0) return aGuessT;
+				var currentX = CalcBezier(aGuessT, a[0], a[2]) - aX;
+				aGuessT -= currentX / currentSlope;
+			}
+			return aGuessT;
+		}
+	},
+	
+	easeInSpline: function(t) {
+		var spline = new TL.Ease.KeySpline(TL.Easings.easein);
+		return spline.get(t);
+	},
+	
+	easeInOutExpo: function(t) {
+		var spline = new TL.Ease.KeySpline(TL.Easings.easein);
+		return spline.get(t);
+	},
+	
+	easeOut: function(t) {
+		return Math.sin(t * Math.PI / 2);
+	},
+	easeOutStrong: function(t) {
+		return (t == 1) ? 1 : 1 - Math.pow(2, - 10 * t);
+	},
+	easeIn: function(t) {
+		return t * t;
+	},
+	easeInStrong: function(t) {
+		return (t == 0) ? 0 : Math.pow(2, 10 * (t - 1));
+	},
+	easeOutBounce: function(pos) {
+		if ((pos) < (1 / 2.75)) {
+			return (7.5625 * pos * pos);
+		} else if (pos < (2 / 2.75)) {
+			return (7.5625 * (pos -= (1.5 / 2.75)) * pos + .75);
+		} else if (pos < (2.5 / 2.75)) {
+			return (7.5625 * (pos -= (2.25 / 2.75)) * pos + .9375);
+		} else {
+			return (7.5625 * (pos -= (2.625 / 2.75)) * pos + .984375);
+		}
+	},
+	easeInBack: function(pos) {
+		var s = 1.70158;
+		return (pos) * pos * ((s + 1) * pos - s);
+	},
+	easeOutBack: function(pos) {
+		var s = 1.70158;
+		return (pos = pos - 1) * pos * ((s + 1) * pos + s) + 1;
+	},
+	bounce: function(t) {
+		if (t < (1 / 2.75)) {
+			return 7.5625 * t * t;
+		}
+		if (t < (2 / 2.75)) {
+			return 7.5625 * (t -= (1.5 / 2.75)) * t + 0.75;
+		}
+		if (t < (2.5 / 2.75)) {
+			return 7.5625 * (t -= (2.25 / 2.75)) * t + 0.9375;
+		}
+		return 7.5625 * (t -= (2.625 / 2.75)) * t + 0.984375;
+	},
+	bouncePast: function(pos) {
+		if (pos < (1 / 2.75)) {
+			return (7.5625 * pos * pos);
+		} else if (pos < (2 / 2.75)) {
+			return 2 - (7.5625 * (pos -= (1.5 / 2.75)) * pos + .75);
+		} else if (pos < (2.5 / 2.75)) {
+			return 2 - (7.5625 * (pos -= (2.25 / 2.75)) * pos + .9375);
+		} else {
+			return 2 - (7.5625 * (pos -= (2.625 / 2.75)) * pos + .984375);
+		}
+	},
+	swingTo: function(pos) {
+		var s = 1.70158;
+		return (pos -= 1) * pos * ((s + 1) * pos + s) + 1;
+	},
+	swingFrom: function(pos) {
+		var s = 1.70158;
+		return pos * pos * ((s + 1) * pos - s);
+	},
+	elastic: function(pos) {
+		return -1 * Math.pow(4, - 8 * pos) * Math.sin((pos * 6 - 1) * (2 * Math.PI) / 2) + 1;
+	},
+	spring: function(pos) {
+		return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6));
+	},
+	blink: function(pos, blinks) {
+		return Math.round(pos * (blinks || 5)) % 2;
+	},
+	pulse: function(pos, pulses) {
+		return (-Math.cos((pos * ((pulses || 5) - .5) * 2) * Math.PI) / 2) + .5;
+	},
+	wobble: function(pos) {
+		return (-Math.cos(pos * Math.PI * (9 * pos)) / 2) + 0.5;
+	},
+	sinusoidal: function(pos) {
+		return (-Math.cos(pos * Math.PI) / 2) + 0.5;
+	},
+	flicker: function(pos) {
+		var pos = pos + (Math.random() - 0.5) / 5;
+		return easings.sinusoidal(pos < 0 ? 0 : pos > 1 ? 1 : pos);
+	},
+	mirror: function(pos) {
+		if (pos < 0.5) return easings.sinusoidal(pos * 2);
+		else return easings.sinusoidal(1 - (pos - 0.5) * 2);
+	},
+	// accelerating from zero velocity
+	easeInQuad: function (t) { return t*t },
+	// decelerating to zero velocity
+	easeOutQuad: function (t) { return t*(2-t) },
+	// acceleration until halfway, then deceleration
+	easeInOutQuad: function (t) { return t<.5 ? 2*t*t : -1+(4-2*t)*t },
+	// accelerating from zero velocity 
+	easeInCubic: function (t) { return t*t*t },
+	// decelerating to zero velocity 
+	easeOutCubic: function (t) { return (--t)*t*t+1 },
+	// acceleration until halfway, then deceleration 
+	easeInOutCubic: function (t) { return t<.5 ? 4*t*t*t : (t-1)*(2*t-2)*(2*t-2)+1 },
+	// accelerating from zero velocity 
+	easeInQuart: function (t) { return t*t*t*t },
+	// decelerating to zero velocity 
+	easeOutQuart: function (t) { return 1-(--t)*t*t*t },
+	// acceleration until halfway, then deceleration
+	easeInOutQuart: function (t) { return t<.5 ? 8*t*t*t*t : 1-8*(--t)*t*t*t },
+	// accelerating from zero velocity
+	easeInQuint: function (t) { return t*t*t*t*t },
+	// decelerating to zero velocity
+	easeOutQuint: function (t) { return 1+(--t)*t*t*t*t },
+	// acceleration until halfway, then deceleration 
+	easeInOutQuint: function (t) { return t<.5 ? 16*t*t*t*t*t : 1+16*(--t)*t*t*t*t }
+};
+
+/*
+Math.easeInExpo = function (t, b, c, d) {
+	return c * Math.pow( 2, 10 * (t/d - 1) ) + b;
+};
+
+		
+
+// exponential easing out - decelerating to zero velocity
+
+
+Math.easeOutExpo = function (t, b, c, d) {
+	return c * ( -Math.pow( 2, -10 * t/d ) + 1 ) + b;
+};
+
+		
+
+// exponential easing in/out - accelerating until halfway, then decelerating
+
+
+Math.easeInOutExpo = function (t, b, c, d) {
+	t /= d/2;
+	if (t < 1) return c/2 * Math.pow( 2, 10 * (t - 1) ) + b;
+	t--;
+	return c/2 * ( -Math.pow( 2, -10 * t) + 2 ) + b;
+};
+*/
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Browser.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Browser.js
new file mode 100644
index 0000000000000000000000000000000000000000..57e07572a37330d6cf42ce644e63df876adfb913
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Browser.js
@@ -0,0 +1,83 @@
+/*
+	Based on Leaflet Browser
+	TL.Browser handles different browser and feature detections for internal  use.
+*/
+
+
+(function() {
+
+	var ua = navigator.userAgent.toLowerCase(),
+		doc = document.documentElement,
+
+		ie = 'ActiveXObject' in window,
+
+		webkit = ua.indexOf('webkit') !== -1,
+		phantomjs = ua.indexOf('phantom') !== -1,
+		android23 = ua.search('android [23]') !== -1,
+
+		mobile = typeof orientation !== 'undefined',
+		msPointer = navigator.msPointerEnabled && navigator.msMaxTouchPoints && !window.PointerEvent,
+		pointer = (window.PointerEvent && navigator.pointerEnabled && navigator.maxTouchPoints) || msPointer,
+
+		ie3d = ie && ('transition' in doc.style),
+		webkit3d = ('WebKitCSSMatrix' in window) && ('m11' in new window.WebKitCSSMatrix()) && !android23,
+		gecko3d = 'MozPerspective' in doc.style,
+		opera3d = 'OTransition' in doc.style,
+		opera = window.opera;
+
+
+	var retina = 'devicePixelRatio' in window && window.devicePixelRatio > 1;
+
+	if (!retina && 'matchMedia' in window) {
+		var matches = window.matchMedia('(min-resolution:144dpi)');
+		retina = matches && matches.matches;
+	}
+
+	var touch = !window.L_NO_TOUCH && !phantomjs && (pointer || 'ontouchstart' in window || (window.DocumentTouch && document instanceof window.DocumentTouch));
+
+	TL.Browser = {
+		ie: ie,
+		ua: ua,
+		ie9: Boolean(ie && ua.match(/MSIE 9/i)),
+		ielt9: ie && !document.addEventListener,
+		webkit: webkit,
+		//gecko: (ua.indexOf('gecko') !== -1) && !webkit && !window.opera && !ie,
+		firefox: (ua.indexOf('gecko') !== -1) && !webkit && !window.opera && !ie,
+		android: ua.indexOf('android') !== -1,
+		android23: android23,
+		chrome: ua.indexOf('chrome') !== -1,
+		edge: ua.indexOf('edge/') !== -1,
+
+		ie3d: ie3d,
+		webkit3d: webkit3d,
+		gecko3d: gecko3d,
+		opera3d: opera3d,
+		any3d: !window.L_DISABLE_3D && (ie3d || webkit3d || gecko3d || opera3d) && !phantomjs,
+
+		mobile: mobile,
+		mobileWebkit: mobile && webkit,
+		mobileWebkit3d: mobile && webkit3d,
+		mobileOpera: mobile && window.opera,
+
+		touch: !! touch,
+		msPointer: !! msPointer,
+		pointer: !! pointer,
+
+		retina: !! retina,
+		orientation: function() {
+			var w = window.innerWidth,
+				h = window.innerHeight,
+				_orientation = "portrait";
+
+			if (w > h) {
+				_orientation = "landscape";
+			}
+			if (Math.abs(window.orientation) == 90) {
+				//_orientation = "landscape";
+			}
+			trace(_orientation);
+			return _orientation;
+		}
+	};
+
+}());
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Class.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Class.js
new file mode 100644
index 0000000000000000000000000000000000000000..c0e7f6041aa5cece4da03ed877213371c5042273
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Class.js
@@ -0,0 +1,65 @@
+/*	TL.Class
+	Class powers the OOP facilities of the library.
+================================================== */
+TL.Class = function () {};
+
+TL.Class.extend = function (/*Object*/ props) /*-> Class*/ {
+ 
+	// extended class with the new prototype
+	var NewClass = function () {
+		if (this.initialize) {
+			this.initialize.apply(this, arguments);
+		}
+	};
+
+	// instantiate class without calling constructor
+	var F = function () {};
+	F.prototype = this.prototype;
+	var proto = new F();
+
+	proto.constructor = NewClass;
+	NewClass.prototype = proto;
+
+	// add superclass access
+	NewClass.superclass = this.prototype;
+
+	// add class name
+	//proto.className = props;
+
+	//inherit parent's statics
+	for (var i in this) {
+		if (this.hasOwnProperty(i) && i !== 'prototype' && i !== 'superclass') {
+			NewClass[i] = this[i];
+		}
+	}
+
+	// mix static properties into the class
+	if (props.statics) {
+		TL.Util.extend(NewClass, props.statics);
+		delete props.statics;
+	}
+
+	// mix includes into the prototype
+	if (props.includes) {
+		TL.Util.extend.apply(null, [proto].concat(props.includes));
+		delete props.includes;
+	}
+
+	// merge options
+	if (props.options && proto.options) {
+		props.options = TL.Util.extend({}, proto.options, props.options);
+	}
+
+	// mix given properties into the prototype
+	TL.Util.extend(proto, props);
+
+	// allow inheriting further
+	NewClass.extend = TL.Class.extend;
+
+	// method for adding properties to prototype
+	NewClass.include = function (props) {
+		TL.Util.extend(this.prototype, props);
+	};
+
+	return NewClass;
+};
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.ConfigFactory.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.ConfigFactory.js
new file mode 100644
index 0000000000000000000000000000000000000000..b970c0006069908a9fd618a2f30c9d345c85d10c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.ConfigFactory.js
@@ -0,0 +1,306 @@
+/* TL.ConfigFactory.js
+ * Build TimelineConfig objects from other data sources
+ */
+;(function(TL){
+    /*
+     * Convert a URL to a Google Spreadsheet (typically a /pubhtml version but somewhat flexible) into an object with the spreadsheet key (ID) and worksheet ID.
+
+     If `url` is actually a string which is only letters, numbers, '-' and '_', then it's assumed to be an ID already. If we had a more precise way of testing to see if the input argument was a valid key, we might apply it, but I don't know where that's documented.
+
+     If we're pretty sure this isn't a bare key or a url that could be used to find a Google spreadsheet then return null.
+     */
+    function parseGoogleSpreadsheetURL(url) {
+        parts = {
+            key: null,
+            worksheet: 0 // not really sure how to use this to get the feed for that sheet, so this is not ready except for first sheet right now
+        }
+        // key as url parameter (old-fashioned)
+        var key_pat = /\bkey=([-_A-Za-z0-9]+)&?/i;
+        var url_pat = /docs.google.com\/spreadsheets(.*?)\/d\//; // fixing issue of URLs with u/0/d
+
+        if (url.match(key_pat)) {
+            parts.key = url.match(key_pat)[1];
+            // can we get a worksheet from this form?
+        } else if (url.match(url_pat)) {
+            var pos = url.search(url_pat) + url.match(url_pat)[0].length;
+            var tail = url.substr(pos);
+            parts.key = tail.split('/')[0]
+            if (url.match(/\?gid=(\d+)/)) {
+                parts.worksheet = url.match(/\?gid=(\d+)/)[1];
+            }
+        } else if (url.match(/^\b[-_A-Za-z0-9]+$/)) {
+            parts.key = url;
+        }
+
+        if (parts.key) {
+            return parts;
+        } else {
+            return null;
+        }
+    }
+
+    function extractGoogleEntryData_V1(item) {
+        var item_data = {}
+        for (k in item) {
+            if (k.indexOf('gsx$') == 0) {
+                item_data[k.substr(4)] = item[k].$t;
+            }
+        }
+        if (TL.Util.isEmptyObject(item_data)) return null;
+        var d = {
+            media: {
+                caption: item_data.mediacaption || '',
+                credit: item_data.mediacredit || '',
+                url: item_data.media || '',
+                thumbnail: item_data.mediathumbnail || ''
+            },
+            text: {
+                headline: item_data.headline || '',
+                text: item_data.text || ''
+            },
+            group: item_data.tag || '',
+            type: item_data.type || ''
+        }
+        if (item_data.startdate) {
+            d['start_date'] = TL.Date.parseDate(item_data.startdate);
+        }
+        if (item_data.enddate) {
+            d['end_date'] = TL.Date.parseDate(item_data.enddate);
+        }
+
+
+        return d;
+    }
+
+    function extractGoogleEntryData_V3(item) {
+
+        function clean_integer(s) {
+            if (s) {
+                return s.replace(/[\s,]+/g,''); // doesn't handle '.' as comma separator, but how to distinguish that from decimal separator?
+            }
+        }
+
+        var item_data = {}
+        for (k in item) {
+            if (k.indexOf('gsx$') == 0) {
+                item_data[k.substr(4)] = TL.Util.trim(item[k].$t);
+            }
+        }
+        if (TL.Util.isEmptyObject(item_data)) return null;
+        var d = {
+            media: {
+                caption: item_data.mediacaption || '',
+                credit: item_data.mediacredit || '',
+                url: item_data.media || '',
+                thumbnail: item_data.mediathumbnail || ''
+            },
+            text: {
+                headline: item_data.headline || '',
+                text: item_data.text || ''
+            },
+            start_date: {
+                year: clean_integer(item_data.year),
+                month: clean_integer(item_data.month) || '',
+                day: clean_integer(item_data.day) || ''
+            },
+            end_date: {
+                year: clean_integer(item_data.endyear) || '',
+                month: clean_integer(item_data.endmonth) || '',
+                day: clean_integer(item_data.endday) || ''
+            },
+            display_date: item_data.displaydate || '',
+
+            type: item_data.type || ''
+        }
+
+        if (item_data.time) {
+            TL.Util.mergeData(d.start_date,TL.DateUtil.parseTime(item_data.time));
+        }
+
+        if (item_data.endtime) {
+            TL.Util.mergeData(d.end_date,TL.DateUtil.parseTime(item_data.endtime));
+        }
+
+
+        if (item_data.group) {
+            d.group = item_data.group;
+        }
+
+        if (d.end_date.year == '') {
+            var bad_date = d.end_date;
+            delete d.end_date;
+            if (bad_date.month != '' || bad_date.day != '' || bad_date.time != '') {
+                var label = d.text.headline ||
+                trace("Invalid end date for spreadsheet row. Must have a year if any other date fields are specified.");
+                trace(item);
+            }
+        }
+
+        if (item_data.background) {
+            if (item_data.background.match(/^(https?:)?\/\/?/)) { // support http, https, protocol relative, site relative
+                d['background'] = { 'url': item_data.background }
+            } else { // for now we'll trust it's a color
+                d['background'] = { 'color': item_data.background }
+            }
+        }
+
+        return d;
+    }
+
+    var getGoogleItemExtractor = function(data) {
+        if (typeof data.feed.entry === 'undefined'
+                || data.feed.entry.length == 0) {
+            throw new TL.Error("empty_feed_err");
+        }
+        var entry = data.feed.entry[0];
+
+        if (typeof entry.gsx$startdate !== 'undefined') {
+            // check headers V1
+            // var headers_V1 = ['startdate', 'enddate', 'headline','text','media','mediacredit','mediacaption','mediathumbnail','media','type','tag'];
+            // for (var i = 0; i < headers_V1.length; i++) {
+            //     if (typeof entry['gsx$' + headers_V1[i]] == 'undefined') {
+            //         throw new TL.Error("invalid_data_format_err");
+            //     }
+            // }
+            return extractGoogleEntryData_V1;
+        } else if (typeof entry.gsx$year !== 'undefined') {
+            // check rest of V3 headers
+            var headers_V3 = ['month', 'day', 'time', 'endmonth', 'endyear', 'endday', 'endtime', 'displaydate', 'headline','text','media','mediacredit','mediacaption','mediathumbnail','type','group','background'];
+            // for (var i = 0; i < headers_V3.length; i++) {
+            //     if (typeof entry['gsx$' + headers_V3[i]] == 'undefined') {
+            //         throw new TL.Error("invalid_data_format_err");
+            //     }
+            // }
+            return extractGoogleEntryData_V3;
+        }
+        throw new TL.Error("invalid_data_format_err");
+    }
+
+    var buildGoogleFeedURL = function(parts) {
+        return "https://spreadsheets.google.com/feeds/list/" + parts.key + "/1/public/values?alt=json";
+
+    }
+
+    var jsonFromGoogleURL = function(url) {
+        var url = buildGoogleFeedURL(parseGoogleSpreadsheetURL(url));
+            var timeline_config = { 'events': [] };
+            var data = TL.ajax({
+                url: url,
+                async: false
+            });
+            data = JSON.parse(data.responseText);
+            return googleFeedJSONtoTimelineJSON(data);
+        }
+
+    var googleFeedJSONtoTimelineJSON = function(data) {
+        var timeline_config = { 'events': [], 'errors': [], 'warnings': [], 'eras': [] }
+        var extract = getGoogleItemExtractor(data);
+        for (var i = 0; i < data.feed.entry.length; i++) {
+            try {
+                var event = extract(data.feed.entry[i]);
+                if (event) { // blank rows return null
+                  var row_type = 'event';
+                  if (typeof(event.type) != 'undefined') {
+                      row_type = event.type;
+                      delete event.type;
+                  }
+                  if (row_type == 'title') {
+                    if (!timeline_config.title) {
+                      timeline_config.title = event;
+                    } else {
+                      timeline_config.warnings.push("Multiple title slides detected.");
+                      timeline_config.events.push(event);
+                    }
+                  } else if (row_type == 'era') {
+                    timeline_config.eras.push(event);
+                  } else {
+                      timeline_config.events.push(event);
+                  }
+                }
+            } catch(e) {
+                if (e.message) {
+                    e = e.message;
+                }
+                timeline_config.errors.push(e + " ["+ i +"]");
+            }
+        };
+        return timeline_config;
+
+    }
+
+    var makeConfig = function(url, callback) {
+        var tc,
+            key = parseGoogleSpreadsheetURL(url);
+
+        if (key) {
+            try {
+                var json = jsonFromGoogleURL(url);
+            } catch(e) {
+                tc = new TL.TimelineConfig();
+                if (e.name == 'NetworkError') {
+                    tc.logError(new TL.Error("network_err"));
+                } else if(e.name == 'TL.Error') {
+                    tc.logError(e);
+                } else {
+                    tc.logError(new TL.Error("unknown_read_err", e.name));
+                }
+                callback(tc);
+                return;
+            }
+            tc = new TL.TimelineConfig(json);
+            if (json.errors) {
+                for (var i = 0; i < json.errors.length; i++) {
+                    tc.logError(json.errors[i]);
+                };
+            }
+            callback(tc);
+        } else {
+          TL.ajax({
+            url: url,
+            dataType: 'json',
+            success: function(data){
+            try {
+                tc = new TL.TimelineConfig(data);
+            } catch(e) {
+                tc = new TL.TimelineConfig();
+                tc.logError(e);
+            }
+            callback(tc);
+            },
+            error: function(xhr, errorType, error) {
+              tc = new TL.TimelineConfig();
+              if (errorType == 'parsererror') {
+                var error = new TL.Error("invalid_url_err");
+              } else {
+                var error = new TL.Error("unknown_read_err", errorType)
+              }
+              tc.logError(error);
+              callback(tc);
+            }
+          });
+
+        }
+    }
+
+    TL.ConfigFactory = {
+        // export for unit testing and use by authoring tool
+        parseGoogleSpreadsheetURL: parseGoogleSpreadsheetURL,
+        // export for unit testing
+        googleFeedJSONtoTimelineJSON: googleFeedJSONtoTimelineJSON,
+
+
+        fromGoogle: function(url) {
+            console.warn("TL.ConfigFactory.fromGoogle is deprecated and will be removed soon. Use TL.ConfigFactory.makeConfig(url,callback)")
+            return jsonFromGoogleURL(url);
+
+        },
+
+        /*
+         * Given a URL to a Timeline data source, read the data, create a TimelineConfig
+         * object, and call the given `callback` function passing the created config as
+         * the only argument. This should be the main public interface to getting configs
+         * from any kind of URL, Google or direct JSON.
+         */
+        makeConfig: makeConfig,
+    }
+})(TL)
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Error.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Error.js
new file mode 100644
index 0000000000000000000000000000000000000000..becea70a91318360c3dc03442012f42c5e21448d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Error.js
@@ -0,0 +1,19 @@
+/* Timeline Error class */
+
+function TL_Error(message_key, detail) {
+    this.name = 'TL.Error';
+    this.message = message_key || 'error';
+    this.message_key = this.message;
+    this.detail = detail || '';
+  
+    // Grab stack?
+    var e = new Error();
+    if(e.hasOwnProperty('stack')) {
+        this.stack = e.stack;
+    }
+}
+
+TL_Error.prototype = Object.create(Error.prototype);
+TL_Error.prototype.constructor = TL_Error;
+
+TL.Error = TL_Error;
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Events.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Events.js
new file mode 100644
index 0000000000000000000000000000000000000000..c6d348e3425dbdbfca495051e9e9f446f2561b95
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Events.js
@@ -0,0 +1,59 @@
+/*	TL.Events
+	adds custom events functionality to TL classes
+================================================== */
+TL.Events = {
+	addEventListener: function (/*String*/ type, /*Function*/ fn, /*(optional) Object*/ context) {
+		var events = this._tl_events = this._tl_events || {};
+		events[type] = events[type] || [];
+		events[type].push({
+			action: fn,
+			context: context || this
+		});
+		return this;
+	},
+
+	hasEventListeners: function (/*String*/ type) /*-> Boolean*/ {
+		var k = '_tl_events';
+		return (k in this) && (type in this[k]) && (this[k][type].length > 0);
+	},
+
+	removeEventListener: function (/*String*/ type, /*Function*/ fn, /*(optional) Object*/ context) {
+		if (!this.hasEventListeners(type)) {
+			return this;
+		}
+
+		for (var i = 0, events = this._tl_events, len = events[type].length; i < len; i++) {
+			if (
+				(events[type][i].action === fn) &&
+				(!context || (events[type][i].context === context))
+			) {
+				events[type].splice(i, 1);
+				return this;
+			}
+		}
+		return this;
+	},
+
+	fireEvent: function (/*String*/ type, /*(optional) Object*/ data) {
+		if (!this.hasEventListeners(type)) {
+			return this;
+		}
+
+		var event = TL.Util.mergeData({
+			type: type,
+			target: this
+		}, data);
+
+		var listeners = this._tl_events[type].slice();
+
+		for (var i = 0, len = listeners.length; i < len; i++) {
+			listeners[i].action.call(listeners[i].context || this, event);
+		}
+
+		return this;
+	}
+};
+
+TL.Events.on	= TL.Events.addEventListener;
+TL.Events.off	= TL.Events.removeEventListener;
+TL.Events.fire = TL.Events.fireEvent;
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Load.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Load.js
new file mode 100644
index 0000000000000000000000000000000000000000..abe320c129c2e01eaf9b5d99b35ad765f0c0b830
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Load.js
@@ -0,0 +1,440 @@
+/*	TL.Load
+	Loads External Javascript and CSS
+================================================== */
+
+TL.Load = (function (doc) {
+	var loaded	= [];
+	
+	function isLoaded(url) {
+		
+		var i			= 0,
+			has_loaded	= false;
+		
+		for (i = 0; i < loaded.length; i++) {
+			if (loaded[i] == url) {
+				has_loaded = true;
+			}
+		}
+		
+		if (has_loaded) {
+			return true;
+		} else {
+			loaded.push(url);
+			return false;
+		}
+		
+	}
+	
+	return {
+		
+		css: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				TL.LoadIt.css(urls, callback, obj, context);
+			} else {
+				callback();
+			}
+		},
+
+		js: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				TL.LoadIt.js(urls, callback, obj, context);
+			} else {
+				callback();
+			}
+		}
+    };
+	
+})(this.document);
+
+
+/*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false */
+
+/*
+LazyLoad makes it easy and painless to lazily load one or more external
+JavaScript or CSS files on demand either during or after the rendering of a web
+page.
+
+Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile
+Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and
+are not officially supported.
+
+Visit https://github.com/rgrove/lazyload/ for more info.
+
+Copyright (c) 2011 Ryan Grove <ryan@wonko.com>
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the 'Software'), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+@module lazyload
+@class LazyLoad
+@static
+@version 2.0.3 (git)
+*/
+
+TL.LoadIt = (function (doc) {
+  // -- Private Variables ------------------------------------------------------
+
+  // User agent and feature test information.
+  var env,
+
+  // Reference to the <head> element (populated lazily).
+  head,
+
+  // Requests currently in progress, if any.
+  pending = {},
+
+  // Number of times we've polled to check whether a pending stylesheet has
+  // finished loading. If this gets too high, we're probably stalled.
+  pollCount = 0,
+
+  // Queued requests.
+  queue = {css: [], js: []},
+
+  // Reference to the browser's list of stylesheets.
+  styleSheets = doc.styleSheets;
+
+  // -- Private Methods --------------------------------------------------------
+
+  /**
+  Creates and returns an HTML element with the specified name and attributes.
+
+  @method createNode
+  @param {String} name element name
+  @param {Object} attrs name/value mapping of element attributes
+  @return {HTMLElement}
+  @private
+  */
+  function createNode(name, attrs) {
+    var node = doc.createElement(name), attr;
+
+    for (attr in attrs) {
+      if (attrs.hasOwnProperty(attr)) {
+        node.setAttribute(attr, attrs[attr]);
+      }
+    }
+
+    return node;
+  }
+
+  /**
+  Called when the current pending resource of the specified type has finished
+  loading. Executes the associated callback (if any) and loads the next
+  resource in the queue.
+
+  @method finish
+  @param {String} type resource type ('css' or 'js')
+  @private
+  */
+  function finish(type) {
+    var p = pending[type],
+        callback,
+        urls;
+
+    if (p) {
+      callback = p.callback;
+      urls     = p.urls;
+
+      urls.shift();
+      pollCount = 0;
+
+      // If this is the last of the pending URLs, execute the callback and
+      // start the next request in the queue (if any).
+      if (!urls.length) {
+        callback && callback.call(p.context, p.obj);
+        pending[type] = null;
+        queue[type].length && load(type);
+      }
+    }
+  }
+
+  /**
+  Populates the <code>env</code> variable with user agent and feature test
+  information.
+
+  @method getEnv
+  @private
+  */
+  function getEnv() {
+    var ua = navigator.userAgent;
+
+    env = {
+      // True if this browser supports disabling async mode on dynamically
+      // created script nodes. See
+      // http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order
+      async: doc.createElement('script').async === true
+    };
+
+    (env.webkit = /AppleWebKit\//.test(ua))
+      || (env.ie = /MSIE/.test(ua))
+      || (env.opera = /Opera/.test(ua))
+      || (env.gecko = /Gecko\//.test(ua))
+      || (env.unknown = true);
+  }
+
+  /**
+  Loads the specified resources, or the next resource of the specified type
+  in the queue if no resources are specified. If a resource of the specified
+  type is already being loaded, the new request will be queued until the
+  first request has been finished.
+
+  When an array of resource URLs is specified, those URLs will be loaded in
+  parallel if it is possible to do so while preserving execution order. All
+  browsers support parallel loading of CSS, but only Firefox and Opera
+  support parallel loading of scripts. In other browsers, scripts will be
+  queued and loaded one at a time to ensure correct execution order.
+
+  @method load
+  @param {String} type resource type ('css' or 'js')
+  @param {String|Array} urls (optional) URL or array of URLs to load
+  @param {Function} callback (optional) callback function to execute when the
+    resource is loaded
+  @param {Object} obj (optional) object to pass to the callback function
+  @param {Object} context (optional) if provided, the callback function will
+    be executed in this object's context
+  @private
+  */
+  function load(type, urls, callback, obj, context) {
+    var _finish = function () { finish(type); },
+        isCSS   = type === 'css',
+        nodes   = [],
+        i, len, node, p, pendingUrls, url;
+
+    env || getEnv();
+
+    if (urls) {
+      // If urls is a string, wrap it in an array. Otherwise assume it's an
+      // array and create a copy of it so modifications won't be made to the
+      // original.
+      urls = typeof urls === 'string' ? [urls] : urls.concat();
+
+      // Create a request object for each URL. If multiple URLs are specified,
+      // the callback will only be executed after all URLs have been loaded.
+      //
+      // Sadly, Firefox and Opera are the only browsers capable of loading
+      // scripts in parallel while preserving execution order. In all other
+      // browsers, scripts must be loaded sequentially.
+      //
+      // All browsers respect CSS specificity based on the order of the link
+      // elements in the DOM, regardless of the order in which the stylesheets
+      // are actually downloaded.
+      if (isCSS || env.async || env.gecko || env.opera) {
+        // Load in parallel.
+        queue[type].push({
+          urls    : urls,
+          callback: callback,
+          obj     : obj,
+          context : context
+        });
+      } else {
+        // Load sequentially.
+        for (i = 0, len = urls.length; i < len; ++i) {
+          queue[type].push({
+            urls    : [urls[i]],
+            callback: i === len - 1 ? callback : null, // callback is only added to the last URL
+            obj     : obj,
+            context : context
+          });
+        }
+      }
+    }
+
+    // If a previous load request of this type is currently in progress, we'll
+    // wait our turn. Otherwise, grab the next item in the queue.
+    if (pending[type] || !(p = pending[type] = queue[type].shift())) {
+      return;
+    }
+
+    head || (head = doc.head || doc.getElementsByTagName('head')[0]);
+    pendingUrls = p.urls;
+
+    for (i = 0, len = pendingUrls.length; i < len; ++i) {
+      url = pendingUrls[i];
+
+      if (isCSS) {
+          node = env.gecko ? createNode('style') : createNode('link', {
+            href: url,
+            rel : 'stylesheet'
+          });
+      } else {
+        node = createNode('script', {src: url});
+        node.async = false;
+      }
+
+      node.className = 'lazyload';
+      node.setAttribute('charset', 'utf-8');
+
+      if (env.ie && !isCSS) {
+        node.onreadystatechange = function () {
+          if (/loaded|complete/.test(node.readyState)) {
+            node.onreadystatechange = null;
+            _finish();
+          }
+        };
+      } else if (isCSS && (env.gecko || env.webkit)) {
+        // Gecko and WebKit don't support the onload event on link nodes.
+        if (env.webkit) {
+          // In WebKit, we can poll for changes to document.styleSheets to
+          // figure out when stylesheets have loaded.
+          p.urls[i] = node.href; // resolve relative URLs (or polling won't work)
+          pollWebKit();
+        } else {
+          // In Gecko, we can import the requested URL into a <style> node and
+          // poll for the existence of node.sheet.cssRules. Props to Zach
+          // Leatherman for calling my attention to this technique.
+          node.innerHTML = '@import "' + url + '";';
+          pollGecko(node);
+        }
+      } else {
+        node.onload = node.onerror = _finish;
+      }
+
+      nodes.push(node);
+    }
+
+    for (i = 0, len = nodes.length; i < len; ++i) {
+      head.appendChild(nodes[i]);
+    }
+  }
+
+  /**
+  Begins polling to determine when the specified stylesheet has finished loading
+  in Gecko. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  Thanks to Zach Leatherman for calling my attention to the @import-based
+  cross-domain technique used here, and to Oleg Slobodskoi for an earlier
+  same-domain implementation. See Zach's blog for more details:
+  http://www.zachleat.com/web/2010/07/29/load-css-dynamically/
+
+  @method pollGecko
+  @param {HTMLElement} node Style node to poll.
+  @private
+  */
+  function pollGecko(node) {
+    var hasRules;
+
+    try {
+      // We don't really need to store this value or ever refer to it again, but
+      // if we don't store it, Closure Compiler assumes the code is useless and
+      // removes it.
+      hasRules = !!node.sheet.cssRules;
+    } catch (ex) {
+      // An exception means the stylesheet is still loading.
+      pollCount += 1;
+
+      if (pollCount < 200) {
+        setTimeout(function () { pollGecko(node); }, 50);
+      } else {
+        // We've been polling for 10 seconds and nothing's happened. Stop
+        // polling and finish the pending requests to avoid blocking further
+        // requests.
+        hasRules && finish('css');
+      }
+
+      return;
+    }
+
+    // If we get here, the stylesheet has loaded.
+    finish('css');
+  }
+
+  /**
+  Begins polling to determine when pending stylesheets have finished loading
+  in WebKit. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  @method pollWebKit
+  @private
+  */
+  function pollWebKit() {
+    var css = pending.css, i;
+
+    if (css) {
+      i = styleSheets.length;
+
+      // Look for a stylesheet matching the pending URL.
+      while (--i >= 0) {
+        if (styleSheets[i].href === css.urls[0]) {
+          finish('css');
+          break;
+        }
+      }
+
+      pollCount += 1;
+
+      if (css) {
+        if (pollCount < 200) {
+          setTimeout(pollWebKit, 50);
+        } else {
+          // We've been polling for 10 seconds and nothing's happened, which may
+          // indicate that the stylesheet has been removed from the document
+          // before it had a chance to load. Stop polling and finish the pending
+          // request to prevent blocking further requests.
+          finish('css');
+        }
+      }
+    }
+  }
+
+  return {
+
+    /**
+    Requests the specified CSS URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified, the stylesheets will be loaded in parallel and the callback
+    will be executed after all stylesheets have finished loading.
+
+    @method css
+    @param {String|Array} urls CSS URL or array of CSS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified stylesheets are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    css: function (urls, callback, obj, context) {
+      load('css', urls, callback, obj, context);
+    },
+
+    /**
+    Requests the specified JavaScript URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified and the browser supports it, the scripts will be loaded in
+    parallel and the callback will be executed after all scripts have
+    finished loading.
+
+    Currently, only Firefox and Opera support parallel loading of scripts while
+    preserving execution order. In other browsers, scripts will be
+    queued and loaded one at a time to ensure correct execution order.
+
+    @method js
+    @param {String|Array} urls JS URL or array of JS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified scripts are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    js: function (urls, callback, obj, context) {
+      load('js', urls, callback, obj, context);
+    }
+
+  };
+})(this.document);
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.TimelineConfig.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.TimelineConfig.js
new file mode 100644
index 0000000000000000000000000000000000000000..850544da67313e98208eb5f488bb4d76cb744163
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.TimelineConfig.js
@@ -0,0 +1,298 @@
+/*  TL.TimelineConfig
+separate the configuration from the display (TL.Timeline)
+to make testing easier
+================================================== */
+TL.TimelineConfig = TL.Class.extend({
+
+	includes: [],
+	initialize: function (data) {
+		this.title = '';
+		this.scale = '';
+		this.events = [];
+		this.eras = [];
+		this.event_dict = {}; // despite name, all slides (events + title) indexed by slide.unique_id
+		this.messages = {
+			errors: [],
+			warnings: []
+		};
+
+		// Initialize the data
+		if (typeof data === 'object' && data.events) {
+			this.scale = data.scale;
+			this.events = [];
+			this._ensureValidScale(data.events);
+
+			if (data.title) {
+				var title_id = this._assignID(data.title);
+				this._tidyFields(data.title);
+				this.title = data.title;
+				this.event_dict[title_id] = this.title;
+			}
+
+			for (var i = 0; i < data.events.length; i++) {
+				try {
+					this.addEvent(data.events[i], true);
+				} catch (e) {
+				    this.logError(e);
+				}
+			}
+
+			if (data.eras) {
+				for (var i = 0; i < data.eras.length; i++) {
+					try {
+						this.addEra(data.eras[i], true);
+					} catch (e) {
+						this.logError("Era " + i + ": " + e);
+					}
+				}
+			}
+
+			TL.DateUtil.sortByDate(this.events);
+			TL.DateUtil.sortByDate(this.eras);
+
+		}
+	},
+	logError: function(msg) {
+		trace(msg);
+		this.messages.errors.push(msg);
+	},
+	/*
+	 * Return any accumulated error messages. If `sep` is passed, it should be a string which will be used to join all messages, resulting in a string return value. Otherwise,
+	 * errors will be returned as an array.
+	 */
+	getErrors: function(sep) {
+		if (sep) {
+			return this.messages.errors.join(sep);
+		} else {
+			return this.messages.errors;
+		}
+	},
+	/*
+	 * Perform any sanity checks we can before trying to use this to make a timeline. Returns nothing, but errors will be logged
+	 * such that after this is called, one can test `this.isValid()` to see if everything is OK.
+	 */
+	validate: function() {
+		if (typeof(this.events) == "undefined" || typeof(this.events.length) == "undefined" || this.events.length == 0) {
+			this.logError("Timeline configuration has no events.")
+		}
+
+		// make sure all eras have start and end dates
+		for (var i = 0; i < this.eras.length; i++) {
+			if (typeof(this.eras[i].start_date) == 'undefined' || typeof(this.eras[i].end_date) == 'undefined') {
+				var era_identifier;
+				if (this.eras[i].text && this.eras[i].text.headline) {
+					era_identifier = this.eras[i].text.headline
+				} else {
+					era_identifier = "era " + (i+1);
+				}
+				this.logError("All eras must have start and end dates. [" + era_identifier + "]") // add internationalization (I18N) and context
+			}
+		};
+	},
+
+	isValid: function() {
+		return this.messages.errors.length == 0;
+	},
+	/* Add an event (including cleaning/validation) and return the unique id.
+	* All event data validation should happen in here.
+	* Throws: TL.Error for any validation problems.
+	*/
+	addEvent: function(data, defer_sort) {
+		var event_id = this._assignID(data);
+
+		if (typeof(data.start_date) == 'undefined') {
+		    throw new TL.Error("missing_start_date_err", event_id);
+		} else {
+			this._processDates(data);
+			this._tidyFields(data);
+		}
+
+		this.events.push(data);
+		this.event_dict[event_id] = data;
+
+		if (!defer_sort) {
+			TL.DateUtil.sortByDate(this.events);
+		}
+		return event_id;
+	},
+
+	addEra: function(data, defer_sort) {
+		var event_id = this._assignID(data);
+
+		if (typeof(data.start_date) == 'undefined') {
+		    throw new TL.Error("missing_start_date_err", event_id);
+		} else {
+			this._processDates(data);
+			this._tidyFields(data);
+		}
+
+		this.eras.push(data);
+		this.event_dict[event_id] = data;
+
+		if (!defer_sort) {
+			TL.DateUtil.sortByDate(this.eras);
+		}
+		return event_id;
+	},
+
+	/**
+	 * Given a slide, verify that its ID is unique, or assign it one which is.
+	 * The assignment happens in this function, and the assigned ID is also
+	 * the return value. Not thread-safe, because ids are not reserved
+	 * when assigned here.
+	 */
+	_assignID: function(slide) {
+		var slide_id = slide.unique_id;
+		if (!TL.Util.trim(slide_id)) {
+			// give it an ID if it doesn't have one
+			slide_id = (slide.text) ? TL.Util.slugify(slide.text.headline) : null;
+		}
+		// make sure it's unique and add it.
+		slide.unique_id = TL.Util.ensureUniqueKey(this.event_dict,slide_id);
+		return slide.unique_id
+	},
+
+	/**
+	 * Given an array of slide configs (the events), ensure that each one has a distinct unique_id. The id of the title
+	 * is also passed in because in most ways it functions as an event slide, and the event IDs must also all be unique
+	 * from the title ID.
+	 */
+	_makeUniqueIdentifiers: function(title_id, array) {
+		var used = [title_id];
+
+		// establish which IDs are assigned and if any appear twice, clear out successors.
+		for (var i = 0; i < array.length; i++) {
+			if (TL.Util.trim(array[i].unique_id)) {
+				array[i].unique_id = TL.Util.slugify(array[i].unique_id); // enforce valid
+				if (used.indexOf(array[i].unique_id) == -1) {
+					used.push(array[i].unique_id);
+				} else { // it was already used, wipe it out
+					array[i].unique_id = '';
+				}
+			}
+		};
+
+		if (used.length != (array.length + 1)) {
+			// at least some are yet to be assigned
+			for (var i = 0; i < array.length; i++) {
+				if (!array[i].unique_id) {
+					// use the headline for the unique ID if it's available
+					var slug = (array[i].text) ? TL.Util.slugify(array[i].text.headline) : null;
+					if (!slug) {
+						slug = TL.Util.unique_ID(6); // or generate a random ID
+					}
+					if (used.indexOf(slug) != -1) {
+						slug = slug + '-' + i; // use the index to get a unique ID.
+					}
+					used.push(slug);
+					array[i].unique_id = slug;
+				}
+			}
+		}
+	},
+	_ensureValidScale: function(events) {
+		if(!this.scale) {
+			trace("Determining scale dynamically");
+			this.scale = "human"; // default to human unless there's a slide which is explicitly 'cosmological' or one which has a cosmological year
+
+			for (var i = 0; i < events.length; i++) {
+				if (events[i].scale == 'cosmological') {
+					this.scale = 'cosmological';
+					break;
+				}
+				if (events[i].start_date && typeof(events[i].start_date.year) != "undefined") {
+					var d = new TL.BigDate(events[i].start_date);
+					var year = d.data.date_obj.year;
+					if(year < -271820 || year >  275759) {
+						this.scale = "cosmological";
+						break;
+					}
+				}
+			}
+		}
+		var dateCls = TL.DateUtil.SCALE_DATE_CLASSES[this.scale];
+		if (!dateCls) { this.logError("Don't know how to process dates on scale "+this.scale); }
+	},
+	/*
+	   Given a thing which has a start_date and optionally an end_date, make sure that it is an instance
+		 of the correct date class (for human or cosmological scale). For slides, remove redundant end dates
+		 (people frequently configure an end date which is the same as the start date).
+	 */
+	_processDates: function(slide_or_era) {
+		var dateCls = TL.DateUtil.SCALE_DATE_CLASSES[this.scale];
+		if(!(slide_or_era.start_date instanceof dateCls)) {
+			var start_date = slide_or_era.start_date;
+			slide_or_era.start_date = new dateCls(start_date);
+
+			// eliminate redundant end dates.
+			if (typeof(slide_or_era.end_date) != 'undefined' && !(slide_or_era.end_date instanceof dateCls)) {
+				var end_date = slide_or_era.end_date;
+				var equal = true;
+				for (property in start_date) {
+					equal = equal && (start_date[property] == end_date[property]);
+				}
+				if (equal) {
+					trace("End date same as start date is redundant; dropping end date");
+					delete slide_or_era.end_date;
+				} else {
+					slide_or_era.end_date = new dateCls(end_date);
+				}
+
+			}
+		}
+
+	},
+	/**
+	 * Return the earliest date that this config knows about, whether it's a slide or an era
+	 */
+	getEarliestDate: function() {
+		// counting that dates were sorted in initialization
+		var date = this.events[0].start_date;
+		if (this.eras && this.eras.length > 0) {
+			if (this.eras[0].start_date.isBefore(date)) {
+				return this.eras[0].start_date;
+			}
+		}
+		return date;
+
+	},
+	/**
+	 * Return the latest date that this config knows about, whether it's a slide or an era, taking end_dates into account.
+	 */
+	getLatestDate: function() {
+		var dates = [];
+		for (var i = 0; i < this.events.length; i++) {
+			if (this.events[i].end_date) {
+				dates.push({ date: this.events[i].end_date });
+			} else {
+				dates.push({ date: this.events[i].start_date });
+			}
+		}
+		for (var i = 0; i < this.eras.length; i++) {
+			if (this.eras[i].end_date) {
+				dates.push({ date: this.eras[i].end_date });
+			} else {
+				dates.push({ date: this.eras[i].start_date });
+			}
+		}
+		TL.DateUtil.sortByDate(dates, 'date');
+		return dates.slice(-1)[0].date;
+	},
+	_tidyFields: function(slide) {
+
+		function fillIn(obj,key,default_value) {
+			if (!default_value) default_value = '';
+			if (!obj.hasOwnProperty(key)) { obj[key] = default_value }
+		}
+
+		if (slide.group) {
+			slide.group = TL.Util.trim(slide.group);
+		}
+
+		if (!slide.text) {
+			slide.text = {};
+		}
+		fillIn(slide.text,'text');
+		fillIn(slide.text,'headline');
+	}
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Util.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Util.js
new file mode 100644
index 0000000000000000000000000000000000000000..dbcf2162ee824be7c38a0a34aa488a48a9b79317
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.Util.js
@@ -0,0 +1,711 @@
+/*	TL.Util
+	Class of utilities
+================================================== */
+
+TL.Util = {
+	mergeData: function(data_main, data_to_merge) {
+		var x;
+		for (x in data_to_merge) {
+			if (Object.prototype.hasOwnProperty.call(data_to_merge, x)) {
+				data_main[x] = data_to_merge[x];
+			}
+		}
+		return data_main;
+	},
+
+	// like TL.Util.mergeData but takes an arbitrarily long list of sources to merge.
+	extend: function (/*Object*/ dest) /*-> Object*/ {	// merge src properties into dest
+		var sources = Array.prototype.slice.call(arguments, 1);
+		for (var j = 0, len = sources.length, src; j < len; j++) {
+			src = sources[j] || {};
+			TL.Util.mergeData(dest, src);
+		}
+		return dest;
+	},
+
+	isEven: function(n) {
+	  return n == parseFloat(n)? !(n%2) : void 0;
+	},
+
+	isTrue: function(s) {
+		if (s == null) return false;
+		return s == true || String(s).toLowerCase() == 'true' || Number(s) == 1;
+	},
+
+	findArrayNumberByUniqueID: function(id, array, prop, defaultVal) {
+		var _n = defaultVal || 0;
+
+		for (var i = 0; i < array.length; i++) {
+			if (array[i].data[prop] == id) {
+				_n = i;
+			}
+		};
+
+		return _n;
+	},
+
+	convertUnixTime: function(str) {
+		var _date, _months, _year, _month, _day, _time, _date_array = [],
+			_date_str = {
+				ymd:"",
+				time:"",
+				time_array:[],
+				date_array:[],
+				full_array:[]
+			};
+
+		_date_str.ymd = str.split(" ")[0];
+		_date_str.time = str.split(" ")[1];
+		_date_str.date_array = _date_str.ymd.split("-");
+		_date_str.time_array = _date_str.time.split(":");
+		_date_str.full_array = _date_str.date_array.concat(_date_str.time_array)
+
+		for(var i = 0; i < _date_str.full_array.length; i++) {
+			_date_array.push( parseInt(_date_str.full_array[i]) )
+		}
+
+		_date = new Date(_date_array[0], _date_array[1], _date_array[2], _date_array[3], _date_array[4], _date_array[5]);
+		_months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
+		_year = _date.getFullYear();
+		_month = _months[_date.getMonth()];
+		_day = _date.getDate();
+		_time = _month + ', ' + _day + ' ' + _year;
+
+		return _time;
+	},
+
+	setData: function (obj, data) {
+		obj.data = TL.Util.extend({}, obj.data, data);
+		if (obj.data.unique_id === "") {
+			obj.data.unique_id = TL.Util.unique_ID(6);
+		}
+	},
+
+	stamp: (function () {
+		var lastId = 0, key = '_tl_id';
+
+
+		return function (/*Object*/ obj) {
+			obj[key] = obj[key] || ++lastId;
+			return obj[key];
+		};
+	}()),
+
+	isArray: (function () {
+	    // Use compiler's own isArray when available
+	    if (Array.isArray) {
+	        return Array.isArray;
+	    }
+
+	    // Retain references to variables for performance
+	    // optimization
+	    var objectToStringFn = Object.prototype.toString,
+	        arrayToStringResult = objectToStringFn.call([]);
+
+	    return function (subject) {
+	        return objectToStringFn.call(subject) === arrayToStringResult;
+	    };
+	}()),
+
+    getRandomNumber: function(range) {
+   		return Math.floor(Math.random() * range);
+   	},
+
+	unique_ID: function(size, prefix) {
+
+		var getRandomNumber = function(range) {
+			return Math.floor(Math.random() * range);
+		};
+
+		var getRandomChar = function() {
+			var chars = "abcdefghijklmnopqurstuvwxyz";
+			return chars.substr( getRandomNumber(32), 1 );
+		};
+
+		var randomID = function(size) {
+			var str = "";
+			for(var i = 0; i < size; i++) {
+				str += getRandomChar();
+			}
+			return str;
+		};
+
+		if (prefix) {
+			return prefix + "-" + randomID(size);
+		} else {
+			return "tl-" + randomID(size);
+		}
+	},
+
+	ensureUniqueKey: function(obj, candidate) {
+		if (!candidate) { candidate = TL.Util.unique_ID(6); }
+
+		if (!(candidate in obj)) { return candidate; }
+
+		var root = candidate.match(/^(.+)(-\d+)?$/)[1];
+		var similar_ids = [];
+		// get an alternative
+		for (key in obj) {
+			if (key.match(/^(.+?)(-\d+)?$/)[1] == root) {
+				similar_ids.push(key);
+			}
+		}
+		candidate = root + "-" + (similar_ids.length + 1);
+
+		for (var counter = similar_ids.length; similar_ids.indexOf(candidate) != -1; counter++) {
+			candidate = root + '-' + counter;
+		}
+
+		return candidate;
+	},
+
+
+	htmlify: function(str) {
+		//if (str.match(/<\s*p[^>]*>([^<]*)<\s*\/\s*p\s*>/)) {
+		if (str.match(/<p>[\s\S]*?<\/p>/)) {
+
+			return str;
+		} else {
+			return "<p>" + str + "</p>";
+		}
+	},
+
+	unhtmlify: function(str) {
+		str = str.replace(/(<[^>]*>)+/g, '');
+		return str.replace('"', "'");
+	},
+
+	/*	* Turns plain text links into real links
+	================================================== */
+	linkify: function(text,targets,is_touch) {
+
+        var make_link = function(url, link_text, prefix) {
+            if (!prefix) {
+                prefix = "";
+            }
+            var MAX_LINK_TEXT_LENGTH = 30;
+            if (link_text && link_text.length > MAX_LINK_TEXT_LENGTH) {
+                link_text = link_text.substring(0,MAX_LINK_TEXT_LENGTH) + "\u2026"; // unicode ellipsis
+            }
+            return prefix + "<a class='tl-makelink' href='" + url + "' onclick='void(0)'>" + link_text + "</a>";
+        }
+		// http://, https://, ftp://
+		var urlPattern = /\b(?:https?|ftp):\/\/([a-z0-9-+&@#\/%?=~_|!:,.;]*[a-z0-9-+&@#\/%=~_|])/gim;
+
+		// www. sans http:// or https://
+		var pseudoUrlPattern = /(^|[^\/>])(www\.[\S]+(\b|$))/gim;
+
+		// Email addresses
+		var emailAddressPattern = /([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)/gim;
+
+
+		return text
+			.replace(urlPattern, function(match, url_sans_protocol, offset, string) {
+                // Javascript doesn't support negative lookbehind assertions, so
+                // we need to handle risk of matching URLs in legit hrefs
+                if (offset > 0) {
+                    var prechar = string[offset-1];
+                    if (prechar == '"' || prechar == "'" || prechar == "=") {
+                        return match;
+                    }
+                }
+                return make_link(match, url_sans_protocol);
+            })
+			.replace(pseudoUrlPattern, function(match, beforePseudo, pseudoUrl, offset, string) {
+                return make_link('http://' + pseudoUrl, pseudoUrl, beforePseudo);
+            })
+			.replace(emailAddressPattern, function(match, email, offset, string) {
+                return make_link('mailto:' + email, email);
+            });
+	},
+
+	unlinkify: function(text) {
+		if(!text) return text;
+		text = text.replace(/<a\b[^>]*>/i,"");
+		text = text.replace(/<\/a>/i, "");
+		return text;
+	},
+
+	getParamString: function (obj) {
+		var params = [];
+		for (var i in obj) {
+			if (obj.hasOwnProperty(i)) {
+				params.push(i + '=' + obj[i]);
+			}
+		}
+		return '?' + params.join('&');
+	},
+
+	formatNum: function (num, digits) {
+		var pow = Math.pow(10, digits || 5);
+		return Math.round(num * pow) / pow;
+	},
+
+	falseFn: function () {
+		return false;
+	},
+
+	requestAnimFrame: (function () {
+		function timeoutDefer(callback) {
+			window.setTimeout(callback, 1000 / 60);
+		}
+
+		var requestFn = window.requestAnimationFrame ||
+			window.webkitRequestAnimationFrame ||
+			window.mozRequestAnimationFrame ||
+			window.oRequestAnimationFrame ||
+			window.msRequestAnimationFrame ||
+			timeoutDefer;
+
+		return function (callback, context, immediate, contextEl) {
+			callback = context ? TL.Util.bind(callback, context) : callback;
+			if (immediate && requestFn === timeoutDefer) {
+				callback();
+			} else {
+				requestFn(callback, contextEl);
+			}
+		};
+	}()),
+
+	bind: function (/*Function*/ fn, /*Object*/ obj) /*-> Object*/ {
+		return function () {
+			return fn.apply(obj, arguments);
+		};
+	},
+
+	template: function (str, data) {
+		return str.replace(/\{ *([\w_]+) *\}/g, function (str, key) {
+			var value = data[key];
+			if (!data.hasOwnProperty(key)) {
+			    throw new TL.Error("template_value_err", str);
+			}
+			return value;
+		});
+	},
+
+	hexToRgb: function(hex) {
+	    // Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
+        if (TL.Util.css_named_colors[hex.toLowerCase()]) {
+            hex = TL.Util.css_named_colors[hex.toLowerCase()];
+        }
+	    var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
+	    hex = hex.replace(shorthandRegex, function(m, r, g, b) {
+	        return r + r + g + g + b + b;
+	    });
+
+	    var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
+	    return result ? {
+	        r: parseInt(result[1], 16),
+	        g: parseInt(result[2], 16),
+	        b: parseInt(result[3], 16)
+	    } : null;
+	},
+	// given an object with r, g, and b keys, or a string of the form 'rgb(mm,nn,ll)', return a CSS hex string including the leading '#' character
+	rgbToHex: function(rgb) {
+		var r,g,b;
+		if (typeof(rgb) == 'object') {
+			r = rgb.r;
+			g = rgb.g;
+			b = rgb.b;
+		} else if (typeof(rgb.match) == 'function'){
+			var parts = rgb.match(/^rgb\((\d+),(\d+),(\d+)\)$/);
+			if (parts) {
+				r = parts[1];
+				g = parts[2];
+				b = parts[3];
+			}
+		}
+		if (isNaN(r) || isNaN(b) || isNaN(g)) {
+			throw new TL.Error("invalid_rgb_err");
+		}
+		return "#" + TL.Util.intToHexString(r) + TL.Util.intToHexString(g) + TL.Util.intToHexString(b);
+	},
+	colorObjToHex: function(o) {
+		var parts = [o.r, o.g, o.b];
+		return TL.Util.rgbToHex("rgb(" + parts.join(',') + ")")
+	},
+    css_named_colors: {
+        "aliceblue": "#f0f8ff",
+        "antiquewhite": "#faebd7",
+        "aqua": "#00ffff",
+        "aquamarine": "#7fffd4",
+        "azure": "#f0ffff",
+        "beige": "#f5f5dc",
+        "bisque": "#ffe4c4",
+        "black": "#000000",
+        "blanchedalmond": "#ffebcd",
+        "blue": "#0000ff",
+        "blueviolet": "#8a2be2",
+        "brown": "#a52a2a",
+        "burlywood": "#deb887",
+        "cadetblue": "#5f9ea0",
+        "chartreuse": "#7fff00",
+        "chocolate": "#d2691e",
+        "coral": "#ff7f50",
+        "cornflowerblue": "#6495ed",
+        "cornsilk": "#fff8dc",
+        "crimson": "#dc143c",
+        "cyan": "#00ffff",
+        "darkblue": "#00008b",
+        "darkcyan": "#008b8b",
+        "darkgoldenrod": "#b8860b",
+        "darkgray": "#a9a9a9",
+        "darkgreen": "#006400",
+        "darkkhaki": "#bdb76b",
+        "darkmagenta": "#8b008b",
+        "darkolivegreen": "#556b2f",
+        "darkorange": "#ff8c00",
+        "darkorchid": "#9932cc",
+        "darkred": "#8b0000",
+        "darksalmon": "#e9967a",
+        "darkseagreen": "#8fbc8f",
+        "darkslateblue": "#483d8b",
+        "darkslategray": "#2f4f4f",
+        "darkturquoise": "#00ced1",
+        "darkviolet": "#9400d3",
+        "deeppink": "#ff1493",
+        "deepskyblue": "#00bfff",
+        "dimgray": "#696969",
+        "dodgerblue": "#1e90ff",
+        "firebrick": "#b22222",
+        "floralwhite": "#fffaf0",
+        "forestgreen": "#228b22",
+        "fuchsia": "#ff00ff",
+        "gainsboro": "#dcdcdc",
+        "ghostwhite": "#f8f8ff",
+        "gold": "#ffd700",
+        "goldenrod": "#daa520",
+        "gray": "#808080",
+        "green": "#008000",
+        "greenyellow": "#adff2f",
+        "honeydew": "#f0fff0",
+        "hotpink": "#ff69b4",
+        "indianred": "#cd5c5c",
+        "indigo": "#4b0082",
+        "ivory": "#fffff0",
+        "khaki": "#f0e68c",
+        "lavender": "#e6e6fa",
+        "lavenderblush": "#fff0f5",
+        "lawngreen": "#7cfc00",
+        "lemonchiffon": "#fffacd",
+        "lightblue": "#add8e6",
+        "lightcoral": "#f08080",
+        "lightcyan": "#e0ffff",
+        "lightgoldenrodyellow": "#fafad2",
+        "lightgray": "#d3d3d3",
+        "lightgreen": "#90ee90",
+        "lightpink": "#ffb6c1",
+        "lightsalmon": "#ffa07a",
+        "lightseagreen": "#20b2aa",
+        "lightskyblue": "#87cefa",
+        "lightslategray": "#778899",
+        "lightsteelblue": "#b0c4de",
+        "lightyellow": "#ffffe0",
+        "lime": "#00ff00",
+        "limegreen": "#32cd32",
+        "linen": "#faf0e6",
+        "magenta": "#ff00ff",
+        "maroon": "#800000",
+        "mediumaquamarine": "#66cdaa",
+        "mediumblue": "#0000cd",
+        "mediumorchid": "#ba55d3",
+        "mediumpurple": "#9370db",
+        "mediumseagreen": "#3cb371",
+        "mediumslateblue": "#7b68ee",
+        "mediumspringgreen": "#00fa9a",
+        "mediumturquoise": "#48d1cc",
+        "mediumvioletred": "#c71585",
+        "midnightblue": "#191970",
+        "mintcream": "#f5fffa",
+        "mistyrose": "#ffe4e1",
+        "moccasin": "#ffe4b5",
+        "navajowhite": "#ffdead",
+        "navy": "#000080",
+        "oldlace": "#fdf5e6",
+        "olive": "#808000",
+        "olivedrab": "#6b8e23",
+        "orange": "#ffa500",
+        "orangered": "#ff4500",
+        "orchid": "#da70d6",
+        "palegoldenrod": "#eee8aa",
+        "palegreen": "#98fb98",
+        "paleturquoise": "#afeeee",
+        "palevioletred": "#db7093",
+        "papayawhip": "#ffefd5",
+        "peachpuff": "#ffdab9",
+        "peru": "#cd853f",
+        "pink": "#ffc0cb",
+        "plum": "#dda0dd",
+        "powderblue": "#b0e0e6",
+        "purple": "#800080",
+        "rebeccapurple": "#663399",
+        "red": "#ff0000",
+        "rosybrown": "#bc8f8f",
+        "royalblue": "#4169e1",
+        "saddlebrown": "#8b4513",
+        "salmon": "#fa8072",
+        "sandybrown": "#f4a460",
+        "seagreen": "#2e8b57",
+        "seashell": "#fff5ee",
+        "sienna": "#a0522d",
+        "silver": "#c0c0c0",
+        "skyblue": "#87ceeb",
+        "slateblue": "#6a5acd",
+        "slategray": "#708090",
+        "snow": "#fffafa",
+        "springgreen": "#00ff7f",
+        "steelblue": "#4682b4",
+        "tan": "#d2b48c",
+        "teal": "#008080",
+        "thistle": "#d8bfd8",
+        "tomato": "#ff6347",
+        "turquoise": "#40e0d0",
+        "violet": "#ee82ee",
+        "wheat": "#f5deb3",
+        "white": "#ffffff",
+        "whitesmoke": "#f5f5f5",
+        "yellow": "#ffff00",
+        "yellowgreen": "#9acd32"
+    },
+	ratio: {
+		square: function(size) {
+			var s = {
+				w: 0,
+				h: 0
+			}
+			if (size.w > size.h && size.h > 0) {
+				s.h = size.h;
+				s.w = size.h;
+			} else {
+				s.w = size.w;
+				s.h = size.w;
+			}
+			return s;
+		},
+
+		r16_9: function(size) {
+			if (size.w !== null && size.w !== "") {
+				return Math.round((size.w / 16) * 9);
+			} else if (size.h !== null && size.h !== "") {
+				return Math.round((size.h / 9) * 16);
+			} else {
+				return 0;
+			}
+		},
+		r4_3: function(size) {
+			if (size.w !== null && size.w !== "") {
+				return Math.round((size.w / 4) * 3);
+			} else if (size.h !== null && size.h !== "") {
+				return Math.round((size.h / 3) * 4);
+			}
+		}
+	},
+	getObjectAttributeByIndex: function(obj, index) {
+		if(typeof obj != 'undefined') {
+			var i = 0;
+			for (var attr in obj){
+				if (index === i){
+					return obj[attr];
+				}
+				i++;
+			}
+			return "";
+		} else {
+			return "";
+		}
+
+	},
+	getUrlVars: function(string) {
+		var str,
+			vars = [],
+			hash,
+			hashes;
+
+		str = string.toString();
+
+		if (str.match('&#038;')) {
+			str = str.replace("&#038;", "&");
+		} else if (str.match('&#38;')) {
+			str = str.replace("&#38;", "&");
+		} else if (str.match('&amp;')) {
+			str = str.replace("&amp;", "&");
+		}
+
+		hashes = str.slice(str.indexOf('?') + 1).split('&');
+
+		for(var i = 0; i < hashes.length; i++) {
+			hash = hashes[i].split('=');
+			vars.push(hash[0]);
+			vars[hash[0]] = hash[1];
+		}
+
+
+		return vars;
+	},
+    /**
+     * Remove any leading or trailing whitespace from the given string.
+     * If `str` is undefined or does not have a `replace` function, return
+     * an empty string.
+     */
+	trim: function(str) {
+        if (str && typeof(str.replace) == 'function') {
+            return str.replace(/^\s+|\s+$/g, '');
+        }
+        return "";
+	},
+
+	slugify: function(str) {
+		// borrowed from http://stackoverflow.com/a/5782563/102476
+		str = TL.Util.trim(str);
+		str = str.toLowerCase();
+
+		// remove accents, swap ñ for n, etc
+		var from = "ãàáäâẽèéëêìíïîõòóöôùúüûñç·/_,:;";
+		var to   = "aaaaaeeeeeiiiiooooouuuunc------";
+		for (var i=0, l=from.length ; i<l ; i++) {
+		str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
+		}
+
+		str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
+		.replace(/\s+/g, '-') // collapse whitespace and replace by -
+		.replace(/-+/g, '-'); // collapse dashes
+
+		str = str.replace(/^([0-9])/,'_$1');
+		return str;
+	},
+	maxDepth: function(ary) {
+		// given a sorted array of 2-tuples of numbers, count how many "deep" the items are.
+		// that is, what is the maximum number of tuples that occupy any one moment
+		// each tuple should also be sorted
+		var stack = [];
+		var max_depth = 0;
+		for (var i = 0; i < ary.length; i++) {
+
+			stack.push(ary[i]);
+			if (stack.length > 1) {
+				var top = stack[stack.length - 1]
+				var bottom_idx = -1;
+				for (var j = 0; j < stack.length - 1; j++) {
+					if (stack[j][1] < top[0]) {
+						bottom_idx = j;
+					}
+				};
+				if (bottom_idx >= 0) {
+					stack = stack.slice(bottom_idx + 1);
+				}
+
+			}
+
+			if (stack.length > max_depth) {
+				max_depth = stack.length;
+			}
+		};
+		return max_depth;
+	},
+
+	pad: function (val, len) {
+		val = String(val);
+		len = len || 2;
+		while (val.length < len) val = "0" + val;
+		return val;
+	},
+	intToHexString: function(i) {
+		return TL.Util.pad(parseInt(i,10).toString(16));
+	},
+    findNextGreater: function(list, current, default_value) {
+        // given a sorted list and a current value which *might* be in the list,
+        // return the next greatest value if the current value is >= the last item in the list, return default,
+        // or if default is undefined, return input value
+        for (var i = 0; i < list.length; i++) {
+            if (current < list[i]) {
+                return list[i];
+            }
+        }
+
+        return (default_value) ? default_value : current;
+    },
+
+    findNextLesser: function(list, current, default_value) {
+        // given a sorted list and a current value which *might* be in the list,
+        // return the next lesser value if the current value is <= the last item in the list, return default,
+        // or if default is undefined, return input value
+        for (var i = list.length - 1; i >= 0; i--) {
+            if (current > list[i]) {
+                return list[i];
+            }
+        }
+
+        return (default_value) ? default_value : current;
+    },
+
+	isEmptyObject: function(o) {
+		var properties = []
+		if (Object.keys) {
+			properties = Object.keys(o);
+		} else { // all this to support IE 8
+		    for (var p in o) if (Object.prototype.hasOwnProperty.call(o,p)) properties.push(p);
+    }
+		for (var i = 0; i < properties.length; i++) {
+			var k = properties[i];
+			if (o[k] != null && typeof o[k] != "string") return false;
+			if (TL.Util.trim(o[k]).length != 0) return false;
+		}
+		return true;
+	},
+	parseYouTubeTime: function(s) {
+	    // given a YouTube start time string in a reasonable format, reduce it to a number of seconds as an integer.
+		if (typeof(s) == 'string') {
+			parts = s.match(/^\s*(\d+h)?(\d+m)?(\d+s)?\s*/i);
+			if (parts) {
+				var hours = parseInt(parts[1]) || 0;
+				var minutes = parseInt(parts[2]) || 0;
+				var seconds = parseInt(parts[3]) || 0;
+				return seconds + (minutes * 60) + (hours * 60 * 60);
+			}
+		} else if (typeof(s) == 'number') {
+			return s;
+		}
+		return 0;
+	},
+	/**
+	 * Try to make seamless the process of interpreting a URL to a web page which embeds an image for sharing purposes
+	 * as a direct image link. Some services have predictable transformations we can use rather than explain to people
+	 * this subtlety.
+	 */
+	transformImageURL: function(url) {
+		return url.replace(/(.*)www.dropbox.com\/(.*)/, '$1dl.dropboxusercontent.com/$2')
+	},
+
+	base58: (function(alpha) {
+	    var alphabet = alpha || '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ',
+	        base = alphabet.length;
+	    return {
+	        encode: function(enc) {
+	            if(typeof enc!=='number' || enc !== parseInt(enc))
+	                throw '"encode" only accepts integers.';
+	            var encoded = '';
+	            while(enc) {
+	                var remainder = enc % base;
+	                enc = Math.floor(enc / base);
+	                encoded = alphabet[remainder].toString() + encoded;
+	            }
+	            return encoded;
+	        },
+	        decode: function(dec) {
+	            if(typeof dec!=='string')
+	                throw '"decode" only accepts strings.';
+	            var decoded = 0;
+	            while(dec) {
+	                var alphabetPosition = alphabet.indexOf(dec[0]);
+	                if (alphabetPosition < 0)
+	                    throw '"decode" can\'t find "' + dec[0] + '" in the alphabet: "' + alphabet + '"';
+	                var powerOf = dec.length - 1;
+	                decoded += alphabetPosition * (Math.pow(base, powerOf));
+	                dec = dec.substring(1);
+	            }
+	            return decoded;
+	        }
+	    };
+	})()
+
+};
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/core/TL.js b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.js
new file mode 100644
index 0000000000000000000000000000000000000000..a1879ea016924b9d2fd6ef640b666755ba9d6c1a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/core/TL.js
@@ -0,0 +1,41 @@
+/*!
+	TL
+*/
+
+(function (root) {
+	root.TL = {
+		VERSION: '0.1',
+		_originalL: root.TL
+	};
+}(this));
+
+/*	TL.Debug
+	Debug mode
+================================================== */
+TL.debug = false;
+
+
+
+/*	TL.Bind
+================================================== */
+TL.Bind = function (/*Function*/ fn, /*Object*/ obj) /*-> Object*/ {
+	return function () {
+		return fn.apply(obj, arguments);
+	};
+};
+
+
+
+/* Trace (console.log)
+================================================== */
+trace = function( msg ) {
+	if (TL.debug) {
+		if (window.console) {
+			console.log(msg);
+		} else if ( typeof( jsTrace ) != 'undefined' ) {
+			jsTrace.send( msg );
+		} else {
+			//alert(msg);
+		}
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/data/TL.Data.js b/public/opac/TimelineJS3-3.5.1/source/js/data/TL.Data.js
new file mode 100644
index 0000000000000000000000000000000000000000..73791e603ce60623576259507b154a30f1fa4980
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/data/TL.Data.js
@@ -0,0 +1,1585 @@
+// Expects TL to be visible in scope
+
+;(function(TL){
+    /* Zepto v1.1.2-15-g59d3fe5 - zepto event ajax form ie - zeptojs.com/license */
+
+    var Zepto = (function() {
+      var undefined, key, $, classList, emptyArray = [], slice = emptyArray.slice, filter = emptyArray.filter,
+        document = window.document,
+        elementDisplay = {}, classCache = {},
+        cssNumber = { 'column-count': 1, 'columns': 1, 'font-weight': 1, 'line-height': 1,'opacity': 1, 'z-index': 1, 'zoom': 1 },
+        fragmentRE = /^\s*<(\w+|!)[^>]*>/,
+        singleTagRE = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
+        tagExpanderRE = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,
+        rootNodeRE = /^(?:body|html)$/i,
+        capitalRE = /([A-Z])/g,
+
+        // special attributes that should be get/set via method calls
+        methodAttributes = ['val', 'css', 'html', 'text', 'data', 'width', 'height', 'offset'],
+
+        adjacencyOperators = [ 'after', 'prepend', 'before', 'append' ],
+        table = document.createElement('table'),
+        tableRow = document.createElement('tr'),
+        containers = {
+          'tr': document.createElement('tbody'),
+          'tbody': table, 'thead': table, 'tfoot': table,
+          'td': tableRow, 'th': tableRow,
+          '*': document.createElement('div')
+        },
+        readyRE = /complete|loaded|interactive/,
+        classSelectorRE = /^\.([\w-]+)$/,
+        idSelectorRE = /^#([\w-]*)$/,
+        simpleSelectorRE = /^[\w-]*$/,
+        class2type = {},
+        toString = class2type.toString,
+        zepto = {},
+        camelize, uniq,
+        tempParent = document.createElement('div'),
+        propMap = {
+          'tabindex': 'tabIndex',
+          'readonly': 'readOnly',
+          'for': 'htmlFor',
+          'class': 'className',
+          'maxlength': 'maxLength',
+          'cellspacing': 'cellSpacing',
+          'cellpadding': 'cellPadding',
+          'rowspan': 'rowSpan',
+          'colspan': 'colSpan',
+          'usemap': 'useMap',
+          'frameborder': 'frameBorder',
+          'contenteditable': 'contentEditable'
+        },
+        isArray = Array.isArray ||
+          function(object){ return object instanceof Array }
+
+      zepto.matches = function(element, selector) {
+        if (!selector || !element || element.nodeType !== 1) return false
+        var matchesSelector = element.webkitMatchesSelector || element.mozMatchesSelector ||
+                              element.oMatchesSelector || element.matchesSelector
+        if (matchesSelector) return matchesSelector.call(element, selector)
+        // fall back to performing a selector:
+        var match, parent = element.parentNode, temp = !parent
+        if (temp) (parent = tempParent).appendChild(element)
+        match = ~zepto.qsa(parent, selector).indexOf(element)
+        temp && tempParent.removeChild(element)
+        return match
+      }
+
+      function type(obj) {
+        return obj == null ? String(obj) :
+          class2type[toString.call(obj)] || "object"
+      }
+
+      function isFunction(value) { return type(value) == "function" }
+      function isWindow(obj)     { return obj != null && obj == obj.window }
+      function isDocument(obj)   { return obj != null && obj.nodeType == obj.DOCUMENT_NODE }
+      function isObject(obj)     { return type(obj) == "object" }
+      function isPlainObject(obj) {
+        return isObject(obj) && !isWindow(obj) && Object.getPrototypeOf(obj) == Object.prototype
+      }
+      function likeArray(obj) { return typeof obj.length == 'number' }
+
+      function compact(array) { return filter.call(array, function(item){ return item != null }) }
+      function flatten(array) { return array.length > 0 ? $.fn.concat.apply([], array) : array }
+      camelize = function(str){ return str.replace(/-+(.)?/g, function(match, chr){ return chr ? chr.toUpperCase() : '' }) }
+      function dasherize(str) {
+        return str.replace(/::/g, '/')
+               .replace(/([A-Z]+)([A-Z][a-z])/g, '$1_$2')
+               .replace(/([a-z\d])([A-Z])/g, '$1_$2')
+               .replace(/_/g, '-')
+               .toLowerCase()
+      }
+      uniq = function(array){ return filter.call(array, function(item, idx){ return array.indexOf(item) == idx }) }
+
+      function classRE(name) {
+        return name in classCache ?
+          classCache[name] : (classCache[name] = new RegExp('(^|\\s)' + name + '(\\s|$)'))
+      }
+
+      function maybeAddPx(name, value) {
+        return (typeof value == "number" && !cssNumber[dasherize(name)]) ? value + "px" : value
+      }
+
+      function defaultDisplay(nodeName) {
+        var element, display
+        if (!elementDisplay[nodeName]) {
+          element = document.createElement(nodeName)
+          document.body.appendChild(element)
+          display = getComputedStyle(element, '').getPropertyValue("display")
+          element.parentNode.removeChild(element)
+          display == "none" && (display = "block")
+          elementDisplay[nodeName] = display
+        }
+        return elementDisplay[nodeName]
+      }
+
+      function children(element) {
+        return 'children' in element ?
+          slice.call(element.children) :
+          $.map(element.childNodes, function(node){ if (node.nodeType == 1) return node })
+      }
+
+      // `$.zepto.fragment` takes a html string and an optional tag name
+      // to generate DOM nodes nodes from the given html string.
+      // The generated DOM nodes are returned as an array.
+      // This function can be overriden in plugins for example to make
+      // it compatible with browsers that don't support the DOM fully.
+      zepto.fragment = function(html, name, properties) {
+        var dom, nodes, container
+
+        // A special case optimization for a single tag
+        if (singleTagRE.test(html)) dom = $(document.createElement(RegExp.$1))
+
+        if (!dom) {
+          if (html.replace) html = html.replace(tagExpanderRE, "<$1></$2>")
+          if (name === undefined) name = fragmentRE.test(html) && RegExp.$1
+          if (!(name in containers)) name = '*'
+
+          container = containers[name]
+          container.innerHTML = '' + html
+          dom = $.each(slice.call(container.childNodes), function(){
+            container.removeChild(this)
+          })
+        }
+
+        if (isPlainObject(properties)) {
+          nodes = $(dom)
+          $.each(properties, function(key, value) {
+            if (methodAttributes.indexOf(key) > -1) nodes[key](value)
+            else nodes.attr(key, value)
+          })
+        }
+
+        return dom
+      }
+
+      // `$.zepto.Z` swaps out the prototype of the given `dom` array
+      // of nodes with `$.fn` and thus supplying all the Zepto functions
+      // to the array. Note that `__proto__` is not supported on Internet
+      // Explorer. This method can be overriden in plugins.
+      zepto.Z = function(dom, selector) {
+        dom = dom || []
+        dom.__proto__ = $.fn
+        dom.selector = selector || ''
+        return dom
+      }
+
+      // `$.zepto.isZ` should return `true` if the given object is a Zepto
+      // collection. This method can be overriden in plugins.
+      zepto.isZ = function(object) {
+        return object instanceof zepto.Z
+      }
+
+      // `$.zepto.init` is Zepto's counterpart to jQuery's `$.fn.init` and
+      // takes a CSS selector and an optional context (and handles various
+      // special cases).
+      // This method can be overriden in plugins.
+      zepto.init = function(selector, context) {
+        var dom
+        // If nothing given, return an empty Zepto collection
+        if (!selector) return zepto.Z()
+        // Optimize for string selectors
+        else if (typeof selector == 'string') {
+          selector = selector.trim()
+          // If it's a html fragment, create nodes from it
+          // Note: In both Chrome 21 and Firefox 15, DOM error 12
+          // is thrown if the fragment doesn't begin with <
+          if (selector[0] == '<' && fragmentRE.test(selector))
+            dom = zepto.fragment(selector, RegExp.$1, context), selector = null
+          // If there's a context, create a collection on that context first, and select
+          // nodes from there
+          else if (context !== undefined) return $(context).find(selector)
+          // If it's a CSS selector, use it to select nodes.
+          else dom = zepto.qsa(document, selector)
+        }
+        // If a function is given, call it when the DOM is ready
+        else if (isFunction(selector)) return $(document).ready(selector)
+        // If a Zepto collection is given, just return it
+        else if (zepto.isZ(selector)) return selector
+        else {
+          // normalize array if an array of nodes is given
+          if (isArray(selector)) dom = compact(selector)
+          // Wrap DOM nodes.
+          else if (isObject(selector))
+            dom = [selector], selector = null
+          // If it's a html fragment, create nodes from it
+          else if (fragmentRE.test(selector))
+            dom = zepto.fragment(selector.trim(), RegExp.$1, context), selector = null
+          // If there's a context, create a collection on that context first, and select
+          // nodes from there
+          else if (context !== undefined) return $(context).find(selector)
+          // And last but no least, if it's a CSS selector, use it to select nodes.
+          else dom = zepto.qsa(document, selector)
+        }
+        // create a new Zepto collection from the nodes found
+        return zepto.Z(dom, selector)
+      }
+
+      // `$` will be the base `Zepto` object. When calling this
+      // function just call `$.zepto.init, which makes the implementation
+      // details of selecting nodes and creating Zepto collections
+      // patchable in plugins.
+      $ = function(selector, context){
+        return zepto.init(selector, context)
+      }
+
+      function extend(target, source, deep) {
+        for (key in source)
+          if (deep && (isPlainObject(source[key]) || isArray(source[key]))) {
+            if (isPlainObject(source[key]) && !isPlainObject(target[key]))
+              target[key] = {}
+            if (isArray(source[key]) && !isArray(target[key]))
+              target[key] = []
+            extend(target[key], source[key], deep)
+          }
+          else if (source[key] !== undefined) target[key] = source[key]
+      }
+
+      // Copy all but undefined properties from one or more
+      // objects to the `target` object.
+      $.extend = function(target){
+        var deep, args = slice.call(arguments, 1)
+        if (typeof target == 'boolean') {
+          deep = target
+          target = args.shift()
+        }
+        args.forEach(function(arg){ extend(target, arg, deep) })
+        return target
+      }
+
+      // `$.zepto.qsa` is Zepto's CSS selector implementation which
+      // uses `document.querySelectorAll` and optimizes for some special cases, like `#id`.
+      // This method can be overriden in plugins.
+      zepto.qsa = function(element, selector){
+        var found,
+            maybeID = selector[0] == '#',
+            maybeClass = !maybeID && selector[0] == '.',
+            nameOnly = maybeID || maybeClass ? selector.slice(1) : selector, // Ensure that a 1 char tag name still gets checked
+            isSimple = simpleSelectorRE.test(nameOnly)
+        return (isDocument(element) && isSimple && maybeID) ?
+          ( (found = element.getElementById(nameOnly)) ? [found] : [] ) :
+          (element.nodeType !== 1 && element.nodeType !== 9) ? [] :
+          slice.call(
+            isSimple && !maybeID ?
+              maybeClass ? element.getElementsByClassName(nameOnly) : // If it's simple, it could be a class
+              element.getElementsByTagName(selector) : // Or a tag
+              element.querySelectorAll(selector) // Or it's not simple, and we need to query all
+          )
+      }
+
+      function filtered(nodes, selector) {
+        return selector == null ? $(nodes) : $(nodes).filter(selector)
+      }
+
+      $.contains = function(parent, node) {
+        return parent !== node && parent.contains(node)
+      }
+
+      function funcArg(context, arg, idx, payload) {
+        return isFunction(arg) ? arg.call(context, idx, payload) : arg
+      }
+
+      function setAttribute(node, name, value) {
+        value == null ? node.removeAttribute(name) : node.setAttribute(name, value)
+      }
+
+      // access className property while respecting SVGAnimatedString
+      function className(node, value){
+        var klass = node.className,
+            svg   = klass && klass.baseVal !== undefined
+
+        if (value === undefined) return svg ? klass.baseVal : klass
+        svg ? (klass.baseVal = value) : (node.className = value)
+      }
+
+      // "true"  => true
+      // "false" => false
+      // "null"  => null
+      // "42"    => 42
+      // "42.5"  => 42.5
+      // "08"    => "08"
+      // JSON    => parse if valid
+      // String  => self
+      function deserializeValue(value) {
+        var num
+        try {
+          return value ?
+            value == "true" ||
+            ( value == "false" ? false :
+              value == "null" ? null :
+              !/^0/.test(value) && !isNaN(num = Number(value)) ? num :
+              /^[\[\{]/.test(value) ? $.parseJSON(value) :
+              value )
+            : value
+        } catch(e) {
+          return value
+        }
+      }
+
+      $.type = type
+      $.isFunction = isFunction
+      $.isWindow = isWindow
+      $.isArray = isArray
+      $.isPlainObject = isPlainObject
+
+      $.isEmptyObject = function(obj) {
+        var name
+        for (name in obj) return false
+        return true
+      }
+
+      $.inArray = function(elem, array, i){
+        return emptyArray.indexOf.call(array, elem, i)
+      }
+
+      $.camelCase = camelize
+      $.trim = function(str) {
+        return str == null ? "" : String.prototype.trim.call(str)
+      }
+
+      // plugin compatibility
+      $.uuid = 0
+      $.support = { }
+      $.expr = { }
+
+      $.map = function(elements, callback){
+        var value, values = [], i, key
+        if (likeArray(elements))
+          for (i = 0; i < elements.length; i++) {
+            value = callback(elements[i], i)
+            if (value != null) values.push(value)
+          }
+        else
+          for (key in elements) {
+            value = callback(elements[key], key)
+            if (value != null) values.push(value)
+          }
+        return flatten(values)
+      }
+
+      $.each = function(elements, callback){
+        var i, key
+        if (likeArray(elements)) {
+          for (i = 0; i < elements.length; i++)
+            if (callback.call(elements[i], i, elements[i]) === false) return elements
+        } else {
+          for (key in elements)
+            if (callback.call(elements[key], key, elements[key]) === false) return elements
+        }
+
+        return elements
+      }
+
+      $.grep = function(elements, callback){
+        return filter.call(elements, callback)
+      }
+
+      if (window.JSON) $.parseJSON = JSON.parse
+
+      // Populate the class2type map
+      $.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
+        class2type[ "[object " + name + "]" ] = name.toLowerCase()
+      })
+
+      // Define methods that will be available on all
+      // Zepto collections
+      $.fn = {
+        // Because a collection acts like an array
+        // copy over these useful array functions.
+        forEach: emptyArray.forEach,
+        reduce: emptyArray.reduce,
+        push: emptyArray.push,
+        sort: emptyArray.sort,
+        indexOf: emptyArray.indexOf,
+        concat: emptyArray.concat,
+
+        // `map` and `slice` in the jQuery API work differently
+        // from their array counterparts
+        map: function(fn){
+          return $($.map(this, function(el, i){ return fn.call(el, i, el) }))
+        },
+        slice: function(){
+          return $(slice.apply(this, arguments))
+        },
+
+        ready: function(callback){
+          // need to check if document.body exists for IE as that browser reports
+          // document ready when it hasn't yet created the body element
+          if (readyRE.test(document.readyState) && document.body) callback($)
+          else document.addEventListener('DOMContentLoaded', function(){ callback($) }, false)
+          return this
+        },
+        get: function(idx){
+          return idx === undefined ? slice.call(this) : this[idx >= 0 ? idx : idx + this.length]
+        },
+        toArray: function(){ return this.get() },
+        size: function(){
+          return this.length
+        },
+        remove: function(){
+          return this.each(function(){
+            if (this.parentNode != null)
+              this.parentNode.removeChild(this)
+          })
+        },
+        each: function(callback){
+          emptyArray.every.call(this, function(el, idx){
+            return callback.call(el, idx, el) !== false
+          })
+          return this
+        },
+        filter: function(selector){
+          if (isFunction(selector)) return this.not(this.not(selector))
+          return $(filter.call(this, function(element){
+            return zepto.matches(element, selector)
+          }))
+        },
+        add: function(selector,context){
+          return $(uniq(this.concat($(selector,context))))
+        },
+        is: function(selector){
+          return this.length > 0 && zepto.matches(this[0], selector)
+        },
+        not: function(selector){
+          var nodes=[]
+          if (isFunction(selector) && selector.call !== undefined)
+            this.each(function(idx){
+              if (!selector.call(this,idx)) nodes.push(this)
+            })
+          else {
+            var excludes = typeof selector == 'string' ? this.filter(selector) :
+              (likeArray(selector) && isFunction(selector.item)) ? slice.call(selector) : $(selector)
+            this.forEach(function(el){
+              if (excludes.indexOf(el) < 0) nodes.push(el)
+            })
+          }
+          return $(nodes)
+        },
+        has: function(selector){
+          return this.filter(function(){
+            return isObject(selector) ?
+              $.contains(this, selector) :
+              $(this).find(selector).size()
+          })
+        },
+        eq: function(idx){
+          return idx === -1 ? this.slice(idx) : this.slice(idx, + idx + 1)
+        },
+        first: function(){
+          var el = this[0]
+          return el && !isObject(el) ? el : $(el)
+        },
+        last: function(){
+          var el = this[this.length - 1]
+          return el && !isObject(el) ? el : $(el)
+        },
+        find: function(selector){
+          var result, $this = this
+          if (typeof selector == 'object')
+            result = $(selector).filter(function(){
+              var node = this
+              return emptyArray.some.call($this, function(parent){
+                return $.contains(parent, node)
+              })
+            })
+          else if (this.length == 1) result = $(zepto.qsa(this[0], selector))
+          else result = this.map(function(){ return zepto.qsa(this, selector) })
+          return result
+        },
+        closest: function(selector, context){
+          var node = this[0], collection = false
+          if (typeof selector == 'object') collection = $(selector)
+          while (node && !(collection ? collection.indexOf(node) >= 0 : zepto.matches(node, selector)))
+            node = node !== context && !isDocument(node) && node.parentNode
+          return $(node)
+        },
+        parents: function(selector){
+          var ancestors = [], nodes = this
+          while (nodes.length > 0)
+            nodes = $.map(nodes, function(node){
+              if ((node = node.parentNode) && !isDocument(node) && ancestors.indexOf(node) < 0) {
+                ancestors.push(node)
+                return node
+              }
+            })
+          return filtered(ancestors, selector)
+        },
+        parent: function(selector){
+          return filtered(uniq(this.pluck('parentNode')), selector)
+        },
+        children: function(selector){
+          return filtered(this.map(function(){ return children(this) }), selector)
+        },
+        contents: function() {
+          return this.map(function() { return slice.call(this.childNodes) })
+        },
+        siblings: function(selector){
+          return filtered(this.map(function(i, el){
+            return filter.call(children(el.parentNode), function(child){ return child!==el })
+          }), selector)
+        },
+        empty: function(){
+          return this.each(function(){ this.innerHTML = '' })
+        },
+        // `pluck` is borrowed from Prototype.js
+        pluck: function(property){
+          return $.map(this, function(el){ return el[property] })
+        },
+        show: function(){
+          return this.each(function(){
+            this.style.display == "none" && (this.style.display = '')
+            if (getComputedStyle(this, '').getPropertyValue("display") == "none")
+              this.style.display = defaultDisplay(this.nodeName)
+          })
+        },
+        replaceWith: function(newContent){
+          return this.before(newContent).remove()
+        },
+        wrap: function(structure){
+          var func = isFunction(structure)
+          if (this[0] && !func)
+            var dom   = $(structure).get(0),
+                clone = dom.parentNode || this.length > 1
+
+          return this.each(function(index){
+            $(this).wrapAll(
+              func ? structure.call(this, index) :
+                clone ? dom.cloneNode(true) : dom
+            )
+          })
+        },
+        wrapAll: function(structure){
+          if (this[0]) {
+            $(this[0]).before(structure = $(structure))
+            var children
+            // drill down to the inmost element
+            while ((children = structure.children()).length) structure = children.first()
+            $(structure).append(this)
+          }
+          return this
+        },
+        wrapInner: function(structure){
+          var func = isFunction(structure)
+          return this.each(function(index){
+            var self = $(this), contents = self.contents(),
+                dom  = func ? structure.call(this, index) : structure
+            contents.length ? contents.wrapAll(dom) : self.append(dom)
+          })
+        },
+        unwrap: function(){
+          this.parent().each(function(){
+            $(this).replaceWith($(this).children())
+          })
+          return this
+        },
+        clone: function(){
+          return this.map(function(){ return this.cloneNode(true) })
+        },
+        hide: function(){
+          return this.css("display", "none")
+        },
+        toggle: function(setting){
+          return this.each(function(){
+            var el = $(this)
+            ;(setting === undefined ? el.css("display") == "none" : setting) ? el.show() : el.hide()
+          })
+        },
+        prev: function(selector){ return $(this.pluck('previousElementSibling')).filter(selector || '*') },
+        next: function(selector){ return $(this.pluck('nextElementSibling')).filter(selector || '*') },
+        html: function(html){
+          return arguments.length === 0 ?
+            (this.length > 0 ? this[0].innerHTML : null) :
+            this.each(function(idx){
+              var originHtml = this.innerHTML
+              $(this).empty().append( funcArg(this, html, idx, originHtml) )
+            })
+        },
+        text: function(text){
+          return arguments.length === 0 ?
+            (this.length > 0 ? this[0].textContent : null) :
+            this.each(function(){ this.textContent = (text === undefined) ? '' : ''+text })
+        },
+        attr: function(name, value){
+          var result
+          return (typeof name == 'string' && value === undefined) ?
+            (this.length == 0 || this[0].nodeType !== 1 ? undefined :
+              (name == 'value' && this[0].nodeName == 'INPUT') ? this.val() :
+              (!(result = this[0].getAttribute(name)) && name in this[0]) ? this[0][name] : result
+            ) :
+            this.each(function(idx){
+              if (this.nodeType !== 1) return
+              if (isObject(name)) for (key in name) setAttribute(this, key, name[key])
+              else setAttribute(this, name, funcArg(this, value, idx, this.getAttribute(name)))
+            })
+        },
+        removeAttr: function(name){
+          return this.each(function(){ this.nodeType === 1 && setAttribute(this, name) })
+        },
+        prop: function(name, value){
+          name = propMap[name] || name
+          return (value === undefined) ?
+            (this[0] && this[0][name]) :
+            this.each(function(idx){
+              this[name] = funcArg(this, value, idx, this[name])
+            })
+        },
+        data: function(name, value){
+          var data = this.attr('data-' + name.replace(capitalRE, '-$1').toLowerCase(), value)
+          return data !== null ? deserializeValue(data) : undefined
+        },
+        val: function(value){
+          return arguments.length === 0 ?
+            (this[0] && (this[0].multiple ?
+               $(this[0]).find('option').filter(function(){ return this.selected }).pluck('value') :
+               this[0].value)
+            ) :
+            this.each(function(idx){
+              this.value = funcArg(this, value, idx, this.value)
+            })
+        },
+        offset: function(coordinates){
+          if (coordinates) return this.each(function(index){
+            var $this = $(this),
+                coords = funcArg(this, coordinates, index, $this.offset()),
+                parentOffset = $this.offsetParent().offset(),
+                props = {
+                  top:  coords.top  - parentOffset.top,
+                  left: coords.left - parentOffset.left
+                }
+
+            if ($this.css('position') == 'static') props['position'] = 'relative'
+            $this.css(props)
+          })
+          if (this.length==0) return null
+          var obj = this[0].getBoundingClientRect()
+          return {
+            left: obj.left + window.pageXOffset,
+            top: obj.top + window.pageYOffset,
+            width: Math.round(obj.width),
+            height: Math.round(obj.height)
+          }
+        },
+        css: function(property, value){
+          if (arguments.length < 2) {
+            var element = this[0], computedStyle = getComputedStyle(element, '')
+            if(!element) return
+            if (typeof property == 'string')
+              return element.style[camelize(property)] || computedStyle.getPropertyValue(property)
+            else if (isArray(property)) {
+              var props = {}
+              $.each(isArray(property) ? property: [property], function(_, prop){
+                props[prop] = (element.style[camelize(prop)] || computedStyle.getPropertyValue(prop))
+              })
+              return props
+            }
+          }
+
+          var css = ''
+          if (type(property) == 'string') {
+            if (!value && value !== 0)
+              this.each(function(){ this.style.removeProperty(dasherize(property)) })
+            else
+              css = dasherize(property) + ":" + maybeAddPx(property, value)
+          } else {
+            for (key in property)
+              if (!property[key] && property[key] !== 0)
+                this.each(function(){ this.style.removeProperty(dasherize(key)) })
+              else
+                css += dasherize(key) + ':' + maybeAddPx(key, property[key]) + ';'
+          }
+
+          return this.each(function(){ this.style.cssText += ';' + css })
+        },
+        index: function(element){
+          return element ? this.indexOf($(element)[0]) : this.parent().children().indexOf(this[0])
+        },
+        hasClass: function(name){
+          if (!name) return false
+          return emptyArray.some.call(this, function(el){
+            return this.test(className(el))
+          }, classRE(name))
+        },
+        addClass: function(name){
+          if (!name) return this
+          return this.each(function(idx){
+            classList = []
+            var cls = className(this), newName = funcArg(this, name, idx, cls)
+            newName.split(/\s+/g).forEach(function(klass){
+              if (!$(this).hasClass(klass)) classList.push(klass)
+            }, this)
+            classList.length && className(this, cls + (cls ? " " : "") + classList.join(" "))
+          })
+        },
+        removeClass: function(name){
+          return this.each(function(idx){
+            if (name === undefined) return className(this, '')
+            classList = className(this)
+            funcArg(this, name, idx, classList).split(/\s+/g).forEach(function(klass){
+              classList = classList.replace(classRE(klass), " ")
+            })
+            className(this, classList.trim())
+          })
+        },
+        toggleClass: function(name, when){
+          if (!name) return this
+          return this.each(function(idx){
+            var $this = $(this), names = funcArg(this, name, idx, className(this))
+            names.split(/\s+/g).forEach(function(klass){
+              (when === undefined ? !$this.hasClass(klass) : when) ?
+                $this.addClass(klass) : $this.removeClass(klass)
+            })
+          })
+        },
+        scrollTop: function(value){
+          if (!this.length) return
+          var hasScrollTop = 'scrollTop' in this[0]
+          if (value === undefined) return hasScrollTop ? this[0].scrollTop : this[0].pageYOffset
+          return this.each(hasScrollTop ?
+            function(){ this.scrollTop = value } :
+            function(){ this.scrollTo(this.scrollX, value) })
+        },
+        scrollLeft: function(value){
+          if (!this.length) return
+          var hasScrollLeft = 'scrollLeft' in this[0]
+          if (value === undefined) return hasScrollLeft ? this[0].scrollLeft : this[0].pageXOffset
+          return this.each(hasScrollLeft ?
+            function(){ this.scrollLeft = value } :
+            function(){ this.scrollTo(value, this.scrollY) })
+        },
+        position: function() {
+          if (!this.length) return
+
+          var elem = this[0],
+            // Get *real* offsetParent
+            offsetParent = this.offsetParent(),
+            // Get correct offsets
+            offset       = this.offset(),
+            parentOffset = rootNodeRE.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset()
+
+          // Subtract element margins
+          // note: when an element has margin: auto the offsetLeft and marginLeft
+          // are the same in Safari causing offset.left to incorrectly be 0
+          offset.top  -= parseFloat( $(elem).css('margin-top') ) || 0
+          offset.left -= parseFloat( $(elem).css('margin-left') ) || 0
+
+          // Add offsetParent borders
+          parentOffset.top  += parseFloat( $(offsetParent[0]).css('border-top-width') ) || 0
+          parentOffset.left += parseFloat( $(offsetParent[0]).css('border-left-width') ) || 0
+
+          // Subtract the two offsets
+          return {
+            top:  offset.top  - parentOffset.top,
+            left: offset.left - parentOffset.left
+          }
+        },
+        offsetParent: function() {
+          return this.map(function(){
+            var parent = this.offsetParent || document.body
+            while (parent && !rootNodeRE.test(parent.nodeName) && $(parent).css("position") == "static")
+              parent = parent.offsetParent
+            return parent
+          })
+        }
+      }
+
+      // for now
+      $.fn.detach = $.fn.remove
+
+      // Generate the `width` and `height` functions
+      ;['width', 'height'].forEach(function(dimension){
+        var dimensionProperty =
+          dimension.replace(/./, function(m){ return m[0].toUpperCase() })
+
+        $.fn[dimension] = function(value){
+          var offset, el = this[0]
+          if (value === undefined) return isWindow(el) ? el['inner' + dimensionProperty] :
+            isDocument(el) ? el.documentElement['scroll' + dimensionProperty] :
+            (offset = this.offset()) && offset[dimension]
+          else return this.each(function(idx){
+            el = $(this)
+            el.css(dimension, funcArg(this, value, idx, el[dimension]()))
+          })
+        }
+      })
+
+      function traverseNode(node, fun) {
+        fun(node)
+        for (var key in node.childNodes) traverseNode(node.childNodes[key], fun)
+      }
+
+      // Generate the `after`, `prepend`, `before`, `append`,
+      // `insertAfter`, `insertBefore`, `appendTo`, and `prependTo` methods.
+      adjacencyOperators.forEach(function(operator, operatorIndex) {
+        var inside = operatorIndex % 2 //=> prepend, append
+
+        $.fn[operator] = function(){
+          // arguments can be nodes, arrays of nodes, Zepto objects and HTML strings
+          var argType, nodes = $.map(arguments, function(arg) {
+                argType = type(arg)
+                return argType == "object" || argType == "array" || arg == null ?
+                  arg : zepto.fragment(arg)
+              }),
+              parent, copyByClone = this.length > 1
+          if (nodes.length < 1) return this
+
+          return this.each(function(_, target){
+            parent = inside ? target : target.parentNode
+
+            // convert all methods to a "before" operation
+            target = operatorIndex == 0 ? target.nextSibling :
+                     operatorIndex == 1 ? target.firstChild :
+                     operatorIndex == 2 ? target :
+                     null
+
+            nodes.forEach(function(node){
+              if (copyByClone) node = node.cloneNode(true)
+              else if (!parent) return $(node).remove()
+
+              traverseNode(parent.insertBefore(node, target), function(el){
+                if (el.nodeName != null && el.nodeName.toUpperCase() === 'SCRIPT' &&
+                   (!el.type || el.type === 'text/javascript') && !el.src)
+                  window['eval'].call(window, el.innerHTML)
+              })
+            })
+          })
+        }
+
+        // after    => insertAfter
+        // prepend  => prependTo
+        // before   => insertBefore
+        // append   => appendTo
+        $.fn[inside ? operator+'To' : 'insert'+(operatorIndex ? 'Before' : 'After')] = function(html){
+          $(html)[operator](this)
+          return this
+        }
+      })
+
+      zepto.Z.prototype = $.fn
+
+      // Export internal API functions in the `$.zepto` namespace
+      zepto.uniq = uniq
+      zepto.deserializeValue = deserializeValue
+      $.zepto = zepto
+
+      return $
+    })()
+
+    window.Zepto = Zepto
+    window.$ === undefined && (window.$ = Zepto)
+
+    ;(function($){
+      var $$ = $.zepto.qsa, _zid = 1, undefined,
+          slice = Array.prototype.slice,
+          isFunction = $.isFunction,
+          isString = function(obj){ return typeof obj == 'string' },
+          handlers = {},
+          specialEvents={},
+          focusinSupported = 'onfocusin' in window,
+          focus = { focus: 'focusin', blur: 'focusout' },
+          hover = { mouseenter: 'mouseover', mouseleave: 'mouseout' }
+
+      specialEvents.click = specialEvents.mousedown = specialEvents.mouseup = specialEvents.mousemove = 'MouseEvents'
+
+      function zid(element) {
+        return element._zid || (element._zid = _zid++)
+      }
+      function findHandlers(element, event, fn, selector) {
+        event = parse(event)
+        if (event.ns) var matcher = matcherFor(event.ns)
+        return (handlers[zid(element)] || []).filter(function(handler) {
+          return handler
+            && (!event.e  || handler.e == event.e)
+            && (!event.ns || matcher.test(handler.ns))
+            && (!fn       || zid(handler.fn) === zid(fn))
+            && (!selector || handler.sel == selector)
+        })
+      }
+      function parse(event) {
+        var parts = ('' + event).split('.')
+        return {e: parts[0], ns: parts.slice(1).sort().join(' ')}
+      }
+      function matcherFor(ns) {
+        return new RegExp('(?:^| )' + ns.replace(' ', ' .* ?') + '(?: |$)')
+      }
+
+      function eventCapture(handler, captureSetting) {
+        return handler.del &&
+          (!focusinSupported && (handler.e in focus)) ||
+          !!captureSetting
+      }
+
+      function realEvent(type) {
+        return hover[type] || (focusinSupported && focus[type]) || type
+      }
+
+      function add(element, events, fn, data, selector, delegator, capture){
+        var id = zid(element), set = (handlers[id] || (handlers[id] = []))
+        events.split(/\s/).forEach(function(event){
+          if (event == 'ready') return $(document).ready(fn)
+          var handler   = parse(event)
+          handler.fn    = fn
+          handler.sel   = selector
+          // emulate mouseenter, mouseleave
+          if (handler.e in hover) fn = function(e){
+            var related = e.relatedTarget
+            if (!related || (related !== this && !$.contains(this, related)))
+              return handler.fn.apply(this, arguments)
+          }
+          handler.del   = delegator
+          var callback  = delegator || fn
+          handler.proxy = function(e){
+            e = compatible(e)
+            if (e.isImmediatePropagationStopped()) return
+            e.data = data
+            var result = callback.apply(element, e._args == undefined ? [e] : [e].concat(e._args))
+            if (result === false) e.preventDefault(), e.stopPropagation()
+            return result
+          }
+          handler.i = set.length
+          set.push(handler)
+          if ('addEventListener' in element)
+            element.addEventListener(realEvent(handler.e), handler.proxy, eventCapture(handler, capture))
+        })
+      }
+      function remove(element, events, fn, selector, capture){
+        var id = zid(element)
+        ;(events || '').split(/\s/).forEach(function(event){
+          findHandlers(element, event, fn, selector).forEach(function(handler){
+            delete handlers[id][handler.i]
+          if ('removeEventListener' in element)
+            element.removeEventListener(realEvent(handler.e), handler.proxy, eventCapture(handler, capture))
+          })
+        })
+      }
+
+      $.event = { add: add, remove: remove }
+
+      $.proxy = function(fn, context) {
+        if (isFunction(fn)) {
+          var proxyFn = function(){ return fn.apply(context, arguments) }
+          proxyFn._zid = zid(fn)
+          return proxyFn
+        } else if (isString(context)) {
+          return $.proxy(fn[context], fn)
+        } else {
+          throw new TypeError("expected function")
+        }
+      }
+
+      $.fn.bind = function(event, data, callback){
+        return this.on(event, data, callback)
+      }
+      $.fn.unbind = function(event, callback){
+        return this.off(event, callback)
+      }
+      $.fn.one = function(event, selector, data, callback){
+        return this.on(event, selector, data, callback, 1)
+      }
+
+      var returnTrue = function(){return true},
+          returnFalse = function(){return false},
+          ignoreProperties = /^([A-Z]|returnValue$|layer[XY]$)/,
+          eventMethods = {
+            preventDefault: 'isDefaultPrevented',
+            stopImmediatePropagation: 'isImmediatePropagationStopped',
+            stopPropagation: 'isPropagationStopped'
+          }
+
+      function compatible(event, source) {
+        if (source || !event.isDefaultPrevented) {
+          source || (source = event)
+
+          $.each(eventMethods, function(name, predicate) {
+            var sourceMethod = source[name]
+            event[name] = function(){
+              this[predicate] = returnTrue
+              return sourceMethod && sourceMethod.apply(source, arguments)
+            }
+            event[predicate] = returnFalse
+          })
+
+          if (source.defaultPrevented !== undefined ? source.defaultPrevented :
+              'returnValue' in source ? source.returnValue === false :
+              source.getPreventDefault && source.getPreventDefault())
+            event.isDefaultPrevented = returnTrue
+        }
+        return event
+      }
+
+      function createProxy(event) {
+        var key, proxy = { originalEvent: event }
+        for (key in event)
+          if (!ignoreProperties.test(key) && event[key] !== undefined) proxy[key] = event[key]
+
+        return compatible(proxy, event)
+      }
+
+      $.fn.delegate = function(selector, event, callback){
+        return this.on(event, selector, callback)
+      }
+      $.fn.undelegate = function(selector, event, callback){
+        return this.off(event, selector, callback)
+      }
+
+      $.fn.live = function(event, callback){
+        $(document.body).delegate(this.selector, event, callback)
+        return this
+      }
+      $.fn.die = function(event, callback){
+        $(document.body).undelegate(this.selector, event, callback)
+        return this
+      }
+
+      $.fn.on = function(event, selector, data, callback, one){
+        var autoRemove, delegator, $this = this
+        if (event && !isString(event)) {
+          $.each(event, function(type, fn){
+            $this.on(type, selector, data, fn, one)
+          })
+          return $this
+        }
+
+        if (!isString(selector) && !isFunction(callback) && callback !== false)
+          callback = data, data = selector, selector = undefined
+        if (isFunction(data) || data === false)
+          callback = data, data = undefined
+
+        if (callback === false) callback = returnFalse
+
+        return $this.each(function(_, element){
+          if (one) autoRemove = function(e){
+            remove(element, e.type, callback)
+            return callback.apply(this, arguments)
+          }
+
+          if (selector) delegator = function(e){
+            var evt, match = $(e.target).closest(selector, element).get(0)
+            if (match && match !== element) {
+              evt = $.extend(createProxy(e), {currentTarget: match, liveFired: element})
+              return (autoRemove || callback).apply(match, [evt].concat(slice.call(arguments, 1)))
+            }
+          }
+
+          add(element, event, callback, data, selector, delegator || autoRemove)
+        })
+      }
+      $.fn.off = function(event, selector, callback){
+        var $this = this
+        if (event && !isString(event)) {
+          $.each(event, function(type, fn){
+            $this.off(type, selector, fn)
+          })
+          return $this
+        }
+
+        if (!isString(selector) && !isFunction(callback) && callback !== false)
+          callback = selector, selector = undefined
+
+        if (callback === false) callback = returnFalse
+
+        return $this.each(function(){
+          remove(this, event, callback, selector)
+        })
+      }
+
+      $.fn.trigger = function(event, args){
+        event = (isString(event) || $.isPlainObject(event)) ? $.Event(event) : compatible(event)
+        event._args = args
+        return this.each(function(){
+          // items in the collection might not be DOM elements
+          if('dispatchEvent' in this) this.dispatchEvent(event)
+          else $(this).triggerHandler(event, args)
+        })
+      }
+
+      // triggers event handlers on current element just as if an event occurred,
+      // doesn't trigger an actual event, doesn't bubble
+      $.fn.triggerHandler = function(event, args){
+        var e, result
+        this.each(function(i, element){
+          e = createProxy(isString(event) ? $.Event(event) : event)
+          e._args = args
+          e.target = element
+          $.each(findHandlers(element, event.type || event), function(i, handler){
+            result = handler.proxy(e)
+            if (e.isImmediatePropagationStopped()) return false
+          })
+        })
+        return result
+      }
+
+      // shortcut methods for `.bind(event, fn)` for each event type
+      ;('focusin focusout load resize scroll unload click dblclick '+
+      'mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave '+
+      'change select keydown keypress keyup error').split(' ').forEach(function(event) {
+        $.fn[event] = function(callback) {
+          return callback ?
+            this.bind(event, callback) :
+            this.trigger(event)
+        }
+      })
+
+      ;['focus', 'blur'].forEach(function(name) {
+        $.fn[name] = function(callback) {
+          if (callback) this.bind(name, callback)
+          else this.each(function(){
+            try { this[name]() }
+            catch(e) {}
+          })
+          return this
+        }
+      })
+
+      $.Event = function(type, props) {
+        if (!isString(type)) props = type, type = props.type
+        var event = document.createEvent(specialEvents[type] || 'Events'), bubbles = true
+        if (props) for (var name in props) (name == 'bubbles') ? (bubbles = !!props[name]) : (event[name] = props[name])
+        event.initEvent(type, bubbles, true)
+        return compatible(event)
+      }
+
+    })(Zepto)
+
+    ;(function($){
+      var jsonpID = 0,
+          document = window.document,
+          key,
+          name,
+          rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
+          scriptTypeRE = /^(?:text|application)\/javascript/i,
+          xmlTypeRE = /^(?:text|application)\/xml/i,
+          jsonType = 'application/json',
+          htmlType = 'text/html',
+          blankRE = /^\s*$/
+
+      // trigger a custom event and return false if it was cancelled
+      function triggerAndReturn(context, eventName, data) {
+        var event = $.Event(eventName)
+        $(context).trigger(event, data)
+        return !event.isDefaultPrevented()
+      }
+
+      // trigger an Ajax "global" event
+      function triggerGlobal(settings, context, eventName, data) {
+        if (settings.global) return triggerAndReturn(context || document, eventName, data)
+      }
+
+      // Number of active Ajax requests
+      $.active = 0
+
+      function ajaxStart(settings) {
+        if (settings.global && $.active++ === 0) triggerGlobal(settings, null, 'ajaxStart')
+      }
+      function ajaxStop(settings) {
+        if (settings.global && !(--$.active)) triggerGlobal(settings, null, 'ajaxStop')
+      }
+
+      // triggers an extra global event "ajaxBeforeSend" that's like "ajaxSend" but cancelable
+      function ajaxBeforeSend(xhr, settings) {
+        var context = settings.context
+        if (settings.beforeSend.call(context, xhr, settings) === false ||
+            triggerGlobal(settings, context, 'ajaxBeforeSend', [xhr, settings]) === false)
+          return false
+
+        triggerGlobal(settings, context, 'ajaxSend', [xhr, settings])
+      }
+      function ajaxSuccess(data, xhr, settings, deferred) {
+        var context = settings.context, status = 'success'
+        settings.success.call(context, data, status, xhr)
+        if (deferred) deferred.resolveWith(context, [data, status, xhr])
+        triggerGlobal(settings, context, 'ajaxSuccess', [xhr, settings, data])
+        ajaxComplete(status, xhr, settings)
+      }
+      // type: "timeout", "error", "abort", "parsererror"
+      function ajaxError(error, type, xhr, settings, deferred) {
+        var context = settings.context
+        settings.error.call(context, xhr, type, error)
+        if (deferred) deferred.rejectWith(context, [xhr, type, error])
+        triggerGlobal(settings, context, 'ajaxError', [xhr, settings, error || type])
+        ajaxComplete(type, xhr, settings)
+      }
+      // status: "success", "notmodified", "error", "timeout", "abort", "parsererror"
+      function ajaxComplete(status, xhr, settings) {
+        var context = settings.context
+        settings.complete.call(context, xhr, status)
+        triggerGlobal(settings, context, 'ajaxComplete', [xhr, settings])
+        ajaxStop(settings)
+      }
+
+      // Empty function, used as default callback
+      function empty() {}
+
+      $.ajaxJSONP = function(options, deferred){
+        if (!('type' in options)) return $.ajax(options)
+
+        var _callbackName = options.jsonpCallback,
+          callbackName = ($.isFunction(_callbackName) ?
+            _callbackName() : _callbackName) || ('jsonp' + (++jsonpID)),
+          script = document.createElement('script'),
+          originalCallback = window[callbackName],
+          responseData,
+          abort = function(errorType) {
+            $(script).triggerHandler('error', errorType || 'abort')
+          },
+          xhr = { abort: abort }, abortTimeout
+
+        if (deferred) deferred.promise(xhr)
+
+        $(script).on('load error', function(e, errorType){
+          clearTimeout(abortTimeout)
+          $(script).off().remove()
+
+          if (e.type == 'error' || !responseData) {
+            ajaxError(null, errorType || 'error', xhr, options, deferred)
+          } else {
+            ajaxSuccess(responseData[0], xhr, options, deferred)
+          }
+
+          window[callbackName] = originalCallback
+          if (responseData && $.isFunction(originalCallback))
+            originalCallback(responseData[0])
+
+          originalCallback = responseData = undefined
+        })
+
+        if (ajaxBeforeSend(xhr, options) === false) {
+          abort('abort')
+          return xhr
+        }
+
+        window[callbackName] = function(){
+          responseData = arguments
+        }
+
+        script.src = options.url.replace(/\?(.+)=\?/, '?$1=' + callbackName)
+        document.head.appendChild(script)
+
+        if (options.timeout > 0) abortTimeout = setTimeout(function(){
+          abort('timeout')
+        }, options.timeout)
+
+        return xhr
+      }
+
+      $.ajaxSettings = {
+        // Default type of request
+        type: 'GET',
+        // Callback that is executed before request
+        beforeSend: empty,
+        // Callback that is executed if the request succeeds
+        success: empty,
+        // Callback that is executed the the server drops error
+        error: empty,
+        // Callback that is executed on request complete (both: error and success)
+        complete: empty,
+        // The context for the callbacks
+        context: null,
+        // Whether to trigger "global" Ajax events
+        global: true,
+        // Transport
+        xhr: function () {
+          return new window.XMLHttpRequest()
+        },
+        // MIME types mapping
+        // IIS returns Javascript as "application/x-javascript"
+        accepts: {
+          script: 'text/javascript, application/javascript, application/x-javascript',
+          json:   jsonType,
+          xml:    'application/xml, text/xml',
+          html:   htmlType,
+          text:   'text/plain'
+        },
+        // Whether the request is to another domain
+        crossDomain: false,
+        // Default timeout
+        timeout: 0,
+        // Whether data should be serialized to string
+        processData: true,
+        // Whether the browser should be allowed to cache GET responses
+        cache: true
+      }
+
+      function mimeToDataType(mime) {
+        if (mime) mime = mime.split(';', 2)[0]
+        return mime && ( mime == htmlType ? 'html' :
+          mime == jsonType ? 'json' :
+          scriptTypeRE.test(mime) ? 'script' :
+          xmlTypeRE.test(mime) && 'xml' ) || 'text'
+      }
+
+      function appendQuery(url, query) {
+        if (query == '') return url
+        return (url + '&' + query).replace(/[&?]{1,2}/, '?')
+      }
+
+      // serialize payload and append it to the URL for GET requests
+      function serializeData(options) {
+        if (options.processData && options.data && $.type(options.data) != "string")
+          options.data = $.param(options.data, options.traditional)
+        if (options.data && (!options.type || options.type.toUpperCase() == 'GET'))
+          options.url = appendQuery(options.url, options.data), options.data = undefined
+      }
+
+      $.ajax = function(options){
+        var settings = $.extend({}, options || {}),
+            deferred = $.Deferred && $.Deferred()
+        for (key in $.ajaxSettings) if (settings[key] === undefined) settings[key] = $.ajaxSettings[key]
+
+        ajaxStart(settings)
+
+        if (!settings.crossDomain) settings.crossDomain = /^([\w-]+:)?\/\/([^\/]+)/.test(settings.url) &&
+          RegExp.$2 != window.location.host
+
+        if (!settings.url) settings.url = window.location.toString()
+        serializeData(settings)
+        if (settings.cache === false) settings.url = appendQuery(settings.url, '_=' + Date.now())
+
+        var dataType = settings.dataType, hasPlaceholder = /\?.+=\?/.test(settings.url)
+        if (dataType == 'jsonp' || hasPlaceholder) {
+          if (!hasPlaceholder)
+            settings.url = appendQuery(settings.url,
+              settings.jsonp ? (settings.jsonp + '=?') : settings.jsonp === false ? '' : 'callback=?')
+          return $.ajaxJSONP(settings, deferred)
+        }
+
+        var mime = settings.accepts[dataType],
+            headers = { },
+            setHeader = function(name, value) { headers[name.toLowerCase()] = [name, value] },
+            protocol = /^([\w-]+:)\/\//.test(settings.url) ? RegExp.$1 : window.location.protocol,
+            xhr = settings.xhr(),
+            nativeSetHeader = xhr.setRequestHeader,
+            abortTimeout
+
+        if (deferred) deferred.promise(xhr)
+
+        if (!settings.crossDomain) setHeader('X-Requested-With', 'XMLHttpRequest')
+        setHeader('Accept', mime || '*/*')
+        if (mime = settings.mimeType || mime) {
+          if (mime.indexOf(',') > -1) mime = mime.split(',', 2)[0]
+          xhr.overrideMimeType && xhr.overrideMimeType(mime)
+        }
+        if (settings.contentType || (settings.contentType !== false && settings.data && settings.type.toUpperCase() != 'GET'))
+          setHeader('Content-Type', settings.contentType || 'application/x-www-form-urlencoded')
+
+        if (settings.headers) for (name in settings.headers) setHeader(name, settings.headers[name])
+        xhr.setRequestHeader = setHeader
+
+        xhr.onreadystatechange = function(){
+          if (xhr.readyState == 4) {
+            xhr.onreadystatechange = empty
+            clearTimeout(abortTimeout)
+            var result, error = false
+            if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304 || (xhr.status == 0 && protocol == 'file:')) {
+              dataType = dataType || mimeToDataType(settings.mimeType || xhr.getResponseHeader('content-type'))
+              result = xhr.responseText
+
+              try {
+                // http://perfectionkills.com/global-eval-what-are-the-options/
+                if (dataType == 'script')    (1,eval)(result)
+                else if (dataType == 'xml')  result = xhr.responseXML
+                else if (dataType == 'json') result = blankRE.test(result) ? null : $.parseJSON(result)
+              } catch (e) { error = e }
+
+              if (error) ajaxError(error, 'parsererror', xhr, settings, deferred)
+              else ajaxSuccess(result, xhr, settings, deferred)
+            } else {
+              ajaxError(xhr.statusText || null, xhr.status ? 'error' : 'abort', xhr, settings, deferred)
+            }
+          }
+        }
+
+        if (ajaxBeforeSend(xhr, settings) === false) {
+          xhr.abort()
+          ajaxError(null, 'abort', xhr, settings, deferred)
+          return xhr
+        }
+
+        if (settings.xhrFields) for (name in settings.xhrFields) xhr[name] = settings.xhrFields[name]
+
+        var async = 'async' in settings ? settings.async : true
+        xhr.open(settings.type, settings.url, async, settings.username, settings.password)
+
+        for (name in headers) nativeSetHeader.apply(xhr, headers[name])
+
+        if (settings.timeout > 0) abortTimeout = setTimeout(function(){
+            xhr.onreadystatechange = empty
+            xhr.abort()
+            ajaxError(null, 'timeout', xhr, settings, deferred)
+          }, settings.timeout)
+
+        // avoid sending empty string (#319)
+        xhr.send(settings.data ? settings.data : null)
+        return xhr
+      }
+
+      // handle optional data/success arguments
+      function parseArguments(url, data, success, dataType) {
+        var hasData = !$.isFunction(data)
+        return {
+          url:      url,
+          data:     hasData  ? data : undefined,
+          success:  !hasData ? data : $.isFunction(success) ? success : undefined,
+          dataType: hasData  ? dataType || success : success
+        }
+      }
+
+      $.get = function(url, data, success, dataType){
+        return $.ajax(parseArguments.apply(null, arguments))
+      }
+
+      $.post = function(url, data, success, dataType){
+        var options = parseArguments.apply(null, arguments)
+        options.type = 'POST'
+        return $.ajax(options)
+      }
+
+      $.getJSON = function(url, data, success){
+        var options = parseArguments.apply(null, arguments)
+        options.dataType = 'json'
+        return $.ajax(options)
+      }
+
+      $.fn.load = function(url, data, success){
+        if (!this.length) return this
+        var self = this, parts = url.split(/\s/), selector,
+            options = parseArguments(url, data, success),
+            callback = options.success
+        if (parts.length > 1) options.url = parts[0], selector = parts[1]
+        options.success = function(response){
+          self.html(selector ?
+            $('<div>').html(response.replace(rscript, "")).find(selector)
+            : response)
+          callback && callback.apply(self, arguments)
+        }
+        $.ajax(options)
+        return this
+      }
+
+      var escape = encodeURIComponent
+
+      function serialize(params, obj, traditional, scope){
+        var type, array = $.isArray(obj), hash = $.isPlainObject(obj)
+        $.each(obj, function(key, value) {
+          type = $.type(value)
+          if (scope) key = traditional ? scope :
+            scope + '[' + (hash || type == 'object' || type == 'array' ? key : '') + ']'
+          // handle data in serializeArray() format
+          if (!scope && array) params.add(value.name, value.value)
+          // recurse into nested objects
+          else if (type == "array" || (!traditional && type == "object"))
+            serialize(params, value, traditional, key)
+          else params.add(key, value)
+        })
+      }
+
+      $.param = function(obj, traditional){
+        var params = []
+        params.add = function(k, v){ this.push(escape(k) + '=' + escape(v)) }
+        serialize(params, obj, traditional)
+        return params.join('&').replace(/%20/g, '+')
+      }
+    })(Zepto)
+
+    ;(function($){
+      $.fn.serializeArray = function() {
+        var result = [], el
+        $([].slice.call(this.get(0).elements)).each(function(){
+          el = $(this)
+          var type = el.attr('type')
+          if (this.nodeName.toLowerCase() != 'fieldset' &&
+            !this.disabled && type != 'submit' && type != 'reset' && type != 'button' &&
+            ((type != 'radio' && type != 'checkbox') || this.checked))
+            result.push({
+              name: el.attr('name'),
+              value: el.val()
+            })
+        })
+        return result
+      }
+
+      $.fn.serialize = function(){
+        var result = []
+        this.serializeArray().forEach(function(elm){
+          result.push(encodeURIComponent(elm.name) + '=' + encodeURIComponent(elm.value))
+        })
+        return result.join('&')
+      }
+
+      $.fn.submit = function(callback) {
+        if (callback) this.bind('submit', callback)
+        else if (this.length) {
+          var event = $.Event('submit')
+          this.eq(0).trigger(event)
+          if (!event.isDefaultPrevented()) this.get(0).submit()
+        }
+        return this
+      }
+
+    })(Zepto)
+
+    ;(function($){
+      // __proto__ doesn't exist on IE<11, so redefine
+      // the Z function to use object extension instead
+      if (!('__proto__' in {})) {
+        $.extend($.zepto, {
+          Z: function(dom, selector){
+            dom = dom || []
+            $.extend(dom, $.fn)
+            dom.selector = selector || ''
+            dom.__Z = true
+            return dom
+          },
+          // this is a kludge but works
+          isZ: function(object){
+            return $.type(object) === 'array' && '__Z' in object
+          }
+        })
+      }
+
+      // getComputedStyle shouldn't freak out when called
+      // without a valid element as argument
+      try {
+        getComputedStyle(undefined)
+      } catch(e) {
+        var nativeGetComputedStyle = getComputedStyle;
+        window.getComputedStyle = function(element, pseudoElement){
+          try {
+            return nativeGetComputedStyle(element, pseudoElement)
+          } catch(e) {
+            return null
+          }
+        }
+      }
+    })(Zepto)
+
+
+  TL.getJSON = Zepto.getJSON;
+	TL.ajax = Zepto.ajax;
+})(TL)
+
+//     Based on https://github.com/madrobby/zepto/blob/5585fe00f1828711c04208372265a5d71e3238d1/src/ajax.js
+//     Zepto.js
+//     (c) 2010-2012 Thomas Fuchs
+//     Zepto.js may be freely distributed under the MIT license.
+/*
+Copyright (c) 2010-2012 Thomas Fuchs
+http://zeptojs.com
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
+of this software and associated documentation files (the "Software"), to deal 
+in the Software without restriction, including without limitation the rights 
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
+copies of the Software, and to permit persons to whom the Software is 
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
+SOFTWARE.
+*/
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/date/TL.Date.js b/public/opac/TimelineJS3-3.5.1/source/js/date/TL.Date.js
new file mode 100644
index 0000000000000000000000000000000000000000..b50fe95f116fc01c9cd3461a800c4b72a830ac51
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/date/TL.Date.js
@@ -0,0 +1,421 @@
+/*	TL.Date
+	Date object
+	MONTHS are 1-BASED, not 0-BASED (different from Javascript date objects)
+================================================== */
+
+//
+// Class for human dates
+//
+
+TL.Date = TL.Class.extend({
+
+    // @data = ms, JS Date object, or JS dictionary with date properties
+	initialize: function (data, format, format_short) {
+	    if (typeof(data) == 'number') {
+			this.data = {
+				format:     "yyyy mmmm",
+				date_obj:   new Date(data)
+			};
+	    } else if(Date == data.constructor) {
+			this.data = {
+				format:     "yyyy mmmm",
+				date_obj:   data
+			};
+	    } else {
+	        this.data = JSON.parse(JSON.stringify(data)); // clone don't use by reference.
+            this._createDateObj();
+	    }
+
+		this._setFormat(format, format_short);
+    },
+
+	setDateFormat: function(format) {
+		this.data.format = format;
+	},
+
+	getDisplayDate: function(language, format) {
+	    if (this.data.display_date) {
+	        return this.data.display_date;
+	    }
+        if (!language) {
+            language = TL.Language.fallback;
+        }
+        if (language.constructor != TL.Language) {
+            trace("First argument to getDisplayDate must be TL.Language");
+            language = TL.Language.fallback;
+        }
+
+        var format_key = format || this.data.format;
+        return language.formatDate(this.data.date_obj, format_key);
+	},
+
+	getMillisecond: function() {
+		return this.getTime();
+	},
+
+	getTime: function() {
+		return this.data.date_obj.getTime();
+	},
+
+	isBefore: function(other_date) {
+        if (!this.data.date_obj.constructor == other_date.data.date_obj.constructor) {
+            throw new TL.Error("date_compare_err") // but should be able to compare 'cosmological scale' dates once we get to that...
+        }
+        if ('isBefore' in this.data.date_obj) {
+            return this.data.date_obj['isBefore'](other_date.data.date_obj);
+        }
+        return this.data.date_obj < other_date.data.date_obj
+	},
+
+	isAfter: function(other_date) {
+        if (!this.data.date_obj.constructor == other_date.data.date_obj.constructor) {
+            throw new TL.Error("date_compare_err") // but should be able to compare 'cosmological scale' dates once we get to that...
+        }
+        if ('isAfter' in this.data.date_obj) {
+            return this.data.date_obj['isAfter'](other_date.data.date_obj);
+        }
+        return this.data.date_obj > other_date.data.date_obj
+	},
+
+    // Return a new TL.Date which has been 'floored' at the given scale.
+    // @scale = string value from TL.Date.SCALES
+    floor: function(scale) {
+        var d = new Date(this.data.date_obj.getTime());
+        for (var i = 0; i < TL.Date.SCALES.length; i++) {
+             // for JS dates, we iteratively apply flooring functions
+            TL.Date.SCALES[i][2](d);
+            if (TL.Date.SCALES[i][0] == scale) return new TL.Date(d);
+        };
+
+        throw new TL.Error("invalid_scale_err", scale);
+    },
+
+	/*	Private Methods
+	================================================== */
+
+    _getDateData: function() {
+        var _date = {
+            year: 			0,
+            month: 			1, // stupid JS dates
+            day: 			1,
+            hour: 			0,
+            minute: 		0,
+            second: 		0,
+            millisecond: 	0
+		};
+
+		// Merge data
+		TL.Util.mergeData(_date, this.data);
+
+ 		// Make strings into numbers
+		var DATE_PARTS = TL.Date.DATE_PARTS;
+
+ 		for (var ix in DATE_PARTS) {
+ 		    var x = TL.Util.trim(_date[DATE_PARTS[ix]]);
+ 		    if (!x.match(/^-?\d*$/)) {
+ 		        throw new TL.Error("invalid_date_err", DATE_PARTS[ix] + " = '" + _date[DATE_PARTS[ix]] + "'");
+ 		    }
+ 		    
+			var parsed = parseInt(_date[DATE_PARTS[ix]]);
+			if (isNaN(parsed)) {
+                parsed = (ix == 4 || ix == 5) ? 1 : 0; // month and day have diff baselines
+            }
+			_date[DATE_PARTS[ix]] = parsed;
+		}
+
+		if (_date.month > 0 && _date.month <= 12) { // adjust for JS's weirdness
+			_date.month = _date.month - 1;
+		}
+
+		return _date;
+    },
+
+	_createDateObj: function() {
+	    var _date = this._getDateData();
+        this.data.date_obj = new Date(_date.year, _date.month, _date.day, _date.hour, _date.minute, _date.second, _date.millisecond);
+        if (this.data.date_obj.getFullYear() != _date.year) {
+            // Javascript has stupid defaults for two-digit years
+            this.data.date_obj.setFullYear(_date.year);
+        }
+	},
+
+    /*  Find Best Format
+     * this may not work with 'cosmologic' dates, or with TL.Date if we
+     * support constructing them based on JS Date and time
+    ================================================== */
+    findBestFormat: function(variant) {
+        var eval_array = TL.Date.DATE_PARTS,
+            format = "";
+
+        for (var i = 0; i < eval_array.length; i++) {
+            if ( this.data[eval_array[i]]) {
+                if (variant) {
+                    if (!(variant in TL.Date.BEST_DATEFORMATS)) {
+                        variant = 'short'; // legacy
+                    }
+                } else {
+                    variant = 'base'
+                }
+                return TL.Date.BEST_DATEFORMATS[variant][eval_array[i]];
+            }
+        };
+        return "";
+    },
+    _setFormat: function(format, format_short) {
+		if (format) {
+			this.data.format = format;
+		} else if (!this.data.format) {
+			this.data.format = this.findBestFormat();
+		}
+
+		if (format_short) {
+			this.data.format_short = format_short;
+		} else if (!this.data.format_short) {
+			this.data.format_short = this.findBestFormat(true);
+		}
+    }
+});
+
+// offer something that can figure out the right date class to return
+TL.Date.makeDate = function(data) {
+    var date = new TL.Date(data);
+    if (!isNaN(date.getTime())) {
+        return date;
+    }
+    return new TL.BigDate(data);
+}
+
+TL.BigYear = TL.Class.extend({
+    initialize: function (year) {
+        this.year = parseInt(year);
+        if (isNaN(this.year)) {
+            throw new TL.Error('invalid_year_err', year);
+        }
+    },
+
+    isBefore: function(that) {
+        return this.year < that.year;
+    },
+
+    isAfter: function(that) {
+        return this.year > that.year;
+    },
+
+    getTime: function() {
+        return this.year;
+    }
+});
+
+(function(cls){
+    // human scales
+    cls.SCALES = [ // ( name, units_per_tick, flooring function )
+        ['millisecond',1, function(d) { }],
+        ['second',1000, function(d) { d.setMilliseconds(0);}],
+        ['minute',1000 * 60, function(d) { d.setSeconds(0);}],
+        ['hour',1000 * 60 * 60, function(d) { d.setMinutes(0);}],
+        ['day',1000 * 60 * 60 * 24, function(d) { d.setHours(0);}],
+        ['month',1000 * 60 * 60 * 24 * 30, function(d) { d.setDate(1);}],
+        ['year',1000 * 60 * 60 * 24 * 365, function(d) { d.setMonth(0);}],
+        ['decade',1000 * 60 * 60 * 24 * 365 * 10, function(d) {
+            var real_year = d.getFullYear();
+            d.setFullYear( real_year - (real_year % 10))
+        }],
+        ['century',1000 * 60 * 60 * 24 * 365 * 100, function(d) {
+            var real_year = d.getFullYear();
+            d.setFullYear( real_year - (real_year % 100))
+        }],
+        ['millennium',1000 * 60 * 60 * 24 * 365 * 1000, function(d) {
+            var real_year = d.getFullYear();
+            d.setFullYear( real_year - (real_year % 1000))
+        }]
+    ];
+
+    // Date parts from highest to lowest precision
+    cls.DATE_PARTS = ["millisecond", "second", "minute", "hour", "day", "month", "year"];
+
+    var ISO8601_SHORT_PATTERN = /^([\+-]?\d+?)(-\d{2}?)?(-\d{2}?)?$/;
+    // regex below from
+    // http://www.pelagodesign.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/
+    var ISO8601_PATTERN = /^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/;
+
+    /* For now, rather than extract parts from regexp, lets trust the browser.
+     * Famous last words...
+     * What about UTC vs local time?
+     * see also http://stackoverflow.com/questions/10005374/ecmascript-5-date-parse-results-for-iso-8601-test-cases
+     */
+    cls.parseISODate = function(str) {
+        var d = new Date(str);
+        if (isNaN(d)) {
+            throw new TL.Error("invalid_date_err", str);
+        }
+        return {
+            year: d.getFullYear(),
+            month: d.getMonth() + 1,
+            day: d.getDate(),
+            hour: d.getHours(),
+            minute: d.getMinutes(),
+            second: d.getSeconds(),
+            millisecond: d.getMilliseconds()
+        }
+
+    }
+
+    cls.parseDate = function(str) {
+
+        if (str.match(ISO8601_SHORT_PATTERN)) {
+            // parse short specifically to avoid timezone offset confusion
+            // most browsers assume short is UTC, not local time.
+            var parts = str.match(ISO8601_SHORT_PATTERN).slice(1);
+            var d = { year: parts[0].replace('+','')} // year can be negative
+            if (parts[1]) { d['month'] = parts[1].replace('-',''); }
+            if (parts[2]) { d['day'] = parts[2].replace('-',''); }
+            return d;
+        }
+
+        if (str.match(ISO8601_PATTERN)) {
+            return cls.parseISODate(str);
+        }
+
+        if (str.match(/^\-?\d+$/)) {
+            return { year: str }
+        }
+
+        var parsed = {}
+        if (str.match(/\d+\/\d+\/\d+/)) { // mm/yy/dddd
+            var date = str.match(/\d+\/\d+\/\d+/)[0];
+            str = TL.Util.trim(str.replace(date,''));
+            var date_parts = date.split('/');
+            parsed.month = date_parts[0];
+            parsed.day = date_parts[1];
+            parsed.year = date_parts[2];
+        }
+
+        if (str.match(/\d+\/\d+/)) { // mm/yy
+            var date = str.match(/\d+\/\d+/)[0];
+            str = TL.Util.trim(str.replace(date,''));
+            var date_parts = date.split('/');
+            parsed.month = date_parts[0];
+            parsed.year = date_parts[1];
+        }
+        // todo: handle hours, minutes, seconds, millis other date formats, etc...
+        if (str.match(':')) {
+            var time_parts = str.split(':');
+            parsed.hour = time_parts[0];
+            parsed.minute = time_parts[1];
+            if (time_parts[2]) {
+                second_parts = time_parts[2].split('.');
+                parsed.second = second_parts[0];
+                parsed.millisecond = second_parts[1];
+            }
+        }
+        return parsed;
+    }
+
+    cls.BEST_DATEFORMATS = {
+        base: {
+            millisecond: 'time_short',
+            second: 'time',
+            minute: 'time_no_seconds_small_date',
+            hour: 'time_no_seconds_small_date',
+            day: 'full',
+            month: 'month',
+            year: 'year',
+            decade: 'year',
+            century: 'year',
+            millennium: 'year',
+            age: 'fallback',
+            epoch: 'fallback',
+            era: 'fallback',
+            eon: 'fallback',
+            eon2: 'fallback'
+        },
+
+        short: {
+            millisecond: 'time_short',
+            second: 'time_short',
+            minute: 'time_no_seconds_short',
+            hour: 'time_no_minutes_short',
+            day: 'full_short',
+            month: 'month_short',
+            year: 'year',
+            decade: 'year',
+            century: 'year',
+            millennium: 'year',
+            age: 'fallback',
+            epoch: 'fallback',
+            era: 'fallback',
+            eon: 'fallback',
+            eon2: 'fallback'
+        }
+    }
+
+
+})(TL.Date)
+
+
+//
+// Class for cosmological dates
+//
+TL.BigDate = TL.Date.extend({
+
+    // @data = TL.BigYear object or JS dictionary with date properties
+    initialize: function(data, format, format_short) {
+        if (TL.BigYear == data.constructor) {
+            this.data = {
+                date_obj:   data
+            }
+        } else {
+            this.data = JSON.parse(JSON.stringify(data));
+            this._createDateObj();
+        }
+
+        this._setFormat(format, format_short);
+    },
+
+    // Create date_obj
+    _createDateObj: function() {
+	    var _date = this._getDateData();
+        this.data.date_obj = new TL.BigYear(_date.year);
+    },
+
+    // Return a new TL.BigDate which has been 'floored' at the given scale.
+    // @scale = string value from TL.BigDate.SCALES
+    floor: function(scale) {
+        for (var i = 0; i < TL.BigDate.SCALES.length; i++) {
+            if (TL.BigDate.SCALES[i][0] == scale) {
+                var floored = TL.BigDate.SCALES[i][2](this.data.date_obj);
+                return new TL.BigDate(floored);
+            }
+        };
+
+        throw new TL.Error("invalid_scale_err", scale);
+    }
+});
+
+(function(cls){
+    // cosmo units are years, not millis
+    var AGE = 1000000;
+    var EPOCH = AGE * 10;
+    var ERA = EPOCH * 10;
+    var EON = ERA * 10;
+
+    var Floorer = function(unit) {
+        return function(a_big_year) {
+            var year = a_big_year.getTime();
+            return new TL.BigYear(Math.floor(year/unit) * unit);
+        }
+    }
+
+    // cosmological scales
+    cls.SCALES = [ // ( name, units_per_tick, flooring function )
+				['year',1, new Floorer(1)],
+				['decade',10, new Floorer(10)],
+				['century',100, new Floorer(100)],
+				['millennium',1000, new Floorer(1000)],
+        ['age',AGE, new Floorer(AGE)],          // 1M years
+        ['epoch',EPOCH, new Floorer(EPOCH)],    // 10M years
+        ['era',ERA, new Floorer(ERA)],          // 100M years
+        ['eon',EON, new Floorer(EON)]           // 1B years
+    ];
+
+})(TL.BigDate)
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/date/TL.DateUtil.js b/public/opac/TimelineJS3-3.5.1/source/js/date/TL.DateUtil.js
new file mode 100644
index 0000000000000000000000000000000000000000..75764f26e9abed6c6cedb5b437d34933867c1254
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/date/TL.DateUtil.js
@@ -0,0 +1,94 @@
+/*	TL.DateUtil
+	Utilities for parsing time
+================================================== */
+
+
+TL.DateUtil = {
+	get: function (id) {
+		return (typeof id === 'string' ? document.getElementById(id) : id);
+	},
+
+	sortByDate: function(array,prop_name) { // only for use with slide data objects
+		var prop_name = prop_name || 'start_date';
+		array.sort(function(a,b){
+			if (a[prop_name].isBefore(b[prop_name])) return -1;
+			if (a[prop_name].isAfter(b[prop_name])) return 1;
+			return 0;
+		});
+	},
+
+	parseTime: function(time_str) {
+		var parsed = {
+			hour: null, minute: null, second: null, millisecond: null // conform to keys in TL.Date
+		}
+		var period = null;
+		var match = time_str.match(/(\s*[AaPp]\.?[Mm]\.?\s*)$/);
+		if (match) {
+			period = TL.Util.trim(match[0]);
+			time_str = TL.Util.trim(time_str.substring(0,time_str.lastIndexOf(period)));
+		}
+
+		var parts = [];
+		var no_separators = time_str.match(/^\s*(\d{1,2})(\d{2})\s*$/);
+		if (no_separators) {
+			parts = no_separators.slice(1);
+		} else {
+			parts = time_str.split(':');
+			if (parts.length == 1) {
+				parts = time_str.split('.');
+			}
+		}
+
+		if (parts.length > 4) { 
+		    throw new TL.Error("invalid_separator_error");
+		}
+
+		parsed.hour = parseInt(parts[0]);
+
+		if (period && period.toLowerCase()[0] == 'p' && parsed.hour != 12) {
+			parsed.hour += 12;
+		} else if (period && period.toLowerCase()[0] == 'a' && parsed.hour == 12) {
+			parsed.hour = 0;
+		}
+
+
+		if (isNaN(parsed.hour) || parsed.hour < 0 || parsed.hour > 23) {
+			throw new TL.Error("invalid_hour_err", parsed.hour);
+		}
+
+		if (parts.length > 1) {
+			parsed.minute = parseInt(parts[1]);
+			if (isNaN(parsed.minute)) { 
+			    throw new TL.Error("invalid_minute_err", parsed.minute); 
+			}
+		}
+
+		if (parts.length > 2) {
+			var sec_parts = parts[2].split(/[\.,]/);
+			parts = sec_parts.concat(parts.slice(3)) // deal with various methods of specifying fractional seconds
+			if (parts.length > 2) { 
+			    throw new TL.Error("invalid_second_fractional_err");
+			}
+			parsed.second = parseInt(parts[0]);
+			if (isNaN(parsed.second)) { 
+			    throw new TL.Error("invalid_second_err");
+			}
+			if (parts.length == 2) {
+				var frac_secs = parseInt(parts[1]);
+				if (isNaN(frac_secs)) { 
+				    throw new TL.Error("invalid_fractional_err");
+				}
+				parsed.millisecond = 100 * frac_secs;
+			}
+		}
+
+		return parsed;
+	},
+
+	SCALE_DATE_CLASSES: {
+		human: TL.Date,
+		cosmological: TL.BigDate
+	}
+
+
+};
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.Dom.js b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.Dom.js
new file mode 100644
index 0000000000000000000000000000000000000000..f2821fef58cc8ab6562f88d48056dee8c0aa9e94
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.Dom.js
@@ -0,0 +1,87 @@
+/*	TL.Dom
+	Utilities for working with the DOM
+================================================== */
+
+TL.Dom = {
+
+	get: function(id) {
+		return (typeof id === 'string' ? document.getElementById(id) : id);
+	},
+
+	getByClass: function(id) {
+		if (id) {
+			return document.getElementsByClassName(id);
+		}
+	},
+
+	create: function(tagName, className, container) {
+		var el = document.createElement(tagName);
+		el.className = className;
+		if (container) {
+			container.appendChild(el);
+		}
+		return el;
+	},
+
+	createText: function(content, container) {
+		var el = document.createTextNode(content);
+		if (container) {
+			container.appendChild(el);
+		}
+		return el;
+	},
+
+	getTranslateString: function (point) {
+		return TL.Dom.TRANSLATE_OPEN +
+				point.x + 'px,' + point.y + 'px' +
+				TL.Dom.TRANSLATE_CLOSE;
+	},
+
+	setPosition: function (el, point) {
+		el._tl_pos = point;
+		if (TL.Browser.webkit3d) {
+			el.style[TL.Dom.TRANSFORM] =  TL.Dom.getTranslateString(point);
+
+			if (TL.Browser.android) {
+				el.style['-webkit-perspective'] = '1000';
+				el.style['-webkit-backface-visibility'] = 'hidden';
+			}
+		} else {
+			el.style.left = point.x + 'px';
+			el.style.top = point.y + 'px';
+		}
+	},
+
+	getPosition: function(el){
+	    var pos = {
+	    	x: 0,
+			y: 0
+	    }
+	    while( el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) {
+	        pos.x += el.offsetLeft// - el.scrollLeft;
+	        pos.y += el.offsetTop// - el.scrollTop;
+	        el = el.offsetParent;
+	    }
+	    return pos;
+	},
+
+	testProp: function(props) {
+		var style = document.documentElement.style;
+
+		for (var i = 0; i < props.length; i++) {
+			if (props[i] in style) {
+				return props[i];
+			}
+		}
+		return false;
+	}
+
+};
+
+TL.Util.mergeData(TL.Dom, {
+	TRANSITION: TL.Dom.testProp(['transition', 'webkitTransition', 'OTransition', 'MozTransition', 'msTransition']),
+	TRANSFORM: TL.Dom.testProp(['transformProperty', 'WebkitTransform', 'OTransform', 'MozTransform', 'msTransform']),
+
+	TRANSLATE_OPEN: 'translate' + (TL.Browser.webkit3d ? '3d(' : '('),
+	TRANSLATE_CLOSE: TL.Browser.webkit3d ? ',0)' : ')'
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomEvent.js b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomEvent.js
new file mode 100644
index 0000000000000000000000000000000000000000..69fb8bba4d72e3e45f8c8fd068bb623d8730f566
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomEvent.js
@@ -0,0 +1,149 @@
+/*	TL.DomEvent
+	Inspired by Leaflet 
+	DomEvent contains functions for working with DOM events.
+================================================== */
+// TODO stamp
+
+TL.DomEvent = {
+	/* inpired by John Resig, Dean Edwards and YUI addEvent implementations */
+	addListener: function (/*HTMLElement*/ obj, /*String*/ type, /*Function*/ fn, /*Object*/ context) {
+		var id = TL.Util.stamp(fn),
+			key = '_tl_' + type + id;
+
+		if (obj[key]) {
+			return;
+		}
+
+		var handler = function (e) {
+			return fn.call(context || obj, e || TL.DomEvent._getEvent());
+		};
+
+		if (TL.Browser.touch && (type === 'dblclick') && this.addDoubleTapListener) {
+			this.addDoubleTapListener(obj, handler, id);
+		} else if ('addEventListener' in obj) {
+			if (type === 'mousewheel') {
+				obj.addEventListener('DOMMouseScroll', handler, false);
+				obj.addEventListener(type, handler, false);
+			} else if ((type === 'mouseenter') || (type === 'mouseleave')) {
+				var originalHandler = handler,
+					newType = (type === 'mouseenter' ? 'mouseover' : 'mouseout');
+				handler = function (e) {
+					if (!TL.DomEvent._checkMouse(obj, e)) {
+						return;
+					}
+					return originalHandler(e);
+				};
+				obj.addEventListener(newType, handler, false);
+			} else {
+				obj.addEventListener(type, handler, false);
+			}
+		} else if ('attachEvent' in obj) {
+			obj.attachEvent("on" + type, handler);
+		}
+
+		obj[key] = handler;
+	},
+
+	removeListener: function (/*HTMLElement*/ obj, /*String*/ type, /*Function*/ fn) {
+		var id = TL.Util.stamp(fn),
+			key = '_tl_' + type + id,
+			handler = obj[key];
+
+		if (!handler) {
+			return;
+		}
+
+		if (TL.Browser.touch && (type === 'dblclick') && this.removeDoubleTapListener) {
+			this.removeDoubleTapListener(obj, id);
+		} else if ('removeEventListener' in obj) {
+			if (type === 'mousewheel') {
+				obj.removeEventListener('DOMMouseScroll', handler, false);
+				obj.removeEventListener(type, handler, false);
+			} else if ((type === 'mouseenter') || (type === 'mouseleave')) {
+				obj.removeEventListener((type === 'mouseenter' ? 'mouseover' : 'mouseout'), handler, false);
+			} else {
+				obj.removeEventListener(type, handler, false);
+			}
+		} else if ('detachEvent' in obj) {
+			obj.detachEvent("on" + type, handler);
+		}
+		obj[key] = null;
+	},
+
+	_checkMouse: function (el, e) {
+		var related = e.relatedTarget;
+
+		if (!related) {
+			return true;
+		}
+
+		try {
+			while (related && (related !== el)) {
+				related = related.parentNode;
+			}
+		} catch (err) {
+			return false;
+		}
+
+		return (related !== el);
+	},
+
+	/*jshint noarg:false */ // evil magic for IE
+	_getEvent: function () {
+		var e = window.event;
+		if (!e) {
+			var caller = arguments.callee.caller;
+			while (caller) {
+				e = caller['arguments'][0];
+				if (e && window.Event === e.constructor) {
+					break;
+				}
+				caller = caller.caller;
+			}
+		}
+		return e;
+	},
+	/*jshint noarg:false */
+
+	stopPropagation: function (/*Event*/ e) {
+		if (e.stopPropagation) {
+			e.stopPropagation();
+		} else {
+			e.cancelBubble = true;
+		}
+	},
+	
+	// TODO TL.Draggable.START
+	disableClickPropagation: function (/*HTMLElement*/ el) {
+		TL.DomEvent.addListener(el, TL.Draggable.START, TL.DomEvent.stopPropagation);
+		TL.DomEvent.addListener(el, 'click', TL.DomEvent.stopPropagation);
+		TL.DomEvent.addListener(el, 'dblclick', TL.DomEvent.stopPropagation);
+	},
+
+	preventDefault: function (/*Event*/ e) {
+		if (e.preventDefault) {
+			e.preventDefault();
+		} else {
+			e.returnValue = false;
+		}
+	},
+
+	stop: function (e) {
+		TL.DomEvent.preventDefault(e);
+		TL.DomEvent.stopPropagation(e);
+	},
+
+
+	getWheelDelta: function (e) {
+		var delta = 0;
+		if (e.wheelDelta) {
+			delta = e.wheelDelta / 120;
+		}
+		if (e.detail) {
+			delta = -e.detail / 3;
+		}
+		return delta;
+	}
+};
+
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomMixins.js b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomMixins.js
new file mode 100644
index 0000000000000000000000000000000000000000..f6d5dfbe5bc94c9f08844a7f7ad4a0ab3a8ed1f5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomMixins.js
@@ -0,0 +1,89 @@
+/*	TL.DomMixins
+	DOM methods used regularly
+	Assumes there is a _el.container and animator
+================================================== */
+TL.DomMixins = {
+	
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function(animate) {
+		if (animate) {
+			/*
+			this.animator = TL.Animate(this._el.container, {
+				left: 		-(this._el.container.offsetWidth * n) + "px",
+				duration: 	this.options.duration,
+				easing: 	this.options.ease
+			});
+			*/
+		} else {
+			this._el.container.style.display = "block";
+		}
+	},
+	
+	hide: function(animate) {
+		this._el.container.style.display = "none";
+	},
+	
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+		this.onAdd();
+	},
+	
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+		this.onRemove();
+	},
+	
+	/*	Animate to Position
+	================================================== */
+	animatePosition: function(pos, el) {
+		var ani = {
+			duration: 	this.options.duration,
+			easing: 	this.options.ease
+		};
+		for (var name in pos) {
+			if (pos.hasOwnProperty(name)) {
+				ani[name] = pos[name] + "px";
+			}
+		}
+		
+		if (this.animator) {
+			this.animator.stop();
+		}
+		this.animator = TL.Animate(el, ani);
+	},
+	
+	/*	Events
+	================================================== */
+	
+	onLoaded: function() {
+		this.fire("loaded", this.data);
+	},
+	
+	onAdd: function() {
+		this.fire("added", this.data);
+	},
+
+	onRemove: function() {
+		this.fire("removed", this.data);
+	},
+	
+	/*	Set the Position
+	================================================== */
+	setPosition: function(pos, el) {
+		for (var name in pos) {
+			if (pos.hasOwnProperty(name)) {
+				if (el) {
+					el.style[name] = pos[name] + "px";
+				} else {
+					this._el.container.style[name] = pos[name] + "px";
+				};
+			}
+		}
+	},
+	
+	getPosition: function() {
+		return TL.Dom.getPosition(this._el.container);
+	}
+	
+};
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomUtil.js b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomUtil.js
new file mode 100644
index 0000000000000000000000000000000000000000..c7ce370782342d2398d5b08fb53ac8cadd94c68e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.DomUtil.js
@@ -0,0 +1,154 @@
+/*	TL.DomUtil
+	Inspired by Leaflet
+	TL.DomUtil contains various utility functions for working with DOM
+================================================== */
+
+
+TL.DomUtil = {
+	get: function (id) {
+		return (typeof id === 'string' ? document.getElementById(id) : id);
+	},
+
+	getStyle: function (el, style) {
+		var value = el.style[style];
+		if (!value && el.currentStyle) {
+			value = el.currentStyle[style];
+		}
+		if (!value || value === 'auto') {
+			var css = document.defaultView.getComputedStyle(el, null);
+			value = css ? css[style] : null;
+		}
+		return (value === 'auto' ? null : value);
+	},
+
+	getViewportOffset: function (element) {
+		var top = 0,
+			left = 0,
+			el = element,
+			docBody = document.body;
+
+		do {
+			top += el.offsetTop || 0;
+			left += el.offsetLeft || 0;
+
+			if (el.offsetParent === docBody &&
+					TL.DomUtil.getStyle(el, 'position') === 'absolute') {
+				break;
+			}
+			el = el.offsetParent;
+		} while (el);
+
+		el = element;
+
+		do {
+			if (el === docBody) {
+				break;
+			}
+
+			top -= el.scrollTop || 0;
+			left -= el.scrollLeft || 0;
+
+			el = el.parentNode;
+		} while (el);
+
+		return new TL.Point(left, top);
+	},
+
+	create: function (tagName, className, container) {
+		var el = document.createElement(tagName);
+		el.className = className;
+		if (container) {
+			container.appendChild(el);
+		}
+		return el;
+	},
+
+	disableTextSelection: function () {
+		if (document.selection && document.selection.empty) {
+			document.selection.empty();
+		}
+		if (!this._onselectstart) {
+			this._onselectstart = document.onselectstart;
+			document.onselectstart = TL.Util.falseFn;
+		}
+	},
+
+	enableTextSelection: function () {
+		document.onselectstart = this._onselectstart;
+		this._onselectstart = null;
+	},
+
+	hasClass: function (el, name) {
+		return (el.className.length > 0) &&
+				new RegExp("(^|\\s)" + name + "(\\s|$)").test(el.className);
+	},
+
+	addClass: function (el, name) {
+		if (!TL.DomUtil.hasClass(el, name)) {
+			el.className += (el.className ? ' ' : '') + name;
+		}
+	},
+
+	removeClass: function (el, name) {
+		el.className = el.className.replace(/(\S+)\s*/g, function (w, match) {
+			if (match === name) {
+				return '';
+			}
+			return w;
+		}).replace(/^\s+/, '');
+	},
+
+	setOpacity: function (el, value) {
+		if (TL.Browser.ie) {
+			el.style.filter = 'alpha(opacity=' + Math.round(value * 100) + ')';
+		} else {
+			el.style.opacity = value;
+		}
+	},
+
+
+	testProp: function (props) {
+		var style = document.documentElement.style;
+
+		for (var i = 0; i < props.length; i++) {
+			if (props[i] in style) {
+				return props[i];
+			}
+		}
+		return false;
+	},
+
+	getTranslateString: function (point) {
+
+		return TL.DomUtil.TRANSLATE_OPEN +
+				point.x + 'px,' + point.y + 'px' +
+				TL.DomUtil.TRANSLATE_CLOSE;
+	},
+
+	getScaleString: function (scale, origin) {
+		var preTranslateStr = TL.DomUtil.getTranslateString(origin),
+			scaleStr = ' scale(' + scale + ') ',
+			postTranslateStr = TL.DomUtil.getTranslateString(origin.multiplyBy(-1));
+
+		return preTranslateStr + scaleStr + postTranslateStr;
+	},
+
+	setPosition: function (el, point) {
+		el._tl_pos = point;
+		if (TL.Browser.webkit3d) {
+			el.style[TL.DomUtil.TRANSFORM] =  TL.DomUtil.getTranslateString(point);
+
+			if (TL.Browser.android) {
+				el.style['-webkit-perspective'] = '1000';
+				el.style['-webkit-backface-visibility'] = 'hidden';
+			}
+		} else {
+			el.style.left = point.x + 'px';
+			el.style.top = point.y + 'px';
+		}
+	},
+
+	getPosition: function (el) {
+		return el._tl_pos;
+	}
+};
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.Point.js b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.Point.js
new file mode 100644
index 0000000000000000000000000000000000000000..61bad9de2d70d74a93c2fe6c3ae1e189ad4ddc6b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.Point.js
@@ -0,0 +1,67 @@
+/*	TL.Point
+	Inspired by Leaflet
+	TL.Point represents a point with x and y coordinates.
+================================================== */
+
+TL.Point = function (/*Number*/ x, /*Number*/ y, /*Boolean*/ round) {
+	this.x = (round ? Math.round(x) : x);
+	this.y = (round ? Math.round(y) : y);
+};
+
+TL.Point.prototype = {
+	add: function (point) {
+		return this.clone()._add(point);
+	},
+
+	_add: function (point) {
+		this.x += point.x;
+		this.y += point.y;
+		return this;
+	},
+
+	subtract: function (point) {
+		return this.clone()._subtract(point);
+	},
+
+	// destructive subtract (faster)
+	_subtract: function (point) {
+		this.x -= point.x;
+		this.y -= point.y;
+		return this;
+	},
+
+	divideBy: function (num, round) {
+		return new TL.Point(this.x / num, this.y / num, round);
+	},
+
+	multiplyBy: function (num) {
+		return new TL.Point(this.x * num, this.y * num);
+	},
+
+	distanceTo: function (point) {
+		var x = point.x - this.x,
+			y = point.y - this.y;
+		return Math.sqrt(x * x + y * y);
+	},
+
+	round: function () {
+		return this.clone()._round();
+	},
+
+	// destructive round
+	_round: function () {
+		this.x = Math.round(this.x);
+		this.y = Math.round(this.y);
+		return this;
+	},
+
+	clone: function () {
+		return new TL.Point(this.x, this.y);
+	},
+
+	toString: function () {
+		return 'Point(' +
+				TL.Util.formatNum(this.x) + ', ' +
+				TL.Util.formatNum(this.y) + ')';
+	}
+};
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.StyleSheet.js b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.StyleSheet.js
new file mode 100644
index 0000000000000000000000000000000000000000..bde1462276fb5e90e7c0ad4c2517aad1bef3f4d2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/dom/TL.StyleSheet.js
@@ -0,0 +1,50 @@
+/*	TL.StyleSheet
+	Style Sheet Object
+================================================== */
+
+TL.StyleSheet = TL.Class.extend({
+	
+	includes: [TL.Events],
+	
+	_el: {},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function() {
+		// Borrowed from: http://davidwalsh.name/add-rules-stylesheets
+		this.style = document.createElement("style");
+		
+		// WebKit hack :(
+		this.style.appendChild(document.createTextNode(""));
+		
+		// Add the <style> element to the page
+		document.head.appendChild(this.style);
+		
+		this.sheet = this.style.sheet;
+		
+	},
+	
+	addRule: function(selector, rules, index) {
+		var _index = 0;
+		
+		if (index) {
+			_index = index;
+		}
+		
+		if("insertRule" in this.sheet) {
+			this.sheet.insertRule(selector + "{" + rules + "}", _index);
+		}
+		else if("addRule" in this.sheet) {
+			this.sheet.addRule(selector, rules, _index);
+		}
+	},
+	
+
+	/*	Events
+	================================================== */
+	onLoaded: function(error) {
+		this._state.loaded = true;
+		this.fire("loaded", this.data);
+	}
+	
+});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.CDN.js b/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.CDN.js
new file mode 100644
index 0000000000000000000000000000000000000000..173042fbbb04a034a76a8ae6bc6f0588002f7050
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.CDN.js
@@ -0,0 +1,70 @@
+/* Embed.CDN
+  Extend the basic 'embed' functionality with Google Analytics tracking and url parsing to support URLs created with the Timeline generator form.
+*/
+
+/*  CodeKit Import
+  https://incident57.com/codekit/
+================================================== */
+// @codekit-append "Embed.js";
+
+/* REPLACE THIS WITH YOUR GOOGLE ANALYTICS ACCOUNT
+================================================== */
+var embed_analytics = "UA-537357-20";
+
+/* REPLACE THIS WITH YOUR BASE PATH FOR TIMELINE
+================================================== */
+//var embed_path = "https://cdn.knightlab.com/libs/timeline3/latest/embed/";
+
+/* LOAD TIMER
+================================================== */
+var load_time_start = new Date().getTime(), the_load_time = 0;
+
+/* GOOGLE ANALYTICS
+================================================== */
+var _gaq = _gaq || [];
+
+
+(function() {
+  var ga = document.createElement('script'), s = document.getElementsByTagName('script')[0];
+  ga.type = 'text/javascript';
+  ga.async = true;
+  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+  s.parentNode.insertBefore(ga, s);
+
+  _gaq.push(['_setAccount', embed_analytics]);
+  _gaq.push(['_trackPageview']);
+
+})();
+
+/* TIMELINE CDN SPECIFIC
+================================================== */
+var getUrlVars = function() {
+  var varobj = {}, url_vars = [], uv ;
+
+  //url_vars = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
+  url_vars = window.location.href.slice(window.location.href.indexOf('?') + 1);
+
+  if (url_vars.match('#')) {
+    url_vars = url_vars.split('#')[0];
+  }
+  url_vars = url_vars.split('&');
+
+  for(var i = 0; i < url_vars.length; i++) {
+    uv = url_vars[i].split('=');
+    varobj[uv[0]] = uv[1];
+  }
+
+  return varobj;
+};
+
+var onHeadline = function(e, headline) {
+  var the_page_title = "/" + headline,
+    the_page_url  = location.href;
+
+  document.title = headline;
+  the_load_time = Math.floor((new Date().getTime() - load_time_start)/100)/10;
+  _gaq.push(['_trackEvent', 'Timeline', headline, the_page_url, the_load_time]);
+
+};
+
+var url_config = getUrlVars();
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.LoadLib.js b/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.LoadLib.js
new file mode 100644
index 0000000000000000000000000000000000000000..f039cf169fc663fc4c4e7192b5d992680413f840
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.LoadLib.js
@@ -0,0 +1,50 @@
+/*
+	LoadLib
+	Designed and built by Zach Wise http://zachwise.com/
+	Extends LazyLoad
+*/
+
+/*	* CodeKit Import
+	* https://incident57.com/codekit/
+================================================== */
+// @codekit-prepend "LazyLoad.js";
+
+LoadLib = (function (doc) {
+	var loaded	= [];
+	
+	function isLoaded(url) {
+		
+		var i			= 0,
+			has_loaded	= false;
+			
+		for (i = 0; i < loaded.length; i++) {
+			if (loaded[i] == url) {
+				has_loaded = true;
+			}
+		}
+		
+		if (has_loaded) {
+			return true;
+		} else {
+			loaded.push(url);
+			return false;
+		}
+		
+	}
+	
+	return {
+		
+		css: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				LazyLoad.css(urls, callback, obj, context);
+			}
+		},
+
+		js: function (urls, callback, obj, context) {
+			if (!isLoaded(urls)) {
+				LazyLoad.js(urls, callback, obj, context);
+			}
+		}
+    };
+	
+})(this.document);
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.js b/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.js
new file mode 100644
index 0000000000000000000000000000000000000000..a5cf359b5a24015c27f47a521526b30a014d1906
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/embed/Embed.js
@@ -0,0 +1,262 @@
+//StoryJS Embed Loader
+// Provide a bootstrap method for instantiating a timeline. On page load, check the definition of these window scoped variables in this order: [url_config, timeline_config, storyjs_config, config]. As soon as one of these is found to be defined with type 'object,' it will be used to automatically instantiate a timeline.
+
+/*  CodeKit Import
+  https://incident57.com/codekit/
+================================================== */
+// @codekit-prepend "Embed.LoadLib.js";
+
+if(typeof embed_path == 'undefined') {
+  // REPLACE WITH YOUR BASEPATH IF YOU WANT OTHERWISE IT WILL TRY AND FIGURE IT OUT
+  var _tmp_script_path = getEmbedScriptPath("timeline-embed.js");
+  var embed_path = _tmp_script_path.substr(0,_tmp_script_path.lastIndexOf('js/'))
+}
+
+function getEmbedScriptPath(scriptname) {
+  var scriptTags = document.getElementsByTagName('script'),
+    script_path = "",
+    script_path_end = "";
+  for(var i = 0; i < scriptTags.length; i++) {
+    if (scriptTags[i].src.match(scriptname)) {
+      script_path = scriptTags[i].src;
+    }
+  }
+  if (script_path != "") {
+    script_path_end = "/"
+  }
+  return script_path.split('?')[0].split('/').slice(0, -1).join('/') + script_path_end;
+}
+
+/* CHECK TO SEE IF A CONFIG IS ALREADY DEFINED (FOR EASY EMBED)
+================================================== */
+(function() {
+  if (typeof url_config == 'object') {
+    createStoryJS(url_config);
+  } else if (typeof timeline_config == 'object') {
+    createStoryJS(timeline_config);
+  } else if (typeof storyjs_config == 'object') {
+    createStoryJS(storyjs_config);
+  } else if (typeof config == 'object') {
+    createStoryJS(config);
+  } else {
+    // No existing config. Call createStoryJS(your_config) manually with a config
+  }
+})();
+
+/* CREATE StoryJS Embed
+================================================== */
+function createStoryJS(c, src) {
+  /* VARS
+  ================================================== */
+  var storyjs_embedjs, t, te, x,
+    isCDN         = false,
+    js_version        = "2.24",
+    ready = {
+      timeout:  "",
+      checks:   0,
+      finished: false,
+      js:     false,
+      css:    false,
+      font: {
+        css:  false
+      }
+    },
+    path = {
+      base:   embed_path,
+      css:    embed_path + "css/",
+      js:     embed_path + "js/",
+      font: {
+        google: false,
+        css:  embed_path + "css/fonts/",
+        js:   "//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"
+      }
+    },
+    storyjs_e_config = {
+      version:  js_version,
+      debug:    false,
+      type:   'timeline',
+      id:     'storyjs',
+      embed_id: 'timeline-embed',
+      is_embed:   true,
+      width:    '100%',
+      height:   '100%',
+      source:   'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html',
+      lang:   'en',
+      font:   'default',
+      start_at_end: false,
+      timenav_position: 'bottom',
+      css:    path.css + 'timeline.css?'+js_version,
+      js:     '',
+      api_keys: {
+        google:       "",
+        flickr:       "",
+        twitter:      ""
+      },
+      gmap_key:   ""
+    }
+  /* BUILD CONFIG
+  ================================================== */
+  if (typeof c == 'object') {
+    for (x in c) {
+      if (Object.prototype.hasOwnProperty.call(c, x)) {
+        storyjs_e_config[x] = c[x];
+      }
+    }
+  }
+
+  if (typeof src != 'undefined') {
+    storyjs_e_config.source = src;
+  }
+
+  /* CDN VERSION?
+  ================================================== */
+  if (typeof url_config == 'object') {
+    isCDN = true;
+
+    /* IS THE SOURCE GOOGLE SPREADSHEET WITH JUST THE KEY?
+    ================================================== */
+    if (storyjs_e_config.source.match("docs.google.com") || storyjs_e_config.source.match("json") || storyjs_e_config.source.match("storify") ) {
+
+    } else {
+      storyjs_e_config.source = "https://docs.google.com/spreadsheet/pub?key=" + storyjs_e_config.source + "&output=html";
+    }
+
+  }
+
+  /* DETERMINE TYPE
+  ================================================== */
+  if (storyjs_e_config.js.match("/")) {
+
+  } else {
+    storyjs_e_config.css  = path.css + storyjs_e_config.type + ".css?" + js_version;
+
+    // Use unminified js file if in debug mode
+    storyjs_e_config.js   = path.js  + storyjs_e_config.type;
+    if (storyjs_e_config.debug) {
+      storyjs_e_config.js += ".js?"  + js_version;
+    } else {
+      storyjs_e_config.js += "-min.js?"  + js_version;
+    }
+
+    storyjs_e_config.id   = "storyjs-" + storyjs_e_config.type;
+  }
+
+  /* PREPARE
+  ================================================== */
+  createEmbedDiv();
+
+  /* Load CSS
+  ================================================== */
+  LoadLib.css(storyjs_e_config.css, onloaded_css);
+
+  /* Load FONT
+  ================================================== */
+  if (storyjs_e_config.font == "default") {
+    ready.font.css    = true;
+  } else {
+    // FONT CSS
+    var fn;
+    if (storyjs_e_config.font.match("/")) {
+      fn        = storyjs_e_config.font.split(".css")[0].split("/");
+      path.font.name  = fn[fn.length -1];
+      path.font.css = storyjs_e_config.font;
+    } else {
+      path.font.name  = storyjs_e_config.font;
+      path.font.css = path.font.css + "font."+storyjs_e_config.font.toLowerCase()+".css?" + js_version;
+    }
+    LoadLib.css(path.font.css, onloaded_font_css);
+  }
+    LoadLib.js(storyjs_e_config.js, onloaded_js);
+
+  /* On Loaded
+  ================================================== */
+
+  function onloaded_js() {
+    ready.js = true;
+    onloaded_check();
+  }
+
+  function onloaded_css() {
+    ready.css = true;
+    onloaded_check();
+  }
+  function onloaded_font_css() {
+    ready.font.css = true;
+    onloaded_check();
+  }
+  function onloaded_check() {
+    if (ready.checks > 40) {
+      return;
+      alert("Error Loading Files");
+    } else {
+      ready.checks++;
+      if (ready.js && ready.css && ready.font.css) {
+        if (!ready.finished) {
+          ready.finished = true;
+          buildEmbed();
+        }
+      } else {
+        ready.timeout = setTimeout('onloaded_check_again();', 250);
+      }
+    }
+  };
+  this.onloaded_check_again = function() {
+    onloaded_check();
+  };
+
+  /* Build Timeline
+  ================================================== */
+  function createEmbedDiv() {
+    var embed_classname = "tl-timeline-embed";
+
+    t = document.createElement('div');
+
+    if (storyjs_e_config.embed_id != "") {
+      te = document.getElementById(storyjs_e_config.embed_id);
+    } else {
+      te = document.getElementById("timeline-embed");
+    }
+
+    te.appendChild(t);
+    t.setAttribute("id", storyjs_e_config.id);
+
+    if (storyjs_e_config.width.toString().match("%") ) {
+      te.style.width = storyjs_e_config.width.split("%")[0] + "%";
+    } else {
+      storyjs_e_config.width = storyjs_e_config.width - 2;
+      te.style.width = (storyjs_e_config.width) + 'px';
+    }
+
+    if (storyjs_e_config.height.toString().match("%")) {
+      te.style.height = storyjs_e_config.height;
+      embed_classname += " tl-timeline-full-embed";
+      te.style.height = storyjs_e_config.height.split("%")[0] + "%";
+
+    } else if (storyjs_e_config.width.toString().match("%")) {
+      embed_classname += " tl-timeline-full-embed";
+      storyjs_e_config.height = storyjs_e_config.height - 16;
+      te.style.height = (storyjs_e_config.height) + 'px';
+    }else {
+      embed_classname += " sized-embed";
+      storyjs_e_config.height = storyjs_e_config.height - 16;
+      te.style.height = (storyjs_e_config.height) + 'px';
+    }
+
+    te.setAttribute("class", embed_classname);
+    te.setAttribute("className", embed_classname);
+    t.style.position = 'relative';
+  }
+
+  function buildEmbed() {
+    TL.debug = storyjs_e_config.debug;
+
+    storyjs_e_config['ga_property_id'] = 'UA-27829802-4';
+    storyjs_e_config.language = storyjs_e_config.lang;
+    if (storyjs_e_config.width == '100%') {
+      storyjs_e_config.is_full_embed = true;
+    }
+    window.timeline = new TL.Timeline('timeline-embed', storyjs_e_config.source, storyjs_e_config);
+
+  }
+
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/embed/LazyLoad.js b/public/opac/TimelineJS3-3.5.1/source/js/embed/LazyLoad.js
new file mode 100644
index 0000000000000000000000000000000000000000..b03d815e26cdb722720065c8814e45b059f1cc65
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/embed/LazyLoad.js
@@ -0,0 +1,391 @@
+/*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false */
+
+/*
+LazyLoad makes it easy and painless to lazily load one or more external
+JavaScript or CSS files on demand either during or after the rendering of a web
+page.
+
+Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile
+Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and
+are not officially supported.
+
+Visit https://github.com/rgrove/lazyload/ for more info.
+
+Copyright (c) 2011 Ryan Grove <ryan@wonko.com>
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the 'Software'), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+@module lazyload
+@class LazyLoad
+@static
+@version 2.0.3 (git)
+*/
+
+LazyLoad = (function (doc) {
+  // -- Private Variables ------------------------------------------------------
+
+  // User agent and feature test information.
+  var env,
+
+  // Reference to the <head> element (populated lazily).
+  head,
+
+  // Requests currently in progress, if any.
+  pending = {},
+
+  // Number of times we've polled to check whether a pending stylesheet has
+  // finished loading. If this gets too high, we're probably stalled.
+  pollCount = 0,
+
+  // Queued requests.
+  queue = {css: [], js: []},
+
+  // Reference to the browser's list of stylesheets.
+  styleSheets = doc.styleSheets;
+
+  // -- Private Methods --------------------------------------------------------
+
+  /**
+  Creates and returns an HTML element with the specified name and attributes.
+
+  @method createNode
+  @param {String} name element name
+  @param {Object} attrs name/value mapping of element attributes
+  @return {HTMLElement}
+  @private
+  */
+  function createNode(name, attrs) {
+    var node = doc.createElement(name), attr;
+
+    for (attr in attrs) {
+      if (attrs.hasOwnProperty(attr)) {
+        node.setAttribute(attr, attrs[attr]);
+      }
+    }
+
+    return node;
+  }
+
+  /**
+  Called when the current pending resource of the specified type has finished
+  loading. Executes the associated callback (if any) and loads the next
+  resource in the queue.
+
+  @method finish
+  @param {String} type resource type ('css' or 'js')
+  @private
+  */
+  function finish(type) {
+    var p = pending[type],
+        callback,
+        urls;
+
+    if (p) {
+      callback = p.callback;
+      urls     = p.urls;
+
+      urls.shift();
+      pollCount = 0;
+
+      // If this is the last of the pending URLs, execute the callback and
+      // start the next request in the queue (if any).
+      if (!urls.length) {
+        callback && callback.call(p.context, p.obj);
+        pending[type] = null;
+        queue[type].length && load(type);
+      }
+    }
+  }
+
+  /**
+  Populates the <code>env</code> variable with user agent and feature test
+  information.
+
+  @method getEnv
+  @private
+  */
+  function getEnv() {
+    var ua = navigator.userAgent;
+
+    env = {
+      // True if this browser supports disabling async mode on dynamically
+      // created script nodes. See
+      // http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order
+      async: doc.createElement('script').async === true
+    };
+
+    (env.webkit = /AppleWebKit\//.test(ua))
+      || (env.ie = /MSIE/.test(ua))
+      || (env.opera = /Opera/.test(ua))
+      || (env.gecko = /Gecko\//.test(ua))
+      || (env.unknown = true);
+  }
+
+  /**
+  Loads the specified resources, or the next resource of the specified type
+  in the queue if no resources are specified. If a resource of the specified
+  type is already being loaded, the new request will be queued until the
+  first request has been finished.
+
+  When an array of resource URLs is specified, those URLs will be loaded in
+  parallel if it is possible to do so while preserving execution order. All
+  browsers support parallel loading of CSS, but only Firefox and Opera
+  support parallel loading of scripts. In other browsers, scripts will be
+  queued and loaded one at a time to ensure correct execution order.
+
+  @method load
+  @param {String} type resource type ('css' or 'js')
+  @param {String|Array} urls (optional) URL or array of URLs to load
+  @param {Function} callback (optional) callback function to execute when the
+    resource is loaded
+  @param {Object} obj (optional) object to pass to the callback function
+  @param {Object} context (optional) if provided, the callback function will
+    be executed in this object's context
+  @private
+  */
+  function load(type, urls, callback, obj, context) {
+    var _finish = function () { finish(type); },
+        isCSS   = type === 'css',
+        nodes   = [],
+        i, len, node, p, pendingUrls, url;
+
+    env || getEnv();
+
+    if (urls) {
+      // If urls is a string, wrap it in an array. Otherwise assume it's an
+      // array and create a copy of it so modifications won't be made to the
+      // original.
+      urls = typeof urls === 'string' ? [urls] : urls.concat();
+
+      // Create a request object for each URL. If multiple URLs are specified,
+      // the callback will only be executed after all URLs have been loaded.
+      //
+      // Sadly, Firefox and Opera are the only browsers capable of loading
+      // scripts in parallel while preserving execution order. In all other
+      // browsers, scripts must be loaded sequentially.
+      //
+      // All browsers respect CSS specificity based on the order of the link
+      // elements in the DOM, regardless of the order in which the stylesheets
+      // are actually downloaded.
+      if (isCSS || env.async || env.gecko || env.opera) {
+        // Load in parallel.
+        queue[type].push({
+          urls    : urls,
+          callback: callback,
+          obj     : obj,
+          context : context
+        });
+      } else {
+        // Load sequentially.
+        for (i = 0, len = urls.length; i < len; ++i) {
+          queue[type].push({
+            urls    : [urls[i]],
+            callback: i === len - 1 ? callback : null, // callback is only added to the last URL
+            obj     : obj,
+            context : context
+          });
+        }
+      }
+    }
+
+    // If a previous load request of this type is currently in progress, we'll
+    // wait our turn. Otherwise, grab the next item in the queue.
+    if (pending[type] || !(p = pending[type] = queue[type].shift())) {
+      return;
+    }
+
+    head || (head = doc.head || doc.getElementsByTagName('head')[0]);
+    pendingUrls = p.urls;
+
+    for (i = 0, len = pendingUrls.length; i < len; ++i) {
+      url = pendingUrls[i];
+
+      if (isCSS) {
+          node = env.gecko ? createNode('style') : createNode('link', {
+            href: url,
+            rel : 'stylesheet'
+          });
+      } else {
+        node = createNode('script', {src: url});
+        node.async = false;
+      }
+
+      node.className = 'lazyload';
+      node.setAttribute('charset', 'utf-8');
+
+      if (env.ie && !isCSS) {
+        node.onreadystatechange = function () {
+          if (/loaded|complete/.test(node.readyState)) {
+            node.onreadystatechange = null;
+            _finish();
+          }
+        };
+      } else if (isCSS && (env.gecko || env.webkit)) {
+        // Gecko and WebKit don't support the onload event on link nodes.
+        if (env.webkit) {
+          // In WebKit, we can poll for changes to document.styleSheets to
+          // figure out when stylesheets have loaded.
+          p.urls[i] = node.href; // resolve relative URLs (or polling won't work)
+          pollWebKit();
+        } else {
+          // In Gecko, we can import the requested URL into a <style> node and
+          // poll for the existence of node.sheet.cssRules. Props to Zach
+          // Leatherman for calling my attention to this technique.
+          node.innerHTML = '@import "' + url + '";';
+          pollGecko(node);
+        }
+      } else {
+        node.onload = node.onerror = _finish;
+      }
+
+      nodes.push(node);
+    }
+
+    for (i = 0, len = nodes.length; i < len; ++i) {
+      head.appendChild(nodes[i]);
+    }
+  }
+
+  /**
+  Begins polling to determine when the specified stylesheet has finished loading
+  in Gecko. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  Thanks to Zach Leatherman for calling my attention to the @import-based
+  cross-domain technique used here, and to Oleg Slobodskoi for an earlier
+  same-domain implementation. See Zach's blog for more details:
+  http://www.zachleat.com/web/2010/07/29/load-css-dynamically/
+
+  @method pollGecko
+  @param {HTMLElement} node Style node to poll.
+  @private
+  */
+  function pollGecko(node) {
+    var hasRules;
+
+    try {
+      // We don't really need to store this value or ever refer to it again, but
+      // if we don't store it, Closure Compiler assumes the code is useless and
+      // removes it.
+      hasRules = !!node.sheet.cssRules;
+    } catch (ex) {
+      // An exception means the stylesheet is still loading.
+      pollCount += 1;
+
+      if (pollCount < 200) {
+        setTimeout(function () { pollGecko(node); }, 50);
+      } else {
+        // We've been polling for 10 seconds and nothing's happened. Stop
+        // polling and finish the pending requests to avoid blocking further
+        // requests.
+        hasRules && finish('css');
+      }
+
+      return;
+    }
+
+    // If we get here, the stylesheet has loaded.
+    finish('css');
+  }
+
+  /**
+  Begins polling to determine when pending stylesheets have finished loading
+  in WebKit. Polling stops when all pending stylesheets have loaded or after 10
+  seconds (to prevent stalls).
+
+  @method pollWebKit
+  @private
+  */
+  function pollWebKit() {
+    var css = pending.css, i;
+
+    if (css) {
+      i = styleSheets.length;
+
+      // Look for a stylesheet matching the pending URL.
+      while (--i >= 0) {
+        if (styleSheets[i].href === css.urls[0]) {
+          finish('css');
+          break;
+        }
+      }
+
+      pollCount += 1;
+
+      if (css) {
+        if (pollCount < 200) {
+          setTimeout(pollWebKit, 50);
+        } else {
+          // We've been polling for 10 seconds and nothing's happened, which may
+          // indicate that the stylesheet has been removed from the document
+          // before it had a chance to load. Stop polling and finish the pending
+          // request to prevent blocking further requests.
+          finish('css');
+        }
+      }
+    }
+  }
+
+  return {
+
+    /**
+    Requests the specified CSS URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified, the stylesheets will be loaded in parallel and the callback
+    will be executed after all stylesheets have finished loading.
+
+    @method css
+    @param {String|Array} urls CSS URL or array of CSS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified stylesheets are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    css: function (urls, callback, obj, context) {
+      load('css', urls, callback, obj, context);
+    },
+
+    /**
+    Requests the specified JavaScript URL or URLs and executes the specified
+    callback (if any) when they have finished loading. If an array of URLs is
+    specified and the browser supports it, the scripts will be loaded in
+    parallel and the callback will be executed after all scripts have
+    finished loading.
+
+    Currently, only Firefox and Opera support parallel loading of scripts while
+    preserving execution order. In other browsers, scripts will be
+    queued and loaded one at a time to ensure correct execution order.
+
+    @method js
+    @param {String|Array} urls JS URL or array of JS URLs to load
+    @param {Function} callback (optional) callback function to execute when
+      the specified scripts are loaded
+    @param {Object} obj (optional) object to pass to the callback function
+    @param {Object} context (optional) if provided, the callback function
+      will be executed in this object's context
+    @static
+    */
+    js: function (urls, callback, obj, context) {
+      load('js', urls, callback, obj, context);
+    }
+
+  };
+})(this.document);
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/TL.I18NMixins.js b/public/opac/TimelineJS3-3.5.1/source/js/language/TL.I18NMixins.js
new file mode 100644
index 0000000000000000000000000000000000000000..bed4c29b660524aa32242978406eb69a883a450d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/TL.I18NMixins.js
@@ -0,0 +1,16 @@
+/*  TL.I18NMixins
+    assumes that its class has an options object with a TL.Language instance    
+================================================== */
+TL.I18NMixins = {
+    getLanguage: function() {
+        if (this.options && this.options.language) {
+            return this.options.language;
+        }
+        trace("Expected a language option");
+        return TL.Language.fallback;
+    },
+
+    _: function(msg) {
+        return this.getLanguage()._(msg);
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/TL.Language.js b/public/opac/TimelineJS3-3.5.1/source/js/language/TL.Language.js
new file mode 100644
index 0000000000000000000000000000000000000000..b0a3724117bbcd5394f74865aecc55525ec86c75
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/TL.Language.js
@@ -0,0 +1,317 @@
+TL.Language = function(options) {
+	// borrowed from http://stackoverflow.com/a/14446414/102476
+	for (k in TL.Language.languages.en) {
+		this[k] = TL.Language.languages.en[k];
+	}
+	if (options && options.language && typeof(options.language) == 'string' && options.language != 'en') {
+		var code = options.language;
+		if (!(code in TL.Language.languages)) {
+			if (/\.json$/.test(code)) {
+				var url = code;
+			} else {
+				var fragment = "/locale/" + code + ".json";
+				var script_path = options.script_path || TL.Timeline.source_path;
+				if (/\/$/.test(script_path)) { fragment = fragment.substr(1)}
+				var url = script_path + fragment;
+			}
+			var self = this;
+			var xhr = TL.ajax({
+				url: url, async: false
+			});
+			if (xhr.status == 200) {
+				TL.Language.languages[code] = JSON.parse(xhr.responseText);
+			} else {
+				throw "Could not load language [" + code + "]: " + xhr.statusText;
+			}
+		}
+		TL.Util.mergeData(this,TL.Language.languages[code]);
+
+	}
+}
+
+TL.Language.formatNumber = function(val,mask) {
+		if (mask.match(/%(\.(\d+))?f/)) {
+			var match = mask.match(/%(\.(\d+))?f/);
+			var token = match[0];
+			if (match[2]) {
+				val = val.toFixed(match[2]);
+			}
+			return mask.replace(token,val);
+		}
+		// use mask as literal display value.
+		return mask;
+	}
+
+
+
+/* TL.Util.mergeData is shallow, we have nested dicts.
+   This is a simplistic handling but should work.
+ */
+TL.Language.prototype.mergeData = function(lang_json) {
+	for (k in TL.Language.languages.en) {
+		if (lang_json[k]) {
+			if (typeof(this[k]) == 'object') {
+				TL.Util.mergeData(lang_json[k], this[k]);
+			} else {
+				this[k] = lang_json[k]; // strings, mostly
+			}
+		}
+	}
+}
+
+TL.Language.fallback = { messages: {} }; // placeholder to satisfy IE8 early compilation
+TL.Language.prototype.getMessage = function(k) {
+	return this.messages[k] || TL.Language.fallback.messages[k] || k;
+}
+
+TL.Language.prototype._ = TL.Language.prototype.getMessage; // keep it concise
+
+TL.Language.prototype.formatDate = function(date, format_name) {
+
+	if (date.constructor == Date) {
+		return this.formatJSDate(date, format_name);
+	}
+
+	if (date.constructor == TL.BigYear) {
+		return this.formatBigYear(date, format_name);
+	}
+
+	if (date.data && date.data.date_obj) {
+		return this.formatDate(date.data.date_obj, format_name);
+	}
+
+	trace("Unfamiliar date presented for formatting");
+	return date.toString();
+}
+
+TL.Language.prototype.formatBigYear = function(bigyear, format_name) {
+	var the_year = bigyear.year;
+	var format_list = this.bigdateformats[format_name] || this.bigdateformats['fallback'];
+
+	if (format_list) {
+		for (var i = 0; i < format_list.length; i++) {
+			var tuple = format_list[i];
+			if (Math.abs(the_year / tuple[0]) > 1) {
+				// will we ever deal with distant future dates?
+				return TL.Language.formatNumber(Math.abs(the_year / tuple[0]),tuple[1])
+			}
+		};
+
+		return the_year.toString();
+
+	} else {
+	    trace("Language file dateformats missing cosmological. Falling back.");
+	    return TL.Language.formatNumber(the_year,format_name);
+	}
+}
+
+TL.Language.prototype.formatJSDate = function(js_date, format_name) {
+	// ultimately we probably want this to work with TL.Date instead of (in addition to?) JS Date
+	// utc, timezone and timezoneClip are carry over from Steven Levithan implementation. We probably aren't going to use them.
+	var self = this;
+	var formatPeriod = function(fmt, value) {
+		var formats = self.period_labels[fmt];
+		if (formats) {
+			var fmt = (value < 12) ? formats[0] : formats[1];
+		}
+		return "<span class='tl-timeaxis-timesuffix'>" + fmt + "</span>";
+	}
+
+	var utc = false,
+		timezone = /\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,
+		timezoneClip = /[^-+\dA-Z]/g;
+
+
+	if (!format_name) {
+		format_name = 'full';
+	}
+
+	var mask = this.dateformats[format_name] || TL.Language.fallback.dateformats[format_name];
+	if (!mask) {
+		mask = format_name; // allow custom format strings
+	}
+
+
+	var	_ = utc ? "getUTC" : "get",
+		d = js_date[_ + "Date"](),
+		D = js_date[_ + "Day"](),
+		m = js_date[_ + "Month"](),
+		y = js_date[_ + "FullYear"](),
+		H = js_date[_ + "Hours"](),
+		M = js_date[_ + "Minutes"](),
+		s = js_date[_ + "Seconds"](),
+		L = js_date[_ + "Milliseconds"](),
+		o = utc ? 0 : js_date.getTimezoneOffset(),
+		year = "",
+		flags = {
+			d:    d,
+			dd:   TL.Util.pad(d),
+			ddd:  this.date.day_abbr[D],
+			dddd: this.date.day[D],
+			m:    m + 1,
+			mm:   TL.Util.pad(m + 1),
+			mmm:  this.date.month_abbr[m],
+			mmmm: this.date.month[m],
+			yy:   String(y).slice(2),
+			yyyy: (y < 0 && this.has_negative_year_modifier()) ? Math.abs(y) : y,
+			h:    H % 12 || 12,
+			hh:   TL.Util.pad(H % 12 || 12),
+			H:    H,
+			HH:   TL.Util.pad(H),
+			M:    M,
+			MM:   TL.Util.pad(M),
+			s:    s,
+			ss:   TL.Util.pad(s),
+			l:    TL.Util.pad(L, 3),
+			L:    TL.Util.pad(L > 99 ? Math.round(L / 10) : L),
+			t:    formatPeriod('t',H),
+			tt:   formatPeriod('tt',H),
+			T:    formatPeriod('T',H),
+			TT:   formatPeriod('TT',H),
+			Z:    utc ? "UTC" : (String(js_date).match(timezone) || [""]).pop().replace(timezoneClip, ""),
+			o:    (o > 0 ? "-" : "+") + TL.Util.pad(Math.floor(Math.abs(o) / 60) * 100 + Math.abs(o) % 60, 4),
+			S:    ["th", "st", "nd", "rd"][d % 10 > 3 ? 0 : (d % 100 - d % 10 != 10) * d % 10]
+		};
+
+		var formatted = mask.replace(TL.Language.DATE_FORMAT_TOKENS, function ($0) {
+			return $0 in flags ? flags[$0] : $0.slice(1, $0.length - 1);
+		});
+
+		return this._applyEra(formatted, y);
+}
+
+TL.Language.prototype.has_negative_year_modifier = function() {
+	return Boolean(this.era_labels.negative_year.prefix || this.era_labels.negative_year.suffix);
+}
+
+
+TL.Language.prototype._applyEra = function(formatted_date, original_year) {
+	// trusts that the formatted_date was property created with a non-negative year if there are
+	// negative affixes to be applied
+	var labels = (original_year < 0) ? this.era_labels.negative_year : this.era_labels.positive_year;
+	var result = '';
+	if (labels.prefix) { result += '<span>' + labels.prefix + '</span> ' }
+	result += formatted_date;
+	if (labels.suffix) { result += ' <span>' + labels.suffix + '</span>' }
+	return result;
+}
+
+
+TL.Language.DATE_FORMAT_TOKENS = /d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g;
+
+TL.Language.languages = {
+/*
+	This represents the canonical list of message keys which translation files should handle. The existence of the 'en.json' file should not mislead you.
+	It is provided more as a starting point for someone who wants to provide a
+	new translation since the form for non-default languages (JSON not JS) is slightly different from what appears below. Also, those files have some message keys grandfathered in from TimelineJS2 which we'd rather not have to
+	get "re-translated" if we use them.
+*/
+	en: {
+		name: 					"English",
+		lang: 					"en",
+        api: {
+            wikipedia:          "en" // the two letter code at the beginning of the Wikipedia subdomain for this language
+        },
+		messages: {
+			loading: 			            		  "Loading",
+			wikipedia: 			            		"From Wikipedia, the free encyclopedia",
+			error: 				            			"Error",
+      contract_timeline:              "Contract Timeline",
+      return_to_title:                "Return to Title",
+      loading_content:                "Loading Content",
+      expand_timeline:                "Expand Timeline",
+      loading_timeline:               "Loading Timeline... ",
+      swipe_to_navigate:              "Swipe to Navigate<br><span class='tl-button'>OK</span>",
+      unknown_read_err:               "An unexpected error occurred trying to read your spreadsheet data",
+			invalid_url_err: 								"Unable to read Timeline data. Make sure your URL is for a Google Spreadsheet or a Timeline JSON file.",
+      network_err:                    "Unable to read your Google Spreadsheet. Make sure you have published it to the web.",
+      empty_feed_err:                 "No data entries found",
+      missing_start_date_err:         "Missing start_date",
+      invalid_data_format_err:        "Header row has been modified.",
+      date_compare_err:               "Can't compare TL.Dates on different scales",
+      invalid_scale_err:              "Invalid scale",
+      invalid_date_err:               "Invalid date: month, day and year must be numbers.",
+      invalid_separator_error:        "Invalid time: misuse of : or . as separator.",
+      invalid_hour_err:               "Invalid time (hour)",
+      invalid_minute_err:             "Invalid time (minute)",
+      invalid_second_err:             "Invalid time (second)",
+      invalid_fractional_err:         "Invalid time (fractional seconds)",
+      invalid_second_fractional_err:  "Invalid time (seconds and fractional seconds)",
+      invalid_year_err:               "Invalid year",
+      flickr_notfound_err:            "Photo not found or private",
+      flickr_invalidurl_err:          "Invalid Flickr URL",
+      imgur_invalidurl_err:           "Invalid Imgur URL",
+      twitter_invalidurl_err:         "Invalid Twitter URL",
+      twitter_load_err:               "Unable to load Tweet",
+      twitterembed_invalidurl_err:    "Invalid Twitter Embed url",
+      wikipedia_load_err:             "Unable to load Wikipedia entry",
+      youtube_invalidurl_err:         "Invalid YouTube URL",
+      spotify_invalid_url:            "Invalid Spotify URL",
+      template_value_err:             "No value provided for variable",
+      invalid_rgb_err:                "Invalid RGB argument",
+      time_scale_scale_err:           "Don't know how to get date from time for scale",
+      axis_helper_no_options_err:     "Axis helper must be configured with options",
+      axis_helper_scale_err:          "No AxisHelper available for scale",
+      invalid_integer_option:       	"Invalid option value—must be a whole number."
+		},
+		date: {
+      month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
+      month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
+      day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
+      day_abbr: ["Sun.","Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."]
+		},
+		era_labels: { // specify prefix or suffix to apply to formatted date. Blanks mean no change.
+	        positive_year: {
+	        	prefix: '',
+	        	suffix: ''
+	        },
+	        negative_year: { // if either of these is specified, the year will be converted to positive before they are applied
+	        	prefix: '',
+	        	suffix: 'BCE'
+	        }
+        },
+        period_labels: {  // use of t/tt/T/TT legacy of original Timeline date format
+			t: ['a', 'p'],
+			tt: ['am', 'pm'],
+			T: ['A', 'P'],
+			TT: ['AM', 'PM']
+		},
+		dateformats: {
+			year: "yyyy",
+			month_short: "mmm",
+			month: "mmmm yyyy",
+			full_short: "mmm d",
+			full: "mmmm d',' yyyy",
+			time: "h:MM:ss TT' <small>'mmmm d',' yyyy'</small>'",
+			time_short: "h:MM:ss TT",
+			time_no_seconds_short: "h:MM TT",
+			time_no_minutes_short: "h TT",
+			time_no_seconds_small_date: "h:MM TT' <small>'mmmm d',' yyyy'</small>'",
+			time_milliseconds: "l",
+			full_long: "mmm d',' yyyy 'at' h:MM TT",
+			full_long_small_date: "h:MM TT' <small>mmm d',' yyyy'</small>'"
+		},
+		bigdateformats: {
+			fallback: [ // a list of tuples, with t[0] an order of magnitude and t[1] a format string. format string syntax may change...
+				[1000000000,"%.2f billion years ago"],
+				[1000000,"%.1f million years ago"],
+				[1000,"%.1f thousand years ago"],
+				[1, "%f years ago"]
+			],
+		    compact: [
+				[1000000000,"%.2f bya"],
+				[1000000,"%.1f mya"],
+				[1000,"%.1f kya"],
+				[1, "%f years ago"]
+			],
+		    verbose: [
+				[1000000000,"%.2f billion years ago"],
+				[1000000,"%.1f million years ago"],
+				[1000,"%.1f thousand years ago"],
+				[1, "%f years ago"]
+			]
+		}
+	}
+}
+
+TL.Language.fallback = new TL.Language();
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/af.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/af.json
new file mode 100644
index 0000000000000000000000000000000000000000..561190cbe1fe62265cc45974247952b3ca33864e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/af.json
@@ -0,0 +1,75 @@
+{
+    "lang": "af", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Maart", 
+            "April", 
+            "Mei", 
+            "Junei", 
+            "Julie", 
+            "Aug.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Des."
+        ], 
+        "day_abbr": [
+            "Son.", 
+            "Maan.", 
+            "Dins.", 
+            "Woen.", 
+            "Don.", 
+            "Vry.", 
+            "Sat."
+        ], 
+        "day": [
+            "Sondag", 
+            "Maandag", 
+            "Dinsdag", 
+            "Woensdag", 
+            "Donderdag", 
+            "Vrydag", 
+            "Saterdag"
+        ], 
+        "month": [
+            "Januarie", 
+            "Februarie", 
+            "Maart", 
+            "April", 
+            "Mei", 
+            "Junie", 
+            "Julie", 
+            "Augustus", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "af"
+    }, 
+    "messages": {
+        "loading": "Aan't laai", 
+        "contract_timeline": "Krimp die tydlyn", 
+        "return_to_title": "Begin voor", 
+        "wikipedia": "Van Wikipedia, die gratis ensiklopedie", 
+        "loading_content": "Die inhoud laai", 
+        "expand_timeline": "Rek die tydlyn", 
+        "loading_timeline": "Die tydlyn laai... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'om' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ar.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ar.json
new file mode 100644
index 0000000000000000000000000000000000000000..4d4352ae7d031ae71958f09588bc9388ee4ff6a9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ar.json
@@ -0,0 +1,76 @@
+{
+    "lang": "ar", 
+    "direction": "rtl",
+    "messages": {
+        "loading": "تحميل", 
+        "contract_timeline": "الاتفاقية", 
+        "return_to_title": "العودة", 
+        "wikipedia": "من ويكيبيديا, الموسوعة الحرة", 
+        "loading_content": "تحميل المحتوى", 
+        "expand_timeline": "تكبير العرض", 
+        "loading_timeline": "جاري التحميل... "
+    }, 
+    "api": {
+        "wikipedia": "ar"
+    }, 
+    "date": {
+        "month_abbr": [
+            "كانون الثاني", 
+            "شباط", 
+            "آذار", 
+            "نيسان", 
+            "أيار", 
+            "حزيران", 
+            "تموز", 
+            "آب", 
+            "أيلول", 
+            "تشرين الأول", 
+            "تشرين الثاني", 
+            "كانون الأول"
+        ], 
+        "day_abbr": [
+            "الأحد", 
+            "الإثنين", 
+            "الثلاثاء", 
+            "الأربعاء", 
+            "الخميس", 
+            "الجمعة", 
+            "السبت"
+        ], 
+        "day": [
+            "الأحد", 
+            "الإثنين", 
+            "الثلاثاء", 
+            "الأربعاء", 
+            "الخميس", 
+            "الجمعة", 
+            "السبت"
+        ], 
+        "month": [
+            "كانون الثاني", 
+            "شباط", 
+            "آذار", 
+            "نيسان", 
+            "أيار", 
+            "حزيران", 
+            "تموز", 
+            "آب", 
+            "أيلول", 
+            "تشرين الأول", 
+            "تشرين الثاني", 
+            "كانون الأول"
+        ]
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/be.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/be.json
new file mode 100644
index 0000000000000000000000000000000000000000..a192e23dafb7ffc521a477087f79dbddb033f02d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/be.json
@@ -0,0 +1,75 @@
+{
+  "lang": "be", 
+  "date": {
+    "month_abbr": [
+      "стд", 
+      "лют", 
+      "скв", 
+      "крс", 
+      "май", 
+      "чрв", 
+      "лпн", 
+      "жнв", 
+      "врс", 
+      "кст", 
+      "лст", 
+      "снж"
+    ], 
+    "day_abbr": [
+      "Нд.", 
+      "Пн.", 
+      "Аўт.", 
+      "Ср.", 
+      "Чц.", 
+      "Пт.", 
+      "Сб."
+    ], 
+    "day": [
+      "нядзеля", 
+      "панядзелак", 
+      "аўторак", 
+      "серада", 
+      "чацвер", 
+      "пятніца", 
+      "субота"
+    ], 
+    "month": [
+      "студзень", 
+      "люты", 
+      "сакавік", 
+      "красавік", 
+      "май", 
+      "чэрвень", 
+      "ліпень", 
+      "жнівень", 
+      "верасень", 
+      "кастрычнік", 
+      "лістапад", 
+      "снежань"
+    ]
+  }, 
+  "api": {
+    "wikipedia": "be"
+  }, 
+  "messages": {
+    "loading": "Загрузка", 
+    "contract_timeline": "Аддаліць лінію часу", 
+    "return_to_title": "Вярнуцца ў пачатак", 
+    "wikipedia": "З Вікіпедыі, свабоднай энцыклапедыі", 
+    "loading_content": "Загрузка зместу", 
+    "expand_timeline": "Наблізіць лінію часу", 
+    "loading_timeline": "Загрузка лініі часу... "
+  }, 
+  "dateformats": {
+    "full_long": "d mmm yyyy 'at' h:MM TT", 
+    "full_short": "d mmm", 
+    "full": "d mmmm yyyy", 
+    "time_short": "h:MM:ss TT", 
+    "year": "yyyy", 
+    "time_no_seconds_short": "h:MM TT", 
+    "month_short": "mmm", 
+    "full_long_small_date": "h:MM TT'<br/><small>d mmm yyyy'</small>'", 
+    "time_no_seconds_small_date": "h:MM TT'<br/><small>'d mmmm yyyy'</small>'", 
+    "month": "mmmm yyyy"
+  }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/bg.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/bg.json
new file mode 100644
index 0000000000000000000000000000000000000000..c66dc659eb1869074d7dbcd7613162caa81613ce
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/bg.json
@@ -0,0 +1,75 @@
+{
+    "lang": "bg", 
+    "date": {
+        "month_abbr": [
+            "Ян.", 
+            "Фев.", 
+            "Март", 
+            "Апр.", 
+            "Май", 
+            "Юни", 
+            "Юли", 
+            "Авг.", 
+            "Септ.", 
+            "Окт.", 
+            "Ноем.", 
+            "Дек."
+        ], 
+        "day_abbr": [
+            "Нед.", 
+            "Пон.", 
+            "Ð’Ñ‚.", 
+            "Ср.", 
+            "Четв.", 
+            "Пет.", 
+            "Съб."
+        ], 
+        "day": [
+            "Неделя", 
+            "Понеделник", 
+            "Вторник", 
+            "Сряда", 
+            "Четвъртък", 
+            "Петък", 
+            "Събота"
+        ], 
+        "month": [
+            "Януари", 
+            "Февруари", 
+            "Март", 
+            "Април", 
+            "Май", 
+            "Юни", 
+            "Юли", 
+            "Август", 
+            "Септември", 
+            "Октомври", 
+            "Ноември", 
+            "Декември"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "bg"
+    }, 
+    "messages": {
+        "loading": "Зарежда се", 
+        "contract_timeline": "Свиване", 
+        "return_to_title": "В началото", 
+        "wikipedia": "От Уикипедия, свободната енциклопедия", 
+        "loading_content": "Съдържанието се зарежда", 
+        "expand_timeline": "Разширяване", 
+        "loading_timeline": "Зареждане... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm yyyy 'at' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ca.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ca.json
new file mode 100644
index 0000000000000000000000000000000000000000..53078b317c291ab0f921bd6079c9ef44dc5f5b13
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ca.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ca", 
+    "date": {
+        "month_abbr": [
+            "Gen", 
+            "Feb", 
+            "Mar", 
+            "Abr", 
+            "Mai", 
+            "Jun", 
+            "Jul", 
+            "Ago", 
+            "Set", 
+            "Oct", 
+            "Nov", 
+            "Des"
+        ], 
+        "day_abbr": [
+            "Dg.", 
+            "Dl.", 
+            "Dt.", 
+            "Dc.", 
+            "Dj.", 
+            "Dv.", 
+            "Ds."
+        ], 
+        "day": [
+            "Diumenge", 
+            "Dilluns", 
+            "Dimarts", 
+            "Dimecres", 
+            "Dijous", 
+            "Divendres", 
+            "Dissabte"
+        ], 
+        "month": [
+            "Gener", 
+            "Febrer", 
+            "Març", 
+            "Abril", 
+            "Maig", 
+            "Juny", 
+            "Juliol", 
+            "Agost", 
+            "Setembre", 
+            "Octubre", 
+            "Novembre", 
+            "Desembre"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ca"
+    }, 
+    "messages": {
+        "loading": "Carregant", 
+        "contract_timeline": "Reduir la cronologia", 
+        "return_to_title": "Tornar al títol", 
+        "wikipedia": "Des de Wikipedia, l'enciclopèdia lliure", 
+        "loading_content": "Carregant contingut", 
+        "expand_timeline": "Ampliar la cronologia", 
+        "loading_timeline": "Carregant cronologia..."
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "'<small>'d mmmm yyyy'</small>' HH:MM", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/cz.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/cz.json
new file mode 100644
index 0000000000000000000000000000000000000000..efe32b815a0f06c760a761f47a205fc020594a60
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/cz.json
@@ -0,0 +1,75 @@
+{
+    "lang": "cz", 
+    "date": {
+        "month_abbr": [
+            "Led", 
+            "Úno", 
+            "Bře", 
+            "Dub", 
+            "KvÄ›", 
+            "ÄŒen", 
+            "ÄŒec", 
+            "Srp", 
+            "Zář", 
+            "Říj", 
+            "Lis", 
+            "Pro"
+        ], 
+        "day_abbr": [
+            "Ne", 
+            "Po", 
+            "Út", 
+            "St", 
+            "ÄŒt", 
+            "Pá", 
+            "So"
+        ], 
+        "day": [
+            "neděle", 
+            "pondělí", 
+            "úterý", 
+            "středa", 
+            "čtvrtek", 
+            "pátek", 
+            "sobota"
+        ], 
+        "month": [
+            "ledna", 
+            "února", 
+            "března", 
+            "dubna", 
+            "května", 
+            "června", 
+            "července", 
+            "srpna", 
+            "září", 
+            "října", 
+            "listopadu", 
+            "prosince"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "cs"
+    }, 
+    "messages": {
+        "loading": "Nahrávám", 
+        "contract_timeline": "Sbalit časovou osu", 
+        "return_to_title": "Zpět na začátek", 
+        "wikipedia": "Zdroj: otevřená encyklopedie Wikipedia", 
+        "loading_content": "Nahrávám obsah", 
+        "expand_timeline": "Rozbalit časovou osu", 
+        "loading_timeline": "Načítám časovou osu... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd d. mmm yyyy 'v' HH:MM", 
+        "full_short": "d. mmm ", 
+        "full": "d. mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>dddd d. mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/da.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/da.json
new file mode 100644
index 0000000000000000000000000000000000000000..cf912b6c1664652fc5d6290552f663a256a4fb49
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/da.json
@@ -0,0 +1,75 @@
+{
+    "lang": "da", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "feb.", 
+            "mar.", 
+            "apr.", 
+            "maj.", 
+            "jun.", 
+            "jul.", 
+            "aug.", 
+            "sep.", 
+            "okt.", 
+            "nov.", 
+            "dec."
+        ], 
+        "day_abbr": [
+            "sø.", 
+            "ma.", 
+            "ti.", 
+            "on.", 
+            "to.", 
+            "fr.", 
+            "lø."
+        ], 
+        "day": [
+            "søndag", 
+            "mandag", 
+            "tirsdag", 
+            "onsdag", 
+            "torsdag", 
+            "fredag", 
+            "lørdag"
+        ], 
+        "month": [
+            "januar", 
+            "februar", 
+            "marts", 
+            "april", 
+            "maj", 
+            "juni", 
+            "juli", 
+            "august", 
+            "september", 
+            "oktober", 
+            "november", 
+            "december"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "da"
+    }, 
+    "messages": {
+        "loading": "Henter", 
+        "contract_timeline": "Træk tidslinien sammen", 
+        "return_to_title": "Tilbage til titel", 
+        "wikipedia": "Fra Wikipedia", 
+        "loading_content": "Henter indhold", 
+        "expand_timeline": "Udvid tidslinien", 
+        "loading_timeline": "Henter tidslinie..."
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d. mmm',' yyyy 'um' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d. mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/de.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/de.json
new file mode 100644
index 0000000000000000000000000000000000000000..2af03670b7261d14dea8226ece83f39bfe66e790
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/de.json
@@ -0,0 +1,76 @@
+{
+    "lang": "de",
+    "date": {
+        "month_abbr": [
+            "Jan.",
+            "Feb.",
+            "März",
+            "Apr.",
+            "Mai",
+            "Juni",
+            "Juli",
+            "Aug.",
+            "Sept.",
+            "Okt.",
+            "Nov.",
+            "Dez."
+        ],
+        "day_abbr": [
+            "So.",
+            "Mo.",
+            "Di.",
+            "Mi.",
+            "Do.",
+            "Fr.",
+            "Sa."
+        ],
+        "day": [
+            "Sonntag",
+            "Montag",
+            "Dienstag",
+            "Mittwoch",
+            "Donnerstag",
+            "Freitag",
+            "Samstag"
+        ],
+        "month": [
+            "Januar",
+            "Februar",
+            "März",
+            "April",
+            "Mai",
+            "Juni",
+            "Juli",
+            "August",
+            "September",
+            "Oktober",
+            "November",
+            "Dezember"
+        ]
+    },
+    "api": {
+        "wikipedia": "de"
+    },
+    "messages": {
+        "loading": "Loading",
+        "contract_timeline": "Chronologie verkleinern",
+        "return_to_title": "Zurück zum Anfang",
+        "wikipedia": "Wikipedia, Die freie Enzyklopädie",
+        "loading_content": "Loading",
+        "swipe_to_navigate": "Streichen um zu navigieren<br><span class='tl-button'>OK</span>",
+        "expand_timeline": "Chronologie vergrößern", 
+        "loading_timeline": "Chronologie wird geladen..."
+    },
+    "dateformats": {
+        "full_long": "dddd',' d. mmm yyyy 'um' HH:MM",
+        "full_short": "d. mmm",
+        "full": "d. mmmm yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "HH:MM",
+        "time_short": "HH:MM:ss",
+        "year": "yyyy",
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d. mmm yyyy'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/el.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/el.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ad0e65671dbe37c299633422547bfb53d88d65a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/el.json
@@ -0,0 +1,75 @@
+{
+    "lang": "en", 
+    "date": {
+        "month_abbr": [
+            "Ιαν.", 
+            "Φεβ.", 
+            "Μαρ.", 
+            "Απρ.", 
+            "Μαη", 
+            "Ιουν.", 
+            "Ιουλ.", 
+            "Αύγ.", 
+            "Σεπτ.", 
+            "Οκτ.", 
+            "Νοεμ.", 
+            "Δεκ."
+        ], 
+        "day_abbr": [
+            "Κυρ.", 
+            "Δευ.", 
+            "Τρίτη.", 
+            "Τετ.", 
+            "Πεμπ.", 
+            "Παρ.", 
+            "Σαβ."
+        ], 
+        "day": [
+            "Κυριακή", 
+            "Δευτέρα", 
+            "Τρίτη", 
+            "Τετάρτη", 
+            "Πέμπτη", 
+            "Παρασκευή", 
+            "Σάββατο"
+        ], 
+        "month": [
+            "Ιανουάριος", 
+            "Φεβρουάριος", 
+            "Μάρτιος", 
+            "Απρίλιος", 
+            "Μάιος", 
+            "Ιούνιος", 
+            "Ιούλιος", 
+            "Αύγουστος", 
+            "Σεπτέμβριος", 
+            "Οκτώβριος", 
+            "Νοέμβριος", 
+            "Δεκέμβριος"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "en"
+    }, 
+    "messages": {
+        "loading": "Γίνεται Φόρτωση", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Επιστροφή στον Τίτλο", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Φόρτωση Περιεχομένου", 
+        "expand_timeline": "Μεγέθυνση", 
+        "loading_timeline": "Φόρτωση Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en-24hr.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en-24hr.json
new file mode 100644
index 0000000000000000000000000000000000000000..1d20e1c9c6fda0c415d4dda0c0fa915d5b793c7a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en-24hr.json
@@ -0,0 +1,75 @@
+{
+    "lang": "en", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "March", 
+            "April", 
+            "May", 
+            "June", 
+            "July", 
+            "Aug.", 
+            "Sept.", 
+            "Oct.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Sun.", 
+            "Mon.", 
+            "Tues.", 
+            "Wed.", 
+            "Thurs.", 
+            "Fri.", 
+            "Sat."
+        ], 
+        "day": [
+            "Sunday", 
+            "Monday", 
+            "Tuesday", 
+            "Wednesday", 
+            "Thursday", 
+            "Friday", 
+            "Saturday"
+        ], 
+        "month": [
+            "January", 
+            "February", 
+            "March", 
+            "April", 
+            "May", 
+            "June", 
+            "July", 
+            "August", 
+            "September", 
+            "October", 
+            "November", 
+            "December"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "en"
+    }, 
+    "messages": {
+        "loading": "Loading", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Return to Title", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Loading Content", 
+        "expand_timeline": "Expand Timeline", 
+        "loading_timeline": "Loading Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' HH:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM TT", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en-week.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en-week.json
new file mode 100644
index 0000000000000000000000000000000000000000..b469c81fd58535bc63660f552f1ef51f100b0b48
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en-week.json
@@ -0,0 +1,75 @@
+{
+    "lang": "en", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "March", 
+            "April", 
+            "May", 
+            "June", 
+            "July", 
+            "Aug.", 
+            "Sept.", 
+            "Oct.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Sun.", 
+            "Mon.", 
+            "Tues.", 
+            "Wed.", 
+            "Thurs.", 
+            "Fri.", 
+            "Sat."
+        ], 
+        "day": [
+            "Sunday", 
+            "Monday", 
+            "Tuesday", 
+            "Wednesday", 
+            "Thursday", 
+            "Friday", 
+            "Saturday"
+        ], 
+        "month": [
+            "January", 
+            "February", 
+            "March", 
+            "April", 
+            "May", 
+            "June", 
+            "July", 
+            "August", 
+            "September", 
+            "October", 
+            "November", 
+            "December"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "en"
+    }, 
+    "messages": {
+        "loading": "Loading", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Return to Title", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Loading Content", 
+        "expand_timeline": "Expand Timeline", 
+        "loading_timeline": "Loading Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' HH:MM TT", 
+        "full_short": "'Week' W", 
+        "full": "'Week' W", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM TT", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en.json
new file mode 100644
index 0000000000000000000000000000000000000000..a8e51734c950641f2c96747a29dc8b62d5547286
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/en.json
@@ -0,0 +1,125 @@
+{
+    "name": "English",
+    "lang": "en",
+    "date": {
+        "month_abbr": [
+            "Jan.",
+            "Feb.",
+            "March",
+            "April",
+            "May",
+            "June",
+            "July",
+            "Aug.",
+            "Sept.",
+            "Oct.",
+            "Nov.",
+            "Dec."
+        ],
+        "day_abbr": [
+            "Sun.",
+            "Mon.",
+            "Tues.",
+            "Wed.",
+            "Thurs.",
+            "Fri.",
+            "Sat."
+        ],
+        "day": [
+            "Sunday",
+            "Monday",
+            "Tuesday",
+            "Wednesday",
+            "Thursday",
+            "Friday",
+            "Saturday"
+        ],
+        "month": [
+            "January",
+            "February",
+            "March",
+            "April",
+            "May",
+            "June",
+            "July",
+            "August",
+            "September",
+            "October",
+            "November",
+            "December"
+        ]
+    },
+    "api": {
+        "wikipedia": "en" // the two letter code at the beginning of the Wikipedia subdomain for this language
+    },
+    "messages": {
+        "loading": "Loading",
+        "error": "Error",
+        "contract_timeline": "Contract Timeline",
+        "return_to_title": "Return to Title",
+        "wikipedia": "From Wikipedia, the free encyclopedia",
+        "loading_content": "Loading Content",
+        "expand_timeline": "Expand Timeline",
+        "loading_timeline": "Loading Timeline... ",
+        "swipe_to_navigate": "Swipe to Navigate<br><span class='tl-button'>OK</span>",
+        "unknown_read_err": "An unexpected error occurred trying to read your spreadsheet data",
+        "invalid_url_err": "Unable to read Timeline data. Make sure your URL is for a Google Spreadsheet or a Timeline JSON file.",
+        "network_err": "Unable to read your Google Spreadsheet. Make sure you have published it to the web.",
+        "empty_feed_err": "No data entries found",
+        "missing_start_date_err": "Missing start_date",
+        "invalid_data_format_err": "Header row has been modified.",
+        "date_compare_err": "Can't compare TL.Dates on different scales",
+        "invalid_scale_err": "Invalid scale",
+        "invalid_date_err": "Invalid date: month, day and year must be numbers.",
+        "invalid_separator_error": "Invalid time: misuse of : or . as separator.",
+        "invalid_hour_err": "Invalid time (hour)",
+        "invalid_minute_err": "Invalid time (minute)",
+        "invalid_second_err": "Invalid time (second)",
+        "invalid_fractional_err": "Invalid time (fractional seconds)",
+        "invalid_second_fractional_err": "Invalid time (seconds and fractional seconds)",
+        "invalid_year_err": "Invalid year",
+        "flickr_notfound_err": "Photo not found or private",
+        "flickr_invalidurl_err": "Invalid Flickr URL",
+        "imgur_invalidurl_err": "Invalid Imgur URL",
+        "twitter_invalidurl_err": "Invalid Twitter URL",
+        "twitter_load_err": "Unable to load Tweet",
+        "twitterembed_invalidurl_err": "Invalid Twitter Embed url",
+        "wikipedia_load_err": "Unable to load Wikipedia entry",
+        "youtube_invalidurl_err": "Invalid YouTube URL",
+        "spotify_invalid_url": "Invalid Spotify URL",
+        "template_value_err": "No value provided for variable",
+        "invalid_rgb_err": "Invalid RGB argument",
+        "time_scale_scale_err": "Don't know how to get date from time for scale",
+        "axis_helper_no_options_err": "Axis helper must be configured with options",
+        "axis_helper_scale_err": "No AxisHelper available for scale",
+        "invalid_integer_option": 				"Invalid option value—must be a whole number."
+    },
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT",
+        "full_short": "mmm d",
+        "full": "mmmm d',' yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "h:MM TT",
+        "time_short": "h:MM:ss TT",
+        "year": "yyyy",
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    },
+    "era_labels": { // specify prefix or suffix to apply to formatted date. Blanks mean no change.
+        "positive_year": {
+            "prefix": "",
+            "suffix": ""
+        },
+        "negative_year": { // if either of these is specified, the year will be converted to positive before they are applied
+            "prefix": "",
+            "suffix": "BCE"
+        }
+    },
+    "period_labels": {  // use of t/tt/T/TT is a legacy of original Timeline date format
+        "t": ["a", "p"],
+        "tt": ["am", "pm"],
+        "T": ["A", "P"],
+        "TT": ["AM", "PM"]
+    },
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/eo.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/eo.json
new file mode 100644
index 0000000000000000000000000000000000000000..849fc62e176ab64afd061ce9667c0cd7f65f637f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/eo.json
@@ -0,0 +1,75 @@
+{
+    "lang": "eo", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "feb.", 
+            "mar.", 
+            "apr.", 
+            "maj.", 
+            "jun.", 
+            "jul.", 
+            "aÅ­g.", 
+            "sep.", 
+            "okt.", 
+            "nov.", 
+            "dec."
+        ], 
+        "day_abbr": [
+            "dim.", 
+            "lun.", 
+            "mar.", 
+            "mer.", 
+            "ĵaŭ.", 
+            "ven.", 
+            "sab."
+        ], 
+        "day": [
+            "dimanĉo", 
+            "lundo", 
+            "mardo", 
+            "merkredo", 
+            "ĵaŭdo", 
+            "vendredo", 
+            "sabato"
+        ], 
+        "month": [
+            "januaro", 
+            "februaro", 
+            "marto", 
+            "aprilo", 
+            "majo", 
+            "junio", 
+            "julio", 
+            "aÅ­gusto", 
+            "septembro", 
+            "oktobro", 
+            "novembro", 
+            "decembro"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "eo"
+    }, 
+    "messages": {
+        "loading": "Ŝarĝante", 
+        "contract_timeline": "Malpliampleksigu Kronologio", 
+        "return_to_title": "Reveno al Titolo", 
+        "wikipedia": "El Vikipedio, la libera enciklopedio", 
+        "loading_content": "Ŝarĝante enhavo", 
+        "expand_timeline": "Pliampleksigu Kronologio", 
+        "loading_timeline": "Ŝarĝante Kronologio... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'ĉe' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/es.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/es.json
new file mode 100644
index 0000000000000000000000000000000000000000..6edcabd3d913d1e9cbefd93f6c32a6695d70e2af
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/es.json
@@ -0,0 +1,76 @@
+{
+    "lang": "es", 
+    "date": {
+        "month_abbr": [
+            "Ene.", 
+            "Feb.", 
+            "Mar.", 
+            "Abr.", 
+            "May.", 
+            "Jun.", 
+            "Jul.", 
+            "Ago.", 
+            "Sep.", 
+            "Oct.", 
+            "Nov.", 
+            "Dic."
+        ], 
+        "day_abbr": [
+            "Dom.", 
+            "Lun.", 
+            "Mar.", 
+            "Mié.", 
+            "Jue.", 
+            "Vie.", 
+            "Sáb."
+        ], 
+        "day": [
+            "Domingo", 
+            "Lunes", 
+            "Martes", 
+            "Miércoles", 
+            "Jueves", 
+            "Viernes", 
+            "Sábado"
+        ], 
+        "month": [
+            "Enero", 
+            "Febrero", 
+            "Marzo", 
+            "Abril", 
+            "Mayo", 
+            "Junio", 
+            "Julio", 
+            "Agosto", 
+            "Septiembre", 
+            "Octubre", 
+            "Noviembre", 
+            "Diciembre"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "es"
+    }, 
+    "messages": {
+        "loading": "cargando", 
+        "contract_timeline": "Reducir la cronología", 
+        "return_to_title": "Volver al título", 
+        "swipe_nav": "Desliza para ver", 
+        "wikipedia": "Desde Wikipedia, la enciclopedia libre", 
+        "loading_content": "cargando", 
+        "expand_timeline": "Expandir la cronología", 
+        "loading_timeline": "La cronología esta cargando"
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "'<small>'d mmmm yyyy'</small>' HH:MM", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/et.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/et.json
new file mode 100644
index 0000000000000000000000000000000000000000..fe0b0ede98054402139fec1e901bda1a213e9389
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/et.json
@@ -0,0 +1,75 @@
+{
+    "lang": "et", 
+    "date": {
+        "month_abbr": [
+            "jaan.", 
+            "veebr.", 
+            "märts", 
+            "apr.", 
+            "mai", 
+            "juuni", 
+            "juuli", 
+            "aug.", 
+            "sept.", 
+            "okt.", 
+            "nov.", 
+            "dets."
+        ], 
+        "day_abbr": [
+            "P", 
+            "E", 
+            "T", 
+            "K", 
+            "N", 
+            "R", 
+            "L"
+        ], 
+        "day": [
+            "pühapäev", 
+            "esmaspäev", 
+            "teisipäev", 
+            "kolmapäev", 
+            "neljapäev", 
+            "reede", 
+            "laupäev"
+        ], 
+        "month": [
+            "jaanuar", 
+            "veebruar", 
+            "märts", 
+            "aprill", 
+            "mai", 
+            "juuni", 
+            "juuli", 
+            "august", 
+            "september", 
+            "oktoober", 
+            "november", 
+            "detsember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "et"
+    }, 
+    "messages": {
+        "loading": "Laadib", 
+        "contract_timeline": "Vaata kaugemalt", 
+        "return_to_title": "Tagasi algusse", 
+        "wikipedia": "Wikipedia, vaba entsüklopeedia", 
+        "loading_content": "Laadib sisu", 
+        "expand_timeline": "Vaata lähemalt", 
+        "loading_timeline": "Laadib ajajoont… "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/eu.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/eu.json
new file mode 100644
index 0000000000000000000000000000000000000000..e54dc18cb8c65305c4d3379aa437b45869870cb3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/eu.json
@@ -0,0 +1,75 @@
+{
+    "lang": "eu", 
+    "date": {
+        "month_abbr": [
+            "Urt.", 
+            "Ots.", 
+            "Mar.", 
+            "Api.", 
+            "Mai.", 
+            "Eka.", 
+            "Uzt.", 
+            "Abu.", 
+            "Ira.", 
+            "Urr.", 
+            "Aza.", 
+            "Abe."
+        ], 
+        "day_abbr": [
+            "Iga.", 
+            "Asl.", 
+            "Asr.", 
+            "Asz.", 
+            "Osg.", 
+            "Osr.", 
+            "Lar."
+        ], 
+        "day": [
+            "Igandea", 
+            "Astelehena", 
+            "Asteartea", 
+            "Asteazkena", 
+            "Osteguna", 
+            "Ostirala", 
+            "Larunbata"
+        ], 
+        "month": [
+            "Urtarrila", 
+            "Otsaila", 
+            "Martxoa", 
+            "Apirila", 
+            "Maiatza", 
+            "Ekaina", 
+            "Uztaila", 
+            "Abuztua", 
+            "Iraila", 
+            "Urria", 
+            "Azaroa", 
+            "Abendua"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "eu"
+    }, 
+    "messages": {
+        "loading": "Kargatzen", 
+        "contract_timeline": "Txikiago ikusi", 
+        "return_to_title": "Titulura itzuli", 
+        "wikipedia": "Wikipedia entziklopedia libretik", 
+        "loading_content": "Edukia kargatzen", 
+        "expand_timeline": "Handiago ikusi", 
+        "loading_timeline": "Kronologia kargatzen..."
+    }, 
+    "dateformats": {
+        "full_long": "yyyy'(e)ko' mmmm'ren' d'(e)an,' hh:MM TT'(r)etan'", 
+        "full_short": "mmm'-'d", 
+        "full": "yyyy'(e)ko' mmmm'k' d", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br /><small>'yyyy'-'mmm'-'d'</small>", 
+        "month": "yyyy'(e)ko' mmmm", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br /><small>'yyyy'-'mmm'-'d'</small>"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fa.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fa.json
new file mode 100644
index 0000000000000000000000000000000000000000..babd845a5d58d7a65e854f7a8bf5e6c7ffa09082
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fa.json
@@ -0,0 +1,74 @@
+{
+    "lang": "fa", 
+    "messages": {
+        "loading": "بارگذاری", 
+        "contract_timeline": "کوچکنمایی", 
+        "return_to_title": "ابتدای زمانبندی", 
+        "wikipedia": "از ویکی پدیا، دانشنامه آزاد", 
+        "loading_content": "بارگذاری", 
+        "expand_timeline": "بزرگنمایی", 
+        "loading_timeline": "بارگذاری، شکیبا باشید..."
+    }, 
+    "api": {
+        "wikipedia": "fa"
+    }, 
+    "direction": "rtl",
+    "date": {
+        "month_abbr": [
+            "فروردین", 
+            "اردیبهشت", 
+            "خرداد", 
+            "تیر", 
+            "مرداد", 
+            "شهریور", 
+            "مهر", 
+            "آبان", 
+            "آذر", 
+            "دی", 
+            "بهمن", 
+            "اسفند"
+        ], 
+        "day_abbr": [
+            "یکشنبه", 
+            "دوشنبه", 
+            "سه شنبه", 
+            "چهارشنبه", 
+            "پنجشنبه", 
+            "جمعه", 
+            "شنبه"
+        ], 
+        "day": [
+            "یکشنبه", 
+            "دوشنبه", 
+            "سه شنبه", 
+            "چهارشنبه", 
+            "پنجشنبه", 
+            "جمعه", 
+            "شنبه"
+        ], 
+        "month": [
+            "فروردین", 
+            "اردیبهشت", 
+            "خرداد", 
+            "تیر", 
+            "مرداد", 
+            "شهریور", 
+            "مهر", 
+            "آبان", 
+            "آذر", 
+            "دی", 
+            "بهمن", 
+            "اسفند"
+        ]
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "time_no_seconds_short": "h:MM TT", 
+        "month_short": "mmm", 
+        "month": "mmmm yyyy", 
+        "full": "mmmm d',' yyyy", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fi.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fi.json
new file mode 100644
index 0000000000000000000000000000000000000000..348b0a45f870c93507940b073edcaf0df26829ed
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fi.json
@@ -0,0 +1,95 @@
+{
+    "lang": "fi", 
+    "date": {
+        "month_abbr": [
+            "tammi", 
+            "helmi", 
+            "maalis", 
+            "huhti", 
+            "touko", 
+            "kesä", 
+            "heinä", 
+            "elo", 
+            "syys", 
+            "loka", 
+            "marras", 
+            "joulu"
+        ], 
+        "day_abbr": [
+            "su", 
+            "ma", 
+            "ti", 
+            "ke", 
+            "to", 
+            "pe", 
+            "la"
+        ], 
+        "day": [
+            "sunnuntai", 
+            "maanantai", 
+            "tiistai", 
+            "keskiviikko", 
+            "torstai", 
+            "perjantai", 
+            "lauauntai"
+        ], 
+        "month": [
+            "tammikuuta", 
+            "helmikuuta", 
+            "maaliskuuta", 
+            "huhtikuuta", 
+            "toukokuuta", 
+            "kesäkuuta", 
+            "heinäkuuta", 
+            "elokuuta", 
+            "syyskuuta", 
+            "lokakuuta", 
+            "marraskuuta", 
+            "joulukuuta"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "fi"
+    }, 
+    "messages": {
+        "loading": "Ladataan", 
+        "contract_timeline": "Tiivistä aikajanaa", 
+        "return_to_title": "Takaisin etusivulle", 
+        "wikipedia": "Wikipediasta", 
+        "loading_content": "Ladataan sisältöä", 
+        "expand_timeline": "Laajenna aikajanaa", 
+        "loading_timeline": "Ladataan aikajanaa… "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d yyyy 'klo' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d. mmm yyyy'</small>'"
+    },
+    "bigdateformats": {
+            "fallback": [
+				[1000000000,"%.2f miljardia vuotta sitten"],
+				[1000000,"%.1f miljoonaa vuotta sitten"],
+				[1000,"%.1f tuhatta vuotta sitten"],
+				[1, "%f vuotta sitten"]
+			],
+		"compact": [
+		            [1000000000,"%.2f mrd.vs"],
+				    [1000000,"%.1f mvs"],
+				    [1000,"%.1f tvs"],
+				    [1, "%f vuotta sitten"]
+		    ],
+		"verbose": [
+		            [1000000000,"%.2f miljardia vuotta sitten"],
+				    [1000000,"%.1f miljoonaa vuotta sitten"],
+				    [1000,"%.1f tuhatta vuotta sitten"],
+				    [1, "%f vuotta sitten"]
+		    ]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fo.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fo.json
new file mode 100644
index 0000000000000000000000000000000000000000..7f67e097b40f4bcfbe780591e5bf6f9fc5937eee
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fo.json
@@ -0,0 +1,75 @@
+{
+    "lang": "fo", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "febr.", 
+            "mars", 
+            "aprÃŒl", 
+            "mai", 
+            "juni", 
+            "juli", 
+            "aug.", 
+            "sept.", 
+            "okt.", 
+            "nov.", 
+            "des."
+        ], 
+        "day_abbr": [
+            "sun.", 
+            "m·n.", 
+            "t˝s.", 
+            "mik.", 
+            "hÛs.", 
+            "frÌ.", 
+            "ley."
+        ], 
+        "day": [
+            "sunnudagur", 
+            "m·nadagur", 
+            "t˝sdagur", 
+            "mikudagur", 
+            "hÛsdagur", 
+            "frÃŒggjadagur", 
+            "leygardagur"
+        ], 
+        "month": [
+            "januar", 
+            "februar", 
+            "mars", 
+            "aprÃŒl", 
+            "mai", 
+            "juni", 
+            "juli", 
+            "august", 
+            "september", 
+            "oktober", 
+            "november", 
+            "desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "fo"
+    }, 
+    "messages": {
+        "loading": "Lesur inn", 
+        "contract_timeline": "Minka t&iacute;&eth;arr&aacute;s", 
+        "return_to_title": "V&iacute;&eth;ka t&iacute;&eth;arr&aacute;s...", 
+        "wikipedia": "Fr· Wikipedia", 
+        "loading_content": "Lesur inn tilfar", 
+        "expand_timeline": "Minka t&iacute;&eth;arr&aacute;s...", 
+        "loading_timeline": "Lesur inn t&iacute;&eth;arr&aacute;s..."
+    }, 
+    "dateformats": {
+        "full_long": "d'.' mmmm yyyy 'klokkan' HH:MM", 
+        "full_short": "d'.' mmm", 
+        "full": "d'.' mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d'.' mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'d'.' mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fr.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fr.json
new file mode 100644
index 0000000000000000000000000000000000000000..ce0181167a468ec99e498b6ea2f4785a393e7a61
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fr.json
@@ -0,0 +1,119 @@
+{
+    "lang": "fr",
+    "date": {
+        "month_abbr": [
+            "janv.",
+            "févr.",
+            "mars",
+            "avril",
+            "mai",
+            "juin",
+            "juil.",
+            "août",
+            "sept.",
+            "oct.",
+            "nov.",
+            "déc."
+        ],
+        "day_abbr": [
+            "Dim.",
+            "Lu.",
+            "Ma.",
+            "Me.",
+            "Jeu.",
+            "Vend.",
+            "Sam."
+        ],
+        "day": [
+            "Dimanche",
+            "Lundi",
+            "Mardi",
+            "Mercredi",
+            "Jeudi",
+            "Vendredi",
+            "Samedi"
+        ],
+        "month": [
+            "janvier",
+            "février",
+            "mars",
+            "avril",
+            "mai",
+            "juin",
+            "juillet",
+            "août",
+            "septembre",
+            "octobre",
+            "novembre",
+            "décembre"
+        ]
+    },
+    "api": {
+        "wikipedia": "fr"
+    },
+    "messages": {
+        "loading": "Chargement",
+        "contract_timeline": "Réduire la frise",
+        "return_to_title": "Retour à la page d'accueil",
+        "wikipedia": "Extrait de Wikipedia, l'encyclopédie libre",
+        "loading_content": "Chargement",
+        "expand_timeline": "Elargir la frise",
+        "loading_timeline": "Chargement de la frise en cours... ",
+        "error": "Erreur",
+        "swipe_to_navigate": "Faites glisser pour naviguer<br><span class='tl-button'>OK</span>",
+        "unknown_read_err": "Une erreur indéterminée est survenue lors de l'accès aux données de votre feuille de calcul.",
+        "invalid_url_err": "Impossible d'accéder aux données de la Timeline. Assurez-vous que votre url est celle d'un Google Spreadsheet ou d'un fichier Timeline json.",
+        "network_err": "Impossible d'accéder à Google Spreadsheet. Assurez-vous que votre Google Spreadsheet est bien publié pour le web.",
+        "empty_feed_err": "Aucune donnée trouvée",
+        "missing_start_date_err": "Date de début manquante",
+        "invalid_data_format_err": "Erreur : La ligne d'entête a été modifiée.",
+        "date_compare_err": "Impossible de comparer les TL.Dates à différentes échelles",
+        "invalid_scale_err": "Echelle invalide",
+        "invalid_date_err": "Date invalide : les jours, mois et années doivent être des nombres.",
+        "invalid_hour_err": "Erreur : Heure invalide",
+        "invalid_minute_err": "Erreur : Minutes invalides",
+        "invalid_second_err": "Erreur : Secondes invalides",
+        "invalid_fractional_err": "Erreur : Fractions de secondes invalides",
+        "invalid_second_fractional_err": "Erreur : Secondes et fractions de secondes invalides",
+        "invalid_year_err": "Année invalide",
+        "flickr_notfound_err": "Photo non trouvée ou privée",
+        "flickr_invalidurl_err": "URL Flickr invalide",
+        "imgur_invalidurl_err": "URL Imgur invalide",
+        "twitter_invalidurl_err": "URL Twitter invalide",
+        "twitter_load_err": "Impossible de charger le tweet",
+        "twitterembed_invalidurl_err": "URL d'embed Twitter invalide",
+        "wikipedia_load_err": "Impossible de charger les données de Wikipedia",
+        "youtube_invalidurl_err": "URL YouTube invalide",
+        "spotify_invalid_url": "URL Spotify invalide",
+        "template_value_err": "Aucune donnée pour cette variable",
+        "invalid_rgb_err": "Argument RGB invalide"
+    },
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'à' HH:MM",
+        "full_short": "d mmm",
+        "full": "d mmmm yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "HH:MM",
+        "time_short": "HH:MM:ss",
+        "year": "yyyy",
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    },
+    "era_labels": {
+        "positive_year": {
+            "prefix": "",
+            "suffix": ""
+        },
+        "negative_year": {
+            "prefix": "",
+            "suffix": "Avant JC"
+        }
+    },
+    "period_labels": {
+        "t": ["a", "p"],
+        "tt": ["am", "pm"],
+        "T": ["A", "P"],
+        "TT": ["AM", "PM"]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fy.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fy.json
new file mode 100644
index 0000000000000000000000000000000000000000..88d01f9b94875c15767549134152a15d778fcf4a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/fy.json
@@ -0,0 +1,75 @@
+{
+  "lang": "fy", 
+  "date": {
+    "month_abbr": [
+      "Jan.", 
+      "Feb.", 
+      "Mar", 
+      "Apr", 
+      "Maaie", 
+      "July", 
+      "July", 
+      "Aug.", 
+      "Sept.", 
+      "Okt.", 
+      "Nov.", 
+      "Des."
+    ], 
+    "day_abbr": [
+      "Snein", 
+      "Moandei", 
+      "Tiisdei", 
+      "Woansdei", 
+      "Tongersdei", 
+      "Freed", 
+      "Sneon"
+    ], 
+    "day": [
+      "Snein", 
+      "Moandei", 
+      "Tiisdei", 
+      "Woansdei", 
+      "Tongersdei", 
+      "Freed", 
+      "Sneon"
+    ], 
+    "month": [
+      "Jannewaris", 
+      "Febrewaris", 
+      "Maart", 
+      "April", 
+      "Maaie", 
+      "Juny", 
+      "July", 
+      "Augustus", 
+      "Septimber", 
+      "Oktober", 
+      "Novimber", 
+      "Desimber"
+    ]
+  }, 
+  "api": {
+    "wikipedia": "fy"
+  }, 
+  "messages": {
+    "loading": "Ynlade", 
+    "contract_timeline": "Tiidline ynzoomen", 
+    "return_to_title": "Wer werom nei it begjin", 
+    "wikipedia": "Fan Wikipedia, de frije ensyklopedy", 
+    "loading_content": "Ynhâld ynlade", 
+    "expand_timeline": "Tiidline útzoomen", 
+    "loading_timeline": "Tiidline ynlade ... "
+  }, 
+  "dateformats": {
+    "full_long": "dddd',' d mmm yyyy 'om' HH:MM", 
+    "full_short": "d mmm", 
+    "full": "d mmmm yyyy", 
+    "time_short": "HH:MM:ss", 
+    "year": "yyyy", 
+    "time_no_seconds_short": "HH:MM", 
+    "month_short": "mmm", 
+    "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'", 
+    "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+    "month": "mmmm yyyy"
+  }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ga.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ga.json
new file mode 100644
index 0000000000000000000000000000000000000000..31dcedcd0c5d141bca9b33e02c4c724c98a74cdb
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ga.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ga", 
+    "date": {
+        "month_abbr": [
+            "Ean.", 
+            "Fea.", 
+            "Már.", 
+            "Aibh.", 
+            "Beal.", 
+            "Meith.", 
+            "Iúil", 
+            "Lún.", 
+            "MF.", 
+            "DF.", 
+            "Samh.", 
+            "Noll."
+        ], 
+        "day_abbr": [
+            "DéDom.", 
+            "DéL.", 
+            "DéM.", 
+            "DéC.", 
+            "DéarD.", 
+            "DéhA.", 
+            "DéSat."
+        ], 
+        "day": [
+            "Dé Domhnaigh", 
+            "Dé Luain", 
+            "Dé Máirt", 
+            "Dé Céadaoin", 
+            "Déardaoin", 
+            "Dé hAoine", 
+            "Dé Sathairn"
+        ], 
+        "month": [
+            "Eanair", 
+            "Feabhra", 
+            "Márta", 
+            "Aibhreán", 
+            "Bealtaine", 
+            "Meitheamh", 
+            "Iúil", 
+            "Lúnasa", 
+            "Meán Fómhair", 
+            "Deireadh Fómhair", 
+            "Samhain", 
+            "Mí Na Nollag"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ga"
+    }, 
+    "messages": {
+        "loading": "Ag Lódáil an Inneachar", 
+        "contract_timeline": "Coimrigh An Amlíne", 
+        "return_to_title": "Ar Ais go dtí an tideal", 
+        "wikipedia": "As Wikipedia, an ciclipéid saor", 
+        "loading_content": "Ag Lódáil an", 
+        "expand_timeline": "Leathnaigh An Amlíne", 
+        "loading_timeline": "Tá an Amlíne ag Lódáil... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy HH:MM", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "'<small>'d mmmm yyyy'</small>' HH:MM", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm yyyy'</small>"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/gl.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/gl.json
new file mode 100644
index 0000000000000000000000000000000000000000..60dc376a793dfbd3694922495c45c236c91ff0fa
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/gl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "gl", 
+    "date": {
+        "month_abbr": [
+            "Xan.", 
+            "Feb.", 
+            "Mar.", 
+            "Abr.", 
+            "Mai.", 
+            "Xuñ.", 
+            "Xul.", 
+            "Ago.", 
+            "Set.", 
+            "Out.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Dom.", 
+            "Lun.", 
+            "Mar.", 
+            "Mér.", 
+            "Xov.", 
+            "Ven.", 
+            "Sáb."
+        ], 
+        "day": [
+            "Domingo", 
+            "Luns", 
+            "Martes", 
+            "Mércores", 
+            "Xoves", 
+            "Venres", 
+            "Sábado"
+        ], 
+        "month": [
+            "Xaneiro", 
+            "Febreiro", 
+            "Marzo", 
+            "Abril", 
+            "Maio", 
+            "Xuño", 
+            "Xullo", 
+            "Agosto", 
+            "Setembro", 
+            "Outubro", 
+            "Novembro", 
+            "Decembro"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "gl"
+    }, 
+    "messages": {
+        "loading": "cargando", 
+        "contract_timeline": "Acurtar a cronoloxía", 
+        "return_to_title": "Volver ao título", 
+        "wikipedia": "Dende Wikipedia, a enciclopedia libre", 
+        "loading_content": "cargando", 
+        "expand_timeline": "Alongar a cronoloxía", 
+        "loading_timeline": "Cronoloxía esta cargando"
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'um' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/he.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/he.json
new file mode 100644
index 0000000000000000000000000000000000000000..0695d0d0ecd9dd4e56af869cfa803f2451a913cf
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/he.json
@@ -0,0 +1,76 @@
+{
+    "lang": "he", 
+    "messages": {
+        "loading": "טוען...", 
+        "contract_timeline": "צמצם את ציר הזמן", 
+        "return_to_title": "חזור לכותרת", 
+        "wikipedia": "מויקיפדיה, האינציקלופדיה החופשית", 
+        "loading_content": "התוכן בטעינה...", 
+        "expand_timeline": "הרחב את ציר הזמן", 
+        "loading_timeline": "טוען את ציר הזמן... "
+    }, 
+    "api": {
+        "wikipedia": "he"
+    }, 
+    "direction": "rtl",
+    "date": {
+        "month_abbr": [
+            "ינואר", 
+            "פברואר", 
+            "מרץ", 
+            "אפריל", 
+            "מאי", 
+            "יוני", 
+            "יולי", 
+            "אוגוסט", 
+            "ספטמבר", 
+            "אוקטובר", 
+            "נובמבר", 
+            "דצמבר"
+        ], 
+        "day_abbr": [
+            "יום א'", 
+            "יום ב'", 
+            "יום ג'", 
+            "יום ד'", 
+            "יום ה'", 
+            "יום ו'", 
+            "שבת"
+        ], 
+        "day": [
+            "ראשון", 
+            "שני", 
+            "שלישי", 
+            "רביעי", 
+            "חמישי", 
+            "שישי", 
+            "שבת"
+        ], 
+        "month": [
+            "ינואר", 
+            "פברואר", 
+            "מרץ", 
+            "אפריל", 
+            "מאי", 
+            "יוני", 
+            "יולי", 
+            "אוגוסט", 
+            "ספטמבר", 
+            "אוקטובר", 
+            "נובמבר", 
+            "דצמבר"
+        ]
+    }, 
+    "dateformats": {
+        "full_long": "d' mmm,' yyyy 'at' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm,' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hi.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hi.json
new file mode 100644
index 0000000000000000000000000000000000000000..e649780cc13f7305eb591a96d70211d996f4b670
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hi.json
@@ -0,0 +1,76 @@
+{
+  "lang": "hi", 
+  "date": {
+    "month_abbr": [
+      "जनवरी", 
+      "फ़रवरी", 
+      "मार्च", 
+      "अप्रैल", 
+      "मई", 
+      "जून", 
+      "जुलाई", 
+      "अगस्त", 
+      "सितम्बर", 
+      "अक्टूबर", 
+      "नवंबर", 
+      "दिसंबर"
+    ], 
+    "day_abbr": [
+      "रवि", 
+      "सोम", 
+      "मंगल", 
+      "बुध", 
+      "गुरु", 
+      "शुक्र", 
+      "शनि"
+    ], 
+    "day": [
+      "रविवार", 
+      "सोमवार", 
+      "मंगलवार", 
+      "बुधवार", 
+      "गुरुवार", 
+      "शुक्रवार", 
+      "शनिवार"
+    ], 
+    "month": [
+      "जनवरी", 
+      "फ़रवरी", 
+      "मार्च", 
+      "अप्रैल", 
+      "मई", 
+      "जून", 
+      "जुलाई", 
+      "अगस्त", 
+      "सितम्बर", 
+      "अक्टूबर", 
+      "नवंबर", 
+      "दिसंबर"
+    ]
+  }, 
+  "api": {
+    "wikipedia": "hi"
+  }, 
+  "messages": {
+    "loading": "लोड हो रहा है", 
+    "contract_timeline": "टाइमलाइन का अनुबंध करें", 
+    "return_to_title": "शीर्षक पर लौटें", 
+    "swipe_nav": "Swipe to Navigate", 
+    "read_more": "और पढ़ें", 
+    "wikipedia": "विकिपीडिया, मुक्त विश्वकोश से", 
+    "expand_timeline": "टाइमलाइन का विस्तार करें", 
+    "loading_timeline": "टाइमलाइन लोड हो रहा है", 
+    "loading_content": "लोड हो रहा है सामग्री"
+  }, 
+  "dateformats": {
+    "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+    "full_short": "mmm d", 
+    "full": "mmmm d',' yyyy", 
+    "year": "yyyy", 
+    "time_no_seconds_short": "h:MM TT", 
+    "month_short": "mmm", 
+    "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'", 
+    "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+    "month": "mmmm yyyy"
+  }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hr.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hr.json
new file mode 100644
index 0000000000000000000000000000000000000000..a2613604edff1d9b97fe4a2f81e8becc642cb8ce
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hr.json
@@ -0,0 +1,75 @@
+{
+    "lang": "hr", 
+    "date": {
+        "month_abbr": [
+            "I", 
+            "II", 
+            "III", 
+            "IV", 
+            "V", 
+            "VI", 
+            "VII", 
+            "VIII", 
+            "IX", 
+            "X", 
+            "XI", 
+            "XII"
+        ], 
+        "day_abbr": [
+            "ned", 
+            "pon", 
+            "uto", 
+            "sri", 
+            "čet", 
+            "pet", 
+            "sub"
+        ], 
+        "day": [
+            "nedjelja", 
+            "ponedjeljak", 
+            "utorak", 
+            "srijeda", 
+            "četvrtak", 
+            "petak", 
+            "subota"
+        ], 
+        "month": [
+            "siječnja", 
+            "veljače", 
+            "ožujka", 
+            "travnja", 
+            "svibnja", 
+            "lipnja", 
+            "srpnja", 
+            "kolovoza", 
+            "rujna", 
+            "listopada", 
+            "studenog", 
+            "prosinca"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "hr"
+    }, 
+    "messages": {
+        "loading": "Učitava se", 
+        "contract_timeline": "Smanji", 
+        "return_to_title": "Početak", 
+        "wikipedia": "Iz Vikipedije, slobodne enciklopedije", 
+        "loading_content": "Sadržaj se učitava", 
+        "expand_timeline": "Povećaj", 
+        "loading_timeline": "Učitavanje... "
+    }, 
+    "dateformats": {
+        "full_long": "dd. mmmm yyyy. 'u' HH:MM", 
+        "full_short": "dd. mmm", 
+        "full": "dd. mmmm yyyy.", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'dd. mmmm yyyy.'</small>'", 
+        "month": "mmmm yyyy.", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy.", 
+        "full_long_small_date": "HH:MM'<br/><small>dd. mmm yyyy.'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hu.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hu.json
new file mode 100644
index 0000000000000000000000000000000000000000..b50e4bc58ccda27b0e417e77bfeec3618daa2c84
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hu.json
@@ -0,0 +1,114 @@
+{
+    "lang": "hu", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "febr.", 
+            "márc.", 
+            "ápr.", 
+            "máj.", 
+            "jún.", 
+            "júl.", 
+            "aug.", 
+            "szept.", 
+            "okt.", 
+            "nov.", 
+            "dec."
+        ], 
+        "day_abbr": [
+            "vas.", 
+            "hétfő", 
+            "kedd", 
+            "szer.", 
+            "csüt.", 
+            "pén.", 
+            "szom."
+        ], 
+        "day": [
+            "vasárnap", 
+            "hétfő", 
+            "kedd", 
+            "szerda", 
+            "csütörtök", 
+            "péntek", 
+            "szombat"
+        ], 
+        "month": [
+            "január", 
+            "február", 
+            "március", 
+            "április", 
+            "május", 
+            "június", 
+            "július", 
+            "augusztus", 
+            "szeptember", 
+            "október", 
+            "november", 
+            "december"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "hu"
+    }, 
+    "messages": {
+        "loading": "Betöltés", 
+        "contract_timeline": "Kicsinyítés", 
+        "return_to_title": "Vissza a címhez", 
+        "wikipedia": "A Wikipédiából, a szabad enciklopédiából", 
+        "loading_content": "Tartalom betöltése", 
+        "expand_timeline": "Nagyítás", 
+        "loading_timeline": "Az idővonal betöltése... "
+    }, 
+    "dateformats": {
+        "full_long": "yyyy. mmm d.',' HH:MM", 
+        "full_short": "mmm d.", 
+        "full": "yyyy. mmmm d.", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM '<br/><small>'yyyy. mmmm d.'</small>'", 
+        "month": "yyyy. mmmm", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM '<br/><small>yyyy. mmm d.'</small>'"
+   },
+    "bigdateformats": {
+            "fallback": [
+                    [1000000000,"%.2f milliárd évvel ezelőtt"],
+                    [1000000,"%.1f millió évvel ezelőtt"],
+                    [1000,"%.1f ezer évvel ezelőtt"],
+                    [1, "%f é.e."]
+            ],
+            "compact": [
+                    [1000000000,"%.2f md.é.e"],
+                    [1000000,"%.1f mó.é.e"],
+                    [1000,"%.1f e.é.e"],
+                    [1, "%f vuotta sitten"]
+            ],
+            "verbose": [
+                    [1000000000,"%.2f milliárd évvel ezelőtt"],
+                    [1000000,"%.1f millió évvel ezelőtt"],
+                    [1000,"%.1f ezer évvel ezelőtt"],
+                    [1, "%f évvel ezelőtt"]
+            ]
+    },
+    "bigdateformats": {
+            "fallback": [
+				    [1000000,"%.1f millió évvel ezelőtt"],
+				    [1000,"%.1f ezer évvel ezelőtt"],
+				    [1, "%f é.e."]
+			],
+		"compact": [
+		            [1000000000,"%.2f md.é.e"],
+				    [1000000,"%.1f mó.é.e"],
+				    [1000,"%.1f e.é.e"],
+				    [1, "%f vuotta sitten"]
+		    ],
+		"verbose": [
+		            [1000000000,"%.2f milliárd évvel ezelőtt"],
+				    [1000000,"%.1f millió évvel ezelőtt"],
+				    [1000,"%.1f ezer évvel ezelőtt"],
+				    [1, "%f évvel ezelőtt"]
+		    ]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hy.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hy.json
new file mode 100644
index 0000000000000000000000000000000000000000..edc614b352ce6f10253e287002bb1bca45d950cd
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/hy.json
@@ -0,0 +1,75 @@
+{
+    "lang": "hy", 
+    "date": {
+        "month_abbr": [
+            "Õ€Õ¶Õ¾.", 
+            "Õ“Õ¥Õ¿.", 
+            "Õ„Õ¡Ö€", 
+            "Ô±ÕºÖ€", 
+            "Õ„Õ¡Õµ", 
+            "Õ€Õ¸Ö‚Õ¶", 
+            "Õ€Õ¸Ö‚Õ¬", 
+            "Õ•Õ£Õ½.", 
+            "Սեպ.", 
+            "Õ€Õ¸Õ¯.", 
+            "Õ†Õ¸Õµ.", 
+            "Ô´Õ¥Õ¯."
+        ], 
+        "day_abbr": [
+            "Ô¿Õ«.", 
+            "ÔµÕ¯.", 
+            "ÔµÖ„.", 
+            "Õ‰Õ¸.", 
+            "Õ€Õ«.", 
+            "ÕˆÖ‚.", 
+            "Õ‡Õ¡."
+        ], 
+        "day": [
+            "Ô¿Õ«Ö€Õ¡Õ¯Õ«", 
+            "ÔµÖ€Õ¯Õ¸Ö‚Õ·Õ¡Õ¢Õ©Õ«", 
+            "ÔµÖ€Õ¥Ö„Õ·Õ¡Õ¢Õ©Õ«", 
+            "Õ‰Õ¸Ö€Õ¥Ö„Õ·Õ¡Õ¢Õ©Õ«", 
+            "Õ€Õ«Õ¶Õ£Õ·Õ¡Õ¢Õ©Õ«", 
+            "ÕˆÖ‚Ö€Õ¢Õ¡Õ©", 
+            "Õ‡Õ¡Õ¢Õ¡Õ©"
+        ], 
+        "month": [
+            "Õ€Õ¸Ö‚Õ¶Õ¾Õ¡Ö€", 
+            "Õ“Õ¥Õ¿Ö€Õ¾Õ¡Ö€", 
+            "Õ„Õ¡Ö€Õ¿", 
+            "Ô±ÕºÖ€Õ«Õ¬", 
+            "Õ„Õ¡ÕµÕ«Õ½", 
+            "Õ€Õ¸Ö‚Õ¶Õ«Õ½", 
+            "Õ€Õ¸Ö‚Õ¬Õ«Õ½", 
+            "Õ•Õ£Õ¸Õ½Õ¿Õ¸Õ½", 
+            "Սեպտեմբեր", 
+            "Õ€Õ¸Õ¯Õ¿Õ¥Õ´Õ¢Õ¥Ö€", 
+            "Õ†Õ¸ÕµÕ¥Õ´Õ¢Õ¥Ö€", 
+            "Ô´Õ¥Õ¯Õ¿Õ¥Õ´Õ¢Õ¥Ö€"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "hy"
+    }, 
+    "messages": {
+        "loading": "Ô²Õ¥Õ¼Õ¶Õ¸Ö‚Õ´", 
+        "contract_timeline": "Նեղացնել ժամանակագրությունը", 
+        "return_to_title": "ÕŽÕ¥Ö€Õ¡Õ¤Õ¡Õ¼Õ¶Õ¡Õ¬ Õ¾Õ¥Ö€Õ¶Õ¡Õ£Ö€Õ«Õ¶", 
+        "wikipedia": "Ô¸Õ½Õ¿ ÕŽÕ«Ö„Õ«ÕºÕ¥Õ¤Õ«Õ¡ Õ¡Õ¦Õ¡Õ¿ Õ°Õ¡Õ¶Ö€Õ¡Õ£Õ«Õ¿Õ¡Ö€Õ¡Õ¶Õ«", 
+        "loading_content": "Ô²Õ¸Õ¾Õ¡Õ¶Õ¤Õ¡Õ¯Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨ Õ¢Õ¥Õ¼Õ¶Õ¾Õ¸Ö‚Õ´ Õ§", 
+        "expand_timeline": "Լայնացնել ժամանակագրությունը", 
+        "loading_timeline": "ÔºÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ¡Õ£Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨ Õ¢Õ¥Õ¼Õ¶Õ¾Õ¸Ö‚Õ´ Õ§... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'at' H:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "H:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "H:MM '<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/id.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/id.json
new file mode 100644
index 0000000000000000000000000000000000000000..ba8f5dee153c1b947d589177a810ba5d42b8b4e5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/id.json
@@ -0,0 +1,75 @@
+{
+    "lang": "id", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Maret", 
+            "April", 
+            "Mei", 
+            "Juni", 
+            "July", 
+            "Agus.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Des."
+        ], 
+        "day_abbr": [
+            "Ahad", 
+            "Sen.", 
+            "Sel.", 
+            "Rabu", 
+            "Kamis", 
+            "Jum.", 
+            "Sab."
+        ], 
+        "day": [
+            "Ahad", 
+            "Senin", 
+            "Selasa", 
+            "Rabu", 
+            "Kamis", 
+            "Jum'at", 
+            "Sabtu"
+        ], 
+        "month": [
+            "Januari", 
+            "Februari", 
+            "Maret", 
+            "April", 
+            "Mei", 
+            "Juni", 
+            "Juli", 
+            "Agustus", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "id"
+    }, 
+    "messages": {
+        "loading": "Memuat", 
+        "contract_timeline": "Ciutkan Timeline", 
+        "return_to_title": "Kembali ke Judul", 
+        "wikipedia": "dari Wikipedia, ensiklopedia bebas", 
+        "loading_content": "Memuat Isi", 
+        "expand_timeline": "Kembangkan Timeline", 
+        "loading_timeline": "Memuat Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'pukul' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/is.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/is.json
new file mode 100644
index 0000000000000000000000000000000000000000..2117b8e81221c4329b5de063d56433d9197eb77a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/is.json
@@ -0,0 +1,75 @@
+{
+    "lang": "is", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "feb.", 
+            "mars", 
+            "apríl", 
+            "maí", 
+            "júní", 
+            "júlí", 
+            "ágúst", 
+            "sept.", 
+            "okt.", 
+            "nóv.", 
+            "des."
+        ], 
+        "day_abbr": [
+            "sun.", 
+            "mán.", 
+            "þri.", 
+            "mið.", 
+            "fim.", 
+            "fös.", 
+            "lau."
+        ], 
+        "day": [
+            "sunnudagur", 
+            "mánudagur", 
+            "þriðjudagur", 
+            "miðvikudagur", 
+            "fimmtudagur", 
+            "föstudagur", 
+            "laugardagur"
+        ], 
+        "month": [
+            "janúar", 
+            "febrúar", 
+            "mars", 
+            "apríl", 
+            "maí", 
+            "júní", 
+            "júlí", 
+            "ágúst", 
+            "september", 
+            "október", 
+            "nóvember", 
+            "desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "is"
+    }, 
+    "messages": {
+        "loading": "Raða", 
+        "contract_timeline": "Minnka tímalínu", 
+        "return_to_title": "Til baka á forsíðu", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Raða", 
+        "expand_timeline": "Stækka tímalínu", 
+        "loading_timeline": "Raða upp tímalínu... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "hh:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "hh:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>'dddd',' mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/it.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/it.json
new file mode 100644
index 0000000000000000000000000000000000000000..89a05c619bdee02004ee7450bdd6307573b35923
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/it.json
@@ -0,0 +1,76 @@
+{
+    "lang": "it", 
+    "date": {
+        "month_abbr": [
+            "Gen", 
+            "Feb", 
+            "Mar", 
+            "Apr", 
+            "Mag", 
+            "Giu", 
+            "Lug", 
+            "Ago", 
+            "Set", 
+            "Ott", 
+            "Nov", 
+            "Dic"
+        ], 
+        "day_abbr": [
+            "Dom.", 
+            "Lun.", 
+            "Mar.", 
+            "Mer.", 
+            "Gio.", 
+            "Ven.", 
+            "Sab."
+        ], 
+        "day": [
+            "Domenica", 
+            "Lunedí", 
+            "Martedí", 
+            "Mercoledí", 
+            "Giovedí", 
+            "Venerdí", 
+            "Sabato"
+        ], 
+        "month": [
+            "Gennaio", 
+            "Febbraio", 
+            "Marzo", 
+            "Aprile", 
+            "Maggio", 
+            "Giugno", 
+            "Luglio", 
+            "Agosto", 
+            "Settembre", 
+            "Ottobre", 
+            "Novembre", 
+            "Dicembre"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "it"
+    }, 
+    "messages": {
+        "loading": "Caricamento", 
+        "contract_timeline": "Contrai la Timeline", 
+        "return_to_title": "Ritorna all'inizio", 
+        "wikipedia": "Wikipedia, L’enciclopedia libera", 
+        "loading_content": "Caricamento contenuti", 
+        "expand_timeline": "Espandi la Timeline", 
+        "loading_timeline": "Caricamento Timeline... ",
+        "swipe_to_navigate": "Scorri per Navigare<br><span class='tl-button'>OK</span>"
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'alle' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/iw.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/iw.json
new file mode 100644
index 0000000000000000000000000000000000000000..5e726b3ca69dfbc0e993aa68632b63d26df44d25
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/iw.json
@@ -0,0 +1,76 @@
+{
+    "lang": "iw", 
+    "messages": {
+        "loading": "טוען...", 
+        "contract_timeline": "צמצם את ציר הזמן", 
+        "return_to_title": "חזור לכותרת", 
+        "wikipedia": "מויקיפדיה, האינציקלופדיה החופשית", 
+        "loading_content": "התוכן בטעינה...", 
+        "expand_timeline": "הרחב את ציר הזמן", 
+        "loading_timeline": "טוען את ציר הזמן... "
+    }, 
+    "api": {
+        "wikipedia": "he"
+    }, 
+    "direction": "rtl",
+    "date": {
+        "month_abbr": [
+            "ינואר", 
+            "פברואר", 
+            "מרץ", 
+            "אפריל", 
+            "מאי", 
+            "יוני", 
+            "יולי", 
+            "אוגוסט", 
+            "ספטמבר", 
+            "אוקטובר", 
+            "נובמבר", 
+            "דצמבר"
+        ], 
+        "day_abbr": [
+            "יום א'", 
+            "יום ב'", 
+            "יום ג'", 
+            "יום ד'", 
+            "יום ה'", 
+            "יום ו'", 
+            "שבת"
+        ], 
+        "day": [
+            "ראשון", 
+            "שני", 
+            "שלישי", 
+            "רביעי", 
+            "חמישי", 
+            "שישי", 
+            "שבת"
+        ], 
+        "month": [
+            "ינואר", 
+            "פברואר", 
+            "מרץ", 
+            "אפריל", 
+            "מאי", 
+            "יוני", 
+            "יולי", 
+            "אוגוסט", 
+            "ספטמבר", 
+            "אוקטובר", 
+            "נובמבר", 
+            "דצמבר"
+        ]
+    }, 
+    "dateformats": {
+        "full_long": "d' mmm,' yyyy 'at' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm,' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ja.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ja.json
new file mode 100644
index 0000000000000000000000000000000000000000..c753f7c8685472b9831420f197432c2edc7d6d12
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ja.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ja", 
+    "date": {
+        "month_abbr": [
+            "1月", 
+            "2月", 
+            "3月", 
+            "4月", 
+            "5月", 
+            "6月", 
+            "7月", 
+            "8月", 
+            "9月", 
+            "10月", 
+            "11月", 
+            "12月"
+        ], 
+        "day_abbr": [
+            "æ—¥", 
+            "月", 
+            "火", 
+            "æ°´", 
+            "木", 
+            "金", 
+            "土"
+        ], 
+        "day": [
+            "日曜日", 
+            "月曜日", 
+            "火曜日", 
+            "水曜日", 
+            "木曜日", 
+            "金曜日", 
+            "土曜日"
+        ], 
+        "month": [
+            "1月", 
+            "2月", 
+            "3月", 
+            "4月", 
+            "5月", 
+            "6月", 
+            "7月", 
+            "8月", 
+            "9月", 
+            "10月", 
+            "11月", 
+            "12月"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ja"
+    }, 
+    "messages": {
+        "loading": "ローディング", 
+        "contract_timeline": "タイムラインを縮めます", 
+        "return_to_title": "タイトルへ戻ります", 
+        "wikipedia": "出典:フリー百科事典『ウィキペディア(Wikipedia)』", 
+        "loading_content": "コンテンツをロードしています", 
+        "expand_timeline": "タイムラインを展開します", 
+        "loading_timeline": "タイムラインをロードしています…"
+    }, 
+    "dateformats": {
+        "full_long": "yyyy年m月d日 H時M分s秒", 
+        "full_short": "yyyy年m月d日", 
+        "full": "yyyy年 m月d日 (ddd)", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'yyyy年m月d日'</small>'", 
+        "month": "yyyy年 m月d日 (ddd)", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyyå¹´", 
+        "full_long_small_date": "HH:MM:ss'<br/><small>'yyyy年m月d日'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ka.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ka.json
new file mode 100644
index 0000000000000000000000000000000000000000..8d2c6603d12a7dce1748f381868a3ac0b97cd117
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ka.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ka", 
+    "date": {
+        "month_abbr": [
+            "იან.", 
+            "თებ.", 
+            "მარტი", 
+            "აპრ", 
+            "მაი.", 
+            "ივნ.", 
+            "ივლ.", 
+            "აგვ.", 
+            "სექ.", 
+            "ოქტ.", 
+            "ნოე.", 
+            "დეკ."
+        ], 
+        "day_abbr": [
+            "კვ.", 
+            "ორ.", 
+            "სამ.", 
+            "ოთხ.", 
+            "ხუთ.", 
+            "პარ.", 
+            "შაბ."
+        ], 
+        "day": [
+            "კვირა", 
+            "ორშაბათი", 
+            "სამშაბათი", 
+            "ოთხშაბათი", 
+            "ხუთშაბათი", 
+            "პარასკევი", 
+            "შაბათი"
+        ], 
+        "month": [
+            "იანვარი", 
+            "თებერვალი", 
+            "მარტი", 
+            "აპრილი", 
+            "მაისი", 
+            "ივნისი", 
+            "ივლისი", 
+            "აგვისტო", 
+            "სექტემბერი", 
+            "ოქტომბერი", 
+            "ნოემბერი", 
+            "დეკემბერი"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ka"
+    }, 
+    "messages": {
+        "loading": "ჩამოტვირთვა", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "დაბრუნდი თავში", 
+        "wikipedia": "თავისუფალი ენციკლოპედია Wikipedia-დან", 
+        "loading_content": "შინაარსის ჩამოტვირთვა", 
+        "expand_timeline": "გაშალე თაიმლაინი", 
+        "loading_timeline": "იტვირთება თაიმლაინი... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ko.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ko.json
new file mode 100644
index 0000000000000000000000000000000000000000..7e551939200c09de79f43d22a3835280a0c6d2d4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ko.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ko", 
+    "date": {
+        "month_abbr": [
+            "01", 
+            "02", 
+            "03", 
+            "04", 
+            "05", 
+            "06", 
+            "07", 
+            "08", 
+            "09", 
+            "10", 
+            "11", 
+            "12"
+        ], 
+        "day_abbr": [
+            "일", 
+            "ì›”", 
+            "í™”", 
+            "수", 
+            "목", 
+            "금", 
+            "토"
+        ], 
+        "day": [
+            "일요일", 
+            "월요일", 
+            "화요일", 
+            "수요일", 
+            "목요일", 
+            "금요일", 
+            "토요일"
+        ], 
+        "month": [
+            "1", 
+            "2", 
+            "3", 
+            "4", 
+            "5", 
+            "6", 
+            "7", 
+            "8", 
+            "9", 
+            "10", 
+            "11", 
+            "12"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ko"
+    }, 
+    "messages": {
+        "loading": "불러오는중", 
+        "contract_timeline": "타임라인 축소", 
+        "return_to_title": "첫화면으로", 
+        "wikipedia": "출처: 위키피디아, 우리 모두의 백과사전", 
+        "loading_content": "내용을 불러오고 있습니다.", 
+        "expand_timeline": "타임라인 확대", 
+        "loading_timeline": "타임라인을 불러오고 있습니다.... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'um' HH:MM", 
+        "full_short": "mm-dd", 
+        "full": "yyyy년 m월 d일 ", 
+        "month_short": "mm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'yyyy mmm d'</small>'", 
+        "month": "yyyyë…„ mì›”", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd','yyyy mmm d'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lb.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lb.json
new file mode 100644
index 0000000000000000000000000000000000000000..24e3a365e28c638444e21b56c9e42e29eb593bdd
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lb.json
@@ -0,0 +1,75 @@
+{
+    "lang": "lb", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mäe.", 
+            "Abr.", 
+            "Mee", 
+            "Jun.", 
+            "Jul", 
+            "Aug.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Dez."
+        ], 
+        "day_abbr": [
+            "Son.", 
+            "Méi.", 
+            "Dë.", 
+            "Më.", 
+            "Do.", 
+            "Fr.", 
+            "Sa."
+        ], 
+        "day": [
+            "Sonndeg", 
+            "Méindeg", 
+            "Dënschdeg", 
+            "Mëttwoch", 
+            "Donneschden", 
+            "Freiden", 
+            "Samschden"
+        ], 
+        "month": [
+            "Januar", 
+            "Februar", 
+            "Mäerz", 
+            "Abrëll", 
+            "Mee", 
+            "Juni", 
+            "Juli", 
+            "August", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Dezember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "lb"
+    }, 
+    "messages": {
+        "loading": "Lued", 
+        "contract_timeline": "Timeline verklengeren", 
+        "return_to_title": "Zeréck zum Titel", 
+        "wikipedia": "Vu Wikipedia, der fräier Enzyklopedie", 
+        "loading_content": "Inhalt lued", 
+        "expand_timeline": "Timeline vergréisseren", 
+        "loading_timeline": "Timeline gëtt gelueden... "
+    }, 
+    "dateformats": {
+        "full_long": "d'.' mmm yyyy 'um' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "d'.' mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'d'.' mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "hh:MM", 
+        "time_short": "hh:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM'<br/><small>d'.' mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lt.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lt.json
new file mode 100644
index 0000000000000000000000000000000000000000..4bac8d4fc42db789ee7a58eb4c6f572ffb8026d4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lt.json
@@ -0,0 +1,75 @@
+{
+    "lang": "lt", 
+    "date": {
+        "month_abbr": [
+            "Saus.", 
+            "Vas.", 
+            "Kov.", 
+            "Bal.", 
+            "Geg.", 
+            "Birž.", 
+            "Liep.", 
+            "Rugpj.", 
+            "Rug.", 
+            "Spal.", 
+            "Lapkr.", 
+            "Gruod."
+        ], 
+        "day_abbr": [
+            "Sek.", 
+            "Pirm.", 
+            "Antr.", 
+            "Treč.", 
+            "Ketv.", 
+            "Penkt.", 
+            "Šešt."
+        ], 
+        "day": [
+            "Sekmadienis", 
+            "Pirmadienis", 
+            "Antradienis", 
+            "Trečiadienis", 
+            "Ketvirtadienis", 
+            "Penktadienis", 
+            "Šeštadienis"
+        ], 
+        "month": [
+            "Sausio", 
+            "Vasario", 
+            "Kovo", 
+            "Balandžio", 
+            "Gegužės", 
+            "Birželio", 
+            "Liepos", 
+            "Rugpjūčio", 
+            "RugsÄ—jo", 
+            "Spalio", 
+            "Lapkričio", 
+            "Gruodžio"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "lt"
+    }, 
+    "messages": {
+        "loading": "Kraunama", 
+        "contract_timeline": "Sutraukti laiko juostÄ…", 
+        "return_to_title": "Grįžti į titulinį", 
+        "wikipedia": "IÅ¡ Vikipedijos, laisvosios enciklopedijos", 
+        "loading_content": "Kraunamas turinys... ", 
+        "expand_timeline": "IÅ¡plÄ—sti laiko juostÄ…", 
+        "loading_timeline": "Kraunama laiko juosta... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lv.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lv.json
new file mode 100644
index 0000000000000000000000000000000000000000..fb0a8f6c8c59392096d4676e1106dde41b006b16
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/lv.json
@@ -0,0 +1,75 @@
+{
+    "lang": "lv", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mar.", 
+            "Apr.", 
+            "Mai.", 
+            "JÅ«n.", 
+            "JÅ«l.", 
+            "Aug.", 
+            "Sep.", 
+            "Okt.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Sun.", 
+            "Mon.", 
+            "Tues.", 
+            "Wed.", 
+            "Thurs.", 
+            "Fri.", 
+            "Sat."
+        ], 
+        "day": [
+            "Svētdiena", 
+            "Pirmdiena", 
+            "Otrdiena", 
+            "Trešdiena", 
+            "Ceturtdiena", 
+            "Piektdiena", 
+            "Sestdiena"
+        ], 
+        "month": [
+            "Janvāris", 
+            "Februāris", 
+            "Marts", 
+            "Aprīlis", 
+            "Maijs", 
+            "JÅ«nijs", 
+            "JÅ«lijs", 
+            "Augusts", 
+            "Septembris", 
+            "Oktobris", 
+            "Novembris", 
+            "Decembris"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "lv"
+    }, 
+    "messages": {
+        "loading": "Ielādējas", 
+        "contract_timeline": "Sašaurināt grafiku", 
+        "return_to_title": "Atgriezties uz sākumu", 
+        "wikipedia": "No Wikipedia, brīvās enciklopēdijas", 
+        "loading_content": "Ielādējas saturs", 
+        "expand_timeline": "Izvērst grafiku", 
+        "loading_timeline": "Ielādējas grafiks... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "d. mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ms.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ms.json
new file mode 100644
index 0000000000000000000000000000000000000000..135f389f64edd022b25f8467ba57d9b8a94536ff
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ms.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ms", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mac", 
+            "Apr", 
+            "Mei", 
+            "Jun", 
+            "Jul", 
+            "Ogos.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Dis."
+        ], 
+        "day_abbr": [
+            "Ahd.", 
+            "Isn.", 
+            "Sel.", 
+            "Rab.", 
+            "Kha.", 
+            "Jum.", 
+            "Sab."
+        ], 
+        "day": [
+            "Ahad", 
+            "Isnin", 
+            "Selasa", 
+            "Rabu", 
+            "Khamis", 
+            "Jumaat", 
+            "Sabtu"
+        ], 
+        "month": [
+            "Januari", 
+            "Februari", 
+            "Mac", 
+            "April", 
+            "Mei", 
+            "Jun", 
+            "Julai", 
+            "Ogos", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Disember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ms"
+    }, 
+    "messages": {
+        "loading": "Memuat", 
+        "contract_timeline": "Kecilkan Garis Masa", 
+        "return_to_title": "Kembali ke Tajuk", 
+        "wikipedia": "Daripada Wikipedia, ensiklopedia bebas.", 
+        "loading_content": "Memuat Kandungan", 
+        "expand_timeline": "Besarkan Garis Masa", 
+        "loading_timeline": "Memuat Garis Masa... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm yyyy 'jam' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/my.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/my.json
new file mode 100644
index 0000000000000000000000000000000000000000..33448abaf2188eb38a02c55ebe89341bc2d01f54
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/my.json
@@ -0,0 +1,124 @@
+{       
+    "name": "Burmese",  
+    "lang": "my",
+    "date": {
+        "month_abbr": [
+            "ဇန်", 
+            "ဖေ", 
+            "မတ်", 
+            "ဧပြီ", 
+            "မေ", 
+            "ဇွန်", 
+            "ဇူလိုင်", 
+            "ဩဂုတ်", 
+            "စက်", 
+            "အောက်", 
+            "နို", 
+            "ဒီ"
+        ], 
+        "day_abbr": [
+            "နွေ", 
+            "လာ", 
+            "အင်္ဂါ", 
+            "ဗု", 
+            "ကြာ", 
+            "သော", 
+            "စနေ"
+        ],  
+        "day":  [
+            "တနင်္ဂနွေ",
+            "တနင်္လာ",
+            "အင်္ဂါ",
+            "ဗုဒ္ဓဟူး",
+            "ကြာသပတေး",
+            "သောကြာ",
+            "စနေ"
+        ],      
+        "month": [
+            "ဇန်နဝါရီ",
+            "ဖေဖော်ဝါရီ",
+            "မတ်",
+            "ဧပြီ",
+            "မေ",
+            "ဇွန်",
+            "ဇူလိုင်",
+            "ဩဂုတ်",
+            "စက်တင်ဘာ",
+            "အောက်တိုဘာ",
+            "နိုဝင်ဘာ",
+            "ဒီဇင်ဘာ"
+        ]       
+    },      
+    "api":  {   
+        "wikipedia": "my"
+    },  
+    "messages": {   
+        "loading": "လုပ်ဆောင်နေသည်",
+        "error": "မှားယွင်းချက်",
+        "contract_timeline": "အချိန်အလိုက် မှတ်တမ်းစာချုပ်",
+        "return_to_title": "ခေါင်းစဉ်သို့ ပြန်သွားရန်",
+        "wikipedia": "ဝီကီ အခမဲ့ စွယ်စုံကျမ်းမှ",
+        "loading_content": "အကြောင်းအရာ လုပ်ဆောင်နေသည်",
+        "expand_timeline": "အချိန်အလိုက် မှတ်တမ်း အား ချဲ့သည်",
+        "loading_timeline": "အချိန်အလိုက် မှတ်တမ်း လုပ်ဆောင်နေသည်",
+        "swipe_to_navigate": "လေ့လာစူးစမ်း ဖို့ ပွတ်ဆွဲ<br><span class='tl-button'>OK</span>",
+        "unknown_read_err": "သင်၏အချက်အလက် ကိန်းဂဏန်းဇယား အား ဖတ်ရန်ကြိုးစား နေစဉ် မျှော်လင့်မထားပဲ မှားယွင်းခဲ့ပါသည်",
+        "invalid_url_err": "အချိန်အလိုက်မှတ်တမ်း အချက်အလက်အား ဖတ်ရန် မလုပ်ဆောင်နိုင်ပါ။ သင်၏ လင့်ခ်  သည် ဂူဂလ် စာရင်းကိန်းဂဏန်း အချက်အလက် ဇယား (သို့မဟုတ်) အချိန်အလိုက် မှတ်တမ်း JSON ဖိုင် နှင့် ကိုက်ညီမူ့ ရှိရန် လိုအပ်ပါသည်။",
+        "network_err": "သင်၏ ဂူဂလ် စာရင်းကိန်းဂဏန်း အချက်အလက် ဇယား အား ဖတ်ရန် မလုပ်ဆောင်နိုင်ပါ။ ဝက်ဆိုက် ပေါ်သို့ ဦးစွာတင်ထားရန် လိုအပ်ပါသည်",
+        "empty_feed_err": "အချက်အလက် များအား ရှာမတွေ့ပါ",
+        "missing_start_date_err": "စတင်သည့် နေ့အား ရှာမတွေ့ပါ။",
+        "invalid_data_format_err": "ခေါင်းစဉ် အတန်းအား ပြုပြင် မွန်းမံပြီးပါပြီ",
+        "date_compare_err": "မတူညီသော အတိုင်းအတာ ပေါ်တွင် အချိန်အလိုက်မှတ်တမ်း နေ့စွဲများ အား နှိုင်းယှဉ်လို့ မရပါ။",
+        "invalid_scale_err": "အတိုင်းအတာ မှားနေပါသည်။",
+        "invalid_date_err": "ရက်စွဲ မှားနေပါသည်။ လ၊ နေ့ နှင့် နှစ် များသည် နံပါတ်များ နှင့် ဖြစ်ရပါမည်",
+        "invalid_separator_error": "အချိန်ကာလ ပြ မှားနေပါသည်။ (:) လွဲမှားအသုံး ပြုထားခြင်း (သို့မဟုတ်) (.) နှင့် ခွဲခြားထားခြင်း။",
+        "invalid_hour_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (နာရီ)",
+        "invalid_minute_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (မိနစ်)",
+        "invalid_second_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (စက္ကန့်)",
+        "invalid_fractional_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (အနုစိတ် စက္ကန့်များ)",
+        "invalid_second_fractional_err": "အချိန်ကာလ ပြ မှားနေပါသည်။ (စက္ကန့် များနှင့် အနုစိတ် စက္ကန့်များ)",
+        "invalid_year_err": "နှစ် မှားနေပါသည်။",
+        "flickr_notfound_err": "ပုံအား ရှာမတွေ့ပါ (သို့မဟုတ်) ကိုယ်ပိုင်ပြုလုပ်ထားပါသည်။",
+        "flickr_invalidurl_err": "ဖလစ်ကာ လင့်ခ် မှားနေပါသည်။",
+        "imgur_invalidurl_err": "Imgur လင့်ခ် မှားနေပါသည်။",
+        "twitter_invalidurl_err": "တွစ်တာ လင့်ခ် မှားနေပါသည်။",
+        "twitter_load_err": "tweet အားတင်လို့ မရပါ",
+        "twitterembed_invalidurl_err": "ဝင်နေသော တွစ်တာ လင့်ခ် မှားနေပါသည်။",
+        "wikipedia_load_err": "ဝီကီအား မဝင်ရောက်နိုင်ပါ။",
+        "youtube_invalidurl_err": "ယူကျူ့ လင်ခ့် မှားနေပါသည်။",
+        "spotify_invalid_url": "စပေါ့တီဖိုင်း လင့်ခ် မှားနေပါသည်။",
+        "template_value_err": "ကိန်းရှင်အတွက် ပံ့ပိုးမှု မရှိပါ။",
+        "invalid_rgb_err": "RGB ငြင်းဆိုမှု မှားနေပါသည်။",
+        "time_scale_scale_err": "အတိုင်းအတာ အတွက် အချိန်မှ ရက်စွဲ မည်သို့ ရရှိသည်ကို မသိပါ။",
+        "axis_helper_no_options_err": "Axis helper အား ပြုပြင်ရန် လိုအပ်ပါသည်။",
+        "axis_helper_scale_err": "အတိုင်းအတာအတွက် AxisHelper မရရှိနိုင်ပါ။"
+    },
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT",
+        "full_short": "mmm d",
+        "full": "mmmm d',' yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "h:MM TT",
+        "time_short": "h:MM:ss TT",
+        "year": "yyyy",
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    },
+    "era_labels": { 
+        "positive_year": {
+            "prefix": "",
+            "suffix": ""
+        },
+        "negative_year": { 
+            "prefix": "",
+            "suffix": "BCE"
+        }
+    },
+    "period_labels": {  
+        "t": ["a", "p"],
+        "tt": ["am", "pm"],
+        "T": ["A", "P"],
+        "TT": ["AM", "PM"]
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ne.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ne.json
new file mode 100644
index 0000000000000000000000000000000000000000..8791c8a4f9f250ca7afef125a99a8cc07d507f75
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ne.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ne", 
+    "date": {
+        "month_abbr": [
+            "जनवरी", 
+            "फेब्रुवरी", 
+            "मार्च", 
+            "अप्रिल", 
+            "मे", 
+            "जून", 
+            "जुलाई", 
+            "अगस्ट", 
+            "सेप्टेम्बर", 
+            "अक्टोबर", 
+            "नोभेम्बर", 
+            "डिसेम्बर"
+        ], 
+        "day_abbr": [
+            "आइतबार", 
+            "सोमबार", 
+            "मंगलबार", 
+            "बुधबार", 
+            "बिहिबार", 
+            "शुक्रबार", 
+            "शनिबार"
+        ], 
+        "day": [
+            "आइतबार", 
+            "सोमबार", 
+            "मंगलबार", 
+            "बुधबार", 
+            "बिहिबार", 
+            "शुक्रबार", 
+            "शनिबार"
+        ], 
+        "month": [
+            "जनवरी", 
+            "फेब्रुवरी", 
+            "मार्च", 
+            "अप्रिल", 
+            "मे", 
+            "जून", 
+            "जुलाई", 
+            "अगस्ट", 
+            "सेप्टेम्बर", 
+            "अक्टोबर", 
+            "नोभेम्बर", 
+            "डिसेम्बर"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ne"
+    }, 
+    "messages": {
+        "loading": "लोड हुदैछ", 
+        "contract_timeline": "टाइमलाइन छोटो बनाउनुहोस्", 
+        "return_to_title": "शीर्षकमा फर्कनुहोस्", 
+        "wikipedia": "विकिपिडियाबाट", 
+        "loading_content": "सामग्री लोड हुदैछ", 
+        "expand_timeline": "टाइमलाइन लामो बनाउनुहोस्", 
+        "loading_timeline": "टाइमलाइन लोड हुदैछ... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/nl.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/nl.json
new file mode 100644
index 0000000000000000000000000000000000000000..8ccee4cc5c3443e2418a530d21b84a2d2c167788
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/nl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "nl", 
+    "date": {
+        "month_abbr": [
+            "jan", 
+            "febr", 
+            "maa", 
+            "apr", 
+            "mei", 
+            "juni", 
+            "juli", 
+            "aug", 
+            "sept", 
+            "okt", 
+            "nov", 
+            "dec"
+        ], 
+        "day_abbr": [
+            "zo", 
+            "ma", 
+            "di", 
+            "wo", 
+            "do", 
+            "vr", 
+            "za"
+        ], 
+        "day": [
+            "zondag", 
+            "maandag", 
+            "dinsdag", 
+            "woensdag", 
+            "donderdag", 
+            "vrijdag", 
+            "zaterdag"
+        ], 
+        "month": [
+            "januari", 
+            "februari", 
+            "maart", 
+            "april", 
+            "mei", 
+            "juni", 
+            "juli", 
+            "augustus", 
+            "september", 
+            "oktober", 
+            "november", 
+            "december"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "nl"
+    }, 
+    "messages": {
+        "loading": "Laden", 
+        "contract_timeline": "Tijdlijn inzoomen", 
+        "return_to_title": "Terug naar het begin", 
+        "wikipedia": "From Wikipedia, the free encyclopedia", 
+        "loading_content": "Inhoud laden", 
+        "expand_timeline": "Tijdlijn uitzoomen", 
+        "loading_timeline": "Tijdlijn laden ... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'om' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/no.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/no.json
new file mode 100644
index 0000000000000000000000000000000000000000..5bb8a4da30a613ce510184095ffa6a1fc331240b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/no.json
@@ -0,0 +1,76 @@
+{
+    "lang": "no", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mars", 
+            "Apr.", 
+            "Mai", 
+            "Juni", 
+            "Juli", 
+            "Aug.", 
+            "Sep.", 
+            "Okt.", 
+            "Nov.", 
+            "Des."
+        ], 
+        "day_abbr": [
+            "Søn.", 
+            "Man.", 
+            "Tir.", 
+            "Ons.", 
+            "Tor.", 
+            "Fre.", 
+            "Lør."
+        ], 
+        "day": [
+            "Søndag", 
+            "Mandag", 
+            "Tirsdag", 
+            "Onsdag", 
+            "Torsdag", 
+            "Fredag", 
+            "Lørdag"
+        ], 
+        "month": [
+            "Januar", 
+            "Februar", 
+            "Mars", 
+            "April", 
+            "Mai", 
+            "Juni", 
+            "Juli", 
+            "August", 
+            "September", 
+            "Oktober", 
+            "November", 
+            "Desember"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "no"
+    }, 
+    "messages": {
+        "loading": "Laster", 
+        "contract_timeline": "Krymp tidslinje", 
+        "return_to_title": "Tilbake til tittel", 
+        "wikipedia": "Fra Wikipedia, den frie encyklopedi", 
+        "loading_content": "Laster innhold", 
+        "expand_timeline": "Utvid tidslinje", 
+        "loading_timeline": "Laster tidslinje... ",
+        "swipe_to_navigate": "Sveip for å navigere<br><span class='tl-button'>OK</span>"
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d. mmm',' yyyy 'kl.' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d. mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pl.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pl.json
new file mode 100644
index 0000000000000000000000000000000000000000..ef557a34fb14cf81086e6c71d466978730baba73
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "pl", 
+    "date": {
+        "month_abbr": [
+            "Sty.", 
+            "Lut.", 
+            "Mar.", 
+            "Kwi.", 
+            "Maj.", 
+            "Cze.", 
+            "Lip.", 
+            "Sie.", 
+            "Wrz.", 
+            "Paź.", 
+            "Lis.", 
+            "Gru."
+        ], 
+        "day_abbr": [
+            "Nie.", 
+            "Pon.", 
+            "Wto.", 
+            "Åšro.", 
+            "Czw.", 
+            "PiÄ….", 
+            "Sob."
+        ], 
+        "day": [
+            "Niedziela", 
+            "Poniedziałek", 
+            "Wtorek", 
+            "Åšroda", 
+            "Czwartek", 
+            "PiÄ…tek", 
+            "Sobota"
+        ], 
+        "month": [
+            "Stycznia", 
+            "Lutego", 
+            "Marca", 
+            "Kwietnia", 
+            "Maja", 
+            "Czerwca", 
+            "Lipca", 
+            "Sierpnia", 
+            "Września", 
+            "Października", 
+            "Listopada", 
+            "Grudnia"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "pl"
+    }, 
+    "messages": {
+        "loading": "Ładowanie", 
+        "contract_timeline": "Zmniejsz Timeline", 
+        "return_to_title": "Wróć do tytułu", 
+        "wikipedia": "Z Wikipedii, wolnej encyklopedii", 
+        "loading_content": "Ładowanie zawartości", 
+        "expand_timeline": "Powiększ Timeline", 
+        "loading_timeline": "Ładowanie Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d mmm yyyy 'um' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pt-br.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pt-br.json
new file mode 100644
index 0000000000000000000000000000000000000000..7c99c660a1a331661a8973023877ad4ed68ffead
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pt-br.json
@@ -0,0 +1,75 @@
+{
+    "lang": "pt-br", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Fev.", 
+            "Mar.", 
+            "Abr.", 
+            "Mai.", 
+            "Jun.", 
+            "Jul.", 
+            "Ago.", 
+            "Set.", 
+            "Out.", 
+            "Nov.", 
+            "Dez."
+        ], 
+        "day_abbr": [
+            "Dom.", 
+            "Seg.", 
+            "Ter.", 
+            "Qua.", 
+            "Qui.", 
+            "Sex.", 
+            "Sáb."
+        ], 
+        "day": [
+            "Domingo", 
+            "Segunda", 
+            "Terça", 
+            "Quarta", 
+            "Quinta", 
+            "Sexta", 
+            "Sábado"
+        ], 
+        "month": [
+            "Janeiro", 
+            "Fevereiro", 
+            "Março", 
+            "Abril", 
+            "Maio", 
+            "Junho", 
+            "Julho", 
+            "Agosto", 
+            "Setembro", 
+            "Outubro", 
+            "Novembro", 
+            "Dezembro"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "pt"
+    }, 
+    "messages": {
+        "loading": "Carregando", 
+        "contract_timeline": "Contrair Timeline", 
+        "return_to_title": "Voltar para o título", 
+        "wikipedia": "Wikipédia, A enciclopédia livre", 
+        "loading_content": "Carregando Conteúdo", 
+        "expand_timeline": "Expandir Timeline", 
+        "loading_timeline": "Carregando Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' d 'de' mmm',' yyyy 'às' hh:MM TT", 
+        "full_short": "d 'de' mmm", 
+        "full": "d 'de' mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "hh:MM TT'<br/><small>'d 'de' mmmm',' yyyy'</small>'", 
+        "month": "mmmm 'de' yyyy", 
+        "time_no_seconds_short": "hh:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>'dddd',' d 'de' mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pt.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pt.json
new file mode 100644
index 0000000000000000000000000000000000000000..b44dbb3f0a7a0e318855b2f3b2a0510b0155fdba
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/pt.json
@@ -0,0 +1,75 @@
+{
+    "lang": "pt", 
+    "date": {
+        "month_abbr": [
+            "Jan", 
+            "Fev", 
+            "Mar", 
+            "Abr", 
+            "Maio", 
+            "Jun", 
+            "Jul", 
+            "Ago", 
+            "Set", 
+            "Out", 
+            "Nov", 
+            "Dez"
+        ], 
+        "day_abbr": [
+            "Dom", 
+            "Seg", 
+            "Ter", 
+            "Qua", 
+            "Qui", 
+            "Sex", 
+            "Sab"
+        ], 
+        "day": [
+            "Domingo", 
+            "Segunda", 
+            "Terça", 
+            "Quarta", 
+            "Quinta", 
+            "Sexta", 
+            "Sabado"
+        ], 
+        "month": [
+            "Janeiro", 
+            "Fevereiro", 
+            "Março", 
+            "Abril", 
+            "Maio", 
+            "Junho", 
+            "Julho", 
+            "Agosto", 
+            "Setembro", 
+            "Outubro", 
+            "Novembro", 
+            "Dezembro"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "pt"
+    }, 
+    "messages": {
+        "loading": "A carregar", 
+        "contract_timeline": "Colapsar Timeline", 
+        "return_to_title": "Voltar ao Título", 
+        "wikipedia": "Wikipedia, A enciclopedia Livre.", 
+        "loading_content": "A carregar o conteúdo", 
+        "expand_timeline": "Expandir Timeline", 
+        "loading_timeline": "A carregar a timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/rm.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/rm.json
new file mode 100644
index 0000000000000000000000000000000000000000..cb0d34a7e0825f0311081c8cc271c7262ce66854
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/rm.json
@@ -0,0 +1,75 @@
+{
+    "lang": "rm", 
+    "date": {
+        "month_abbr": [
+            "Schan.", 
+            "Favr.", 
+            "Mars", 
+            "Avr.", 
+            "Matg", 
+            "Zercl.", 
+            "Fan.", 
+            "Avust", 
+            "Sett.", 
+            "Oct.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Du", 
+            "Gli", 
+            "Ma", 
+            "Me", 
+            "Gie", 
+            "Ve", 
+            "So"
+        ], 
+        "day": [
+            "Dumengia", 
+            "Glindesdi", 
+            "Mardi", 
+            "Mesemna", 
+            "Gievgia", 
+            "Venderdi", 
+            "Sonda"
+        ], 
+        "month": [
+            "Schaner", 
+            "Favrer", 
+            "Mars", 
+            "Avrigl", 
+            "Matg", 
+            "Zercladur", 
+            "Fanadur", 
+            "Avust", 
+            "Settember", 
+            "October", 
+            "November", 
+            "December"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "rm"
+    }, 
+    "messages": {
+        "loading": "Chargiar", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Turnar al titel", 
+        "wikipedia": "Da Vichipedia, l'enciclopedia libra", 
+        "loading_content": "Chargiar il cuntegn", 
+        "expand_timeline": "Expander la cronologia", 
+        "loading_timeline": "Chargiar la cronologia... "
+    }, 
+    "dateformats": {
+        "full_long": "d 'da' mmm yyyy', las' HH:M", 
+        "full_short": "d 'da' mmm", 
+        "full": "d 'da' mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:M'<br/><small>'d 'da' mmmm yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "HH:M", 
+        "time_short": "HH:M:s", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:M'<br/><small>d 'da' mmm yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ro.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ro.json
new file mode 100644
index 0000000000000000000000000000000000000000..ad6a0756e5f80d225e2d28a594cf32f421a05893
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ro.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ro", 
+    "date": {
+        "month_abbr": [
+            "Ian.", 
+            "Feb.", 
+            "Mar.", 
+            "Apr.", 
+            "Mai", 
+            "Iun.", 
+            "Iul.", 
+            "Aug.", 
+            "Sep.", 
+            "Oct.", 
+            "Noi.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Dum.", 
+            "Luni", 
+            "Mar.", 
+            "Mie.", 
+            "Joi", 
+            "Vin.", 
+            "Sâm."
+        ], 
+        "day": [
+            "Duminică", 
+            "Luni", 
+            "Marți", 
+            "Miercuri", 
+            "Joi", 
+            "Vineri", 
+            "Sâmbătă"
+        ], 
+        "month": [
+            "Ianuarie", 
+            "Februarie", 
+            "Martie", 
+            "Aprilie", 
+            "Mai", 
+            "Iunie", 
+            "Iulie", 
+            "August", 
+            "Septembrie", 
+            "Octombrie", 
+            "Noiembrie", 
+            "Decembrie"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ro"
+    }, 
+    "messages": {
+        "loading": "Se încarcă", 
+        "contract_timeline": "Restrânge cronologia", 
+        "return_to_title": "ÃŽnapoi la titlu", 
+        "wikipedia": "De pe Wikipedia, enciclopedia gratuită", 
+        "loading_content": "Se încarcă conținutul", 
+        "expand_timeline": "Extinde cronologia", 
+        "loading_timeline": "Se încarcă cronologia... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'at' h:MM TT", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ru.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ru.json
new file mode 100644
index 0000000000000000000000000000000000000000..294193ae9862d920145f26a4f7f6b860b3c04d59
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ru.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ru", 
+    "date": {
+        "month_abbr": [
+            "янв.", 
+            "фев.", 
+            "март", 
+            "апр.", 
+            "май", 
+            "июнь", 
+            "июль", 
+            "авг.", 
+            "сент.", 
+            "окт.", 
+            "нояб.", 
+            "дек."
+        ], 
+        "day_abbr": [
+            "вск.", 
+            "пн.", 
+            "вт.", 
+            "ср.", 
+            "чт.", 
+            "пт.", 
+            "сб."
+        ], 
+        "day": [
+            "воскресенье", 
+            "понедельник", 
+            "вторник", 
+            "среда", 
+            "четверг", 
+            "пятница", 
+            "суббота"
+        ], 
+        "month": [
+            "января", 
+            "февраля", 
+            "марта", 
+            "апреля", 
+            "мая", 
+            "июня", 
+            "июля", 
+            "августа", 
+            "сентября", 
+            "октября", 
+            "ноября", 
+            "декабря"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ru"
+    }, 
+    "messages": {
+        "loading": "Загрузка", 
+        "contract_timeline": "Уменьшить", 
+        "return_to_title": "Вернуться к заголовку", 
+        "wikipedia": "Из Wikipedia", 
+        "loading_content": "Загрузка контента", 
+        "expand_timeline": "Увеличить", 
+        "loading_timeline": "Загрузка... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'в' HH:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "H:MM", 
+        "time_short": "H:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "HH:MM'<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/si.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/si.json
new file mode 100644
index 0000000000000000000000000000000000000000..e77472089a888ba962b26a9f44c405904d625f14
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/si.json
@@ -0,0 +1,74 @@
+{
+    "lang": "si", 
+    "date": {
+        "month_abbr": [
+            "ජන.", 
+            "පෙබ.", 
+            "මාර්තු", 
+            "අප්‍රේල්", 
+            "මැයි", 
+            "ජුනි", 
+            "ජුලි", 
+            "අගෝ.", 
+            "සැප්.", 
+            "ඔක්.", 
+            "නොවැ.", 
+            "දෙසැ."
+        ], 
+        "day_abbr": [
+            "ඉරි.", 
+            "සදු.", 
+            "අග.", 
+            "බදා.", 
+            "බ්‍රහස්.", 
+            "සිකු.", 
+            "සෙන."
+        ], 
+        "day": [
+            "ඉරිදා", 
+            "සදුදා", 
+            "අගහරුවදා", 
+            "බදාදා", 
+            "බ්‍රහස්පතින්දා", 
+            "සිකුරාදා", 
+            "සෙනසුරාදා"
+        ], 
+        "month": [
+            "ජනවාරි", 
+            "පෙබරවාරි", 
+            "මාර්තු", 
+            "අප්‍රේල්", 
+            "මැයි", 
+            "ජූනි", 
+            "ජූලි", 
+            "අගෝස්තු", 
+            "සැප්තැම්බර්", 
+            "ඔක්තෝම්බර්", 
+            "නොවැම්බර්", 
+            "දෙසැම්බර්"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "si"
+    }, 
+    "messages": {
+        "loading": "ලෝඩ් වෙමින්", 
+        "contract_timeline": "කාල රේඛාව අකුලන්න", 
+        "return_to_title": "නැවත මාතෘකාවට", 
+        "wikipedia": "විකිපීඩියා, නිදහස් විශ්වකෝෂය වෙතින්", 
+        "loading_content": "අන්තර්ගතය ලෝඩ් වෙමින්", 
+        "expand_timeline": "කාල රේඛාව විහිදන්න", 
+        "loading_timeline": "කාල රේඛාව ලෝඩ් වෙමින්... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "time_no_seconds_short": "h:MM TT", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "full": "mmmm d',' yyyy", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sk.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sk.json
new file mode 100644
index 0000000000000000000000000000000000000000..8caa5aeaf6d69a9e948a5dcaff038e718b3c39ed
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sk.json
@@ -0,0 +1,75 @@
+{
+    "lang": "sk", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Marec", 
+            "Apr&#237;l", 
+            "M&#225;j", 
+            "J&#250;n", 
+            "J&#250;l", 
+            "Aug.", 
+            "Sept.", 
+            "Okt.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Ned.", 
+            "Pon.", 
+            "Uto.", 
+            "Str.", 
+            "&#352;tv.", 
+            "Pia.", 
+            "Sob."
+        ], 
+        "day": [
+            "Nede&#318;a", 
+            "Pondelok", 
+            "Utorok", 
+            "Streda", 
+            "&#352;tvrtok", 
+            "Piatok", 
+            "Sobota"
+        ], 
+        "month": [
+            "Janu&#225;r", 
+            "Febru&#225;r", 
+            "Marec", 
+            "Apr&#237;l", 
+            "M&#225;j", 
+            "J&#250;n", 
+            "J&#250;l", 
+            "August", 
+            "September", 
+            "Okt&#243;ber", 
+            "November", 
+            "December"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "sk"
+    }, 
+    "messages": {
+        "loading": "Na&#269;&#237;tanie", 
+        "contract_timeline": "Zmen&#353;i&#357; &#269;asov&#250; os", 
+        "return_to_title": "Sp&#228;&#357; na &#250;vod", 
+        "wikipedia": "Z Wikipedie, encyklop&#233;die zadarmo", 
+        "loading_content": "Na&#269;&#237;tam obsah", 
+        "expand_timeline": "Zv&#228;&#269;&#353;i&#357; &#269;asov&#250; os", 
+        "loading_timeline": "Na&#269;&#237;tam &#269;asov&#250; os... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "d. mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sl.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sl.json
new file mode 100644
index 0000000000000000000000000000000000000000..2709c264dfc40a5cf346c362ffc72bfe5141efef
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "sl", 
+    "date": {
+        "month_abbr": [
+            "jan.", 
+            "feb.", 
+            "marec", 
+            "april", 
+            "maj", 
+            "junij", 
+            "july", 
+            "avg.", 
+            "sept.", 
+            "okt.", 
+            "nov.", 
+            "dec."
+        ], 
+        "day_abbr": [
+            "ned.", 
+            "pon.", 
+            "tor.", 
+            "sre.", 
+            "čet.", 
+            "pet.", 
+            "sob."
+        ], 
+        "day": [
+            "nedelja", 
+            "ponedeljek", 
+            "torek", 
+            "sreda", 
+            "čertek", 
+            "petek", 
+            "sobota"
+        ], 
+        "month": [
+            "januar", 
+            "februar", 
+            "marec", 
+            "april", 
+            "maj", 
+            "junij", 
+            "julij", 
+            "avgust", 
+            "september", 
+            "oktober", 
+            "november", 
+            "december"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "sl"
+    }, 
+    "messages": {
+        "loading": "Nalaganje", 
+        "contract_timeline": "Pokrči časovni trak", 
+        "return_to_title": "Nazaj na naslov", 
+        "wikipedia": "Vir Wikipedija", 
+        "loading_content": "Nalaganje vsebine", 
+        "expand_timeline": "Razširi časovni trak", 
+        "loading_timeline": "Nalagam časovni trak... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm yyyy 'ob' hh:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM' 'd mmmm' 'yyyy", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM' d mmm yyyy"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sr-cy.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sr-cy.json
new file mode 100644
index 0000000000000000000000000000000000000000..ca1d7d497719027fdf23ce96964f550b541c0f65
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sr-cy.json
@@ -0,0 +1,75 @@
+{
+    "lang": "рп", 
+    "date": {
+        "month_abbr": [
+            "Јан.", 
+            "Феб.", 
+            "Март", 
+            "Апр.", 
+            "Мај", 
+            "Јун", 
+            "Јул", 
+            "Авг.", 
+            "Сеп.", 
+            "Окт.", 
+            "Нов.", 
+            "Дец."
+        ], 
+        "day_abbr": [
+            "Нед.", 
+            "Пон.", 
+            "Уто.", 
+            "Сре.", 
+            "Чет.", 
+            "Пет.", 
+            "Суб."
+        ], 
+        "day": [
+            "Недеља", 
+            "Понедељак", 
+            "Уторак", 
+            "Среда", 
+            "Четвртак", 
+            "Петак", 
+            "Субота"
+        ], 
+        "month": [
+            "Јануар", 
+            "Фебруар", 
+            "Март", 
+            "Април", 
+            "Мај", 
+            "Јун", 
+            "Јул", 
+            "Август", 
+            "Септембар", 
+            "Октобар", 
+            "Новембар", 
+            "Децембар"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "рп"
+    }, 
+    "messages": {
+        "loading": "Учитава се", 
+        "contract_timeline": "Умањи", 
+        "return_to_title": "Почетак", 
+        "wikipedia": "Из Википедије, слободне енциклопедије", 
+        "loading_content": "Садржај се учитава", 
+        "expand_timeline": "Увећај", 
+        "loading_timeline": "Учитавање... "
+    }, 
+    "dateformats": {
+        "full_long": "d. mmm yyyy. 'u' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm yyyy.", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy.'</small>'", 
+        "month": "mmmm yyyy.", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy.", 
+        "full_long_small_date": "HH:MM'<br/><small>d. mmm yyyy.'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sr.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sr.json
new file mode 100644
index 0000000000000000000000000000000000000000..6af4820508dac9c990594e7513868dd9d68c87b3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sr.json
@@ -0,0 +1,75 @@
+{
+    "lang": "sr", 
+    "date": {
+        "month_abbr": [
+            "Jan.", 
+            "Feb.", 
+            "Mart", 
+            "Apr.", 
+            "Maj", 
+            "Jun", 
+            "Jul", 
+            "Avg.", 
+            "Sep.", 
+            "Okt.", 
+            "Nov.", 
+            "Dec."
+        ], 
+        "day_abbr": [
+            "Ned.", 
+            "Pon.", 
+            "Uto.", 
+            "Sre.", 
+            "ÄŒet.", 
+            "Pet.", 
+            "Sub."
+        ], 
+        "day": [
+            "Nedelja", 
+            "Ponedeljak", 
+            "Utorak", 
+            "Sreda", 
+            "ÄŒetvratk", 
+            "Petak", 
+            "Subota"
+        ], 
+        "month": [
+            "januar", 
+            "Februar", 
+            "Mart", 
+            "April", 
+            "Maj", 
+            "Jun", 
+            "Jul", 
+            "Avgust", 
+            "Septembar", 
+            "Oktobar", 
+            "Novembar", 
+            "Decembar"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "sr"
+    }, 
+    "messages": {
+        "loading": "Učitava se", 
+        "contract_timeline": "Umanji", 
+        "return_to_title": "Početak", 
+        "wikipedia": "Iz Vikipedije, slobodne enciklopedije", 
+        "loading_content": "Sadržaj se učitava", 
+        "expand_timeline": "Uvećaj", 
+        "loading_timeline": "Učitavanje... "
+    }, 
+    "dateformats": {
+        "full_long": "d. mmm yyyy. 'u' HH:MM", 
+        "full_short": "d. mmm", 
+        "full": "d. mmmm yyyy.", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'d. mmmm yyyy.'</small>'", 
+        "month": "mmmm yyyy.", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy.", 
+        "full_long_small_date": "HH:MM'<br/><small>d. mmm yyyy.'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sv.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sv.json
new file mode 100644
index 0000000000000000000000000000000000000000..d3895d413cdb5f20b43c9a253651fbe6289ebc4f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/sv.json
@@ -0,0 +1,86 @@
+{
+    "lang": "sv",
+    "date": {
+        "month_abbr": [
+            "jan",
+            "febr",
+            "mars",
+            "april",
+            "maj",
+            "juni",
+            "juli",
+            "aug",
+            "sept",
+            "okt",
+            "nov",
+            "dec"
+        ],
+        "day_abbr": [
+            "sön",
+            "mån",
+            "tis",
+            "ons",
+            "tors",
+            "fre",
+            "lör"
+        ],
+        "day": [
+            "söndag",
+            "måndag",
+            "tisdag",
+            "onsdag",
+            "torsdag",
+            "fredag",
+            "lördag"
+        ],
+        "month": [
+            "januari",
+            "februari",
+            "mars",
+            "april",
+            "maj",
+            "juni",
+            "juli",
+            "augusti",
+            "september",
+            "oktober",
+            "november",
+            "december"
+        ]
+    },
+    "api": {
+        "wikipedia": "sv"
+    },
+    "messages": {
+        "loading": "Laddar",
+        "contract_timeline": "Förminska tidslinje",
+        "return_to_title": "Tillbaka till start",
+        "wikipedia": "Från Wikipedia, den fria encyklopedin",
+        "loading_content": "Laddar innehåll",
+        "expand_timeline": "Förstora tidslinje",
+        "loading_timeline": "Laddar tidslinje... "
+    },
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'vid' H:MM",
+        "full_short": "d mmm",
+        "full": "d mmmm',' yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "H:MM",
+        "time_short": "HH:MM:ss",
+        "year": "yyyy",
+        "full_long_small_date": "H:MM'<br/><small>d mmm',' yyyy'</small>'"
+    },
+  "era_labels": {
+      "positive_year": {
+          "prefix": "",
+          "suffix": ""
+      },
+      "negative_year": {
+          "prefix": "",
+          "suffix": "f.Kr."
+      }
+  }
+
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ta.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ta.json
new file mode 100644
index 0000000000000000000000000000000000000000..4b3adf9434a6a42ed15c0e20dc837e74b72d5932
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ta.json
@@ -0,0 +1,75 @@
+{
+    "lang": "ta", 
+    "date": {
+        "month_abbr": [
+            "ஜன.", 
+            "பெப்.", 
+            "மார்ச்", 
+            "ஏப்ரல்", 
+            "மே", 
+            "ஜுன்", 
+            "ஜுலை", 
+            "ஆகஸ்ட்", 
+            "செப்ட்.", 
+            "ஒக்டோ.", 
+            "நவம்பர்", 
+            "டிசம்பர்"
+        ], 
+        "day_abbr": [
+            "ஞா", 
+            "தி", 
+            "செ", 
+            "பு", 
+            "வி", 
+            "வெ", 
+            "சனி"
+        ], 
+        "day": [
+            "ஞாயிறு", 
+            "திங்கள்", 
+            "செவ்வாய்", 
+            "புதன்", 
+            "வியாழன்", 
+            "வெள்ளி", 
+            "சனி"
+        ], 
+        "month": [
+            "ஜனவரி", 
+            "பெப்ரவரி", 
+            "மார்ச்", 
+            "ஏப்ரல்", 
+            "மே", 
+            "ஜுன்", 
+            "ஜுலை", 
+            "ஆகஸ்ட்", 
+            "செப்டம்பர்", 
+            "ஒக்டோபர்", 
+            "நவம்பர்", 
+            "டிசம்பர்"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "ta"
+    }, 
+    "messages": {
+        "loading": "தரவேறுகிறது", 
+        "contract_timeline": "நேரக்கோட்டை சுருக்க", 
+        "return_to_title": "தலைப்பிற்குச் செல்ல", 
+        "wikipedia": "கட்டற்ற கலைக்களஞ்சியம், விக்கிப்பீடியாவிலிருந்து", 
+        "loading_content": "உள்ளடக்கம் தரவேறுகிறது...", 
+        "expand_timeline": "நேரக்கோட்டை விரிக்க", 
+        "loading_timeline": "நேரக்கோடு தரவேறுகிறது.... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/te.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/te.json
new file mode 100644
index 0000000000000000000000000000000000000000..57c87bc14b0f834f9cce2025d6e654e8f46057a0
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/te.json
@@ -0,0 +1,74 @@
+{
+    "lang": "te", 
+    "date": {
+        "month_abbr": [
+            "జన.", 
+            "ఫిబ్ర.", 
+            "మార్చి", 
+            "ఏప్రి.", 
+            "మే", 
+            "జూన్", 
+            "జూలై", 
+            "ఆగ.", 
+            "సెప్టెం.", 
+            "అక్టో.", 
+            "నవం.", 
+            "డిసెం."
+        ], 
+        "day_abbr": [
+            "ఆది.", 
+            "సోమ.", 
+            "మంగళ.", 
+            "బుధ.", 
+            "గురు.", 
+            "శుక్ర.", 
+            "శని."
+        ], 
+        "day": [
+            "ఆదివారం", 
+            "సోమవారం", 
+            "మంగళవారం", 
+            "బుధవారం", 
+            "గురువారం", 
+            "శుక్రవారం", 
+            "శనివారం"
+        ], 
+        "month": [
+            "జనవరి", 
+            "ఫిబ్రవరి", 
+            "మార్చి", 
+            "ఏప్రిల్", 
+            "మే", 
+            "జూన్", 
+            "జూలై", 
+            "ఆగస్ట్", 
+            "సెప్టెంబర్", 
+            "అక్టోబర్", 
+            "నవంబర్", 
+            "డిసెంబర్"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "te"
+    }, 
+    "messages": {
+        "loading": "లోడవుతూంది", 
+        "contract_timeline": "టైమ్‌లైన్‌ను కుదించండి", 
+        "return_to_title": "తిరిగి మొదటి స్లైడుకి", 
+        "wikipedia": "స్వేచ్ఛా విజ్ఞాన సర్వస్వమైన వికీపీడియా నుండి", 
+        "loading_content": "విషయం లోడవుతూంది", 
+        "expand_timeline": "టైమ్‌లైన్‌ను విస్తరించండి", 
+        "loading_timeline": "టైమ్‌లైన్ లోడవుతూంది... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "time_no_seconds_short": "h:MM TT", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "full": "mmmm d',' yyyy", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/th.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/th.json
new file mode 100644
index 0000000000000000000000000000000000000000..101eb230992b6c369c066b59788815bc11a0af7e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/th.json
@@ -0,0 +1,108 @@
+{
+    "lang": "th", 
+    "date": {
+        "month_abbr": [
+            "ม.ค.", 
+            "ก.พ", 
+            "มี.ค.", 
+            "เม.ย.", 
+            "พ.ค.", 
+            "มิ.ย.", 
+            "ก.ค.", 
+            "ส.ค.", 
+            "ก.ย.", 
+            "ต.ค.", 
+            "พ.ย.", 
+            "ธ.ค."
+        ], 
+        "day_abbr": [
+            "อา.", 
+            "จ.", 
+            "อ.", 
+            "พ.", 
+            "พฤ.", 
+            "ศ.", 
+            "ส."
+        ], 
+        "day": [
+            "อาทิตย์", 
+            "จันทร์", 
+            "อังคาร", 
+            "พุธ", 
+            "พฤหัสบดี", 
+            "ศุกร์", 
+            "เสาร์"
+        ], 
+        "month": [
+            "มกราคม", 
+            "กุมภาพันธ์", 
+            "มีนาคม", 
+            "เมษายน", 
+            "พฤษภาคม", 
+            "มิถุนายน", 
+            "กรกฎาคม", 
+            "สิงหาคม", 
+            "กันยายน", 
+            "ตุลาคม", 
+            "พฤศจิกายน", 
+            "ธันวาคม"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "th"
+    }, 
+    "messages": {
+        "loading": "กำลังโหลด", 
+        "error": "เกิดความผิดพลาด",
+        "contract_timeline": "ลดขนาด ไทม์ไลน์", 
+        "return_to_title": "กลับไปยังหัวข้อ", 
+        "wikipedia": "จาก วิกิพีเดีย, สารานุกรมเสรี", 
+        "loading_content": "กำลังโหลด เนื้อหา", 
+        "expand_timeline": "ขยายขนาด ไทม์ไลน์", 
+        "loading_timeline": "กำลังโหลด ไทม์ไลน์...",
+        "swipe_to_navigate": "ลากเพื่อเลื่อนไทม์ไลน์<br><span class='tl-button'>ตกลง</span>",
+        "unknown_read_err": "เกิดข้อผิดพลาดจากการพยายามอ่านข้อมูลในสเปรดชีตของคุณ",
+        "invalid_url_err": "ไม่สามารถอ่านข้อมูลไทม์ไลน์. โปรดตรวจสอบว่า URL ของคุณเป็นสเปรดชีตของ Google หรือเป็นไฟล์ JSON",
+        "network_err": "ไม่สามารถอ่านข้อมูลไทม์ไลน์. โปรดตรวจสอบให้แน่ใจว่าคุณได้เผยแพร่สเปรดชีตทางเว็บแล้ว",
+        "empty_feed_err": "ไม่มีรายการข้อมูลที่พบ",
+        "missing_start_date_err": "ไม่มีข้อมูลวันที่เริ่มต้น",
+        "invalid_data_format_err": "แถวส่วนหัวสเปรดชีตได้รับการแก้ไข",
+        "date_compare_err": "ไม่สามารถเปรียบเทียบวันที่ที่มีรูปแบบต่างกันได้",
+        "invalid_scale_err": "รูปแบบไม่ถูกต้อง",
+        "invalid_date_err": "วันที่ไม่ถูกต้อง: เดือน, วันที่และปีต้องเป็นตัวเลข",
+        "invalid_separator_error": "เวลาไม่ถูกต้อง: รูปแบบ : หรือ . ตัวคั่นระหว่างเวลาผิด.",
+        "invalid_hour_err": "เวลาไม่ถูกต้อง (ชั่วโมง)",
+        "invalid_minute_err": "เวลาไม่ถูกต้อง (นาที)",
+        "invalid_second_err": "เวลาไม่ถูกต้อง (วินาที)",
+        "invalid_fractional_err": "เวลาไม่ถูกต้อง (เศษส่วนของวินาที)",
+        "invalid_second_fractional_err": "เวลาไม่ถูกต้อง (วินาที และ เศษส่วนของวินาที)",
+        "invalid_year_err": "ปีไม่ถูกต้อง",
+        "flickr_notfound_err": "ไม่พบภาพหรือถูกตั้งเป็นส่วนตัว",
+        "flickr_invalidurl_err": "URL Flickr ไม่ถูกต้อง",
+        "imgur_invalidurl_err": "URL Imgur ไม่ถูกต้อง",
+        "twitter_invalidurl_err": "URL ทวิตเตอร์ไม่ถูกต้อง",
+        "twitter_load_err": "ไม่สามารถโหลดทวีตได้",
+        "twitterembed_invalidurl_err": "URL Twitter ฝังที่ไม่ถูกต้อง",
+        "wikipedia_load_err": "ไม่สามารถโหลดวิกิพีเดียได้",
+        "youtube_invalidurl_err": "URL ของ YouTube ไม่ถูกต้อง",
+        "spotify_invalid_url": "URL Spotify ไม่ถูกต้อง",
+        "template_value_err": "ไม่มีค่าให้สำหรับตัวแปรแม่แบบ",
+        "invalid_rgb_err": "อาร์กิวเมนต์ RGB ไม่ถูกต้อง",
+        "time_scale_scale_err": "ไม่ทราบวิธีการที่จะได้รับข้อมูลจากช่วงวันเวลา",
+        "axis_helper_no_options_err": "ไม่มีตัวเลือกสำหรับกำหนดค่าตัวแปร axis_helper",
+        "axis_helper_scale_err": "ไม่มีตัวแปร AxisHelper ที่ใช้ได้ในระยะเวลาที่ระบุ",
+        "invalid_integer_option": "ค่าตัวเลือกไม่ถูกต้องซึ่งต้องเป็นจำนวนเต็ม"
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/tl.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/tl.json
new file mode 100644
index 0000000000000000000000000000000000000000..f41ce37d863e76e72f79c27f8e242e5accda3880
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/tl.json
@@ -0,0 +1,75 @@
+{
+    "lang": "tl", 
+    "date": {
+        "month_abbr": [
+            "Ene.", 
+            "Peb.", 
+            "Mar.", 
+            "Abr.", 
+            "Mayo", 
+            "Hun.", 
+            "Hul.", 
+            "Ago.", 
+            "Set.", 
+            "Okt.", 
+            "Nob.", 
+            "Dis."
+        ], 
+        "day_abbr": [
+            "Li.", 
+            "L.", 
+            "M.", 
+            "Mi.", 
+            "H.", 
+            "B.", 
+            "S."
+        ], 
+        "day": [
+            "Linggo", 
+            "Lunes", 
+            "Martes", 
+            "Miyerkules", 
+            "Huwebes", 
+            "Biyernes", 
+            "Sabado"
+        ], 
+        "month": [
+            "Enemo", 
+            "Pebrero", 
+            "Marso", 
+            "Abril", 
+            "Mayo", 
+            "Hunyo", 
+            "Hulyo", 
+            "Agosto", 
+            "Setyembre", 
+            "Oktubre", 
+            "Nobyembre", 
+            "Disyembre"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "tl"
+    }, 
+    "messages": {
+        "loading": "Loading", 
+        "contract_timeline": "Contract Timeline", 
+        "return_to_title": "Return to Title", 
+        "wikipedia": "Mula sa Wikipedia, ang malayang ensiklopedya", 
+        "loading_content": "Loading Content", 
+        "expand_timeline": "Expand Timeline", 
+        "loading_timeline": "Loading Timeline... "
+    }, 
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' h:MM TT", 
+        "full_short": "mmm d", 
+        "full": "mmmm d',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "h:MM TT", 
+        "time_short": "h:MM:ss TT", 
+        "year": "yyyy", 
+        "full_long_small_date": "h:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/tr.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/tr.json
new file mode 100644
index 0000000000000000000000000000000000000000..b55e3fa2d822259b52e5758658090adf11a82f2a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/tr.json
@@ -0,0 +1,75 @@
+{
+    "lang": "tr", 
+    "date": {
+        "month_abbr": [
+            "Oca.", 
+            "Åžub.", 
+            "Mar.", 
+            "Nis.", 
+            "May.", 
+            "Haz.", 
+            "Tem.", 
+            "AÄŸu.", 
+            "Eyl.", 
+            "Eki.", 
+            "Kas.", 
+            "Ara."
+        ], 
+        "day_abbr": [
+            "Paz.", 
+            "Pzt.", 
+            "Sal.", 
+            "Çar.", 
+            "Per.", 
+            "Cum.", 
+            "Cts."
+        ], 
+        "day": [
+            "Pazar", 
+            "Pazartesi", 
+            "Salı", 
+            "Çarşamba", 
+            "PerÅŸembe", 
+            "Cuma", 
+            "Cumartesi"
+        ], 
+        "month": [
+            "Ocak", 
+            "Åžubat", 
+            "Mart", 
+            "Nisan", 
+            "Mayıs", 
+            "Haziran", 
+            "Temmuz", 
+            "AÄŸustos", 
+            "Eylül", 
+            "Ekim", 
+            "Kasım", 
+            "Aralık"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "tr"
+    }, 
+    "messages": {
+        "loading": "Yükleniyor", 
+        "contract_timeline": "Zaman Çizelgesini Daralt", 
+        "return_to_title": "Başlığa Dön", 
+        "wikipedia": "Wikipedia'dan, özgür ansiklopedi", 
+        "loading_content": "İçerik Yükleniyor", 
+        "expand_timeline": "Zaman Çizelgesini Genişlet", 
+        "loading_timeline": "Zaman Çizelgesi Yükleniyor... "
+    }, 
+    "dateformats": {
+        "full_long": "d mmm',' yyyy 'at' H:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "H:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "H:MM '<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/uk.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/uk.json
new file mode 100644
index 0000000000000000000000000000000000000000..050ffac638564d98ef54135696fa6a05d6999835
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/uk.json
@@ -0,0 +1,75 @@
+{
+    "lang": "uk", 
+    "date": {
+        "month_abbr": [
+            "січ.", 
+            "лют.", 
+            "берез.", 
+            "квіт.", 
+            "трав.", 
+            "черв.", 
+            "лип.", 
+            "серп.", 
+            "вер.", 
+            "жовт.", 
+            "листоп.", 
+            "груд."
+        ], 
+        "day_abbr": [
+            "нд.", 
+            "пн.", 
+            "вт.", 
+            "ср.", 
+            "чт.", 
+            "пт.", 
+            "сб."
+        ], 
+        "day": [
+            "неділя", 
+            "понеділок", 
+            "вівторок", 
+            "середа", 
+            "четвер", 
+            "п'ятниця‎", 
+            "субота"
+        ], 
+        "month": [
+            "січня", 
+            "лютого", 
+            "березня", 
+            "квітня", 
+            "травня", 
+            "червня", 
+            "липня", 
+            "серпня", 
+            "вересня", 
+            "жовтня", 
+            "листопада", 
+            "грудня"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "uk"
+    }, 
+    "messages": {
+        "loading": "Завантаження", 
+        "contract_timeline": "Зменьшити", 
+        "return_to_title": "Повернутися до початку", 
+        "wikipedia": "З Wikipedia, вільної енциклопедії", 
+        "loading_content": "Завантаження вмісту", 
+        "expand_timeline": "Збільшити", 
+        "loading_timeline": "Завантаження..."
+    }, 
+    "dateformats": {
+        "full_long": "d mmm yyyy 'у' H:MM", 
+        "full_short": "d mmm", 
+        "full": "d mmmm',' yyyy", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "H:MM'<br/><small>'d mmmm',' yyyy'</small>'", 
+        "month": "mmmm yyyy", 
+        "time_no_seconds_short": "H:MM", 
+        "time_short": "H:MM:ss", 
+        "year": "yyyy", 
+        "full_long_small_date": "H:MM'<br/><small>d mmm',' yyyy'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ur.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ur.json
new file mode 100644
index 0000000000000000000000000000000000000000..c622dcc1f9055698ca05a36b488c2c979a031cf2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/ur.json
@@ -0,0 +1,123 @@
+{
+    "lang": "ur",
+    "direction": "rtl",
+    "date": {
+        "month_abbr": [
+            "جنوری",
+            "فروری‬",
+            "مارچ",
+            "اپریل",
+            "مئی",
+            "جون",
+            "جولائی",
+            "اگست",
+            "ستمبر",
+            "اکتوبر",
+            "نومبر",
+            "دسمبر"
+        ],
+        "day_abbr": [
+            "اتوار",
+            "پیر",
+            "منگل",
+            "بدھ",
+            "جمعرات",
+            "جمعہ",
+            "ہفتہ"
+        ],
+        "day": [
+            "اتوار‬‮",
+            "پیر",
+            "منگل",
+            "بدھ",
+            "جمعرات",
+            "جمعہ",
+            "ہفتہ"
+        ],
+        "month": [
+            "جنوری",
+            "فروری‬",
+            "مارچ",
+            "اپریل",
+            "مئی",
+            "جون",
+            "جولائی",
+            "اگست",
+            "ستمبر",
+            "اکتوبر",
+            "نومبر",
+            "دسمبر"
+        ]
+    },
+    "api": {
+        "wikipedia": "ur"
+    },
+    "messages": {
+        "loading": "لوڈ ہو رہا ہے",
+        "error": "غلطی",
+        "contract_timeline": "معاہدہ ٹائم لائن",
+        "return_to_title": "موضوع پر واپس",
+        "wikipedia": "From Wikipedia, the free encyclopedia",
+        "loading_content": "لوڈنگ مواد",
+        "expand_timeline": "ٹائم لائن کو بڑھانے ک",
+        "loading_timeline": "لوڈنگ ٹائم لائن ... ",
+        "swipe_to_navigate": "Swip<br><span class='tl-button'>OK</span>",
+        "unknown_read_err": "ایک غیر متوقع خرابی سپریڈ شیٹ ڈیٹا پڑھنے سے روک رہی ہے",
+        "network_err": "آپ کی گوگل سپریڈ شیٹ پڑھنے سے قاصر ہے.  یقینی بنائیں کے سپریڈ شیٹ ویب پر شائع ہے.",
+        "empty_feed_err": "کوئی ڈیٹا نہیں ملا",
+        "missing_start_date_err": "شروع کرنے کی تاریخ نہیں ملی",
+        "invalid_data_format_err": "ہیڈر  تبدیل کر دیا گیا ہے.",
+        "date_compare_err": "مختلف پیمانے کی TL.dates کا موازنہ نہیں ممکن",
+        "invalid_scale_err": "گیر درست پیمانے",
+        "invalid_date_err": "گیر درست تاریخ: ماہ ، دن اور سال کا نمبر میں هونا ضروری ہے",
+        "invalid_separator_error": "گیردرست وقت: .  یا : کا استعمال غلط ہے",
+        "invalid_hour_err": "گیردرست وقت (گھنٹہ)",
+        "invalid_minute_err": "گیردرست وقت (منٹ)",
+        "invalid_second_err": "Iگیردرست وقت (سیکنڈ)",
+        "invalid_fractional_err": "گیردرست وقت (fractional سیکنڈ)",
+        "invalid_second_fractional_err": "گیردرست وقت (سیکنڈ اور fractional سیکنڈ)",
+        "invalid_year_err": "گیردرست سال",
+        "flickr_notfound_err": "تصویر نہیں ملی یا تصویر گیرعوامی ہے",
+        "flickr_invalidurl_err": "گیردرست Flickr URL",
+        "imgur_invalidurl_err": "گیردرست Imgur URL",
+        "twitter_invalidurl_err": "گیردرست Twitter URL",
+        "twitter_load_err": "Tweet لود نا ھوسکی",
+        "twitterembed_invalidurl_err": "گیردرست Twitter Embed url",
+        "wikipedia_load_err": "Wikipedia entry لود نا ھوسکی",
+        "youtube_invalidurl_err": "گیردرست YouTube URL",
+        "template_value_err": "Variable کی تعداد فراہم نہیں",
+        "invalid_rgb_err": "گیردرست RGB argument",
+        "time_scale_scale_err": "Don't know how to get date from time for scale",
+        "axis_helper_no_options_err": "Axis helper must be configured with options",
+        "axis_helper_scale_err": "پیمانے  کے لئے Axis Helper موجود نہیں",
+        "invalid_integer_option": 				"Invalid option value—must be a whole number."
+    },
+    "dateformats": {
+        "full_long": "mmm d',' yyyy 'at' hh:MM TT",
+        "full_short": "mmm d",
+        "full": "mmmm d',' yyyy",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
+        "month": "mmmm yyyy",
+        "time_no_seconds_short": "h:MM TT",
+        "time_short": "h:MM:ss TT",
+        "year": "yyyy",
+        "full_long_small_date": "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
+    },
+    "era_labels": {
+        "positive_year": {
+            "prefix": "",
+            "suffix": ""
+        },
+        "negative_year": {
+            "prefix": "",
+            "suffix": "BCE"
+        }
+    },
+    "period_labels": {
+        "t": ["a", "p"],
+        "tt": ["am", "pm"],
+        "T": ["A", "P"],
+        "TT": ["AM", "PM"]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/vi.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/vi.json
new file mode 100644
index 0000000000000000000000000000000000000000..21ebb3d46739063d45dafc73458ef92047a2d586
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/vi.json
@@ -0,0 +1,74 @@
+{
+    "lang": "vi",
+    "date": {
+        "month": [
+            "Tháng Một", 
+            "Tháng Hai", 
+            "Tháng ba", 
+            "Tháng Tư", 
+            "Tháng Năm", 
+            "Tháng Sáu", 
+            "Tháng Bảy", 
+            "Tháng Tám", 
+            "Tháng Chín", 
+            "Tháng Mười", 
+            "Tháng Mười Một", 
+            "Tháng Mười Hai"
+        ],
+       "month_abbr": [
+            "Tháng 01", 
+            "Tháng 02", 
+            "Tháng 03", 
+            "Tháng 04", 
+            "Tháng 05", 
+            "Tháng 06", 
+            "Tháng 07", 
+            "Tháng 08", 
+            "Tháng 09",
+            "Tháng 10", 
+            "Tháng 11", 
+            "Tháng 12"
+        ],
+        "day": [
+            "Chủ Nhật",
+            "Thứ Hai", 
+            "Thứ Ba", 
+            "Thứ Tư", 
+            "Thứ Năm", 
+            "Thứ Sáu", 
+            "Thứ Bảy"
+        ],
+        "day_abbr": [
+            "Chủ Nhật",
+            "Thứ 02", 
+            "Thứ 03", 
+            "Thứ 04", 
+            "Thứ 05", 
+            "Thứ 06", 
+            "Thứ 07"
+        ]
+    },
+    "api": {
+        "wikipedia": "vi"
+    },
+    "messages": {
+        "loading_timeline": "Tải dòng thời gian... ",
+        "return_to_title": "Quay lại từ đầu",
+        "expand_timeline": "Mở rộng",
+        "contract_timeline": "Thu nhỏ",
+        "wikipedia": "Từ Wikipedia, bách khoa toàn thư mở",
+        "loading_content": "Tải nội dung",
+        "loading": "Đang tải"
+    },
+    "dateformats": {
+        "year": "yyyy",
+        "month_short": "mmm",
+        "month": "mmmm yyyy",
+        "full_short": "mmm d",
+        "full": "'Ngày' d mmm 'Năm' yyyy",
+        "time_no_seconds_short": "H:MM ",
+        "time_no_seconds_small_date": "H:MM '<br/><small>Ngày' d mmm 'Năm' yyyy</small>'",
+        "full_long": "'Ngày 'd mmm 'Năm' yyyy 'lúc' H:MM",
+        "full_long_small_date": "H:MM '<br/><small>Ngày' d mmm 'Năm' yyyy'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/zh-cn.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/zh-cn.json
new file mode 100644
index 0000000000000000000000000000000000000000..d8d46cac5260fb12e289e4dd51120a05e38446cb
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/zh-cn.json
@@ -0,0 +1,76 @@
+{
+    "lang": "zh-cn",
+    "date": {
+        "month_abbr": [
+            "1月",
+            "2月",
+            "3月",
+            "4月",
+            "5月",
+            "6月",
+            "7月",
+            "8月",
+            "9月",
+            "10月",
+            "11月",
+            "12月"
+        ],
+        "day_abbr": [
+            "周日",
+            "周一",
+            "周二",
+            "周三",
+            "周四",
+            "周五",
+            "周六"
+        ],
+        "day": [
+            "星期日",
+            "星期一",
+            "星期二",
+            "星期三",
+            "星期四",
+            "星期五",
+            "星期六"
+        ],
+        "month": [
+            "1月",
+            "2月",
+            "3月",
+            "4月",
+            "5月",
+            "6月",
+            "7月",
+            "8月",
+            "9月",
+            "10月",
+            "11月",
+            "12月"
+        ]
+    },
+    "api": {
+        "wikipedia": "zh"
+    },
+    "messages": {
+        "loading": "加载中",
+        "contract_timeline": "缩短时间",
+        "return_to_title": "回到开头",
+        "wikipedia": "来自维基百科,自由的百科全书",
+        "loading_content": "正在加载内容",
+        "expand_timeline": "伸展时间",
+        "loading_timeline": "加载时间线... ",
+        "swipe_to_navigate": "左右撥來瀏覽<br><span class='tl-button'>OK</span>"
+    },
+    "dateformats": {
+        "full_long": "dddd',' yyyyå¹´ mmm dæ—¥'um' HH:MM",
+        "full_short": "mmm dæ—¥",
+        "full": "yyyyå¹´mmmm dæ—¥",
+        "month_short": "mmm",
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'yyyyå¹´mmmm dæ—¥'</small>'",
+        "month": "yyyyå¹´ mmmm",
+        "time_no_seconds_short": "HH:MM",
+        "time_short": "HH:MM:ss",
+        "year": "yyyyå¹´",
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' yyyyå¹´ mmm dæ—¥'</small>'"
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/language/locale/zh-tw.json b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/zh-tw.json
new file mode 100644
index 0000000000000000000000000000000000000000..df058aeda91f633ab5391d633e28fb67aa56e3b1
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/language/locale/zh-tw.json
@@ -0,0 +1,75 @@
+{
+    "lang": "zh-tw", 
+    "date": {
+        "month_abbr": [
+            "一月", 
+            "二月", 
+            "三月", 
+            "四月", 
+            "五月", 
+            "六月", 
+            "七月", 
+            "八月", 
+            "九月", 
+            "十月", 
+            "十一月", 
+            "十二月"
+        ], 
+        "day_abbr": [
+            "週日", 
+            "週一", 
+            "週二", 
+            "週三", 
+            "週四", 
+            "週五", 
+            "週六"
+        ], 
+        "day": [
+            "星期日", 
+            "星期一", 
+            "星期二", 
+            "星期三", 
+            "星期四", 
+            "星期五", 
+            "星期六"
+        ], 
+        "month": [
+            "一月", 
+            "二月", 
+            "三月", 
+            "四月", 
+            "五月", 
+            "六月", 
+            "七月", 
+            "八月", 
+            "九月", 
+            "十月", 
+            "十一月", 
+            "十二月"
+        ]
+    }, 
+    "api": {
+        "wikipedia": "zh"
+    }, 
+    "messages": {
+        "loading": "載入中", 
+        "contract_timeline": "縮短時間", 
+        "return_to_title": "回到開頭", 
+        "wikipedia": "擷取自維基百科, 自由之百科全書", 
+        "loading_content": "載入內容", 
+        "expand_timeline": "展開時間", 
+        "loading_timeline": "載入時間線... "
+    }, 
+    "dateformats": {
+        "full_long": "dddd',' yyyyå¹´mmmm dæ—¥ 'um' HH:MM", 
+        "full_short": "mmm d", 
+        "full": "yyyyå¹´mmmm dæ—¥", 
+        "month_short": "mmm", 
+        "time_no_seconds_small_date": "HH:MM'<br/><small>'yyyyå¹´mmmm dæ—¥'</small>'", 
+        "month": "yyyyå¹´ mmmm", 
+        "time_no_seconds_short": "HH:MM", 
+        "time_short": "HH:MM:ss", 
+        "year": "yyyyå¹´", 
+        "full_long_small_date": "HH:MM'<br/><small>'dddd',' yyyyå¹´mmmm dæ—¥'</small>'"
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/library/moment.js b/public/opac/TimelineJS3-3.5.1/source/js/library/moment.js
new file mode 100644
index 0000000000000000000000000000000000000000..83282c6fdbab67e9362c6e7f0421333f5a000090
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/library/moment.js
@@ -0,0 +1,2610 @@
+//! moment.js
+//! version : 2.7.0
+//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
+//! license : MIT
+//! momentjs.com
+
+(function (undefined) {
+
+    /************************************
+        Constants
+    ************************************/
+
+    var moment,
+        VERSION = "2.7.0",
+        // the global-scope this is NOT the global object in Node.js
+        globalScope = typeof global !== 'undefined' ? global : this,
+        oldGlobalMoment,
+        round = Math.round,
+        i,
+
+        YEAR = 0,
+        MONTH = 1,
+        DATE = 2,
+        HOUR = 3,
+        MINUTE = 4,
+        SECOND = 5,
+        MILLISECOND = 6,
+
+        // internal storage for language config files
+        languages = {},
+
+        // moment internal properties
+        momentProperties = {
+            _isAMomentObject: null,
+            _i : null,
+            _f : null,
+            _l : null,
+            _strict : null,
+            _tzm : null,
+            _isUTC : null,
+            _offset : null,  // optional. Combine with _isUTC
+            _pf : null,
+            _lang : null  // optional
+        },
+
+        // check for nodeJS
+        hasModule = (typeof module !== 'undefined' && module.exports),
+
+        // ASP.NET json date format regex
+        aspNetJsonRegex = /^\/?Date\((\-?\d+)/i,
+        aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/,
+
+        // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
+        // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
+        isoDurationRegex = /^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/,
+
+        // format tokens
+        formattingTokens = /(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|X|zz?|ZZ?|.)/g,
+        localFormattingTokens = /(\[[^\[]*\])|(\\)?(LT|LL?L?L?|l{1,4})/g,
+
+        // parsing token regexes
+        parseTokenOneOrTwoDigits = /\d\d?/, // 0 - 99
+        parseTokenOneToThreeDigits = /\d{1,3}/, // 0 - 999
+        parseTokenOneToFourDigits = /\d{1,4}/, // 0 - 9999
+        parseTokenOneToSixDigits = /[+\-]?\d{1,6}/, // -999,999 - 999,999
+        parseTokenDigits = /\d+/, // nonzero number of digits
+        parseTokenWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i, // any word (or two) characters or numbers including two/three word month in arabic.
+        parseTokenTimezone = /Z|[\+\-]\d\d:?\d\d/gi, // +00:00 -00:00 +0000 -0000 or Z
+        parseTokenT = /T/i, // T (ISO separator)
+        parseTokenTimestampMs = /[\+\-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123
+        parseTokenOrdinal = /\d{1,2}/,
+
+        //strict parsing regexes
+        parseTokenOneDigit = /\d/, // 0 - 9
+        parseTokenTwoDigits = /\d\d/, // 00 - 99
+        parseTokenThreeDigits = /\d{3}/, // 000 - 999
+        parseTokenFourDigits = /\d{4}/, // 0000 - 9999
+        parseTokenSixDigits = /[+-]?\d{6}/, // -999,999 - 999,999
+        parseTokenSignedNumber = /[+-]?\d+/, // -inf - inf
+
+        // iso 8601 regex
+        // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)
+        isoRegex = /^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
+
+        isoFormat = 'YYYY-MM-DDTHH:mm:ssZ',
+
+        isoDates = [
+            ['YYYYYY-MM-DD', /[+-]\d{6}-\d{2}-\d{2}/],
+            ['YYYY-MM-DD', /\d{4}-\d{2}-\d{2}/],
+            ['GGGG-[W]WW-E', /\d{4}-W\d{2}-\d/],
+            ['GGGG-[W]WW', /\d{4}-W\d{2}/],
+            ['YYYY-DDD', /\d{4}-\d{3}/]
+        ],
+
+        // iso time formats and regexes
+        isoTimes = [
+            ['HH:mm:ss.SSSS', /(T| )\d\d:\d\d:\d\d\.\d+/],
+            ['HH:mm:ss', /(T| )\d\d:\d\d:\d\d/],
+            ['HH:mm', /(T| )\d\d:\d\d/],
+            ['HH', /(T| )\d\d/]
+        ],
+
+        // timezone chunker "+10:00" > ["10", "00"] or "-1530" > ["-15", "30"]
+        parseTimezoneChunker = /([\+\-]|\d\d)/gi,
+
+        // getter and setter names
+        proxyGettersAndSetters = 'Date|Hours|Minutes|Seconds|Milliseconds'.split('|'),
+        unitMillisecondFactors = {
+            'Milliseconds' : 1,
+            'Seconds' : 1e3,
+            'Minutes' : 6e4,
+            'Hours' : 36e5,
+            'Days' : 864e5,
+            'Months' : 2592e6,
+            'Years' : 31536e6
+        },
+
+        unitAliases = {
+            ms : 'millisecond',
+            s : 'second',
+            m : 'minute',
+            h : 'hour',
+            d : 'day',
+            D : 'date',
+            w : 'week',
+            W : 'isoWeek',
+            M : 'month',
+            Q : 'quarter',
+            y : 'year',
+            DDD : 'dayOfYear',
+            e : 'weekday',
+            E : 'isoWeekday',
+            gg: 'weekYear',
+            GG: 'isoWeekYear'
+        },
+
+        camelFunctions = {
+            dayofyear : 'dayOfYear',
+            isoweekday : 'isoWeekday',
+            isoweek : 'isoWeek',
+            weekyear : 'weekYear',
+            isoweekyear : 'isoWeekYear'
+        },
+
+        // format function strings
+        formatFunctions = {},
+
+        // default relative time thresholds
+        relativeTimeThresholds = {
+          s: 45,   //seconds to minutes
+          m: 45,   //minutes to hours
+          h: 22,   //hours to days
+          dd: 25,  //days to month (month == 1)
+          dm: 45,  //days to months (months > 1)
+          dy: 345  //days to year
+        },
+
+        // tokens to ordinalize and pad
+        ordinalizeTokens = 'DDD w W M D d'.split(' '),
+        paddedTokens = 'M D H h m s w W'.split(' '),
+
+        formatTokenFunctions = {
+            M    : function () {
+                return this.month() + 1;
+            },
+            MMM  : function (format) {
+                return this.lang().monthsShort(this, format);
+            },
+            MMMM : function (format) {
+                return this.lang().months(this, format);
+            },
+            D    : function () {
+                return this.date();
+            },
+            DDD  : function () {
+                return this.dayOfYear();
+            },
+            d    : function () {
+                return this.day();
+            },
+            dd   : function (format) {
+                return this.lang().weekdaysMin(this, format);
+            },
+            ddd  : function (format) {
+                return this.lang().weekdaysShort(this, format);
+            },
+            dddd : function (format) {
+                return this.lang().weekdays(this, format);
+            },
+            w    : function () {
+                return this.week();
+            },
+            W    : function () {
+                return this.isoWeek();
+            },
+            YY   : function () {
+                return leftZeroFill(this.year() % 100, 2);
+            },
+            YYYY : function () {
+                return leftZeroFill(this.year(), 4);
+            },
+            YYYYY : function () {
+                return leftZeroFill(this.year(), 5);
+            },
+            YYYYYY : function () {
+                var y = this.year(), sign = y >= 0 ? '+' : '-';
+                return sign + leftZeroFill(Math.abs(y), 6);
+            },
+            gg   : function () {
+                return leftZeroFill(this.weekYear() % 100, 2);
+            },
+            gggg : function () {
+                return leftZeroFill(this.weekYear(), 4);
+            },
+            ggggg : function () {
+                return leftZeroFill(this.weekYear(), 5);
+            },
+            GG   : function () {
+                return leftZeroFill(this.isoWeekYear() % 100, 2);
+            },
+            GGGG : function () {
+                return leftZeroFill(this.isoWeekYear(), 4);
+            },
+            GGGGG : function () {
+                return leftZeroFill(this.isoWeekYear(), 5);
+            },
+            e : function () {
+                return this.weekday();
+            },
+            E : function () {
+                return this.isoWeekday();
+            },
+            a    : function () {
+                return this.lang().meridiem(this.hours(), this.minutes(), true);
+            },
+            A    : function () {
+                return this.lang().meridiem(this.hours(), this.minutes(), false);
+            },
+            H    : function () {
+                return this.hours();
+            },
+            h    : function () {
+                return this.hours() % 12 || 12;
+            },
+            m    : function () {
+                return this.minutes();
+            },
+            s    : function () {
+                return this.seconds();
+            },
+            S    : function () {
+                return toInt(this.milliseconds() / 100);
+            },
+            SS   : function () {
+                return leftZeroFill(toInt(this.milliseconds() / 10), 2);
+            },
+            SSS  : function () {
+                return leftZeroFill(this.milliseconds(), 3);
+            },
+            SSSS : function () {
+                return leftZeroFill(this.milliseconds(), 3);
+            },
+            Z    : function () {
+                var a = -this.zone(),
+                    b = "+";
+                if (a < 0) {
+                    a = -a;
+                    b = "-";
+                }
+                return b + leftZeroFill(toInt(a / 60), 2) + ":" + leftZeroFill(toInt(a) % 60, 2);
+            },
+            ZZ   : function () {
+                var a = -this.zone(),
+                    b = "+";
+                if (a < 0) {
+                    a = -a;
+                    b = "-";
+                }
+                return b + leftZeroFill(toInt(a / 60), 2) + leftZeroFill(toInt(a) % 60, 2);
+            },
+            z : function () {
+                return this.zoneAbbr();
+            },
+            zz : function () {
+                return this.zoneName();
+            },
+            X    : function () {
+                return this.unix();
+            },
+            Q : function () {
+                return this.quarter();
+            }
+        },
+
+        lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin'];
+
+    // Pick the first defined of two or three arguments. dfl comes from
+    // default.
+    function dfl(a, b, c) {
+        switch (arguments.length) {
+            case 2: return a != null ? a : b;
+            case 3: return a != null ? a : b != null ? b : c;
+            default: throw new Error("Implement me");
+        }
+    }
+
+    function defaultParsingFlags() {
+        // We need to deep clone this object, and es5 standard is not very
+        // helpful.
+        return {
+            empty : false,
+            unusedTokens : [],
+            unusedInput : [],
+            overflow : -2,
+            charsLeftOver : 0,
+            nullInput : false,
+            invalidMonth : null,
+            invalidFormat : false,
+            userInvalidated : false,
+            iso: false
+        };
+    }
+
+    function deprecate(msg, fn) {
+        var firstTime = true;
+        function printMsg() {
+            if (moment.suppressDeprecationWarnings === false &&
+                    typeof console !== 'undefined' && console.warn) {
+                console.warn("Deprecation warning: " + msg);
+            }
+        }
+        return extend(function () {
+            if (firstTime) {
+                printMsg();
+                firstTime = false;
+            }
+            return fn.apply(this, arguments);
+        }, fn);
+    }
+
+    function padToken(func, count) {
+        return function (a) {
+            return leftZeroFill(func.call(this, a), count);
+        };
+    }
+    function ordinalizeToken(func, period) {
+        return function (a) {
+            return this.lang().ordinal(func.call(this, a), period);
+        };
+    }
+
+    while (ordinalizeTokens.length) {
+        i = ordinalizeTokens.pop();
+        formatTokenFunctions[i + 'o'] = ordinalizeToken(formatTokenFunctions[i], i);
+    }
+    while (paddedTokens.length) {
+        i = paddedTokens.pop();
+        formatTokenFunctions[i + i] = padToken(formatTokenFunctions[i], 2);
+    }
+    formatTokenFunctions.DDDD = padToken(formatTokenFunctions.DDD, 3);
+
+
+    /************************************
+        Constructors
+    ************************************/
+
+    function Language() {
+
+    }
+
+    // Moment prototype object
+    function Moment(config) {
+        checkOverflow(config);
+        extend(this, config);
+    }
+
+    // Duration Constructor
+    function Duration(duration) {
+        var normalizedInput = normalizeObjectUnits(duration),
+            years = normalizedInput.year || 0,
+            quarters = normalizedInput.quarter || 0,
+            months = normalizedInput.month || 0,
+            weeks = normalizedInput.week || 0,
+            days = normalizedInput.day || 0,
+            hours = normalizedInput.hour || 0,
+            minutes = normalizedInput.minute || 0,
+            seconds = normalizedInput.second || 0,
+            milliseconds = normalizedInput.millisecond || 0;
+
+        // representation for dateAddRemove
+        this._milliseconds = +milliseconds +
+            seconds * 1e3 + // 1000
+            minutes * 6e4 + // 1000 * 60
+            hours * 36e5; // 1000 * 60 * 60
+        // Because of dateAddRemove treats 24 hours as different from a
+        // day when working around DST, we need to store them separately
+        this._days = +days +
+            weeks * 7;
+        // It is impossible translate months into days without knowing
+        // which months you are are talking about, so we have to store
+        // it separately.
+        this._months = +months +
+            quarters * 3 +
+            years * 12;
+
+        this._data = {};
+
+        this._bubble();
+    }
+
+    /************************************
+        Helpers
+    ************************************/
+
+
+    function extend(a, b) {
+        for (var i in b) {
+            if (b.hasOwnProperty(i)) {
+                a[i] = b[i];
+            }
+        }
+
+        if (b.hasOwnProperty("toString")) {
+            a.toString = b.toString;
+        }
+
+        if (b.hasOwnProperty("valueOf")) {
+            a.valueOf = b.valueOf;
+        }
+
+        return a;
+    }
+
+    function cloneMoment(m) {
+        var result = {}, i;
+        for (i in m) {
+            if (m.hasOwnProperty(i) && momentProperties.hasOwnProperty(i)) {
+                result[i] = m[i];
+            }
+        }
+
+        return result;
+    }
+
+    function absRound(number) {
+        if (number < 0) {
+            return Math.ceil(number);
+        } else {
+            return Math.floor(number);
+        }
+    }
+
+    // left zero fill a number
+    // see http://jsperf.com/left-zero-filling for performance comparison
+    function leftZeroFill(number, targetLength, forceSign) {
+        var output = '' + Math.abs(number),
+            sign = number >= 0;
+
+        while (output.length < targetLength) {
+            output = '0' + output;
+        }
+        return (sign ? (forceSign ? '+' : '') : '-') + output;
+    }
+
+    // helper function for _.addTime and _.subtractTime
+    function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) {
+        var milliseconds = duration._milliseconds,
+            days = duration._days,
+            months = duration._months;
+        updateOffset = updateOffset == null ? true : updateOffset;
+
+        if (milliseconds) {
+            mom._d.setTime(+mom._d + milliseconds * isAdding);
+        }
+        if (days) {
+            rawSetter(mom, 'Date', rawGetter(mom, 'Date') + days * isAdding);
+        }
+        if (months) {
+            rawMonthSetter(mom, rawGetter(mom, 'Month') + months * isAdding);
+        }
+        if (updateOffset) {
+            moment.updateOffset(mom, days || months);
+        }
+    }
+
+    // check if is an array
+    function isArray(input) {
+        return Object.prototype.toString.call(input) === '[object Array]';
+    }
+
+    function isDate(input) {
+        return  Object.prototype.toString.call(input) === '[object Date]' ||
+                input instanceof Date;
+    }
+
+    // compare two arrays, return the number of differences
+    function compareArrays(array1, array2, dontConvert) {
+        var len = Math.min(array1.length, array2.length),
+            lengthDiff = Math.abs(array1.length - array2.length),
+            diffs = 0,
+            i;
+        for (i = 0; i < len; i++) {
+            if ((dontConvert && array1[i] !== array2[i]) ||
+                (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) {
+                diffs++;
+            }
+        }
+        return diffs + lengthDiff;
+    }
+
+    function normalizeUnits(units) {
+        if (units) {
+            var lowered = units.toLowerCase().replace(/(.)s$/, '$1');
+            units = unitAliases[units] || camelFunctions[lowered] || lowered;
+        }
+        return units;
+    }
+
+    function normalizeObjectUnits(inputObject) {
+        var normalizedInput = {},
+            normalizedProp,
+            prop;
+
+        for (prop in inputObject) {
+            if (inputObject.hasOwnProperty(prop)) {
+                normalizedProp = normalizeUnits(prop);
+                if (normalizedProp) {
+                    normalizedInput[normalizedProp] = inputObject[prop];
+                }
+            }
+        }
+
+        return normalizedInput;
+    }
+
+    function makeList(field) {
+        var count, setter;
+
+        if (field.indexOf('week') === 0) {
+            count = 7;
+            setter = 'day';
+        }
+        else if (field.indexOf('month') === 0) {
+            count = 12;
+            setter = 'month';
+        }
+        else {
+            return;
+        }
+
+        moment[field] = function (format, index) {
+            var i, getter,
+                method = moment.fn._lang[field],
+                results = [];
+
+            if (typeof format === 'number') {
+                index = format;
+                format = undefined;
+            }
+
+            getter = function (i) {
+                var m = moment().utc().set(setter, i);
+                return method.call(moment.fn._lang, m, format || '');
+            };
+
+            if (index != null) {
+                return getter(index);
+            }
+            else {
+                for (i = 0; i < count; i++) {
+                    results.push(getter(i));
+                }
+                return results;
+            }
+        };
+    }
+
+    function toInt(argumentForCoercion) {
+        var coercedNumber = +argumentForCoercion,
+            value = 0;
+
+        if (coercedNumber !== 0 && isFinite(coercedNumber)) {
+            if (coercedNumber >= 0) {
+                value = Math.floor(coercedNumber);
+            } else {
+                value = Math.ceil(coercedNumber);
+            }
+        }
+
+        return value;
+    }
+
+    function daysInMonth(year, month) {
+        return new Date(Date.UTC(year, month + 1, 0)).getUTCDate();
+    }
+
+    function weeksInYear(year, dow, doy) {
+        return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week;
+    }
+
+    function daysInYear(year) {
+        return isLeapYear(year) ? 366 : 365;
+    }
+
+    function isLeapYear(year) {
+        return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
+    }
+
+    function checkOverflow(m) {
+        var overflow;
+        if (m._a && m._pf.overflow === -2) {
+            overflow =
+                m._a[MONTH] < 0 || m._a[MONTH] > 11 ? MONTH :
+                m._a[DATE] < 1 || m._a[DATE] > daysInMonth(m._a[YEAR], m._a[MONTH]) ? DATE :
+                m._a[HOUR] < 0 || m._a[HOUR] > 23 ? HOUR :
+                m._a[MINUTE] < 0 || m._a[MINUTE] > 59 ? MINUTE :
+                m._a[SECOND] < 0 || m._a[SECOND] > 59 ? SECOND :
+                m._a[MILLISECOND] < 0 || m._a[MILLISECOND] > 999 ? MILLISECOND :
+                -1;
+
+            if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {
+                overflow = DATE;
+            }
+
+            m._pf.overflow = overflow;
+        }
+    }
+
+    function isValid(m) {
+        if (m._isValid == null) {
+            m._isValid = !isNaN(m._d.getTime()) &&
+                m._pf.overflow < 0 &&
+                !m._pf.empty &&
+                !m._pf.invalidMonth &&
+                !m._pf.nullInput &&
+                !m._pf.invalidFormat &&
+                !m._pf.userInvalidated;
+
+            if (m._strict) {
+                m._isValid = m._isValid &&
+                    m._pf.charsLeftOver === 0 &&
+                    m._pf.unusedTokens.length === 0;
+            }
+        }
+        return m._isValid;
+    }
+
+    function normalizeLanguage(key) {
+        return key ? key.toLowerCase().replace('_', '-') : key;
+    }
+
+    // Return a moment from input, that is local/utc/zone equivalent to model.
+    function makeAs(input, model) {
+        return model._isUTC ? moment(input).zone(model._offset || 0) :
+            moment(input).local();
+    }
+
+    /************************************
+        Languages
+    ************************************/
+
+
+    extend(Language.prototype, {
+
+        set : function (config) {
+            var prop, i;
+            for (i in config) {
+                prop = config[i];
+                if (typeof prop === 'function') {
+                    this[i] = prop;
+                } else {
+                    this['_' + i] = prop;
+                }
+            }
+        },
+
+        _months : "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
+        months : function (m) {
+            return this._months[m.month()];
+        },
+
+        _monthsShort : "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
+        monthsShort : function (m) {
+            return this._monthsShort[m.month()];
+        },
+
+        monthsParse : function (monthName) {
+            var i, mom, regex;
+
+            if (!this._monthsParse) {
+                this._monthsParse = [];
+            }
+
+            for (i = 0; i < 12; i++) {
+                // make the regex if we don't have it already
+                if (!this._monthsParse[i]) {
+                    mom = moment.utc([2000, i]);
+                    regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');
+                    this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');
+                }
+                // test the regex
+                if (this._monthsParse[i].test(monthName)) {
+                    return i;
+                }
+            }
+        },
+
+        _weekdays : "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
+        weekdays : function (m) {
+            return this._weekdays[m.day()];
+        },
+
+        _weekdaysShort : "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
+        weekdaysShort : function (m) {
+            return this._weekdaysShort[m.day()];
+        },
+
+        _weekdaysMin : "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
+        weekdaysMin : function (m) {
+            return this._weekdaysMin[m.day()];
+        },
+
+        weekdaysParse : function (weekdayName) {
+            var i, mom, regex;
+
+            if (!this._weekdaysParse) {
+                this._weekdaysParse = [];
+            }
+
+            for (i = 0; i < 7; i++) {
+                // make the regex if we don't have it already
+                if (!this._weekdaysParse[i]) {
+                    mom = moment([2000, 1]).day(i);
+                    regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, '');
+                    this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');
+                }
+                // test the regex
+                if (this._weekdaysParse[i].test(weekdayName)) {
+                    return i;
+                }
+            }
+        },
+
+        _longDateFormat : {
+            LT : "h:mm A",
+            L : "MM/DD/YYYY",
+            LL : "MMMM D YYYY",
+            LLL : "MMMM D YYYY LT",
+            LLLL : "dddd, MMMM D YYYY LT"
+        },
+        longDateFormat : function (key) {
+            var output = this._longDateFormat[key];
+            if (!output && this._longDateFormat[key.toUpperCase()]) {
+                output = this._longDateFormat[key.toUpperCase()].replace(/MMMM|MM|DD|dddd/g, function (val) {
+                    return val.slice(1);
+                });
+                this._longDateFormat[key] = output;
+            }
+            return output;
+        },
+
+        isPM : function (input) {
+            // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays
+            // Using charAt should be more compatible.
+            return ((input + '').toLowerCase().charAt(0) === 'p');
+        },
+
+        _meridiemParse : /[ap]\.?m?\.?/i,
+        meridiem : function (hours, minutes, isLower) {
+            if (hours > 11) {
+                return isLower ? 'pm' : 'PM';
+            } else {
+                return isLower ? 'am' : 'AM';
+            }
+        },
+
+        _calendar : {
+            sameDay : '[Today at] LT',
+            nextDay : '[Tomorrow at] LT',
+            nextWeek : 'dddd [at] LT',
+            lastDay : '[Yesterday at] LT',
+            lastWeek : '[Last] dddd [at] LT',
+            sameElse : 'L'
+        },
+        calendar : function (key, mom) {
+            var output = this._calendar[key];
+            return typeof output === 'function' ? output.apply(mom) : output;
+        },
+
+        _relativeTime : {
+            future : "in %s",
+            past : "%s ago",
+            s : "a few seconds",
+            m : "a minute",
+            mm : "%d minutes",
+            h : "an hour",
+            hh : "%d hours",
+            d : "a day",
+            dd : "%d days",
+            M : "a month",
+            MM : "%d months",
+            y : "a year",
+            yy : "%d years"
+        },
+        relativeTime : function (number, withoutSuffix, string, isFuture) {
+            var output = this._relativeTime[string];
+            return (typeof output === 'function') ?
+                output(number, withoutSuffix, string, isFuture) :
+                output.replace(/%d/i, number);
+        },
+        pastFuture : function (diff, output) {
+            var format = this._relativeTime[diff > 0 ? 'future' : 'past'];
+            return typeof format === 'function' ? format(output) : format.replace(/%s/i, output);
+        },
+
+        ordinal : function (number) {
+            return this._ordinal.replace("%d", number);
+        },
+        _ordinal : "%d",
+
+        preparse : function (string) {
+            return string;
+        },
+
+        postformat : function (string) {
+            return string;
+        },
+
+        week : function (mom) {
+            return weekOfYear(mom, this._week.dow, this._week.doy).week;
+        },
+
+        _week : {
+            dow : 0, // Sunday is the first day of the week.
+            doy : 6  // The week that contains Jan 1st is the first week of the year.
+        },
+
+        _invalidDate: 'Invalid date',
+        invalidDate: function () {
+            return this._invalidDate;
+        }
+    });
+
+    // Loads a language definition into the `languages` cache.  The function
+    // takes a key and optionally values.  If not in the browser and no values
+    // are provided, it will load the language file module.  As a convenience,
+    // this function also returns the language values.
+    function loadLang(key, values) {
+        values.abbr = key;
+        if (!languages[key]) {
+            languages[key] = new Language();
+        }
+        languages[key].set(values);
+        return languages[key];
+    }
+
+    // Remove a language from the `languages` cache. Mostly useful in tests.
+    function unloadLang(key) {
+        delete languages[key];
+    }
+
+    // Determines which language definition to use and returns it.
+    //
+    // With no parameters, it will return the global language.  If you
+    // pass in a language key, such as 'en', it will return the
+    // definition for 'en', so long as 'en' has already been loaded using
+    // moment.lang.
+    function getLangDefinition(key) {
+        var i = 0, j, lang, next, split,
+            get = function (k) {
+                if (!languages[k] && hasModule) {
+                    try {
+                        require('./lang/' + k);
+                    } catch (e) { }
+                }
+                return languages[k];
+            };
+
+        if (!key) {
+            return moment.fn._lang;
+        }
+
+        if (!isArray(key)) {
+            //short-circuit everything else
+            lang = get(key);
+            if (lang) {
+                return lang;
+            }
+            key = [key];
+        }
+
+        //pick the language from the array
+        //try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each
+        //substring from most specific to least, but move to the next array item if it's a more specific variant than the current root
+        while (i < key.length) {
+            split = normalizeLanguage(key[i]).split('-');
+            j = split.length;
+            next = normalizeLanguage(key[i + 1]);
+            next = next ? next.split('-') : null;
+            while (j > 0) {
+                lang = get(split.slice(0, j).join('-'));
+                if (lang) {
+                    return lang;
+                }
+                if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) {
+                    //the next array item is better than a shallower substring of this one
+                    break;
+                }
+                j--;
+            }
+            i++;
+        }
+        return moment.fn._lang;
+    }
+
+    /************************************
+        Formatting
+    ************************************/
+
+
+    function removeFormattingTokens(input) {
+        if (input.match(/\[[\s\S]/)) {
+            return input.replace(/^\[|\]$/g, "");
+        }
+        return input.replace(/\\/g, "");
+    }
+
+    function makeFormatFunction(format) {
+        var array = format.match(formattingTokens), i, length;
+
+        for (i = 0, length = array.length; i < length; i++) {
+            if (formatTokenFunctions[array[i]]) {
+                array[i] = formatTokenFunctions[array[i]];
+            } else {
+                array[i] = removeFormattingTokens(array[i]);
+            }
+        }
+
+        return function (mom) {
+            var output = "";
+            for (i = 0; i < length; i++) {
+                output += array[i] instanceof Function ? array[i].call(mom, format) : array[i];
+            }
+            return output;
+        };
+    }
+
+    // format date using native date object
+    function formatMoment(m, format) {
+
+        if (!m.isValid()) {
+            return m.lang().invalidDate();
+        }
+
+        format = expandFormat(format, m.lang());
+
+        if (!formatFunctions[format]) {
+            formatFunctions[format] = makeFormatFunction(format);
+        }
+
+        return formatFunctions[format](m);
+    }
+
+    function expandFormat(format, lang) {
+        var i = 5;
+
+        function replaceLongDateFormatTokens(input) {
+            return lang.longDateFormat(input) || input;
+        }
+
+        localFormattingTokens.lastIndex = 0;
+        while (i >= 0 && localFormattingTokens.test(format)) {
+            format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);
+            localFormattingTokens.lastIndex = 0;
+            i -= 1;
+        }
+
+        return format;
+    }
+
+
+    /************************************
+        Parsing
+    ************************************/
+
+
+    // get the regex to find the next token
+    function getParseRegexForToken(token, config) {
+        var a, strict = config._strict;
+        switch (token) {
+        case 'Q':
+            return parseTokenOneDigit;
+        case 'DDDD':
+            return parseTokenThreeDigits;
+        case 'YYYY':
+        case 'GGGG':
+        case 'gggg':
+            return strict ? parseTokenFourDigits : parseTokenOneToFourDigits;
+        case 'Y':
+        case 'G':
+        case 'g':
+            return parseTokenSignedNumber;
+        case 'YYYYYY':
+        case 'YYYYY':
+        case 'GGGGG':
+        case 'ggggg':
+            return strict ? parseTokenSixDigits : parseTokenOneToSixDigits;
+        case 'S':
+            if (strict) { return parseTokenOneDigit; }
+            /* falls through */
+        case 'SS':
+            if (strict) { return parseTokenTwoDigits; }
+            /* falls through */
+        case 'SSS':
+            if (strict) { return parseTokenThreeDigits; }
+            /* falls through */
+        case 'DDD':
+            return parseTokenOneToThreeDigits;
+        case 'MMM':
+        case 'MMMM':
+        case 'dd':
+        case 'ddd':
+        case 'dddd':
+            return parseTokenWord;
+        case 'a':
+        case 'A':
+            return getLangDefinition(config._l)._meridiemParse;
+        case 'X':
+            return parseTokenTimestampMs;
+        case 'Z':
+        case 'ZZ':
+            return parseTokenTimezone;
+        case 'T':
+            return parseTokenT;
+        case 'SSSS':
+            return parseTokenDigits;
+        case 'MM':
+        case 'DD':
+        case 'YY':
+        case 'GG':
+        case 'gg':
+        case 'HH':
+        case 'hh':
+        case 'mm':
+        case 'ss':
+        case 'ww':
+        case 'WW':
+            return strict ? parseTokenTwoDigits : parseTokenOneOrTwoDigits;
+        case 'M':
+        case 'D':
+        case 'd':
+        case 'H':
+        case 'h':
+        case 'm':
+        case 's':
+        case 'w':
+        case 'W':
+        case 'e':
+        case 'E':
+            return parseTokenOneOrTwoDigits;
+        case 'Do':
+            return parseTokenOrdinal;
+        default :
+            a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), "i"));
+            return a;
+        }
+    }
+
+    function timezoneMinutesFromString(string) {
+        string = string || "";
+        var possibleTzMatches = (string.match(parseTokenTimezone) || []),
+            tzChunk = possibleTzMatches[possibleTzMatches.length - 1] || [],
+            parts = (tzChunk + '').match(parseTimezoneChunker) || ['-', 0, 0],
+            minutes = +(parts[1] * 60) + toInt(parts[2]);
+
+        return parts[0] === '+' ? -minutes : minutes;
+    }
+
+    // function to convert string input to date
+    function addTimeToArrayFromToken(token, input, config) {
+        var a, datePartArray = config._a;
+
+        switch (token) {
+        // QUARTER
+        case 'Q':
+            if (input != null) {
+                datePartArray[MONTH] = (toInt(input) - 1) * 3;
+            }
+            break;
+        // MONTH
+        case 'M' : // fall through to MM
+        case 'MM' :
+            if (input != null) {
+                datePartArray[MONTH] = toInt(input) - 1;
+            }
+            break;
+        case 'MMM' : // fall through to MMMM
+        case 'MMMM' :
+            a = getLangDefinition(config._l).monthsParse(input);
+            // if we didn't find a month name, mark the date as invalid.
+            if (a != null) {
+                datePartArray[MONTH] = a;
+            } else {
+                config._pf.invalidMonth = input;
+            }
+            break;
+        // DAY OF MONTH
+        case 'D' : // fall through to DD
+        case 'DD' :
+            if (input != null) {
+                datePartArray[DATE] = toInt(input);
+            }
+            break;
+        case 'Do' :
+            if (input != null) {
+                datePartArray[DATE] = toInt(parseInt(input, 10));
+            }
+            break;
+        // DAY OF YEAR
+        case 'DDD' : // fall through to DDDD
+        case 'DDDD' :
+            if (input != null) {
+                config._dayOfYear = toInt(input);
+            }
+
+            break;
+        // YEAR
+        case 'YY' :
+            datePartArray[YEAR] = moment.parseTwoDigitYear(input);
+            break;
+        case 'YYYY' :
+        case 'YYYYY' :
+        case 'YYYYYY' :
+            datePartArray[YEAR] = toInt(input);
+            break;
+        // AM / PM
+        case 'a' : // fall through to A
+        case 'A' :
+            config._isPm = getLangDefinition(config._l).isPM(input);
+            break;
+        // 24 HOUR
+        case 'H' : // fall through to hh
+        case 'HH' : // fall through to hh
+        case 'h' : // fall through to hh
+        case 'hh' :
+            datePartArray[HOUR] = toInt(input);
+            break;
+        // MINUTE
+        case 'm' : // fall through to mm
+        case 'mm' :
+            datePartArray[MINUTE] = toInt(input);
+            break;
+        // SECOND
+        case 's' : // fall through to ss
+        case 'ss' :
+            datePartArray[SECOND] = toInt(input);
+            break;
+        // MILLISECOND
+        case 'S' :
+        case 'SS' :
+        case 'SSS' :
+        case 'SSSS' :
+            datePartArray[MILLISECOND] = toInt(('0.' + input) * 1000);
+            break;
+        // UNIX TIMESTAMP WITH MS
+        case 'X':
+            config._d = new Date(parseFloat(input) * 1000);
+            break;
+        // TIMEZONE
+        case 'Z' : // fall through to ZZ
+        case 'ZZ' :
+            config._useUTC = true;
+            config._tzm = timezoneMinutesFromString(input);
+            break;
+        // WEEKDAY - human
+        case 'dd':
+        case 'ddd':
+        case 'dddd':
+            a = getLangDefinition(config._l).weekdaysParse(input);
+            // if we didn't get a weekday name, mark the date as invalid
+            if (a != null) {
+                config._w = config._w || {};
+                config._w['d'] = a;
+            } else {
+                config._pf.invalidWeekday = input;
+            }
+            break;
+        // WEEK, WEEK DAY - numeric
+        case 'w':
+        case 'ww':
+        case 'W':
+        case 'WW':
+        case 'd':
+        case 'e':
+        case 'E':
+            token = token.substr(0, 1);
+            /* falls through */
+        case 'gggg':
+        case 'GGGG':
+        case 'GGGGG':
+            token = token.substr(0, 2);
+            if (input) {
+                config._w = config._w || {};
+                config._w[token] = toInt(input);
+            }
+            break;
+        case 'gg':
+        case 'GG':
+            config._w = config._w || {};
+            config._w[token] = moment.parseTwoDigitYear(input);
+        }
+    }
+
+    function dayOfYearFromWeekInfo(config) {
+        var w, weekYear, week, weekday, dow, doy, temp, lang;
+
+        w = config._w;
+        if (w.GG != null || w.W != null || w.E != null) {
+            dow = 1;
+            doy = 4;
+
+            // TODO: We need to take the current isoWeekYear, but that depends on
+            // how we interpret now (local, utc, fixed offset). So create
+            // a now version of current config (take local/utc/offset flags, and
+            // create now).
+            weekYear = dfl(w.GG, config._a[YEAR], weekOfYear(moment(), 1, 4).year);
+            week = dfl(w.W, 1);
+            weekday = dfl(w.E, 1);
+        } else {
+            lang = getLangDefinition(config._l);
+            dow = lang._week.dow;
+            doy = lang._week.doy;
+
+            weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year);
+            week = dfl(w.w, 1);
+
+            if (w.d != null) {
+                // weekday -- low day numbers are considered next week
+                weekday = w.d;
+                if (weekday < dow) {
+                    ++week;
+                }
+            } else if (w.e != null) {
+                // local weekday -- counting starts from begining of week
+                weekday = w.e + dow;
+            } else {
+                // default to begining of week
+                weekday = dow;
+            }
+        }
+        temp = dayOfYearFromWeeks(weekYear, week, weekday, doy, dow);
+
+        config._a[YEAR] = temp.year;
+        config._dayOfYear = temp.dayOfYear;
+    }
+
+    // convert an array to a date.
+    // the array should mirror the parameters below
+    // note: all values past the year are optional and will default to the lowest possible value.
+    // [year, month, day , hour, minute, second, millisecond]
+    function dateFromConfig(config) {
+        var i, date, input = [], currentDate, yearToUse;
+
+        if (config._d) {
+            return;
+        }
+
+        currentDate = currentDateArray(config);
+
+        //compute day of the year from weeks and weekdays
+        if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {
+            dayOfYearFromWeekInfo(config);
+        }
+
+        //if the day of the year is set, figure out what it is
+        if (config._dayOfYear) {
+            yearToUse = dfl(config._a[YEAR], currentDate[YEAR]);
+
+            if (config._dayOfYear > daysInYear(yearToUse)) {
+                config._pf._overflowDayOfYear = true;
+            }
+
+            date = makeUTCDate(yearToUse, 0, config._dayOfYear);
+            config._a[MONTH] = date.getUTCMonth();
+            config._a[DATE] = date.getUTCDate();
+        }
+
+        // Default to current date.
+        // * if no year, month, day of month are given, default to today
+        // * if day of month is given, default month and year
+        // * if month is given, default only year
+        // * if year is given, don't default anything
+        for (i = 0; i < 3 && config._a[i] == null; ++i) {
+            config._a[i] = input[i] = currentDate[i];
+        }
+
+        // Zero out whatever was not defaulted, including time
+        for (; i < 7; i++) {
+            config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i];
+        }
+
+        config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input);
+        // Apply timezone offset from input. The actual zone can be changed
+        // with parseZone.
+        if (config._tzm != null) {
+            config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm);
+        }
+    }
+
+    function dateFromObject(config) {
+        var normalizedInput;
+
+        if (config._d) {
+            return;
+        }
+
+        normalizedInput = normalizeObjectUnits(config._i);
+        config._a = [
+            normalizedInput.year,
+            normalizedInput.month,
+            normalizedInput.day,
+            normalizedInput.hour,
+            normalizedInput.minute,
+            normalizedInput.second,
+            normalizedInput.millisecond
+        ];
+
+        dateFromConfig(config);
+    }
+
+    function currentDateArray(config) {
+        var now = new Date();
+        if (config._useUTC) {
+            return [
+                now.getUTCFullYear(),
+                now.getUTCMonth(),
+                now.getUTCDate()
+            ];
+        } else {
+            return [now.getFullYear(), now.getMonth(), now.getDate()];
+        }
+    }
+
+    // date from string and format string
+    function makeDateFromStringAndFormat(config) {
+
+        if (config._f === moment.ISO_8601) {
+            parseISO(config);
+            return;
+        }
+
+        config._a = [];
+        config._pf.empty = true;
+
+        // This array is used to make a Date, either with `new Date` or `Date.UTC`
+        var lang = getLangDefinition(config._l),
+            string = '' + config._i,
+            i, parsedInput, tokens, token, skipped,
+            stringLength = string.length,
+            totalParsedInputLength = 0;
+
+        tokens = expandFormat(config._f, lang).match(formattingTokens) || [];
+
+        for (i = 0; i < tokens.length; i++) {
+            token = tokens[i];
+            parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0];
+            if (parsedInput) {
+                skipped = string.substr(0, string.indexOf(parsedInput));
+                if (skipped.length > 0) {
+                    config._pf.unusedInput.push(skipped);
+                }
+                string = string.slice(string.indexOf(parsedInput) + parsedInput.length);
+                totalParsedInputLength += parsedInput.length;
+            }
+            // don't parse if it's not a known token
+            if (formatTokenFunctions[token]) {
+                if (parsedInput) {
+                    config._pf.empty = false;
+                }
+                else {
+                    config._pf.unusedTokens.push(token);
+                }
+                addTimeToArrayFromToken(token, parsedInput, config);
+            }
+            else if (config._strict && !parsedInput) {
+                config._pf.unusedTokens.push(token);
+            }
+        }
+
+        // add remaining unparsed input length to the string
+        config._pf.charsLeftOver = stringLength - totalParsedInputLength;
+        if (string.length > 0) {
+            config._pf.unusedInput.push(string);
+        }
+
+        // handle am pm
+        if (config._isPm && config._a[HOUR] < 12) {
+            config._a[HOUR] += 12;
+        }
+        // if is 12 am, change hours to 0
+        if (config._isPm === false && config._a[HOUR] === 12) {
+            config._a[HOUR] = 0;
+        }
+
+        dateFromConfig(config);
+        checkOverflow(config);
+    }
+
+    function unescapeFormat(s) {
+        return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) {
+            return p1 || p2 || p3 || p4;
+        });
+    }
+
+    // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript
+    function regexpEscape(s) {
+        return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
+    }
+
+    // date from string and array of format strings
+    function makeDateFromStringAndArray(config) {
+        var tempConfig,
+            bestMoment,
+
+            scoreToBeat,
+            i,
+            currentScore;
+
+        if (config._f.length === 0) {
+            config._pf.invalidFormat = true;
+            config._d = new Date(NaN);
+            return;
+        }
+
+        for (i = 0; i < config._f.length; i++) {
+            currentScore = 0;
+            tempConfig = extend({}, config);
+            tempConfig._pf = defaultParsingFlags();
+            tempConfig._f = config._f[i];
+            makeDateFromStringAndFormat(tempConfig);
+
+            if (!isValid(tempConfig)) {
+                continue;
+            }
+
+            // if there is any input that was not parsed add a penalty for that format
+            currentScore += tempConfig._pf.charsLeftOver;
+
+            //or tokens
+            currentScore += tempConfig._pf.unusedTokens.length * 10;
+
+            tempConfig._pf.score = currentScore;
+
+            if (scoreToBeat == null || currentScore < scoreToBeat) {
+                scoreToBeat = currentScore;
+                bestMoment = tempConfig;
+            }
+        }
+
+        extend(config, bestMoment || tempConfig);
+    }
+
+    // date from iso format
+    function parseISO(config) {
+        var i, l,
+            string = config._i,
+            match = isoRegex.exec(string);
+
+        if (match) {
+            config._pf.iso = true;
+            for (i = 0, l = isoDates.length; i < l; i++) {
+                if (isoDates[i][1].exec(string)) {
+                    // match[5] should be "T" or undefined
+                    config._f = isoDates[i][0] + (match[6] || " ");
+                    break;
+                }
+            }
+            for (i = 0, l = isoTimes.length; i < l; i++) {
+                if (isoTimes[i][1].exec(string)) {
+                    config._f += isoTimes[i][0];
+                    break;
+                }
+            }
+            if (string.match(parseTokenTimezone)) {
+                config._f += "Z";
+            }
+            makeDateFromStringAndFormat(config);
+        } else {
+            config._isValid = false;
+        }
+    }
+
+    // date from iso format or fallback
+    function makeDateFromString(config) {
+        parseISO(config);
+        if (config._isValid === false) {
+            delete config._isValid;
+            moment.createFromInputFallback(config);
+        }
+    }
+
+    function makeDateFromInput(config) {
+        var input = config._i,
+            matched = aspNetJsonRegex.exec(input);
+
+        if (input === undefined) {
+            config._d = new Date();
+        } else if (matched) {
+            config._d = new Date(+matched[1]);
+        } else if (typeof input === 'string') {
+            makeDateFromString(config);
+        } else if (isArray(input)) {
+            config._a = input.slice(0);
+            dateFromConfig(config);
+        } else if (isDate(input)) {
+            config._d = new Date(+input);
+        } else if (typeof(input) === 'object') {
+            dateFromObject(config);
+        } else if (typeof(input) === 'number') {
+            // from milliseconds
+            config._d = new Date(input);
+        } else {
+            moment.createFromInputFallback(config);
+        }
+    }
+
+    function makeDate(y, m, d, h, M, s, ms) {
+        //can't just apply() to create a date:
+        //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply
+        var date = new Date(y, m, d, h, M, s, ms);
+
+        //the date constructor doesn't accept years < 1970
+        if (y < 1970) {
+            date.setFullYear(y);
+        }
+        return date;
+    }
+
+    function makeUTCDate(y) {
+        var date = new Date(Date.UTC.apply(null, arguments));
+        if (y < 1970) {
+            date.setUTCFullYear(y);
+        }
+        return date;
+    }
+
+    function parseWeekday(input, language) {
+        if (typeof input === 'string') {
+            if (!isNaN(input)) {
+                input = parseInt(input, 10);
+            }
+            else {
+                input = language.weekdaysParse(input);
+                if (typeof input !== 'number') {
+                    return null;
+                }
+            }
+        }
+        return input;
+    }
+
+    /************************************
+        Relative Time
+    ************************************/
+
+
+    // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize
+    function substituteTimeAgo(string, number, withoutSuffix, isFuture, lang) {
+        return lang.relativeTime(number || 1, !!withoutSuffix, string, isFuture);
+    }
+
+    function relativeTime(milliseconds, withoutSuffix, lang) {
+        var seconds = round(Math.abs(milliseconds) / 1000),
+            minutes = round(seconds / 60),
+            hours = round(minutes / 60),
+            days = round(hours / 24),
+            years = round(days / 365),
+            args = seconds < relativeTimeThresholds.s  && ['s', seconds] ||
+                minutes === 1 && ['m'] ||
+                minutes < relativeTimeThresholds.m && ['mm', minutes] ||
+                hours === 1 && ['h'] ||
+                hours < relativeTimeThresholds.h && ['hh', hours] ||
+                days === 1 && ['d'] ||
+                days <= relativeTimeThresholds.dd && ['dd', days] ||
+                days <= relativeTimeThresholds.dm && ['M'] ||
+                days < relativeTimeThresholds.dy && ['MM', round(days / 30)] ||
+                years === 1 && ['y'] || ['yy', years];
+        args[2] = withoutSuffix;
+        args[3] = milliseconds > 0;
+        args[4] = lang;
+        return substituteTimeAgo.apply({}, args);
+    }
+
+
+    /************************************
+        Week of Year
+    ************************************/
+
+
+    // firstDayOfWeek       0 = sun, 6 = sat
+    //                      the day of the week that starts the week
+    //                      (usually sunday or monday)
+    // firstDayOfWeekOfYear 0 = sun, 6 = sat
+    //                      the first week is the week that contains the first
+    //                      of this day of the week
+    //                      (eg. ISO weeks use thursday (4))
+    function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) {
+        var end = firstDayOfWeekOfYear - firstDayOfWeek,
+            daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(),
+            adjustedMoment;
+
+
+        if (daysToDayOfWeek > end) {
+            daysToDayOfWeek -= 7;
+        }
+
+        if (daysToDayOfWeek < end - 7) {
+            daysToDayOfWeek += 7;
+        }
+
+        adjustedMoment = moment(mom).add('d', daysToDayOfWeek);
+        return {
+            week: Math.ceil(adjustedMoment.dayOfYear() / 7),
+            year: adjustedMoment.year()
+        };
+    }
+
+    //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday
+    function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) {
+        var d = makeUTCDate(year, 0, 1).getUTCDay(), daysToAdd, dayOfYear;
+
+        d = d === 0 ? 7 : d;
+        weekday = weekday != null ? weekday : firstDayOfWeek;
+        daysToAdd = firstDayOfWeek - d + (d > firstDayOfWeekOfYear ? 7 : 0) - (d < firstDayOfWeek ? 7 : 0);
+        dayOfYear = 7 * (week - 1) + (weekday - firstDayOfWeek) + daysToAdd + 1;
+
+        return {
+            year: dayOfYear > 0 ? year : year - 1,
+            dayOfYear: dayOfYear > 0 ?  dayOfYear : daysInYear(year - 1) + dayOfYear
+        };
+    }
+
+    /************************************
+        Top Level Functions
+    ************************************/
+
+    function makeMoment(config) {
+        var input = config._i,
+            format = config._f;
+
+        if (input === null || (format === undefined && input === '')) {
+            return moment.invalid({nullInput: true});
+        }
+
+        if (typeof input === 'string') {
+            config._i = input = getLangDefinition().preparse(input);
+        }
+
+        if (moment.isMoment(input)) {
+            config = cloneMoment(input);
+
+            config._d = new Date(+input._d);
+        } else if (format) {
+            if (isArray(format)) {
+                makeDateFromStringAndArray(config);
+            } else {
+                makeDateFromStringAndFormat(config);
+            }
+        } else {
+            makeDateFromInput(config);
+        }
+
+        return new Moment(config);
+    }
+
+    moment = function (input, format, lang, strict) {
+        var c;
+
+        if (typeof(lang) === "boolean") {
+            strict = lang;
+            lang = undefined;
+        }
+        // object construction must be done this way.
+        // https://github.com/moment/moment/issues/1423
+        c = {};
+        c._isAMomentObject = true;
+        c._i = input;
+        c._f = format;
+        c._l = lang;
+        c._strict = strict;
+        c._isUTC = false;
+        c._pf = defaultParsingFlags();
+
+        return makeMoment(c);
+    };
+
+    moment.suppressDeprecationWarnings = false;
+
+    moment.createFromInputFallback = deprecate(
+            "moment construction falls back to js Date. This is " +
+            "discouraged and will be removed in upcoming major " +
+            "release. Please refer to " +
+            "https://github.com/moment/moment/issues/1407 for more info.",
+            function (config) {
+        config._d = new Date(config._i);
+    });
+
+    // Pick a moment m from moments so that m[fn](other) is true for all
+    // other. This relies on the function fn to be transitive.
+    //
+    // moments should either be an array of moment objects or an array, whose
+    // first element is an array of moment objects.
+    function pickBy(fn, moments) {
+        var res, i;
+        if (moments.length === 1 && isArray(moments[0])) {
+            moments = moments[0];
+        }
+        if (!moments.length) {
+            return moment();
+        }
+        res = moments[0];
+        for (i = 1; i < moments.length; ++i) {
+            if (moments[i][fn](res)) {
+                res = moments[i];
+            }
+        }
+        return res;
+    }
+
+    moment.min = function () {
+        var args = [].slice.call(arguments, 0);
+
+        return pickBy('isBefore', args);
+    };
+
+    moment.max = function () {
+        var args = [].slice.call(arguments, 0);
+
+        return pickBy('isAfter', args);
+    };
+
+    // creating with utc
+    moment.utc = function (input, format, lang, strict) {
+        var c;
+
+        if (typeof(lang) === "boolean") {
+            strict = lang;
+            lang = undefined;
+        }
+        // object construction must be done this way.
+        // https://github.com/moment/moment/issues/1423
+        c = {};
+        c._isAMomentObject = true;
+        c._useUTC = true;
+        c._isUTC = true;
+        c._l = lang;
+        c._i = input;
+        c._f = format;
+        c._strict = strict;
+        c._pf = defaultParsingFlags();
+
+        return makeMoment(c).utc();
+    };
+
+    // creating with unix timestamp (in seconds)
+    moment.unix = function (input) {
+        return moment(input * 1000);
+    };
+
+    // duration
+    moment.duration = function (input, key) {
+        var duration = input,
+            // matching against regexp is expensive, do it on demand
+            match = null,
+            sign,
+            ret,
+            parseIso;
+
+        if (moment.isDuration(input)) {
+            duration = {
+                ms: input._milliseconds,
+                d: input._days,
+                M: input._months
+            };
+        } else if (typeof input === 'number') {
+            duration = {};
+            if (key) {
+                duration[key] = input;
+            } else {
+                duration.milliseconds = input;
+            }
+        } else if (!!(match = aspNetTimeSpanJsonRegex.exec(input))) {
+            sign = (match[1] === "-") ? -1 : 1;
+            duration = {
+                y: 0,
+                d: toInt(match[DATE]) * sign,
+                h: toInt(match[HOUR]) * sign,
+                m: toInt(match[MINUTE]) * sign,
+                s: toInt(match[SECOND]) * sign,
+                ms: toInt(match[MILLISECOND]) * sign
+            };
+        } else if (!!(match = isoDurationRegex.exec(input))) {
+            sign = (match[1] === "-") ? -1 : 1;
+            parseIso = function (inp) {
+                // We'd normally use ~~inp for this, but unfortunately it also
+                // converts floats to ints.
+                // inp may be undefined, so careful calling replace on it.
+                var res = inp && parseFloat(inp.replace(',', '.'));
+                // apply sign while we're at it
+                return (isNaN(res) ? 0 : res) * sign;
+            };
+            duration = {
+                y: parseIso(match[2]),
+                M: parseIso(match[3]),
+                d: parseIso(match[4]),
+                h: parseIso(match[5]),
+                m: parseIso(match[6]),
+                s: parseIso(match[7]),
+                w: parseIso(match[8])
+            };
+        }
+
+        ret = new Duration(duration);
+
+        if (moment.isDuration(input) && input.hasOwnProperty('_lang')) {
+            ret._lang = input._lang;
+        }
+
+        return ret;
+    };
+
+    // version number
+    moment.version = VERSION;
+
+    // default format
+    moment.defaultFormat = isoFormat;
+
+    // constant that refers to the ISO standard
+    moment.ISO_8601 = function () {};
+
+    // Plugins that add properties should also add the key here (null value),
+    // so we can properly clone ourselves.
+    moment.momentProperties = momentProperties;
+
+    // This function will be called whenever a moment is mutated.
+    // It is intended to keep the offset in sync with the timezone.
+    moment.updateOffset = function () {};
+
+    // This function allows you to set a threshold for relative time strings
+    moment.relativeTimeThreshold = function(threshold, limit) {
+      if (relativeTimeThresholds[threshold] === undefined) {
+        return false;
+      }
+      relativeTimeThresholds[threshold] = limit;
+      return true;
+    };
+
+    // This function will load languages and then set the global language.  If
+    // no arguments are passed in, it will simply return the current global
+    // language key.
+    moment.lang = function (key, values) {
+        var r;
+        if (!key) {
+            return moment.fn._lang._abbr;
+        }
+        if (values) {
+            loadLang(normalizeLanguage(key), values);
+        } else if (values === null) {
+            unloadLang(key);
+            key = 'en';
+        } else if (!languages[key]) {
+            getLangDefinition(key);
+        }
+        r = moment.duration.fn._lang = moment.fn._lang = getLangDefinition(key);
+        return r._abbr;
+    };
+
+    // returns language data
+    moment.langData = function (key) {
+        if (key && key._lang && key._lang._abbr) {
+            key = key._lang._abbr;
+        }
+        return getLangDefinition(key);
+    };
+
+    // compare moment object
+    moment.isMoment = function (obj) {
+        return obj instanceof Moment ||
+            (obj != null &&  obj.hasOwnProperty('_isAMomentObject'));
+    };
+
+    // for typechecking Duration objects
+    moment.isDuration = function (obj) {
+        return obj instanceof Duration;
+    };
+
+    for (i = lists.length - 1; i >= 0; --i) {
+        makeList(lists[i]);
+    }
+
+    moment.normalizeUnits = function (units) {
+        return normalizeUnits(units);
+    };
+
+    moment.invalid = function (flags) {
+        var m = moment.utc(NaN);
+        if (flags != null) {
+            extend(m._pf, flags);
+        }
+        else {
+            m._pf.userInvalidated = true;
+        }
+
+        return m;
+    };
+
+    moment.parseZone = function () {
+        return moment.apply(null, arguments).parseZone();
+    };
+
+    moment.parseTwoDigitYear = function (input) {
+        return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);
+    };
+
+    /************************************
+        Moment Prototype
+    ************************************/
+
+
+    extend(moment.fn = Moment.prototype, {
+
+        clone : function () {
+            return moment(this);
+        },
+
+        valueOf : function () {
+            return +this._d + ((this._offset || 0) * 60000);
+        },
+
+        unix : function () {
+            return Math.floor(+this / 1000);
+        },
+
+        toString : function () {
+            return this.clone().lang('en').format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ");
+        },
+
+        toDate : function () {
+            return this._offset ? new Date(+this) : this._d;
+        },
+
+        toISOString : function () {
+            var m = moment(this).utc();
+            if (0 < m.year() && m.year() <= 9999) {
+                return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
+            } else {
+                return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
+            }
+        },
+
+        toArray : function () {
+            var m = this;
+            return [
+                m.year(),
+                m.month(),
+                m.date(),
+                m.hours(),
+                m.minutes(),
+                m.seconds(),
+                m.milliseconds()
+            ];
+        },
+
+        isValid : function () {
+            return isValid(this);
+        },
+
+        isDSTShifted : function () {
+
+            if (this._a) {
+                return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0;
+            }
+
+            return false;
+        },
+
+        parsingFlags : function () {
+            return extend({}, this._pf);
+        },
+
+        invalidAt: function () {
+            return this._pf.overflow;
+        },
+
+        utc : function () {
+            return this.zone(0);
+        },
+
+        local : function () {
+            this.zone(0);
+            this._isUTC = false;
+            return this;
+        },
+
+        format : function (inputString) {
+            var output = formatMoment(this, inputString || moment.defaultFormat);
+            return this.lang().postformat(output);
+        },
+
+        add : function (input, val) {
+            var dur;
+            // switch args to support add('s', 1) and add(1, 's')
+            if (typeof input === 'string' && typeof val === 'string') {
+                dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input);
+            } else if (typeof input === 'string') {
+                dur = moment.duration(+val, input);
+            } else {
+                dur = moment.duration(input, val);
+            }
+            addOrSubtractDurationFromMoment(this, dur, 1);
+            return this;
+        },
+
+        subtract : function (input, val) {
+            var dur;
+            // switch args to support subtract('s', 1) and subtract(1, 's')
+            if (typeof input === 'string' && typeof val === 'string') {
+                dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input);
+            } else if (typeof input === 'string') {
+                dur = moment.duration(+val, input);
+            } else {
+                dur = moment.duration(input, val);
+            }
+            addOrSubtractDurationFromMoment(this, dur, -1);
+            return this;
+        },
+
+        diff : function (input, units, asFloat) {
+            var that = makeAs(input, this),
+                zoneDiff = (this.zone() - that.zone()) * 6e4,
+                diff, output;
+
+            units = normalizeUnits(units);
+
+            if (units === 'year' || units === 'month') {
+                // average number of days in the months in the given dates
+                diff = (this.daysInMonth() + that.daysInMonth()) * 432e5; // 24 * 60 * 60 * 1000 / 2
+                // difference in months
+                output = ((this.year() - that.year()) * 12) + (this.month() - that.month());
+                // adjust by taking difference in days, average number of days
+                // and dst in the given months.
+                output += ((this - moment(this).startOf('month')) -
+                        (that - moment(that).startOf('month'))) / diff;
+                // same as above but with zones, to negate all dst
+                output -= ((this.zone() - moment(this).startOf('month').zone()) -
+                        (that.zone() - moment(that).startOf('month').zone())) * 6e4 / diff;
+                if (units === 'year') {
+                    output = output / 12;
+                }
+            } else {
+                diff = (this - that);
+                output = units === 'second' ? diff / 1e3 : // 1000
+                    units === 'minute' ? diff / 6e4 : // 1000 * 60
+                    units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60
+                    units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst
+                    units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst
+                    diff;
+            }
+            return asFloat ? output : absRound(output);
+        },
+
+        from : function (time, withoutSuffix) {
+            return moment.duration(this.diff(time)).lang(this.lang()._abbr).humanize(!withoutSuffix);
+        },
+
+        fromNow : function (withoutSuffix) {
+            return this.from(moment(), withoutSuffix);
+        },
+
+        calendar : function (time) {
+            // We want to compare the start of today, vs this.
+            // Getting start-of-today depends on whether we're zone'd or not.
+            var now = time || moment(),
+                sod = makeAs(now, this).startOf('day'),
+                diff = this.diff(sod, 'days', true),
+                format = diff < -6 ? 'sameElse' :
+                    diff < -1 ? 'lastWeek' :
+                    diff < 0 ? 'lastDay' :
+                    diff < 1 ? 'sameDay' :
+                    diff < 2 ? 'nextDay' :
+                    diff < 7 ? 'nextWeek' : 'sameElse';
+            return this.format(this.lang().calendar(format, this));
+        },
+
+        isLeapYear : function () {
+            return isLeapYear(this.year());
+        },
+
+        isDST : function () {
+            return (this.zone() < this.clone().month(0).zone() ||
+                this.zone() < this.clone().month(5).zone());
+        },
+
+        day : function (input) {
+            var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay();
+            if (input != null) {
+                input = parseWeekday(input, this.lang());
+                return this.add({ d : input - day });
+            } else {
+                return day;
+            }
+        },
+
+        month : makeAccessor('Month', true),
+
+        startOf: function (units) {
+            units = normalizeUnits(units);
+            // the following switch intentionally omits break keywords
+            // to utilize falling through the cases.
+            switch (units) {
+            case 'year':
+                this.month(0);
+                /* falls through */
+            case 'quarter':
+            case 'month':
+                this.date(1);
+                /* falls through */
+            case 'week':
+            case 'isoWeek':
+            case 'day':
+                this.hours(0);
+                /* falls through */
+            case 'hour':
+                this.minutes(0);
+                /* falls through */
+            case 'minute':
+                this.seconds(0);
+                /* falls through */
+            case 'second':
+                this.milliseconds(0);
+                /* falls through */
+            }
+
+            // weeks are a special case
+            if (units === 'week') {
+                this.weekday(0);
+            } else if (units === 'isoWeek') {
+                this.isoWeekday(1);
+            }
+
+            // quarters are also special
+            if (units === 'quarter') {
+                this.month(Math.floor(this.month() / 3) * 3);
+            }
+
+            return this;
+        },
+
+        endOf: function (units) {
+            units = normalizeUnits(units);
+            return this.startOf(units).add((units === 'isoWeek' ? 'week' : units), 1).subtract('ms', 1);
+        },
+
+        isAfter: function (input, units) {
+            units = typeof units !== 'undefined' ? units : 'millisecond';
+            return +this.clone().startOf(units) > +moment(input).startOf(units);
+        },
+
+        isBefore: function (input, units) {
+            units = typeof units !== 'undefined' ? units : 'millisecond';
+            return +this.clone().startOf(units) < +moment(input).startOf(units);
+        },
+
+        isSame: function (input, units) {
+            units = units || 'ms';
+            return +this.clone().startOf(units) === +makeAs(input, this).startOf(units);
+        },
+
+        min: deprecate(
+                 "moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",
+                 function (other) {
+                     other = moment.apply(null, arguments);
+                     return other < this ? this : other;
+                 }
+         ),
+
+        max: deprecate(
+                "moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",
+                function (other) {
+                    other = moment.apply(null, arguments);
+                    return other > this ? this : other;
+                }
+        ),
+
+        // keepTime = true means only change the timezone, without affecting
+        // the local hour. So 5:31:26 +0300 --[zone(2, true)]--> 5:31:26 +0200
+        // It is possible that 5:31:26 doesn't exist int zone +0200, so we
+        // adjust the time as needed, to be valid.
+        //
+        // Keeping the time actually adds/subtracts (one hour)
+        // from the actual represented time. That is why we call updateOffset
+        // a second time. In case it wants us to change the offset again
+        // _changeInProgress == true case, then we have to adjust, because
+        // there is no such time in the given timezone.
+        zone : function (input, keepTime) {
+            var offset = this._offset || 0;
+            if (input != null) {
+                if (typeof input === "string") {
+                    input = timezoneMinutesFromString(input);
+                }
+                if (Math.abs(input) < 16) {
+                    input = input * 60;
+                }
+                this._offset = input;
+                this._isUTC = true;
+                if (offset !== input) {
+                    if (!keepTime || this._changeInProgress) {
+                        addOrSubtractDurationFromMoment(this,
+                                moment.duration(offset - input, 'm'), 1, false);
+                    } else if (!this._changeInProgress) {
+                        this._changeInProgress = true;
+                        moment.updateOffset(this, true);
+                        this._changeInProgress = null;
+                    }
+                }
+            } else {
+                return this._isUTC ? offset : this._d.getTimezoneOffset();
+            }
+            return this;
+        },
+
+        zoneAbbr : function () {
+            return this._isUTC ? "UTC" : "";
+        },
+
+        zoneName : function () {
+            return this._isUTC ? "Coordinated Universal Time" : "";
+        },
+
+        parseZone : function () {
+            if (this._tzm) {
+                this.zone(this._tzm);
+            } else if (typeof this._i === 'string') {
+                this.zone(this._i);
+            }
+            return this;
+        },
+
+        hasAlignedHourOffset : function (input) {
+            if (!input) {
+                input = 0;
+            }
+            else {
+                input = moment(input).zone();
+            }
+
+            return (this.zone() - input) % 60 === 0;
+        },
+
+        daysInMonth : function () {
+            return daysInMonth(this.year(), this.month());
+        },
+
+        dayOfYear : function (input) {
+            var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1;
+            return input == null ? dayOfYear : this.add("d", (input - dayOfYear));
+        },
+
+        quarter : function (input) {
+            return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3);
+        },
+
+        weekYear : function (input) {
+            var year = weekOfYear(this, this.lang()._week.dow, this.lang()._week.doy).year;
+            return input == null ? year : this.add("y", (input - year));
+        },
+
+        isoWeekYear : function (input) {
+            var year = weekOfYear(this, 1, 4).year;
+            return input == null ? year : this.add("y", (input - year));
+        },
+
+        week : function (input) {
+            var week = this.lang().week(this);
+            return input == null ? week : this.add("d", (input - week) * 7);
+        },
+
+        isoWeek : function (input) {
+            var week = weekOfYear(this, 1, 4).week;
+            return input == null ? week : this.add("d", (input - week) * 7);
+        },
+
+        weekday : function (input) {
+            var weekday = (this.day() + 7 - this.lang()._week.dow) % 7;
+            return input == null ? weekday : this.add("d", input - weekday);
+        },
+
+        isoWeekday : function (input) {
+            // behaves the same as moment#day except
+            // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)
+            // as a setter, sunday should belong to the previous week.
+            return input == null ? this.day() || 7 : this.day(this.day() % 7 ? input : input - 7);
+        },
+
+        isoWeeksInYear : function () {
+            return weeksInYear(this.year(), 1, 4);
+        },
+
+        weeksInYear : function () {
+            var weekInfo = this._lang._week;
+            return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy);
+        },
+
+        get : function (units) {
+            units = normalizeUnits(units);
+            return this[units]();
+        },
+
+        set : function (units, value) {
+            units = normalizeUnits(units);
+            if (typeof this[units] === 'function') {
+                this[units](value);
+            }
+            return this;
+        },
+
+        // If passed a language key, it will set the language for this
+        // instance.  Otherwise, it will return the language configuration
+        // variables for this instance.
+        lang : function (key) {
+            if (key === undefined) {
+                return this._lang;
+            } else {
+                this._lang = getLangDefinition(key);
+                return this;
+            }
+        }
+    });
+
+    function rawMonthSetter(mom, value) {
+        var dayOfMonth;
+
+        // TODO: Move this out of here!
+        if (typeof value === 'string') {
+            value = mom.lang().monthsParse(value);
+            // TODO: Another silent failure?
+            if (typeof value !== 'number') {
+                return mom;
+            }
+        }
+
+        dayOfMonth = Math.min(mom.date(),
+                daysInMonth(mom.year(), value));
+        mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth);
+        return mom;
+    }
+
+    function rawGetter(mom, unit) {
+        return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]();
+    }
+
+    function rawSetter(mom, unit, value) {
+        if (unit === 'Month') {
+            return rawMonthSetter(mom, value);
+        } else {
+            return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);
+        }
+    }
+
+    function makeAccessor(unit, keepTime) {
+        return function (value) {
+            if (value != null) {
+                rawSetter(this, unit, value);
+                moment.updateOffset(this, keepTime);
+                return this;
+            } else {
+                return rawGetter(this, unit);
+            }
+        };
+    }
+
+    moment.fn.millisecond = moment.fn.milliseconds = makeAccessor('Milliseconds', false);
+    moment.fn.second = moment.fn.seconds = makeAccessor('Seconds', false);
+    moment.fn.minute = moment.fn.minutes = makeAccessor('Minutes', false);
+    // Setting the hour should keep the time, because the user explicitly
+    // specified which hour he wants. So trying to maintain the same hour (in
+    // a new timezone) makes sense. Adding/subtracting hours does not follow
+    // this rule.
+    moment.fn.hour = moment.fn.hours = makeAccessor('Hours', true);
+    // moment.fn.month is defined separately
+    moment.fn.date = makeAccessor('Date', true);
+    moment.fn.dates = deprecate("dates accessor is deprecated. Use date instead.", makeAccessor('Date', true));
+    moment.fn.year = makeAccessor('FullYear', true);
+    moment.fn.years = deprecate("years accessor is deprecated. Use year instead.", makeAccessor('FullYear', true));
+
+    // add plural methods
+    moment.fn.days = moment.fn.day;
+    moment.fn.months = moment.fn.month;
+    moment.fn.weeks = moment.fn.week;
+    moment.fn.isoWeeks = moment.fn.isoWeek;
+    moment.fn.quarters = moment.fn.quarter;
+
+    // add aliased format methods
+    moment.fn.toJSON = moment.fn.toISOString;
+
+    /************************************
+        Duration Prototype
+    ************************************/
+
+
+    extend(moment.duration.fn = Duration.prototype, {
+
+        _bubble : function () {
+            var milliseconds = this._milliseconds,
+                days = this._days,
+                months = this._months,
+                data = this._data,
+                seconds, minutes, hours, years;
+
+            // The following code bubbles up values, see the tests for
+            // examples of what that means.
+            data.milliseconds = milliseconds % 1000;
+
+            seconds = absRound(milliseconds / 1000);
+            data.seconds = seconds % 60;
+
+            minutes = absRound(seconds / 60);
+            data.minutes = minutes % 60;
+
+            hours = absRound(minutes / 60);
+            data.hours = hours % 24;
+
+            days += absRound(hours / 24);
+            data.days = days % 30;
+
+            months += absRound(days / 30);
+            data.months = months % 12;
+
+            years = absRound(months / 12);
+            data.years = years;
+        },
+
+        weeks : function () {
+            return absRound(this.days() / 7);
+        },
+
+        valueOf : function () {
+            return this._milliseconds +
+              this._days * 864e5 +
+              (this._months % 12) * 2592e6 +
+              toInt(this._months / 12) * 31536e6;
+        },
+
+        humanize : function (withSuffix) {
+            var difference = +this,
+                output = relativeTime(difference, !withSuffix, this.lang());
+
+            if (withSuffix) {
+                output = this.lang().pastFuture(difference, output);
+            }
+
+            return this.lang().postformat(output);
+        },
+
+        add : function (input, val) {
+            // supports only 2.0-style add(1, 's') or add(moment)
+            var dur = moment.duration(input, val);
+
+            this._milliseconds += dur._milliseconds;
+            this._days += dur._days;
+            this._months += dur._months;
+
+            this._bubble();
+
+            return this;
+        },
+
+        subtract : function (input, val) {
+            var dur = moment.duration(input, val);
+
+            this._milliseconds -= dur._milliseconds;
+            this._days -= dur._days;
+            this._months -= dur._months;
+
+            this._bubble();
+
+            return this;
+        },
+
+        get : function (units) {
+            units = normalizeUnits(units);
+            return this[units.toLowerCase() + 's']();
+        },
+
+        as : function (units) {
+            units = normalizeUnits(units);
+            return this['as' + units.charAt(0).toUpperCase() + units.slice(1) + 's']();
+        },
+
+        lang : moment.fn.lang,
+
+        toIsoString : function () {
+            // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js
+            var years = Math.abs(this.years()),
+                months = Math.abs(this.months()),
+                days = Math.abs(this.days()),
+                hours = Math.abs(this.hours()),
+                minutes = Math.abs(this.minutes()),
+                seconds = Math.abs(this.seconds() + this.milliseconds() / 1000);
+
+            if (!this.asSeconds()) {
+                // this is the same as C#'s (Noda) and python (isodate)...
+                // but not other JS (goog.date)
+                return 'P0D';
+            }
+
+            return (this.asSeconds() < 0 ? '-' : '') +
+                'P' +
+                (years ? years + 'Y' : '') +
+                (months ? months + 'M' : '') +
+                (days ? days + 'D' : '') +
+                ((hours || minutes || seconds) ? 'T' : '') +
+                (hours ? hours + 'H' : '') +
+                (minutes ? minutes + 'M' : '') +
+                (seconds ? seconds + 'S' : '');
+        }
+    });
+
+    function makeDurationGetter(name) {
+        moment.duration.fn[name] = function () {
+            return this._data[name];
+        };
+    }
+
+    function makeDurationAsGetter(name, factor) {
+        moment.duration.fn['as' + name] = function () {
+            return +this / factor;
+        };
+    }
+
+    for (i in unitMillisecondFactors) {
+        if (unitMillisecondFactors.hasOwnProperty(i)) {
+            makeDurationAsGetter(i, unitMillisecondFactors[i]);
+            makeDurationGetter(i.toLowerCase());
+        }
+    }
+
+    makeDurationAsGetter('Weeks', 6048e5);
+    moment.duration.fn.asMonths = function () {
+        return (+this - this.years() * 31536e6) / 2592e6 + this.years() * 12;
+    };
+
+
+    /************************************
+        Default Lang
+    ************************************/
+
+
+    // Set default language, other languages will inherit from English.
+    moment.lang('en', {
+        ordinal : function (number) {
+            var b = number % 10,
+                output = (toInt(number % 100 / 10) === 1) ? 'th' :
+                (b === 1) ? 'st' :
+                (b === 2) ? 'nd' :
+                (b === 3) ? 'rd' : 'th';
+            return number + output;
+        }
+    });
+
+    /* EMBED_LANGUAGES */
+
+    /************************************
+        Exposing Moment
+    ************************************/
+
+    function makeGlobal(shouldDeprecate) {
+        /*global ender:false */
+        if (typeof ender !== 'undefined') {
+            return;
+        }
+        oldGlobalMoment = globalScope.moment;
+        if (shouldDeprecate) {
+            globalScope.moment = deprecate(
+                    "Accessing Moment through the global scope is " +
+                    "deprecated, and will be removed in an upcoming " +
+                    "release.",
+                    moment);
+        } else {
+            globalScope.moment = moment;
+        }
+    }
+
+    // CommonJS module is defined
+    if (hasModule) {
+        module.exports = moment;
+    } else if (typeof define === "function" && define.amd) {
+        define("moment", function (require, exports, module) {
+            if (module.config && module.config() && module.config().noGlobal === true) {
+                // release the global variable
+                globalScope.moment = oldGlobalMoment;
+            }
+
+            return moment;
+        });
+        makeGlobal(true);
+    } else {
+        makeGlobal();
+    }
+}).call(this);
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/TL.Media.js b/public/opac/TimelineJS3-3.5.1/source/js/media/TL.Media.js
new file mode 100644
index 0000000000000000000000000000000000000000..e282ef4db2df2d2fc9f59b7eddc6122f5909f407
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/TL.Media.js
@@ -0,0 +1,369 @@
+/*	TL.Media
+	Main media template for media assets.
+	Takes a data object and populates a dom object
+================================================== */
+// TODO add link
+
+TL.Media = TL.Class.extend({
+
+	includes: [TL.Events, TL.I18NMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, add_to_container) {
+		// DOM ELEMENTS
+		this._el = {
+			container: {},
+			content_container: {},
+			content: {},
+			content_item: {},
+			content_link: {},
+			caption: null,
+			credit: null,
+			parent: {},
+			link: null
+		};
+
+		// Player (If Needed)
+		this.player = null;
+
+		// Timer (If Needed)
+		this.timer = null;
+		this.load_timer = null;
+
+		// Message
+		this.message = null;
+
+		// Media ID
+		this.media_id = null;
+
+		// State
+		this._state = {
+			loaded: false,
+			show_meta: false,
+			media_loaded: false
+		};
+
+		// Data
+		this.data = {
+			unique_id: 			null,
+			url: 				null,
+			credit:				null,
+			caption:			null,
+			credit_alternate: 	null,
+			caption_alternate: 	null,
+			link: 				null,
+			link_target: 		null
+		};
+
+		//Options
+		this.options = {
+			api_key_flickr: 		"f2cc870b4d233dd0a5bfe73fd0d64ef0",
+			api_key_googlemaps: "AIzaSyB9dW8e_iRrATFa8g24qB6BDBGdkrLDZYI",
+			api_key_embedly: 		"", // ae2da610d1454b66abdf2e6a4c44026d
+			credit_height: 			0,
+			caption_height: 		0,
+			background:         0   // is background media (for slide)
+		};
+
+		this.animator = {};
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+        // Don't create DOM elements if this is background media
+        if(!this.options.background) {
+            this._el.container = TL.Dom.create("div", "tl-media");
+
+            if (this.data.unique_id) {
+                this._el.container.id = this.data.unique_id;
+            }
+
+            this._initLayout();
+
+            if (add_to_container) {
+                add_to_container.appendChild(this._el.container);
+                this._el.parent = add_to_container;
+            }
+        }
+	},
+
+	loadMedia: function() {
+		var self = this;
+
+		if (!this._state.loaded) {
+			try {
+				this.load_timer = setTimeout(function() {
+		            self.loadingMessage();
+					self._loadMedia();
+					// self._state.loaded = true; handled in onLoaded()
+					self._updateDisplay();
+				}, 1200);
+			} catch (e) {
+				trace("Error loading media for ", this._media);
+				trace(e);
+			}
+		}
+	},
+
+  _updateMessage: function(msg) {
+      if(this.message) {
+          this.message.updateMessage(msg);
+      }
+  },
+
+	loadingMessage: function() {
+	    this._updateMessage(this._('loading') + " " + this.options.media_name);
+	},
+
+	errorMessage: function(msg) {
+		if (msg) {
+			msg = this._('error') + ": " + msg;
+		} else {
+			msg = this._('error');
+		}
+		this._updateMessage(msg);
+	},
+
+	updateMediaDisplay: function(layout) {
+		if (this._state.loaded && !this.options.background) {
+
+			if (TL.Browser.mobile) {
+				this._el.content_item.style.maxHeight = (this.options.height/2) + "px";
+			} else {
+				this._el.content_item.style.maxHeight = this.options.height - this.options.credit_height - this.options.caption_height - 30 + "px";
+			}
+
+			//this._el.content_item.style.maxWidth = this.options.width + "px";
+			this._el.container.style.maxWidth = this.options.width + "px";
+			// Fix for max-width issues in Firefox
+			if (TL.Browser.firefox) {
+				if (this._el.content_item.offsetWidth > this._el.content_item.offsetHeight) {
+					//this._el.content_item.style.width = "100%";
+				}
+			}
+
+			this._updateMediaDisplay(layout);
+
+			if (this._state.media_loaded) {
+				if (this._el.credit) {
+					this._el.credit.style.width		= this._el.content_item.offsetWidth + "px";
+				}
+				if (this._el.caption) {
+					this._el.caption.style.width		= this._el.content_item.offsetWidth + "px";
+				}
+			}
+
+		}
+	},
+
+	/*	Media Specific
+	================================================== */
+    _loadMedia: function() {
+        // All overrides must call this.onLoaded() to set state
+        this.onLoaded();
+    },
+
+    _updateMediaDisplay: function(l) {
+        //this._el.content_item.style.maxHeight = (this.options.height - this.options.credit_height - this.options.caption_height - 16) + "px";
+        if(TL.Browser.firefox) {
+            this._el.content_item.style.maxWidth = this.options.width + "px";
+            this._el.content_item.style.width = "auto";
+        }
+    },
+
+    _getMeta: function() {
+
+    },
+
+    _getImageURL: function(w, h) {
+        // Image-based media types should return <img>-compatible src url
+        return "";
+    },
+
+	/*	Public
+	================================================== */
+	show: function() {
+
+	},
+
+	hide: function() {
+
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+		this.onAdd();
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+		this.onRemove();
+	},
+
+  getImageURL: function(w, h) {
+      return this._getImageURL(w, h);
+  },
+
+	// Update Display
+	updateDisplay: function(w, h, l) {
+		this._updateDisplay(w, h, l);
+	},
+
+	stopMedia: function() {
+		this._stopMedia();
+	},
+
+	loadErrorDisplay: function(message) {
+		try {
+			this._el.content.removeChild(this._el.content_item);
+		} catch(e) {
+			// if this._el.content_item isn't a child of this._el then just keep truckin
+		}
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-loaderror", this._el.content);
+		this._el.content_item.innerHTML = "<div class='tl-icon-" + this.options.media_type + "'></div><p>" + message + "</p>";
+
+		// After Loaded
+		this.onLoaded(true);
+	},
+
+	/*	Events
+	================================================== */
+	onLoaded: function(error) {
+		this._state.loaded = true;
+		this.fire("loaded", this.data);
+		if (this.message) {
+			this.message.hide();
+		}
+		if (!(error || this.options.background)) {
+			this.showMeta();
+		}
+		this.updateDisplay();
+	},
+
+	onMediaLoaded: function(e) {
+		this._state.media_loaded = true;
+		this.fire("media_loaded", this.data);
+		if (this._el.credit) {
+			this._el.credit.style.width		= this._el.content_item.offsetWidth + "px";
+		}
+		if (this._el.caption) {
+			this._el.caption.style.width		= this._el.content_item.offsetWidth + "px";
+		}
+	},
+
+	showMeta: function(credit, caption) {
+		this._state.show_meta = true;
+		// Credit
+		if (this.data.credit && this.data.credit != "") {
+			this._el.credit					= TL.Dom.create("div", "tl-credit", this._el.content_container);
+			this._el.credit.innerHTML		= this.options.autolink == true ? TL.Util.linkify(this.data.credit) : this.data.credit;
+			this.options.credit_height 		= this._el.credit.offsetHeight;
+		}
+
+		// Caption
+		if (this.data.caption && this.data.caption != "") {
+			this._el.caption				= TL.Dom.create("div", "tl-caption", this._el.content_container);
+			this._el.caption.innerHTML		= this.options.autolink == true ? TL.Util.linkify(this.data.caption) : this.data.caption;
+			this.options.caption_height 	= this._el.caption.offsetHeight;
+		}
+
+		if (!this.data.caption || !this.data.credit) {
+			this.getMeta();
+		}
+
+	},
+
+	getMeta: function() {
+		this._getMeta();
+	},
+
+	updateMeta: function() {
+		if (!this.data.credit && this.data.credit_alternate) {
+			this._el.credit					= TL.Dom.create("div", "tl-credit", this._el.content_container);
+			this._el.credit.innerHTML		= this.data.credit_alternate;
+			this.options.credit_height 		= this._el.credit.offsetHeight;
+		}
+
+		if (!this.data.caption && this.data.caption_alternate) {
+			this._el.caption				= TL.Dom.create("div", "tl-caption", this._el.content_container);
+			this._el.caption.innerHTML		= this.data.caption_alternate;
+			this.options.caption_height 	= this._el.caption.offsetHeight;
+		}
+
+		this.updateDisplay();
+	},
+
+	onAdd: function() {
+		this.fire("added", this.data);
+	},
+
+	onRemove: function() {
+		this.fire("removed", this.data);
+	},
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+
+		// Message
+		this.message = new TL.Message({}, this.options);
+		this.message.addTo(this._el.container);
+
+		// Create Layout
+		this._el.content_container = TL.Dom.create("div", "tl-media-content-container", this._el.container);
+
+		// Link
+		if (this.data.link && this.data.link != "") {
+
+			this._el.link = TL.Dom.create("a", "tl-media-link", this._el.content_container);
+			this._el.link.href = this.data.link;
+			if (this.data.link_target && this.data.link_target != "") {
+				this._el.link.target = this.data.link_target;
+			} else {
+				this._el.link.target = "_blank";
+			}
+
+			this._el.content = TL.Dom.create("div", "tl-media-content", this._el.link);
+
+		} else {
+			this._el.content = TL.Dom.create("div", "tl-media-content", this._el.content_container);
+		}
+
+
+	},
+
+	// Update Display
+	_updateDisplay: function(w, h, l) {
+		if (w) {
+			this.options.width = w;
+
+		}
+		//this._el.container.style.width = this.options.width + "px";
+		if (h) {
+			this.options.height = h;
+		}
+
+		if (l) {
+			this.options.layout = l;
+		}
+
+		if (this._el.credit) {
+			this.options.credit_height 		= this._el.credit.offsetHeight;
+		}
+		if (this._el.caption) {
+			this.options.caption_height 	= this._el.caption.offsetHeight + 5;
+		}
+
+		this.updateMediaDisplay(this.options.layout);
+
+	},
+
+	_stopMedia: function() {
+
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/TL.MediaType.js b/public/opac/TimelineJS3-3.5.1/source/js/media/TL.MediaType.js
new file mode 100644
index 0000000000000000000000000000000000000000..72329751a54c6a61e6aaccb04b6ee72c10571700
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/TL.MediaType.js
@@ -0,0 +1,221 @@
+/*    TL.MediaType
+    Determines the type of media the url string is.
+    returns an object with .type and .id
+    You can add new media types by adding a regex
+    to match and the media class name to use to
+    render the media
+
+    The image_only parameter indicates that the
+    call only wants an image-based media type
+    that can be resolved to an image URL.
+
+    TODO
+    Allow array so a slideshow can be a mediatype
+================================================== */
+TL.MediaType = function(m, image_only) {
+    var media = {},
+        media_types =     [
+            {
+                type:         "youtube",
+                name:         "YouTube",
+                match_str:     "^(https?:)?\/*(www.)?youtube|youtu\.be",
+                cls:         TL.Media.YouTube
+            },
+            {
+                type:         "vimeo",
+                name:         "Vimeo",
+                match_str:     "^(https?:)?\/*(player.)?vimeo\.com",
+                cls:         TL.Media.Vimeo
+            },
+            {
+                type:         "dailymotion",
+                name:         "DailyMotion",
+                match_str:     "^(https?:)?\/*(www.)?dailymotion\.com",
+                cls:         TL.Media.DailyMotion
+            },
+            {
+                type:         "vine",
+                name:         "Vine",
+                match_str:     "^(https?:)?\/*(www.)?vine\.co",
+                cls:         TL.Media.Vine
+            },
+            {
+                type:         "soundcloud",
+                name:         "SoundCloud",
+                match_str:     "^(https?:)?\/*(player.)?soundcloud\.com",
+                cls:         TL.Media.SoundCloud
+            },
+            {
+                type:         "twitter",
+                name:         "Twitter",
+                match_str:     "^(https?:)?\/*(www.)?twitter\.com",
+                cls:         TL.Media.Twitter
+            },
+            {
+                type:         "twitterembed",
+                name:         "TwitterEmbed",
+                match_str:     "<blockquote class=['\"]twitter-tweet['\"]",
+                cls:         TL.Media.Twitter
+            },
+            {
+                type:         "googlemaps",
+                name:         "Google Map",
+                match_str:     /google.+?\/maps\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/search\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/place\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)|google.+?\/maps\/dir\/([\w\W]+)\/([\w\W]+)\/@([-\d.]+),([-\d.]+),((?:[-\d.]+[zmayht],?)*)/,
+                cls:         TL.Media.GoogleMap
+            },
+            {
+                type:         "googleplus",
+                name:         "Google+",
+                match_str:     "^(https?:)?\/*plus.google",
+                cls:         TL.Media.GooglePlus
+            },
+            {
+                type:         "flickr",
+                name:         "Flickr",
+                match_str:     "^(https?:)?\/*(www.)?flickr.com\/photos",
+                cls:         TL.Media.Flickr
+            },
+            {
+                type:         "flickr",
+                name:         "Flickr",
+                match_str:     "^(https?:\/\/)?flic.kr\/.*",
+                cls:         TL.Media.Flickr
+            },
+            {
+                type:         "instagram",
+                name:         "Instagram",
+                match_str:     /^(https?:)?\/*(www.)?(instagr.am|^(https?:)?\/*(www.)?instagram.com)\/p\//,
+                cls:         TL.Media.Instagram
+            },
+            {
+                type:         "profile",
+                name:         "Profile",
+                match_str:     /^(https?:)?\/*(www.)?instagr.am\/[a-zA-Z0-9]{2,}|^(https?:)?\/*(www.)?instagram.com\/[a-zA-Z0-9]{2,}/,
+                cls:         TL.Media.Profile
+            },
+            {
+                type:       "documentcloud",
+                name:       "Document Cloud",
+                match_str:  /documentcloud.org\//,
+                cls:        TL.Media.DocumentCloud
+            },
+            {
+                type:         "image",
+                name:         "Image",
+                match_str:     /(jpg|jpeg|png|gif|svg)(\?.*)?$/i,
+                cls:         TL.Media.Image
+            },
+            {
+                type:         "imgur",
+                name:         "Imgur",
+                match_str:     /^.*imgur.com\/.+$|<blockquote class=['\"]imgur-embed-pub['\"]/i,
+                cls:         TL.Media.Imgur
+            },
+            {
+                type:         "googledocs",
+                name:         "Google Doc",
+                match_str:     "^(https?:)?\/*[^.]*.google.com\/[^\/]*\/d\/[^\/]*\/[^\/]*\?usp=sharing|^(https?:)?\/*drive.google.com\/open\?id=[^\&]*\&authuser=0|^(https?:)?\/*drive.google.com\/open\?id=[^\&]*|^(https?:)?\/*[^.]*.googledrive.com\/host\/[^\/]*\/",
+                cls:         TL.Media.GoogleDoc
+            },
+            {
+                type:         "pdf",
+                name:         "PDF",
+                match_str:     /^.*\.pdf(\?.*)?(\#.*)?/,
+                cls:         TL.Media.PDF
+            },
+            {
+                type:         "wikipedia",
+                name:         "Wikipedia",
+                match_str:     "^(https?:)?\/*(www.)?wikipedia\.org|^(https?:)?\/*([a-z][a-z].)?wikipedia\.org",
+                cls:         TL.Media.Wikipedia
+            },
+            {
+                type:         "spotify",
+                name:         "spotify",
+                match_str:     "spotify",
+                cls:         TL.Media.Spotify
+            },
+            {
+                type:         "iframe",
+                name:         "iFrame",
+                match_str:     "iframe",
+                cls:         TL.Media.IFrame
+            },
+            {
+                type:         "storify",
+                name:         "Storify",
+                match_str:     "storify",
+                cls:         TL.Media.Storify
+            },
+            {
+                type:         "blockquote",
+                name:         "Quote",
+                match_str:     "blockquote",
+                cls:         TL.Media.Blockquote
+            },
+            // {
+            //     type:         "website",
+            //     name:         "Website",
+            //     match_str:     "https?://",
+            //     cls:         TL.Media.Website
+            // },
+            {
+                type:         "video",
+                name:         "Video",
+                match_str:     /(mp4)(\?.*)?$/i,
+                cls:         TL.Media.Video
+            },
+            {
+              type:         "wistia",
+              name:         "Wistia",
+              match_str:     /https?:\/\/(.+)?(wistia\.com|wi\.st)\/.*/i,
+              cls:         TL.Media.Wistia
+            },
+            {
+                type:         "audio",
+                name:         "Audio",
+                match_str:     /(mp3|wav|m4a)(\?.*)?$/i,
+                cls:         TL.Media.Audio
+            },
+            {
+                type:         "imageblank",
+                name:         "Imageblank",
+                match_str:     "",
+                cls:         TL.Media.Image
+            }
+        ];
+
+    if(image_only) {
+        if (m instanceof Array) {
+            return false;
+        }
+        for (var i = 0; i < media_types.length; i++) {
+            switch(media_types[i].type) {
+                case "flickr":
+                case "image":
+                case "instagram":
+                    if (m.url.match(media_types[i].match_str)) {
+                        media = media_types[i];
+                        return media;
+                    }
+                    break;
+                default:
+                    break;
+            }
+        }
+
+    } else {
+        for (var i = 0; i < media_types.length; i++) {
+            if (m instanceof Array) {
+                return media = {
+                    type:         "slider",
+                    cls:         TL.Media.Slider
+                };
+            } else if (m.url.match(media_types[i].match_str)) {
+                media         = media_types[i];
+                return media;
+            }
+        }
+    }
+    return false;
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Audio.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Audio.js
new file mode 100644
index 0000000000000000000000000000000000000000..82e8672511a9d639db16d6adfa13b63effd4c21d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Audio.js
@@ -0,0 +1,78 @@
+/*	TL.Media.Audio
+	Produces audio assets.
+	Takes a data object and populates a dom object
+================================================== */
+
+TL.Media.Audio = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		// Loading Message
+		this.loadingMessage();
+
+        // Create media?
+        if(!this.options.background) {
+            this.createMedia();
+        }
+
+        // After loaded
+		this.onLoaded();
+	},
+
+  createMedia: function() {
+    var self = this,
+        audio_class = "tl-media-item tl-media-audio tl-media-shadow";
+
+ 		// Link
+		if (this.data.link) {
+			this._el.content_link 				= TL.Dom.create("a", "", this._el.content);
+			this._el.content_link.href 		= this.data.link;
+			this._el.content_link.target 	= "_blank";
+			this._el.content_item					= TL.Dom.create("audio", audio_class, this._el.content_link);
+		} else {
+			this._el.content_item					= TL.Dom.create("audio", audio_class, this._el.content);
+		}
+
+		this._el.content_item.controls = true;
+		this._el.source_item = TL.Dom.create("source", "", this._el.content_item);
+
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		this._el.source_item.src = this.data.url;
+		this._el.source_item.type = this._getType(this.data.url, this.data.mediatype.match_str);
+		this._el.content_item.innerHTML += "Your browser doesn't support HTML5 audio with " + this._el.source_item.type;
+  },
+
+	_updateMediaDisplay: function(layout) {
+		if(TL.Browser.firefox) {
+			this._el.content_item.style.width = "auto";
+		}
+	},
+
+	_getType: function(url, reg) {
+		var ext = url.match(reg);
+		var type = "audio/"
+		switch(ext[1]) {
+			case "mp3":
+				type += "mpeg";
+				break;
+			case "wav":
+				type += "wav";
+				break;
+			case "m4a":
+				type += "mp4";
+				break;
+			default:
+				type = "audio";
+				break;
+		}
+		return type
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Blockquote.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Blockquote.js
new file mode 100644
index 0000000000000000000000000000000000000000..df609a867d7c19e628d41f91a868f33bccb53a7e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Blockquote.js
@@ -0,0 +1,34 @@
+/*	TL.Media.Blockquote
+================================================== */
+
+TL.Media.Blockquote = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {		
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-blockquote", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+		
+		// Get Media ID
+		this.media_id = this.data.url;
+		
+		// API Call
+		this._el.content_item.innerHTML = this.media_id;
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	updateMediaDisplay: function() {
+		
+	},
+	
+	_updateMediaDisplay: function() {
+		
+	}
+
+	
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.DailyMotion.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.DailyMotion.js
new file mode 100644
index 0000000000000000000000000000000000000000..78ecda8b34e596434746babec7993bce02f10860
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.DailyMotion.js
@@ -0,0 +1,44 @@
+/*	TL.Media.DailyMotion
+================================================== */
+
+TL.Media.DailyMotion = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-dailymotion", this._el.content);
+
+		// Get Media ID
+		if (this.data.url.match("video")) {
+			this.media_id = this.data.url.split("video\/")[1].split(/[?&]/)[0];
+		} else {
+			this.media_id = this.data.url.split("embed\/")[1].split(/[?&]/)[0];
+		}
+
+		// API URL
+		api_url = "https://www.dailymotion.com/embed/video/" + this.media_id+"?api=postMessage";
+
+		// API Call
+		this._el.content_item.innerHTML = "<iframe autostart='false' frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe>"
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth}) + "px";
+	},
+
+	_stopMedia: function() {
+		this._el.content_item.querySelector("iframe").contentWindow.postMessage('{"command":"pause","parameters":[]}', "*");
+
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.DocumentCloud.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.DocumentCloud.js
new file mode 100644
index 0000000000000000000000000000000000000000..55cd0aae48d54575fc5149560ee38d6b15bc08f4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.DocumentCloud.js
@@ -0,0 +1,61 @@
+/*	TL.Media.DocumentCloud
+================================================== */
+
+TL.Media.DocumentCloud = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var self = this;
+
+		// Create Dom elements
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-documentcloud tl-media-shadow", this._el.content);
+		this._el.content_item.id = TL.Util.unique_ID(7)
+
+		// Check url
+		if(this.data.url.match(/\.html$/)) {
+		    this.data.url = this._transformURL(this.data.url);
+		} else if(!(this.data.url.match(/.(json|js)$/))) {
+		    trace("DOCUMENT CLOUD IN URL BUT INVALID SUFFIX");
+		}
+
+		// Load viewer API
+        TL.Load.js([
+					'https://assets.documentcloud.org/viewer/loader.js',
+					'https://assets.documentcloud.org/viewer/viewer.js'],
+            function() {	
+	            self.createMedia();
+			}
+		);
+	},
+
+	// Viewer API needs js, not html
+	_transformURL: function(url) {
+        return url.replace(/(.*)\.html$/, '$1.js')
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+        this._el.content_item.style.height = this.options.height + "px";
+		//this._el.content_item.style.width = this.options.width + "px";
+	},
+
+	createMedia: function() {
+		// DocumentCloud API call
+		DV.load(this.data.url, {
+		    container: '#'+this._el.content_item.id,
+		    showSidebar: false
+		});
+		this.onLoaded();
+	},
+
+
+
+	/*	Events
+	================================================== */
+
+
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Flickr.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Flickr.js
new file mode 100644
index 0000000000000000000000000000000000000000..9579253411028665fadfd3968e9bd83f6846279b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Flickr.js
@@ -0,0 +1,142 @@
+/*	TL.Media.Flickr
+
+================================================== */
+
+TL.Media.Flickr = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		try {
+		    // Get Media ID
+		    this.establishMediaID();
+
+            // API URL
+            api_url = "https://api.flickr.com/services/rest/?method=flickr.photos.getSizes&api_key=" + this.options.api_key_flickr + "&photo_id=" + this.media_id + "&format=json&jsoncallback=?";
+
+            // API Call
+            TL.getJSON(api_url, function(d) {
+                if (d.stat == "ok") {
+                    self.sizes = d.sizes.size; // store sizes info
+
+                    if(!self.options.background) {
+                        self.createMedia();
+                    }
+
+                    self.onLoaded();
+                } else {
+                    self.loadErrorDisplay(self._("flickr_notfound_err"));
+                }
+            });
+		} catch(e) {
+		    self.loadErrorDisplay(self._(e.message_key));
+		}
+	},
+
+	establishMediaID: function() {
+		if (this.data.url.match(/flic.kr\/.+/i)) {
+			var encoded = this.data.url.split('/').slice(-1)[0];
+			this.media_id = TL.Util.base58.decode(encoded);
+		} else {
+			var marker = 'flickr.com/photos/';
+			var idx = this.data.url.indexOf(marker);
+			if (idx == -1) { throw new TL.Error("flickr_invalidurl_err"); }
+			var pos = idx + marker.length;
+			this.media_id = this.data.url.substr(pos).split("/")[1];
+		}
+	},
+
+	createMedia: function() {
+	    var self = this;
+
+		// Link
+		this._el.content_link = TL.Dom.create("a", "", this._el.content);
+		this._el.content_link.href = this.data.url;
+		this._el.content_link.target = "_blank";
+
+		// Photo
+		this._el.content_item = TL.Dom.create("img", "tl-media-item tl-media-image tl-media-flickr tl-media-shadow", this._el.content_link);
+
+		if (this.data.alt) {
+			this._el.content_item.alt = this.data.alt;
+		} else if (this.data.caption) {
+			this._el.content_item.alt = TL.Util.unhtmlify(this.data.caption);
+		}
+
+		if (this.data.title) {
+			this._el.content_item.title = this.data.title;
+		} else if (this.data.caption) {
+			this._el.content_item.title = TL.Util.unhtmlify(this.data.caption);
+		}
+
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		// Set Image Source
+		this._el.content_item.src = this.getImageURL(this.options.width, this.options.height);
+	},
+
+    getImageURL: function(w, h) {
+        var best_size 	= this.size_label(h),
+            source = this.sizes[this.sizes.length - 2].source;
+
+		for(var i = 0; i < this.sizes.length; i++) {
+			if (this.sizes[i].label == best_size) {
+				source = this.sizes[i].source;
+			}
+		}
+
+		return source;
+    },
+
+	_getMeta: function() {
+		var self = this,
+		api_url;
+
+		// API URL
+		api_url = "https://api.flickr.com/services/rest/?method=flickr.photos.getInfo&api_key=" + this.options.api_key_flickr + "&photo_id=" + this.media_id + "&format=json&jsoncallback=?";
+
+		// API Call
+		TL.getJSON(api_url, function(d) {
+			self.data.credit_alternate = "<a href='" + self.data.url + "' target='_blank'>" + d.photo.owner.realname + "</a>";
+			self.data.caption_alternate = d.photo.title._content + " " + d.photo.description._content;
+			self.updateMeta();
+		});
+	},
+
+	size_label: function(s) {
+		var _size = "";
+
+		if (s <= 75) {
+			if (s <= 0) {
+				_size = "Large";
+			} else {
+				_size = "Thumbnail";
+			}
+		} else if (s <= 180) {
+			_size = "Small";
+		} else if (s <= 240) {
+			_size = "Small 320";
+		} else if (s <= 375) {
+			_size = "Medium";
+		} else if (s <= 480) {
+			_size = "Medium 640";
+		} else if (s <= 600) {
+			_size = "Large";
+		} else {
+			_size = "Large";
+		}
+
+		return _size;
+	}
+
+
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GoogleDoc.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GoogleDoc.js
new file mode 100644
index 0000000000000000000000000000000000000000..00104ded68c062612adaa8feebea87637667ab71
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GoogleDoc.js
@@ -0,0 +1,46 @@
+/*	TL.Media.GoogleDoc
+
+================================================== */
+
+TL.Media.GoogleDoc = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var url,
+			self = this;
+		
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
+		
+		// Get Media ID
+		if (this.data.url.match("open\?id\=")) {
+			this.media_id = this.data.url.split("open\?id\=")[1];
+			if (this.data.url.match("\&authuser\=0")) {
+				url = this.media_id.match("\&authuser\=0")[0];
+			};
+		} else if (this.data.url.match(/file\/d\/([^/]*)\/?/)) {
+			var doc_id = this.data.url.match(/file\/d\/([^/]*)\/?/)[1];
+			url = 'https://drive.google.com/file/d/' + doc_id + '/preview'
+		} else {
+			url = this.data.url;
+		}
+		
+		// this URL makes something suitable for an img src but what if it's not an image?
+		// api_url = "http://www.googledrive.com/host/" + this.media_id + "/";
+		
+		this._el.content_item.innerHTML	=	"<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + url + "'></iframe>";
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+
+	
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GoogleMap.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GoogleMap.js
new file mode 100644
index 0000000000000000000000000000000000000000..9f8f5b22a80a9759e7b3c9e1d8a8b69dfb56e92c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GoogleMap.js
@@ -0,0 +1,150 @@
+/*  TL.Media.Map
+================================================== */
+
+TL.Media.GoogleMap = TL.Media.extend({
+	includes: [TL.Events],
+
+	/*  Load the media
+	================================================== */
+	_loadMedia: function() {
+
+		// Create Dom element
+		this._el.content_item   = TL.Dom.create("div", "tl-media-item tl-media-map tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url;
+
+		// API Call
+		this.mapframe = TL.Dom.create("iframe", "", this._el.content_item);
+		window.stash = this;
+		this.mapframe.width       = "100%";
+		this.mapframe.height      = "100%";
+		this.mapframe.frameBorder = "0";
+		this.mapframe.src         = this.makeGoogleMapsEmbedURL(this.media_id, this.options.api_key_googlemaps);
+		
+		
+		// After Loaded
+		this.onLoaded();
+	},
+
+	_updateMediaDisplay: function() {
+		if (this._state.loaded) {
+			var dimensions = TL.Util.ratio.square({w:this._el.content_item.offsetWidth});
+			this._el.content_item.style.height = dimensions.h + "px";
+		}
+	},
+	
+	makeGoogleMapsEmbedURL: function(url,api_key) {
+		// Test with https://docs.google.com/spreadsheets/d/1zCpvtRdftlR5fBPppmy_-SkGIo7RMwoPUiGFZDAXbTc/edit
+		var Streetview = false;
+
+		function determineMapMode(url){
+			function parseDisplayMode(display_mode, param_string) {
+				// Set the zoom param
+				if (display_mode.slice(-1) == "z") {
+					param_string["zoom"] = display_mode;
+					// Set the maptype to something other than "roadmap"
+				} else if (display_mode.slice(-1) == "m") {
+					// TODO: make this somehow interpret the correct zoom level
+					// until then fake it by using Google's default zoom level
+					param_string["zoom"] = 14;
+					param_string["maptype"] = "satellite";
+					// Set all the fun streetview params
+				} else if (display_mode.slice(-1) == "t") {
+					Streetview = true;
+					// streetview uses "location" instead of "center"
+					// "place" mode doesn't have the center param, so we may need to grab that now
+					if (mapmode == "place") {
+						var center = url.match(regexes["place"])[3] + "," + url.match(regexes["place"])[4];
+					} else {
+						var center = param_string["center"];
+						delete param_string["center"];
+					}
+					// Clear out all the other params -- this is so hacky
+					param_string = {};
+					param_string["location"] = center;
+					streetview_params = display_mode.split(",");
+					for (param in param_defs["streetview"]) {
+						var i = parseInt(param) + 1;
+						if (param_defs["streetview"][param] == "pitch" && streetview_params[i] == "90t"){
+							// Although 90deg is the horizontal default in the URL, 0 is horizontal default for embed URL. WHY??
+							// https://developers.google.com/maps/documentation/javascript/streetview
+							param_string[param_defs["streetview"][param]] = 0;
+						} else {
+							param_string[param_defs["streetview"][param]] = streetview_params[i].slice(0,-1);
+						}
+					}
+
+				}
+				return param_string;
+			}
+			function determineMapModeURL(mapmode, match) {
+				var param_string = {};
+				var url_root = match[1], display_mode = match[match.length - 1];
+				for (param in param_defs[mapmode]) {
+					// skip first 2 matches, because they reflect the URL and not params
+					var i = parseInt(param)+2;
+					if (param_defs[mapmode][param] == "center") {
+						param_string[param_defs[mapmode][param]] = match[i] + "," + match[++i];
+					} else {
+						param_string[param_defs[mapmode][param]] = match[i];
+					}
+				}
+
+				param_string = parseDisplayMode(display_mode, param_string);
+				param_string["key"] = api_key;
+				if (Streetview == true) {
+					mapmode = "streetview";
+				} else {
+				}
+				return (url_root + "/embed/v1/" + mapmode + TL.Util.getParamString(param_string));
+			}
+
+
+			mapmode = "view";
+			if (url.match(regexes["place"])) {
+				mapmode = "place";
+			} else if (url.match(regexes["directions"])) {
+				mapmode = "directions";
+			} else if (url.match(regexes["search"])) {
+				mapmode = "search";
+			}
+			return determineMapModeURL(mapmode, url.match(regexes[mapmode]));
+
+		}
+
+		// These must be in the order they appear in the original URL
+		// "key" param not included since it's not in the URL structure
+		// Streetview "location" param not included since it's captured as "center"
+		// Place "center" param ...um...
+		var param_defs = {
+			"view": ["center"],
+			"place": ["q", "center"],
+			"directions": ["origin", "destination", "center"],
+			"search": ["q", "center"],
+			"streetview": ["fov", "heading", "pitch"]
+		};
+		// Set up regex parts to make updating these easier if Google changes them
+		var root_url_regex = /(https:\/\/.+google.+?\/maps)/;
+		var coords_regex = /@([-\d.]+),([-\d.]+)/;
+		var address_regex = /([\w\W]+)/;
+
+		// Data doesn't seem to get used for anything
+		var data_regex = /data=[\S]*/;
+
+		// Capture the parameters that determine what map tiles to use
+		// In roadmap view, mode URLs include zoom paramater (e.g. "14z")
+		// In satellite (or "earth") view, URLs include a distance parameter (e.g. "84511m")
+		// In streetview, URLs include paramaters like "3a,75y,49.76h,90t" -- see http://stackoverflow.com/a/22988073
+		var display_mode_regex = /,((?:[-\d.]+[zmayht],?)*)/;
+
+		var regexes = {
+			view: new RegExp(root_url_regex.source + "/" + coords_regex.source + display_mode_regex.source),
+			place: new RegExp(root_url_regex.source + "/place/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source),
+			directions: new RegExp(root_url_regex.source + "/dir/" + address_regex.source + "/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source),
+			search: new RegExp(root_url_regex.source + "/search/" + address_regex.source + "/" + coords_regex.source + display_mode_regex.source)
+		};
+		return determineMapMode(url);
+	}
+   
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GooglePlus.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GooglePlus.js
new file mode 100644
index 0000000000000000000000000000000000000000..114027005ba36d2cead1fe3e77b4b4e5c8c8e98f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.GooglePlus.js
@@ -0,0 +1,36 @@
+/*	TL.Media.GooglePlus
+================================================== */
+
+TL.Media.GooglePlus = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+		
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-googleplus", this._el.content);
+		
+		// Get Media ID
+		this.media_id = this.data.url;
+		
+		// API URL
+		api_url = this.media_id;
+		
+		// API Call
+		this._el.content_item.innerHTML = "<iframe frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe>"		
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+
+	
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.IFrame.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.IFrame.js
new file mode 100644
index 0000000000000000000000000000000000000000..e89ef567573179d90ee0edc3fe2a369ad9d92c96
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.IFrame.js
@@ -0,0 +1,35 @@
+/*	TL.Media.IFrame
+================================================== */
+
+TL.Media.IFrame = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+				
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
+		
+		// Get Media ID
+		this.media_id = this.data.url;
+		
+		// API URL
+		api_url = this.media_id;
+		
+		// API Call
+		this._el.content_item.innerHTML = api_url;
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+	
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Image.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Image.js
new file mode 100644
index 0000000000000000000000000000000000000000..ee6ebfb56f32aca6fa43a6f013509c3b9ae617df
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Image.js
@@ -0,0 +1,74 @@
+/*	TL.Media.Image
+	Produces image assets.
+	Takes a data object and populates a dom object
+================================================== */
+
+TL.Media.Image = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		// Loading Message
+		this.loadingMessage();
+
+        // Create media?
+        if(!this.options.background) {
+            this.createMedia();
+        }
+
+        // After loaded
+		this.onLoaded();
+	},
+
+    createMedia: function() {
+        var self = this,
+            image_class = "tl-media-item tl-media-image tl-media-shadow";
+
+		if (this.data.url.match(/.png(\?.*)?$/) || this.data.url.match(/.svg(\?.*)?$/)) {
+			image_class = "tl-media-item tl-media-image"
+		}
+
+ 		// Link
+		if (this.data.link) {
+			this._el.content_link 				= TL.Dom.create("a", "", this._el.content);
+			this._el.content_link.href 			= this.data.link;
+			this._el.content_link.target 		= "_blank";
+			this._el.content_item				= TL.Dom.create("img", image_class, this._el.content_link);
+		} else {
+			this._el.content_item				= TL.Dom.create("img", image_class, this._el.content);
+		}
+
+		if (this.data.alt) {
+			this._el.content_item.alt = this.data.alt;
+		} else if (this.data.caption) {
+			this._el.content_item.alt = TL.Util.unhtmlify(this.data.caption);
+		}
+
+		if (this.data.title) {
+			this._el.content_item.title = this.data.title;
+		} else if (this.data.caption) {
+			this._el.content_item.title = TL.Util.unhtmlify(this.data.caption);
+		}
+
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		this._el.content_item.src			= this.getImageURL();
+    },
+
+    getImageURL: function(w, h) {
+        return TL.Util.transformImageURL(this.data.url);
+    },
+
+	_updateMediaDisplay: function(layout) {
+		if(TL.Browser.firefox) {
+			//this._el.content_item.style.maxWidth = (this.options.width/2) - 40 + "px";
+			this._el.content_item.style.width = "auto";
+		}
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Imgur.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Imgur.js
new file mode 100644
index 0000000000000000000000000000000000000000..14a8bf15793a16dd147de492e03dd9cf4f482340
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Imgur.js
@@ -0,0 +1,90 @@
+/*	TL.Media.Flickr
+
+================================================== */
+
+TL.Media.Imgur = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		try {
+			var self = this;
+
+			if (this.data.url.match("<blockquote class=['\"]imgur-embed-pub['\"]")){
+				var found = this.data.url.match(/(imgur\.com)\/(\w+)/);
+				this.media_id = found[2];
+				this.data.url = "http://imgur.com/gallery/" + this.media_id;
+			}
+			else if (this.data.url){
+				this.media_id = this.data.url.split('/').slice(-1)[0];
+			}
+
+	        TL.Load.js([
+						'https://s.imgur.com/min/embed.js'], 
+					function(){
+						self.createMedia();
+					}
+			);
+
+		} catch(e) {
+		    this.loadErrorDisplay(this._("imgur_invalidurl_err"));
+		}
+	},
+
+	createMedia: function() {
+	    var self = this;
+		var api_url = "https://api.imgur.com/oembed.json?url=" + this.data.url;
+
+		// Content div
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-image tl-media-imgur",
+																								this._el.content);
+
+		// API Call
+
+          TL.ajax({
+          	type: 'GET',
+            url: api_url,
+            dataType: 'json',
+            success: function(data){
+            try {
+                self._el.content_item.innerHTML	= data.html;
+            	setInterval(function(){
+            		if(document.querySelector("blockquote.imgur-embed-pub") == null){
+            			clearInterval();
+            		}
+            		else{
+            			imgurEmbed.createIframe();
+            			document.getElementById("imageElement").removeAttribute("style");
+            			document.getElementById("image").removeAttribute("style");
+            		}
+            	}, 2000);
+            } catch(e) {
+            }
+            },
+            error: function(xhr, errorType, error) {
+              tc = new TL.TimelineConfig();
+              if (errorType == 'parsererror') {
+                var error = new TL.Error("invalid_url_err");
+              } else {
+                var error = new TL.Error("unknown_read_err", errorType);
+              }
+              self.loadErrorDisplay(self._("imgur_invalidurl_err"));
+              tc.logError(error);
+            }
+          });
+
+         this.onLoaded();
+
+	},
+
+
+
+	_updateMediaDisplay: function() {
+		//this.el.content_item = document.getElementById(this._el.content_item.id);
+		this._el.content_item.style.width = this.options.width + "px";
+		this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this.options.width}) + "px";
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Instagram.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Instagram.js
new file mode 100644
index 0000000000000000000000000000000000000000..9d130d58263d59177f6790a07b2530da036d7c4b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Instagram.js
@@ -0,0 +1,88 @@
+/*	TL.Media.Instagram
+
+================================================== */
+
+TL.Media.Instagram = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		// Get Media ID
+		this.media_id = this.data.url.split("\/p\/")[1].split("/")[0];
+
+		if(!this.options.background) {
+		    this.createMedia();
+		}
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+    createMedia: function() {
+        var self = this;
+
+		// Link
+		this._el.content_link 				= TL.Dom.create("a", "", this._el.content);
+		this._el.content_link.href 			= this.data.url;
+		this._el.content_link.target 		= "_blank";
+
+		// Photo
+		this._el.content_item				= TL.Dom.create("img", "tl-media-item tl-media-image tl-media-instagram tl-media-shadow", this._el.content_link);
+
+		if (this.data.alt) {
+			this._el.content_item.alt = this.data.alt;
+		} else if (this.data.caption) {
+			this._el.content_item.alt = TL.Util.unhtmlify(this.data.caption);
+		}
+
+		if (this.data.title) {
+			this._el.content_item.title = this.data.title;
+		} else if (this.data.caption) {
+			this._el.content_item.title = TL.Util.unhtmlify(this.data.caption);
+		}
+
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+	    this._el.content_item.src = this.getImageURL(this._el.content.offsetWidth);
+    },
+
+    getImageURL: function(w, h) {
+        return "https://instagram.com/p/" + this.media_id + "/media/?size=" + this.sizes(w);
+    },
+
+	_getMeta: function() {
+		var self = this,
+		    api_url;
+
+		// API URL
+		api_url = "https://api.instagram.com/oembed?url=https://instagr.am/p/" + this.media_id + "&callback=?";
+
+		// API Call
+		TL.getJSON(api_url, function(d) {
+			self.data.credit_alternate = "<a href='" + d.author_url + "' target='_blank'>" + d.author_name + "</a>";
+			self.data.caption_alternate = d.title;
+			self.updateMeta();
+		});
+	},
+
+	sizes: function(s) {
+		var _size = "";
+		if (s <= 150) {
+			_size = "t";
+		} else if (s <= 306) {
+			_size = "m";
+		} else {
+			_size = "l";
+		}
+
+		return _size;
+	}
+
+
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.PDF.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.PDF.js
new file mode 100644
index 0000000000000000000000000000000000000000..ee489e2b2439937e6757016eb02ecbc536ba6563
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.PDF.js
@@ -0,0 +1,36 @@
+/*	TL.Media.PDF
+ * Chrome and Firefox on both OSes and Safari all support PDFs as iframe src.
+ * This prompts for a download on IE10/11. We should investigate using
+ * https://mozilla.github.io/pdf.js/ to support showing PDFs on IE.
+================================================== */
+
+TL.Media.PDF = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var url = TL.Util.transformImageURL(this.data.url),
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe", this._el.content);
+		var markup = "";
+		// not assigning media_id attribute. Seems like a holdover which is no longer used.
+		if (TL.Browser.ie || TL.Browser.edge || url.match(/dl.dropboxusercontent.com/)) {
+			markup = "<iframe class='doc' frameborder='0' width='100%' height='100%' src='//docs.google.com/viewer?url=" + url + "&amp;embedded=true'></iframe>";
+		} else {
+			markup = "<iframe class='doc' frameborder='0' width='100%' height='100%' src='" + url + "'></iframe>"
+		}
+		this._el.content_item.innerHTML	= markup
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Profile.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Profile.js
new file mode 100644
index 0000000000000000000000000000000000000000..375fa25d21a1817afb91522757ad1e0413b64209
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Profile.js
@@ -0,0 +1,27 @@
+/*	TL.Media.Profile
+
+================================================== */
+
+TL.Media.Profile = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		
+		this._el.content_item				= TL.Dom.create("img", "tl-media-item tl-media-image tl-media-profile tl-media-shadow", this._el.content);
+		this._el.content_item.src			= this.data.url;
+		
+		this.onLoaded();
+	},
+	
+	_updateMediaDisplay: function(layout) {
+		
+		
+		if(TL.Browser.firefox) {
+			this._el.content_item.style.maxWidth = (this.options.width/2) - 40 + "px";
+		}
+	}
+	
+});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Slider.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Slider.js
new file mode 100644
index 0000000000000000000000000000000000000000..f22add87cc64f90dd82ab6a392c858fb74b6a6df
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Slider.js
@@ -0,0 +1,22 @@
+/*	TL.Media.SLider
+	Produces a Slider
+	Takes a data object and populates a dom object
+	TODO
+	Placeholder
+================================================== */
+
+TL.Media.Slider = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		
+		this._el.content_item				= TL.Dom.create("img", "tl-media-item tl-media-image", this._el.content);
+		this._el.content_item.src			= this.data.url;
+		
+		this.onLoaded();
+	}
+	
+});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.SoundCloud.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.SoundCloud.js
new file mode 100644
index 0000000000000000000000000000000000000000..38a2364ad56d8de046d85e48cc7267f7f8aa44ff
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.SoundCloud.js
@@ -0,0 +1,52 @@
+/*	TL.Media.SoundCloud
+================================================== */
+
+var soundCoudCreated = false;
+
+TL.Media.SoundCloud = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-soundcloud tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url;
+
+		// API URL
+		api_url = "https://soundcloud.com/oembed?url=" + this.media_id + "&format=js&callback=?"
+
+		// API Call
+		TL.getJSON(api_url, function(d) {
+			TL.Load.js("https://w.soundcloud.com/player/api.js", function() {//load soundcloud api for pausing.
+				self.createMedia(d);
+			});
+		});
+
+	},
+
+	createMedia: function(d) {
+		this._el.content_item.innerHTML = d.html;
+
+		this.soundCloudCreated = true;
+
+		self.widget = SC.Widget(this._el.content_item.querySelector("iframe"));//create widget for api use
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	_stopMedia: function() {
+		if (this.soundCloudCreated)
+		{
+			self.widget.pause();
+		}
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Spotify.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Spotify.js
new file mode 100644
index 0000000000000000000000000000000000000000..6091876c2f8057b17a43a705acd0269b61d1c123
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Spotify.js
@@ -0,0 +1,99 @@
+/*	TL.Media.Spotify
+================================================== */
+
+TL.Media.Spotify = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-spotify", this._el.content);
+
+		// Get Media ID
+		if (this.data.url.match(/^spotify:track/) || this.data.url.match(/^spotify:album/) || this.data.url.match(/^spotify:user:.+:playlist:/)) {
+			this.media_id = this.data.url;
+		}
+
+		if (this.data.url.match(/spotify\.com\/track\/(.+)/)) {
+			this.media_id = "spotify:track:" + this.data.url.match(/spotify\.com\/track\/(.+)/)[1];
+		} else if (this.data.url.match(/spotify\.com\/album\/(.+)/)) {
+			this.media_id = "spotify:album:" + this.data.url.match(/spotify\.com\/album\/(.+)/)[1];
+		} else if (this.data.url.match(/spotify\.com\/user\/(.+?)\/playlist\/(.+)/)) {
+			var user = this.data.url.match(/spotify\.com\/user\/(.+?)\/playlist\/(.+)/)[1];
+			var playlist = this.data.url.match(/spotify\.com\/user\/(.+?)\/playlist\/(.+)/)[2];
+			this.media_id = "spotify:user:" + user + ":playlist:" + playlist;
+		} else if (this.data.url.match(/spotify\.com\/artist\/(.+)/)) {
+			var artist = this.data.url.match(/spotify\.com\/artist\/(.+)/)[1];
+			this.media_id = "spotify:artist:" + artist;
+		}
+
+
+		if (this.media_id) {
+			// API URL
+			api_url = "https://embed.spotify.com/?uri=" + this.media_id + "&theme=white&view=coverart";
+
+			this.player = TL.Dom.create("iframe", "tl-media-shadow", this._el.content_item);
+			this.player.width 		= "100%";
+			this.player.height 		= "100%";
+			this.player.frameBorder = "0";
+			this.player.src 		= api_url;
+
+			// After Loaded
+			this.onLoaded();
+
+		} else {
+				this.loadErrorDisplay(this._('spotify_invalid_url'));
+		}
+	},
+
+	// Update Media Display
+
+	_updateMediaDisplay: function(l) {
+		var _height = this.options.height,
+			_player_height = 0,
+			_player_width = 0;
+
+		if (TL.Browser.mobile) {
+			_height = (this.options.height/2);
+		} else {
+			_height = this.options.height - this.options.credit_height - this.options.caption_height - 30;
+		}
+
+		this._el.content_item.style.maxHeight = "none";
+		trace(_height);
+		trace(this.options.width)
+		if (_height > this.options.width) {
+			trace("height is greater")
+			_player_height = this.options.width + 80 + "px";
+			_player_width = this.options.width + "px";
+		} else {
+			trace("width is greater")
+			trace(this.options.width)
+			_player_height = _height + "px";
+			_player_width = _height - 80 + "px";
+		}
+
+
+		this.player.style.width = _player_width;
+		this.player.style.height = _player_height;
+
+		if (this._el.credit) {
+			this._el.credit.style.width		= _player_width;
+		}
+		if (this._el.caption) {
+			this._el.caption.style.width		= _player_width;
+		}
+	},
+
+
+	_stopMedia: function() {
+		// Need spotify stop code
+
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Storify.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Storify.js
new file mode 100644
index 0000000000000000000000000000000000000000..fd44cd2d285c759a749b785dba2b32aef00746cc
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Storify.js
@@ -0,0 +1,36 @@
+/*	TL.Media.Storify
+================================================== */
+
+TL.Media.Storify = TL.Media.extend({
+	
+	includes: [TL.Events],
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var content;
+				
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-storify", this._el.content);
+		
+		// Get Media ID
+		this.media_id = this.data.url;
+		
+		// Content
+		content =	"<iframe frameborder='0' width='100%' height='100%' src='" + this.media_id + "/embed'></iframe>";
+		content +=	"<script src='" + this.media_id + ".js'></script>";
+		
+		// API Call
+		this._el.content_item.innerHTML = content;
+		
+		// After Loaded
+		this.onLoaded();
+	},
+	
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = this.options.height + "px";
+	}
+	
+	
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Text.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Text.js
new file mode 100644
index 0000000000000000000000000000000000000000..bc4dd7b1ad3f7f47829078c19ef4624dec6f60e2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Text.js
@@ -0,0 +1,124 @@
+TL.Media.Text = TL.Class.extend({
+	
+	includes: [TL.Events],
+	
+	// DOM ELEMENTS
+	_el: {
+		container: {},
+		content_container: {},
+		content: {},
+		headline: {},
+		date: {}
+	},
+	
+	// Data
+	data: {
+		unique_id: 			"",
+		headline: 			"headline",
+		text: 				"text"
+	},
+	
+	// Options
+	options: {
+		title: 			false
+	},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, add_to_container) {
+		
+		TL.Util.setData(this, data);
+		
+		// Merge Options
+		TL.Util.mergeData(this.options, options);
+		
+		this._el.container = TL.Dom.create("div", "tl-text");
+		this._el.container.id = this.data.unique_id;
+		
+		this._initLayout();
+		
+		if (add_to_container) {
+			add_to_container.appendChild(this._el.container);
+		};
+		
+	},
+	
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+		
+	},
+	
+	hide: function() {
+		
+	},
+	
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+		//this.onAdd();
+	},
+	
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+	
+	headlineHeight: function() {
+		return this._el.headline.offsetHeight + 40;
+	},
+	
+	addDateText: function(str) {
+		this._el.date.innerHTML = str;
+	},
+	
+	/*	Events
+	================================================== */
+	onLoaded: function() {
+		this.fire("loaded", this.data);
+	},
+	
+	onAdd: function() {
+		this.fire("added", this.data);
+	},
+
+	onRemove: function() {
+		this.fire("removed", this.data);
+	},
+	
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		
+		// Create Layout
+		this._el.content_container			= TL.Dom.create("div", "tl-text-content-container", this._el.container);
+		
+		// Date
+		this._el.date 				= TL.Dom.create("h3", "tl-headline-date", this._el.content_container);
+		
+		// Headline
+		if (this.data.headline != "") {
+			var headline_class = "tl-headline";
+			if (this.options.title) {
+				headline_class = "tl-headline tl-headline-title";
+			}
+			this._el.headline				= TL.Dom.create("h2", headline_class, this._el.content_container);
+			this._el.headline.innerHTML		= this.data.headline;
+		}
+
+		// Text
+		if (this.data.text != "") {
+			var text_content = "";
+
+			text_content += TL.Util.htmlify(this.options.autolink == true ? TL.Util.linkify(this.data.text) : this.data.text);
+			trace(this.data.text);
+			this._el.content				= TL.Dom.create("div", "tl-text-content", this._el.content_container);
+			this._el.content.innerHTML		= text_content;
+			trace(text_content);
+			trace(this._el.content)
+		}
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Twitter.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Twitter.js
new file mode 100644
index 0000000000000000000000000000000000000000..bf48429ceb5aa9889e31da08b8eab911fe15c0e6
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Twitter.js
@@ -0,0 +1,137 @@
+/*	TL.Media.Twitter
+	Produces Twitter Display
+================================================== */
+
+TL.Media.Twitter = TL.Media.extend({
+	
+	includes: [TL.Events],
+    
+
+	
+	/*	Load the media
+	================================================== */
+
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+					
+		// Create Dom element
+		this._el.content_item = TL.Dom.create("div", "tl-media-twitter", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+        		
+		// Get Media ID
+        if(this.data.url.match("^(https?:)?\/*(www.)?twitter\.com"))
+        {
+		if (this.data.url.match("status\/")) {
+			this.media_id = this.data.url.split("status\/")[1];
+		} else if (this.data.url.match("statuses\/")) {
+			this.media_id = this.data.url.split("statuses\/")[1];
+		} else {
+			this.media_id = "";
+		}
+        }
+        
+        else if(this.data.url.match("<blockquote class=['\"]twitter-tweet['\"]")) {
+		
+        var found = this.data.url.match(/(status|statuses)\/(\d+)/);
+		if (found && found.length > 2) {
+		    this.media_id = found[2];
+		} else {
+		    self.loadErrorDisplay(self._("twitterembed_invalidurl_err"));
+		    return;
+		}
+    }
+        
+		// API URL
+		api_url = "https://api.twitter.com/1/statuses/oembed.json?id=" + this.media_id + "&omit_script=true&include_entities=true&callback=?";
+		
+		// API Call
+		TL.ajax({
+			type: 'GET',
+			url: api_url,
+			dataType: 'json', //json data type
+			success: function(d){
+				self.createMedia(d);
+			},
+			error:function(xhr, type){
+				var error_text = "";
+				error_text += self._("twitter_load_err") + "<br/>" + self.media_id + "<br/>" + type;
+				self.loadErrorDisplay(error_text);
+			}
+		});
+		 
+	},
+	
+	createMedia: function(d) {
+        trace("create_media")	
+		var tweet				= "",
+			tweet_text			= "",
+			tweetuser			= "",
+			tweet_status_temp 	= "",
+			tweet_status_url 	= "",
+			tweet_status_date 	= "",
+            self = this;
+			
+		//	TWEET CONTENT
+		tweet_text 			= d.html.split("<\/p>\&mdash;")[0] + "</p></blockquote>";
+		tweetuser			= d.author_url.split("twitter.com\/")[1];
+		tweet_status_temp 	= d.html.split("<\/p>\&mdash;")[1].split("<a href=\"")[1];
+		tweet_status_url 	= tweet_status_temp.split("\"\>")[0];
+		tweet_status_date 	= tweet_status_temp.split("\"\>")[1].split("<\/a>")[0];
+		
+		// Open links in new window
+		tweet_text = tweet_text.replace(/<a href/ig, '<a target="_blank" href');
+        
+        if (tweet_text.includes("pic.twitter.com")) {
+            
+            TL.Load.js('https://platform.twitter.com/widgets.js', function() {
+                twttr.widgets.createTweet(self.media_id, self._el.content_item,
+                {
+                    conversation : 'none',    // or all
+                    linkColor    : '#cc0000', // default is blue
+                    theme        : 'light'    // or dark
+                })
+            });
+            
+            this.onLoaded();
+            
+        } else {
+
+            // 	TWEET CONTENT
+            tweet += tweet_text;
+
+            //	TWEET AUTHOR
+            tweet += "<div class='vcard'>";
+            tweet += "<a href='" + tweet_status_url + "' class='twitter-date' target='_blank'>" + tweet_status_date + "</a>";
+            tweet += "<img src='" + "' class='tl-media-item tl-media-image' target='_blank'>" + "</a>";
+            tweet += "<div class='author'>";
+            tweet += "<a class='screen-name url' href='" + d.author_url + "' target='_blank'>";
+            tweet += "<span class='avatar'></span>";
+            tweet += "<span class='fn'>" + d.author_name + " <span class='tl-icon-twitter'></span></span>";
+            tweet += "<span class='nickname'>@" + tweetuser + "<span class='thumbnail-inline'></span></span>";
+            tweet += "</a>";
+            tweet += "</div>";
+            tweet += "</div>";
+
+
+            // Add to DOM
+            this._el.content_item.innerHTML	= tweet;
+
+            // After Loaded
+            this.onLoaded();
+        }
+    },
+	
+    
+	updateMediaDisplay: function() {
+		
+	},
+	
+	_updateMediaDisplay: function() {
+		
+	},
+    
+	
+	
+	
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.TwitterEmbed.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.TwitterEmbed.js
new file mode 100644
index 0000000000000000000000000000000000000000..f4508f342ec4ef9c9d8e9e35a98ef88751f679bd
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.TwitterEmbed.js
@@ -0,0 +1,144 @@
+/*	TL.Media.TwitterEmbed
+	Produces Twitter Display
+================================================== */
+
+        var mediaID;
+
+TL.Media.TwitterEmbed = TL.Media.extend({
+	includes: [TL.Events],
+    
+
+	
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+					
+		// Create Dom element
+		this._el.content_item = TL.Dom.create("div", "tl-media-twitter", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+		
+		// Get Media ID
+		var found = this.data.url.match(/(status|statuses)\/(\d+)/);
+		if (found && found.length > 2) {
+		    this.media_id = found[2];
+		} else {
+		    self.loadErrorDisplay(self._("twitterembed_invalidurl_err"));
+		    return;
+		}
+
+		// API URL
+		api_url = "https://api.twitter.com/1/statuses/oembed.json?id=" + this.media_id + "&omit_script=true&include_entities=true&callback=?";
+        
+        window.twttr = (function(d, s, id) {
+            var js, fjs = d.getElementsByTagName(s)[0],
+            t = window.twttr || {};
+            if (d.getElementById(id)) return t;
+            js = d.createElement(s);
+            js.id = id;
+            js.src = "https://platform.twitter.com/widgets.js";
+            fjs.parentNode.insertBefore(js, fjs);
+
+            t._e = [];
+            t.ready = function(f) {
+            t._e.push(f);
+            };
+
+            return t;
+        }(document, "script", "twitter-wjs"));
+        
+        mediaID = this.media_id;
+		
+		// API Call
+		TL.ajax({
+			type: 'GET',
+			url: api_url,
+			dataType: 'json', //json data type
+			success: function(d){
+				self.createMedia(d);
+			},
+			error:function(xhr, type){
+				var error_text = "";
+				error_text += self._("twitter_load_err") + "<br/>" + self.media_id + "<br/>" + type;
+				self.loadErrorDisplay(error_text);
+			}
+		});
+		 
+	},
+	
+	createMedia: function(d) {	
+		trace("create_media")	
+		var tweet				= "",
+			tweet_text			= "",
+			tweetuser			= "",
+			tweet_status_temp 	= "",
+			tweet_status_url 	= "",
+			tweet_status_date 	= "";
+			
+		//	TWEET CONTENT
+		tweet_text 			= d.html.split("<\/p>\&mdash;")[0] + "</p></blockquote>";
+        console.log(tweet_text);
+		tweetuser			= d.author_url.split("twitter.com\/")[1];
+		tweet_status_temp 	= d.html.split("<\/p>\&mdash;")[1].split("<a href=\"")[1];
+		tweet_status_url 	= tweet_status_temp.split("\"\>")[0];
+		tweet_status_date 	= tweet_status_temp.split("\"\>")[1].split("<\/a>")[0];
+		
+		// Open links in new window
+		tweet_text = tweet_text.replace(/<a href/ig, '<a target="_blank" href');
+        
+        if (tweet_text.includes("pic.twitter.com")) {
+            twttr.ready(
+                function(evt) {
+                    tweet = document.getElementsByClassName("tl-media-twitter")[0];
+                    var id = String(mediaID);
+                    twttr.widgets.createTweet(id, tweet,
+                        {
+                            conversation : 'none',    // or all
+                            linkColor    : '#cc0000', // default is blue
+                            theme        : 'light'    // or dark
+                        })
+                    .then(function (evt) {
+                        this.onLoaded();
+                    });
+                }
+            );
+            this._el.content_item.innerHTML	= tweet;
+            this.onLoaded();
+        } else{
+            // 	TWEET CONTENT
+            tweet += tweet_text;
+
+            //	TWEET AUTHOR
+            tweet += "<div class='vcard'>";
+            tweet += "<a href='" + tweet_status_url + "' class='twitter-date' target='_blank'>" + tweet_status_date + "</a>";
+            tweet += "<div class='author'>";
+            tweet += "<a class='screen-name url' href='" + d.author_url + "' target='_blank'>";
+            tweet += "<span class='avatar'></span>";
+            tweet += "<span class='fn'>" + d.author_name + " <span class='tl-icon-twitter'></span></span>";
+            tweet += "<span class='nickname'>@" + tweetuser + "<span class='thumbnail-inline'></span></span>";
+            tweet += "</a>";
+            tweet += "</div>";
+            tweet += "</div>";
+
+
+            // Add to DOM
+            this._el.content_item.innerHTML	= tweet;
+
+            // After Loaded
+            this.onLoaded();
+        }
+			
+	},
+	
+	updateMediaDisplay: function() {
+		
+	},
+	
+	_updateMediaDisplay: function() {
+		
+	}
+	
+	
+	
+});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Video.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Video.js
new file mode 100644
index 0000000000000000000000000000000000000000..0c94dff72e53e4d7687bc176df4065bc8be24279
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Video.js
@@ -0,0 +1,72 @@
+/*	TL.Media.Video
+	Produces video assets.
+	Takes a data object and populates a dom object
+================================================== */
+
+TL.Media.Video = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		// Loading Message
+		this.loadingMessage();
+
+        // Create media?
+        if(!this.options.background) {
+            this.createMedia();
+        }
+
+        // After loaded
+		this.onLoaded();
+	},
+
+  createMedia: function() {
+    var self = this,
+        video_class = "tl-media-item tl-media-video tl-media-shadow";
+
+ 		// Link
+		if (this.data.link) {
+			this._el.content_link 				= TL.Dom.create("a", "", this._el.content);
+			this._el.content_link.href 		= this.data.link;
+			this._el.content_link.target 	= "_blank";
+			this._el.content_item					= TL.Dom.create("video", video_class, this._el.content_link);
+		} else {
+			this._el.content_item					= TL.Dom.create("video", video_class, this._el.content);
+		}
+
+		this._el.content_item.controls = true;
+		this._el.source_item = TL.Dom.create("source", "", this._el.content_item);
+
+		// Media Loaded Event
+		this._el.content_item.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		this._el.source_item.src = this.data.url;
+		this._el.source_item.type = this._getType(this.data.url, this.data.mediatype.match_str);
+		this._el.content_item.innerHTML += "Your browser doesn't support HTML5 video with " + this._el.source_item.type;
+  },
+
+	_updateMediaDisplay: function(layout) {
+		if(TL.Browser.firefox) {
+			this._el.content_item.style.width = "auto";
+		}
+	},
+
+	_getType: function(url, reg) {
+		var ext = url.match(reg);
+		var type = "video/"
+		switch(ext[1]) {
+			case "mp4":
+				type += "mp4";
+				break;
+			default:
+				type = "video";
+				break;
+		}
+		return type
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Vimeo.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Vimeo.js
new file mode 100644
index 0000000000000000000000000000000000000000..b0a8cf0117baf44bf2bc9e788446b50fc5568bef
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Vimeo.js
@@ -0,0 +1,57 @@
+/*	TL.Media.Vimeo
+================================================== */
+
+TL.Media.Vimeo = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-vimeo tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url.split(/video\/|\/\/vimeo\.com\//)[1].split(/[?&]/)[0];
+
+		// API URL
+		api_url = "https://player.vimeo.com/video/" + this.media_id + "?api=1&title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff";
+
+		this.player = TL.Dom.create("iframe", "", this._el.content_item);
+
+		// Media Loaded Event
+		this.player.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		this.player.width 		= "100%";
+		this.player.height 		= "100%";
+		this.player.frameBorder = "0";
+		this.player.src 		= api_url;
+
+		this.player.setAttribute('allowfullscreen', '');
+		this.player.setAttribute('webkitallowfullscreen', '');
+		this.player.setAttribute('mozallowfullscreen', '');
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth}) + "px";
+	},
+
+	_stopMedia: function() {
+
+		try {
+			this.player.contentWindow.postMessage(JSON.stringify({method: "pause"}), "https://player.vimeo.com");
+		}
+		catch(err) {
+			trace(err);
+		}
+	}
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Vine.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Vine.js
new file mode 100644
index 0000000000000000000000000000000000000000..30320b13f48edf9832f28544f228ed60a2a80229
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Vine.js
@@ -0,0 +1,41 @@
+/*	TL.Media.Vine
+
+================================================== */
+
+TL.Media.Vine = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-vine tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url.split("vine.co/v/")[1];
+
+		// API URL
+		api_url = "https://vine.co/v/" + this.media_id + "/embed/simple";
+
+		// API Call
+		this._el.content_item.innerHTML = "<iframe frameborder='0' width='100%' height='100%' src='" + api_url + "'></iframe><script async src='https://platform.vine.co/static/scripts/embed.js' charset='utf-8'></script>"		
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		var size = TL.Util.ratio.square({w:this._el.content_item.offsetWidth , h:this.options.height});
+		this._el.content_item.style.height = size.h + "px";
+	},
+
+	_stopMedia: function() {
+		this._el.content_item.querySelector("iframe").contentWindow.postMessage('pause', '*');
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Website.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Website.js
new file mode 100644
index 0000000000000000000000000000000000000000..32a379e4d2ac40fe06382af9352e9e3b02808d53
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Website.js
@@ -0,0 +1,87 @@
+/*	TL.Media.Website
+	Uses Embedly
+	http://embed.ly/docs/api/extract/endpoints/1/extract
+================================================== */
+
+TL.Media.Website = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var self = this;
+
+		// Get Media ID
+		this.media_id = this.data.url.replace(/.*?:\/\//g, "");
+
+		if (this.options.api_key_embedly) {
+			// API URL
+			api_url = "https://api.embed.ly/1/extract?key=" + this.options.api_key_embedly + "&url=" + this.media_id + "&callback=?";
+
+			// API Call
+			TL.getJSON(api_url, function(d) {
+				self.createMedia(d);
+			});
+		} else {
+			this.createCardContent();
+		}
+	},
+
+	createCardContent: function() {
+		(function(w, d){
+			var id='embedly-platform', n = 'script';
+			if (!d.getElementById(id)){
+			 w.embedly = w.embedly || function() {(w.embedly.q = w.embedly.q || []).push(arguments);};
+			 var e = d.createElement(n); e.id = id; e.async=1;
+			 e.src = ('https:' === document.location.protocol ? 'https' : 'http') + '://cdn.embedly.com/widgets/platform.js';
+			 var s = d.getElementsByTagName(n)[0];
+			 s.parentNode.insertBefore(e, s);
+			}
+		})(window, document);
+
+		var content = "<a href=\"" + this.data.url + "\" class=\"embedly-card\">" + this.data.url + "</a>";
+		this._setContent(content);
+
+	},
+	createMedia: function(d) { // this costs API credits...
+		var content = "";
+
+
+		content		+=	"<h4><a href='" + this.data.url + "' target='_blank'>" + d.title + "</a></h4>";
+		if (d.images) {
+			if (d.images[0]) {
+				trace(d.images[0].url);
+				content		+=	"<img src='" + d.images[0].url + "' />";
+			}
+		}
+		if (d.favicon_url) {
+			content		+=	"<img class='tl-media-website-icon' src='" + d.favicon_url + "' />";
+		}
+		content		+=	"<span class='tl-media-website-description'>" + d.provider_name + "</span><br/>";
+		content		+=	"<p>" + d.description + "</p>";
+
+		this._setContent(content);
+	},
+
+	_setContent: function(content) {
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-website", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+		this._el.content_item.innerHTML = content;
+
+		// After Loaded
+		this.onLoaded();
+
+	},
+
+	updateMediaDisplay: function() {
+
+	},
+
+	_updateMediaDisplay: function() {
+
+	}
+
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Wikipedia.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Wikipedia.js
new file mode 100644
index 0000000000000000000000000000000000000000..cd269254e6b5821104b708b769eac875695cfeb8
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Wikipedia.js
@@ -0,0 +1,110 @@
+/*	TL.Media.Wikipedia
+================================================== */
+
+TL.Media.Wikipedia = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			api_language,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-wikipedia", this._el.content);
+		this._el.content_container.className = "tl-media-content-container tl-media-content-container-text";
+
+		// Get Media ID
+		this.media_id	 = this.data.url.split("wiki\/")[1].split("#")[0].replace("_", " ");
+		this.media_id	 = this.media_id.replace(" ", "%20");
+		api_language	 = this.data.url.split("//")[1].split(".wikipedia")[0];
+
+		// API URL
+		api_url = "https://" + api_language + ".wikipedia.org/w/api.php?action=query&prop=extracts|pageimages&redirects=&titles=" + this.media_id + "&exintro=1&format=json&callback=?";
+
+		// API Call
+		TL.ajax({
+			type: 'GET',
+			url: api_url,
+			dataType: 'json', //json data type
+
+			success: function(d){
+				self.createMedia(d);
+			},
+			error:function(xhr, type){
+				var error_text = "";
+				error_text += self._("wikipedia_load_err") + "<br/>" + self.media_id + "<br/>" + type;
+				self.loadErrorDisplay(error_text);
+			}
+		});
+
+	},
+
+	createMedia: function(d) {
+		var wiki = "";
+
+		if (d.query) {
+			var content = "",
+				wiki = {
+					entry: {},
+					title: "",
+					text: "",
+					extract: "",
+					paragraphs: 1,
+					page_image: "",
+					text_array: []
+				};
+
+			wiki.entry		 = TL.Util.getObjectAttributeByIndex(d.query.pages, 0);
+			wiki.extract	 = wiki.entry.extract;
+			wiki.title		 = wiki.entry.title;
+			wiki.page_image	 = wiki.entry.thumbnail;
+
+			if (wiki.extract.match("<p>")) {
+				wiki.text_array = wiki.extract.split("<p>");
+			} else {
+				wiki.text_array.push(wiki.extract);
+			}
+
+			for(var i = 0; i < wiki.text_array.length; i++) {
+				if (i+1 <= wiki.paragraphs && i+1 < wiki.text_array.length) {
+					wiki.text	+= "<p>" + wiki.text_array[i+1];
+				}
+			}
+
+
+			content		+=	"<span class='tl-icon-wikipedia'></span>";
+			content		+=	"<div class='tl-wikipedia-title'><h4><a href='" + this.data.url + "' target='_blank'>" + wiki.title + "</a></h4>";
+			content		+=	"<span class='tl-wikipedia-source'>" + this._('wikipedia') + "</span></div>";
+
+			if (wiki.page_image) {
+				//content 	+= 	"<img class='tl-wikipedia-pageimage' src='" + wiki.page_image.source +"'>";
+			}
+
+			content		+=	wiki.text;
+
+			if (wiki.extract.match("REDIRECT")) {
+
+			} else {
+				// Add to DOM
+				this._el.content_item.innerHTML	= content;
+				// After Loaded
+				this.onLoaded();
+			}
+
+
+		}
+
+	},
+
+	updateMediaDisplay: function() {
+
+	},
+
+	_updateMediaDisplay: function() {
+
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Wistia.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Wistia.js
new file mode 100644
index 0000000000000000000000000000000000000000..92432d8c99dd563968b0c8cf05e29b3b2aa744bc
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.Wistia.js
@@ -0,0 +1,56 @@
+/*	TL.Media.Wistia
+================================================== */
+
+TL.Media.Wistia = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var api_url,
+			self = this;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-iframe tl-media-wistia tl-media-shadow", this._el.content);
+
+		// Get Media ID
+		this.media_id = this.data.url.split(/https?:\/\/(.+)?(wistia\.com|wi\.st)\/medias\/(.*)/)[3];
+
+		// API URL
+		api_url = "https://fast.wistia.com/embed/iframe/" + this.media_id + "?version=v1&controlsVisibleOnLoad=true&playerColor=aae3d8";
+
+    this.player = TL.Dom.create("iframe", "", this._el.content_item);
+
+    // Media Loaded Event
+		this.player.addEventListener('load', function(e) {
+			self.onMediaLoaded();
+		});
+
+		this.player.width 		= "100%";
+		this.player.height 		= "100%";
+		this.player.frameBorder = "0";
+		this.player.src 		= api_url;
+
+		this.player.setAttribute('allowfullscreen', '');
+		this.player.setAttribute('webkitallowfullscreen', '');
+		this.player.setAttribute('mozallowfullscreen', '');
+
+		// After Loaded
+		this.onLoaded();
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this._el.content_item.offsetWidth}) + "px";
+	},
+
+	_stopMedia: function() {
+		try {
+			this.player.contentWindow.postMessage(JSON.stringify({method: "pause"}), "https://player.vimeo.com");
+		}
+		catch(err) {
+			trace(err);
+		}
+	}
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.YouTube.js b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.YouTube.js
new file mode 100644
index 0000000000000000000000000000000000000000..925cacc2614a7b5b2272dbdf4af86537ee33af3a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/media/types/TL.Media.YouTube.js
@@ -0,0 +1,127 @@
+/*	TL.Media.YouTube
+================================================== */
+
+TL.Media.YouTube = TL.Media.extend({
+
+	includes: [TL.Events],
+
+	/*	Load the media
+	================================================== */
+	_loadMedia: function() {
+		var self = this,
+			url_vars;
+
+		this.youtube_loaded = false;
+
+		// Create Dom element
+		this._el.content_item	= TL.Dom.create("div", "tl-media-item tl-media-youtube tl-media-shadow", this._el.content);
+		this._el.content_item.id = TL.Util.unique_ID(7)
+
+		// URL Vars
+		url_vars = TL.Util.getUrlVars(this.data.url);
+
+		// Get Media ID
+		this.media_id = {};
+
+		if (this.data.url.match('v=')) {
+			this.media_id.id	= url_vars["v"];
+		} else if (this.data.url.match('\/embed\/')) {
+			this.media_id.id	= this.data.url.split("embed\/")[1].split(/[?&]/)[0];
+		} else if (this.data.url.match(/v\/|v=|youtu\.be\//)){
+			this.media_id.id	= this.data.url.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0];
+		} else {
+			trace("YOUTUBE IN URL BUT NOT A VALID VIDEO");
+		}
+
+		this.media_id.start		= parseInt(url_vars["start"]);	
+
+		if (isNaN(this.media_id.start)){
+			this.media_id.start		= TL.Util.parseYouTubeTime(url_vars["t"]);
+		}
+
+		this.media_id.end		= parseInt(url_vars["end"]);
+
+		this.media_id.hd		= Boolean(typeof(url_vars["hd"]) != 'undefined');
+
+
+		// API Call
+		TL.Load.js('https://www.youtube.com/iframe_api', function() {
+			self.createMedia();
+		});
+
+	},
+
+	// Update Media Display
+	_updateMediaDisplay: function() {
+		//this.el.content_item = document.getElementById(this._el.content_item.id);
+		this._el.content_item.style.height = TL.Util.ratio.r16_9({w:this.options.width}) + "px";
+		this._el.content_item.style.width = this.options.width + "px";
+	},
+
+	_stopMedia: function() {
+		if (this.youtube_loaded) {
+			try {
+			    if(this.player.getPlayerState() == YT.PlayerState.PLAYING) {
+			        this.player.pauseVideo();
+			    }
+			}
+			catch(err) {
+				trace(err);
+			}
+
+		}
+	},
+	createMedia: function() {
+		var self = this;
+
+		clearTimeout(this.timer);
+
+		if(typeof YT != 'undefined' && typeof YT.Player != 'undefined') {
+			// Create Player
+			this.player = new YT.Player(this._el.content_item.id, {
+				playerVars: {
+					enablejsapi:		1,
+					color: 				'white',
+					autohide: 			1,
+					showinfo:			0,
+					theme:				'light',
+					start:				this.media_id.start,
+					end:  				this.media_id.end,
+					fs: 				0,
+					rel:				0
+				},
+				videoId: this.media_id.id,
+				events: {
+					onReady: 			function() {
+						self.onPlayerReady();
+						// After Loaded
+						self.onLoaded();
+					},
+					'onStateChange': 	self.onStateChange
+				}
+			});
+		} else {
+			this.timer = setTimeout(function() {
+				self.createMedia();
+			}, 1000);
+		}
+	},
+
+	/*	Events
+	================================================== */
+	onPlayerReady: function(e) {
+		this.youtube_loaded = true;
+		this._el.content_item = document.getElementById(this._el.content_item.id);
+		this.onMediaLoaded();
+
+	},
+
+	onStateChange: function(e) {
+        if(e.data == YT.PlayerState.ENDED) {
+            e.target.seekTo(0);
+            e.target.pauseVideo();
+        }				
+	}
+
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.Slide.js b/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.Slide.js
new file mode 100644
index 0000000000000000000000000000000000000000..bbbeb7e02ce63583383005e71ba0383b0ea395ab
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.Slide.js
@@ -0,0 +1,345 @@
+/*	TL.Slide
+	Creates a slide. Takes a data object and
+	populates the slide with content.
+================================================== */
+
+TL.Slide = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, title_slide) {
+		// DOM Elements
+		this._el = {
+			container: {},
+			scroll_container: {},
+			background: {},
+			content_container: {},
+			content: {}
+		};
+
+		// Components
+		this._media 		= null;
+		this._mediaclass	= {};
+		this._text			= {};
+		this._background_media = null;
+
+		// State
+		this._state = {
+			loaded: 		false
+		};
+
+		this.has = {
+			headline: 	false,
+			text: 		false,
+			media: 		false,
+			title: 		false,
+			background: {
+				image: false,
+				color: false,
+				color_value :""
+			}
+		}
+
+		this.has.title = title_slide;
+
+		// Data
+		this.data = {
+			unique_id: 				null,
+			background: 			null,
+			start_date: 			null,
+			end_date: 				null,
+			location: 				null,
+			text: 					null,
+			media: 					null,
+            autolink: true
+		};
+
+		// Options
+		this.options = {
+			// animation
+			duration: 			1000,
+			slide_padding_lr: 	40,
+			ease: 				TL.Ease.easeInSpline,
+			width: 				600,
+			height: 			600,
+			skinny_size: 		650,
+			media_name: 		""
+		};
+
+		// Actively Displaying
+		this.active = false;
+
+		// Animation Object
+		this.animator = {};
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+		this._initLayout();
+		this._initEvents();
+
+
+	},
+
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+		this.animator = TL.Animate(this._el.slider_container, {
+			left: 		-(this._el.container.offsetWidth * n) + "px",
+			duration: 	this.options.duration,
+			easing: 	this.options.ease
+		});
+	},
+
+	hide: function() {
+
+	},
+
+	setActive: function(is_active) {
+		this.active = is_active;
+
+		if (this.active) {
+			if (this.data.background) {
+				this.fire("background_change", this.has.background);
+			}
+			this.loadMedia();
+		} else {
+			this.stopMedia();
+		}
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+		//this.onAdd();
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+
+	updateDisplay: function(w, h, l) {
+		this._updateDisplay(w, h, l);
+	},
+
+	loadMedia: function() {
+        var self = this;
+
+		if (this._media && !this._state.loaded) {
+			this._media.loadMedia();
+			this._state.loaded = true;
+		}
+
+		if(this._background_media && !this._background_media._state.loaded) {
+		    this._background_media.on("loaded", function() {
+		        self._updateBackgroundDisplay();
+		    });
+		    this._background_media.loadMedia();
+		}
+	},
+
+	stopMedia: function() {
+		if (this._media && this._state.loaded) {
+			this._media.stopMedia();
+		}
+	},
+
+	getBackground: function() {
+		return this.has.background;
+	},
+
+	scrollToTop: function() {
+		this._el.container.scrollTop = 0;
+	},
+
+	getFormattedDate: function() {
+
+		if (TL.Util.trim(this.data.display_date).length > 0) {
+			return this.data.display_date;
+		}
+		var date_text = "";
+
+		if(!this.has.title) {
+            if (this.data.end_date) {
+                date_text = " &mdash; " + this.data.end_date.getDisplayDate(this.getLanguage());
+            }
+            if (this.data.start_date) {
+                date_text = this.data.start_date.getDisplayDate(this.getLanguage()) + date_text;
+            }
+        }
+		return date_text;
+	},
+
+	/*	Events
+	================================================== */
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		// Create Layout
+		this._el.container 				= TL.Dom.create("div", "tl-slide");
+
+		if (this.has.title) {
+			this._el.container.className = "tl-slide tl-slide-titleslide";
+		}
+
+		if (this.data.unique_id) {
+			this._el.container.id 		= this.data.unique_id;
+		}
+		this._el.scroll_container 		= TL.Dom.create("div", "tl-slide-scrollable-container", this._el.container);
+		this._el.content_container		= TL.Dom.create("div", "tl-slide-content-container", this._el.scroll_container);
+		this._el.content				= TL.Dom.create("div", "tl-slide-content", this._el.content_container);
+		this._el.background				= TL.Dom.create("div", "tl-slide-background", this._el.container);
+		// Style Slide Background
+		if (this.data.background) {
+			if (this.data.background.url) {
+		    var media_type = TL.MediaType(this.data.background, true);
+		    if(media_type) {
+          this._background_media = new media_type.cls(this.data.background, {background: 1});
+
+          this.has.background.image 					= true;
+          this._el.container.className 				+= ' tl-full-image-background';
+          this.has.background.color_value 		= "#000";
+          this._el.background.style.display 	= "block";
+        }
+			}
+			if (this.data.background.color) {
+				this.has.background.color 					= true;
+				this._el.container.className 				+= ' tl-full-color-background';
+				this.has.background.color_value 			= this.data.background.color;
+				//this._el.container.style.backgroundColor = this.data.background.color;
+				//this._el.background.style.backgroundColor 	= this.data.background.color;
+				//this._el.background.style.display 			= "block";
+			}
+			if (this.data.background.text_background) {
+				this._el.container.className 				+= ' tl-text-background';
+			}
+
+		}
+
+
+
+		// Determine Assets for layout and loading
+		if (this.data.media && this.data.media.url && this.data.media.url != "") {
+			this.has.media = true;
+		}
+		if (this.data.text && this.data.text.text) {
+			this.has.text = true;
+		}
+		if (this.data.text && this.data.text.headline) {
+			this.has.headline = true;
+		}
+
+		// Create Media
+		if (this.has.media) {
+			// Determine the media type
+			this.data.media.mediatype = TL.MediaType(this.data.media);
+			this.options.media_name 	= this.data.media.mediatype.name;
+			this.options.media_type 	= this.data.media.mediatype.type;
+      this.options.autolink 		= this.data.autolink;
+
+			// Create a media object using the matched class name
+			this._media = new this.data.media.mediatype.cls(this.data.media, this.options);
+		}
+
+		// Create Text
+		if (this.has.text || this.has.headline) {
+			this._text = new TL.Media.Text(this.data.text, {title:this.has.title,language: this.options.language, autolink: this.data.autolink });
+			this._text.addDateText(this.getFormattedDate());
+		}
+
+
+
+		// Add to DOM
+		if (!this.has.text && !this.has.headline && this.has.media) {
+			TL.DomUtil.addClass(this._el.container, 'tl-slide-media-only');
+			this._media.addTo(this._el.content);
+		} else if (this.has.headline && this.has.media && !this.has.text) {
+			TL.DomUtil.addClass(this._el.container, 'tl-slide-media-only');
+			this._text.addTo(this._el.content);
+			this._media.addTo(this._el.content);
+		} else if (this.has.text && this.has.media) {
+			this._media.addTo(this._el.content);
+			this._text.addTo(this._el.content);
+		} else if (this.has.text || this.has.headline) {
+			TL.DomUtil.addClass(this._el.container, 'tl-slide-text-only');
+			this._text.addTo(this._el.content);
+		}
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+
+	},
+
+	_initEvents: function() {
+
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, layout) {
+		var content_width,
+			content_padding_left = this.options.slide_padding_lr,
+			content_padding_right = this.options.slide_padding_lr;
+
+		if (width) {
+			this.options.width 					= width;
+		} else {
+			this.options.width 					= this._el.container.offsetWidth;
+		}
+
+		content_width = this.options.width - (this.options.slide_padding_lr * 2);
+
+		if(TL.Browser.mobile && (this.options.width <= this.options.skinny_size)) {
+			content_padding_left = 0;
+			content_padding_right = 0;
+			content_width = this.options.width;
+		} else if (layout == "landscape") {
+
+		} else if (this.options.width <= this.options.skinny_size) {
+			content_padding_left = 50;
+			content_padding_right = 50;
+			content_width = this.options.width - content_padding_left - content_padding_right;
+		} else {
+
+		}
+
+		this._el.content.style.paddingLeft 	= content_padding_left + "px";
+		this._el.content.style.paddingRight = content_padding_right + "px";
+		this._el.content.style.width		= content_width + "px";
+
+		if (height) {
+			this.options.height = height;
+			//this._el.scroll_container.style.height		= this.options.height + "px";
+
+		} else {
+			this.options.height = this._el.container.offsetHeight;
+		}
+
+		if (this._media) {
+
+			if (!this.has.text && this.has.headline) {
+				this._media.updateDisplay(content_width, (this.options.height - this._text.headlineHeight()), layout);
+			} else if (!this.has.text && !this.has.headline) {
+				this._media.updateDisplay(content_width, this.options.height, layout);
+			} else if (this.options.width <= this.options.skinny_size) {
+				this._media.updateDisplay(content_width, this.options.height, layout);
+			} else {
+				this._media.updateDisplay(content_width/2, this.options.height, layout);
+			}
+		}
+
+		this._updateBackgroundDisplay();
+	},
+
+	_updateBackgroundDisplay: function() {
+	    if(this._background_media && this._background_media._state.loaded) {
+	        this._el.background.style.backgroundImage 	= "url('" + this._background_media.getImageURL(this.options.width, this.options.height) + "')";
+	    }
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.SlideNav.js b/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.SlideNav.js
new file mode 100644
index 0000000000000000000000000000000000000000..45ebe1ffd16b8cbe5e8e25fab0bd7b04842fcad6
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.SlideNav.js
@@ -0,0 +1,127 @@
+/*	TL.SlideNav
+	encapsulate DOM display/events for the 
+	'next' and 'previous' buttons on a slide.
+================================================== */
+// TODO null out data
+
+TL.SlideNav = TL.Class.extend({
+	
+	includes: [TL.Events, TL.DomMixins],
+	
+	_el: {},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, add_to_container) {
+		// DOM ELEMENTS
+		this._el = {
+			container: {},
+			content_container: {},
+			icon: {},
+			title: {},
+			description: {}
+		};
+	
+		// Media Type
+		this.mediatype = {};
+		
+		// Data
+		this.data = {
+			title: "Navigation",
+			description: "Description",
+			date: "Date"
+		};
+	
+		//Options
+		this.options = {
+			direction: 			"previous"
+		};
+	
+		this.animator = null;
+		
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+		
+		
+		this._el.container = TL.Dom.create("div", "tl-slidenav-" + this.options.direction);
+		
+		if (TL.Browser.mobile) {
+			this._el.container.setAttribute("ontouchstart"," ");
+		}
+		
+		this._initLayout();
+		this._initEvents();
+		
+		if (add_to_container) {
+			add_to_container.appendChild(this._el.container);
+		};
+		
+	},
+	
+	/*	Update Content
+	================================================== */
+	update: function(slide) {
+		var d = {
+			title: "",
+			description: "",
+			date: slide.getFormattedDate()
+		};
+		
+		if (slide.data.text) {
+			if (slide.data.text.headline) {
+				d.title = slide.data.text.headline;
+			}
+		}
+
+		this._update(d);
+	},
+	
+	/*	Color
+	================================================== */
+	setColor: function(inverted) {
+		if (inverted) {
+			this._el.content_container.className = 'tl-slidenav-content-container tl-slidenav-inverted';
+		} else {
+			this._el.content_container.className = 'tl-slidenav-content-container';
+		}
+	},
+	
+	/*	Events
+	================================================== */
+	_onMouseClick: function() {
+		this.fire("clicked", this.options);
+	},
+	
+	/*	Private Methods
+	================================================== */
+	_update: function(d) {
+		// update data
+		this.data = TL.Util.mergeData(this.data, d);
+		
+		// Title
+		this._el.title.innerHTML = TL.Util.unlinkify(this.data.title);
+		
+		// Date
+		this._el.description.innerHTML	= TL.Util.unlinkify(this.data.date);
+	},
+	
+	_initLayout: function () {
+		
+		// Create Layout
+		this._el.content_container			= TL.Dom.create("div", "tl-slidenav-content-container", this._el.container);
+		this._el.icon						= TL.Dom.create("div", "tl-slidenav-icon", this._el.content_container);
+		this._el.title						= TL.Dom.create("div", "tl-slidenav-title", this._el.content_container);
+		this._el.description				= TL.Dom.create("div", "tl-slidenav-description", this._el.content_container);
+		
+		this._el.icon.innerHTML				= "&nbsp;"
+		
+		this._update();
+	},
+	
+	_initEvents: function () {
+		TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
+	}
+	
+	
+});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.StorySlider.js b/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.StorySlider.js
new file mode 100644
index 0000000000000000000000000000000000000000..cf3a1680d90b0306bef0cd0d8001cb90669a4272
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/slider/TL.StorySlider.js
@@ -0,0 +1,547 @@
+/*	StorySlider
+	is the central class of the API - it is used to create a StorySlider
+
+	Events:
+	nav_next
+	nav_previous
+	slideDisplayUpdate
+	loaded
+	slideAdded
+	slideLoaded
+	slideRemoved
+
+
+================================================== */
+
+TL.StorySlider = TL.Class.extend({
+
+	includes: [TL.Events, TL.I18NMixins],
+
+	/*	Private Methods
+	================================================== */
+	initialize: function (elem, data, options, init) {
+
+		// DOM ELEMENTS
+		this._el = {
+			container: {},
+			background: {},
+			slider_container_mask: {},
+			slider_container: {},
+			slider_item_container: {}
+		};
+
+		this._nav = {};
+		this._nav.previous = {};
+		this._nav.next = {};
+
+		// Slide Spacing
+		this.slide_spacing = 0;
+
+		// Slides Array
+		this._slides = [];
+
+		// Swipe Object
+		this._swipable;
+
+		// Preload Timer
+		this.preloadTimer;
+
+		// Message
+		this._message;
+
+		// Current Slide
+		this.current_id = '';
+
+		// Data Object
+		this.data = {};
+
+		this.options = {
+			id: 					"",
+			layout: 				"portrait",
+			width: 					600,
+			height: 				600,
+			default_bg_color: 		{r:255, g:255, b:255},
+			slide_padding_lr: 		40, 			// padding on slide of slide
+			start_at_slide: 		1,
+			slide_default_fade: 	"0%", 			// landscape fade
+			// animation
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint,
+			// interaction
+			dragging: 				true,
+			trackResize: 			true
+		};
+
+		// Main element ID
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+			this.options.id = TL.Util.unique_ID(6, "tl");
+		} else {
+			this.options.id = elem;
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		if (!this._el.container.id) {
+			this._el.container.id = this.options.id;
+		}
+
+		// Animation Object
+		this.animator = null;
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+		if (init) {
+			this.init();
+		}
+	},
+
+	init: function() {
+		this._initLayout();
+		this._initEvents();
+		this._initData();
+		this._updateDisplay();
+
+		// Go to initial slide
+		this.goTo(this.options.start_at_slide);
+
+		this._onLoaded();
+	},
+
+	/* Slides
+	================================================== */
+	_addSlide:function(slide) {
+		slide.addTo(this._el.slider_item_container);
+		slide.on('added', this._onSlideAdded, this);
+		slide.on('background_change', this._onBackgroundChange, this);
+	},
+
+	_createSlide: function(d, title_slide, n) {
+		var slide = new TL.Slide(d, this.options, title_slide);
+		this._addSlide(slide);
+		if(n < 0) {
+		    this._slides.push(slide);
+		} else {
+		    this._slides.splice(n, 0, slide);
+		}
+	},
+
+	_createSlides: function(array) {
+		for (var i = 0; i < array.length; i++) {
+			if (array[i].unique_id == "") {
+				array[i].unique_id = TL.Util.unique_ID(6, "tl-slide");
+			}
+            this._createSlide(array[i], false, -1);
+		}
+	},
+
+	_removeSlide: function(slide) {
+		slide.removeFrom(this._el.slider_item_container);
+		slide.off('added', this._onSlideRemoved, this);
+		slide.off('background_change', this._onBackgroundChange);
+	},
+
+	_destroySlide: function(n) {
+		this._removeSlide(this._slides[n]);
+		this._slides.splice(n, 1);
+	},
+
+    _findSlideIndex: function(n) {
+        var _n = n;
+		if (typeof n == 'string' || n instanceof String) {
+			_n = TL.Util.findArrayNumberByUniqueID(n, this._slides, "unique_id");
+		}
+		return _n;
+    },
+
+	/*	Public
+	================================================== */
+	updateDisplay: function(w, h, a, l) {
+		this._updateDisplay(w, h, a, l);
+	},
+
+	// Create a slide
+	createSlide: function(d, n) {
+		this._createSlide(d, false, n);
+	},
+
+	// Create Many Slides from an array
+	createSlides: function(array) {
+		this._createSlides(array);
+	},
+
+	// Destroy slide by index
+	destroySlide: function(n) {
+	    this._destroySlide(n);
+	},
+
+	// Destroy slide by id
+	destroySlideId: function(id) {
+	    this.destroySlide(this._findSlideIndex(id));
+	},
+
+	/*	Navigation
+	================================================== */
+	goTo: function(n, fast, displayupdate) {
+		n = parseInt(n);
+		if (isNaN(n)) n = 0;
+
+		var self = this;
+
+		this.changeBackground({color_value:"", image:false});
+
+		// Clear Preloader Timer
+		if (this.preloadTimer) {
+			clearTimeout(this.preloadTimer);
+		}
+
+		// Set Slide Active State
+		for (var i = 0; i < this._slides.length; i++) {
+			this._slides[i].setActive(false);
+		}
+
+		if (n < this._slides.length && n >= 0) {
+			this.current_id = this._slides[n].data.unique_id;
+
+			// Stop animation
+			if (this.animator) {
+				this.animator.stop();
+			}
+			if (this._swipable) {
+				this._swipable.stopMomentum();
+			}
+
+			if (fast) {
+				this._el.slider_container.style.left = -(this.slide_spacing * n) + "px";
+				this._onSlideChange(displayupdate);
+			} else {
+				this.animator = TL.Animate(this._el.slider_container, {
+					left: 		-(this.slide_spacing * n) + "px",
+					duration: 	this.options.duration,
+					easing: 	this.options.ease,
+					complete: 	this._onSlideChange(displayupdate)
+				});
+			}
+
+			// Set Slide Active State
+			this._slides[n].setActive(true);
+
+			// Update Navigation and Info
+			if (this._slides[n + 1]) {
+				this.showNav(this._nav.next, true);
+				this._nav.next.update(this._slides[n + 1]);
+			} else {
+				this.showNav(this._nav.next, false);
+			}
+			if (this._slides[n - 1]) {
+				this.showNav(this._nav.previous, true);
+				this._nav.previous.update(this._slides[n - 1]);
+			} else {
+				this.showNav(this._nav.previous, false);
+			}
+
+			// Preload Slides
+			this.preloadTimer = setTimeout(function() {
+				self.preloadSlides(n);
+			}, this.options.duration);
+		}
+	},
+
+	goToId: function(id, fast, displayupdate) {
+		this.goTo(this._findSlideIndex(id), fast, displayupdate);
+	},
+
+	preloadSlides: function(n) {
+		if (this._slides[n + 1]) {
+			this._slides[n + 1].loadMedia();
+			this._slides[n + 1].scrollToTop();
+		}
+		if (this._slides[n + 2]) {
+			this._slides[n + 2].loadMedia();
+			this._slides[n + 2].scrollToTop();
+		}
+		if (this._slides[n - 1]) {
+			this._slides[n - 1].loadMedia();
+			this._slides[n - 1].scrollToTop();
+		}
+		if (this._slides[n - 2]) {
+			this._slides[n - 2].loadMedia();
+			this._slides[n - 2].scrollToTop();
+		}
+	},
+
+	next: function() {
+	    var n = this._findSlideIndex(this.current_id);
+		if ((n + 1) < (this._slides.length)) {
+			this.goTo(n + 1);
+		} else {
+			this.goTo(n);
+		}
+	},
+
+	previous: function() {
+	    var n = this._findSlideIndex(this.current_id);
+		if (n - 1 >= 0) {
+			this.goTo(n - 1);
+		} else {
+			this.goTo(n);
+		}
+	},
+
+	showNav: function(nav_obj, show) {
+
+		if (this.options.width <= 500 && TL.Browser.mobile) {
+
+		} else {
+			if (show) {
+				nav_obj.show();
+			} else {
+				nav_obj.hide();
+			}
+
+		}
+	},
+
+
+
+	changeBackground: function(bg) {
+		var bg_color = {r:256, g:256, b:256},
+			bg_color_rgb;
+
+		if (bg.color_value && bg.color_value != "") {
+			bg_color = TL.Util.hexToRgb(bg.color_value);
+			if (!bg_color) {
+				trace("Invalid color value " + bg.color_value);
+				bg_color = this.options.default_bg_color;
+			}
+		} else {
+			bg_color = this.options.default_bg_color;
+			bg.color_value = "rgb(" + bg_color.r + " , " + bg_color.g + ", " + bg_color.b + ")";
+		}
+
+		bg_color_rgb 	= bg_color.r + "," + bg_color.g + "," + bg_color.b;
+		this._el.background.style.backgroundImage = "none";
+
+
+		if (bg.color_value) {
+			this._el.background.style.backgroundColor = bg.color_value;
+		} else {
+			this._el.background.style.backgroundColor = "transparent";
+		}
+
+		if (bg_color.r < 255 || bg_color.g < 255 || bg_color.b < 255 || bg.image) {
+			this._nav.next.setColor(true);
+			this._nav.previous.setColor(true);
+		} else {
+			this._nav.next.setColor(false);
+			this._nav.previous.setColor(false);
+		}
+	},
+	/*	Private Methods
+	================================================== */
+
+	// Update Display
+	_updateDisplay: function(width, height, animate, layout) {
+		var nav_pos, _layout;
+
+		if(typeof layout === 'undefined'){
+			_layout = this.options.layout;
+		} else {
+			_layout = layout;
+		}
+
+		this.options.layout = _layout;
+
+		this.slide_spacing = this.options.width*2;
+
+		if (width) {
+			this.options.width = width;
+		} else {
+			this.options.width = this._el.container.offsetWidth;
+		}
+
+		if (height) {
+			this.options.height = height;
+		} else {
+			this.options.height = this._el.container.offsetHeight;
+		}
+
+		//this._el.container.style.height = this.options.height;
+
+		// position navigation
+		nav_pos = (this.options.height/2);
+		this._nav.next.setPosition({top:nav_pos});
+		this._nav.previous.setPosition({top:nav_pos});
+
+
+		// Position slides
+		for (var i = 0; i < this._slides.length; i++) {
+			this._slides[i].updateDisplay(this.options.width, this.options.height, _layout);
+			this._slides[i].setPosition({left:(this.slide_spacing * i), top:0});
+
+		};
+
+		// Go to the current slide
+		this.goToId(this.current_id, true, true);
+	},
+
+	// Reposition and redraw slides
+    _updateDrawSlides: function() {
+	    var _layout = this.options.layout;
+
+		for (var i = 0; i < this._slides.length; i++) {
+			this._slides[i].updateDisplay(this.options.width, this.options.height, _layout);
+			this._slides[i].setPosition({left:(this.slide_spacing * i), top:0});
+		};
+
+		this.goToId(this.current_id, true, false);
+	},
+
+
+	/*	Init
+	================================================== */
+	_initLayout: function () {
+
+		TL.DomUtil.addClass(this._el.container, 'tl-storyslider');
+
+		// Create Layout
+		this._el.slider_container_mask		= TL.Dom.create('div', 'tl-slider-container-mask', this._el.container);
+		this._el.background 				= TL.Dom.create('div', 'tl-slider-background tl-animate', this._el.container);
+		this._el.slider_container			= TL.Dom.create('div', 'tl-slider-container tlanimate', this._el.slider_container_mask);
+		this._el.slider_item_container		= TL.Dom.create('div', 'tl-slider-item-container', this._el.slider_container);
+
+
+		// Update Size
+		this.options.width = this._el.container.offsetWidth;
+		this.options.height = this._el.container.offsetHeight;
+
+		// Create Navigation
+		this._nav.previous = new TL.SlideNav({title: "Previous", description: "description"}, {direction:"previous"});
+		this._nav.next = new TL.SlideNav({title: "Next",description: "description"}, {direction:"next"});
+
+		// add the navigation to the dom
+		this._nav.next.addTo(this._el.container);
+		this._nav.previous.addTo(this._el.container);
+
+
+
+		this._el.slider_container.style.left="0px";
+
+		if (TL.Browser.touch) {
+			//this._el.slider_touch_mask = TL.Dom.create('div', 'tl-slider-touch-mask', this._el.slider_container_mask);
+			this._swipable = new TL.Swipable(this._el.slider_container_mask, this._el.slider_container, {
+				enable: {x:true, y:false},
+				snap: 	true
+			});
+			this._swipable.enable();
+
+			// Message
+			this._message = new TL.Message({}, {
+				message_class: 		"tl-message-full",
+				message_icon_class: "tl-icon-swipe-left"
+			});
+			this._message.updateMessage(this._("swipe_to_navigate"));
+			this._message.addTo(this._el.container);
+		}
+
+	},
+
+	_initEvents: function () {
+		this._nav.next.on('clicked', this._onNavigation, this);
+		this._nav.previous.on('clicked', this._onNavigation, this);
+
+		if (this._message) {
+			this._message.on('clicked', this._onMessageClick, this);
+		}
+
+		if (this._swipable) {
+			this._swipable.on('swipe_left', this._onNavigation, this);
+			this._swipable.on('swipe_right', this._onNavigation, this);
+			this._swipable.on('swipe_nodirection', this._onSwipeNoDirection, this);
+		}
+
+
+	},
+
+	_initData: function() {
+	    if(this.data.title) {
+	        this._createSlide(this.data.title, true, -1);
+	    }
+        this._createSlides(this.data.events);
+	},
+
+	/*	Events
+	================================================== */
+	_onBackgroundChange: function(e) {
+	    var n = this._findSlideIndex(this.current_id);
+		var slide_background = this._slides[n].getBackground();
+		this.changeBackground(e);
+		this.fire("colorchange", slide_background);
+	},
+
+	_onMessageClick: function(e) {
+		this._message.hide();
+	},
+
+	_onSwipeNoDirection: function(e) {
+		this.goToId(this.current_id);
+	},
+
+	_onNavigation: function(e) {
+
+		if (e.direction == "next" || e.direction == "left") {
+			this.next();
+		} else if (e.direction == "previous" || e.direction == "right") {
+			this.previous();
+		}
+		this.fire("nav_" + e.direction, this.data);
+	},
+
+	_onSlideAdded: function(e) {
+		trace("slideadded")
+		this.fire("slideAdded", this.data);
+	},
+
+	_onSlideRemoved: function(e) {
+		this.fire("slideRemoved", this.data);
+	},
+
+	_onSlideChange: function(displayupdate) {
+		if (!displayupdate) {
+			this.fire("change", {unique_id: this.current_id});
+		}
+	},
+
+	_onMouseClick: function(e) {
+
+	},
+
+	_fireMouseEvent: function (e) {
+		if (!this._loaded) {
+			return;
+		}
+
+		var type = e.type;
+		type = (type === 'mouseenter' ? 'mouseover' : (type === 'mouseleave' ? 'mouseout' : type));
+
+		if (!this.hasEventListeners(type)) {
+			return;
+		}
+
+		if (type === 'contextmenu') {
+			TL.DomEvent.preventDefault(e);
+		}
+
+		this.fire(type, {
+			latlng: "something", //this.mouseEventToLatLng(e),
+			layerPoint: "something else" //this.mouseEventToLayerPoint(e)
+		});
+	},
+
+	_onLoaded: function() {
+		this.fire("loaded", this.data);
+	}
+
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.AxisHelper.js b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.AxisHelper.js
new file mode 100644
index 0000000000000000000000000000000000000000..de9c2c9484a26c99b9173a5f60a73441cbdbec64
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.AxisHelper.js
@@ -0,0 +1,101 @@
+/*  TL.AxisHelper
+    Strategies for laying out the timenav
+    markers and time axis
+    Intended as a private class -- probably only known to TimeScale
+================================================== */
+TL.AxisHelper = TL.Class.extend({
+    initialize: function (options) {
+		if (options) {
+            this.scale = options.scale;
+	        this.minor = options.minor;
+	        this.major = options.major;
+		} else {
+            throw new TL.Error("axis_helper_no_options_err")
+        }
+       
+    },
+    
+    getPixelsPerTick: function(pixels_per_milli) {
+        return pixels_per_milli * this.minor.factor;
+    },
+
+    getMajorTicks: function(timescale) {
+		return this._getTicks(timescale, this.major)
+    },
+
+    getMinorTicks: function(timescale) {
+        return this._getTicks(timescale, this.minor)
+    },
+
+    _getTicks: function(timescale, option) {
+
+        var factor_scale = timescale._scaled_padding * option.factor;
+        var first_tick_time = timescale._earliest - factor_scale;
+        var last_tick_time = timescale._latest + factor_scale;
+        var ticks = []
+        for (var i = first_tick_time; i < last_tick_time; i += option.factor) {
+            ticks.push(timescale.getDateFromTime(i).floor(option.name));
+        }
+
+        return {
+            name: option.name,
+            ticks: ticks
+        }
+
+    }
+
+});
+
+(function(cls){ // add some class-level behavior
+
+    var HELPERS = {};
+    
+    var setHelpers = function(scale_type, scales) {
+        HELPERS[scale_type] = [];
+        
+        for (var idx = 0; idx < scales.length - 1; idx++) {
+            var minor = scales[idx];
+            var major = scales[idx+1];
+            HELPERS[scale_type].push(new cls({
+                scale: minor[3],
+                minor: { name: minor[0], factor: minor[1]},
+                major: { name: major[0], factor: major[1]}
+            }));
+        }
+    };
+    
+    setHelpers('human', TL.Date.SCALES);
+    setHelpers('cosmological', TL.BigDate.SCALES);
+    
+    cls.HELPERS = HELPERS;
+    
+    cls.getBestHelper = function(ts,optimal_tick_width) {
+        if (typeof(optimal_tick_width) != 'number' ) {
+            optimal_tick_width = 100;
+        }
+        var ts_scale = ts.getScale();
+        var helpers = HELPERS[ts_scale];
+        
+        if (!helpers) {
+            throw new TL.Error("axis_helper_scale_err", ts_scale);
+        }
+        
+        var prev = null;
+        for (var idx = 0; idx < helpers.length; idx++) {
+            var curr = helpers[idx];
+            var pixels_per_tick = curr.getPixelsPerTick(ts._pixels_per_milli);
+            if (pixels_per_tick > optimal_tick_width)  {
+                if (prev == null) return curr;
+                var curr_dist = Math.abs(optimal_tick_width - pixels_per_tick);
+                var prev_dist = Math.abs(optimal_tick_width - pixels_per_tick);
+                if (curr_dist < prev_dist) {
+                    return curr;
+                } else {
+                    return prev;
+                }
+            }
+            prev = curr;
+        }
+        return helpers[helpers.length - 1]; // last resort           
+    }
+})(TL.AxisHelper);
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeAxis.js b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeAxis.js
new file mode 100644
index 0000000000000000000000000000000000000000..ce17cf559e6f90c99f2a78ffcbd938cdffe3ce68
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeAxis.js
@@ -0,0 +1,287 @@
+/*	TL.TimeAxis
+	Display element for showing timescale ticks
+================================================== */
+
+TL.TimeAxis = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(elem, options) {
+		// DOM Elements
+		this._el = {
+			container: {},
+			content_container: {},
+			major: {},
+			minor: {},
+		};
+
+		// Components
+		this._text			= {};
+
+		// State
+		this._state = {
+			loaded: 		false
+		};
+
+
+		// Data
+		this.data = {};
+
+		// Options
+		this.options = {
+			duration: 				1000,
+			ease: 					TL.Ease.easeInSpline,
+			width: 					600,
+			height: 				600
+		};
+
+		// Actively Displaying
+		this.active = false;
+
+		// Animation Object
+		this.animator = {};
+
+		// Axis Helper
+		this.axis_helper = {};
+
+		// Minor tick dom element array
+		this.minor_ticks = [];
+
+		// Minor tick dom element array
+		this.major_ticks = [];
+
+		// Date Format Lookup, map TL.Date.SCALES names to...
+		this.dateformat_lookup = {
+	        millisecond: 'time_milliseconds',     // ...TL.Language.<code>.dateformats
+	        second: 'time_short',
+	        minute: 'time_no_seconds_short',
+	        hour: 'time_no_minutes_short',
+	        day: 'full_short',
+	        month: 'month_short',
+	        year: 'year',
+	        decade: 'year',
+	        century: 'year',
+	        millennium: 'year',
+	        age: 'compact',  // ...TL.Language.<code>.bigdateformats
+	        epoch: 'compact',
+	        era: 'compact',
+	        eon: 'compact',
+	        eon2: 'compact'
+	    }
+
+		// Main element
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+		} else {
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+
+		this._initLayout();
+		this._initEvents();
+
+	},
+
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+
+	},
+
+	hide: function() {
+
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+
+	updateDisplay: function(w, h) {
+		this._updateDisplay(w, h);
+	},
+
+	getLeft: function() {
+		return this._el.container.style.left.slice(0, -2);
+	},
+
+	drawTicks: function(timescale, optimal_tick_width) {
+
+		var ticks = timescale.getTicks();
+
+		var controls = {
+			minor: {
+				el: this._el.minor,
+				dateformat: this.dateformat_lookup[ticks['minor'].name],
+				ts_ticks: ticks['minor'].ticks,
+				tick_elements: this.minor_ticks
+			},
+			major: {
+				el: this._el.major,
+				dateformat: this.dateformat_lookup[ticks['major'].name],
+				ts_ticks: ticks['major'].ticks,
+				tick_elements: this.major_ticks
+			}
+		}
+		// FADE OUT
+		this._el.major.className = "tl-timeaxis-major";
+		this._el.minor.className = "tl-timeaxis-minor";
+		this._el.major.style.opacity = 0;
+		this._el.minor.style.opacity = 0;
+
+		// CREATE MAJOR TICKS
+		this.major_ticks = this._createTickElements(
+			ticks['major'].ticks,
+			this._el.major,
+			this.dateformat_lookup[ticks['major'].name]
+		);
+
+		// CREATE MINOR TICKS
+		this.minor_ticks = this._createTickElements(
+			ticks['minor'].ticks,
+			this._el.minor,
+			this.dateformat_lookup[ticks['minor'].name],
+			ticks['major'].ticks
+		);
+
+		this.positionTicks(timescale, optimal_tick_width, true);
+
+		// FADE IN
+		this._el.major.className = "tl-timeaxis-major tl-animate-opacity tl-timeaxis-animate-opacity";
+		this._el.minor.className = "tl-timeaxis-minor tl-animate-opacity tl-timeaxis-animate-opacity";
+		this._el.major.style.opacity = 1;
+		this._el.minor.style.opacity = 1;
+	},
+
+	_createTickElements: function(ts_ticks,tick_element,dateformat,ticks_to_skip) {
+		tick_element.innerHTML = "";
+		var skip_times = {};
+
+		var yearZero = new Date(-1,13,-30);
+		skip_times[yearZero.getTime()] = true;
+
+		if (ticks_to_skip){
+			for (var i = 0; i < ticks_to_skip.length; i++) {
+				skip_times[ticks_to_skip[i].getTime()] = true;
+			}
+		}
+
+		var tick_elements = []
+		for (var i = 0; i < ts_ticks.length; i++) {
+			var ts_tick = ts_ticks[i];
+			if (!(ts_tick.getTime() in skip_times)) {
+				var tick = TL.Dom.create("div", "tl-timeaxis-tick", tick_element),
+					tick_text 	= TL.Dom.create("span", "tl-timeaxis-tick-text tl-animate-opacity", tick);
+
+				tick_text.innerHTML = ts_tick.getDisplayDate(this.getLanguage(), dateformat);
+
+				tick_elements.push({
+					tick:tick,
+					tick_text:tick_text,
+					display_date:ts_tick.getDisplayDate(this.getLanguage(), dateformat),
+					date:ts_tick
+				});
+			}
+		}
+		return tick_elements;
+	},
+
+	positionTicks: function(timescale, optimal_tick_width, no_animate) {
+
+		// Handle Animation
+		if (no_animate) {
+			this._el.major.className = "tl-timeaxis-major";
+			this._el.minor.className = "tl-timeaxis-minor";
+		} else {
+			this._el.major.className = "tl-timeaxis-major tl-timeaxis-animate";
+			this._el.minor.className = "tl-timeaxis-minor tl-timeaxis-animate";
+		}
+
+		this._positionTickArray(this.major_ticks, timescale, optimal_tick_width);
+		this._positionTickArray(this.minor_ticks, timescale, optimal_tick_width);
+
+	},
+
+	_positionTickArray: function(tick_array, timescale, optimal_tick_width) {
+		// Poition Ticks & Handle density of ticks
+		if (tick_array[1] && tick_array[0]) {
+			var distance = ( timescale.getPosition(tick_array[1].date.getMillisecond()) - timescale.getPosition(tick_array[0].date.getMillisecond()) ),
+				fraction_of_array = 1;
+
+
+			if (distance < optimal_tick_width) {
+				fraction_of_array = Math.round(optimal_tick_width/timescale.getPixelsPerTick());
+			}
+
+			var show = 1;
+
+			for (var i = 0; i < tick_array.length; i++) {
+
+				var tick = tick_array[i];
+
+				// Poition Ticks
+				tick.tick.style.left = timescale.getPosition(tick.date.getMillisecond()) + "px";
+				tick.tick_text.innerHTML = tick.display_date;
+
+				// Handle density of ticks
+				if (fraction_of_array > 1) {
+					if (show >= fraction_of_array) {
+						show = 1;
+						tick.tick_text.style.opacity = 1;
+						tick.tick.className = "tl-timeaxis-tick";
+					} else {
+						show++;
+						tick.tick_text.style.opacity = 0;
+						tick.tick.className = "tl-timeaxis-tick tl-timeaxis-tick-hidden";
+					}
+				} else {
+					tick.tick_text.style.opacity = 1;
+					tick.tick.className = "tl-timeaxis-tick";
+				}
+
+			};
+		}
+	},
+
+	/*	Events
+	================================================== */
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		this._el.content_container		= TL.Dom.create("div", "tl-timeaxis-content-container", this._el.container);
+		this._el.major					= TL.Dom.create("div", "tl-timeaxis-major", this._el.content_container);
+		this._el.minor					= TL.Dom.create("div", "tl-timeaxis-minor", this._el.content_container);
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+	},
+
+	_initEvents: function() {
+
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, layout) {
+
+		if (width) {
+			this.options.width 					= width;
+		}
+
+		if (height) {
+			this.options.height = height;
+		}
+
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeEra.js b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeEra.js
new file mode 100644
index 0000000000000000000000000000000000000000..7b877840b67bf7d7b77eb92bcecfdaef63a6db4c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeEra.js
@@ -0,0 +1,241 @@
+/*	TL.TimeMarker
+
+================================================== */
+
+TL.TimeEra = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options) {
+
+		// DOM Elements
+		this._el = {
+			container: {},
+			background: {},
+			content_container: {},
+			content: {},
+			text: {}
+		};
+
+		// Components
+		this._text			= {};
+
+		// State
+		this._state = {
+			loaded: 		false
+		};
+
+
+		// Data
+		this.data = {
+			unique_id: 			"",
+			date: {
+				year:			0,
+				month:			0,
+				day: 			0,
+				hour: 			0,
+				minute: 		0,
+				second: 		0,
+				millisecond: 	0,
+				thumbnail: 		"",
+				format: 		""
+			},
+			text: {
+				headline: 		"",
+				text: 			""
+			}
+		};
+
+		// Options
+		this.options = {
+			duration: 			1000,
+			ease: 				TL.Ease.easeInSpline,
+			width: 				600,
+			height: 			600,
+			marker_width_min: 	100 			// Minimum Marker Width
+		};
+
+		// Actively Displaying
+		this.active = false;
+
+		// Animation Object
+		this.animator = {};
+
+		// End date
+		this.has_end_date = false;
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+		this._initLayout();
+		this._initEvents();
+
+
+	},
+
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+
+	},
+
+	hide: function() {
+
+	},
+
+	setActive: function(is_active) {
+
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+
+	updateDisplay: function(w, h) {
+		this._updateDisplay(w, h);
+	},
+
+	getLeft: function() {
+		return this._el.container.style.left.slice(0, -2);
+	},
+
+	getTime: function() { // TODO does this need to know about the end date?
+		return this.data.start_date.getTime();
+	},
+
+	getEndTime: function() {
+
+		if (this.data.end_date) {
+			return this.data.end_date.getTime();
+		} else {
+			return false;
+		}
+	},
+
+	setHeight: function(h) {
+		var text_line_height = 12,
+			text_lines = 1;
+
+		this._el.content_container.style.height = h  + "px";
+		this._el.content.className = "tl-timeera-content";
+
+		// Handle number of lines visible vertically
+
+		if (TL.Browser.webkit) {
+			text_lines = Math.floor(h / (text_line_height + 2));
+			if (text_lines < 1) {
+				text_lines = 1;
+			}
+			this._text.className = "tl-headline";
+			this._text.style.webkitLineClamp = text_lines;
+		} else {
+			text_lines = h / text_line_height;
+			if (text_lines > 1) {
+				this._text.className = "tl-headline tl-headline-fadeout";
+			} else {
+				this._text.className = "tl-headline";
+			}
+			this._text.style.height = (text_lines * text_line_height)  + "px";
+		}
+
+	},
+
+	setWidth: function(w) {
+		if (this.data.end_date) {
+			this._el.container.style.width = w + "px";
+
+			if (w > this.options.marker_width_min) {
+				this._el.content_container.style.width = w + "px";
+				this._el.content_container.className = "tl-timeera-content-container tl-timeera-content-container-long";
+			} else {
+				this._el.content_container.style.width = this.options.marker_width_min + "px";
+				this._el.content_container.className = "tl-timeera-content-container";
+			}
+		}
+
+	},
+
+	setClass: function(n) {
+		this._el.container.className = n;
+	},
+
+	setRowPosition: function(n, remainder) {
+		this.setPosition({top:n});
+
+		if (remainder < 56) {
+			//TL.DomUtil.removeClass(this._el.content_container, "tl-timeera-content-container-small");
+		}
+	},
+
+	setColor: function(color_num) {
+		this._el.container.className = 'tl-timeera tl-timeera-color' + color_num;
+	},
+
+	/*	Events
+	================================================== */
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		//trace(this.data)
+		// Create Layout
+		this._el.container 				= TL.Dom.create("div", "tl-timeera");
+		if (this.data.unique_id) {
+			this._el.container.id 		= this.data.unique_id + "-era";
+		}
+
+		if (this.data.end_date) {
+			this.has_end_date = true;
+			this._el.container.className = 'tl-timeera tl-timeera-with-end';
+		}
+
+		this._el.content_container		= TL.Dom.create("div", "tl-timeera-content-container", this._el.container);
+
+		this._el.background 			= TL.Dom.create("div", "tl-timeera-background", this._el.content_container);
+
+		this._el.content				= TL.Dom.create("div", "tl-timeera-content", this._el.content_container);
+
+		
+
+		// Text
+		this._el.text					= TL.Dom.create("div", "tl-timeera-text", this._el.content);
+		this._text						= TL.Dom.create("h2", "tl-headline", this._el.text);
+		if (this.data.text.headline && this.data.text.headline != "") {
+			this._text.innerHTML		= TL.Util.unlinkify(this.data.text.headline);
+		} 
+
+
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+
+	},
+
+	_initEvents: function() {
+		
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, layout) {
+
+		if (width) {
+			this.options.width 					= width;
+		}
+
+		if (height) {
+			this.options.height = height;
+		}
+
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeGroup.js b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeGroup.js
new file mode 100644
index 0000000000000000000000000000000000000000..061673bdb2f4eca8c9c1ffd04fbc9eba8e6568ea
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeGroup.js
@@ -0,0 +1,108 @@
+/*	TL.TimeGroup
+	
+================================================== */
+ 
+TL.TimeGroup = TL.Class.extend({
+	
+	includes: [TL.Events, TL.DomMixins],
+	
+	_el: {},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function(data) {
+		
+		// DOM ELEMENTS
+		this._el = {
+			parent: {},
+			container: {},
+			message: {}
+		};
+		
+		//Options
+		this.options = {
+			width: 					600,
+			height: 				600
+		};
+		
+		// Data
+		this.data = {
+			label: "",
+			rows: 1
+		};
+		
+		
+		this._el.container = TL.Dom.create("div", "tl-timegroup"); 
+		
+		// Merge Data
+		TL.Util.mergeData(this.data, data);
+		
+		// Animation
+		this.animator = {};
+		
+		
+		this._initLayout();
+		this._initEvents();
+	},
+	
+	/*	Public
+	================================================== */
+	
+	
+	
+	/*	Update Display
+	================================================== */
+	updateDisplay: function(w, h) {
+		
+	},
+	
+	setRowPosition: function(n, h) {
+		// trace(n);
+		// trace(this._el.container)
+		this.options.height = h * this.data.rows;
+		this.setPosition({top:n});
+		this._el.container.style.height = this.options.height + "px";
+		
+	},
+	
+	setAlternateRowColor: function(alternate, hide) {
+		var class_name = "tl-timegroup";
+		if (alternate) {
+			class_name += " tl-timegroup-alternate";
+		}
+		if (hide) {
+			class_name += " tl-timegroup-hidden";
+		}
+		this._el.container.className = class_name;
+	},
+	
+	/*	Events
+	================================================== */
+
+	
+	_onMouseClick: function() {
+		this.fire("clicked", this.options);
+	},
+
+	
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		
+		// Create Layout
+		this._el.message = TL.Dom.create("div", "tl-timegroup-message", this._el.container);
+		this._el.message.innerHTML = this.data.label;
+		
+		
+	},
+	
+	_initEvents: function () {
+		TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
+	},
+	
+	// Update Display
+	_updateDisplay: function(width, height, animate) {
+		
+	}
+	
+});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeMarker.js b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeMarker.js
new file mode 100644
index 0000000000000000000000000000000000000000..41e14ff48bfe9b866207e56429d4d1f93744b54b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeMarker.js
@@ -0,0 +1,309 @@
+/*	TL.TimeMarker
+
+================================================== */
+
+TL.TimeMarker = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options) {
+
+		// DOM Elements
+		this._el = {
+			container: {},
+			content_container: {},
+			media_container: {},
+			timespan: {},
+			line_left: {},
+			line_right: {},
+			content: {},
+			text: {},
+			media: {},
+		};
+
+		// Components
+		this._text			= {};
+
+		// State
+		this._state = {
+			loaded: 		false
+		};
+
+
+		// Data
+		this.data = {
+			unique_id: 			"",
+			background: 		null,
+			date: {
+				year:			0,
+				month:			0,
+				day: 			0,
+				hour: 			0,
+				minute: 		0,
+				second: 		0,
+				millisecond: 	0,
+				thumbnail: 		"",
+				format: 		""
+			},
+			text: {
+				headline: 		"",
+				text: 			""
+			},
+			media: 				null
+		};
+
+		// Options
+		this.options = {
+			duration: 			1000,
+			ease: 				TL.Ease.easeInSpline,
+			width: 				600,
+			height: 			600,
+			marker_width_min: 	100 			// Minimum Marker Width
+		};
+
+		// Actively Displaying
+		this.active = false;
+
+		// Animation Object
+		this.animator = {};
+
+		// End date
+		this.has_end_date = false;
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		TL.Util.mergeData(this.data, data);
+
+		this._initLayout();
+		this._initEvents();
+
+
+	},
+
+	/*	Adding, Hiding, Showing etc
+	================================================== */
+	show: function() {
+
+	},
+
+	hide: function() {
+
+	},
+
+	setActive: function(is_active) {
+		this.active = is_active;
+
+		if (this.active && this.has_end_date) {
+			this._el.container.className = 'tl-timemarker tl-timemarker-with-end tl-timemarker-active';
+		} else if (this.active){
+			this._el.container.className = 'tl-timemarker tl-timemarker-active';
+		} else if (this.has_end_date){
+			this._el.container.className = 'tl-timemarker tl-timemarker-with-end';
+		} else {
+			this._el.container.className = 'tl-timemarker';
+		}
+	},
+
+	addTo: function(container) {
+		container.appendChild(this._el.container);
+	},
+
+	removeFrom: function(container) {
+		container.removeChild(this._el.container);
+	},
+
+	updateDisplay: function(w, h) {
+		this._updateDisplay(w, h);
+	},
+
+	loadMedia: function() {
+
+		if (this._media && !this._state.loaded) {
+			this._media.loadMedia();
+			this._state.loaded = true;
+		}
+	},
+
+	stopMedia: function() {
+		if (this._media && this._state.loaded) {
+			this._media.stopMedia();
+		}
+	},
+
+	getLeft: function() {
+		return this._el.container.style.left.slice(0, -2);
+	},
+
+	getTime: function() { // TODO does this need to know about the end date?
+		return this.data.start_date.getTime();
+	},
+
+	getEndTime: function() {
+
+		if (this.data.end_date) {
+			return this.data.end_date.getTime();
+		} else {
+			return false;
+		}
+	},
+
+	setHeight: function(h) {
+		var text_line_height = 12,
+			text_lines = 1;
+
+		this._el.content_container.style.height = h  + "px";
+		this._el.timespan_content.style.height = h + "px";
+		// Handle Line height for better display of text
+		if (h <= 30) {
+			this._el.content.className = "tl-timemarker-content tl-timemarker-content-small";
+		} else {
+			this._el.content.className = "tl-timemarker-content";
+		}
+
+		if (h <= 56) {
+			TL.DomUtil.addClass(this._el.content_container, "tl-timemarker-content-container-small");
+		} else {
+			TL.DomUtil.removeClass(this._el.content_container, "tl-timemarker-content-container-small");
+		}
+
+		// Handle number of lines visible vertically
+
+		if (TL.Browser.webkit) {
+			text_lines = Math.floor(h / (text_line_height + 2));
+			if (text_lines < 1) {
+				text_lines = 1;
+			}
+			this._text.className = "tl-headline";
+			this._text.style.webkitLineClamp = text_lines;
+		} else {
+			text_lines = h / text_line_height;
+			if (text_lines > 1) {
+				this._text.className = "tl-headline tl-headline-fadeout";
+			} else {
+				this._text.className = "tl-headline";
+			}
+			this._text.style.height = (text_lines * text_line_height)  + "px";
+		}
+
+	},
+
+	setWidth: function(w) {
+		if (this.data.end_date) {
+			this._el.container.style.width = w + "px";
+
+			if (w > this.options.marker_width_min) {
+				this._el.content_container.style.width = w + "px";
+				this._el.content_container.className = "tl-timemarker-content-container tl-timemarker-content-container-long";
+			} else {
+				this._el.content_container.style.width = this.options.marker_width_min + "px";
+				this._el.content_container.className = "tl-timemarker-content-container";
+			}
+		}
+
+	},
+
+	setClass: function(n) {
+		this._el.container.className = n;
+	},
+
+	setRowPosition: function(n, remainder) {
+		this.setPosition({top:n});
+		this._el.timespan.style.height = remainder + "px";
+
+		if (remainder < 56) {
+			//TL.DomUtil.removeClass(this._el.content_container, "tl-timemarker-content-container-small");
+		}
+	},
+
+	/*	Events
+	================================================== */
+	_onMarkerClick: function(e) {
+		this.fire("markerclick", {unique_id:this.data.unique_id});
+	},
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		//trace(this.data)
+		// Create Layout
+		this._el.container 				= TL.Dom.create("div", "tl-timemarker");
+		if (this.data.unique_id) {
+			this._el.container.id 		= this.data.unique_id + "-marker";
+		}
+
+		if (this.data.end_date) {
+			this.has_end_date = true;
+			this._el.container.className = 'tl-timemarker tl-timemarker-with-end';
+		}
+
+		this._el.timespan				= TL.Dom.create("div", "tl-timemarker-timespan", this._el.container);
+		this._el.timespan_content		= TL.Dom.create("div", "tl-timemarker-timespan-content", this._el.timespan);
+		this._el.content_container		= TL.Dom.create("div", "tl-timemarker-content-container", this._el.container);
+
+		this._el.content				= TL.Dom.create("div", "tl-timemarker-content", this._el.content_container);
+
+		this._el.line_left				= TL.Dom.create("div", "tl-timemarker-line-left", this._el.timespan);
+		this._el.line_right				= TL.Dom.create("div", "tl-timemarker-line-right", this._el.timespan);
+
+		// Thumbnail or Icon
+		if (this.data.media) {
+			this._el.media_container	= TL.Dom.create("div", "tl-timemarker-media-container", this._el.content);
+			// ugh. needs an overhaul
+			var mtd = {url: this.data.media.thumbnail};
+			var thumbnail_media_type = (this.data.media.thumbnail) ? TL.MediaType(mtd, true) : null;
+			if (thumbnail_media_type) {
+				var thumbnail_media = new thumbnail_media_type.cls(mtd);
+				thumbnail_media.on("loaded", function() {
+					this._el.media				= TL.Dom.create("img", "tl-timemarker-media", this._el.media_container);
+					this._el.media.src			= thumbnail_media.getImageURL();
+				}.bind(this));
+				thumbnail_media.loadMedia();
+			} else {
+				var media_type = TL.MediaType(this.data.media).type;
+				this._el.media				= TL.Dom.create("span", "tl-icon-" + media_type, this._el.media_container);
+
+			}
+
+		}
+
+
+		// Text
+		this._el.text					= TL.Dom.create("div", "tl-timemarker-text", this._el.content);
+		this._text						= TL.Dom.create("h2", "tl-headline", this._el.text);
+		if (this.data.text.headline && this.data.text.headline != "") {
+			this._text.innerHTML		= TL.Util.unlinkify(this.data.text.headline);
+		} else if (this.data.text.text && this.data.text.text != "") {
+			this._text.innerHTML		= TL.Util.unlinkify(this.data.text.text);
+		} else if (this.data.media.caption && this.data.media.caption != "") {
+			this._text.innerHTML		= TL.Util.unlinkify(this.data.media.caption);
+		}
+
+
+
+		// Fire event that the slide is loaded
+		this.onLoaded();
+
+	},
+
+	_initEvents: function() {
+		TL.DomEvent.addListener(this._el.container, 'click', this._onMarkerClick, this);
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, layout) {
+
+		if (width) {
+			this.options.width 					= width;
+		}
+
+		if (height) {
+			this.options.height = height;
+		}
+
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeNav.js b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeNav.js
new file mode 100644
index 0000000000000000000000000000000000000000..abb63d05e7eaece7ccfe03c206e1783becb87766
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeNav.js
@@ -0,0 +1,708 @@
+/*	TL.TimeNav
+
+================================================== */
+
+TL.TimeNav = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function (elem, timeline_config, options, init) {
+		// DOM ELEMENTS
+		this._el = {
+			parent: {},
+			container: {},
+			slider: {},
+			slider_background: {},
+			line: {},
+			marker_container_mask: {},
+			marker_container: {},
+			marker_item_container: {},
+			timeaxis: {},
+			timeaxis_background: {},
+			attribution: {}
+		};
+
+		this.collapsed = false;
+
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+		} else {
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		this.config = timeline_config;
+
+		//Options
+		this.options = {
+			width: 					600,
+			height: 				600,
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint,
+			has_groups: 			false,
+			optimal_tick_width: 	50,
+			scale_factor: 			2, 				// How many screen widths wide should the timeline be
+			marker_padding: 		5,
+			timenav_height_min: 	150, 			// Minimum timenav height
+			marker_height_min: 		30, 			// Minimum Marker Height
+			marker_width_min: 		100, 			// Minimum Marker Width
+			zoom_sequence:          [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] // Array of Fibonacci numbers for TimeNav zoom levels http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibtable.html
+		};
+
+		// Animation
+		this.animator = null;
+
+		// Ready state
+		this.ready = false;
+
+		// Markers Array
+		this._markers = [];
+
+		// Eras Array
+		this._eras = [];
+		this.has_eras = false;
+
+		// Groups Array
+		this._groups = [];
+
+		// Row Height
+		this._calculated_row_height = 100;
+
+		// Current Marker
+		this.current_id = "";
+
+		// TimeScale
+		this.timescale = {};
+
+		// TimeAxis
+		this.timeaxis = {};
+		this.axishelper = {};
+
+		// Max Rows
+		this.max_rows = 6;
+
+		// Animate CSS
+		this.animate_css = false;
+
+		// Swipe Object
+		this._swipable;
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+
+		if (init) {
+			this.init();
+		}
+	},
+
+	init: function() {
+		this._initLayout();
+		this._initEvents();
+		this._initData();
+		this._updateDisplay();
+
+		this._onLoaded();
+	},
+
+	/*	Public
+	================================================== */
+	positionMarkers: function() {
+		this._positionMarkers();
+	},
+
+	/*	Update Display
+	================================================== */
+	updateDisplay: function(w, h, a, l) {
+		this._updateDisplay(w, h, a, l);
+	},
+
+
+	/*	TimeScale
+	================================================== */
+	_getTimeScale: function() {
+		/* maybe the establishing config values (marker_height_min and max_rows) should be
+		separated from making a TimeScale object, which happens in another spot in this file with duplicate mapping of properties of this TimeNav into the TimeScale options object? */
+		// Set Max Rows
+		var marker_height_min = 0;
+		try {
+			marker_height_min = parseInt(this.options.marker_height_min);
+		} catch(e) {
+			trace("Invalid value for marker_height_min option.");
+			marker_height_min = 30;
+		}
+		if (marker_height_min == 0) {
+			trace("marker_height_min option must not be zero.")
+			marker_height_min = 30;
+		}
+		this.max_rows = Math.round((this.options.height - this._el.timeaxis_background.offsetHeight - (this.options.marker_padding)) / marker_height_min);
+		if (this.max_rows < 1) {
+			this.max_rows = 1;
+		}
+		return new TL.TimeScale(this.config, {
+            display_width: this._el.container.offsetWidth,
+            screen_multiplier: this.options.scale_factor,
+            max_rows: this.max_rows
+
+		});
+	},
+
+	_updateTimeScale: function(new_scale) {
+		this.options.scale_factor = new_scale;
+		this._updateDrawTimeline();
+	},
+
+	zoomIn: function() { // move the the next "higher" scale factor
+		var new_scale = TL.Util.findNextGreater(this.options.zoom_sequence, this.options.scale_factor);
+		this.setZoomFactor(new_scale);
+	},
+
+	zoomOut: function() { // move the the next "lower" scale factor
+		var new_scale = TL.Util.findNextLesser(this.options.zoom_sequence, this.options.scale_factor);
+		this.setZoomFactor(new_scale);
+	},
+
+	setZoom: function(level) {
+		var zoom_factor = this.options.zoom_sequence[level];
+		if (typeof(zoom_factor) == 'number') {
+			this.setZoomFactor(zoom_factor);
+		} else {
+			console.warn("Invalid zoom level. Please use an index number between 0 and " + (this.options.zoom_sequence.length - 1));
+		}
+	},
+
+	setZoomFactor: function(factor) {
+		if (factor <= this.options.zoom_sequence[0]) {
+			this.fire("zoomtoggle", {zoom:"out", show:false});
+		} else {
+			this.fire("zoomtoggle", {zoom:"out", show:true});
+		}
+
+		if (factor >= this.options.zoom_sequence[this.options.zoom_sequence.length-1]) {
+			this.fire("zoomtoggle", {zoom:"in", show:false});
+		} else {
+			this.fire("zoomtoggle", {zoom:"in", show:true});
+		}
+
+		if (factor == 0) {
+			console.warn("Zoom factor must be greater than zero. Using 0.1");
+			factor = 0.1;
+		}
+		this.options.scale_factor = factor;
+		//this._updateDrawTimeline(true);
+		this.goToId(this.current_id, !this._updateDrawTimeline(true), true);
+	},
+
+	/*	Groups
+	================================================== */
+	_createGroups: function() {
+		var group_labels = this.timescale.getGroupLabels();
+
+		if (group_labels) {
+			this.options.has_groups = true;
+			for (var i = 0; i < group_labels.length; i++) {
+				this._createGroup(group_labels[i]);
+			}
+		}
+
+	},
+
+	_createGroup: function(group_label) {
+		var group = new TL.TimeGroup(group_label);
+		this._addGroup(group);
+		this._groups.push(group);
+	},
+
+	_addGroup:function(group) {
+		group.addTo(this._el.container);
+
+	},
+
+	_positionGroups: function() {
+		if (this.options.has_groups) {
+			var available_height 	= (this.options.height - this._el.timeaxis_background.offsetHeight ),
+				group_height 		= Math.floor((available_height /this.timescale.getNumberOfRows()) - this.options.marker_padding),
+				group_labels		= this.timescale.getGroupLabels();
+
+			for (var i = 0, group_rows = 0; i < this._groups.length; i++) {
+				var group_y = Math.floor(group_rows * (group_height + this.options.marker_padding));
+				var group_hide = false;
+				if (group_y > (available_height- this.options.marker_padding)) {
+					group_hide = true;
+				}
+
+				this._groups[i].setRowPosition(group_y, this._calculated_row_height + this.options.marker_padding/2);
+				this._groups[i].setAlternateRowColor(TL.Util.isEven(i), group_hide);
+
+				group_rows += this._groups[i].data.rows;    // account for groups spanning multiple rows
+			}
+		}
+	},
+
+	/*	Markers
+	================================================== */
+	_addMarker:function(marker) {
+		marker.addTo(this._el.marker_item_container);
+		marker.on('markerclick', this._onMarkerClick, this);
+		marker.on('added', this._onMarkerAdded, this);
+	},
+
+	_createMarker: function(data, n) {
+		var marker = new TL.TimeMarker(data, this.options);
+		this._addMarker(marker);
+		if(n < 0) {
+		    this._markers.push(marker);
+		} else {
+		    this._markers.splice(n, 0, marker);
+		}
+	},
+
+	_createMarkers: function(array) {
+		for (var i = 0; i < array.length; i++) {
+			this._createMarker(array[i], -1);
+		}
+	},
+
+	_removeMarker: function(marker) {
+		marker.removeFrom(this._el.marker_item_container);
+		//marker.off('added', this._onMarkerRemoved, this);
+	},
+
+	_destroyMarker: function(n) {
+	    this._removeMarker(this._markers[n]);
+	    this._markers.splice(n, 1);
+	},
+
+	_positionMarkers: function(fast) {
+		// POSITION X
+		for (var i = 0; i < this._markers.length; i++) {
+			var pos = this.timescale.getPositionInfo(i);
+			if (fast) {
+				this._markers[i].setClass("tl-timemarker tl-timemarker-fast");
+			} else {
+				this._markers[i].setClass("tl-timemarker");
+			}
+			this._markers[i].setPosition({left:pos.start});
+			this._markers[i].setWidth(pos.width);
+		};
+
+	},
+
+	_calculateMarkerHeight: function(h) {
+		return ((h /this.timescale.getNumberOfRows()) - this.options.marker_padding);
+	},
+
+	_calculateRowHeight: function(h) {
+		return (h /this.timescale.getNumberOfRows());
+	},
+
+	_calculateAvailableHeight: function() {
+		return (this.options.height - this._el.timeaxis_background.offsetHeight - (this.options.marker_padding));
+	},
+
+	_calculateMinimumTimeNavHeight: function() {
+		return (this.timescale.getNumberOfRows() * this.options.marker_height_min) + this._el.timeaxis_background.offsetHeight + (this.options.marker_padding);
+
+	},
+
+	getMinimumHeight: function() {
+		return this._calculateMinimumTimeNavHeight();
+	},
+
+	_assignRowsToMarkers: function() {
+		var available_height 	= this._calculateAvailableHeight(),
+			marker_height 		= this._calculateMarkerHeight(available_height);
+
+
+		this._positionGroups();
+
+		this._calculated_row_height = this._calculateRowHeight(available_height);
+
+		for (var i = 0; i < this._markers.length; i++) {
+
+			// Set Height
+			this._markers[i].setHeight(marker_height);
+
+			//Position by Row
+			var row = this.timescale.getPositionInfo(i).row;
+
+			var marker_y = Math.floor(row * (marker_height + this.options.marker_padding)) + this.options.marker_padding;
+
+			var remainder_height = available_height - marker_y + this.options.marker_padding;
+			this._markers[i].setRowPosition(marker_y, remainder_height);
+		};
+
+	},
+
+	_resetMarkersActive: function() {
+		for (var i = 0; i < this._markers.length; i++) {
+			this._markers[i].setActive(false);
+		};
+	},
+
+	_findMarkerIndex: function(n) {
+	    var _n = -1;
+		if (typeof n == 'string' || n instanceof String) {
+			_n = TL.Util.findArrayNumberByUniqueID(n, this._markers, "unique_id", _n);
+		}
+		return _n;
+	},
+
+	/*	ERAS
+	================================================== */
+	_createEras: function(array) {
+		for (var i = 0; i < array.length; i++) {
+			this._createEra(array[i], -1);
+		}
+	},
+
+	_createEra: function(data, n) {
+		var era = new TL.TimeEra(data, this.options);
+		this._addEra(era);
+		if(n < 0) {
+		    this._eras.push(era);
+		} else {
+		    this._eras.splice(n, 0, era);
+		}
+	},
+
+	_addEra:function(era) {
+		era.addTo(this._el.marker_item_container);
+		era.on('added', this._onEraAdded, this);
+	},
+
+	_removeEra: function(era) {
+		era.removeFrom(this._el.marker_item_container);
+		//marker.off('added', this._onMarkerRemoved, this);
+	},
+
+	_destroyEra: function(n) {
+	    this._removeEra(this._eras[n]);
+	    this._eras.splice(n, 1);
+	},
+
+	_positionEras: function(fast) {
+
+		var era_color = 0;
+		// POSITION X
+		for (var i = 0; i < this._eras.length; i++) {
+			var pos = {
+				start:0,
+				end:0,
+				width:0
+			};
+
+			pos.start = this.timescale.getPosition(this._eras[i].data.start_date.getTime());
+			pos.end = this.timescale.getPosition(this._eras[i].data.end_date.getTime());
+			pos.width = pos.end - pos.start;
+
+			if (fast) {
+				this._eras[i].setClass("tl-timeera tl-timeera-fast");
+			} else {
+				this._eras[i].setClass("tl-timeera");
+			}
+			this._eras[i].setPosition({left:pos.start});
+			this._eras[i].setWidth(pos.width);
+
+			era_color++;
+			if (era_color > 5) {
+				era_color = 0;
+			}
+			this._eras[i].setColor(era_color);
+		};
+
+	},
+
+	/*	Public
+	================================================== */
+
+	// Create a marker
+	createMarker: function(d, n) {
+	    this._createMarker(d, n);
+	},
+
+	// Create many markers from an array
+	createMarkers: function(array) {
+	    this._createMarkers(array);
+	},
+
+	// Destroy marker by index
+	destroyMarker: function(n) {
+	    this._destroyMarker(n);
+	},
+
+	// Destroy marker by id
+	destroyMarkerId: function(id) {
+	    this.destroyMarker(this._findMarkerIndex(id));
+	},
+
+	/*	Navigation
+	================================================== */
+	goTo: function(n, fast, css_animation) {
+		var self = 	this,
+			_ease = this.options.ease,
+			_duration = this.options.duration,
+			_n = (n < 0) ? 0 : n;
+
+		// Set Marker active state
+		this._resetMarkersActive();
+		if(n >= 0 && n < this._markers.length) {
+		    this._markers[n].setActive(true);
+		}
+		// Stop animation
+		if (this.animator) {
+			this.animator.stop();
+		}
+
+		if (fast) {
+			this._el.slider.className = "tl-timenav-slider";
+			this._el.slider.style.left = -this._markers[_n].getLeft() + (this.options.width/2) + "px";
+		} else {
+			if (css_animation) {
+				this._el.slider.className = "tl-timenav-slider tl-timenav-slider-animate";
+				this.animate_css = true;
+				this._el.slider.style.left = -this._markers[_n].getLeft() + (this.options.width/2) + "px";
+			} else {
+				this._el.slider.className = "tl-timenav-slider";
+				this.animator = TL.Animate(this._el.slider, {
+					left: 		-this._markers[_n].getLeft() + (this.options.width/2) + "px",
+					duration: 	_duration,
+					easing: 	_ease
+				});
+			}
+		}
+
+		if(n >= 0 && n < this._markers.length) {
+		    this.current_id = this._markers[n].data.unique_id;
+		} else {
+		    this.current_id = '';
+		}
+	},
+
+	goToId: function(id, fast, css_animation) {
+		this.goTo(this._findMarkerIndex(id), fast, css_animation);
+	},
+
+	/*	Events
+	================================================== */
+	_onLoaded: function() {
+		this.ready = true;
+		this.fire("loaded", this.config);
+	},
+
+	_onMarkerAdded: function(e) {
+		this.fire("dateAdded", this.config);
+	},
+
+	_onEraAdded: function(e) {
+		this.fire("eraAdded", this.config);
+	},
+
+	_onMarkerRemoved: function(e) {
+		this.fire("dateRemoved", this.config);
+	},
+
+	_onMarkerClick: function(e) {
+		// Go to the clicked marker
+		this.goToId(e.unique_id);
+		this.fire("change", {unique_id: e.unique_id});
+	},
+
+	_onMouseScroll: function(e) {
+
+		var delta		= 0,
+			scroll_to	= 0,
+			constraint 	= {
+				right: 	-(this.timescale.getPixelWidth() - (this.options.width/2)),
+				left: 	this.options.width/2
+			};
+		if (!e) {
+			e = window.event;
+		}
+		if (e.originalEvent) {
+			e = e.originalEvent;
+		}
+
+		// Webkit and browsers able to differntiate between up/down and left/right scrolling
+		if (typeof e.wheelDeltaX != 'undefined' ) {
+			delta = e.wheelDeltaY/6;
+			if (Math.abs(e.wheelDeltaX) > Math.abs(e.wheelDeltaY)) {
+				delta = e.wheelDeltaX/6;
+			} else {
+				//delta = e.wheelDeltaY/6;
+				delta = 0;
+			}
+		}
+		if (delta) {
+			if (e.preventDefault) {
+				 e.preventDefault();
+			}
+			e.returnValue = false;
+		}
+		// Stop from scrolling too far
+		scroll_to = parseInt(this._el.slider.style.left.replace("px", "")) + delta;
+
+
+		if (scroll_to > constraint.left) {
+			scroll_to = constraint.left;
+		} else if (scroll_to < constraint.right) {
+			scroll_to = constraint.right;
+		}
+
+		if (this.animate_css) {
+			this._el.slider.className = "tl-timenav-slider";
+			this.animate_css = false;
+		}
+
+		this._el.slider.style.left = scroll_to + "px";
+
+	},
+
+	_onDragMove: function(e) {
+		if (this.animate_css) {
+			this._el.slider.className = "tl-timenav-slider";
+			this.animate_css = false;
+		}
+
+	},
+
+	/*	Private Methods
+	================================================== */
+	// Update Display
+	_updateDisplay: function(width, height, animate) {
+
+		if (width) {
+			this.options.width = width;
+		}
+		if (height && height != this.options.height) {
+			this.options.height = height;
+			this.timescale = this._getTimeScale();
+		}
+
+		// Size Markers
+		this._assignRowsToMarkers();
+
+		// Size swipable area
+		this._el.slider_background.style.width = this.timescale.getPixelWidth() + this.options.width + "px";
+		this._el.slider_background.style.left = -(this.options.width/2) + "px";
+		this._el.slider.style.width = this.timescale.getPixelWidth() + this.options.width + "px";
+
+		// Update Swipable constraint
+		this._swipable.updateConstraint({top: false,bottom: false,left: (this.options.width/2),right: -(this.timescale.getPixelWidth() - (this.options.width/2))});
+
+		// Go to the current slide
+		this.goToId(this.current_id, true);
+	},
+
+	_drawTimeline: function(fast) {
+		this.timescale = this._getTimeScale();
+		this.timeaxis.drawTicks(this.timescale, this.options.optimal_tick_width);
+		this._positionMarkers(fast);
+		this._assignRowsToMarkers();
+		this._createGroups();
+		this._positionGroups();
+
+		if (this.has_eras) {
+
+			this._positionEras(fast);
+		}
+	},
+
+	_updateDrawTimeline: function(check_update) {
+		var do_update = false;
+
+		// Check to see if redraw is needed
+		if (check_update) {
+			/* keep this aligned with _getTimeScale or reduce code duplication */
+			var temp_timescale = new TL.TimeScale(this.config, {
+	            display_width: this._el.container.offsetWidth,
+	            screen_multiplier: this.options.scale_factor,
+	            max_rows: this.max_rows
+
+			});
+
+			if (this.timescale.getMajorScale() == temp_timescale.getMajorScale()
+			 && this.timescale.getMinorScale() == temp_timescale.getMinorScale()) {
+				do_update = true;
+			}
+		} else {
+			do_update = true;
+		}
+
+		// Perform update or redraw
+		if (do_update) {
+			this.timescale = this._getTimeScale();
+			this.timeaxis.positionTicks(this.timescale, this.options.optimal_tick_width);
+			this._positionMarkers();
+			this._assignRowsToMarkers();
+			this._positionGroups();
+			if (this.has_eras) {
+				this._positionEras();
+			}
+			this._updateDisplay();
+		} else {
+			this._drawTimeline(true);
+		}
+
+		return do_update;
+
+	},
+
+
+	/*	Init
+	================================================== */
+	_initLayout: function () {
+		// Create Layout
+		this._el.attribution 				= TL.Dom.create('div', 'tl-attribution', this._el.container);
+		this._el.line						= TL.Dom.create('div', 'tl-timenav-line', this._el.container);
+		this._el.slider						= TL.Dom.create('div', 'tl-timenav-slider', this._el.container);
+		this._el.slider_background			= TL.Dom.create('div', 'tl-timenav-slider-background', this._el.slider);
+		this._el.marker_container_mask		= TL.Dom.create('div', 'tl-timenav-container-mask', this._el.slider);
+		this._el.marker_container			= TL.Dom.create('div', 'tl-timenav-container', this._el.marker_container_mask);
+		this._el.marker_item_container		= TL.Dom.create('div', 'tl-timenav-item-container', this._el.marker_container);
+		this._el.timeaxis 					= TL.Dom.create('div', 'tl-timeaxis', this._el.slider);
+		this._el.timeaxis_background 		= TL.Dom.create('div', 'tl-timeaxis-background', this._el.container);
+
+
+		// Knight Lab Logo
+		this._el.attribution.innerHTML = "<a href='http://timeline.knightlab.com' target='_blank'><span class='tl-knightlab-logo'></span>Timeline JS</a>"
+
+		// Time Axis
+		this.timeaxis = new TL.TimeAxis(this._el.timeaxis, this.options);
+
+		// Swipable
+		this._swipable = new TL.Swipable(this._el.slider_background, this._el.slider, {
+			enable: {x:true, y:false},
+			constraint: {top: false,bottom: false,left: (this.options.width/2),right: false},
+			snap: 	false
+		});
+		this._swipable.enable();
+
+	},
+
+	_initEvents: function () {
+		// Drag Events
+		this._swipable.on('dragmove', this._onDragMove, this);
+
+		// Scroll Events
+		TL.DomEvent.addListener(this._el.container, 'mousewheel', this._onMouseScroll, this);
+		TL.DomEvent.addListener(this._el.container, 'DOMMouseScroll', this._onMouseScroll, this);
+	},
+
+	_initData: function() {
+		// Create Markers and then add them
+		this._createMarkers(this.config.events);
+
+		if (this.config.eras) {
+			this.has_eras = true;
+			this._createEras(this.config.eras);
+		}
+
+		this._drawTimeline();
+
+	}
+
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeScale.js b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeScale.js
new file mode 100644
index 0000000000000000000000000000000000000000..8cc44c9cd5d680569a0f6837fcefde3fdde48ce2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/timenav/TL.TimeScale.js
@@ -0,0 +1,340 @@
+/*  TL.TimeScale
+    Strategies for laying out the timenav
+    make a new one if the slides change
+
+    TODOS: deal with clustering
+================================================== */
+TL.TimeScale = TL.Class.extend({
+
+    initialize: function (timeline_config, options) {
+
+        var slides = timeline_config.events;
+        this._scale = timeline_config.scale;
+
+        options = TL.Util.mergeData({ // establish defaults
+            display_width: 500,
+            screen_multiplier: 3,
+            max_rows: null
+        }, options);
+
+        this._display_width = options.display_width;
+        this._screen_multiplier = options.screen_multiplier;
+        this._pixel_width = this._screen_multiplier * this._display_width;
+
+        this._group_labels = undefined;
+        this._positions = [];
+        this._pixels_per_milli = 0;
+
+        this._earliest = timeline_config.getEarliestDate().getTime();
+        this._latest = timeline_config.getLatestDate().getTime();
+        this._span_in_millis = this._latest - this._earliest;
+        if (this._span_in_millis <= 0) {
+            this._span_in_millis = this._computeDefaultSpan(timeline_config);
+        }
+        this._average = (this._span_in_millis)/slides.length;
+
+        this._pixels_per_milli = this.getPixelWidth() / this._span_in_millis;
+
+        this._axis_helper = TL.AxisHelper.getBestHelper(this);
+
+        this._scaled_padding = (1/this.getPixelsPerTick()) * (this._display_width/2)
+        this._computePositionInfo(slides, options.max_rows);
+    },
+
+    _computeDefaultSpan: function(timeline_config) {
+        // this gets called when all events are at the same instant,
+        // or maybe when the span_in_millis is > 0 but still below a desired threshold
+        // TODO: does this need smarts about eras?
+        if (timeline_config.scale == 'human') {
+            var formats = {}
+            for (var i = 0; i < timeline_config.events.length; i++) {
+                var fmt = timeline_config.events[i].start_date.findBestFormat();
+                formats[fmt] = (formats[fmt]) ? formats[fmt] + 1 : 1;
+            };
+
+            for (var i = TL.Date.SCALES.length - 1; i >= 0; i--) {
+                if (formats.hasOwnProperty(TL.Date.SCALES[i][0])) {
+                    var scale = TL.Date.SCALES[TL.Date.SCALES.length - 1]; // default
+                    if (TL.Date.SCALES[i+1]) {
+                        scale = TL.Date.SCALES[i+1]; // one larger than the largest in our data
+                    }
+                    return scale[1]
+                }
+            };
+            return 365 * 24 * 60 * 60 * 1000; // default to a year?
+        }
+
+        return 200000; // what is the right handling for cosmo dates?
+    },
+    getGroupLabels: function() { /*
+        return an array of objects, one per group, in the order (top to bottom) that the groups are expected to appear. Each object will have two properties:
+            * label (the string as specified in one or more 'group' properties of events in the configuration)
+            * rows (the number of rows occupied by events associated with the label. )
+        */
+        return (this._group_labels || []);
+    },
+
+    getScale: function() {
+        return this._scale;
+    },
+
+    getNumberOfRows: function() {
+        return this._number_of_rows
+    },
+
+    getPixelWidth: function() {
+        return this._pixel_width;
+    },
+
+    getPosition: function(time_in_millis) {
+        // be careful using millis, as they won't scale to cosmological time.
+        // however, we're moving to make the arg to this whatever value
+        // comes from TL.Date.getTime() which could be made smart about that --
+        // so it may just be about the naming.
+        return ( time_in_millis - this._earliest ) * this._pixels_per_milli
+    },
+
+    getPositionInfo: function(idx) {
+        return this._positions[idx];
+    },
+
+    getPixelsPerTick: function() {
+        return this._axis_helper.getPixelsPerTick(this._pixels_per_milli);
+    },
+
+    getTicks: function() {
+        return {
+            major: this._axis_helper.getMajorTicks(this),
+            minor: this._axis_helper.getMinorTicks(this) }
+    },
+
+    getDateFromTime: function(t) {
+        if(this._scale == 'human') {
+            return new TL.Date(t);
+        } else if(this._scale == 'cosmological') {
+            return new TL.BigDate(new TL.BigYear(t));
+        }
+        throw new TL.Error("time_scale_scale_err", this._scale);
+    },
+
+    getMajorScale: function() {
+        return this._axis_helper.major.name;
+    },
+
+    getMinorScale: function() {
+        return this._axis_helper.minor.name;
+    },
+
+    _assessGroups: function(slides) {
+        var groups = [];
+        var empty_group = false;
+        for (var i = 0; i < slides.length; i++) {
+            if(slides[i].group) {
+                if(groups.indexOf(slides[i].group) < 0) {
+                    groups.push(slides[i].group);
+                } else {
+                    empty_group = true;
+                }
+            }
+        };
+        if (groups.length && empty_group) {
+            groups.push('');
+        }
+        return groups;
+    },
+
+    /*  Compute the marker row positions, minimizing the number of
+        overlaps.
+
+        @positions = list of objects from this._positions
+        @rows_left = number of rows available (assume > 0)
+    */
+    _computeRowInfo: function(positions, rows_left) {
+        var lasts_in_row = [];
+        var n_overlaps = 0;
+
+        for (var i = 0; i < positions.length; i++) {
+            var pos_info = positions[i];
+            var overlaps = [];
+
+            // See if we can add item to an existing row without
+            // overlapping the previous item in that row
+            delete pos_info.row;
+
+            for (var j = 0; j < lasts_in_row.length; j++) {
+                overlaps.push(lasts_in_row[j].end - pos_info.start);
+                if(overlaps[j] <= 0) {
+                    pos_info.row = j;
+                    lasts_in_row[j] = pos_info;
+                    break;
+                }
+            }
+
+            // If we couldn't add to an existing row without overlap...
+            if (typeof(pos_info.row) == 'undefined') {
+                if (rows_left === null) {
+                    // Make a new row
+                    pos_info.row = lasts_in_row.length;
+                    lasts_in_row.push(pos_info);
+                } else if (rows_left > 0) {
+                    // Make a new row
+                    pos_info.row = lasts_in_row.length;
+                    lasts_in_row.push(pos_info);
+                    rows_left--;
+                } else {
+                    // Add to existing row with minimum overlap.
+                    var min_overlap = Math.min.apply(null, overlaps);
+                    var idx = overlaps.indexOf(min_overlap);
+                    pos_info.row = idx;
+                    if (pos_info.end > lasts_in_row[idx].end) {
+                        lasts_in_row[idx] = pos_info;
+                    }
+                    n_overlaps++;
+                }
+            }
+        }
+
+        return {n_rows: lasts_in_row.length, n_overlaps: n_overlaps};
+    },
+
+    /*  Compute marker positions.  If using groups, this._number_of_rows
+        will never be less than the number of groups.
+
+        @max_rows = total number of available rows
+        @default_marker_width should be in pixels
+    */
+    _computePositionInfo: function(slides, max_rows, default_marker_width) {
+        default_marker_width = default_marker_width || 100;
+
+        var groups = [];
+        var empty_group = false;
+
+        // Set start/end/width; enumerate groups
+        for (var i = 0; i < slides.length; i++) {
+            var pos_info = {
+                start: this.getPosition(slides[i].start_date.getTime())
+            };
+            this._positions.push(pos_info);
+
+            if (typeof(slides[i].end_date) != 'undefined') {
+                var end_pos = this.getPosition(slides[i].end_date.getTime());
+                pos_info.width = end_pos - pos_info.start;
+                if (pos_info.width > default_marker_width) {
+                    pos_info.end = pos_info.start + pos_info.width;
+                } else {
+                    pos_info.end = pos_info.start + default_marker_width;
+                }
+            } else {
+                pos_info.width = default_marker_width;
+                pos_info.end = pos_info.start + default_marker_width;
+            }
+
+            if(slides[i].group) {
+                if(groups.indexOf(slides[i].group) < 0) {
+                    groups.push(slides[i].group);
+                }
+            } else {
+                empty_group = true;
+            }
+        }
+
+        if(!(groups.length)) {
+            var result = this._computeRowInfo(this._positions, max_rows);
+            this._number_of_rows = result.n_rows;
+        } else {
+            if(empty_group) {
+                groups.push("");
+            }
+
+            // Init group info
+            var group_info = [];
+
+            for(var i = 0; i < groups.length; i++) {
+                group_info[i] = {
+                    label: groups[i],
+                    idx: i,
+                    positions: [],
+                    n_rows: 1,      // default
+                    n_overlaps: 0
+                };
+            }
+
+            for(var i = 0; i < this._positions.length; i++) {
+                var pos_info = this._positions[i];
+
+                pos_info.group = groups.indexOf(slides[i].group || "");
+                pos_info.row = 0;
+
+                var gi = group_info[pos_info.group];
+                for(var j = gi.positions.length - 1; j >= 0; j--) {
+                    if(gi.positions[j].end > pos_info.start) {
+                        gi.n_overlaps++;
+                    }
+                }
+
+                gi.positions.push(pos_info);
+            }
+
+            var n_rows = groups.length; // start with 1 row per group
+
+            while(true) {
+                // Count free rows available
+                var rows_left = Math.max(0, max_rows - n_rows);
+                if(!rows_left) {
+                    break;  // no free rows, nothing to do
+                }
+
+                // Sort by # overlaps, idx
+               group_info.sort(function(a, b) {
+                    if(a.n_overlaps > b.n_overlaps) {
+                        return -1;
+                    } else if(a.n_overlaps < b.n_overlaps) {
+                        return 1;
+                    }
+                    return a.idx - b.idx;
+                });
+                if(!group_info[0].n_overlaps) {
+                    break; // no overlaps, nothing to do
+                }
+
+                // Distribute free rows among groups with overlaps
+                var n_rows = 0;
+                for(var i = 0; i < group_info.length; i++) {
+                    var gi = group_info[i];
+
+                    if(gi.n_overlaps && rows_left) {
+                        var res = this._computeRowInfo(gi.positions,  gi.n_rows + 1);
+                        gi.n_rows = res.n_rows;     // update group info
+                        gi.n_overlaps = res.n_overlaps;
+                        rows_left--;                // update rows left
+                    }
+
+                    n_rows += gi.n_rows;            // update rows used
+                }
+            }
+
+            // Set number of rows
+            this._number_of_rows = n_rows;
+
+            // Set group labels; offset row positions
+            this._group_labels = [];
+
+            group_info.sort(function(a, b) {return a.idx - b.idx; });
+
+            for(var i = 0, row_offset = 0; i < group_info.length; i++) {
+                this._group_labels.push({
+                    label: group_info[i].label,
+                    rows: group_info[i].n_rows
+                });
+
+                for(var j = 0; j < group_info[i].positions.length; j++) {
+                    var pos_info = group_info[i].positions[j];
+                    pos_info.row += row_offset;
+                }
+
+                row_offset += group_info[i].n_rows;
+            }
+        }
+
+    }
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Draggable.js b/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Draggable.js
new file mode 100644
index 0000000000000000000000000000000000000000..15126f66c2b0f21fa86d16bee510b26a8c1801ae
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Draggable.js
@@ -0,0 +1,319 @@
+/*	TL.Draggable
+	TL.Draggable allows you to add dragging capabilities to any element. Supports mobile devices too.
+	TODO Enable constraints
+================================================== */
+
+TL.Draggable = TL.Class.extend({
+	
+	includes: TL.Events,
+	
+	_el: {},
+	
+	mousedrag: {
+		down:		"mousedown",
+		up:			"mouseup",
+		leave:		"mouseleave",
+		move:		"mousemove"
+	},
+	
+	touchdrag: {
+		down:		"touchstart",
+		up:			"touchend",
+		leave:		"mouseleave",
+		move:		"touchmove"
+	},
+
+	initialize: function (drag_elem, options, move_elem) {
+		
+		// DOM ELements 
+		this._el = {
+			drag: drag_elem,
+			move: drag_elem
+		};
+		
+		if (move_elem) {
+			this._el.move = move_elem;
+		}
+		
+		
+		//Options
+		this.options = {
+			enable:	{
+				x: true,
+				y: true
+			},
+			constraint: {
+				top: false,
+				bottom: false,
+				left: false,
+				right: false
+			},
+			momentum_multiplier: 	2000,
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint
+		};
+		
+		
+		// Animation Object
+		this.animator = null;
+		
+		// Drag Event Type
+		this.dragevent = this.mousedrag;
+		
+		if (TL.Browser.touch) {
+			this.dragevent = this.touchdrag;
+		}
+		
+		// Draggable Data
+		this.data = {
+			sliding:		false,
+			direction: 		"none",
+			pagex: {
+				start:		0,
+				end:		0
+			},
+			pagey: {
+				start:		0,
+				end:		0
+			},
+			pos: {
+				start: {
+					x: 0,
+					y:0
+				},
+				end: {
+					x: 0,
+					y:0
+				}
+			},
+			new_pos: {
+				x: 0,
+				y: 0
+			},
+			new_pos_parent: {
+				x: 0,
+				y: 0
+			},
+			time: {
+				start:		0,
+				end:		0
+			},
+			touch:			false
+		};
+		
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		
+		
+	},
+	
+	enable: function(e) {
+		
+		this.data.pos.start = 0; 
+		this._el.move.style.left = this.data.pos.start.x + "px";
+		this._el.move.style.top = this.data.pos.start.y + "px";
+		this._el.move.style.position = "absolute";
+	},
+	
+	disable: function() {
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
+	},
+	
+	stopMomentum: function() {
+		if (this.animator) {
+			this.animator.stop();
+		}
+
+	},
+	
+	updateConstraint: function(c) {
+		this.options.constraint = c;
+		
+	},
+	
+	/*	Private Methods
+	================================================== */
+	_onDragStart: function(e) {
+		if (TL.Browser.touch) {
+			if (e.originalEvent) {
+				this.data.pagex.start = e.originalEvent.touches[0].screenX;
+				this.data.pagey.start = e.originalEvent.touches[0].screenY;
+			} else {
+				this.data.pagex.start = e.targetTouches[0].screenX;
+				this.data.pagey.start = e.targetTouches[0].screenY;
+			}
+		} else {
+			this.data.pagex.start = e.pageX;
+			this.data.pagey.start = e.pageY;
+		}
+		
+		// Center element to finger or mouse
+		if (this.options.enable.x) {
+			this._el.move.style.left = this.data.pagex.start - (this._el.move.offsetWidth / 2) + "px";
+		}
+		
+		if (this.options.enable.y) {
+			this._el.move.style.top = this.data.pagey.start - (this._el.move.offsetHeight / 2) + "px";
+		}
+		
+		this.data.pos.start = TL.Dom.getPosition(this._el.drag);
+		this.data.time.start = new Date().getTime();
+		
+		this.fire("dragstart", this.data);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
+	},
+	
+	_onDragEnd: function(e) {
+		this.data.sliding = false;
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
+		this.fire("dragend", this.data);
+		
+		//  momentum
+		this._momentum();
+	},
+	
+	_onDragMove: function(e) {
+		e.preventDefault();
+		this.data.sliding = true;
+		
+		if (TL.Browser.touch) {
+			if (e.originalEvent) {
+				this.data.pagex.end = e.originalEvent.touches[0].screenX;
+				this.data.pagey.end = e.originalEvent.touches[0].screenY;
+			} else {
+				this.data.pagex.end = e.targetTouches[0].screenX;
+				this.data.pagey.end = e.targetTouches[0].screenY;
+			}
+
+		} else {
+			this.data.pagex.end = e.pageX;
+			this.data.pagey.end = e.pageY;
+		}
+		
+		this.data.pos.end = TL.Dom.getPosition(this._el.drag);
+		this.data.new_pos.x = -(this.data.pagex.start - this.data.pagex.end - this.data.pos.start.x);
+		this.data.new_pos.y = -(this.data.pagey.start - this.data.pagey.end - this.data.pos.start.y );
+		
+		if (this.options.enable.x) {
+			this._el.move.style.left = this.data.new_pos.x + "px";
+		}
+		
+		if (this.options.enable.y) {
+			this._el.move.style.top = this.data.new_pos.y + "px";
+		}
+		
+		this.fire("dragmove", this.data);
+	},
+	
+	_momentum: function() {
+		var pos_adjust = {
+				x: 0,
+				y: 0,
+				time: 0
+			},
+			pos_change = {
+				x: 0,
+				y: 0,
+				time: 0
+			},
+			swipe = false,
+			swipe_direction = "";
+		
+		
+		if (TL.Browser.touch) {
+			// Treat mobile multiplier differently
+			//this.options.momentum_multiplier = this.options.momentum_multiplier * 2;
+		}
+		
+		pos_adjust.time = (new Date().getTime() - this.data.time.start) * 10;
+		pos_change.time = (new Date().getTime() - this.data.time.start) * 10;
+		
+		pos_change.x = this.options.momentum_multiplier * (Math.abs(this.data.pagex.end) - Math.abs(this.data.pagex.start));
+		pos_change.y = this.options.momentum_multiplier * (Math.abs(this.data.pagey.end) - Math.abs(this.data.pagey.start));
+		
+		pos_adjust.x = Math.round(pos_change.x / pos_change.time);
+		pos_adjust.y = Math.round(pos_change.y / pos_change.time);
+		
+		this.data.new_pos.x = Math.min(this.data.pos.end.x + pos_adjust.x);
+		this.data.new_pos.y = Math.min(this.data.pos.end.y + pos_adjust.y);
+
+		
+		if (!this.options.enable.x) {
+			this.data.new_pos.x = this.data.pos.start.x;
+		} else if (this.data.new_pos.x < 0) {
+			this.data.new_pos.x = 0;
+		}
+		
+		if (!this.options.enable.y) {
+			this.data.new_pos.y = this.data.pos.start.y;
+		} else if (this.data.new_pos.y < 0) {
+			this.data.new_pos.y = 0;
+		}
+		
+		// Detect Swipe
+		if (pos_change.time < 3000) {
+			swipe = true;
+		}
+		
+		// Detect Direction
+		if (Math.abs(pos_change.x) > 10000) {
+			this.data.direction = "left";
+			if (pos_change.x > 0) {
+				this.data.direction = "right";
+			}
+		}
+		// Detect Swipe
+		if (Math.abs(pos_change.y) > 10000) {
+			this.data.direction = "up";
+			if (pos_change.y > 0) {
+				this.data.direction = "down";
+			}
+		}
+		this._animateMomentum();
+		if (swipe) {
+			this.fire("swipe_" + this.data.direction, this.data);
+		}
+		
+	},
+	
+	
+	_animateMomentum: function() {
+		var pos = {
+				x: this.data.new_pos.x,
+				y: this.data.new_pos.y
+			},
+			animate = {
+				duration: 	this.options.duration,
+				easing: 	TL.Ease.easeOutStrong
+			};
+		
+		if (this.options.enable.y) {
+			if (this.options.constraint.top || this.options.constraint.bottom) {
+				if (pos.y > this.options.constraint.bottom) {
+					pos.y = this.options.constraint.bottom;
+				} else if (pos.y < this.options.constraint.top) {
+					pos.y = this.options.constraint.top;
+				}
+			}
+			animate.top = Math.floor(pos.y) + "px";
+		}
+		
+		if (this.options.enable.x) {
+			if (this.options.constraint.left || this.options.constraint.right) {
+				if (pos.x > this.options.constraint.left) {
+					pos.x = this.options.constraint.left;
+				} else if (pos.x < this.options.constraint.right) {
+					pos.x = this.options.constraint.right;
+				}
+			}
+			animate.left = Math.floor(pos.x) + "px";
+		}
+		
+		this.animator = TL.Animate(this._el.move, animate);
+		
+		this.fire("momentum", this.data);
+	}
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.MenuBar.js b/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.MenuBar.js
new file mode 100644
index 0000000000000000000000000000000000000000..08699ae8adc7483a7dbb4a637ac80dea1115f146
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.MenuBar.js
@@ -0,0 +1,174 @@
+/*	TL.MenuBar
+	Draggable component to control size
+================================================== */
+
+TL.MenuBar = TL.Class.extend({
+
+	includes: [TL.Events, TL.DomMixins],
+
+	_el: {},
+
+	/*	Constructor
+	================================================== */
+	initialize: function(elem, parent_elem, options) {
+		// DOM ELEMENTS
+		this._el = {
+			parent: {},
+			container: {},
+			button_backtostart: {},
+			button_zoomin: {},
+			button_zoomout: {},
+			arrow: {},
+			line: {},
+			coverbar: {},
+			grip: {}
+		};
+
+		this.collapsed = false;
+
+		if (typeof elem === 'object') {
+			this._el.container = elem;
+		} else {
+			this._el.container = TL.Dom.get(elem);
+		}
+
+		if (parent_elem) {
+			this._el.parent = parent_elem;
+		}
+
+		//Options
+		this.options = {
+			width: 					600,
+			height: 				600,
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint,
+			menubar_default_y: 		0
+		};
+
+		// Animation
+		this.animator = {};
+
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+
+		this._initLayout();
+		this._initEvents();
+	},
+
+	/*	Public
+	================================================== */
+	show: function(d) {
+
+		var duration = this.options.duration;
+		if (d) {
+			duration = d;
+		}
+		/*
+		this.animator = TL.Animate(this._el.container, {
+			top: 		this.options.menubar_default_y + "px",
+			duration: 	duration,
+			easing: 	TL.Ease.easeOutStrong
+		});
+		*/
+	},
+
+	hide: function(top) {
+		/*
+		this.animator = TL.Animate(this._el.container, {
+			top: 		top,
+			duration: 	this.options.duration,
+			easing: 	TL.Ease.easeOutStrong
+		});
+		*/
+	},
+
+	toogleZoomIn: function(show) {
+		if (show) {
+      TL.DomUtil.removeClass(this._el.button_zoomin,'tl-menubar-button-inactive');
+		} else {
+      TL.DomUtil.addClass(this._el.button_zoomin,'tl-menubar-button-inactive');
+		}
+	},
+
+	toogleZoomOut: function(show) {
+		if (show) {
+      TL.DomUtil.removeClass(this._el.button_zoomout,'tl-menubar-button-inactive');
+		} else {
+      TL.DomUtil.addClass(this._el.button_zoomout,'tl-menubar-button-inactive');
+		}
+	},
+
+	setSticky: function(y) {
+		this.options.menubar_default_y = y;
+	},
+
+	/*	Color
+	================================================== */
+	setColor: function(inverted) {
+		if (inverted) {
+			this._el.container.className = 'tl-menubar tl-menubar-inverted';
+		} else {
+			this._el.container.className = 'tl-menubar';
+		}
+	},
+
+	/*	Update Display
+	================================================== */
+	updateDisplay: function(w, h, a, l) {
+		this._updateDisplay(w, h, a, l);
+	},
+
+
+	/*	Events
+	================================================== */
+	_onButtonZoomIn: function(e) {
+		this.fire("zoom_in", e);
+	},
+
+	_onButtonZoomOut: function(e) {
+		this.fire("zoom_out", e);
+	},
+
+	_onButtonBackToStart: function(e) {
+		this.fire("back_to_start", e);
+	},
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+
+		// Create Layout
+		this._el.button_zoomin 							= TL.Dom.create('span', 'tl-menubar-button', this._el.container);
+		this._el.button_zoomout 						= TL.Dom.create('span', 'tl-menubar-button', this._el.container);
+		this._el.button_backtostart 					= TL.Dom.create('span', 'tl-menubar-button', this._el.container);
+
+		if (TL.Browser.mobile) {
+			this._el.container.setAttribute("ontouchstart"," ");
+		}
+
+		this._el.button_backtostart.innerHTML		= "<span class='tl-icon-goback'></span>";
+		this._el.button_zoomin.innerHTML			= "<span class='tl-icon-zoom-in'></span>";
+		this._el.button_zoomout.innerHTML			= "<span class='tl-icon-zoom-out'></span>";
+
+
+	},
+
+	_initEvents: function () {
+		TL.DomEvent.addListener(this._el.button_backtostart, 'click', this._onButtonBackToStart, this);
+		TL.DomEvent.addListener(this._el.button_zoomin, 'click', this._onButtonZoomIn, this);
+		TL.DomEvent.addListener(this._el.button_zoomout, 'click', this._onButtonZoomOut, this);
+	},
+
+	// Update Display
+	_updateDisplay: function(width, height, animate) {
+
+		if (width) {
+			this.options.width = width;
+		}
+		if (height) {
+			this.options.height = height;
+		}
+	}
+
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Message.js b/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Message.js
new file mode 100644
index 0000000000000000000000000000000000000000..8e0bd3c11139f4068d59344d72d07353253b3760
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Message.js
@@ -0,0 +1,115 @@
+/*	TL.Message
+	
+================================================== */
+ 
+TL.Message = TL.Class.extend({
+	
+	includes: [TL.Events, TL.DomMixins, TL.I18NMixins],
+	
+	_el: {},
+	
+	/*	Constructor
+	================================================== */
+	initialize: function(data, options, add_to_container) {
+		// DOM ELEMENTS
+		this._el = {
+			parent: {},
+			container: {},
+			message_container: {},
+			loading_icon: {},
+			message: {}
+		};
+	
+		//Options
+		this.options = {
+			width: 					600,
+			height: 				600,
+			message_class: 			"tl-message",
+			message_icon_class: 	"tl-loading-icon"
+		};
+		
+		this._add_to_container = add_to_container || {}; // save ref
+		
+		// Merge Data and Options
+		TL.Util.mergeData(this.data, data);
+		TL.Util.mergeData(this.options, options);
+		
+		this._el.container = TL.Dom.create("div", this.options.message_class);
+		
+		if (add_to_container) {
+			add_to_container.appendChild(this._el.container);
+			this._el.parent = add_to_container;
+		}
+		
+		// Animation
+		this.animator = {};
+				
+		this._initLayout();
+		this._initEvents();
+	},
+	
+	/*	Public
+	================================================== */
+	updateMessage: function(t) {
+		this._updateMessage(t);
+	},
+	
+	
+	/*	Update Display
+	================================================== */
+	updateDisplay: function(w, h) {
+		this._updateDisplay(w, h);
+	},
+	
+	_updateMessage: function(t) {
+		if (!t) {
+			this._el.message.innerHTML = this._('loading');
+		} else {
+			this._el.message.innerHTML = t;
+		}
+		
+		// Re-add to DOM?
+		if(!this._el.parent.atrributes && this._add_to_container.attributes) {
+		    this._add_to_container.appendChild(this._el.container);
+		    this._el.parent = this._add_to_container;
+		}
+	},
+	
+
+	/*	Events
+	================================================== */
+
+	
+	_onMouseClick: function() {
+		this.fire("clicked", this.options);
+	},
+	
+	_onRemove: function() {
+	    this._el.parent = {};
+	},
+
+
+	/*	Private Methods
+	================================================== */
+	_initLayout: function () {
+		
+		// Create Layout
+		this._el.message_container = TL.Dom.create("div", "tl-message-container", this._el.container);
+		this._el.loading_icon = TL.Dom.create("div", this.options.message_icon_class, this._el.message_container);
+		this._el.message = TL.Dom.create("div", "tl-message-content", this._el.message_container);
+		
+		this._updateMessage();
+		
+	},
+	
+	_initEvents: function () {
+		TL.DomEvent.addListener(this._el.container, 'click', this._onMouseClick, this);
+		TL.DomEvent.addListener(this, 'removed', this._onRemove, this);
+	},
+	
+	// Update Display
+	_updateDisplay: function(width, height, animate) {
+		
+	}
+	
+});
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Swipable.js b/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Swipable.js
new file mode 100644
index 0000000000000000000000000000000000000000..afa35607ad9b14802430f674ba6e7455a76d4742
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/js/ui/TL.Swipable.js
@@ -0,0 +1,393 @@
+/*	TL.Swipable
+	TL.Draggable allows you to add dragging capabilities to any element. Supports mobile devices too.
+	TODO Enable constraints
+================================================== */
+
+TL.Swipable = TL.Class.extend({
+	
+	includes: TL.Events,
+	
+	_el: {},
+	
+	mousedrag: {
+		down:		"mousedown",
+		up:			"mouseup",
+		leave:		"mouseleave",
+		move:		"mousemove"
+	},
+	
+	touchdrag: {
+		down:		"touchstart",
+		up:			"touchend",
+		leave:		"mouseleave",
+		move:		"touchmove"
+	},
+
+	initialize: function (drag_elem, move_elem, options) {
+		
+		// DOM ELements 
+		this._el = {
+			drag: drag_elem,
+			move: drag_elem
+		};
+		
+		if (move_elem) {
+			this._el.move = move_elem;
+		}
+		
+		
+		//Options
+		this.options = {
+			snap: false,
+			enable:	{
+				x: true,
+				y: true
+			},
+			constraint: {
+				top: false,
+				bottom: false,
+				left: 0,
+				right: false
+			},
+			momentum_multiplier: 	2000,
+			duration: 				1000,
+			ease: 					TL.Ease.easeInOutQuint
+		};
+		
+		
+		// Animation Object
+		this.animator = null;
+		
+		// Drag Event Type
+		this.dragevent = this.mousedrag;
+		
+		if (TL.Browser.touch) {
+			this.dragevent = this.touchdrag;
+		}
+		
+		// Draggable Data
+		this.data = {
+			sliding:		false,
+			direction: 		"none",
+			pagex: {
+				start:		0,
+				end:		0
+			},
+			pagey: {
+				start:		0,
+				end:		0
+			},
+			pos: {
+				start: {
+					x: 0,
+					y:0
+				},
+				end: {
+					x: 0,
+					y:0
+				}
+			},
+			new_pos: {
+				x: 0,
+				y: 0
+			},
+			new_pos_parent: {
+				x: 0,
+				y: 0
+			},
+			time: {
+				start:		0,
+				end:		0
+			},
+			touch:			false
+		};
+		
+		// Merge Data and Options
+		TL.Util.mergeData(this.options, options);
+		
+		
+	},
+	
+	enable: function(e) {
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
+		
+		this.data.pos.start = 0; //TL.Dom.getPosition(this._el.move);
+		this._el.move.style.left = this.data.pos.start.x + "px";
+		this._el.move.style.top = this.data.pos.start.y + "px";
+		this._el.move.style.position = "absolute";
+		//this._el.move.style.zIndex = "11";
+		//this._el.move.style.cursor = "move";
+	},
+	
+	disable: function() {
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.down, this._onDragStart, this);
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.up, this._onDragEnd, this);
+	},
+	
+	stopMomentum: function() {
+		if (this.animator) {
+			this.animator.stop();
+		}
+
+	},
+	
+	updateConstraint: function(c) {
+		this.options.constraint = c;
+		
+		// Temporary until issues are fixed
+		
+	},
+	
+	/*	Private Methods
+	================================================== */
+	_onDragStart: function(e) {
+		
+		if (this.animator) {
+			this.animator.stop();
+		}
+		
+		if (TL.Browser.touch) {
+			if (e.originalEvent) {
+				this.data.pagex.start = e.originalEvent.touches[0].screenX;
+				this.data.pagey.start = e.originalEvent.touches[0].screenY;
+			} else {
+				this.data.pagex.start = e.targetTouches[0].screenX;
+				this.data.pagey.start = e.targetTouches[0].screenY;
+			}
+		} else {
+			this.data.pagex.start = e.pageX;
+			this.data.pagey.start = e.pageY;
+		}
+		
+		// Center element to finger or mouse
+		if (this.options.enable.x) {
+			//this._el.move.style.left = this.data.pagex.start - (this._el.move.offsetWidth / 2) + "px";
+		}
+		
+		if (this.options.enable.y) {
+			//this._el.move.style.top = this.data.pagey.start - (this._el.move.offsetHeight / 2) + "px";
+		}
+		
+		this.data.pos.start = {x:this._el.move.offsetLeft, y:this._el.move.offsetTop};
+		
+		
+		this.data.time.start 			= new Date().getTime();
+		
+		this.fire("dragstart", this.data);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
+		TL.DomEvent.addListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
+	},
+	
+	_onDragEnd: function(e) {
+		this.data.sliding = false;
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.move, this._onDragMove, this);
+		TL.DomEvent.removeListener(this._el.drag, this.dragevent.leave, this._onDragEnd, this);
+		this.fire("dragend", this.data);
+		
+		//  momentum
+		this._momentum();
+	},
+	
+	_onDragMove: function(e) {
+		var change = {
+			x:0,
+			y:0
+		}
+		//e.preventDefault();
+		this.data.sliding = true;
+		
+		if (TL.Browser.touch) {
+			if (e.originalEvent) {
+				this.data.pagex.end = e.originalEvent.touches[0].screenX;
+				this.data.pagey.end = e.originalEvent.touches[0].screenY;
+			} else {
+				this.data.pagex.end = e.targetTouches[0].screenX;
+				this.data.pagey.end = e.targetTouches[0].screenY;
+			}
+
+		} else {
+			this.data.pagex.end = e.pageX;
+			this.data.pagey.end = e.pageY;
+		}
+		
+		change.x = this.data.pagex.start - this.data.pagex.end;
+		change.y = this.data.pagey.start - this.data.pagey.end;
+		
+		this.data.pos.end = {x:this._el.drag.offsetLeft, y:this._el.drag.offsetTop};
+		
+		this.data.new_pos.x = -(change.x - this.data.pos.start.x);
+		this.data.new_pos.y = -(change.y - this.data.pos.start.y );
+		
+		if (this.options.enable.x && ( Math.abs(change.x) > Math.abs(change.y) ) ) {
+			e.preventDefault();
+			this._el.move.style.left = this.data.new_pos.x + "px";
+		}
+		
+		if (this.options.enable.y && ( Math.abs(change.y) > Math.abs(change.y) ) ) {
+			e.preventDefault();
+			this._el.move.style.top = this.data.new_pos.y + "px";
+		}
+		
+		this.fire("dragmove", this.data);
+	},
+	
+	_momentum: function() {
+		var pos_adjust = {
+				x: 0,
+				y: 0,
+				time: 0
+			},
+			pos_change = {
+				x: 0,
+				y: 0,
+				time: 0
+			},
+			swipe_detect = {
+				x: false,
+				y: false
+			},
+			swipe = false,
+			swipe_direction = "";
+		
+		
+		this.data.direction = null;
+		
+		pos_adjust.time = (new Date().getTime() - this.data.time.start) * 10;
+		pos_change.time = (new Date().getTime() - this.data.time.start) * 10;
+		
+		pos_change.x = this.options.momentum_multiplier * (Math.abs(this.data.pagex.end) - Math.abs(this.data.pagex.start));
+		pos_change.y = this.options.momentum_multiplier * (Math.abs(this.data.pagey.end) - Math.abs(this.data.pagey.start));
+		
+		pos_adjust.x = Math.round(pos_change.x / pos_change.time);
+		pos_adjust.y = Math.round(pos_change.y / pos_change.time);
+		
+		this.data.new_pos.x = Math.min(this.data.new_pos.x + pos_adjust.x);
+		this.data.new_pos.y = Math.min(this.data.new_pos.y + pos_adjust.y);
+		
+		if (!this.options.enable.x) {
+			this.data.new_pos.x = this.data.pos.start.x;
+		} else if (this.options.constraint.left && this.data.new_pos.x > this.options.constraint.left) {
+			this.data.new_pos.x = this.options.constraint.left;
+		}
+		
+		if (!this.options.enable.y) {
+			this.data.new_pos.y = this.data.pos.start.y;
+		} else if (this.data.new_pos.y < 0) {
+			this.data.new_pos.y = 0;
+		}
+		
+		// Detect Swipe
+		if (pos_change.time < 2000) {
+			swipe = true;
+		}
+		
+		
+		if (this.options.enable.x && this.options.enable.y) {
+			if (Math.abs(pos_change.x) > Math.abs(pos_change.y)) {
+				swipe_detect.x = true;
+			} else {
+				swipe_detect.y = true;
+			}
+		} else if (this.options.enable.x) {
+			if (Math.abs(pos_change.x) > Math.abs(pos_change.y)) {
+				swipe_detect.x = true;
+			}
+		} else {
+			if (Math.abs(pos_change.y) > Math.abs(pos_change.x)) {
+				swipe_detect.y = true;
+			}
+		}
+		
+		// Detect Direction and long swipe
+		if (swipe_detect.x) {
+			
+			// Long Swipe
+			if (Math.abs(pos_change.x) > (this._el.drag.offsetWidth/2)) {
+				swipe = true;
+			}
+			
+			if (Math.abs(pos_change.x) > 10000) {
+				this.data.direction = "left";
+				if (pos_change.x > 0) {
+					this.data.direction = "right";
+				}
+			}
+		}
+		
+		if (swipe_detect.y) {
+			
+			// Long Swipe
+			if (Math.abs(pos_change.y) > (this._el.drag.offsetHeight/2)) {
+				swipe = true;
+			}
+			
+			if (Math.abs(pos_change.y) > 10000) {
+				this.data.direction = "up";
+				if (pos_change.y > 0) {
+					this.data.direction = "down";
+				}
+			}
+		}
+		
+		if (pos_change.time < 1000 ) {
+			
+		} else {
+			this._animateMomentum();
+		}
+		
+		if (swipe && this.data.direction) {
+			this.fire("swipe_" + this.data.direction, this.data);
+		} else if (this.data.direction) {
+			this.fire("swipe_nodirection", this.data);
+		} else if (this.options.snap) {
+			this.animator.stop();
+			
+			this.animator = TL.Animate(this._el.move, {
+				top: 		this.data.pos.start.y,
+				left: 		this.data.pos.start.x,
+				duration: 	this.options.duration,
+				easing: 	TL.Ease.easeOutStrong
+			});
+		}
+		
+	},
+	
+	
+	_animateMomentum: function() {
+		var pos = {
+				x: this.data.new_pos.x,
+				y: this.data.new_pos.y
+			},
+			animate = {
+				duration: 	this.options.duration,
+				easing: 	TL.Ease.easeOutStrong
+			};
+		
+		if (this.options.enable.y) {
+			if (this.options.constraint.top || this.options.constraint.bottom) {
+				if (pos.y > this.options.constraint.bottom) {
+					pos.y = this.options.constraint.bottom;
+				} else if (pos.y < this.options.constraint.top) {
+					pos.y = this.options.constraint.top;
+				}
+			}
+			animate.top = Math.floor(pos.y) + "px";
+		}
+		
+		if (this.options.enable.x) {
+			if (this.options.constraint.left && pos.x >= this.options.constraint.left) {
+				pos.x = this.options.constraint.left;
+			}
+			if (this.options.constraint.right && pos.x < this.options.constraint.right) {
+				pos.x = this.options.constraint.right;
+			}
+
+			animate.left = Math.floor(pos.x) + "px";
+		}
+		
+		this.animator = TL.Animate(this._el.move, animate);
+		
+		this.fire("momentum", this.data);
+	}
+});
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/TL.Timeline.Base.less b/public/opac/TimelineJS3-3.5.1/source/less/TL.Timeline.Base.less
new file mode 100644
index 0000000000000000000000000000000000000000..29355107dd01c8408de01ddf4f42d939ab7b9f30
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/TL.Timeline.Base.less
@@ -0,0 +1,122 @@
+/*!
+	Timeline JS 3
+
+	Designed and built by Zach Wise for the Northwestern University Knight Lab
+
+	This Source Code Form is subject to the terms of the Mozilla Public
+	License, v. 2.0. If a copy of the MPL was not distributed with this
+	file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
+*/
+
+/* Includes
+================================================== */
+
+@import "core/Mixins.less"; 		// Less shortcuts and functions
+@import "core/Reset.less"; 			// CSS Reset
+@import "Typography.less";
+
+// Icons
+@import "icons/Icons.less";
+
+//	TL
+@import "core/TL.less";
+
+//	Components
+@import "ui/TL.MenuBar.less";
+@import "ui/TL.MenuBar.Button.less";
+@import "ui/TL.Message.less";
+
+@import "timenav/TL.TimeNav.less";
+@import "timenav/TL.TimeMarker.less";
+@import "timenav/TL.TimeEra.less";
+@import "timenav/TL.TimeGroup.less";
+@import "timenav/TL.TimeAxis.less";
+
+@import "animation/TL.Animate.less";
+
+@import "slider/TL.Slide.less";
+@import "slider/TL.SlideNav.less";
+@import "slider/TL.StorySlider.less";
+
+@import "media/TL.Media.less";
+@import "media/types/TL.Media.Text.less";
+@import "media/types/TL.Media.Image.less";
+@import "media/types/TL.Media.Twitter.less";
+@import "media/types/TL.Media.Blockquote.less";
+@import "media/types/TL.Media.Flickr.less";
+@import "media/types/TL.Media.Instagram.less";
+@import "media/types/TL.Media.Profile.less";
+@import "media/types/TL.Media.YouTube.less";
+@import "media/types/TL.Media.IFrame.less";
+@import "media/types/TL.Media.Wikipedia.less";
+@import "media/types/TL.Media.Website.less";
+
+/* Timeline
+================================================== */
+
+.tl-timeline {
+	width:100%;
+	height:100%;
+	font-size: 16px;
+	line-height: normal;
+	overflow:hidden;
+	position: relative;
+	.user-select(none);
+	background-color:@color-background;
+	color:@color-text;
+	-webkit-box-sizing: content-box;
+	-moz-box-sizing: content-box;
+	box-sizing: content-box;
+
+	&.tl-timeline-embed {
+		box-sizing:border-box;
+		border-top: 1px solid darken(@ui-background-color-darker, 10);
+		border-bottom: 1px solid darken(@ui-background-color-darker, 10);
+		border-radius: 0;
+	}
+
+	&.tl-timeline-full-embed {
+		box-sizing:border-box;
+		border: 1px solid darken(@ui-background-color-darker, 10);
+		border-radius: 8px;
+	}
+}
+
+/* Portrait
+================================================== */
+.tl-layout-portrait {
+	.tl-storyslider {
+		//padding-top:10px;
+		.box-shadow(0px -3px 6px rgba(0,0,0,.20));
+	}
+}
+
+.tl-rtl{
+	.tl-text-content, .tl-headline, .tl-media-blockquote, .tl-headline-date, .tl-timeline blockquote p, .tl-media-website, .tl-media-wikipedia, .tl-media .tl-media-blockquote blockquote, .blockquote, blockquote p, .tl-text-content p{
+		text-align: right;
+	}
+
+	.tl-slide-media-only{
+		.tl-headline, .tl-headline-date{
+			text-align: center;
+		}
+	}
+
+	.tl-timemarker-text{
+		margin-right: 35px;
+	}
+
+	.tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container{
+		float:right;
+	}
+
+	.tl-caption {
+		text-align: right;
+	}
+
+	.tl-credit {
+		text-align: left;
+	}
+
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/TL.Timeline.less b/public/opac/TimelineJS3-3.5.1/source/less/TL.Timeline.less
new file mode 100644
index 0000000000000000000000000000000000000000..23b5b204bca603dcbce80ad36eae924f3db47391
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/TL.Timeline.less
@@ -0,0 +1,16 @@
+/*!
+	Timeline JS 3 
+	
+	Designed and built by Zach Wise for the Northwestern University Knight Lab
+	
+	This Source Code Form is subject to the terms of the Mozilla Public
+	License, v. 2.0. If a copy of the MPL was not distributed with this
+	file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
+*/
+
+/* Includes 
+================================================== */
+@import "Variables.less"; 			// Variables (easy way to make style changes) 
+
+@import "TL.Timeline.Base.less"; 		// Base Less File
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/Typography.less b/public/opac/TimelineJS3-3.5.1/source/less/Typography.less
new file mode 100644
index 0000000000000000000000000000000000000000..ac0235593a1b4c32b0cc896060f90c8dc9287224
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/Typography.less
@@ -0,0 +1,307 @@
+.tl-timeline {
+	font-family: @font-main;
+	
+	h1, h2, h3, h4, h5, h6 {
+		color:@color-header-text;
+	}
+	
+	h1, h2, h3 {
+		font-size: @base-font-size-xlarge;
+		line-height:@base-font-size-xlarge;
+		small {
+			font-size: 		@base-font-size-large;
+			line-height:	@base-font-size-large;
+		}
+	}
+	h4, h5, h6 {
+		font-size: @base-font-size-large;
+		line-height:@base-font-size-large;
+		margin-bottom:0px;
+		small {
+			font-size: @base-font-size;
+			line-height:@base-font-size;
+		}
+	}
+	h2.tl-headline-title {
+		font-size: @base-font-size-xlarge + 10;
+		line-height: @base-font-size-xlarge + 10;
+		small {
+			display:block;
+			margin-top:5px;
+			font-size: @base-font-size-large;
+			line-height:@base-font-size-large;
+		}
+	}
+	
+	h2 {
+		margin-top:20px;
+		margin-bottom:5px;
+	}
+	
+	p {
+		margin-top:5px;
+		margin-bottom:10px;
+		font-size: @base-font-size;
+		line-height:@base-line-height;
+		//font-family: @font-secondary;
+		color: lighten(@color-dark, 40%);
+		&.lead {
+			font-size: @base-font-size-large;
+		}
+		a {
+			/*
+			color: lighten(@color-dark, 40%);
+			text-decoration: none;
+			background-image: -moz-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);
+			background-image: -webkit-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);
+			background-image: -o-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);
+			background-image: linear-gradient(to bottom, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);
+			background-repeat: repeat-x;
+			background-size: 2px 2px;
+			background-position: 0 @base-font-size+2;
+			text-shadow: -2px -1px 0 white, 2px -1px 0 white, -2px 1px 0 white, 2px 1px 0 white;
+			&:hover,
+			&:focus {
+				color:@color-theme;
+				text-decoration: none;
+			}
+			*/
+			color: lighten(@color-dark, 40%);
+			text-decoration: underline;
+			&:hover,
+			&:focus {
+				color:@color-theme;
+				//text-decoration: none;
+			}
+		}
+		
+		
+		@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
+			a {
+				text-decoration: underline;
+				background-image:none;
+				text-shadow: none;
+				&:hover,
+				&:focus {
+					color:@color-theme;
+					text-decoration: underline;
+				}
+			}
+		}
+
+		
+		
+	}
+	b, strong {
+		font-weight: bold;
+		//color: @color-dark;
+	}
+	i, em {
+		font-style: italic;
+	}
+	a {
+		text-decoration:none;
+		color:@color-theme;
+	}
+	a:hover {
+		text-decoration:underline;
+		color: darken(@color-theme, 20%);
+	}
+	.tl-caption, .tl-credit, .tl-slidenav-next, .tl-slidenav-previous {
+		//font-family: @font-sanserif;
+		font-size:@base-font-size-small;
+		line-height:@base-font-size-small;
+		a {
+			color: @color-dark;
+		}
+	}
+	.tl-makelink {
+
+		word-break: break-all;
+		word-break: break-word;
+		-webkit-hyphens: auto;
+		   -moz-hyphens: auto;
+		        hyphens: auto;
+	}
+	blockquote, blockquote p {
+		font-family: @font-serif;
+		color: lighten(@color-dark, 60%);
+		font-size: @base-font-size-large;
+		line-height:@base-font-size-large;
+		text-align:left;
+		background:transparent;
+		border:0px;
+		padding:0px;
+		cite {
+			font-family: @font-sanserif;
+			font-size: @base-font-size-small;
+			color: lighten(@color-dark, 40%);
+			display:block;
+			text-align:right;
+			font-style: normal;
+			
+		}
+		cite:before {
+			content: "\2014";
+		}
+	}
+	blockquote p:before {
+		content: open-quote;
+		display:inline-block;
+		font-size: @base-font-size-xlarge;
+		position: relative;  
+		top: 8px;
+		margin-right:5px;
+		
+	}
+	blockquote p:after {
+		content: close-quote;
+		display:inline-block;
+		font-size: @base-font-size-xlarge;
+		position: relative;  
+		top: 8px;
+		margin-left:3px;
+		
+	}
+	blockquote {
+		margin:10px;
+		p {
+			margin:0;
+		}
+		//margin-left:18px;
+	}
+	
+
+	/* VCard
+	================================================== */
+	.vcard {
+		font-family: @font-main;
+		font-size: @base-font-size;
+		line-height:@base-font-size;
+
+		.clearfix();
+		margin-bottom:@base-spacing;
+		margin-top:10px;
+		.twitter-date {
+			text-align:left;
+			font-size:@base-font-size-small;
+		}
+		.author {
+			float:right;
+			//text-align:right;
+		}
+		a {
+			color: lighten(@color-dark, 20%);
+			text-decoration:none;
+		}
+		a:hover {
+			text-decoration: none;
+			.fn, .nickname {
+				color:@color-theme;
+				//text-decoration: underline;
+			}
+		}
+		.fn, .nickname {
+				
+			padding-left: 42px;
+		}
+		.fn {
+			display:block;
+			font-weight: bold;
+
+		}
+		.nickname {
+			margin-top:1px;
+			display:block;
+			color: lighten(@color-dark, 40%);
+		}
+			
+		.avatar {
+			float:left;
+			display: block;
+			width: 32px;
+			height: 32px;
+			img {
+				-moz-border-radius: 5px;
+				-webkit-border-radius: 5px;
+				border-radius: 5px;
+			}
+		}
+	}
+	.tl-text {
+		ul {
+			padding:0px;
+			padding-left:30px;
+			margin:0;
+			li {
+				margin-bottom:5px;
+			}
+		}
+		
+	}
+
+	.tl-button-calltoaction {
+		cursor: pointer;
+		font-weight: bold;
+		padding-top: 10px;
+		margin-bottom: 10px;
+		padding-bottom: 10px;
+
+		.tl-button-calltoaction-text {
+			display: inline-block;
+			background-color: #c34528;
+			color: #fff;
+			padding: 10px 15px 10px 15px;
+			border-radius: 7px;
+		}
+	}
+
+	.tl-note {
+		display:block;
+		font-family: @font-main;
+		font-style: italic;
+		background-color:lighten(@color-dark, 90%);
+		font-size:@base-font-size;
+		line-height:@base-font-size+2;
+		padding:10px;
+		.border-radius(7px); 
+		color: #8a6d3b;
+		background-color: #fcf8e3;
+		border: 1px solid #faebcc;
+		text-shadow: none;
+	}
+
+
+}
+
+
+// Skinnier
+@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
+	.tl-timeline {
+		h1, h2, h3 {
+			font-size: @base-font-size-xlarge;
+			line-height: @base-font-size-xlarge;
+		}
+		h2.tl-headline-title {
+		}
+	}
+	
+}
+// Mobile, iPhone and skinny
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-timeline {
+		h1, h2, h3 {
+			font-size: @base-font-size-xlarge - 4;
+			line-height: @base-font-size-xlarge - 4;
+		}
+		h2.tl-headline-title {
+
+		}
+	}
+}
+.tl-skinny {
+	h2 {
+		margin-top:0px;
+		//padding-top:20px;
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/Variables.less b/public/opac/TimelineJS3-3.5.1/source/less/Variables.less
new file mode 100644
index 0000000000000000000000000000000000000000..f74fda069c5889e782eb99f73280ad365a724160
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/Variables.less
@@ -0,0 +1,103 @@
+/*	VARIABLES
+----------------------------------------------------- */
+
+/* ICON PATH
+================================================== */
+@icon-path: 					"icons/";
+
+/* TYPEFACE
+================================================== */
+@font-serif: 					"Georgia", Times New Roman, Times, serif;
+@font-sanserif:					"Helvetica Neue", Helvetica, Arial, sans-serif;
+
+@font-main:						@font-sanserif;
+@font-secondary:				@font-serif;
+
+@base-font-size: 				15px;
+@base-font-size-small: 			11px;
+@base-font-size-large: 			24px;
+@base-font-size-xlarge: 		28px;
+
+@base-line-height:				1.428571429;
+@base-line-height-computed:     floor(@base-font-size * @base-line-height);
+
+/* COLOR SCHEME
+================================================== */
+@color-background: 				#FFF;
+@color-foreground: 				#333;
+@color-dark: 					#000;
+
+@color-theme:					#c34528; //#DA0000;
+
+@color-theme-dark:				darken(@color-theme, 15);
+
+@color-theme-complement:		spin(@color-theme, 180);
+
+@color-theme-triad1:			spin(@color-theme, -135);
+@color-theme-triad2:			spin(@color-theme, 135);
+
+@color-theme-split1:			spin(@color-theme, -158);
+@color-theme-split2:			spin(@color-theme, 158);
+
+@color-text: 					lighten(@color-foreground,25);
+@color-header-text: 			@color-dark;
+
+@color-text-inverted:			darken(@color-background,5);
+@color-header-text-inverted:	@color-background;
+
+
+/* UI COLOR
+================================================== */
+@ui-background-color:			darken(@color-background, 5);
+@ui-background-color-darker:	darken(@color-background, 10);
+@marker-color: 					darken(@ui-background-color,5);
+@marker-outline-color: 			darken(@ui-background-color,10);
+@marker-selected-text-color: 	@color-background;
+@marker-text-color: 			darken(@marker-color,15);
+@marker-dot-color: 				darken(@marker-color, 33);
+@marker-dot-hover-color: 		darken(@marker-dot-color, 33);
+
+@minor-ticks-color:				darken(@ui-background-color,20);
+@major-ticks-color:				darken(@minor-ticks-color,30);
+
+@minor-ticks-line-color: 		@minor-ticks-color;
+@major-ticks-line-color: 		darken(@minor-ticks-line-color,10);
+
+@brand-color: 					darken(@ui-background-color,15);
+
+@era-color-1: 					@color-theme-complement;
+@era-color-2: 					@color-theme-triad1;
+@era-color-3: 					@color-theme-triad2;
+@era-color-4: 					@color-theme-split1;
+@era-color-5: 					@color-theme-split2;
+@era-color-0: 					@color-theme;
+
+/* UI
+================================================== */
+@base-spacing: 					15px;
+@arrow-size: 					20px;
+
+// Marker
+@time-marker-border-radius: 	4px;
+@marker-icon-size: 				24px;
+@marker-dot-offset: 			7px;
+
+// Time Axis
+@minor-ticks-width: 			50px;
+@major-ticks-width: 			100px;
+@minor-ticks-font-size: 		11px;
+@major-ticks-font-size: 		12px;
+@tick-padding: 					2px;
+@axis-height:					@minor-ticks-font-size + (@major-ticks-font-size*2) + (@tick-padding*2);
+
+/* Animation
+================================================== */
+@animation-ease: 				cubic-bezier(0.770, 0.000, 0.175, 1.000);
+@animation-duration: 			1000ms;
+@animation-duration-fast: 		500ms;
+
+/* GFX
+================================================== */
+.base-sprite() {
+	background-image: url(storymap.png?v1.0);
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/animation/TL.Animate.less b/public/opac/TimelineJS3-3.5.1/source/less/animation/TL.Animate.less
new file mode 100644
index 0000000000000000000000000000000000000000..dcbc3a65a7936fb04e8e43cf804e4ea410f52787
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/animation/TL.Animate.less
@@ -0,0 +1,14 @@
+.tlanimate {
+	-webkit-transform: translateZ(0);
+	-webkit-perspective: 1000;
+	-webkit-backface-visibility: hidden;
+}
+.tl-animate {
+	.property-animation(all, @animation-duration, @animation-ease);
+	.animation-timing-cubic-bezier();
+}
+
+.tl-animate-opacity {
+	.property-animation(opacity, @animation-duration, @animation-ease);
+	.animation-timing-cubic-bezier();
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/core/Mixins.less b/public/opac/TimelineJS3-3.5.1/source/less/core/Mixins.less
new file mode 100644
index 0000000000000000000000000000000000000000..3db3d4d97e74aacb884a71045935911f501728b7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/core/Mixins.less
@@ -0,0 +1,244 @@
+/*	Mixins.less
+	Snippets of reusable CSS to develop faster and keep code readable
+ * ----------------------------------------------------------------- */
+// Marker bottom text fade
+.marker-text-fade(@thecolor, @thepercent: 100%) {
+	background: -moz-linear-gradient(top,  fadeout(@thecolor, 100%) 0%, @thecolor @thepercent); /* FF3.6+ */
+	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,fadeout(@thecolor, 100%)), color-stop(@thepercent,@thecolor)); /* Chrome,Safari4+ */
+	background: -webkit-linear-gradient(top,  fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* Chrome10+,Safari5.1+ */
+	background: -o-linear-gradient(top,  fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* Opera 11.10+ */
+	background: -ms-linear-gradient(top,  fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* IE10+ */
+	background: linear-gradient(to bottom,  fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* W3C */
+	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='@thecolor', endColorstr='@thecolor',GradientType=0 ); /* IE6-9 */
+}
+
+// Cubic Bezier 
+.animation-timing-cubic-bezier() {
+	
+	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
+	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
+	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
+	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
+}
+
+// Property Animation
+.property-animation(@prop:height, @time:1000ms, @ease:cubic-bezier(0.770, 0.000, 0.175, 1.000)) {
+	-webkit-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); 
+	   -moz-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); 
+	     -o-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); 
+	        transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000);
+}
+
+// Disable Selection
+.disable-selection() {
+	-webkit-touch-callout: none;
+	  -webkit-user-select: none;
+	   -khtml-user-select: none;
+	     -moz-user-select: none;
+	      -ms-user-select: none;
+	          user-select: none;
+}
+
+// Border Box
+.border-box() {
+	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
+	   -moz-box-sizing: border-box;    /* Firefox, other Gecko */
+		    box-sizing: border-box;
+}
+
+// Opacity
+.opacity(@opacity: 100) {
+ 	filter: e(%("alpha(opacity=%d)", @opacity));
+ 	-khtml-opacity: @opacity / 100;
+ 	  -moz-opacity: @opacity / 100;
+ 	       opacity: @opacity / 100;
+}
+// Background Opacity
+.background-opacity(@opacity: 100) {
+	/* Fallback for web browsers that doesn't support RGBa */
+	background: rgb(0, 0, 0) transparent;
+	/* RGBa with 0.6 opacity */
+	background: rgba(0, 0, 0, @opacity / 100);
+}
+
+// Background Color Opacity
+.background-color-opacity(@cr:0, @cg:0, @cb:0, @opacity: 100) {
+	/* Fallback for web browsers that doesn't support RGBa */
+	background: rgb(@cr, @cg, @cb) transparent;
+	/* RGBa with 0.6 opacity */
+	background: rgba(@cr, @cg, @cb, @opacity / 100);
+}
+
+// Slide Text Shadow
+.slide-text-shadow(@shadow: 1px 1px 1px #000) {
+	color: #FFF !important;
+	text-shadow: @shadow !important;
+
+}
+
+// Border Radius
+.border-radius(@radius: 5px) {
+ 	-webkit-border-radius: @radius;
+ 	   -moz-border-radius: @radius;
+ 	        border-radius: @radius;
+}
+
+// Single side border-radius
+.border-top-radius(@radius) {
+  border-top-right-radius: @radius;
+   border-top-left-radius: @radius;
+}
+.border-right-radius(@radius) {
+  border-bottom-right-radius: @radius;
+     border-top-right-radius: @radius;
+}
+.border-bottom-radius(@radius) {
+  border-bottom-right-radius: @radius;
+   border-bottom-left-radius: @radius;
+}
+.border-left-radius(@radius) {
+  border-bottom-left-radius: @radius;
+     border-top-left-radius: @radius;
+}
+
+// Box Shadow
+.box-shadow(@shadow: 1px 1px 7px rgba(0,0,0,.30)) {
+	-webkit-box-shadow: @shadow;
+	   -moz-box-shadow: @shadow;
+	        box-shadow: @shadow;
+}
+// Transform
+.transform(@transform) {
+ 	-webkit-transform: @transform;
+ 	   -moz-transform: @transform;
+ 	    -ms-transform: @transform;
+ 	     -o-transform: @transform;
+ 	        transform: @transform;
+}
+// Transitions
+.transition(@transition) {
+ 	-webkit-transition: @transition;
+ 	   -moz-transition: @transition;
+ 	    -ms-transition: @transition;
+ 	     -o-transition: @transition;
+ 	        transition: @transition;
+}
+// Hyphens
+.hyphens(@hyphens: auto) {
+ 	-webkit-hyphens:@hyphens;
+ 	   -moz-hyphens:@hyphens;
+ 	    -ms-hyphens:@hyphens;
+ 	        hyphens:@hyphens;
+}
+// User select
+// For selecting text on the page
+.user-select(@select) {
+	-webkit-user-select: @select;
+	   -moz-user-select: @select;
+	    -ms-user-select: @select; // IE10+
+	     -o-user-select: @select;
+	        user-select: @select;
+}
+// Clear Fix
+.clearfix() {
+	*zoom: 1;
+	&:before,
+	&:after {
+		display: table;
+		content: "";
+	}
+	&:after {
+		clear: both;
+	}
+}
+.translucent-background(@color: @white, @alpha: 1) {
+	background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
+}
+// Add an alphatransparency value to any background or border color (via Elyse Holladay)
+#translucent {
+  .background(@color: @white, @alpha: 1) {
+    background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
+  }
+  .border(@color: @white, @alpha: 1) {
+    border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
+    background-clip: padding-box;
+  }
+}
+// Reset filters for IE
+.reset-filter() {
+	filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
+}
+// Center-align a block level element
+.center-block() {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+// Create Vertical Gradient
+.gradient-vertical (@startColor: #555, @endColor: #333) {
+  //background-color: @endColor;
+  background-repeat: repeat-x;
+  background-image: -khtml-gradient(linear, left top, left bottom, from(@startColor), to(@endColor)); // Konqueror
+  background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
+  background-image: -ms-linear-gradient(top, @startColor, @endColor); // IE10
+  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+
+  background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
+  background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
+  background-image: linear-gradient(top, @startColor, @endColor); // The standard
+  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down
+}
+
+// GRADIENTS
+// --------------------------------------------------
+
+#gradient {
+
+  // Horizontal gradient, from left to right
+  //
+  // Creates two color stops, start and end, by specifying a color and position for each color stop.
+  // Color stops are not available in IE9 and below.
+  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
+    background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+
+    background-image:  linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+    background-repeat: repeat-x;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
+  }
+
+  // Vertical gradient, from top to bottom
+  //
+  // Creates two color stops, start and end, by specifying a color and position for each color stop.
+  // Color stops are not available in IE9 and below.
+  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
+    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+
+    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+    background-repeat: repeat-x;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
+  }
+
+  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
+    background-repeat: repeat-x;
+    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
+    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+  }
+  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
+    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
+    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
+    background-repeat: no-repeat;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+  }
+  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
+    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-repeat: no-repeat;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+  }
+  .radial(@inner-color: #555; @outer-color: #333) {
+    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
+    background-image: radial-gradient(circle, @inner-color, @outer-color);
+    background-repeat: no-repeat;
+  }
+  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
+    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+  }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/core/Reset.less b/public/opac/TimelineJS3-3.5.1/source/less/core/Reset.less
new file mode 100644
index 0000000000000000000000000000000000000000..93d287cf55a479f027e84c4c56ec05593a16b0a7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/core/Reset.less
@@ -0,0 +1,117 @@
+/*	Reset
+------------------------------------------------------------------------------------------- */
+
+.tl-storyjs {
+
+	/*	Reset tags and common classes
+		Display in IE6-9 and FF3
+		Based on: http://github.com/necolas/normalize.css
+	------------------------------------------------------------------------------------------- */
+	
+	div * {
+		-webkit-box-sizing:content-box;
+		   -moz-box-sizing:content-box;
+		        box-sizing:content-box;
+	}
+	
+	h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, 
+	sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td, 
+	.tl-container, .content-container, .media, .text, .tl-slider, .slider, .date, .title, .message, .map, .credit, .caption, .tl-feedback, .tl-feature, .toolbar, 
+	.marker, .dot, .line, .flag, .time, .era, .major, .minor, .tl-navigation, .start, .active  {
+		margin: 0;
+		padding: 0;
+		border: 0;
+		font-weight: normal;
+		font-style: normal;
+		font-size: 100%;
+		line-height: 1;
+		font-family: inherit;
+		width: auto;
+		float:none;
+	}
+	h1, h2, h3, h4, h5, h6 {
+		clear:none;
+	}
+	table { border-collapse: collapse; border-spacing: 0;}
+	ol, ul { list-style: none;}
+	q:before, q:after, blockquote:before, blockquote:after { content: ""; }
+	a:focus { outline: thin dotted; }
+	a:hover, a:active { outline: 0;}
+	article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
+		display: block;
+	}
+	audio, canvas, video {
+		display: inline-block;
+		*display: inline;
+		*zoom: 1;
+	}
+
+	/*	Prevents modern browsers from displaying 'audio' without controls
+		Based on: http://github.com/necolas/normalize.css
+	------------------------------------------------------------------------------------------- */
+	audio:not([controls]) {
+		display: none;
+	}
+	div {
+		max-width:none;
+	}
+	
+	/*	Prevents sub and sup affecting line-height in all browsers
+		Based on: http://github.com/necolas/normalize.css
+	------------------------------------------------------------------------------------------- */
+	sub, sup {
+		font-size: 75%;
+		line-height: 0;
+		position: relative;
+		vertical-align: baseline;
+	}
+	sup {
+		top: -0.5em;
+	}
+	sub {
+		bottom: -0.25em;
+	}
+
+	/*	Img border in a's and image quality
+		Based on: http://github.com/necolas/normalize.css
+	------------------------------------------------------------------------------------------- */
+	img {
+		border: 0;
+		-ms-interpolation-mode: bicubic;
+	}
+
+	/*	Forms
+		Based on: http://github.com/necolas/normalize.css
+	------------------------------------------------------------------------------------------- */
+	button, input, select, textarea {
+	  font-size: 100%;
+	  margin: 0;
+	  vertical-align: baseline;
+	  *vertical-align: middle;
+	}
+	button, input {
+	  line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
+	  *overflow: visible; // Inner spacing ie IE6/7
+	}
+	button::-moz-focus-inner, input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
+	  border: 0;
+	  padding: 0;
+	}
+	button, input[type="button"], input[type="reset"], input[type="submit"] {
+	  cursor: pointer; // Cursors on all buttons applied consistently
+	  -webkit-appearance: button; // Style clicable inputs in iOS
+	}
+	input[type="search"] { // Appearance in Safari/Chrome
+	  -webkit-appearance: textfield;
+	  -webkit-box-sizing: content-box;
+	     -moz-box-sizing: content-box;
+	          box-sizing: content-box;
+	}
+	input[type="search"]::-webkit-search-decoration {
+	  -webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5
+	}
+	textarea {
+	  overflow: auto; // Remove vertical scrollbar in IE6-9
+	  vertical-align: top; // Readability and alignment cross-browser
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/core/TL.less b/public/opac/TimelineJS3-3.5.1/source/less/core/TL.less
new file mode 100644
index 0000000000000000000000000000000000000000..8fdec44c9c97c743f748d0390ced9a0c5a6b9a16
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/core/TL.less
@@ -0,0 +1,7 @@
+/* Disable Text selection when dragging
+================================================== */
+.tl-dragging {
+	-webkit-touch-callout: none;
+	
+	.user-select(none);
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.abril-droidsans.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.abril-droidsans.less
new file mode 100644
index 0000000000000000000000000000000000000000..890886a5cc016f78ba8705a7d9ed13027909fdf4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.abril-droidsans.less
@@ -0,0 +1,42 @@
+/*	Font Abril Fatface & Droid Sans
+
+https://www.google.com/fonts/specimen/Abril+Fatface
+https://www.google.com/fonts/specimen/Droid+Sans
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Droid+Sans:400,700|Abril+Fatface);
+
+// Font Variables
+@font-main:						'Droid Sans', sans-serif;
+@font-secondary:				'Abril Fatface', cursive;
+@font-navigation:				@font-main;
+@font-marker: 					@font-main;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				16px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		normal;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			700;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.amatic-andika.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.amatic-andika.less
new file mode 100644
index 0000000000000000000000000000000000000000..8e8221323460c6e921bd19222ba3877dc04c68e7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.amatic-andika.less
@@ -0,0 +1,42 @@
+/*	Font Amatic & Andika
+
+https://www.google.com/fonts/specimen/Amatic+SC
+https://www.google.com/fonts/specimen/Andika
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Andika|Amatic+SC:700,400);
+
+// Font Variables
+@font-main:						'Andika', sans-serif;
+@font-secondary:				'Amatic SC', cursive;
+@font-navigation:				@font-main;
+@font-marker: 					@font-main;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				16px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-secondary;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		normal;
+
+// Headings
+@font-size-headings: 			64px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			700;
+@font-size-headline-title: 		86px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.base.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.base.less
new file mode 100644
index 0000000000000000000000000000000000000000..2f96de33703dcc998f073f7d1be64fb897186c89
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.base.less
@@ -0,0 +1,106 @@
+/*	Font Base
+----------------------------------------------------- */
+
+.tl-timeline {
+	font-family: @font-main;
+	font-weight:@base-font-weight;
+	font-size: @base-font-size;
+	line-height:1.3em;
+	
+	h1, h2, h3, h4, h5, h6 {
+		font-family: @font-secondary;
+		text-transform: @font-headings-text-transform;
+		font-weight:@font-headings-weight;
+		font-size:@font-size-headings;
+		line-height:@font-headings-lineheight;
+	}
+	
+	h2.tl-headline-title {
+		font-size: @font-size-headline-title;
+		line-height:@font-size-headline-title;
+	}
+	
+	p {
+		font-family: @font-main;
+		font-size: @base-font-size;
+		line-height: 1.3em;
+	}
+	
+	ul {
+		font-family: @font-main;
+	}
+
+	.tl-media .tl-media-wikipedia h4 a,
+	.tl-media h4, .tl-media h4 a {
+		font-family: @font-main;
+		font-weight:@font-headings-weight;
+		font-size:@font-size-headings-small;
+		line-height:@font-size-headings-small;
+	}
+	.tl-caption, .tl-credit {
+		font-family: @font-main;
+	}
+	
+	.vcard {
+		font-family: @font-navigation !important;
+		font-weight:normal !important;
+	}
+	
+	.tl-slidenav-next, .tl-slidenav-previous, .tl-message, .tl-timegroup-message {
+		font-family: @font-navigation;
+		font-weight:@font-headings-weight;
+		text-transform: @font-headings-text-transform;
+		.tl-slidenav-title {
+			line-height:1.3em !important;
+		}
+	}
+	
+	.tl-headline-date, h3.tl-headline-date {
+		font-family: @font-headline-date !important;
+		font-weight:normal !important;
+		text-transform: @font-headings-text-transform !important;
+		small {
+			font-weight:normal !important;
+		}
+	}
+	
+	.tl-timenav-slider {
+		font-family: @font-navigation;
+		font-weight:@font-headings-weight;
+		h2.tl-headline {
+			font-family: @font-marker;
+			font-weight:@font-headings-weight;
+			text-transform: @font-marker-text-transform;
+		}
+		
+		.tl-timeaxis {
+			font-family: @font-navigation;
+			font-weight:@font-headings-weight;
+			text-transform: @font-headings-text-transform;
+		}
+	}
+	
+	.tl-menubar {
+		font-family: @font-navigation;
+		.tl-menubar-button {
+			
+		}
+	}
+	
+	blockquote, blockquote p {
+		font-family: @font-main;
+		font-style: @font-blockquote-style;
+		font-weight:@font-blockquote-weight;
+		line-height:1.3;
+	}
+
+	
+}
+
+input[type="text"].editor-headline {
+    font-family: @font-secondary;
+    text-transform: @font-headings-text-transform;
+    font-weight:@font-headings-weight;
+    font-size:@font-size-headings;
+    line-height:@font-size-headings;
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.bevan-pontanosans.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.bevan-pontanosans.less
new file mode 100644
index 0000000000000000000000000000000000000000..4fc8e31fc97357d8e4645bc1eee95fa3da605349
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.bevan-pontanosans.less
@@ -0,0 +1,47 @@
+/*	Font Bevan & Pontano+Sans
+
+https://www.google.com/fonts/specimen/Bevan
+https://www.google.com/fonts/specimen/Pontano+Sans
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(https://fonts.googleapis.com/css?family=Pontano+Sans|Bevan);
+// Font Variables
+@font-main:						'Pontano Sans', sans-serif;
+@font-secondary:				'Bevan', cursive;
+@font-navigation:				@font-main;
+@font-marker: 					@font-main;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			38px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
+
+.tl-timeline {
+	.tl-headline-date, h3.tl-headline-date {
+		margin-bottom:10px !important;
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.bitter-raleway.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.bitter-raleway.less
new file mode 100644
index 0000000000000000000000000000000000000000..77ea336c7d1fdbc2920c93efb0b798c0997e661e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.bitter-raleway.less
@@ -0,0 +1,42 @@
+/*	Font Bitter & Raleway
+
+https://www.google.com/fonts/specimen/Bitter
+https://www.google.com/fonts/specimen/Raleway
+----------------------------------------------------- */
+
+// Main Variables
+@import "../Variables.less";
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Bitter:700|Raleway:200,300,700);
+
+// Font Variables
+@font-main:						'Raleway', sans-serif;
+@font-secondary:				'Bitter', serif;
+@font-navigation:				'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				16px;
+@base-font-weight: 				300;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		200;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			700;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+
+@import "font.base.less";
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.clicker-garamond.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.clicker-garamond.less
new file mode 100644
index 0000000000000000000000000000000000000000..910bf05d8fb3670d2b250e94f1cb6badd702316a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.clicker-garamond.less
@@ -0,0 +1,48 @@
+/*	Font Clicker & Garamond
+
+https://www.google.com/fonts/specimen/Clicker+Script
+https://www.google.com/fonts/specimen/EB+Garamond
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Clicker+Script|EB+Garamond);
+
+// Font Variables
+@font-main:						'EB Garamond', serif;
+@font-secondary:				'Clicker Script', cursive;
+@font-navigation:				@font-main;//'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-marker: 					@font-navigation;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				18px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			58px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		64px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
+
+.tl-timeline {
+	.tl-headline-date, h3.tl-headline-date {
+		margin-bottom:10px !important;
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.dancing-ledger.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.dancing-ledger.less
new file mode 100644
index 0000000000000000000000000000000000000000..5fd50b71ea9f8d2bed5097e89c6a0b13b5797d2e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.dancing-ledger.less
@@ -0,0 +1,43 @@
+/*	Font Dancing & Ledger
+
+https://www.google.com/fonts/specimen/Dancing+Script
+https://www.google.com/fonts/specimen/Ledger
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Dancing+Script:700,400|Ledger);
+
+// Font Variables
+@font-main:						'Ledger', serif;
+@font-secondary:				'Dancing Script', cursive;
+@font-navigation:				@font-main;//'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				16px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		normal;
+
+// Headings
+@font-size-headings: 			58px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			700;
+@font-size-headline-title: 		68px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.default.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.default.less
new file mode 100644
index 0000000000000000000000000000000000000000..1a6288be237e10d8a6830f8974c98e9e39de7690
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.default.less
@@ -0,0 +1,4 @@
+/*	Font Default
+----------------------------------------------------- */
+
+@import "font.pt.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.fjalla-average.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.fjalla-average.less
new file mode 100644
index 0000000000000000000000000000000000000000..fa55585ed213ad5e8e4ce41153305c4867e2f419
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.fjalla-average.less
@@ -0,0 +1,48 @@
+/*	Font Fjalla & Average
+
+https://www.google.com/fonts/specimen/Fjalla+One
+https://www.google.com/fonts/specimen/Average+Sans
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Average+Sans|Fjalla+One);
+
+// Font Variables
+@font-main:						'Average Sans', sans-serif;
+@font-secondary:				'Fjalla One', sans-serif;
+@font-navigation:				@font-main;
+@font-marker: 					@font-navigation;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		normal;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		1.1em;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
+
+.tl-timeline {
+	.tl-headline-date, h3.tl-headline-date {
+		margin-bottom:10px !important;
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.georgia-helvetica.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.georgia-helvetica.less
new file mode 100644
index 0000000000000000000000000000000000000000..ca9c091a2e833b6e7b4bb41dfc1794fb1e685b21
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.georgia-helvetica.less
@@ -0,0 +1,39 @@
+/*	Font Georgia & Helvetica
+
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+
+// Font Variables
+@font-main:						'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-secondary:				Georgia, Times, serif;
+@font-navigation:				'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			42px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	normal;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			800;
+@font-size-headline-title: 		46px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.knightlab.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.knightlab.less
new file mode 100644
index 0000000000000000000000000000000000000000..165530652fdaec71b1b762ba038272e00010d93c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.knightlab.less
@@ -0,0 +1,41 @@
+/*	Font Default
+
+Knight Lab Specific
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//cloud.webtype.com/css/d4767ecb-457a-4677-8761-72f890add836.css);
+
+// Font Variables
+@font-main:						"Turnip RE",Georgia,"Times New Roman",Times,serif;
+@font-secondary:				"Salvo Serif Cond",Georgia,"Times New Roman",Times,serif;
+@font-navigation:				"Apres RE", "Helvetica Neue", Helvetica, Arial, sans-serif;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				16px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.lustria-lato.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.lustria-lato.less
new file mode 100644
index 0000000000000000000000000000000000000000..7d230a53da7ab76c27a91ba4f13007c28aa521a1
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.lustria-lato.less
@@ -0,0 +1,48 @@
+/*	Font Lustria & Lato
+
+https://www.google.com/fonts/specimen/Lustria
+https://www.google.com/fonts/specimen/Lato
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Lustria|Lato:400,400italic);
+
+// Font Variables
+@font-main:						'Lato', sans-serif;
+@font-secondary:				'Lustria', serif;
+@font-navigation:				@font-main;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
+
+.tl-timeline {
+	.tl-headline-date, h3.tl-headline-date {
+		margin-bottom:10px !important;
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.medula-lato.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.medula-lato.less
new file mode 100644
index 0000000000000000000000000000000000000000..4fe6bfc017a5ccdeda6f35240086a339076c2c85
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.medula-lato.less
@@ -0,0 +1,42 @@
+/*	Font Medula One & Lato
+
+https://www.google.com/fonts/specimen/Medula+One
+https://www.google.com/fonts/specimen/Lato
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Lato:400,700,300italic|Medula+One);
+
+// Font Variables
+@font-main:						'Lato', sans-serif;
+@font-secondary:				'Medula One', cursive;
+@font-navigation:				@font-main;
+@font-marker: 					@font-main;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				16px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		300;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			58px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			700;
+@font-size-headline-title: 		72px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.oldstandard.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.oldstandard.less
new file mode 100644
index 0000000000000000000000000000000000000000..e537bd3bb096d62af3ca70d1f5edbf9886fd9c16
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.oldstandard.less
@@ -0,0 +1,40 @@
+/*	Font Old Standard
+https://www.google.com/fonts/specimen/Old+Standard+TT
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Old+Standard+TT:400,400italic);
+
+// Font Variables
+@font-main:						'Old Standard TT', serif;
+@font-secondary:				@font-main;
+@font-navigation:				@font-main;
+@font-marker: 					@font-main;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				16px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	uppercase;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		52px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	uppercase;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.opensans-gentiumbook.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.opensans-gentiumbook.less
new file mode 100644
index 0000000000000000000000000000000000000000..9d4ca8c897026f9020e1db642e312760c89b65e1
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.opensans-gentiumbook.less
@@ -0,0 +1,48 @@
+/*	Font Open Sans & Gentium Book Basic
+
+http://www.google.com/webfonts/specimen/Open+Sans
+http://www.google.com/webfonts/specimen/Gentium+Book+Basic
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Open+Sans:800,400|Gentium+Book+Basic:400,400italic);
+
+// Font Variables
+@font-main:						'Gentium Book Basic', serif;
+@font-secondary:				'Open Sans', sans-serif;
+@font-navigation:				@font-secondary;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			40px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			800;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
+
+.tl-timeline {
+	.tl-headline-date, h3.tl-headline-date {
+		margin-bottom:5px !important;
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.playfair-faunaone.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.playfair-faunaone.less
new file mode 100644
index 0000000000000000000000000000000000000000..25b9821da824cd955e26d895708c3fa4525f9369
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.playfair-faunaone.less
@@ -0,0 +1,45 @@
+/*	Font Playfair & Fauna One & Unica One
+
+https://www.google.com/fonts/specimen/Playfair+Display
+https://www.google.com/fonts/specimen/Fauna+One
+https://www.google.com/fonts/specimen/Unica+One
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Playfair+Display:400,700|Playfair+Display+SC);
+@import url(//fonts.googleapis.com/css?family=Fauna+One);
+@import url(//fonts.googleapis.com/css?family=Unica+One);
+
+// Font Variables
+@font-main:						'Fauna One', serif;
+@font-secondary:				'Playfair Display', Georgia, serif;
+@font-navigation:				'Unica One', 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-secondary;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	uppercase;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	none;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.playfair.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.playfair.less
new file mode 100644
index 0000000000000000000000000000000000000000..0351bde8e602c8778ded06cf889b4f7072f10c23
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.playfair.less
@@ -0,0 +1,42 @@
+/*	Font Playfair & Playfair SC
+
+https://www.google.com/fonts/specimen/Playfair+Display
+https://www.google.com/fonts/specimen/Playfair+Display+SC
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Playfair+Display:400,700|Playfair+Display+SC);
+
+// Font Variables
+@font-main:						'Playfair Display', serif;
+@font-secondary:				'Playfair Display SC', serif;
+@font-navigation:				'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.pt.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.pt.less
new file mode 100644
index 0000000000000000000000000000000000000000..ceeadd06e36db2cdaf59d70bbcab6d21d7ecfe8a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.pt.less
@@ -0,0 +1,52 @@
+/*	Font PT Sans & PT Serif & PT Sans Narrow
+
+http://www.google.com/webfonts/specimen/PT+Sans+Narrow
+http://www.google.com/webfonts/specimen/PT+Sans
+http://www.google.com/webfonts/specimen/PT+Serif
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Narrow:700|PT+Serif:400,400italic);
+
+// Font Variables
+@font-main:						'PT Serif', serif;
+@font-secondary:				'PT Sans Narrow', sans-serif;
+@font-navigation:				@font-secondary;
+@font-marker: 					'PT Sans', sans-serif;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				16px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	uppercase;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			700;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	none;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+
+@import "font.base.less";
+
+.tl-timeline {
+	.tl-timenav-slider {
+		.tl-timeaxis {
+			
+			font-weight:normal;
+		}
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.roboto-megrim.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.roboto-megrim.less
new file mode 100644
index 0000000000000000000000000000000000000000..285fe2284fa019e90595fd3266b23354dfd1c799
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.roboto-megrim.less
@@ -0,0 +1,43 @@
+/*	Font Roboto Slab & Megrim
+
+https://www.google.com/fonts/specimen/Vollkorn
+https://www.google.com/fonts/specimen/Megrim
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Megrim);
+@import url(//fonts.googleapis.com/css?family=Roboto+Slab:400,300);
+
+// Font Variables
+@font-main:						'Roboto Slab', Georgia, serif;
+@font-secondary:				'Megrim', 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-navigation:				@font-secondary;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-main;
+
+@base-font-size: 				17px;
+@base-font-weight: 				300;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		normal;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	normal;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	normal;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.rufina-sintony.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.rufina-sintony.less
new file mode 100644
index 0000000000000000000000000000000000000000..63bba9eb33718a38be939b0d2c33b5836ce9e3be
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.rufina-sintony.less
@@ -0,0 +1,42 @@
+/*	Font Rufina & Sintony
+
+https://www.google.com/fonts/specimen/Rufina
+https://www.google.com/fonts/specimen/Sintony
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Rufina:400,700|Sintony:400,700);
+
+// Font Variables
+@font-main:						'Sintony', sans-serif;
+@font-secondary:				'Rufina', serif;
+@font-navigation:				@font-main;
+@font-marker: 					@font-main;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				15px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		normal;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			700;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.ubuntu.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.ubuntu.less
new file mode 100644
index 0000000000000000000000000000000000000000..0fc81f5efc269f5dfcd17eaa8475a02b09324bc5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.ubuntu.less
@@ -0,0 +1,46 @@
+/*	Font Ubuntu
+
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Ubuntu:300,500,300italic);
+
+// Font Variables
+@font-main:						'Ubuntu', 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-secondary:				'Ubuntu', 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-navigation:				@font-secondary;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				300;
+
+// Blockquote
+@font-blockquote: 				@font-main;
+@font-blockquote-weight: 		300;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			40px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	none;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			500;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	none;
+ 
+@import "font.base.less";
+
+.tl-timeline {
+	.tl-headline-date, h3.tl-headline-date {
+		margin-bottom:5px !important;
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.unicaone-vollkorn.less b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.unicaone-vollkorn.less
new file mode 100644
index 0000000000000000000000000000000000000000..7e655a7f17975cea054486e5be8c29f8ad9abbc0
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/fonts/font.unicaone-vollkorn.less
@@ -0,0 +1,43 @@
+/*	Font Unica One & Vollkorn
+
+https://www.google.com/fonts/specimen/Vollkorn
+https://www.google.com/fonts/specimen/Unica+One
+----------------------------------------------------- */
+
+// Main Variables 
+@import "../Variables.less"; 
+
+// Font Import
+@import url(//fonts.googleapis.com/css?family=Vollkorn:400italic,400);
+@import url(//fonts.googleapis.com/css?family=Unica+One);
+
+// Font Variables
+@font-main:						'Vollkorn', Georgia, serif;
+@font-secondary:				'Unica One', 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
+@font-navigation:				@font-secondary;
+@font-marker: 					@font-secondary;
+@font-headline-date: 			@font-navigation;
+
+@base-font-size: 				17px;
+@base-font-weight: 				400;
+
+// Blockquote
+@font-blockquote: 				@font-secondary;
+@font-blockquote-weight: 		400;
+@font-blockquote-style: 		italic;
+
+// Headings
+@font-size-headings: 			46px;
+@font-headings-lineheight: 		@font-size-headings;
+@font-headings-text-transform: 	uppercase;
+@font-size-headings-small: 		24px;
+@font-headings-weight: 			400;
+@font-size-headline-title: 		58px;
+
+// Marker
+@font-marker-text-transform: 	@font-headings-text-transform;
+
+// Navigation
+@font-navigation-text-transform: 	uppercase;
+ 
+@import "font.base.less";
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/icons/Icons.less b/public/opac/TimelineJS3-3.5.1/source/less/icons/Icons.less
new file mode 100644
index 0000000000000000000000000000000000000000..ac1655a0a50013040773925c257476ae0d15b657
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/icons/Icons.less
@@ -0,0 +1,203 @@
+/* Icons
+================================================== */
+
+@font-face {
+	font-family: 'tl-icons';
+	src:url('@{icon-path}tl-icons.eot');
+	src:url('@{icon-path}tl-icons.eot?#iefix') format('embedded-opentype'),
+		url('@{icon-path}tl-icons.ttf') format('truetype'),
+		url('@{icon-path}tl-icons.woff') format('woff'),
+		url('@{icon-path}tl-icons.svg#tl-icons') format('svg');
+	font-weight: normal;
+	font-style: normal;
+}
+
+[class^="tl-icon-"], [class*=" tl-icon-"] {
+	font-family: 'tl-icons';
+	speak: none;
+	font-style: normal;
+	font-weight: normal;
+	font-variant: normal;
+	text-transform: none;
+	line-height: 1;
+
+	/* Better Font Rendering =========== */
+	-webkit-font-smoothing: antialiased;
+	-moz-osx-font-smoothing: grayscale;
+}
+
+
+.tl-icon-vine:after {
+	content: "\e64d";
+}
+.tl-icon-wikipedia:after {
+	content: "\e64e";
+}
+.tl-icon-chevron-right:after {
+	content: "\e64f";
+}
+.tl-icon-chevron-left:after {
+	content: "\e650";
+}
+.tl-icon-youtube-logo:after {
+	content: "\e651";
+}
+.tl-icon-foursquare:after {
+	content: "\e652";
+}
+.tl-icon-camera-retro:after {
+	content: "\e653";
+}
+.tl-icon-doc:after {
+	content: "\e654";
+}
+.tl-icon-weibo:after {
+	content: "\e655";
+}
+.tl-icon-resize-horizontal:after {
+	content: "\e656";
+}
+.tl-icon-resize-vertical:after {
+	content: "\e657";
+}
+.tl-icon-resize-full:after {
+	content: "\e658";
+}
+.tl-icon-resize-small:after {
+	content: "\e659";
+}
+.tl-icon-twitter:after {
+	content: "\e62b";
+}
+.tl-icon-google-plus:after {
+	content: "\e62c";
+}
+.tl-icon-video:after {
+	content: "\e62d";
+}
+.tl-icon-youtube:after {
+	content: "\e62d";
+}
+.tl-icon-plaintext:after {
+	content: "\e62e";
+}
+.tl-icon-storify:after {
+	content: "\e62e";
+}
+.tl-icon-image-v2:after {
+	content: "\e62f";
+}
+.tl-icon-quote-v2:after {
+	content: "\e630";
+}
+.tl-icon-zoom-in:after {
+	content: "\e631";
+}
+.tl-icon-zoom-out:after {
+	content: "\e632";
+}
+.tl-icon-list:after {
+	content: "\e633";
+}
+.tl-icon-music:after {
+	content: "\e634";
+}
+.tl-icon-spotify:after {
+	content: "\e634";
+}
+.tl-icon-location:after {
+	content: "\e635";
+}
+.tl-icon-googlemaps:after {
+	content: "\e635";
+}
+.tl-icon-web:after {
+	content: "\e636";
+}
+.tl-icon-share-v2:after {
+	content: "\e637";
+}
+.tl-icon-soundcloud:after {
+	content: "\e639";
+}
+.tl-icon-video-v2:after {
+	content: "\e63a";
+}
+.tl-icon-dailymotion:after {
+	content: "\e63a";
+}
+.tl-icon-tumblr:after {
+	content: "\e63b";
+}
+.tl-icon-lastfm:after {
+	content: "\e63c";
+}
+.tl-icon-github:after {
+	content: "\e63d";
+}
+.tl-icon-goback:after {
+	content: "\e63e";
+}
+.tl-icon-doc-v2:after {
+	content: "\e63f";
+}
+.tl-icon-googledrive:after {
+	content: "\e640";
+}
+.tl-icon-facebook:after {
+	content: "\e641";
+}
+.tl-icon-flickr:after {
+	content: "\e642";
+}
+.tl-icon-dribbble:after {
+	content: "\e643";
+}
+.tl-icon-image:after {
+	content: "\e605";
+}
+.tl-icon-vimeo:after {
+	content: "\e606";
+}
+.tl-icon-instagram:after {
+	content: "\e644";
+}
+.tl-icon-pinterest:after {
+	content: "\e645";
+}
+.tl-icon-arrow-left:after {
+	content: "\e646";
+}
+.tl-icon-arrow-down:after {
+	content: "\e647";
+}
+.tl-icon-arrow-up:after {
+	content: "\e648";
+}
+.tl-icon-arrow-right:after {
+	content: "\e649";
+}
+.tl-icon-share:after {
+	content: "\e64a";
+}
+.tl-icon-blockquote:after {
+	content: "\e64b";
+}
+.tl-icon-evernote:after {
+	content: "\e64c";
+}
+.tl-icon-mappin:after {
+	content: "\e600";
+}
+.tl-icon-swipe-right:after {
+	content: "\e601";
+}
+.tl-icon-swipe-left:after {
+	content: "\e602";
+}
+.tl-icon-touch-spread:after {
+	content: "\e603";
+}
+.tl-icon-touch-pinch:after {
+	content: "\e604";
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/map/TL.ImageMarker.less b/public/opac/TimelineJS3-3.5.1/source/less/map/TL.ImageMarker.less
new file mode 100644
index 0000000000000000000000000000000000000000..d99e66ebd852153d676dd7953d36aa668a6b5340
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/map/TL.ImageMarker.less
@@ -0,0 +1,41 @@
+/* Requires Variables.less
+================================================== */
+@leaflet-offset: 6px;
+@map-icon-size: 44px; //52
+@map-icon-width: 32px; //38
+@map-icon-size: 52px;
+@map-icon-width: 38px;
+.tl-map {
+	.tl-mapimage-display:hover {
+		.tl-mapmarker, .tl-mapmarker-active {
+			display:block;
+		
+		} 
+	}
+	.tl-mapimage-display {
+		.tl-mapmarker, .tl-mapmarker-active {
+			display:none;
+		
+		} 
+		
+	}
+
+}
+
+.tl-map:hover {
+	.tl-mapimage-display {
+		
+	}
+}
+
+
+/* Mobile, iPhone and skinny
+================================================== */
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-map {
+		.tl-mapmarker {
+	
+		}
+	}
+}
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/map/TL.Map.less b/public/opac/TimelineJS3-3.5.1/source/less/map/TL.Map.less
new file mode 100644
index 0000000000000000000000000000000000000000..a47ff7344eb9c0dda45e6296addf126ab75bfdf3
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/map/TL.Map.less
@@ -0,0 +1,31 @@
+/* Requires Variables.less
+================================================== */
+.tl-map {
+	height: 100%;
+	display:relative;
+	overflow: hidden;
+	top:0px;
+	background-color: @color-foreground;
+	.tl-map-mask {
+		width: 100%;
+		height:	100%;
+		overflow: hidden;
+		.tl-map-display {
+			width: 100%;
+			height:	100%;
+		}
+		
+	}
+	
+}
+
+
+
+/* Mobile, iPhone and skinny
+================================================== */
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-map {
+
+	}
+}
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/map/TL.MapMarker.less b/public/opac/TimelineJS3-3.5.1/source/less/map/TL.MapMarker.less
new file mode 100644
index 0000000000000000000000000000000000000000..97d2d2a3e85afc0e47e4ecf80de30d738c22f104
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/map/TL.MapMarker.less
@@ -0,0 +1,121 @@
+/* Requires Variables.less
+================================================== */
+@leaflet-offset: 6px;
+@map-icon-size: 44px; //52
+@map-icon-width: 32px; //38
+@map-icon-size: 52px;
+@map-icon-width: 38px;
+.tl-map {
+	.tl-mapmarker, .tl-mapmarker-active {
+		font-family: 'tl-icons';
+		speak: none;
+		font-style: normal;
+		font-weight: normal;
+		font-variant: normal;
+		text-transform: none;
+		line-height: 1;
+
+		/* Better Font Rendering =========== */
+		-webkit-font-smoothing: antialiased;
+		-moz-osx-font-smoothing: grayscale;
+		
+		
+		width: @map-icon-width !important;
+		height: @map-icon-size !important;
+		//overflow:hidden;
+		top:-(@map-icon-size - @leaflet-offset);
+		left: -((@map-icon-width/2) - @leaflet-offset);
+		
+	} 
+	// Map Pin
+	.tl-mapmarker:before, .tl-mapmarker-active:before {
+		content: "\e600";
+		font-size:@map-icon-size;
+		text-shadow: rgba(0,0,0, 0.66) 0px 2px 5px;
+		
+	}
+	
+	.tl-mapmarker {
+		color:#a5a5a5;
+	}
+	.tl-mapmarker-active {
+		color:@color-theme;
+	}
+	
+	.tl-mapmarker-image-icon, .tl-mapmarker-image-icon-active {
+		border: 2px solid #a5a5a5;
+		box-shadow: 2px 2px 2px #000;
+		opacity:1;
+		
+	}
+	.tl-mapmarker-image-icon {
+		-webkit-filter: grayscale(100%);
+		-moz-filter: grayscale(100%);
+		filter: grayscale(100%);
+	}
+	.tl-mapmarker-image-icon-active {
+		opacity:1;
+		border: 4px solid @color-theme;
+		-webkit-filter: grayscale(0);
+		-moz-filter: grayscale(0);
+		filter: grayscale(0);
+	}
+	
+	/* Marker Media Icons
+	================================================== */
+	.tl-mapmarker-icon:after {
+			//font-size:20px;
+			font-size:24px;
+			color:#FFF; 
+			text-align:center;
+			width:@map-icon-width;
+			height: 24px;
+			overflow:hidden;
+			//content:'';
+			display:block;
+			position:absolute;
+			//top:4px;
+			top:8px;
+			left:0px;
+			
+			.opacity(75);
+	}
+	
+	.tl-mapmarker-active.tl-mapmarker-icon:after {
+		.opacity(100);
+	}
+	.tl-mapmarker-icon.tl-icon-youtube:after {
+		//content: "\e63a";
+		//font-size:22px;
+	}
+	.tl-icon-wikipedia:after {
+		//font-size:14px;
+		font-size:16px;
+		//top:10px;
+		top:12px;
+	}
+	.tl-icon-image:after {
+		top:6px;
+	}
+	.tl-icon-vine:after, .tl-icon-vimeo:after, .tl-icon-twitter:after {
+		//top: 6px;
+		top: 8px;
+	}
+	
+
+	
+}
+
+
+
+
+/* Mobile, iPhone and skinny
+================================================== */
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-map {
+		.tl-mapmarker {
+	
+		}
+	}
+}
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.IE.less b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.IE.less
new file mode 100644
index 0000000000000000000000000000000000000000..f3daf1f3c0e0d9a69ea37eba4df41f9c70b7589a
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.IE.less
@@ -0,0 +1,51 @@
+.leaflet-vml-shape {
+	width: 1px;
+	height: 1px;
+	}
+.lvml {
+	behavior: url(#default#VML);
+	display: inline-block;
+	position: absolute;
+	}
+
+.leaflet-control {
+	display: inline;
+	}
+
+.leaflet-popup-tip {
+	width: 21px;
+	_width: 27px;
+	margin: 0 auto;
+	_margin-top: -3px;
+
+	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
+	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
+	}
+.leaflet-popup-tip-container {
+	margin-top: -1px;
+	}
+.leaflet-popup-content-wrapper, .leaflet-popup-tip {
+	border: 1px solid #999;
+	}
+.leaflet-popup-content-wrapper {
+	zoom: 1;
+	}
+
+.leaflet-control-zoom,
+.leaflet-control-layers {
+	border: 3px solid #999;
+	}
+.leaflet-control-layers-toggle {
+	}
+.leaflet-control-attribution,
+.leaflet-control-layers,
+.leaflet-control-scale-line {
+	background: white;
+	}
+.leaflet-zoom-box {
+	filter: alpha(opacity=50);
+	}
+.leaflet-control-attribution {
+	border-top: 1px solid #bbb;
+	border-left: 1px solid #bbb;
+	}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.Mapbox.less b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.Mapbox.less
new file mode 100644
index 0000000000000000000000000000000000000000..c7fbc9b7a1f6cbd6eae26cb288d8d8067a967f65
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.Mapbox.less
@@ -0,0 +1,22 @@
+.tl-map {
+	.leaflet-container {
+		.mapbox-maplogo {
+			position:relative;
+			display:inline-block;
+			height: 20px;
+			width: 65px;
+			//left:10px;
+			//bottom:10px;
+			margin-bottom:-5px;
+			text-indent: -9999px;
+			z-index:99999;
+			overflow:hidden;
+			background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAAoCAMAAAAFWtJHAAAAwFBMVEUAAAAAAAAAAABtbW0AAAAAAAAAAAAAAAAAAAAAAAClpaUAAADp6ekAAAD5+fna2toAAAAMDAzv7+/Nzc0AAAA2Njb8/Pz9/f3T09MAAAAAAAD7+/sAAAArKyuxsbH39/fs7OwbGxuIiIjz8/N8fHyenp7u7u74+PgAAAC8vLxWVlbx8fF1dXXl5eVcXFyUlJTQ0NDFxcVCQkLAwMC4uLj19fXo6OjW1tarq6ve3t77+/vi4uL6+vrKysrNzc3///8w7gSSAAAAP3RSTlMAOQNdPSYBPywKexLLGPCxNEHXnzFL+v2nGwf1IEiE6dBFad9jd9PuLo1V2mDDV3Cjl06SiuXIq4C3973ym6BQMVUPAAAEXElEQVR4Ae2WCVP6OBiH05L0l1IqrVbkKHJ54I0oHn+PfP9vtUle0z/YdhbH2XVnd58ZnRJIeHiPJOx//mH4vQSAN+8FjAhFxgHIaPvJeZ99hxwEElon5iAQbj85Y98g8ODwjEOMAvGFyeE3FEKgodTBqj0BJGN9DhyNd5Ta3ean9QEopfaA+LsKhnEKRExqg4FSP6Og7oEkAjBWnxSCgBX4xF+kcLoPcOBQrSv0e5kH7s1j37jECQieCTPiFGxL5VHw2zQWCeeJiPt6kjRQw0XSkIdVChf67xGa4alSnZlT6HEQ8CK9ANbhvXUF9xlDkBfTuHDWScgC9+z5FQpPI12TlwC6+sV7ixR8CUMKiwjm2GQeOQWHMGuHGdbnObJAwCEqFJpNU5H6uaPUaEIKiQfg+PHk1+u4OwW9PlWW2ctbA4BHCtp+cNK+H8Jos4gDmC5ar4Nx9waaG/2B13NgDqS7+vm2RgEtEws82P+kwIHhs/pgkQKcFIhfd7CogtGNjYMHTLpurD0ERbYFw4JaD3GlQuNAL/JEsSAF4HqlCnaHACk4WhOn4OgCkMD5hSpYNYDJTD8Y46n+jsE1kPhVCuR6QBXhFK7MUOu9O6b1SWF3b+/9ZVWMGOlu93E8UDaAhgc7bfH+0DHqKXCkHzoNDFfU+zxiVQrUC9QXTuHYtKpN59OA3IxCG4b7jh6ZFuVockaNTW09mkJzOaPU49a6mE9cAchZpQJNpUWcwgV9r6FJswsFKrITp2B5pMBMdnS0z2HZNy2+BNKxSZxZfglkrFYBJxQnpzA5sN/HheR2aFQoZBLAi149dQoyAYYjW0hHlHguBAdMcR0DuDZ5omevX6+AI8qcU7ikKT3GBHCnXwydgmCC0tRwCnGQ2Wp6Be71yNIWfQSkOl9vAI1SBCNWrwC01RROgX7BuT2HI4r7tFAw086p/NwZEdOEa7R1uAFuNmQPuKAEAjYNQ0CyeoUEWHYBnpQVQgpvc0Ph+gsKlAnKg1+vEHsw5LKciLKCAJobiWBzYFGbCKpHqkZZrxBFHEASyFI59vJPCskcwNVGOWZAOqsrR+pKbaNeAMT1CixMEtlnsqopNxUMzVJT3tY35aXZm6a6Y9QhwMN6BUJWbE1lhbMO1WehkO7poO0sK7em9MJGxp1XSbC1gtugzzSLQmGsX7VntJGSwsPZ2d2z3bIPKzdoOp3Wzqt8G4XyMVUoFIxLx1S7+piaHtCvR3FeRVsq0GFdp9C5TbGpcNqsPqyHKxcfd14h21KhuLKUFU4f3osrC7F6uV3WXFnadL7wyAPeKDXw2RoJCO5GY4DouYvb/gepVXheLoewzPseQG9N/vzilrMIjoStE3++zvle4eSurw7XEe76ynI4aq+v7lEyt1x5awiFlFLQbHKIpabnM3eJLym4Szzzc/du7SU+zOXv9UNpECH7IoH/gecURPlN9vdQpeD47yhIFNX0U0QgvID9nENm+yxk/xb+AGAjNfRZuk9qAAAAAElFTkSuQmCC);
+			background-repeat:no-repeat;
+			background-position: 0 0 ;
+			background-size: 65px 20px;
+		}
+	}
+}
+
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.MiniMap.less b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.MiniMap.less
new file mode 100644
index 0000000000000000000000000000000000000000..06efae998602211a11455493b5accbf6ba4c4e88
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.MiniMap.less
@@ -0,0 +1,70 @@
+.tl-map {
+	.leaflet-container {
+		.leaflet-bottom {
+			.leaflet-control-minimap {
+				margin-left:10px;
+				margin-bottom:25px;
+			}
+		}
+		.leaflet-top {
+			.leaflet-control-minimap {
+				margin-left:10px;
+				margin-top:10px;
+			}
+		}
+		.leaflet-control-minimap {
+		    border:solid #FFF 2px;
+		    .box-shadow(1px 1px 7px rgba(0,0,0,.30));
+		    .border-radius(3px);
+		    //background: #f8f8f9;
+			background-color: darken(@color-background,30);
+		    transition: all .2s;
+			border: 2px solid darken(@color-background,30);
+		}
+
+		.leaflet-control-minimap a {
+		    background-color: darken(@color-background,30);
+		    //background-repeat: no-repeat;
+		    z-index: 99999;
+		    transition: all .2s;
+		    border-radius: 3px 0px 0px 0px;
+		}
+
+		.leaflet-control-minimap a.minimized {
+		    -webkit-transform: rotate(180deg);
+		    transform: rotate(180deg);
+		   // border-radius: 0px;
+		}
+
+		.leaflet-control-minimap-toggle-display {
+		    //background-image: url("images/toggle.png");
+		    height: 19px;
+		    width: 19px;
+		    position: absolute;
+		    bottom: 0;
+		    right: 0; 
+			border: 1px solid darken(@color-background,30);
+			background-color:darken(@color-background,50);
+		}
+		.leaflet-control-minimap-toggle-display:after {
+			font-family: 'tl-icons';
+			speak: none;
+			font-style: normal;
+			font-weight: normal;
+			font-variant: normal;
+			text-transform: none;
+			line-height: 1;
+		
+			/* Better Font Rendering =========== */
+			-webkit-font-smoothing: antialiased;
+			-moz-osx-font-smoothing: grayscale;
+		
+			//color: darken(@color-background,50);
+			color:#FFF;
+			font-size: 20px;
+			content: "\e647";
+		}
+	}
+}
+
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.less b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.less
new file mode 100644
index 0000000000000000000000000000000000000000..1232550253c9af7245e45be0214a8efc5089e8f2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Leaflet.less
@@ -0,0 +1,478 @@
+/* required styles */
+
+.leaflet-map-pane,
+.leaflet-tile,
+.leaflet-marker-icon,
+.leaflet-marker-shadow,
+.leaflet-tile-pane,
+.leaflet-tile-container,
+.leaflet-overlay-pane,
+.leaflet-shadow-pane,
+.leaflet-marker-pane,
+.leaflet-popup-pane,
+.leaflet-overlay-pane svg,
+.leaflet-zoom-box,
+.leaflet-image-layer,
+.leaflet-layer {
+	position: absolute;
+	left: 0;
+	top: 0;
+	}
+.leaflet-container {
+	overflow: hidden;
+	-ms-touch-action: none;
+	}
+.leaflet-tile,
+.leaflet-marker-icon,
+.leaflet-marker-shadow {
+	-webkit-user-select: none;
+	   -moz-user-select: none;
+	        user-select: none;
+	-webkit-user-drag: none;
+	}
+.leaflet-marker-icon,
+.leaflet-marker-shadow {
+	display: block;
+	}
+/* map is broken in FF if you have max-width: 100% on tiles */
+.leaflet-container img {
+	max-width: none !important;
+	}
+/* stupid Android 2 doesn't understand "max-width: none" properly */
+.leaflet-container img.leaflet-image-layer {
+	max-width: 15000px !important;
+	}
+.leaflet-tile {
+	filter: inherit;
+	visibility: hidden;
+	}
+.leaflet-tile-loaded {
+	visibility: inherit;
+	}
+.leaflet-zoom-box {
+	width: 0;
+	height: 0;
+	}
+/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
+.leaflet-overlay-pane svg {
+	-moz-user-select: none;
+	}
+
+.leaflet-tile-pane    { z-index: 2; }
+.leaflet-objects-pane { z-index: 3; }
+.leaflet-overlay-pane { z-index: 4; }
+.leaflet-shadow-pane  { z-index: 5; }
+.leaflet-marker-pane  { z-index: 6; }
+.leaflet-popup-pane   { z-index: 7; }
+
+.leaflet-vml-shape {
+	width: 1px;
+	height: 1px;
+	}
+.lvml {
+	behavior: url(#default#VML);
+	display: inline-block;
+	position: absolute;
+	}
+
+
+/* control positioning */
+
+.leaflet-control {
+	position: relative;
+	z-index: 7;
+	pointer-events: auto;
+	}
+.leaflet-top,
+.leaflet-bottom {
+	position: absolute;
+	z-index: 1000;
+	pointer-events: none;
+	}
+.leaflet-top {
+	top: 0;
+	}
+.leaflet-right {
+	right: 0;
+	}
+.leaflet-bottom {
+	bottom: 0;
+	}
+.leaflet-left {
+	left: 0;
+	}
+.leaflet-control {
+	float: left;
+	clear: both;
+	}
+.leaflet-right .leaflet-control {
+	float: right;
+	}
+.leaflet-top .leaflet-control {
+	margin-top: 10px;
+	}
+.leaflet-bottom .leaflet-control {
+	margin-bottom: 10px;
+	}
+.leaflet-left .leaflet-control {
+	margin-left: 10px;
+	}
+.leaflet-right .leaflet-control {
+	margin-right: 10px;
+	}
+
+
+/* zoom and fade animations */
+
+.leaflet-fade-anim .leaflet-tile,
+.leaflet-fade-anim .leaflet-popup {
+	opacity: 0;
+	-webkit-transition: opacity 0.2s linear;
+	   -moz-transition: opacity 0.2s linear;
+	     -o-transition: opacity 0.2s linear;
+	        transition: opacity 0.2s linear;
+	}
+.leaflet-fade-anim .leaflet-tile-loaded,
+.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
+	opacity: 1;
+	}
+
+.leaflet-zoom-anim .leaflet-zoom-animated {
+	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
+	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
+	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
+	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
+	}
+.leaflet-zoom-anim .leaflet-tile,
+.leaflet-pan-anim .leaflet-tile,
+.leaflet-touching .leaflet-zoom-animated {
+	-webkit-transition: none;
+	   -moz-transition: none;
+	     -o-transition: none;
+	        transition: none;
+	}
+
+.leaflet-zoom-anim .leaflet-zoom-hide {
+	visibility: hidden;
+	}
+
+
+/* cursors */
+
+.leaflet-clickable {
+	cursor: pointer;
+	}
+.leaflet-container {
+	cursor: -webkit-grab;
+	cursor:    -moz-grab;
+	}
+.leaflet-popup-pane,
+.leaflet-control {
+	cursor: auto;
+	}
+.leaflet-dragging .leaflet-container,
+.leaflet-dragging .leaflet-clickable {
+	cursor: move;
+	cursor: -webkit-grabbing;
+	cursor:    -moz-grabbing;
+	}
+
+
+/* visual tweaks */
+
+.leaflet-container {
+	background: #ddd;
+	outline: 0;
+	}
+.leaflet-container a {
+	color: #0078A8;
+	}
+.leaflet-container a.leaflet-active {
+	outline: 2px solid orange;
+	}
+.leaflet-zoom-box {
+	border: 2px dotted #38f;
+	background: rgba(255,255,255,0.5);
+	}
+
+
+/* general typography */
+.leaflet-container {
+	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
+	}
+
+
+/* general toolbar styles */
+
+.leaflet-bar {
+	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
+	border-radius: 4px;
+	}
+.leaflet-bar a,
+.leaflet-bar a:hover {
+	background-color: #fff;
+	border-bottom: 1px solid #ccc;
+	width: 26px;
+	height: 26px;
+	line-height: 26px;
+	display: block;
+	text-align: center;
+	text-decoration: none;
+	color: black;
+	}
+.leaflet-bar a,
+.leaflet-control-layers-toggle {
+	background-position: 50% 50%;
+	background-repeat: no-repeat;
+	display: block;
+	}
+.leaflet-bar a:hover {
+	background-color: #f4f4f4;
+	}
+.leaflet-bar a:first-child {
+	border-top-left-radius: 4px;
+	border-top-right-radius: 4px;
+	}
+.leaflet-bar a:last-child {
+	border-bottom-left-radius: 4px;
+	border-bottom-right-radius: 4px;
+	border-bottom: none;
+	}
+.leaflet-bar a.leaflet-disabled {
+	cursor: default;
+	background-color: #f4f4f4;
+	color: #bbb;
+	}
+
+.leaflet-touch .leaflet-bar a {
+	width: 30px;
+	height: 30px;
+	line-height: 30px;
+	}
+
+
+/* zoom control */
+
+.leaflet-control-zoom-in,
+.leaflet-control-zoom-out {
+	font: bold 18px 'Lucida Console', Monaco, monospace;
+	text-indent: 1px;
+	}
+.leaflet-control-zoom-out {
+	font-size: 20px;
+	}
+
+.leaflet-touch .leaflet-control-zoom-in {
+	font-size: 22px;
+	}
+.leaflet-touch .leaflet-control-zoom-out {
+	font-size: 24px;
+	}
+
+
+/* layers control */
+
+.leaflet-control-layers {
+	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
+	background: #fff;
+	border-radius: 5px;
+	}
+.leaflet-control-layers-toggle {
+	background-image: url(images/layers.png);
+	width: 36px;
+	height: 36px;
+	}
+.leaflet-retina .leaflet-control-layers-toggle {
+	background-image: url(images/layers-2x.png);
+	background-size: 26px 26px;
+	}
+.leaflet-touch .leaflet-control-layers-toggle {
+	width: 44px;
+	height: 44px;
+	}
+.leaflet-control-layers .leaflet-control-layers-list,
+.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
+	display: none;
+	}
+.leaflet-control-layers-expanded .leaflet-control-layers-list {
+	display: block;
+	position: relative;
+	}
+.leaflet-control-layers-expanded {
+	padding: 6px 10px 6px 6px;
+	color: #333;
+	background: #fff;
+	}
+.leaflet-control-layers-selector {
+	margin-top: 2px;
+	position: relative;
+	top: 1px;
+	}
+.leaflet-control-layers label {
+	display: block;
+	}
+.leaflet-control-layers-separator {
+	height: 0;
+	border-top: 1px solid #ddd;
+	margin: 5px -10px 5px -6px;
+	}
+
+
+/* attribution and scale controls */
+
+.leaflet-container .leaflet-control-attribution {
+	background: #fff;
+	background: rgba(255, 255, 255, 0.7);
+	margin: 0;
+	}
+.leaflet-control-attribution,
+.leaflet-control-scale-line {
+	padding: 0 5px;
+	color: #333;
+	}
+.leaflet-control-attribution a {
+	text-decoration: none;
+	}
+.leaflet-control-attribution a:hover {
+	text-decoration: underline;
+	}
+.leaflet-container .leaflet-control-attribution,
+.leaflet-container .leaflet-control-scale {
+	font-size: 11px;
+	}
+.leaflet-left .leaflet-control-scale {
+	margin-left: 5px;
+	}
+.leaflet-bottom .leaflet-control-scale {
+	margin-bottom: 5px;
+	}
+.leaflet-control-scale-line {
+	border: 2px solid #777;
+	border-top: none;
+	line-height: 1.1;
+	padding: 2px 5px 1px;
+	font-size: 11px;
+	white-space: nowrap;
+	overflow: hidden;
+	-moz-box-sizing: content-box;
+	     box-sizing: content-box;
+
+	background: #fff;
+	background: rgba(255, 255, 255, 0.5);
+	}
+.leaflet-control-scale-line:not(:first-child) {
+	border-top: 2px solid #777;
+	border-bottom: none;
+	margin-top: -2px;
+	}
+.leaflet-control-scale-line:not(:first-child):not(:last-child) {
+	border-bottom: 2px solid #777;
+	}
+
+.leaflet-touch .leaflet-control-attribution,
+.leaflet-touch .leaflet-control-layers,
+.leaflet-touch .leaflet-bar {
+	box-shadow: none;
+	}
+.leaflet-touch .leaflet-control-layers,
+.leaflet-touch .leaflet-bar {
+	border: 2px solid rgba(0,0,0,0.2);
+	background-clip: padding-box;
+	}
+
+
+/* popup */
+
+.leaflet-popup {
+	position: absolute;
+	text-align: center;
+	}
+.leaflet-popup-content-wrapper {
+	padding: 1px;
+	text-align: left;
+	border-radius: 12px;
+	}
+.leaflet-popup-content {
+	margin: 13px 19px;
+	line-height: 1.4;
+	}
+.leaflet-popup-content p {
+	margin: 18px 0;
+	}
+.leaflet-popup-tip-container {
+	margin: 0 auto;
+	width: 40px;
+	height: 20px;
+	position: relative;
+	overflow: hidden;
+	}
+.leaflet-popup-tip {
+	width: 17px;
+	height: 17px;
+	padding: 1px;
+
+	margin: -10px auto 0;
+
+	-webkit-transform: rotate(45deg);
+	   -moz-transform: rotate(45deg);
+	    -ms-transform: rotate(45deg);
+	     -o-transform: rotate(45deg);
+	        transform: rotate(45deg);
+	}
+.leaflet-popup-content-wrapper,
+.leaflet-popup-tip {
+	background: white;
+
+	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
+	}
+.leaflet-container a.leaflet-popup-close-button {
+	position: absolute;
+	top: 0;
+	right: 0;
+	padding: 4px 4px 0 0;
+	text-align: center;
+	width: 18px;
+	height: 14px;
+	font: 16px/14px Tahoma, Verdana, sans-serif;
+	color: #c3c3c3;
+	text-decoration: none;
+	font-weight: bold;
+	background: transparent;
+	}
+.leaflet-container a.leaflet-popup-close-button:hover {
+	color: #999;
+	}
+.leaflet-popup-scrolled {
+	overflow: auto;
+	border-bottom: 1px solid #ddd;
+	border-top: 1px solid #ddd;
+	}
+
+.leaflet-oldie .leaflet-popup-content-wrapper {
+	zoom: 1;
+	}
+.leaflet-oldie .leaflet-popup-tip {
+	width: 24px;
+	margin: 0 auto;
+
+	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
+	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
+	}
+.leaflet-oldie .leaflet-popup-tip-container {
+	margin-top: -1px;
+	}
+
+.leaflet-oldie .leaflet-control-zoom,
+.leaflet-oldie .leaflet-control-layers,
+.leaflet-oldie .leaflet-popup-content-wrapper,
+.leaflet-oldie .leaflet-popup-tip {
+	border: 1px solid #999;
+	}
+
+
+/* div icon */
+
+.leaflet-div-icon {
+	background: #fff;
+	border: 1px solid #666;
+	}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Map.Leaflet.less b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Map.Leaflet.less
new file mode 100644
index 0000000000000000000000000000000000000000..4ce71d92a520804433764be6e345beb1babd3f65
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/map/leaflet/TL.Map.Leaflet.less
@@ -0,0 +1,213 @@
+/* Requires Variables.less
+================================================== */
+.tl-map {
+	/*
+	.leaflet-zoom-anim .leaflet-zoom-animated {
+		-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25,0.1,0.25,0.75);
+		   -moz-transition: -moz-transform 0.8s cubic-bezier(0.25,0.1,0.25,0.75);
+		     -o-transition: -o-transform 0.8s cubic-bezier(0.25,0.1,0.25,0.75);
+		        transition: transform 0.8s cubic-bezier(0.25,0.1,0.25,0.75);
+	}
+	*/
+	/*
+	.leaflet-zoom-anim .leaflet-zoom-animated {
+		-webkit-transition: -webkit-transform 1s cubic-bezier(1, 0, 0, 1);
+		   -moz-transition: -moz-transform 1s cubic-bezier(1, 0, 0, 1);
+		     -o-transition: -o-transform 1s cubic-bezier(1, 0, 0, 1);
+		        transition: transform 1s cubic-bezier(1, 0, 0, 1); 
+	}
+	*/
+	
+	.leaflet-container {
+		.leaflet-control-attribution {
+			color:#999;
+			margin-bottom:3px !important;
+			a {
+				color: #666;
+			}
+			.tl-knightlab-brand, a.tl-knightlab-brand {
+				margin-left:5px;
+				//color:@color-theme;
+				text-shadow: 0px 0px 1px #FFF, 0px 0px 1px #FFF, 0px 0px 5px #FFF;
+				font-size: 14px;
+				font-weight:bold;
+				span {
+					color:@color-theme;
+					display:inline-block;
+					transform:rotate(45deg);
+					-ms-transform:rotate(45deg); /* IE 9 */
+					-webkit-transform:rotate(45deg); /* Opera, Chrome, and Safari */
+				}
+				&:hover {
+					text-decoration:none;
+					color:lighten(@color-theme, 15);
+					//text-shadow: 0px 0px 0px #000;
+				}
+			}
+		}
+		img.leaflet-image-layer {
+		    max-width: none !important;
+		}
+
+		
+	}
+	.leaflet-overlay-pane {
+		z-index:auto;
+		.leaflet-image-layer {
+			z-index:-1;
+		}
+		svg {
+			z-index:4;
+		}
+	}
+	.leaflet-fade-anim .leaflet-tile,
+	.leaflet-fade-anim .leaflet-popup {
+		opacity: 0;
+		-webkit-transition: opacity 0.5s linear;
+		   -moz-transition: opacity 0.5s linear;
+		     -o-transition: opacity 0.5s linear;
+		        transition: opacity 0.5s linear;
+	}
+	.leaflet-fade-anim .leaflet-tile-loaded,
+	.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
+		opacity: 1;
+	}
+	.leaflet-zoom-anim .leaflet-zoom-animated {
+		-webkit-transition: -webkit-transform 1s cubic-bezier(0.75, 0.1, 0.2, 1);
+		   -moz-transition: -moz-transform 1s cubic-bezier(0.75, 0.1, 0.2, 1);
+		     -o-transition: -o-transform 1s cubic-bezier(0.75, 0.1, 0.2, 1);
+		        transition: transform 1s cubic-bezier(0.75, 0.1, 0.2, 1); 
+		-webkit-transform: translateZ(0);
+		-webkit-perspective: 1000;
+		-webkit-backface-visibility: hidden;
+	}
+	/*
+	.leaflet-zoom-anim .leaflet-zoom-animated {
+		-webkit-transition: none;
+		   -moz-transition: none;
+		     -o-transition: none;
+		        transition: none; 
+	}
+	*/
+	.leaflet-bottom {
+		bottom: 0;
+	}
+	.leaflet-right {
+		left: 0;
+		right:auto;
+	}
+	.leaflet-container .leaflet-control-attribution{
+		background-color:transparent;
+		box-shadow:none;
+		margin:0;
+		border:none;
+		font-size: 10px;
+	}
+	
+	.leaflet-container {
+		//background-color: @color-foreground;
+		background-color: transparent;
+		//background: @color-foreground url("cartographer.jpg") repeat;
+		
+	}
+	
+	.leaflet-popup-content-wrapper {
+		display:none;
+		.border-radius(5px);
+		border: 1px solid darken(@ui-background-color, 15);
+		.box-shadow();
+		.box-shadow(1px 1px 2px rgba(0,0,0,.30));
+		//background: @color-foreground;
+		//.translucent-background(@color-foreground, 0.75);
+		.leaflet-popup-content {
+			margin:7px;
+			h4 {
+				margin:0;
+				font-weight:normal;
+				//color:@color-background;
+			}
+		}
+	}
+	.leaflet-popup-tip-container {
+		margin: 0 auto;
+		width: 40px;
+		height: 20px;
+		position: relative;
+		overflow: hidden;
+		display:none;
+	}
+	
+	.leaflet-bar {
+		.box-shadow(none);
+	}
+	
+	
+
+}
+
+/* Landscape
+================================================== */
+.tl-layout-landscape {
+	.tl-map {
+		.leaflet-bottom {
+			bottom: 0;
+			//top: auto;
+		}
+		.leaflet-right {
+			left: 0;
+			right:auto;
+		}
+		.leaflet-top {
+			bottom: 0;
+			top: 28px;
+		}
+		.leaflet-left {
+			//left: 0;
+			//right:auto;
+		}
+	}
+	
+}
+.tl-layout-portrait {
+	.leaflet-control-container {
+		
+	}
+	.leaflet-bottom {
+		//position:relative;
+		bottom: 0;
+		top: auto;
+	}
+}
+/* Mobile, iPhone and skinny
+================================================== */
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	
+}
+.tl-mobile.tl-skinny {
+	.leaflet-control-zoom, .leaflet-control-layers {
+		display:none;
+	}
+	.leaflet-container {
+		.leaflet-control-attribution {
+			font-size:8px;
+			.tl-knightlab-brand, a.tl-knightlab-brand {
+				font-size:8px;
+			}
+		}
+	}
+}
+.tl-skinny {
+	
+	.leaflet-container .leaflet-control-attribution{
+		background-color:transparent;
+		box-shadow:none;
+		margin:0;
+		border:none;
+		font-size:8px;
+		.tl-knightlab-brand, a.tl-knightlab-brand {
+			font-size:12px;
+		}
+		//font-size: 6px !important;
+	}
+}
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/TL.Media.less b/public/opac/TimelineJS3-3.5.1/source/less/media/TL.Media.less
new file mode 100644
index 0000000000000000000000000000000000000000..a22a35b6e481503b8f3dadffcfb154fc88331f87
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/TL.Media.less
@@ -0,0 +1,192 @@
+/* Requires Variables.less
+================================================== */
+.tl-media {
+	//display:table-cell;
+	//vertical-align:middle;
+	width:100%;
+	min-width:50%;
+	height:100%;
+	float: left;
+	margin-top:auto;
+	margin-bottom:auto;
+	position:relative;
+	//margin-right:auto;
+	.tl-media-content-container {
+		&.tl-media-content-container-text {
+			border-right: 1px solid @ui-background-color-darker;
+			padding-right:20px;
+		}
+		.tl-media-content{
+			position: relative;
+			.clearfix();
+			
+			.tl-media-loaderror {
+				p {
+					color:@ui-background-color;
+					span {
+						color:@ui-background-color;
+					}
+					text-align:center;
+					em {
+		
+					}
+				}
+				[class^="tl-icon-"], [class*=" tl-icon-"] {
+					font-size:@base-font-size-xlarge;
+					color:@ui-background-color;
+					text-align:center;
+				}
+			}
+			
+			img, embed, object, video {
+				max-width: 100%;
+				max-height:100%;
+			}
+			
+		}
+	}
+}
+
+/* Media Only Slides 
+================================================== */
+.tl-slide-media-only {
+	.tl-media {
+		.tl-media-content-container {
+			&.tl-media-content-container-text {
+				border-right: none;
+				padding-right:0;
+			}
+		}
+	}
+	
+}
+
+/* Media Shodow 
+================================================== */
+
+.tl-media-shadow {
+	position: relative;
+	z-index: 1;
+	//display:block;
+	//background:@color-background;
+	//.box-shadow(1px 1px 7px rgba(0,0,0,.50));
+	.box-shadow(0 12px 10px -10px rgba(0,0,0,.60));
+	
+}
+
+.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {
+	a, .vcard a {
+		.slide-text-shadow();
+		color: lighten(@color-theme, 90%);
+	}
+}
+/* Credit
+================================================== */
+.tl-credit {
+	color: #999999;
+	text-align: right;
+	display: block;
+	margin: 0 auto;
+	margin-top: 6px;
+	font-size: @base-font-size-small - 1;
+	line-height: 13px;
+}
+
+/* Caption
+================================================== */
+.tl-caption {
+	text-align: left;
+	margin-right: auto;
+	margin-left: auto;
+	margin-top: 10px;
+	color: #666666;
+	font-size: @base-font-size-small;
+	line-height: 14px;
+	text-rendering: optimizeLegibility;
+	word-wrap: break-word;
+}
+
+/* Full Image Background
+================================================== */
+.tl-full-image-background, .tl-full-color-background {
+	
+	.tl-media-shadow:before, .tl-media-shadow:after {
+		background: none;
+		.box-shadow(0 0px 0px #000);
+	}
+	
+}
+.tl-full-image-background {
+
+}
+
+.tl-full-color-background {
+	
+}
+
+
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-media {
+		width:100%;
+		height:auto;
+		float: none;
+		display:block;
+		.tl-media-content-container {
+			&.tl-media-content-container-text {
+				border-right: 0;
+				padding-right:0;
+			}
+			.tl-media-content{
+		
+			}
+			
+			.tl-credit, .tl-caption {
+				margin-top: 2px;
+				padding-left:10px;
+				padding-right:10px;
+				font-size:8px;
+			}
+			.tl-credit {
+				margin-top: 0px;
+			}
+		}
+	}
+}
+
+
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-media {
+		width:100%;
+		height:auto;
+		float: none;
+		display:block;
+		
+		.tl-media-content-container {
+			&.tl-media-content-container-text {
+				border-right: 0;
+				padding-right:0;
+			}
+			.tl-media-content{
+				
+			}
+			.tl-credit {
+		
+			}
+			.tl-caption {
+		
+			}
+			
+		}
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Blockquote.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Blockquote.less
new file mode 100644
index 0000000000000000000000000000000000000000..246767032fa35f8448508d3a9b85463f640d6820
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Blockquote.less
@@ -0,0 +1,88 @@
+.tl-media {
+	.tl-media-blockquote {
+		text-align:left;
+		clear:both;
+		
+		blockquote {
+			margin:0;
+			margin-right: 	@base-spacing;
+			text-align: 	left;
+			font-size: 		@base-font-size-xlarge;
+			line-height: 	floor(@base-font-size-xlarge * 1.1);
+			color:			@color-foreground;
+			p {
+				font-size: 		@base-font-size-xlarge;
+				line-height: 	floor(@base-font-size-xlarge * 1.1);
+				color:			@color-foreground;
+				&:before, &:after {
+					display:inline-block;
+					font-size: 		floor(@base-font-size-xlarge * 1.3);
+					//line-height: 	floor(@base-font-size-xlarge * 1.1);
+					//color:			lighten(@color-foreground,50);
+					//width:@base-font-size-xlarge;
+					//height:@base-font-size-xlarge;
+				}
+				&:before {
+					content: open-quote;
+					margin-right:5px;
+				}
+				&:after {
+					content: close-quote;
+					margin-left:3px;
+				} 
+			}
+			cite {
+				font-size: 		@base-font-size;
+				line-height:	floor(@base-font-size * @base-line-height);
+				//color:			@color-foreground;
+				color: 			lighten(@color-foreground, 40%);
+				text-align: 	right;
+				margin-top: 	@base-spacing;
+			}
+
+		}
+
+
+	}
+
+}
+.tl-slide-media-only {
+	.tl-media {
+		.tl-media-blockquote {
+			border-right: 0;
+			width:80%;
+			margin-left:auto;
+			margin-right:auto;
+		}
+	}
+}
+// Skinnier
+@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
+	.tl-media {
+		.tl-media-blockquote {
+			
+			blockquote {
+				p {
+					font-size: 		@base-font-size-large;
+					line-height:	floor(@base-font-size-large * 1.1);
+				}
+			}
+		}
+
+	}
+}
+// Mobile, iPhone and skinny
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-media {
+		.tl-media-blockquote {
+			
+			blockquote {
+				p {
+					font-size: 		@base-font-size;
+					line-height:	floor(@base-font-size * @base-line-height);
+				}
+			}
+		}
+
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Flickr.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Flickr.less
new file mode 100644
index 0000000000000000000000000000000000000000..1c5716a5088239783a3f807281aeaf43f08b50bb
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Flickr.less
@@ -0,0 +1,16 @@
+.tl-media {
+	.tl-media-image {
+		
+	}
+
+}
+
+// Mobile, iPhone and skinny
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-media {
+		.tl-media-image {
+		
+		}
+
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.IFrame.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.IFrame.less
new file mode 100644
index 0000000000000000000000000000000000000000..9d62e8ccfdcb33c803bc830106c615272e9a2193
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.IFrame.less
@@ -0,0 +1,21 @@
+.tl-media {
+	.tl-media-iframe {
+		width: 100%;
+		height: 100%;
+		iframe {
+			width: 100%;
+			height: 100%;
+		}
+	}
+
+}
+
+// Mobile, iPhone and skinny
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-media {
+		.tl-media-iframe {
+		
+		}
+
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Image.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Image.less
new file mode 100644
index 0000000000000000000000000000000000000000..9442d7dbd1afbd4cb91576b8d25e6d455bb80b18
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Image.less
@@ -0,0 +1,15 @@
+.tl-media {
+	.tl-media-image {
+		
+	}
+
+}
+
+.tl-mobile.tl-skinny {
+	.tl-media {
+		.tl-media-image {
+			max-height:250px !important;
+		}
+
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Instagram.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Instagram.less
new file mode 100644
index 0000000000000000000000000000000000000000..4d97eeafff6c94ee2cff453a38f15ac4d938a398
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Instagram.less
@@ -0,0 +1,16 @@
+.tl-media {
+	.tl-media-instagram {
+		
+	}
+
+}
+
+
+.tl-mobile.tl-skinny {
+	.tl-media {
+		.tl-media-instagram {
+			max-height:250px !important;
+		}
+
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Profile.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Profile.less
new file mode 100644
index 0000000000000000000000000000000000000000..10b7ff8d0ae70d41a18c948a8c5864de87aff6e9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Profile.less
@@ -0,0 +1,16 @@
+.tl-media {
+	.tl-media-profile {
+		border-radius: 50%;
+	}
+
+}
+
+// Mobile, iPhone and skinny
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-media {
+		.tl-media-profile {
+		
+		}
+
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Text.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Text.less
new file mode 100644
index 0000000000000000000000000000000000000000..65ddce3986a5453e6c54117cbd55a0efd3a6d79c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Text.less
@@ -0,0 +1,116 @@
+/* Requires Variables.less
+================================================== */
+
+.tl-text {
+	width:50%;
+	max-width:50%;
+	min-width:120px;
+	padding: 0 20px 0 20px;
+	display:table-cell;
+	vertical-align:middle;
+	text-align: left;
+	//float:left;
+	text-shadow: none;
+	color:@color-text;
+	p {
+		color:@color-text;
+	}
+	.tl-text-content-container {
+		.tl-text-content{
+		
+		}
+	}
+	h2.tl-headline-title, h2.tl-headline {
+		margin-top:0;
+	}
+	.tl-headline-date, h3.tl-headline-date {
+		font-family:@font-main;
+		font-size:@base-font-size;
+		line-height: @base-font-size;
+		font-weight: normal;
+		margin:0 0 3px 0;
+		color: lighten(@color-text,25);
+		small {
+			font-size:@base-font-size;
+			line-height: @base-font-size;
+			font-weight: normal;
+			color: lighten(@color-text,25);
+		}
+	}
+	.tl-text-date {
+		display:inline-block;
+		font-family:@font-main;
+		font-weight:normal;
+		margin-top:10px;
+		font-size:12px;
+		color: lighten(@color-text,25);
+		&:after {
+			//margin-left:3px;
+			//color:#999;
+			//font-weight:normal;
+		}
+	}
+
+}
+
+// When the background is an image
+.tl-full-image-background, .tl-full-color-background {
+	.tl-text, .tl-text p {
+		color: @color-text-inverted !important;
+		text-shadow: 1px 1px 2px #000;
+		.tl-headline-date, h3.tl-headline-date {
+			color: @color-text-inverted !important;
+			small {
+				color: @color-text-inverted !important;
+			}
+		}
+
+	}
+}
+
+
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-text {
+		width:100%;
+		max-width:100%;
+		min-width:auto;
+		float:none;
+		margin-top:20px;
+		.tl-text-content-container {
+			.tl-text-content{
+		
+			}
+		}
+		h2.tl-headline-title, h2.tl-headline {
+			//word-break: break-all;
+			font-size:32px;
+			line-height:36px;
+		}
+	}
+}
+
+/* Medium
+================================================== */
+.tl-medium {
+	.tl-text {
+		h2.tl-headline-title, h2.tl-headline {
+			//word-break: break-all;
+			font-size:32px;
+			line-height:36px;
+		}
+	}
+}
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Twitter.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Twitter.less
new file mode 100644
index 0000000000000000000000000000000000000000..c4d3bcd7266999db0bf4e622055eeef61b61300d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Twitter.less
@@ -0,0 +1,86 @@
+.tl-media {
+	.tl-media-twitter {
+		text-align:left;
+		//margin-left: auto;
+		//margin-right: auto;
+		//margin-bottom:@base-space;
+		clear:both;
+		blockquote {
+			margin:0;
+			margin-right: 	@base-spacing;
+			font-size: 		@base-font-size;
+			line-height:	floor(@base-font-size * @base-line-height);
+			color:			@color-foreground;
+			p {
+				font-size: 		@base-font-size-xlarge;
+				line-height: 	floor(@base-font-size-xlarge * 1.1);
+				color:			@color-dark;
+			}
+			.quote-mark {
+				
+			}
+		}
+		blockquote p:before {
+			display:none;
+		}
+		blockquote p:after {
+			display:none;
+		}
+		
+		.tl-icon-twitter {
+			color:#55ACEE;
+		}
+		.vcard {
+			a:hover, a.tl-date:hover {
+				text-decoration: none;
+				color:#55ACEE;
+				.fn, .nickname {
+					color:#55ACEE;
+				}
+			}
+		}
+		
+		
+
+	}
+
+}
+.tl-slide-media-only {
+	.tl-media {
+		.tl-media-twitter {
+			width:80%;
+			margin-left:auto;
+			margin-right:auto;
+		}
+	}
+}
+.tl-mobile.tl-skinny {
+	.tl-media {
+		.tl-media-twitter {
+			
+			blockquote {
+				p {
+					font-size: 		@base-font-size;
+					line-height:	floor(@base-font-size * @base-line-height);
+				}
+			}
+		}
+
+	}
+}
+.tl-skinny {
+	
+	.tl-media {
+		.tl-media-twitter {
+			margin-left:10px;
+			margin-right:10px;
+			blockquote {
+				p {
+					font-size: 		@base-font-size-large;
+					line-height:	floor(@base-font-size-large * 1.1);
+				}
+			}
+		}
+
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Website.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Website.less
new file mode 100644
index 0000000000000000000000000000000000000000..ec555eec5086cf7d38805ac0ec06b4f017f51d35
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Website.less
@@ -0,0 +1,81 @@
+.tl-media {
+	.tl-media-website {
+		//font-size: @base-font;
+		//line-height: @base-line;
+		text-align:left;
+		margin-left: auto;
+		margin-right: auto;
+		//margin-bottom:@base-space;
+		clear:both;
+		.tl-media-website-description { 
+			//margin-bottom:@base-space;
+			font-size: 16px;
+			line-height: 19px;
+			font-style: italic;
+			margin-bottom:10px;
+			text-transform: uppercase;
+		}
+		h4 {
+			margin-top:0px;
+			//border-bottom: 1px solid @color-line;
+			margin-bottom:0px;
+			line-height:1; 
+		}
+		h4 a {
+			color:@color-dark; //@color-theme;
+			text-decoration: none;
+		}
+		h4 a:hover {
+			text-decoration: underline;
+		}
+		
+		p {
+			font-size: 13px;
+			line-height: 19px;
+		}
+		
+	}
+	.tl-media-content-container {
+		.tl-media-content {
+			.tl-media-website {
+				img {
+					float: right;
+					max-width: 120px;
+					max-height: 120px;
+					margin: 4px 0 0 15px;
+					&.tl-media-website-icon {
+						max-width: 16px;
+						max-height: 16px;
+						float:none;
+						margin:0;
+						margin-right:3px;
+					}
+				}
+				
+			}
+		}
+	}
+
+}
+.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {
+	.tl-media {
+		.tl-media-website {
+			padding:20px;
+			.background-color-opacity(0,0,0, 60);
+			.border-radius(7px);
+			h4 a {
+				.slide-text-shadow();
+			}
+		}
+	}
+}
+// Mobile, iPhone and skinny
+.tl-mobile.tl-skinny {
+	.tl-media {
+		.tl-media-website {
+			margin-left: 10px;
+			margin-right: 10px;
+		}
+		
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Wikipedia.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Wikipedia.less
new file mode 100644
index 0000000000000000000000000000000000000000..0fabe42e2fa7cbcd9a827e7458e2c82f8a6d7267
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.Wikipedia.less
@@ -0,0 +1,105 @@
+.tl-media {
+	.tl-media-wikipedia {
+		//font-size: @base-font;
+		//line-height: @base-line;
+		text-align:left;
+		margin-left: auto;
+		margin-right: auto;
+		//margin-bottom:@base-space;
+		clear:both;
+		.tl-icon-wikipedia {
+			font-size:32px;
+			margin-right:10px;
+			//margin-bottom:10px;
+			float:left;
+			padding-top:3px;
+			//padding-right:10px;
+			
+			//border-right: 1px solid @ui-background-color-darker;
+		}
+		.tl-wikipedia-pageimage {
+			float:left;
+			margin-right:10px;
+			margin-bottom:5px;
+			margin-top:5px;
+		}
+		.tl-wikipedia-title {
+			margin-left:60px;
+			padding-left:10px;
+			border-left: 1px solid @ui-background-color-darker;
+			margin-bottom:10px;
+		}
+		.tl-wikipedia-source { 
+			//margin-bottom:@base-space;
+			font-size: 13px;
+			line-height: 15px;
+			font-style: italic;
+			//margin-top:10px;
+			margin-top:3px;
+			display:block;
+			//margin-left:70px;
+			color:fadeout(@color-dark, 50);
+		}
+		h4 {
+			margin-top:0px;
+			//border-bottom: 1px solid @color-line;
+			margin-bottom:0px;
+			//margin-left:70px;
+		}
+		h4 a {
+			color:@color-dark; //@color-theme;
+			text-decoration: none;
+		}
+		h4 a:hover {
+			text-decoration: underline;
+		}
+		
+		p {
+			font-size: 13px;
+			line-height: 19px;
+		}
+		
+	}
+
+}
+.tl-slide-media-only {
+	.tl-media {
+		.tl-media-wikipedia {
+			border-right: 0;
+			border-top: 1px solid @ui-background-color-darker;
+			width:80%;
+			margin-left:auto;
+			margin-right:auto;
+			margin-top:25px;
+			padding-top:25px;
+		}
+	}
+}
+.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {
+	.tl-media {
+		.tl-media-wikipedia {
+			padding:20px;
+			.background-color-opacity(0,0,0, 60);
+			.border-radius(7px);
+			h4 a {
+				.slide-text-shadow();
+			}
+			.tl-wikipedia-title {
+				border-color: fadeout(@ui-background-color-darker,75);
+			}
+			.tl-wikipedia-source { 
+				color:fadeout(@ui-background-color-darker,15);
+			}
+		}
+	}
+}
+// Mobile, iPhone and skinny
+.tl-mobile.tl-skinny, .tl-skinny{
+	.tl-media {
+		.tl-media-wikipedia {
+			margin-left: 10px;
+			margin-right: 10px;
+		}
+		
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.YouTube.less b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.YouTube.less
new file mode 100644
index 0000000000000000000000000000000000000000..1c5716a5088239783a3f807281aeaf43f08b50bb
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/media/types/TL.Media.YouTube.less
@@ -0,0 +1,16 @@
+.tl-media {
+	.tl-media-image {
+		
+	}
+
+}
+
+// Mobile, iPhone and skinny
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-media {
+		.tl-media-image {
+		
+		}
+
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.Slide.less b/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.Slide.less
new file mode 100644
index 0000000000000000000000000000000000000000..d76a52086f23bf7bd539615408704c9034a5c5b2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.Slide.less
@@ -0,0 +1,343 @@
+/* SLIDE 
+================================================== */
+.tl-slide {
+	position:absolute;
+	width:100%;
+	height:100%;
+	padding:0px;
+	margin:0px;
+	overflow-x:hidden;
+	overflow-y:auto;
+	
+	.tl-slide-background {
+		position:absolute;
+		left:0;
+		top:0;
+		width:100%;
+		height:100%;
+		z-index:-1;
+		overflow:hidden;
+		display:none;
+		.opacity(50);
+		background: no-repeat center center; 
+		-webkit-background-size: cover;
+		   -moz-background-size: cover;
+		     -o-background-size: cover;
+			    background-size: cover;
+	}
+	.tl-slide-scrollable-container {
+		display:table;
+		table-layout: fixed;
+		height:100%;
+		z-index:1;
+	}
+	.tl-slide-content-container {
+		display:table-cell;
+		vertical-align:middle;
+		position:relative;
+		width:100%;
+		height:100%;
+		
+		z-index:3;
+		.tl-slide-content {
+			//width:100%;
+			display:table;
+			vertical-align:middle;
+			padding-left:100px;
+			padding-right:100px;
+			position:relative;
+			max-width:100%;
+			.tl-media {
+				//display:table-cell;
+				//vertical-align:middle;
+				position:relative;
+				width:100%;
+				min-width:50%;
+				//height:100%;
+				float: left;
+				margin-top:auto;
+				margin-bottom:auto;
+				//margin-right:auto;
+				img, embed, object, video, iframe {
+					//width:100%;
+				}
+			}
+			.tl-text {
+				width:50%;
+				max-width:50%;
+				min-width:120px;
+				//height:100%;
+				//overflow-y:auto;
+				padding: 0 20px 0 20px;
+				display:table-cell;
+				vertical-align:middle;
+				text-align: left;
+				//float:left;
+			}
+		}
+	}
+	
+	&.tl-slide-titleslide {
+		//background-color:#333;
+	}
+}
+
+/* Only Media (no text)
+================================================== */
+.tl-slide-media-only {
+	.tl-slide-content-container {
+		.tl-slide-content {
+			//width:100%;
+			text-align:center;
+			.tl-media {
+				//display:table-cell;
+				//vertical-align:middle;
+				text-align:center;
+				position:relative;
+				width:100%;
+				min-width:50%;
+				max-width:100%;
+				//height:100%;
+				float: none;
+				margin-top:auto;
+				margin-bottom:auto;
+				//margin-right:auto;
+				img, embed, object, video, iframe {
+					//width:100%;
+				}
+			}
+			.tl-text {
+				width:				100%;
+				max-width:			100%;
+				display:			block;
+				margin-left:		auto;
+				margin-right:		auto;
+				text-align: 		center;
+				h2 {
+					//margin-top: 	20px;
+					//margin-bottom: 	20px;
+				}
+				//float:left;
+			}
+		}
+	}
+}
+
+/* Only Text (no media)
+================================================== */
+.tl-slide-text-only {
+	.tl-slide-content-container {
+		.tl-slide-content {
+			//width:100%;
+			text-align:center;
+			.tl-text {
+				max-width:80%;
+				width:80%;
+				display:block;
+				margin-left:auto;
+				margin-right:auto;
+				//float:left;
+			}
+		}
+	}
+}
+/* Background 
+================================================== */
+
+
+.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {
+	.slide-text-shadow();
+	
+	p, h1, h2, h3, h4, h5, h6 {
+		.slide-text-shadow();
+	}
+	a, a:hover, b, i, blockquote, blockquote p {
+		.slide-text-shadow();
+		color: lighten(@color-theme, 90%);
+	}
+	.tl-caption, .tl-credit {
+		.slide-text-shadow();
+	}
+	.tl-media-twitter, .tl-media-blockquote {
+		blockquote {
+			.slide-text-shadow();
+			p {
+				.slide-text-shadow();
+			}
+		}
+	}
+	.vcard {
+		a, .nickname  {
+			.slide-text-shadow();
+		}
+	}
+
+}
+
+
+
+/* Full Image Background 
+================================================== */
+.tl-slide.tl-full-image-background {
+	background: no-repeat center center; 
+	-webkit-background-size: cover;
+	   -moz-background-size: cover;
+	     -o-background-size: cover;
+		    background-size: cover;
+	//filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
+	//-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
+	background-position:center 25%;
+	text-shadow: 1px 1px 2px #000;
+	.tl-slide-content-container {
+		//.translucent-background(#000, 0.50);
+	}
+	p, h1, h2, h3, h4, h5, h6 {
+		text-shadow: 1px 1px 2px #000;
+	}
+	.tl-caption, .tl-credit {
+		text-shadow: 1px 1px 2px #000;
+	}
+	
+	.tl-media-twitter, .tl-media-blockquote {
+		blockquote {
+			text-shadow: 1px 1px 2px #000 !important;
+			p {
+				text-shadow: 1px 1px 2px #000 !important;
+			}
+		}
+	}
+	
+}
+/* Color Background 
+================================================== */
+.tl-slide.tl-full-color-background {
+	
+}
+/* Text Background 
+================================================== */
+.tl-slide.tl-text-background {
+	.tl-text {
+		.tl-text-content-container {
+			padding:20px;
+			.background-color-opacity(0,0,0, 60);
+			.border-radius(7px);
+			h2 {
+				margin-top:5px;
+			}
+		}
+	}
+}
+
+
+
+/* Skinny
+================================================== */
+.tl-skinny {
+
+	.tl-slide {
+		display:block;
+		padding-top:10px;
+		.tl-slide-content-container {
+			display:block;
+			position:static;
+			height:auto;
+			height:100%;
+			//vertical-align:baseline;
+			display: -webkit-flex; /* Safari */
+			display: flex;
+			//flex-direction:column-reverse;
+			align-items: center;
+			-webkit-align-items: center; /* Safari 7.0+ */
+			.tl-slide-content {
+				display:block;
+
+    			display: -webkit-flex; /* Safari */
+				display: flex;
+				flex-direction:column-reverse;
+				-webkit-flex-direction:column-reverse; /* Safari */
+				position:static;
+				height:auto;
+				padding-left:50px;
+				padding-right:50px;
+				.tl-media {
+					position:static;
+					width:100%;
+					height:auto;
+					float: none;
+					display:block;
+					//margin-top:20px;
+					padding-top:20px;
+					//padding-bottom:20px;
+					border-top: 1px solid @ui-background-color-darker;
+				}
+				.tl-text {
+					display:block;
+					height:auto;
+					vertical-align:initial;
+					position:static;
+					width:100%;
+					max-width:100%;
+					min-width:0;
+					float:none;
+					padding: 0;
+
+					.tl-text-content-container {
+						padding-left:10px;
+						padding-right:10px;
+						padding-bottom:10px;
+					}
+				}
+			}
+		}
+
+		&.tl-slide.tl-full-color-background, &.tl-full-image-background {
+			.tl-slide-content-container {
+				.tl-slide-content {
+					.tl-media {
+						border-color: fadeout(@ui-background-color-darker,75);
+					}
+				}
+			}
+		}
+
+		&.tl-slide-media-only {
+			.tl-slide-content-container {
+				.tl-slide-content {
+					flex-direction:column;
+					-webkit-flex-direction:column; /* Safari */
+					.tl-media {
+						border-top: none;
+						padding-top:0px;
+					}
+				}
+			}
+			
+		}
+	}
+}
+
+
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	.tl-storyslider {
+
+	}
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-slide {
+		.tl-slide-content-container {
+			.tl-slide-content {
+				.tl-media {
+					img, embed, object, video, iframe {
+						max-height:175px;
+					}
+				}
+			}
+		}
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.SlideNav.less b/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.SlideNav.less
new file mode 100644
index 0000000000000000000000000000000000000000..f567fa3e8a4b1811cb63100d25e8c6dbfcb976f0
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.SlideNav.less
@@ -0,0 +1,243 @@
+/* SlideNav
+================================================== */
+
+/* NAVIGATION
+================================================== */
+.tl-slidenav-previous, .tl-slidenav-next {
+	position:absolute;
+	top: 45%;
+	z-index:10;
+	cursor:pointer;
+	
+	.tl-slidenav-content-container {
+		height:200px;
+		width:100px;
+		position:absolute;
+	}
+	.tl-slidenav-title, .tl-slidenav-description {
+		//width:100%;
+		//word-break:break-all;
+		width:80px;
+		-webkit-line-clamp: 2;
+			    line-clamp: 2;
+		text-overflow: ellipsis;
+	    //-ms-word-break: break-all;
+	    //    word-break: break-all;
+
+	    /* Non standard for webkit */
+	    //    word-break: break-word;
+	    /*
+	   -webkit-hyphens: auto;
+	      -moz-hyphens: auto;
+	       -ms-hyphens: auto;
+	           hyphens: auto;
+		*/
+		.opacity(15);
+		a {
+			
+		}
+		small {
+			display:block;
+		}
+	}
+	.tl-slidenav-title {
+		margin-top:10px;
+		font-size: @base-font-size-small;
+		line-height: @base-font-size-small;
+		//font-weight: bold;
+	}
+	.tl-slidenav-description {
+		font-size: @base-font-size-small;
+		margin-top:5px;
+		.opacity(0);
+		small {
+			display:none;
+		}
+	}
+	
+}
+
+/* NAVIGATION COLOR
+================================================== */
+.tl-slidenav-previous, .tl-slidenav-next {
+	.tl-slidenav-content-container {
+		.tl-slidenav-icon, .tl-slidenav-title, .tl-slidenav-description {
+			text-shadow: 1px 1px 1px @color-background;
+			color: @color-foreground;
+		}
+	}
+	.tl-slidenav-content-container.tl-slidenav-inverted {
+		.tl-slidenav-icon, .tl-slidenav-title, .tl-slidenav-description {
+			color:@color-text-inverted;
+			text-shadow: 1px 1px 1px @color-foreground;
+		}
+	}
+}
+
+/* ICONS
+================================================== */
+.tl-slidenav-next, .tl-slidenav-previous {
+	.tl-slidenav-icon {
+		font-family: 'tl-icons';
+		speak: none;
+		font-style: normal;
+		font-weight: normal;
+		font-variant: normal;
+		text-transform: none;
+		line-height: 1;
+		-webkit-font-smoothing: antialiased;
+		-moz-osx-font-smoothing: grayscale;
+		font-size:32px;
+		margin-bottom: 5px;
+	}
+}
+
+.tl-slidenav-next {
+	text-align: right;
+	margin-right:10px;
+    right: 100px;
+	.tl-slidenav-title, .tl-slidenav-description {
+		margin-left:20px;
+	}
+	.tl-slidenav-icon {
+		margin-left: 100 - 24px;
+	}
+	.tl-slidenav-icon:before {
+		content: "\e64f";
+	}
+}
+.tl-slidenav-previous {
+	text-align: left;
+	margin-left:10px;
+	.tl-slidenav-icon {
+		margin-left: 0px;
+	}
+	.tl-slidenav-icon:before {
+		content: "\e650";
+	}
+}
+
+
+
+/* NAVIGATION HOVER
+================================================== */
+.tl-slidenav-previous:hover, .tl-slidenav-next:hover {
+	.tl-slidenav-title {
+		.opacity(100);
+	}
+	.tl-slidenav-description {
+		.opacity(50);
+	}
+}
+.tl-slidenav-next:hover {
+	.tl-slidenav-icon {
+        margin-left: 100 - 20px;
+	}
+}
+.tl-slidenav-previous:hover {
+	.tl-slidenav-icon {
+		margin-left: -4px;
+	}
+}
+
+// Mobile, iPhone and skinny
+@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
+	.tl-slidenav-previous, .tl-slidenav-next {
+		
+	}
+} 
+.tl-skinny {
+	.tl-slidenav-next {
+	    right: 32px;
+		.tl-slidenav-icon {
+			margin-left:32 - 24px;
+		}
+	}
+	.tl-slidenav-previous, .tl-slidenav-next {
+		.tl-slidenav-content-container {
+			width:32px;
+			height:32px;
+		}
+		.tl-slidenav-title, .tl-slidenav-description {
+			display:none;
+		}
+		.tl-slidenav-icon {
+			.opacity(33);
+		}
+	}
+	.tl-slidenav-next:hover {
+		.tl-slidenav-icon {
+	       margin-left:32 - 20px;
+		   .opacity(100);
+		}
+	}
+	.tl-slidenav-previous:hover {
+		.tl-slidenav-icon {
+			margin-left: -4px;
+			.opacity(100);
+		}
+	}
+	
+}
+
+
+
+.tl-layout-landscape.tl-mobile {
+	.tl-slidenav-next:hover {
+		right: 70px;
+		.tl-slidenav-icon {
+	       margin-left:32 - 24px;
+		   .opacity(100);
+		}
+	}
+	.tl-slidenav-next:active {
+		.tl-slidenav-icon {
+			margin-left: 0px;
+		   .opacity(100);
+		}
+	}
+	.tl-slidenav-previous:hover {
+		.tl-slidenav-icon {
+			//margin-left: 0px;
+			margin-left: 100 - 20px;
+			.opacity(100);
+		}
+	}
+	.tl-slidenav-previous:active {
+		.tl-slidenav-icon {
+		   .opacity(100);
+		   margin-left: -4px;
+		}
+	}
+
+}
+
+.tl-layout-portrait.tl-mobile {
+	.tl-slidenav-next:hover {
+		.tl-slidenav-icon {
+		   .opacity(33);
+		}
+	}
+	.tl-slidenav-next:active {
+		.tl-slidenav-icon {
+		   .opacity(100);
+		}
+	}
+	.tl-slidenav-previous:hover {
+		.tl-slidenav-icon {
+			.opacity(33);
+		}
+	}
+	.tl-slidenav-previous:active {
+		.tl-slidenav-icon {
+		   .opacity(100);
+
+		}
+	}
+}
+
+.tl-mobile, .tl-skinny.tl-mobile, .tl-skinny.tl-layout-landscape.tl-mobile, .tl-skinny.tl-layout-portrait.tl-mobile  {
+	.tl-slidenav-previous, .tl-slidenav-next {
+		display:none;
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.StorySlider.less b/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.StorySlider.less
new file mode 100644
index 0000000000000000000000000000000000000000..cfa76bb448d3d9d4fd35c9179dba140c6e5692be
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/slider/TL.StorySlider.less
@@ -0,0 +1,95 @@
+/* StorySlider
+================================================== */
+
+/* SLIDER CONTAINERS
+================================================== */
+.tl-storyslider {
+	width:100%;
+	height:100%;
+	overflow:hidden;
+	.user-select(none);
+	position:relative;
+	box-sizing:content-box;
+	//.box-shadow(1px 1px 7px rgba(0,0,0,.30));
+
+	z-index:8;
+	img, embed, object, video, iframe {
+		max-width: 100%;
+		position:relative;
+	}
+	.tl-slider-background {
+		position:absolute;
+		top:0;
+		left:0;
+		width:100%;
+		height:100%;
+		z-index:1;
+
+	}
+	.tl-slider-touch-mask {
+		width:100%;
+		height:100%;
+		z-index:25;
+
+		top:0px;
+		left:0px;
+		position: absolute;
+	}
+	.tl-slider-container-mask {
+		text-align: center;
+		width: 100%;
+		height: 100%;
+		//overflow: scroll;
+		position: relative;
+		z-index:5;
+		.tl-slider-container {
+			position: absolute;
+			top: 0px;
+			left: 0px;
+			width: 100%;
+			height: 100%;
+			text-align: center;
+
+			.tl-slider-item-container {
+				width: 100%;
+				height: 100%;
+				display:table-cell;
+				vertical-align:middle;
+
+			}
+		}
+	}
+
+}
+
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-storyslider {
+		.tl-slider-container-mask {
+
+			.tl-slider-container {
+				.tl-slider-item-container {
+
+				}
+			}
+		}
+
+	}
+}
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	.tl-storyslider {
+
+	}
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-storyslider {
+
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/themes/dark/TL.Theme.Dark.less b/public/opac/TimelineJS3-3.5.1/source/less/themes/dark/TL.Theme.Dark.less
new file mode 100644
index 0000000000000000000000000000000000000000..ef662581d8fd9223c2988bf84c82eaff3d6c4234
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/themes/dark/TL.Theme.Dark.less
@@ -0,0 +1,16 @@
+/*!
+	Timeline JS 3 
+	
+	Designed and built by Zach Wise for the Northwestern University Knight Lab
+	
+	This Source Code Form is subject to the terms of the Mozilla Public
+	License, v. 2.0. If a copy of the MPL was not distributed with this
+	file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
+*/
+
+/* Includes 
+================================================== */
+@import "Variables.less"; 					// Variables (easy way to make style changes) 
+
+@import "../../TL.Timeline.Base.less"; 	// Base Less File
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/themes/dark/Variables.less b/public/opac/TimelineJS3-3.5.1/source/less/themes/dark/Variables.less
new file mode 100644
index 0000000000000000000000000000000000000000..4f169e315c470fc9d06359f9f0bb0c205c2c7ede
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/themes/dark/Variables.less
@@ -0,0 +1,103 @@
+/*	VARIABLES
+	THEME DARK
+----------------------------------------------------- */
+
+/* ICON PATH
+================================================== */
+@icon-path: 					"../icons/";
+
+/* TYPEFACE
+================================================== */
+@font-serif: 					"Georgia", Times New Roman, Times, serif;
+@font-sanserif:					"Helvetica Neue", Helvetica, Arial, sans-serif;
+
+@font-main:						@font-sanserif;
+@font-secondary:				@font-serif;
+
+@base-font-size: 				15px;
+@base-font-size-small: 			11px;
+@base-font-size-large: 			24px;
+@base-font-size-xlarge: 		36px;
+
+@base-line-height:				1.428571429;
+@base-line-height-computed:     floor(@base-font-size * @base-line-height);
+
+/* COLOR SCHEME
+================================================== */
+@color-background: 				#333;
+@color-foreground: 				#CCC;
+@color-dark: 					#FFF;
+
+@color-theme:					#c34528; //#DA0000;
+
+@color-theme-dark:				darken(@color-theme, 15);
+
+@color-theme-complement:		spin(@color-theme, 180);
+
+@color-theme-triad1:			spin(@color-theme, -135);
+@color-theme-triad2:			spin(@color-theme, 135);
+
+@color-theme-split1:			spin(@color-theme, -158);
+@color-theme-split2:			spin(@color-theme, 158);
+
+@color-text: 					darken(@color-dark,50);
+@color-header-text: 			@color-dark;
+
+@color-text-inverted:			darken(@color-dark, 25);
+@color-header-text-inverted:	@color-dark;
+
+/* UI COLOR
+================================================== */
+@ui-background-color:			darken(@color-foreground,50); 
+@ui-background-color-darker:	darken(@color-background, 55);
+@marker-color: 					darken(@ui-background-color, 15);
+@marker-outline-color: 			darken(@ui-background-color,25);
+@marker-selected-text-color: 	@color-dark;
+@marker-text-color: 			lighten(@marker-color,15);
+@marker-dot-color: 				darken(@ui-background-color, 50);
+@marker-dot-hover-color: 		lighten(@marker-dot-color, 100);
+
+@minor-ticks-color:				darken(@color-dark,66);
+@major-ticks-color:				lighten(@minor-ticks-color,20);
+
+@minor-ticks-line-color: 		darken(@color-dark,66);
+@major-ticks-line-color: 		lighten(@minor-ticks-line-color,10);
+
+@brand-color: 					lighten(@color-background,25);
+
+@era-color-1: 					@color-theme-complement;
+@era-color-2: 					@color-theme-triad1;
+@era-color-3: 					@color-theme-triad2;
+@era-color-4: 					@color-theme-split1;
+@era-color-5: 					@color-theme-split2;
+@era-color-0: 					@color-theme;
+
+/* UI
+================================================== */
+@base-spacing: 					15px;
+@arrow-size: 					20px;
+
+// Marker
+@time-marker-border-radius: 	5px;
+@marker-icon-size: 				24px;
+@marker-dot-offset: 			7px;
+
+// Time Axis
+@minor-ticks-width: 			50px;
+@major-ticks-width: 			100px;
+@minor-ticks-font-size: 		10px;
+@major-ticks-font-size: 		12px;
+@tick-padding: 					2px;
+@axis-height:					@minor-ticks-font-size + (@major-ticks-font-size*2) + (@tick-padding*2);
+
+/* Animation
+================================================== */
+@animation-ease: 				cubic-bezier(0.770, 0.000, 0.175, 1.000);
+@animation-duration: 			1000ms;
+@animation-duration-fast: 		500ms;
+
+/* GFX
+================================================== */
+.base-sprite() {
+	background-image: url(storymap.png?v1.0);
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeAxis.less b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeAxis.less
new file mode 100644
index 0000000000000000000000000000000000000000..e783799d700683cbbe725015b157de5f175d0be1
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeAxis.less
@@ -0,0 +1,166 @@
+/* TL.TimeAxis
+================================================== */
+.tl-timeaxis-background {
+	height:@axis-height;
+	width:100%;
+	position:absolute;
+	bottom:0;
+	left:0;
+	background-color:@color-background;
+	border-top: 1px solid darken(@ui-background-color,5);
+	z-index:2;
+}
+.tl-timeaxis {
+	height:@axis-height;
+	width:100%;
+	position:absolute;
+	bottom:0;
+	left:0;
+	z-index:3;
+
+	.tl-timeaxis-content-container {
+		position:relative;
+		bottom:0;
+		height:@axis-height;
+		.tl-timeaxis-major, .tl-timeaxis-minor {
+			opacity:0;
+			position:absolute;
+
+			.tl-timeaxis-tick {
+				position:absolute;
+				display:block;
+				top:0;
+				left:0;
+				text-align: center;
+				font-weight:normal;
+				//.property-animation(opacity, @animation-duration, @animation-ease);
+				//.animation-timing-cubic-bezier();
+				.tl-timeaxis-tick-text {
+					display:inline-block;
+					//width:100%;
+					white-space: nowrap;
+
+					text-overflow: ellipsis;
+					overflow:hidden;
+				}
+				&:before {
+					content: "|";
+					display:block;
+					color:@color-background;
+					width:1px;
+					overflow:hidden;
+					border-left: 1px solid @minor-ticks-line-color;
+					text-align:center;
+				}
+			}
+
+			&.tl-timeaxis-animate {
+				.tl-timeaxis-tick {
+					.property-animation(all, @animation-duration, @animation-ease);
+					.animation-timing-cubic-bezier();
+				}
+			}
+
+			&.tl-timeaxis-animate-opacity {
+				.tl-timeaxis-tick {
+					.property-animation(opacity, @animation-duration, @animation-ease);
+					.animation-timing-cubic-bezier();
+				}
+			}
+		}
+
+		.tl-timeaxis-major {
+			z-index:1;
+			background-color:@color-background;
+			.tl-timeaxis-tick {
+				font-size:@major-ticks-font-size;
+				line-height:@major-ticks-font-size + @tick-padding;
+				color:@major-ticks-color;
+				width:@major-ticks-width;
+				margin-left:-(@major-ticks-width/2);
+
+				&:before {
+					border-color:@major-ticks-line-color;
+					//border-left: 2px solid @major-ticks-line-color;
+					font-size:@major-ticks-font-size + (@tick-padding*3);
+					line-height:@major-ticks-font-size + (@tick-padding*3);
+					margin-bottom:@tick-padding;
+					margin-left:(@major-ticks-width/2);
+				}
+
+				.tl-timeaxis-tick-text {
+
+				}
+			}
+		}
+
+		.tl-timeaxis-minor {
+
+			.tl-timeaxis-tick {
+				font-size:@minor-ticks-font-size;
+				line-height:@minor-ticks-font-size + @tick-padding;
+				color:@minor-ticks-color;
+				width:@minor-ticks-width;
+				margin-left:-(@minor-ticks-width/2);
+				.tl-timeaxis-tick-text {
+					opacity:0;
+					white-space: normal;
+					padding-left:2px;
+					padding-right:2px;
+					span {
+						//display:none;
+						display:block;
+						font-size:9px;
+						line-height:9px;
+						margin-top:-2px;
+						color:lighten(@minor-ticks-color,15);
+						&.tl-timeaxis-timesuffix {
+							//display:none;
+						}
+					}
+				}
+				&:before {
+					font-size:@minor-ticks-font-size - @tick-padding;
+					line-height:@minor-ticks-font-size - @tick-padding;
+					margin-left:(@minor-ticks-width/2);
+				}
+
+				&.tl-timeaxis-tick-hidden {
+					.tl-timeaxis-tick-text {
+						opacity:0 !important;
+					}
+					&:before {
+						opacity:0.33;
+					}
+				}
+			}
+		}
+
+
+	}
+
+}
+
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-timeaxis {
+
+	}
+}
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	.tl-timeaxis {
+
+	}
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-timeaxis {
+
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeEra.less b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeEra.less
new file mode 100644
index 0000000000000000000000000000000000000000..f0d1b3d7bc69e208791c231d38d52f0b25c17040
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeEra.less
@@ -0,0 +1,171 @@
+/* TL.TimeMarker
+================================================== */
+
+.tl-timeera {
+	height:100%;
+	height:40px;
+	position:absolute;
+	bottom:0;
+	left:0;
+	pointer-events: none;
+	z-index:3;
+	/* Animate Left Width and Top
+	================================================== */
+	.property-animation(left, @animation-duration, @animation-ease);
+	.property-animation(top, @animation-duration-fast, @animation-ease);
+	.property-animation(height, @animation-duration-fast, @animation-ease);
+	.property-animation(width, @animation-duration, @animation-ease);
+	.animation-timing-cubic-bezier();
+	
+
+	&.tl-timeera-fast {
+		.property-animation(top, @animation-duration-fast, @animation-ease);
+		.property-animation(height, @animation-duration-fast, @animation-ease);
+		.property-animation(width, @animation-duration-fast, @animation-ease);
+		.animation-timing-cubic-bezier();
+	}
+	/* Timespan
+	================================================== */
+
+	.tl-timeera-background {
+		position:absolute;
+		background-color: @era-color-1;
+		width:100%;
+		height:100%;
+		opacity:1;
+	}
+
+	&.tl-timeera-color0 {
+		.tl-timeera-background {
+			background-color: @era-color-0;
+		}
+	}
+	&.tl-timeera-color1 {
+		.tl-timeera-background {
+			background-color: @era-color-1;
+		}
+	}
+	&.tl-timeera-color2 {
+		.tl-timeera-background {
+			background-color: @era-color-2;
+		}
+	}
+	&.tl-timeera-color3 {
+		.tl-timeera-background {
+			background-color: @era-color-3;
+		}
+	}
+	&.tl-timeera-color4 {
+		.tl-timeera-background {
+			background-color: @era-color-4;
+		}
+	}
+	&.tl-timeera-color5 {
+		.tl-timeera-background {
+			background-color: @era-color-5;
+		}
+	}
+	/* Content
+	================================================== */
+	.tl-timeera-content-container {
+		position:absolute;
+		// background-color: @era-color-1;
+		border:0;
+		border-top-left-radius:@time-marker-border-radius;
+		border-top-right-radius:@time-marker-border-radius;
+		border-bottom-right-radius:@time-marker-border-radius;
+		height:100%;
+		width:100px;
+		overflow:hidden;
+		// z-index:6;
+
+		.property-animation(height, @animation-duration-fast, @animation-ease);
+		.property-animation(width, @animation-duration, @animation-ease);
+		.animation-timing-cubic-bezier();
+		box-sizing: border-box;
+		border: 1px solid @marker-outline-color;
+		// box-shadow: 1px 1px 1px @color-background;
+				
+		.tl-timeera-content {
+			position:relative;
+			overflow:hidden;
+			height:100%;
+			// z-index:8;
+			padding:5px;
+			.border-box();
+			
+			.tl-timeera-text {
+				overflow:hidden;
+				position: relative;
+				
+				height:100%;
+				
+				h2.tl-headline {
+					bottom:0px;
+					position: absolute;
+					display: -webkit-box;
+					
+					line-clamp: 4;
+					-webkit-line-clamp: 4;
+					box-orient: vertical;
+					-webkit-box-orient: vertical;
+					text-overflow: ellipsis;
+					
+					font-size:10px;
+					line-height:10px;
+					// height:100%;
+					overflow:hidden;
+					font-weight:normal;
+					margin:0;
+					color:@color-background;
+					margin-left:10px;
+					
+					&.tl-headline-fadeout {
+						&:after {
+							content: "";
+							text-align: right;
+							position: absolute;
+							bottom: 0;
+							right: 0;
+							width: 100%;
+							height: 50%;
+							.marker-text-fade(@marker-color,50%);
+						}
+					}
+					
+				}
+				
+			}
+			
+		}
+		
+
+		
+	}
+	
+
+}
+
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-timeera {
+
+	}
+}
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	.tl-timeera {
+
+	}
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-timeera {
+
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeGroup.less b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeGroup.less
new file mode 100644
index 0000000000000000000000000000000000000000..38f0efbe91aedd4a62937724fc885c48ec3c9ce5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeGroup.less
@@ -0,0 +1,74 @@
+/* TL.TimeMarker
+================================================== */
+
+.tl-timegroup {
+	//height:100%;
+	width:100%;
+	position:absolute;
+	top:0;
+	left:0;
+	
+	background-color:@ui-background-color;
+	
+	display: -ms-flexbox;
+	display: -webkit-flex;
+	display: flex;
+	align-items: center;
+	-ms-flex-align: center;
+	-webkit-align-items: center;
+	-webkit-box-align: center;
+	
+
+	
+	.tl-timegroup-message {
+		//z-index:6;
+		color:darken(@ui-background-color-darker,2);
+		text-shadow: @color-background 0px 2px 2px;
+		margin-left:80px;
+		//background-color:@ui-background-color;
+		
+	}
+	
+	&.tl-timegroup-alternate {
+		background-color:lighten(@ui-background-color,3);
+		.tl-timegroup-message {
+			//background-color:lighten(@ui-background-color,3);
+		}
+	}
+	&.tl-timegroup-hidden {
+		display:none;
+	}
+	
+	/* Animate Left Width and Top
+	================================================== */
+	.property-animation(left, @animation-duration, @animation-ease);
+	.property-animation(top, @animation-duration-fast, @animation-ease);
+	.property-animation(height, @animation-duration-fast, @animation-ease);
+	.property-animation(width, @animation-duration, @animation-ease);
+	.animation-timing-cubic-bezier();
+	
+}
+
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-timegroup {
+
+	}
+}
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	.tl-timegroup {
+
+	}
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-timegroup {
+
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeMarker.less b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeMarker.less
new file mode 100644
index 0000000000000000000000000000000000000000..21dcd98bdd8ab20cc3074be0fd57d86dd2f11be2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeMarker.less
@@ -0,0 +1,541 @@
+/* TL.TimeMarker
+================================================== */
+
+.tl-timemarker {
+	height:100%;
+	position:absolute;
+	top:0;
+	left:0;
+	cursor:pointer;
+	
+	/* Animate Left Width and Top
+	================================================== */
+	.property-animation(left, @animation-duration, @animation-ease);
+	.property-animation(top, @animation-duration-fast, @animation-ease);
+	.property-animation(height, @animation-duration-fast, @animation-ease);
+	.property-animation(width, @animation-duration, @animation-ease);
+	.animation-timing-cubic-bezier();
+	
+
+	&.tl-timemarker-fast {
+		.property-animation(top, @animation-duration-fast, @animation-ease);
+		.property-animation(height, @animation-duration-fast, @animation-ease);
+		.property-animation(width, @animation-duration-fast, @animation-ease);
+		.animation-timing-cubic-bezier();
+
+		.tl-timemarker-content-container {
+			.property-animation(width, @animation-duration-fast, @animation-ease);
+			.property-animation(height, @animation-duration-fast, @animation-ease);
+		}
+		.tl-timemarker-timespan {
+			.property-animation(height, @animation-duration-fast, @animation-ease);
+			.property-animation(width, @animation-duration-fast, @animation-ease);
+		}
+	}
+	/* Timespan
+	================================================== */
+	.tl-timemarker-timespan {
+		pointer-events: none;
+		position:absolute;
+		margin:0;
+		width:100%;
+		height:100%;
+		//overflow:hidden;
+		background-color: fadeout(@marker-color, 85%);
+		border-top-right-radius:@time-marker-border-radius;
+		border-top-left-radius:@time-marker-border-radius;
+		
+		.property-animation(height, @animation-duration-fast, @animation-ease);
+		.property-animation(width, @animation-duration, @animation-ease);
+		.animation-timing-cubic-bezier();
+		//box-shadow: 1px 1px 1px @color-background;
+		//box-sizing: border-box;
+		.tl-timemarker-timespan-content {
+			display:none;
+			position:absolute;
+			width:100%;
+			background-color: @marker-color;
+			border-top-left-radius:@time-marker-border-radius;
+			border-top-right-radius:@time-marker-border-radius;
+			height:100px;
+			box-sizing: border-box;
+			
+			
+		}
+		
+	}
+	
+	/* Lines
+	================================================== */
+	.tl-timemarker-line-right {
+		display:none;
+		right:0px;
+		
+	}
+	
+	.tl-timemarker-line-left {
+		width:1px;
+		left:0px;
+	}
+	
+	.tl-timemarker-line-left, .tl-timemarker-line-right {
+		margin-top:@marker-dot-offset;
+		//margin-bottom:@time-marker-border-radius;
+		//margin-top:10px; 
+		//overflow:hidden;
+		//border-top-right-radius:@time-marker-border-radius;
+		//border-top-left-radius:@time-marker-border-radius;
+		//margin-top:10%;
+		.border-box();
+		border-left: 1px solid @marker-outline-color;
+		
+		z-index:5;
+		//.border-top-radius(10px);
+		content:" ";
+		position:absolute;
+		//bottom:0;
+		height:100%;
+		.disable-selection();
+		
+		box-shadow: 1px 1px 1px @color-background;
+		
+		&:after {
+			
+			display:block;
+			content:" ";
+			position:absolute;
+			left:-4px;
+			bottom:0px;
+			height:6px;
+			width:6px;
+			background-color:@marker-dot-color;
+			z-index:8;
+			.border-radius(50%);
+		}
+	}
+	
+	/* Content
+	================================================== */
+	.tl-timemarker-content-container {
+		position:absolute;
+		background-color: @marker-color;
+		border:0;
+		border-top-left-radius:@time-marker-border-radius;
+		border-top-right-radius:@time-marker-border-radius;
+		border-bottom-right-radius:@time-marker-border-radius;
+		height:100%;
+		width:100px;
+		overflow:hidden;
+		z-index:6;
+		&:hover {
+			z-index: 9;
+		}
+		.property-animation(height, @animation-duration-fast, @animation-ease);
+		.property-animation(width, @animation-duration, @animation-ease);
+		.animation-timing-cubic-bezier();
+		box-sizing: border-box;
+		border: 1px solid @marker-outline-color;
+		box-shadow: 1px 1px 1px @color-background;
+				
+		.tl-timemarker-content {
+			position:relative;
+			overflow:hidden;
+			height:100%;
+			z-index:8;
+			padding:5px;
+			.border-box();
+			
+			.tl-timemarker-text {
+				overflow:hidden;
+				position: relative;
+				
+				h2.tl-headline, h2.tl-headline p {
+					display: -webkit-box;
+					
+					line-clamp: 2;
+					-webkit-line-clamp: 2;
+					box-orient: vertical;
+					-webkit-box-orient: vertical;
+					text-overflow: ellipsis;
+					
+					font-size:12px;
+					line-height:12px;
+					height:100%;
+					overflow:hidden;
+					font-weight:normal;
+					margin:0;
+					color:@marker-text-color;
+					position: relative;
+					&.tl-headline-fadeout {
+						&:after {
+							content: "";
+							text-align: right;
+							position: absolute;
+							bottom: 0;
+							right: 0;
+							width: 100%;
+							height: 50%;
+							.marker-text-fade(@marker-color,50%);
+						}
+					}
+					
+				}
+				
+			}
+			
+			.tl-timemarker-media-container {
+				float:left;
+				max-width:@marker-icon-size;
+				max-height:@marker-icon-size;
+				overflow:hidden;
+				margin-right:5px;
+				height:100%;
+				.border-box();
+				
+				.tl-timemarker-media {
+					max-width:@marker-icon-size;
+					max-height:100%;
+					opacity:0.25;
+				}
+				
+				[class^="tl-icon-"], [class*=" tl-icon-"] {
+					display:block;
+					font-size:@marker-icon-size;
+					color:@marker-text-color;
+					margin-top:0px;
+				}
+				
+				.tl-icon-wikipedia {
+					font-size:16px;
+				}
+				
+			}
+			
+			&.tl-timemarker-content-small {
+				.tl-timemarker-text {
+					h2.tl-headline {
+						display:block;
+						white-space:nowrap; 
+						text-overflow: ellipsis;
+					}
+				}
+				.tl-timemarker-media-container {
+					[class^="tl-icon-"], [class*=" tl-icon-"] {
+						font-size:@marker-icon-size/2;
+					}
+				}
+				
+			}
+			
+		}
+		
+
+		
+	}
+	
+	/* Hover State
+	================================================== */
+	&:hover {
+		
+		.tl-timemarker-timespan {
+			background-color: fadeout(@marker-text-color, 85%);
+			
+			.tl-timemarker-timespan-content {
+				background-color: @marker-text-color;
+			}
+			
+			.tl-timemarker-line-left, .tl-timemarker-line-right {
+				border-color: darken(@marker-color,25);
+				&:after {
+					background-color:@marker-dot-hover-color;
+				}
+			}
+			
+
+			
+		}
+		
+		.tl-timemarker-content-container {
+			background-color: darken(@marker-color,15);
+			border-color: darken(@marker-color,25);
+			.property-animation(height, @animation-duration-fast/2, @animation-ease);
+			.property-animation(width, @animation-duration-fast/2, @animation-ease);
+			&.tl-timemarker-content-container-small {
+				//height:56px !important;
+				width:200px;
+				//min-width:100px;
+				.tl-timemarker-content {
+					.tl-timemarker-text {
+						h2.tl-headline {
+							//line-clamp:3 !important;
+							//-webkit-line-clamp:3 !important;
+							//white-space: normal !important;
+							
+						}
+					}
+				}
+			}
+			
+			.tl-timemarker-content {
+				
+				.tl-timemarker-text {
+					h2.tl-headline {
+						color:@marker-selected-text-color;
+						&.tl-headline-fadeout {
+							&:after {
+								.marker-text-fade(darken(@marker-color,15),80%);
+							}
+						}
+						
+					}
+				}
+				
+				.tl-timemarker-media-container {
+					.tl-timemarker-media {
+						opacity:1;
+					}
+					[class^="tl-icon-"], [class*=" tl-icon-"] {
+						color:@marker-selected-text-color;
+					}
+				}
+			}
+		}
+		
+	}
+	
+	/* Hover Active State
+	================================================== */
+	&:hover {
+		&.tl-timemarker-active {
+			.tl-timemarker-content-container {
+				.tl-timemarker-content {
+					.tl-timemarker-text {
+						h2.tl-headline {
+							&.tl-headline-fadeout {
+								&:after {
+									//.marker-text-fade(@color-theme,80%);
+									.marker-text-fade(@color-background,80%);
+								}
+							}
+							
+						}
+					}
+				}
+			}
+			.tl-timemarker-line-left, .tl-timemarker-line-right {
+				//border-color:@color-theme;
+				border-color:@color-dark;
+			
+				&:after {
+					//z-index:6;
+					//background-color:@color-theme;
+					background-color:@color-dark;
+				}
+			}
+		}
+	}
+	
+	/* Active Markers
+	================================================== */
+	&.tl-timemarker-active {
+		
+		.tl-timemarker-timespan {
+			//background-color: fadeout(@color-theme, 85%);
+			//background-color: fadeout(@color-foreground, 85%);
+			background-color: fadeout(@color-background,50%);
+			z-index: 8;
+			.tl-timemarker-timespan-content {
+				//background-color: @color-theme;
+				background-color: @color-foreground;
+			}
+		}
+		
+		.tl-timemarker-line-left, .tl-timemarker-line-right {
+			//border-color:@color-theme;
+			//border-color:@color-foreground;
+			border-color:fadeout(@color-foreground, 50%);
+			border-width: 1px;
+			z-index:8;
+			box-shadow: 0px 1px 3px fadeout(@marker-dot-color, 50%);
+			&:after {
+				
+				//background-color:@color-theme;
+				background-color:@color-foreground;
+			}
+		}
+		
+		.tl-timemarker-content-container {
+			//background-color:@color-theme;
+			background-color:@color-background;
+			//color:@color-background;
+			color:@color-foreground;
+			z-index:9;
+			//border: none;
+			border-color:fadeout(@color-foreground, 50%);
+			
+			//box-shadow:none;
+			box-shadow: 1px 1px 3px fadeout(@marker-dot-color, 50%);
+			.tl-timemarker-content {
+				.tl-timemarker-text {
+					h2.tl-headline {
+						//color:@marker-selected-text-color;
+						color:@color-foreground; 
+						&.tl-headline-fadeout {
+							&:after {
+								//.marker-text-fade(@color-theme,80%);
+								.marker-text-fade(@color-background,80%);
+							}
+						}
+						
+					}
+				}
+				
+				.tl-timemarker-media-container {
+					.tl-timemarker-media {
+						opacity:1;
+					}
+					[class^="tl-icon-"], [class*=" tl-icon-"] {
+						//color:lighten(@color-theme,33);
+						color:@color-foreground;
+					}
+				}
+			}
+		}
+	}
+	
+	/* Markers with End Dates
+	================================================== */
+	&.tl-timemarker-with-end {
+		
+		.tl-timemarker-timespan {
+			.tl-timemarker-timespan-content {
+				display:block;
+			}
+			
+			.tl-timemarker-line-left, .tl-timemarker-line-right {
+				z-index:5;
+				&:after {
+					
+				}
+			}
+			
+			&:after {
+				display:block;
+				content:" ";
+				position:absolute;
+				left:0px;
+				bottom:-@marker-dot-offset;
+				height:6px;
+				width:100%;
+				background-color: fadeout(darken(@ui-background-color, 50), 85%);
+				z-index:6;
+				.border-radius(7px);
+			}
+			
+		}
+		
+		.tl-timemarker-content-container {
+			
+			&.tl-timemarker-content-container-long {
+				box-shadow: none;
+			}
+			.tl-timemarker-content {
+				
+			}
+		}
+		
+		.tl-timemarker-line-right {
+			display:block;
+		}
+		.tl-timemarker-line-left {
+			box-shadow: none;
+		}
+		
+		.tl-timemarker-line-left, .tl-timemarker-line-right {
+			
+		}
+	}
+	
+	/* Markers with End Dates and Hover
+	================================================== */
+	&.tl-timemarker-with-end {
+		&:hover {
+			
+			.tl-timemarker-timespan {
+				&:after {
+					background-color: fadeout(darken(@ui-background-color,100),75%);
+				}
+			}
+			.tl-timemarker-line-left, .tl-timemarker-line-right {
+				&:after {
+					
+				}
+			}
+			
+		}
+	}
+	
+	/* Markers with End Dates and Active
+	================================================== */
+	&.tl-timemarker-with-end {
+		&.tl-timemarker-active {
+			.tl-timemarker-timespan {
+				&:after {
+					//background-color: fadeout(@color-theme,50%);
+					background-color: fadeout(@color-foreground,50%);
+				}
+			}
+			
+			.tl-timemarker-line-left, .tl-timemarker-line-right {
+				border-width: 1px;
+				&:after {
+					//background-color:@color-theme !important;
+					background-color:@color-foreground !important;
+				}
+			}
+			.tl-timemarker-line-left {
+				box-shadow: none;
+			}
+		}
+	}
+	
+	/* Markers with End Dates and Active and Hover
+	================================================== */
+	&.tl-timemarker-with-end {
+		&.tl-timemarker-active {
+			&:hover {
+				.tl-timemarker-timespan {
+					&:after {
+						//background-color: fadeout(@color-theme,50%);
+						background-color: fadeout(@color-foreground,50%);
+					}
+				}
+			
+			}
+		}
+	}
+}
+
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-timemarker {
+
+	}
+}
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	.tl-timemarker {
+
+	}
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-timemarker {
+
+	}
+}
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeNav.less b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeNav.less
new file mode 100644
index 0000000000000000000000000000000000000000..32f62b220337293dc61fb3ce63bda0e4c54f5966
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/timenav/TL.TimeNav.less
@@ -0,0 +1,165 @@
+/* TL.TimeNav
+================================================== */
+
+.tl-timenav {
+	//height:200px;
+	width:100%;
+	background-color:@ui-background-color;
+	position:relative;
+	overflow:hidden;
+	//border-top: 2px solid @ui-background-color;
+	border-top: 1px solid darken(@ui-background-color,5);
+	//border-top: 1px solid #e3e3e3;
+	//box-shadow: inset 10px 10px 5px 0px rgba(0,0,0,0.75);
+	//.box-shadow(inset -7px 0px 7px rgba(0,0,0,.30));
+	
+	.tl-attribution {
+		cursor: pointer;
+		z-index:9;
+		position:absolute;
+		bottom:2px;
+		left:0px;
+		font-size:10px;
+		line-height:10px;
+		font-family:@font-sanserif !important;
+		//height:100%;
+		//background-color: @color-background;
+		background-color: fadeout(@color-background, 15%);
+		padding:3px;
+		
+		/*
+		right:-26px;
+		top:30px;
+		transform: rotate(90deg);
+		-ms-transform: rotate(90deg);
+		-webkit-transform: rotate(90deg);
+		background-color: fadeout(@ui-background-color, 15%);
+		*/
+		a {
+			
+			color:@brand-color;
+			//margin-left:10px;
+			&:hover {
+				color:@color-dark;
+				text-decoration: none;
+				.tl-knightlab-logo {
+					background-color: #c34528;
+				}
+			}
+		}
+		.tl-knightlab-logo {
+			display: inline-block;
+			vertical-align: middle;
+			height: 8px;
+			width: 8px;
+			margin-right:3px;
+			background-color: #c34528;
+			background-color:@brand-color;
+			transform: rotate(45deg);
+			-ms-transform: rotate(45deg);
+			-webkit-transform: rotate(45deg);
+		}
+		
+	}
+	.tl-timenav-line {
+		position: absolute;
+		top: 0;
+		left: 50%;
+		width: 1px;
+		height: 100%;
+		background-color: darken(@ui-background-color, 10);//@color-theme;//darken(@ui-background-color, 10);
+		z-index: 2;
+		display:none;
+		//box-shadow: 1px 1px 7px rgba(0,0,0,0.3);
+		&:before, &:after {
+			font-family: 'tl-icons';
+			speak: none;
+			font-style: normal;
+			font-weight: normal;
+			font-variant: normal;
+			text-transform: none;
+			line-height: 1;
+			
+			/* Better Font Rendering =========== */
+			-webkit-font-smoothing: antialiased;
+			-moz-osx-font-smoothing: grayscale;
+			
+			color:@color-theme;
+			font-size:32px;
+			line-height:32px;
+			position: absolute;
+			left:-14px;
+		}
+		&:before {
+			//content: "\e647";
+			top: -10px;
+		}
+		&:after {
+			content: "\e648";
+			bottom:24px;
+		}
+	}
+	.tl-timenav-slider {
+		position:absolute;
+		height:100%;
+		width:100%;
+		top:0;
+		
+		&.tl-timenav-slider-animate {
+			
+			.property-animation(all, @animation-duration, @animation-ease);
+			.animation-timing-cubic-bezier();
+		}
+		.tl-timenav-slider-background {
+			position:absolute;
+			height:100%;
+			width:100%;
+			cursor:move;
+			z-index:6;
+		}
+		.tl-timenav-container-mask {
+			position:absolute;
+			height:100%;
+			top:0;
+			.tl-timenav-container {
+				position:absolute;
+				height:100%;
+
+			
+				.tl-timenav-item-container {
+					//margin-top:5px;
+					position:absolute;
+					height:100%;
+				}
+			
+			}
+		
+		}
+	}
+	
+	
+}
+
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-timenav {
+
+	}
+}
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	.tl-timenav {
+
+	}
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-timenav {
+
+	}
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.MenuBar.Button.less b/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.MenuBar.Button.less
new file mode 100644
index 0000000000000000000000000000000000000000..117e357e3edc557644e500330de299c377781b2b
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.MenuBar.Button.less
@@ -0,0 +1,71 @@
+/* MenuBar Button
+================================================== */
+
+.tl-menubar-button {
+	//border-left: 1px solid darken(@color-background,10);
+	font-size: 18px;
+	line-height:18px;
+	//padding: 6px 12px 6px 12px;
+	//padding:12px;
+	background-color:fadeout(@ui-background-color, 10%);
+	cursor:pointer;
+	padding: 6px 12px 6px 12px;
+	display:inline-block;
+	display:block;
+	//color:@color-text;
+	color:darken(@marker-color,15);
+	[class^="tl-icon-"], [class*=" tl-icon-"] {
+		
+	}
+	
+	&.tl-menubar-button-inactive {
+		opacity:0.33;
+	}
+	&:hover {
+		background:@color-foreground;
+		color:@color-background;
+		&.tl-menubar-button-inactive {
+			color:darken(@marker-color,15);
+			background-color:fadeout(@ui-background-color, 10%);
+		}
+	}
+}
+
+.tl-mobile {
+	.tl-menubar-button {
+		display:block;
+		&:hover {
+			//background-color:#FFF;
+			background-color:fadeout(@ui-background-color, 33%);
+			color:@color-text;
+		}
+		&:active {
+			background:@color-theme;
+			color:@color-background;
+		}
+	}
+}
+
+
+@keyframes invertToBlack {
+	from {
+		background-color:#FFF;
+	}
+	to {
+		background-color:#000;
+	}
+}
+@-webkit-keyframes invertToBlack {
+	from {background:#FFF;}
+	to {background:#000;}
+}
+@keyframes invertToWhite {
+	from {background-color:#000;}
+	to {background-color:#FFF;}
+}
+@-webkit-keyframes invertToWhite{
+	from {background:#000;}
+	to {background:#FFF;}
+}
+
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.MenuBar.less b/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.MenuBar.less
new file mode 100644
index 0000000000000000000000000000000000000000..f5b52940a4ba8ad9b8ea4d48a138cc919f84d773
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.MenuBar.less
@@ -0,0 +1,103 @@
+/* MenuBar 
+================================================== */
+
+.tl-menubar {
+	position:absolute;
+	//width:100%;
+	//height:	1px;
+	z-index:11;
+	text-align:center;
+	color:#333;
+	//height:26px;
+	//background-color:#FFF;
+	//.box-shadow(0px -3px 6px rgba(0,0,0,.20));
+	overflow:hidden;
+	//margin-top:-25px;
+	//border-top: 1px solid darken(@color-background,10);
+	//border-bottom: 1px solid darken(@color-background,10);
+	//border-right: 1px solid darken(@color-background,10);
+	
+	//.border-bottom-radius(7px);
+	border-bottom-right-radius: 10px;
+	border-top-right-radius: 10px;
+	top:100%;
+	left:50%;
+	left:0;
+}
+/* Skinny
+================================================== */
+.tl-skinny {
+	.tl-menubar {
+		
+	}
+}
+
+
+
+/* Mobile, iPhone
+================================================== */
+.tl-mobile {
+	.tl-menubar {
+		
+	}
+}
+
+/* Mobile, iPhone and skinny
+================================================== */
+.tl-mobile.tl-skinny {
+	.tl-menubar {
+		
+	}
+}
+
+
+/* Color
+================================================== */
+
+// Inverted
+/*
+.tl-sizebar.tl-sizebar-inverted {
+	border-bottom: 1px solid #FFF;
+	//background-color:#000;
+	color:#a5a5a5;
+	.tl-sizebar-button {
+		border-left: 1px solid darken(@color-background, 70);
+		//color:#a5a5a5;
+	}
+	.tl-sizebar-button:hover {
+		//background:@color-theme;
+		color:@color-background;
+	}
+}
+.tl-sizebar.tl-sizebar-inverted:before {
+	background-color:#000;
+	//.gradient-vertical (rgba(0,0,0,0.25), rgba(0,0,0,1));
+	//.translucent-background(rgb(0,0,0), .5);
+	border-top: 2px solid #000;
+	animation: invertToBlack 1s;
+	-webkit-animation:invertToBlack 1s; 
+}
+*/
+
+@keyframes invertToBlack {
+	from {
+		background-color:#FFF;
+	}
+	to {
+		background-color:#000;
+	}
+}
+@-webkit-keyframes invertToBlack {
+	from {background:#FFF;}
+	to {background:#000;}
+}
+@keyframes invertToWhite {
+	from {background-color:#000;}
+	to {background-color:#FFF;}
+}
+@-webkit-keyframes invertToWhite{
+	from {background:#000;}
+	to {background:#FFF;}
+}
+
+
diff --git a/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.Message.less b/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.Message.less
new file mode 100644
index 0000000000000000000000000000000000000000..11986d2c16e8a43c1789d1585b1b8bba680b5d27
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/source/less/ui/TL.Message.less
@@ -0,0 +1,96 @@
+/* MESSAGE 
+================================================== */
+.tl-message, .tl-message-full {
+	width:				100%;
+	//max-width: 			200px;
+	height:				100%;
+	position: 			absolute;
+	//position: 			relative;
+	
+	display: 			table;
+	overflow: 			hidden;
+	top: 				0px;
+	left: 				0px;
+	z-index:			99;
+	margin:				auto;
+	text-align:			center;
+	.tl-message-container {
+		padding: 			20px;
+		margin:20px;
+		text-align:			center;
+		vertical-align: 	middle;
+		display:table-cell;
+
+		.tl-message-content {
+			color:#666;
+			text-align: center;
+			font-size: 11px;
+			line-height: 13px;
+			text-transform: uppercase;
+			margin-top: 7.5px;
+			margin-bottom: 7.5px;
+			text-shadow: 1px 1px 1px #FFF;
+			
+			strong {
+				text-transform: uppercase;
+			}
+		}
+		.tl-loading-icon {
+			width: 30px;
+			height: 30px;
+			background-color: #666;
+			vertical-align: middle;
+			.box-shadow(inset 0 1px 2px rgba(255,255,255,.1));
+			margin-left: auto;
+			margin-right: auto;
+			text-align: center;
+		  //margin: 100px auto;
+			-webkit-animation: rotateplane 1.2s infinite ease-in-out;
+			animation: rotateplane 1.2s infinite ease-in-out;
+		}
+
+		@-webkit-keyframes rotateplane {
+			0% { -webkit-transform: perspective(120px) }
+			50% { -webkit-transform: perspective(120px) rotateY(180deg) }
+			100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
+		}
+
+		@keyframes rotateplane {
+			0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg) }
+			50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) }
+			100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) }
+		}
+	}
+}
+.tl-message-full {
+	.translucent-background(#FFF, 0.80);
+	[class^="tl-icon-"], [class*=" tl-icon-"] {
+		//width: 48px;
+		//height: 48px;
+		color:#666;
+		font-size:72px;
+	}
+	.tl-message-container {
+		.tl-message-content {
+			font-size: 22px;
+			line-height: 22px;
+			text-shadow: none;
+			color:#666;
+			text-transform: none;
+			font-weight: normal;
+			.tl-button {
+				display:inline-block;
+				cursor:pointer;
+				background-color:#FFF;
+				color:#333;
+				padding:10px;
+				margin-top:10px;
+				.border-radius(7px)
+			}
+		}
+	}
+
+}
+.tl-message {
+	
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/util/convert_json.py b/public/opac/TimelineJS3-3.5.1/util/convert_json.py
new file mode 100644
index 0000000000000000000000000000000000000000..f4325ee2d9793e92f95c53f9e252c2c6bf189bf0
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/util/convert_json.py
@@ -0,0 +1,96 @@
+#!/usr/bin/env python
+import json
+import sys
+import re
+
+if len(sys.argv) != 2:
+    print "Usage: %s [file.json]" % sys.argv[0]
+    sys.exit(0)
+def process_date(date_str):
+    if re.match("^\d{4}$", date_str):
+        return { "year": date_str}
+    try:
+        year,month,day = re.match("^(\d{4})[/,\-](\d+)[/,\-](\d+)$",date_str).groups()
+        return { "year": year, "month": month, "day": day }
+    except AttributeError:
+        pass
+
+    sys.stderr.write("*** weird date: %s\n" % date_str) 
+    return {}
+
+def process_slide(s):
+    d = {"start_date": {}, "media": {}, "text": {}}
+    d['text']['headline'] = s.get('headline',"")
+    d['text']['text'] = s.get('text','')
+    try:
+        asset = s['asset']
+        d['media']['url'] = asset.get('media','')
+        d['media']['caption'] = asset.get('caption','')
+        d['media']['credit'] = asset.get('credit','')
+    except KeyError:
+        pass
+
+    d['start_date'] = process_date(s['startDate'])
+    try:
+        d['end_date'] = process_date(s['endDate'])
+    except KeyError:
+        pass
+
+    return d
+data = json.load(open(sys.argv[1]))
+slides = []
+newdata = { "timeline": {"slides": slides}}
+
+timeline = data['timeline']
+dates = timeline.pop('date')
+if (len(timeline)):
+    slides.append(process_slide(timeline))
+for date in dates:
+    slides.append(process_slide(date))
+
+json.dump(newdata,sys.stdout,indent=2)
+
+
+"""
+The data file should be in JSON format with the following structure
+
+{
+    "timeline": {
+        "slides": [
+            {
+                "start_date": {
+                    "year":         "1900",
+                    "month":        "01",
+                    "day":          "05",
+                    "hour":         "",
+                    "minute":       "",
+                    "second":       "",
+                    "millisecond":  "",
+                    "format":       ""
+                },
+                "end_date": {
+                    "year":         "1900",
+                    "month":        "06",
+                    "day":          "07",
+                    "hour":         "",
+                    "minute":       "",
+                    "second":       "",
+                    "millisecond":  "",
+                    "format":       ""
+                },
+                "media": {
+                    "caption":  "",
+                    "credit":   "",
+                    "url":      "url_to_your_media.jpg",
+                    "thumbnail":    "url_to_your_media.jpg"
+                },
+                "text": {
+                    "headline": "Headline Goes Here",
+                    "text":     "Your slide text goes here."
+                }
+            }
+        ]
+    }
+}
+
+"""
diff --git a/public/opac/TimelineJS3-3.5.1/website/__init__.py b/public/opac/TimelineJS3-3.5.1/website/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/public/opac/TimelineJS3-3.5.1/website/app.py b/public/opac/TimelineJS3-3.5.1/website/app.py
new file mode 100644
index 0000000000000000000000000000000000000000..293ee25767949a293cddef12cc91644d0c4359bf
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/app.py
@@ -0,0 +1,117 @@
+'''
+Main entrypoint file.  To run:
+
+  $ python serve.py
+
+'''
+from flask import Flask
+from flask import request
+from flask import render_template
+from flask import json
+from flask import send_from_directory
+import importlib
+import traceback
+import sys
+import os
+
+# Add current directory to sys.path
+site_dir = os.path.dirname(os.path.abspath(__file__))
+examples_json = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'examples.json')
+faq_json = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'faq.json')
+
+if site_dir not in sys.path:
+    sys.path.append(site_dir)
+
+# Set default FLASK_SETTINGS_MODULE for debug mode
+if not os.environ.get('FLASK_SETTINGS_MODULE', ''):
+    os.environ['FLASK_SETTINGS_MODULE'] = 'core.settings.loc'
+
+# Import settings module for the inject_static_url context processor.
+settings_module = os.environ.get('FLASK_SETTINGS_MODULE')
+
+try:
+    importlib.import_module(settings_module)
+except ImportError, e:
+    raise ImportError(
+        "Could not import settings '%s' (Is it on sys.path?): %s" \
+        % (settings_module, e))
+
+settings = sys.modules[settings_module]
+
+
+app = Flask(__name__)
+
+compiled_dir = os.path.join(settings.PROJECT_ROOT, 'compiled')
+build_dir = os.path.join(settings.PROJECT_ROOT, 'build')
+source_dir = os.path.join(settings.PROJECT_ROOT, 'source')
+
+@app.context_processor
+def inject_static_url():
+    """
+    Inject the variables 'static_url' and 'STATIC_URL' into the templates to
+    avoid hard-coded paths to static files. Grab it from the environment
+    variable STATIC_URL, or use the default. Never has a trailing slash.
+    """
+    static_url = settings.STATIC_URL or app.static_url_path
+    if static_url.endswith('/'):
+        static_url = static_url.rstrip('/')
+    return dict(static_url=static_url, STATIC_URL=static_url)
+
+
+@app.context_processor
+def inject_index_data():
+        return dict(examples=json.load(open(examples_json)),faqs=json.load(open(faq_json)))
+
+
+@app.route('/compiled/<path:path>')
+def catch_compiled(path):
+    """
+    Serve /compiled/... urls from the compiled directory
+    """
+    return send_from_directory(compiled_dir, path)
+
+@app.route('/build/<path:path>')
+def catch_build(path):
+    """
+    Serve /build/... urls from the build directory
+    """
+    return send_from_directory(build_dir, path)
+
+@app.route('/source/<path:path>')
+def catch_source(path):
+    """
+    Serve /source/... urls from the source directory
+    """
+    return send_from_directory(source_dir, path)
+
+@app.route('/')
+@app.route('/<path:path>')
+def catch_all(path='index.html', context=None):
+    """Catch-all function which serves every URL."""
+    context = context or {}
+    if not os.path.splitext(path)[1]:
+        path = os.path.join(path, 'index.html')
+    return render_template(path, **context)
+
+
+if __name__ == "__main__":
+    import getopt
+
+    ssl_context = None
+    port = 5000
+
+    try:
+        opts, args = getopt.getopt(sys.argv[1:], "sp:", ["port="])
+        for opt, arg in opts:
+            if opt == '-s':
+                ssl_context = 'adhoc'
+            elif opt in ('-p', '--port'):
+                port = int(arg)
+            else:
+                print 'Usage: app.py [-s]'
+                sys.exit(1)
+    except getopt.GetoptError:
+        print 'Usage: app.py [-s] [-p port]'
+        sys.exit(1)
+
+    app.run(host='0.0.0.0', port=port, debug=True, ssl_context=ssl_context)
diff --git a/public/opac/TimelineJS3-3.5.1/website/core/__init__.py b/public/opac/TimelineJS3-3.5.1/website/core/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/public/opac/TimelineJS3-3.5.1/website/core/settings/__init__.py b/public/opac/TimelineJS3-3.5.1/website/core/settings/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/public/opac/TimelineJS3-3.5.1/website/core/settings/base.py b/public/opac/TimelineJS3-3.5.1/website/core/settings/base.py
new file mode 100644
index 0000000000000000000000000000000000000000..30a47aaed790f00d5313399f9730c97cdcd9a4ca
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/core/settings/base.py
@@ -0,0 +1,6 @@
+"""Common settings and globals."""
+import os
+from os.path import abspath, basename, dirname, join, normpath
+
+CORE_ROOT = dirname(dirname(abspath(__file__)))
+PROJECT_ROOT = dirname(dirname(CORE_ROOT))
diff --git a/public/opac/TimelineJS3-3.5.1/website/core/settings/loc.py b/public/opac/TimelineJS3-3.5.1/website/core/settings/loc.py
new file mode 100644
index 0000000000000000000000000000000000000000..68d2a9e6b5a1c7036f1b4ec3e1e7d712e36b8272
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/core/settings/loc.py
@@ -0,0 +1,16 @@
+"""Local settings and globals."""
+import sys
+from os.path import normpath, join
+from .base import *
+
+# Import secrets (no project-specific secrets)
+#sys.path.append(
+#    abspath(join(PROJECT_ROOT, '../secrets/storymapjs/stg'))
+#)
+#try:
+#    from secrets import *
+#except ImportError, e:
+#    print 'WARNING: Could not import project secrets (%s).  You will not be able to deploy.' % (e)
+
+# Set static URL
+STATIC_URL = '/static'
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/examples.json b/public/opac/TimelineJS3-3.5.1/website/examples.json
new file mode 100644
index 0000000000000000000000000000000000000000..be049b53ccc6b7590d27a893c2a870c208066fce
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/examples.json
@@ -0,0 +1,114 @@
+[
+  {
+      "link": "http://world.time.com/2013/12/05/nelson-mandelas-extraordinary-life-an-interactive-timeline/",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_mandela.jpg",
+      "source": "Time Magazine",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_time.png",
+      "title": "Mandela: A Life of Purpose"
+  },
+  {
+      "link": "http://www.lemonde.fr/election-presidentielle-2012/visuel/2012/04/21/chronologie-une-si-longue-campagne-presidentielle_1681661_1471069.html#meter_toaster",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_lemonde.jpg",
+      "source": "Le Monde",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_lemonde.png",
+      "title": "Chronology of the French Presidential Race"
+  },
+  {
+      "link": "http://www.themaneater.com/special-sections/mu-fall-2015/",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_univofmissouri.jpg",
+      "source": "The Maneater",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_maneater.png",
+      "title": "Historic Fall at University of Missouri"
+  },
+  {
+      "link": "http://www.cnn.com/2016/04/20/asia/north-korea-restaurant-defectors/index.html",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_northkorea.jpg",
+      "source": "CNN",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_cnn.png",
+      "title": "North Korea's Nuclear Ambitions"
+  },
+  {
+      "link": "http://bulger.wbur.org/story/1977/?location&#x3D;44444",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_bulger.jpg",
+      "source": "WBUR",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_wbur.png",
+      "title": "Bulger on Trial"
+  },
+  {
+      "link": "https://www.publicintegrity.org/2014/07/15/15037/decades-making-decline-irs-nonprofit-regulation",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_supremecourt.jpg",
+      "source": "Center for Public Integrity",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_centerforpublicintegrity.png",
+      "title": "The Decline of IRS Nonprofit Regulation"
+  },
+  {
+      "link": "http://www.denverpost.com/breakingnews/ci_21119904",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_denver_shooting.jpg",
+      "source": "Denver Post",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_denverpost.png",
+      "title": "Aurora, Colorado Movie Theater Shooting"
+  },
+  {
+      "link": "https://www.engadget.com/2016/04/22/microsoft-mobile-timeline/",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_mobile_device.jpg",
+      "source": "Engadget",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_engadget.png",
+      "title": "The Collapse of Microsoft and Nokia's Mobile Business"
+  },
+  {
+      "link": "http://www.ibtimes.com/islamic-state-timeline-shows-how-isis-expanded-one-year-two-countries-ten-1959705",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_isis.jpg",
+      "source": "International Business Times",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_ibt.png",
+      "title": "How ISIS Spread to 10 Countries"
+  },
+  {
+      "link": "http://www.ksat.com/news/texas/middle-school-teacher-had-sexual-relationship-with-student-authorities-say_",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_perpwalk.jpg",
+      "source": "KSAT",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_ksat.png",
+      "title": "Reported Sexual Assault Cases by Texas Educators"
+  },
+  {
+      "link": "http://vinepair.com/wine-colonized-world-wine-history/#1",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_wine.jpg",
+      "source": "VinePair",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_vinepair.png",
+      "title": "A History of Wine Around the World"
+  },
+  {
+      "link": "http://mashable.com/2014/03/13/timeline-malaysia-airlines-flight-370/?utm_cid&#x3D;mash-com-Tw-main-link#hzbp7TyJREqX",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_malaysia-airlines.jpg",
+      "source": "Mashable",
+      "source_logo": "https://timeline.knightlab.com/static/img/examples/logos/logo_mashable.png",
+      "title": "The Mystery of Malaysia Airlines Flight 370"
+  },
+  {
+      "link": "https://timeline.knightlab.com/examples/user-interface/index.html",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_userinterface.png",
+      "source": "Knight Lab",
+      "source_logo": "/static/img/examples/logos/logo_knightlab.png",
+      "title": "Revolutionary User Interfaces"
+  },
+  {
+      "link": "http://beyondtheseal.com/chapter3/slide-3/",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_banana.png",
+      "source": "Beyond the Seal",
+      "source_logo": "/static/img/examples/logos/logo_beyondtheseal.png",
+      "title": "A Brief History of the Banana Business"
+  },
+  {
+      "link": "https://timeline.knightlab.com/examples/republican/index.html",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_republican.jpg",
+      "source": "Knight Lab",
+      "source_logo": "/static/img/examples/logos/logo_knightlab.png",
+      "title": "The Republican Run-Up"
+  },
+  {
+      "link": "https://timeline.knightlab.com/examples/houston/index.html",
+      "thumbnail": "https://timeline.knightlab.com/static/img/examples/thumbs/thumb_houston.jpg",
+      "source": "Knight Lab",
+      "source_logo": "/static/img/examples/logos/logo_knightlab.png",
+      "title": "Whitney Houston: 1963-2012"
+  }
+]
diff --git a/public/opac/TimelineJS3-3.5.1/website/faq.json b/public/opac/TimelineJS3-3.5.1/website/faq.json
new file mode 100644
index 0000000000000000000000000000000000000000..d06044d3a29940bd0b46c3c68b63905ba920a1de
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/faq.json
@@ -0,0 +1,77 @@
+[
+  {
+      "slug": "how-do-i-edit-my-timeline",
+      "question": "How do I edit my timeline?",
+      "answer": "Once you've created a timeline, you can make changes by going back to your Google spreadsheet. Changes you make to the spreadsheet are automatically available to your Timeline—you don't need to repeat the 'publish to the web' step (step #2). If you want to make changes to the optional settings, you will need to update your embed code, but if you are only changing content in the spreadsheet, then there's nothing else to do."
+  },
+  {
+      "slug": "what-web-browsers-does-timelinejs-work-with",
+      "question": "What web browsers does TimelineJS work with?",
+      "answer": "Our primary development and testing browser is Google Chrome. We adhere closely to web standards, so we believe that TimelineJS should work effectively in all modern web browsers. TimelineJS is known to not work with Internet Explorer versions before IE10."
+  },  
+  {
+      "slug": "what-are-my-options-for-changing-how-my-timeline-works",
+      "question": "What are my options for changing how my Timeline looks?",
+      "answer": "First, make sure you know everything you can do in the spreadsheet configuration, like background colors and images. Also, check out the optional settings part of 'step 3' of the authoring tool. You can change the fonts, the position of the timeline navigation, and the initial zoom level. If you still want to do more, there are some configuration options available. Most of those are for fine tuning, but some of them may be helpful."
+  },
+  {
+      "slug": "can-i-change-things-using-css",
+      "question": "There aren't enough options. I want more control over the [font size/color/etc]. Can I change things using CSS?",
+      "answer": "Because there are so many details to the styling, this is not exactly simple, but, if you have some technical capacity, you can override TimelineJS's <abbr title='Cascading Style Sheets'>CSS</abbr> rules and have complete control over the look of the timeline. For details, see <a href='/docs/overriding-styles.html'>Using the TimelineJS CSS selectors</a>. You will need to be able to <a href='/docs/instantiate-a-timeline.html'>instantiate the Timeline</a> in javascript on your own page. (There is no way to override the CSS using the <code>iframe</code> embed.) Then, either in <code>&lt;style&gt;</code> tags in that page, or in an external stylesheet, you can specify CSS rules changing some or all of TimelineJS's default presentation. The basis of TimelineJS's styles are in <a href='https://github.com/NUKnightLab/TimelineJS3/tree/master/source/less'>these files</a>, which use the <a href='http://lesscss.org/'>Less CSS preprocessor</a>."
+  },
+  {
+      "slug": "how-can-i-categorize-or-group-my-events",
+      "question": "How can I categorize or group my events?",
+      "answer": "Every event in a timeline can have a group property. Events with the same group are shown in the same row or adjacent rows, and the common value of their group property is used as a label at the left edge of the timeline. Groups can be set using the 'group' column in the Google Spreadsheet or the 'group' property of a JSON slide object. TimelineJS does not support any other special styling for events in the same group."
+  },
+  {
+      "slug": "why-did-this-happen",
+      "question": "The first slide in my timeline isn't the first chronologically. Why did this happen?",
+      "answer": "When using the Google Spreadsheet to configure your timeline, if you put the word <code>title</code> in the <code>type</code> column, that slide will be put at the front, regardless of the values in the date columns. See the <a href='/docs/using-spreadsheets.html#title_slides'>Google Spreadsheet documentation</a> for more information."
+  },
+  {
+      "slug": "can-i-make-media-images-clickable",
+      "question": "Can I make media images clickable?",
+      "answer": "No. Many of TimelineJS's media types are interactive, and so would not be able to handle a link, and other of TimelineJS's media types have terms of service which require a link back to the source of the media. As an alternative, consider using HTML to add links in the caption, credit, or text for the slide."
+  },
+  {
+      "slug": "how-can-i-format-text",
+      "question": "How can I format text (add line breaks, bold, italics)?",
+      "answer": "TimelineJS's text fields (headline, text, caption, and credit) all accept HTML markup. A full tutorial on HTML is outside the scope of this FAQ, but here are a few basics:<br><ul><li>Wrap paragraphs in <code>&lt;p&gt;&lt;/p&gt;</code> tags to create line breaks.</li><li>Wrap text in <code>&lt;b&gt;&lt;/b&gt;</code> tags for <b>bold</b> text and <code>&lt;i&gt;&lt;/i&gt;</code> for <em>italics</em></li></ul>"
+  },
+  {
+      "slug": "how-do-i-enter-bce-dates",
+      "question": "How do I enter BCE dates?",
+      "answer": "To enter dates before the <a href='https://en.wikipedia.org/wiki/Common_Era'>common era</a>, just use a negative value for the year. Of course, you can also enter month and date if you need them."
+  },
+  {
+      "slug": "how-do-i-create-very-ancient-dates",
+      "question": "How do I create very ancient dates?",
+      "answer": "Generally, you don't have to think about it -- just enter the dates you want. Timeline can handle dates literally to the beginning of time. For dates more than about 250,000 years ago, only the year is usable. Support for those older dates is still relatively new, so if anything seems off, visit our <a href='http://knightlab.zendesk.com'>tech support site.</a>"
+  },
+  {
+      "slug": "who-can-access-the-data-in-my-google-spreadsheet",
+      "question": "Who can access the data in my Google spreadsheet?",
+      "answer": "You must make the data public to the web to use TimelineJS with a Google Spreadsheet as the data source. Normally, the data is still only visible to people who know the link, so if you publish a timeline privately, outsiders are unlikely to see the data. However, it is still public, so you must decide if that is acceptable."
+  },
+  {
+      "slug": "how-should-i-use-timelinejs",
+      "question": "Privacy is very important to me. How should I use TimelineJS?",
+      "answer": "If you want complete control over who can see the information in your timeline, you cannot use Google Spreadsheets, and you cannot use our standard <code>iframe</code> embed code. Instead, you must use <a href='/docs/json-format.html'>JSON format</a> for the data and <a href='/docs/instantiate-a-timeline.html'>instantiate the timeline</a> directly using javascript. You can then use standard web server security measures to control who has access to your timeline and the data used to create it."
+  },
+  {
+      "slug": "will-my-spreadsheet-get-picked-up-by-search-engines",
+      "question": "Will my spreadsheet get picked up by search engines?",
+      "answer": "Under normal circumstances, Google tells search engines not to index spreadsheets which are published to the web. Of course, if the page is public on the web, it is possible that a search engine will disregard those instructions."
+  },
+  {
+      "slug": "can-i-use-timelinejs-with-wordpress",
+      "question": "Can I use TimelineJS with Wordpress?",
+      "answer": "<strong>It depends.</strong> TimelineJS does not work with Wordpress.com sites. We are researching ways to address this.<br>If you are able to install plugins to your Wordpress installation, we have a <a href='https://wordpress.org/plugins/knight-lab-timelinejs/''>Wordpress plugin for Timeline</a>. It supports embedding Timelines with Wordpress \"shortcode\", and as of version 3.3.14.0, it also has experimental \"oembed\" support. That means that you can take a direct URL to a timeline (like you get with the \"get link to preview\" button) and put it in a post on a line by itself, and it should be embedded. (Make sure you've updated the plugin before you try it.)"
+  },
+  {
+      "slug": "is-timelinejs-free-for-commercial-use",
+      "question": "Is TimelineJS free for commercial use?",
+      "answer": "TimelineJS is released under the <a href='https://www.mozilla.org/en-US/MPL/2.0/''>Mozilla Public License (MPL), version 2.0</a>. That means that TimelineJS is free to \"use, reproduce, make available, modify, display, perform, distribute\" or otherwise employ. You don't need our permission to publish stories with TimelineJS and you don't need to pay us any fees or arrange any further license beyond the MPL. To read more about what you can do with TimelineJS, read our <a href='/docs/license.html'>license page</a>."
+  }
+]
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/css/site.css b/public/opac/TimelineJS3-3.5.1/website/static/css/site.css
new file mode 100644
index 0000000000000000000000000000000000000000..794b79b2a117af3c8a2e9d3701c41f0057e398cc
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/static/css/site.css
@@ -0,0 +1,50 @@
+.more-options {
+  margin: 20px 0;
+  display: none;
+}
+
+#hide-options {
+    display: none;
+}
+
+.help-block {
+    font-size: 85%;
+    font-style: italic;
+    color: #999;
+}
+
+.checkbox input { margin-right: 20px; }
+
+#embed-font-dropdown,
+ul#embed-font {
+    list-style-type:none;
+    margin: 0;
+    font-family: sans-serif;
+    padding: 0;
+}
+ul#embed-font{
+    display:none;
+    position:absolute;
+    width: 90%;
+    top: 60px;
+    border: 1px solid #ccc;
+    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
+    background-color: #FAFAFA;
+    z-index: 10;
+    padding: 10px 25px 10px 30px;
+}
+ul#embed-font li img {
+    max-width: 60%;
+}
+#embed-font-dropdown > li > p {
+    font-family: "Apres RE", "Helvetica Neue", Helvetica, Arial, sans-serif;
+    font-size: 14px;
+    margin: 0;
+    padding: 0px;
+}
+#embed-font-dropdown img { cursor: pointer; }
+.fa.fa-check { margin: 0 5px 0 -20px; }
+
+#preview-embed {
+    display: none;
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/.gitignore b/public/opac/TimelineJS3-3.5.1/website/static/img/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/TimelineJSTags.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/TimelineJSTags.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e549b4fb859418674561428bfb9f004a94d3bf7a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/TimelineJSTags.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/eyesclosedftm_10001.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/eyesclosedftm_10001.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..34779573fd9a593952c327c22d2c2e802ec3045e
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/eyesclosedftm_10001.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/family.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/family.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e2649c6e64fd0a1b36c7f50ba5a5155f9ba36bfc
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/family.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/family.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/family.png
new file mode 100644
index 0000000000000000000000000000000000000000..c88e3113823965e731cf4c45ec82d9e9c4e35f4a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/family.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh1.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh1.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..16431044cc10330bb8b37f01360fd8008f35d7c4
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh1.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh2.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh2.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2c2c35dc7dbb3533407146c39801a75cddeba406
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh2.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh3.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh3.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f3b7cdb9ccde4b2ded9ade4239cfa7228a48930e
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/wh3.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/whChild.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/whChild.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..26dde53c8d65c2242f39a3ccda9d3acf0e5c2ff1
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/whChild.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/whlead.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/whlead.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e216e07bdb0f4357c8a9f4ebe478c0219c1e6ad7
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/whlead.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/young.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/young.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9e44442a6279cf7b1595980f7c34126cee116b8c
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/houston/young.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/Northwestern University.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/Northwestern University.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8d17185b74f44af236d82e3d47a6bdbf54a765d
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/Northwestern University.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/Social-Logos.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/Social-Logos.png
new file mode 100644
index 0000000000000000000000000000000000000000..33d025eac1e4a6312cebc2d2a59e2c750a08e540
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/Social-Logos.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo-background.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo-background.png
new file mode 100644
index 0000000000000000000000000000000000000000..03f65d860afb81b2c7e6ee91f02beff87ea010ff
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo-background.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo-small.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo-small.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e1a447a21868470d14ffd9610379e426842823c
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo-small.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo.png
new file mode 100644
index 0000000000000000000000000000000000000000..4239d4ae5d5abfb65753b015aa42ff002e9c3ec7
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/knightlab-logo.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/less-small.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/less-small.png
new file mode 100644
index 0000000000000000000000000000000000000000..09cddc876cbb61d731e876448407de1da46bd32b
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/less-small.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_aljazeera.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_aljazeera.png
new file mode 100644
index 0000000000000000000000000000000000000000..18de3b7e0b802c7a6fe232546d033a9b3c5d693a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_aljazeera.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_arte.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_arte.png
new file mode 100644
index 0000000000000000000000000000000000000000..a552b350eb4647f38d3dcc2d28d017cccd800de3
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_arte.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_beyondtheseal.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_beyondtheseal.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e719b467e2564cd394bf827e8ec458a0cc99f18
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_beyondtheseal.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_centerforpublicintegrity.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_centerforpublicintegrity.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b1328babab2bf19cb32ad8a6ca81b939d9d9e18
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_centerforpublicintegrity.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_cnn.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_cnn.png
new file mode 100644
index 0000000000000000000000000000000000000000..e5b046502a407fd53b447f2cac4706d3144b659c
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_cnn.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_denverpost.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_denverpost.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1cbfa042e6a5ef0728f17a993e7000982d25c62
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_denverpost.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_engadget.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_engadget.png
new file mode 100644
index 0000000000000000000000000000000000000000..d1c7efd8b0f1bf03cde374c7ff8df5bdcb9d600a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_engadget.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_gigaom.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_gigaom.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d68d507aebe1b8bd375a7aa56faa4cce57704ee
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_gigaom.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_ibt.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_ibt.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b29edbf3409f18454d6c8bf682576399df767a7
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_ibt.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_knightlab.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_knightlab.png
new file mode 100644
index 0000000000000000000000000000000000000000..21dcaf19f1958daed0e0754faf5cde2fe0bb2e39
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_knightlab.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_ksat.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_ksat.png
new file mode 100644
index 0000000000000000000000000000000000000000..82187e40011e0beaebf0c9820eb77f52be0fdf40
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_ksat.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_lemonde.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_lemonde.png
new file mode 100644
index 0000000000000000000000000000000000000000..85a66108111763fb6665093b3923a996a81a49a7
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_lemonde.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_maneater.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_maneater.png
new file mode 100644
index 0000000000000000000000000000000000000000..3011712c61a6b103b194c244909a641335b09981
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_maneater.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_mashable.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_mashable.png
new file mode 100644
index 0000000000000000000000000000000000000000..577ebd5bc0196f529d80297f9606c6f3513ec21f
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_mashable.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_radiolab.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_radiolab.png
new file mode 100644
index 0000000000000000000000000000000000000000..928dc4c7079c5990251ca57cdf8d0dcb5a90b141
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_radiolab.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_time.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..a10336233572119db6d639d6dd8c09af465b789f
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_time.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_vh1.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_vh1.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f61dbafdf98df3c06dfd0e20b32575e0f0ec911
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_vh1.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_vinepair.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_vinepair.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9c5808e1bd9ee0744a8b19d317e5513668656c6
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_vinepair.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_wbur.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_wbur.png
new file mode 100644
index 0000000000000000000000000000000000000000..499227e2afd3371c50a9a1e65e6a30a0070a62b1
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/logos/logo_wbur.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_akira.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_akira.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9f5b2550a4d49865753a9c368805152062000944
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_akira.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_aljazeera.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_aljazeera.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0a54e58357afbde40121cd2cf960f4efce9327ef
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_aljazeera.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_artetv.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_artetv.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..120dc28e2eb5d46e02e525ea0704ec6e2bdf9e80
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_artetv.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_banana.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_banana.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f4a6afe684ef062c0338c642b5a556892ca01ea
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_banana.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_bulger.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_bulger.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..edfd3b27c59f06bdaf99c4077c614ab1f272cdf1
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_bulger.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_denver_shooting.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_denver_shooting.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9c80d7a3205b65d00049493cc92bdee55c4d135e
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_denver_shooting.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_houston.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_houston.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5631d527b3a1804e86a4349fa5a75172d4194e89
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_houston.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_isis.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_isis.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2ece594f9a8c5870026d8d25f36374d2923cee3a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_isis.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_lemonde.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_lemonde.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d1e32c049765522005bdfe6dbc9691dd357ef0fa
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_lemonde.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_malaysia-airlines.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_malaysia-airlines.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f565959a09e7a7e38c06f5b9b0b8764267b53705
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_malaysia-airlines.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_mandela.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_mandela.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a128cbe01fff25adfd64386767c2d87815ab60e5
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_mandela.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_mobile_device.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_mobile_device.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0d46c8e3f27588f2a9670296d54e7ed72b52da0f
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_mobile_device.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_northkorea.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_northkorea.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0ea01f77196ce177c3e344b0a6ad2ecb72a2c3d4
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_northkorea.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_perpwalk.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_perpwalk.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..92fb176491196e6e453c33588bd6f893f932b64d
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_perpwalk.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_radiolab-colorwalking.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_radiolab-colorwalking.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..71c9e3537dc86bc08753d46c66c9547b2cef4326
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_radiolab-colorwalking.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_republican.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_republican.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..979f20cfbb20f306bf53b9cc82c93c423a651c63
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_republican.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_shtpeoplesay.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_shtpeoplesay.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b0b525e8f749a98cf9087f26a193e6efca835c3b
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_shtpeoplesay.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_supremecourt.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_supremecourt.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8890e2ec7147e112dff83dd0ee0b0da9612ea976
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_supremecourt.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_univofmissouri.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_univofmissouri.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7fb62729728a4536c118c03419cee28d2ee76435
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_univofmissouri.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_userinterface.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_userinterface.png
new file mode 100644
index 0000000000000000000000000000000000000000..55359fcaa49af825e372366ceca2fb5e2f825be6
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_userinterface.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_wine.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_wine.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..33530ab177bdaa848b5ff5783106b8a970a3060b
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/thumbs/thumb_wine.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/4s.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/4s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3153c3cbb7b3ffcbadf2f71b29a979d7f831dad4
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/4s.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/apple.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/apple.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..bdc14f9ae7ca7ecfab9e33ff7680eaa3e26f8e3e
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/apple.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/input.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/input.png
new file mode 100644
index 0000000000000000000000000000000000000000..f309f107526246883730fbf7a8f6eeff85bfc535
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/input.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/palm.png b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/palm.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1ece8e8e77e826872af8c623e4de3fbde3d9dd6
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/palm.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/pascaline.jpg b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/pascaline.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..13b232bf70a427e49d3fc703e03fe4384a037868
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/pascaline.jpg differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/univac.JPG b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/univac.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..a75f36d2a6dcbb3a4e107e02f8ab40dd5e93492a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/examples/user-interface/univac.JPG differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/font-options.png b/public/opac/TimelineJS3-3.5.1/website/static/img/font-options.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0b87633bf8fb1987001b2e9c7416c0fba996789
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/font-options.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/kl-og.png b/public/opac/TimelineJS3-3.5.1/website/static/img/kl-og.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bf4077d063499c4225af50ade369c6e3ee4940a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/kl-og.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/knightlab_logo.png b/public/opac/TimelineJS3-3.5.1/website/static/img/knightlab_logo.png
new file mode 100644
index 0000000000000000000000000000000000000000..581eaf541016e76fe7cc5d54f243a8c6f7f708f7
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/knightlab_logo.png differ
diff --git a/public/opac/TimelineJS-2.25/compiled/css/loading.gif b/public/opac/TimelineJS3-3.5.1/website/static/img/loading.gif
similarity index 100%
rename from public/opac/TimelineJS-2.25/compiled/css/loading.gif
rename to public/opac/TimelineJS3-3.5.1/website/static/img/loading.gif
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/abril-droidsans.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/abril-droidsans.png
new file mode 100644
index 0000000000000000000000000000000000000000..3520945602ce4a53d3ce1f9a666899c1d9ea1fc1
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/abril-droidsans.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/amatic-andika.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/amatic-andika.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b23b9cdf086b18d7c37daa8d83f0ee141dfa52b
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/amatic-andika.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/bevan-pontanosans.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/bevan-pontanosans.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6eb37652578175b55018860ebc90f301264af06
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/bevan-pontanosans.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/bitter-raleway.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/bitter-raleway.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ac4fbb34dc003d3d274d6f2a39fea0a54f0bc12
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/bitter-raleway.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/clicker-garamond.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/clicker-garamond.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7f05056c697d39016f74542c09deb1d90bc84f6
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/clicker-garamond.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/dancing-ledger.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/dancing-ledger.png
new file mode 100644
index 0000000000000000000000000000000000000000..dee95b36285eef461af5db5d1b1368edafa3a6a8
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/dancing-ledger.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/default.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/default.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f2dc95adfab3b2e73d9906db6769e73e9e4415e
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/default.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/fakedropdown.svg b/public/opac/TimelineJS3-3.5.1/website/static/img/make/fakedropdown.svg
new file mode 100644
index 0000000000000000000000000000000000000000..21fc7eaa023a4b92dcf89ee4b6735bf508478fea
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/static/img/make/fakedropdown.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="12px" y="0px" width="24px" height="3px" viewBox="0 0 6 3" enable-background="new 0 0 6 3" xml:space="preserve"><polygon points="5.992,0 2.992,3 -0.008,0 "/></svg>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/fjalla-average.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/fjalla-average.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ba2dbea64640d832360cc439d28383222bccf11
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/fjalla-average.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/font-options.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/font-options.png
new file mode 100644
index 0000000000000000000000000000000000000000..15954faf1faa788439e0868aca15a30abbf988a9
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/font-options.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/georgia-helvetica.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/georgia-helvetica.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0b9f6512c47b4197d9ca237a02c74d585ea66e9
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/georgia-helvetica.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/lustria-lato.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/lustria-lato.png
new file mode 100644
index 0000000000000000000000000000000000000000..edb6e2fbb34c8337f73cc2f76918a951463a8bb2
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/lustria-lato.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/medula-lato.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/medula-lato.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f89e5a6509cf3124f7256f65a9fd3144c4ea115
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/medula-lato.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/oldstandard.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/oldstandard.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c37e6129c1b698b9d495ea81cba31442b4516eb
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/oldstandard.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/opensans-gentiumbook.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/opensans-gentiumbook.png
new file mode 100644
index 0000000000000000000000000000000000000000..c08d50494ea6f6e8c418680dd41f2e4eafd552fb
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/opensans-gentiumbook.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/playfair-faunaone.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/playfair-faunaone.png
new file mode 100644
index 0000000000000000000000000000000000000000..f598151d40bc7119fa9e471ed1dec00c0d886d1e
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/playfair-faunaone.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/playfair.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/playfair.png
new file mode 100644
index 0000000000000000000000000000000000000000..37d24b2bed97d15313f787e4f5b6495133cf165a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/playfair.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/pt.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/pt.png
new file mode 100644
index 0000000000000000000000000000000000000000..a02cb19919dd1492033947f0e89bca0dd1d3e45e
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/pt.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_button_small.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_button_small.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6f5054a1ff86e0cab44812fbd77fd83e193b292
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_button_small.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_small.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_small.png
new file mode 100644
index 0000000000000000000000000000000000000000..92523001bd785bcbff1788c47a58a8ca6930644f
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_small.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_url_small.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_url_small.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d624eedd05b32578f4518c23abd00a16cc143a9
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/publish_to_web_url_small.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/roboto-megrim.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/roboto-megrim.png
new file mode 100644
index 0000000000000000000000000000000000000000..4533dc994bca003086211cc4d68ff86346a8a856
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/roboto-megrim.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/rufina-sintony.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/rufina-sintony.png
new file mode 100644
index 0000000000000000000000000000000000000000..9530cd708f451317d84c07660248c4937c30f63b
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/rufina-sintony.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/make/unicaone-vollkorn.png b/public/opac/TimelineJS3-3.5.1/website/static/img/make/unicaone-vollkorn.png
new file mode 100644
index 0000000000000000000000000000000000000000..177bdc2e68c02b5b92f471af90948d0e9b8f7ea3
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/make/unicaone-vollkorn.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/timeline.png b/public/opac/TimelineJS3-3.5.1/website/static/img/timeline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b38ed3b2eed104c16c5f7b939129b2a7208ba31
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/timeline.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/img/timeline3_intro_image.png b/public/opac/TimelineJS3-3.5.1/website/static/img/timeline3_intro_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea9630e5c33763c170c29f7d85cf47dc0b5d90e2
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/img/timeline3_intro_image.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/js/.gitignore b/public/opac/TimelineJS3-3.5.1/website/static/js/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/js/faq-generator.js b/public/opac/TimelineJS3-3.5.1/website/static/js/faq-generator.js
new file mode 100644
index 0000000000000000000000000000000000000000..d1fb9d744dc627ca7d5675feed88448e1135cea4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/static/js/faq-generator.js
@@ -0,0 +1,20 @@
+$ = jQuery;
+
+$.ajax({
+  url: '/docs/faq.html',
+  success: function(data) {
+    $('#faq-stub').empty();
+    var questions = $(data).find('.question p[id]');
+    $.each(questions, function(i){
+      var q = document.createElement('p');
+      var a = document.createElement('span');
+      $(a).text("Answer »");
+      var link = document.createElement('a');
+      $(link).attr("href", "/docs/faq.html#" + questions[i].id);
+      link.appendChild(document.createTextNode(questions[i].textContent));
+      link.appendChild(a);
+      q.appendChild(link);
+      $('#faq-stub').append(q);
+    });
+  }
+});
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/js/main.js b/public/opac/TimelineJS3-3.5.1/website/static/js/main.js
new file mode 100644
index 0000000000000000000000000000000000000000..3c13669cd69d56b1a1ac437ab96d4f1c1e61fc42
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/static/js/main.js
@@ -0,0 +1,237 @@
+/* Configure timeline settings from website options
+* ================================================== */
+function getUrlVars(string) {
+  var vars = [],
+    hash,
+    hashes,
+    str = string.toString();
+
+  if (str.match('&#038;')) {
+    str = str.replace("&#038;", "&");
+  } else if (str.match('&#38;')) {
+    str = str.replace("&#38;", "&");
+  } else if (str.match('&amp;')) {
+    str = str.replace("&amp;", "&");
+  }
+  if (str.match('#')) {
+    str = str.split('#')[0];
+  }
+  hashes = str.slice(str.indexOf('?') + 1).split('&');
+
+  for(var i = 0; i < hashes.length; i++) {
+    hash = hashes[i].split('=');
+    vars.push(hash[0]);
+    vars[hash[0]] = hash[1];
+  }
+
+  return vars;
+};
+
+function getLinkAndIframe() {
+
+  var theobj = {},
+    e_source = document.getElementById('embed-source-url'),
+    e_width = document.getElementById('embed-width'),
+    e_height = document.getElementById('embed-height'),
+    e_language = document.getElementById('embed-language'),
+    e_embed = document.getElementById('embed_code'),
+    e_font = document.getElementById('embed-font-active'),
+    e_startatend = document.getElementById('embed-startatend'),
+    e_timenav_top = document.getElementById('embed-timenavtop'),
+    e_startatslide = document.getElementById('embed-startatslide'),
+    e_hashbookmark = document.getElementById('embed-hash-bookmark'),
+    e_debug = document.getElementById('embed-debug'),
+    initial_zoom = document.getElementById('embed-initialzoom'),
+    timenav_position = "bottom",
+    start_at_end = false,
+    is_debug = false,
+    hash_bookmark = false,
+    iframe,
+    link,
+    vars,
+    wp,
+    source_key;
+
+  /* SOURCE KEY
+  ================================================== */
+  if (e_source.value.match("docs.google.com")) {
+    var obj = TL.ConfigFactory.parseGoogleSpreadsheetURL(e_source.value);
+    source_key = obj.key;
+  } else {
+    if (e_source.value == "") {
+      source_key  = document.getElementById('embed-source-url').getAttribute("placeholder");
+    } else {
+      source_key  = e_source.value;
+    }
+  }
+
+  /* MISC
+  ================================================== */
+  if (e_startatend.checked) {
+    start_at_end = true;
+  }
+
+  if (e_timenav_top.checked) {
+    timenav_position = "top";
+  }
+
+  if (e_debug.checked) {
+    is_debug = true;
+  }
+
+  if (e_hashbookmark.checked) {
+    hash_bookmark = true;
+  }
+
+  /* IFRAME AND LINK
+  ================================================== */
+
+  if ((window.location.host).includes("localhost:") || (window.location.host).includes("0.0.0.0:") ){
+    urlBase = "http://" + window.location.host + "/source/";
+  }
+  else if ((window.location.host).includes("timeline.knilab.com")){
+    urlBase = "http://cdn.knightlab.com/libs/timeline3/dev/";
+  }
+  else {
+    urlBase = "https://cdn.knightlab.com/libs/timeline3/latest/";
+  }
+
+  vars    =  urlBase + "embed/index.html?source=" + source_key;
+
+  vars    += "&font=" + e_font.getAttribute("data-value");
+  vars    += "&lang=" + e_language.value;
+
+  if (start_at_end) {
+    vars  += "&start_at_end=" + start_at_end;
+  } 
+
+  if (timenav_position == "top") {
+    vars += "&timenav_position=" + timenav_position;
+  }
+  if (is_debug) {
+    vars  += "&debug=" + is_debug;
+  }
+  if (hash_bookmark) {
+    vars += "&hash_bookmark=" + hash_bookmark;
+  }
+  if (initial_zoom) {
+    vars += "&initial_zoom=" + initial_zoom.value;
+  }
+  // TODO: Make this start at end if startatslide > # of slides
+  if (parseInt(e_startatslide.value, 10) > 0) {
+    vars  += "&start_at_slide=" + parseInt(e_startatslide.value, 10);
+  }
+
+  if (e_width.value > 0) {
+    vars  += "&width=" + e_width.value;
+  }
+  if (e_height.value > 0) {
+    vars  += "&height=" + e_height.value;
+  }
+
+  iframe    = "<iframe src='" + vars + "'";
+
+  if (e_width.value > 0 || e_width.value.match("%")) {
+    iframe  += " width='" + e_width.value + "'";
+  }
+  if (e_height.value > 0 || e_height.value.match("%")) {
+    iframe  += " height='" + e_height.value + "'";
+  }
+  iframe    += " webkitallowfullscreen mozallowfullscreen allowfullscreen frameborder='0'></iframe>";
+
+  theobj.iframe = iframe;
+  theobj.link   = vars;
+  theobj.copybox = iframe;
+  return theobj;
+};
+
+/* EMBED GENERATOR
+================================================== */
+var $ = jQuery;
+
+function updateEmbedCode(element, options) {
+  var e_embed = document.getElementById('embed_code'),
+    el = getLinkAndIframe();
+  e_embed.value = el.copybox;
+//  document.getElementById('embed_code_medium').val(el.link);
+  document.getElementById('preview-embed-link').setAttribute('href', el.link);
+  document.getElementById("sharable-url").innerHTML = el.link;
+  document.getElementById("preview-embed-iframe").innerHTML = el.iframe;
+  if (!document.getElementById("preview-embed").style.display){
+    document.getElementById("preview-embed").style.display = "block";
+  }
+}
+
+document.addEventListener("DOMContentLoaded", function() {
+  if (window.innerWidth <= 700) {
+    var intro = document.getElementById('intro-copy');
+    document.getElementById('intro-copy').parentNode.removeChild(document.getElementById('intro-copy'));
+    document.getElementById('screencast').insertBefore(intro, document.getElementById('screencast').firstChild);
+  }
+
+  // More Options
+  $("#show-options").click(function (e) {
+    $(this).hide();
+    $("#hide-options").show();
+    $(".more-options").slideDown();
+    return false;
+  });
+
+  $("#hide-options").click(function (e) {
+    $(this).hide();
+    $("#show-options").show();
+    $(".more-options").slideUp();
+    return false;
+  });
+
+  // Preview
+  document.getElementById("iframe-preview-button").addEventListener("click", function () {
+    updateEmbedCode();
+    var $embed = $("#preview-embed-iframe");
+
+    $embed.show();
+
+    // Need to 'reload' the iframe to get it to display correctly
+    var $if = $("#preview iframe");
+    $if.attr("src", $if.attr("src"));
+    //$("body,html").animate({scrollTop: $embed.offset().top - 60}, 250);
+  });
+
+  // Device preview
+  $('#device-preview-mode span').on("click", function(){
+    $("#preview-embed-iframe").removeClass();
+    $("#preview-embed-iframe").addClass($(this).data("size"));
+    $(this).siblings().removeClass("active");
+    $(this).addClass("active");
+  });
+
+  // Embed Generator
+  $("#embed_code").click(function() { $(this).select(); });
+  $('#make-step-3 input').change(function(evt) { updateEmbedCode(evt); });
+  $('#make-step-3 select').change(function(evt) { updateEmbedCode(evt); });
+  $("#embed-font li").click(function(evt){
+    var currentFont = document.getElementById("embed-font-active");
+  //  currentFont.removeChild(currentFont.firstChild);
+    currentFont.removeAttribute("id");
+    $(this).attr("id", "embed-font-active")
+  //         .prepend('<span class="icon-github"></span>');
+    var fontPair = $(this).data("value");
+    $("#font-pair-preview").attr("src", "static/img/make/" + fontPair.toLowerCase() + ".png")
+                           .attr("alt", fontPair);
+    $("ul#embed-font").hide();
+  //    updateEmbedCode(evt);
+  });
+  $("#embed-font-dropdown a, #font-pair-preview").on("click", function(evt){
+      evt.preventDefault();
+      $("ul#embed-font").toggle();
+  });
+  $('.collapse').on('show',function(e) {
+    window.location.hash = "show-" + $(this).attr('id');
+  })
+
+  if (window.location.hash.match(/#show-/)) {
+    var $target = $("#" + window.location.hash.substr(6));
+    $target.collapse('show');
+    navSmartScroll($target.prev());
+  }
+});
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/welcome/step3.png b/public/opac/TimelineJS3-3.5.1/website/static/welcome/step3.png
new file mode 100644
index 0000000000000000000000000000000000000000..209455b7c6a39c3a1d2d4b8fd0501b9a00b4be0a
Binary files /dev/null and b/public/opac/TimelineJS3-3.5.1/website/static/welcome/step3.png differ
diff --git a/public/opac/TimelineJS3-3.5.1/website/static/welcome/welcome.json b/public/opac/TimelineJS3-3.5.1/website/static/welcome/welcome.json
new file mode 100644
index 0000000000000000000000000000000000000000..fc0e2fb2a3e6d3bfb4b75518d75104deb58899c5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/static/welcome/welcome.json
@@ -0,0 +1,266 @@
+{
+  "timeline": {
+    "slides": [
+      {
+        "media": {
+          "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "year": "1888"
+        }, 
+        "text": {
+          "headline": "Welcome to TimelineJS", 
+          "text": "<p>TimelineJS is an open-source tool that enables you to build visually-rich interactive timelines and is available in 40 languages.</p><p>You're looking at an example of one right now.</p><p>Click on the arrow to the right to learn more.</p>"
+        }
+      }, 
+      {
+        "media": {
+          "url": "/static/welcome/step3.png", 
+          "caption": "Screenshot from TimelineJS Embed Generator tool (see below)", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "year": "1851"
+        }, 
+        "text": {
+          "headline": "It's Easy to Make Your Own Timeline", 
+          "text": "The TimelineJS Embed Generator makes it easy to add a timeline to your own site. Just copy our Google Spreadsheet template, add your events as rows in the spreadsheet, and use our <a href='#make'>generator tool</a> to generate the HTML you need to add to your site."
+        }
+      }, 
+      {
+        "media": {
+          "url": "", 
+          "caption": "Screenshot from TimelineJS Embed Generator tool (see below)", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "year": "1871"
+        }, 
+        "text": {
+          "headline": "Illustrate your Timeline with photos, videos, tweets and more.", 
+          "text": "Timeline can automatically pull in photos, videos from YouTube or Vimeo, tweets, wikipedia entries, and many other media types to help tell your story."
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://youtu.be/lIvftGgps24", 
+          "caption": "Le portrait myst\u00e9rieux", 
+          "credit": "Georges M\u00e9li\u00e8s"
+        }, 
+        "start_date": {
+          "year": "1899"
+        }, 
+        "text": {
+          "headline": "YouTube video", 
+          "text": "To add a YouTube video, just add a link to it in the media field. No embedding necessary. http://youtu.be/lIvftGgps24"
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://youtu.be/7JDaOOw0MEE", 
+          "caption": "A Trip to the Moon / Le Voyage dans la lune", 
+          "credit": "Georges M\u00e9li\u00e8s"
+        }, 
+        "start_date": {
+          "year": "1902"
+        }, 
+        "text": {
+          "headline": "YouTube with no text", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://en.wikipedia.org/wiki/A_Trip_to_the_Moon", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "year": "1902"
+        }, 
+        "text": {
+          "headline": "Wikipedia", 
+          "text": "Add a link to a <a href='http://en.wikipedia.org/wiki/A_Trip_to_the_Moon' target='_blank'>Wikipedia entry</a> in the media field to show an excerpt alongside your text."
+        }
+      }, 
+      {
+        "media": {
+          "url": "<blockquote>\u201cYou have brains in your head. You have feet in your shoes. You can steer yourself in any direction you choose. You're on your own, and you know what you know. And you are the guy who'll decide where to go.\u201d</blockquote>", 
+          "caption": "", 
+          "credit": "Dr. Seuss"
+        }, 
+        "start_date": {
+          "month": "2", 
+          "day": "7", 
+          "year": "1950"
+        }, 
+        "text": {
+          "headline": "Blockquote", 
+          "text": "This is an example of a blockquote. <br/>&lt;blockquote&gt;&ldquo;Just use html blockquotes in the media field.&rdquo;&lt;/blockquote&gt;"
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://www.w3schools.com/", 
+          "caption": "http://w3schools.com", 
+          "credit": "w3schools"
+        }, 
+        "start_date": {
+          "month": "2", 
+          "day": "7", 
+          "year": "1960"
+        }, 
+        "text": {
+          "headline": "Website", 
+          "text": "This is an example of a website. Just paste a link to the site in the media field."
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://www.google.com/maps?hl=en&sll=42.05083,-87.674194&sspn=0.020170947570668576,0.036220713642592585&z=15", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "18", 
+          "year": "1979"
+        }, 
+        "text": {
+          "headline": "Google Map", 
+          "text": "Google Maps are easy too. Just add the link to the map in the media field."
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://www.google.com/maps/place/Chicago,+IL/@41.8337329,-87.7321555,11z/data=!3m1!4b1!4m2!3m1!1s0x880e2c3cd0f4cbed:0xafe0a6ad09c0c000?hl=en", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "18", 
+          "year": "1980"
+        }, 
+        "text": {
+          "headline": "Google Map with no text", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://www.flickr.com/photos/zachwise/7074630607/in/photostream/", 
+          "caption": "", 
+          "credit": "Zach Wise"
+        }, 
+        "start_date": {
+          "month": "2", 
+          "day": "7", 
+          "year": "1985"
+        }, 
+        "text": {
+          "headline": "Flickr", 
+          "text": "To add a Flickr photo, just paste a link to the photo page in the media field. Example: http://www.flickr.com/photos/zachwise/7074630607/"
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://www.flickr.com/photos/zachwise/7050589957/in/photostream/", 
+          "caption": "March to work.", 
+          "credit": "Zach Wise"
+        }, 
+        "start_date": {
+          "month": "2", 
+          "day": "7", 
+          "year": "1990"
+        }, 
+        "text": {
+          "headline": "Flickr with no text", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://twitter.com/alykat/status/164184609519697920", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "2", 
+          "day": "10", 
+          "year": "2001"
+        }, 
+        "text": {
+          "headline": "A Tweet", 
+          "text": "To add a tweet, just paste a link to the tweet stats in the media field. Example: http://twitter.com/alykat/status/164184609519697920"
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://twitter.com/ArjunaSoriano/status/164181156147900416", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "12", 
+          "day": "10", 
+          "year": "2002"
+        }, 
+        "text": {
+          "headline": "Yet Another Tweet", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://vimeo.com/33211636", 
+          "caption": "", 
+          "credit": "Denis Chapon"
+        }, 
+        "start_date": {
+          "month": "8", 
+          "day": "23", 
+          "year": "2011"
+        }, 
+        "text": {
+          "headline": "Vimeo", 
+          "text": "<p>Just add a link to the video in the media field. Example: https://vimeo.com/33211636</p>"
+        }
+      }, 
+      {
+        "media": {
+          "url": "http://soundcloud.com/beastieboys/make-some-noise", 
+          "caption": "R.I.P. MCA.", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "18", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "SoundCloud ", 
+          "text": "Just add a link to the track in the media field."
+        }
+      }, 
+      {
+        "media": {
+          "url": "", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "10", 
+          "day": "01", 
+          "year": "2013"
+        }, 
+        "text": {
+          "headline": "Get started!", 
+          "text": "Use the <a href='#make'>generator form</a> to make your first timeline now."
+        }
+      }
+    ]
+  }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_about.html b/public/opac/TimelineJS3-3.5.1/website/templates/_about.html
new file mode 100644
index 0000000000000000000000000000000000000000..2decf152cc47f5b73bf59e0b3557899fe6fd6d04
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_about.html
@@ -0,0 +1,23 @@
+<section id="about">
+  <h2>About</h2>
+  <div class="row">
+    <!-- Column 1-->
+    <div class="span6">
+      <h4>Document History</h4>
+      <p><span class="verite-brand">Timeline<span class="verite-brand-ext">JS</span></span> can pull in media from different sources. It has built in support for:
+      </p>
+      <p><em>Twitter, Flickr, Google Maps, YouTube, Vimeo, Dailymotion, Wikipedia, SoundCloud and more media types in the future.</em></p>
+      <p>Creating one is as easy as filling in a Google spreadsheet or as detailed as JSON.</p>
+    </div>
+    <div class="span6">
+      <!-- Tips and Tricks-->
+      <h4>Tips and tricks to best utilize <span class="verite-brand">Timeline<span class="verite-brand-ext">JS</span></span>
+      </h4>
+      <ol>
+        <li>Keep it short, and write each event as a part of a larger narrative.</li>
+        <li>Pick stories that have a strong chronological narrative. It does not work well for stories that need to jump around in the timeline.</li>
+        <li>Include events that build up to major occurrences.<em>Not just the major events.</em></li>
+      </ol>
+    </div>
+  </div>
+</section>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_analytics.html b/public/opac/TimelineJS3-3.5.1/website/templates/_analytics.html
new file mode 100644
index 0000000000000000000000000000000000000000..3ae4bd070b38faa024f3c352fc118cda5a8767a4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_analytics.html
@@ -0,0 +1,11 @@
+    <!-- Analytics-->
+    <script type="text/javascript">
+      var _gaq = _gaq || [];
+      _gaq.push(['_setAccount', 'UA-537357-19']);
+      _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>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_banner.html b/public/opac/TimelineJS3-3.5.1/website/templates/_banner.html
new file mode 100644
index 0000000000000000000000000000000000000000..e129d7615e6f446d36e50aa429a59747eb2c6039
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_banner.html
@@ -0,0 +1,26 @@
+<!-- Overview-->
+<header id="overview" class="panel">
+  <div class="corner logo">
+    <a href="https://knightlab.com"><img src="https://cdn.knightlab.com/libs/purpleline/latest/img/logos/logo_horizontal_NOtagline_615x205_transparent_padded.png" width="160"></a>
+  </div>
+  <div class="row">
+    <div>
+      <h1 class="logo-mark xl">Timeline <span><em>JS</em></span></h1>
+      <h2 class="intro">Easy-to-make, beautiful timelines.</h2>
+      <a class="button success large" data-scroll="true" href="#make">Make a Timeline</a>
+    </div>
+  </div>
+
+  <div class="row sub-nav" data-magellan-expedition="fixed">
+    <div class="small-12 columns">
+      <ul>
+        <li><a href="/index.html#overview" data-scroll="true">Overview</a></li>
+        <li><a href="/index.html#make" data-scroll="true">Timeline creator</a></li>
+        <li><a href="/index.html#examples" data-scroll="true">Examples</a></li>
+        <li><a href="/index.html#help" data-scroll="true">Help</a></li>
+        <li><a href="../docs/index.html">Documentation</a></li>
+      </ul>
+    </div>
+  </div>
+</div>
+</header>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_demo.html b/public/opac/TimelineJS3-3.5.1/website/templates/_demo.html
new file mode 100644
index 0000000000000000000000000000000000000000..e0fbd435a86c9178f987a7fc3437b3e626a37210
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_demo.html
@@ -0,0 +1,5 @@
+<section id="demo" class="container-fluid">
+    <div class="product-demo">
+        <iframe frameborder="0" src="https://cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1xuY4upIooEeszZ_lCmeNx24eSFWe0rHe9ZdqH2xqVNk&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=100%" width="100%"></iframe>
+    </div>
+</section>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_developers.html b/public/opac/TimelineJS3-3.5.1/website/templates/_developers.html
new file mode 100644
index 0000000000000000000000000000000000000000..20b9f5ad912d443a64f5cec8633a7e17d7bf923c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_developers.html
@@ -0,0 +1,19 @@
+<!-- Developers -->
+<section id="developers" class="container">
+  <h2>About the Project</h2>
+  <div class="row">
+    <div class="span6">
+      <p>This project is hosted on <a href="https://github.com/NUKnightLab/TimelineJS3" target="_blank">GitHub</a>, the largest code host in the world. We encourage you to contribute to the project and we value your feedback. You can report bugs and discuss features on the <a href="https://github.com/NUKnightLab/TimelineJS3/issues" target="_blank">GitHub issues page</a>, or ask a question on our <a href="https://groups.google.com/forum/#!forum/verite-timeline" target="_blank">Google Group</a></p>
+    </div>
+
+    <div class="span6">
+      <p>
+        This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at <a href="http://mozilla.org/MPL/2.0/">http://mozilla.org/MPL/2.0/</a>.
+      </p>
+      <p>
+        Map tiles by <a href="http://stamen.com">Stamen Design</a>, under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>.
+        Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://creativecommons.org/licenses/by-sa/3.0">CC BY SA</a>.
+      </p>
+    </div>
+  </div>
+</section>
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_examples.html b/public/opac/TimelineJS3-3.5.1/website/templates/_examples.html
new file mode 100644
index 0000000000000000000000000000000000000000..758cad0daab659892d68f69d43048dd3c7517495
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_examples.html
@@ -0,0 +1,156 @@
+    <section class="section-color fill-color-grey--lightest" id="examples">
+        <div class="container">
+        <h2>Examples</h2>
+        <div class="example-grid">
+        {% for example in examples %}
+        {#
+            Add/edit examples in the examples.json file.
+            Depends upon inject_index_data in app.py for these to be available to render.
+        #}
+        <div class="grid-item">
+            <a href="{{ example.link }}" class="button button-light" target="_blank">
+                <figure class="examples">
+                    <img src="{{ example.thumbnail }}" alt="{{ example.title }}">
+                </figure>
+                <img src="{{ example.source_logo }}" alt="{{ example.source }}" class="logo-inline">
+                <h4>{{ example.title }}</h4>
+            </a>
+        </div>
+        {% endfor %}
+    </section>
+
+{# TODO: add these into examples.json
+        </div>
+                <div class="grid-item">
+                    <a href="http://www.lemonde.fr/election-presidentielle-2012/visuel/2012/04/21/chronologie-une-si-longue-campagne-presidentielle_1681661_1471069.html#meter_toaster" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_lemonde.jpg" alt="Chronology of the French Presidential Race">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_lemonde.png" class="logo-inline">
+                        <h4>Chronology of the French Presidential Race</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://www.themaneater.com/special-sections/mu-fall-2015/" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_univofmissouri.jpg" alt="Historic Fall at University of Missouri">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_maneater.png" class="logo-inline">
+                        <h4>Historic Fall at University of Missouri</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://www.cnn.com/2016/04/20/asia/north-korea-restaurant-defectors/index.html" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_northkorea.jpg" alt="North Korea&#x27;s Nuclear Ambitions">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_cnn.png" class="logo-inline">
+                        <h4>North Korea&#x27;s Nuclear Ambitions</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://bulger.wbur.org/story/1977/?location&#x3D;44444" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_bulger.jpg" alt="Bulger on Trial">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_wbur.png" class="logo-inline">
+                        <h4>Bulger on Trial</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="https://www.publicintegrity.org/2014/07/15/15037/decades-making-decline-irs-nonprofit-regulation" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_supremecourt.jpg" alt="The Decline of IRS Nonprofit Regulation">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_centerforpublicintegrity.png" class="logo-inline">
+                        <h4>The Decline of IRS Nonprofit Regulation</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://www.denverpost.com/breakingnews/ci_21119904" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_denver_shooting.jpg" alt="Aurora, Colorado Movie Theater Shooting">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_denverpost.png" class="logo-inline">
+                        <h4>Aurora, Colorado Movie Theater Shooting</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="https://www.engadget.com/2016/04/22/microsoft-mobile-timeline/" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_mobile_device.jpg" alt="The Collapse of Microsoft and Nokia&#x27;s Mobile Business">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_engadget.png" class="logo-inline">
+                        <h4>The Collapse of Microsoft and Nokia&#x27;s Mobile Business</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://www.ibtimes.com/islamic-state-timeline-shows-how-isis-expanded-one-year-two-countries-ten-1959705" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_isis.jpg" alt="How ISIS Spread to 10 Countries">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_ibt.png" class="logo-inline">
+                        <h4>How ISIS Spread to 10 Countries</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://www.ksat.com/news/texas/middle-school-teacher-had-sexual-relationship-with-student-authorities-say_" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_perpwalk.jpg" alt="Reported Sexual Assault Cases by Texas Educators">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_ksat.png" class="logo-inline">
+                        <h4>Reported Sexual Assault Cases by Texas Educators</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://vinepair.com/wine-colonized-world-wine-history/#1" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_wine.jpg" alt="A History of Wine Around the World">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_vinepair.png" class="logo-inline">
+                        <h4>A History of Wine Around the World</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://mashable.com/2014/03/13/timeline-malaysia-airlines-flight-370/?utm_cid&#x3D;mash-com-Tw-main-link#hzbp7TyJREqX" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_malaysia-airlines.jpg" alt="The Mystery of Malaysia Airlines Flight 370">
+                        </figure>
+                        <img src="https://timeline.knightlab.com/static/img/examples/logos/logo_mashable.png" class="logo-inline">
+                        <h4>The Mystery of Malaysia Airlines Flight 370</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="https://timeline.knightlab.com/examples/user-interface/index.html" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_userinterface.png" alt="Revolutionary User Interfaces">
+                        </figure>
+                        <h4>Revolutionary User Interfaces</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="http://beyondtheseal.com/#19" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_banana.png" alt="A Brief History of the Banana Business">
+                        </figure>
+                        <h4>A Brief History of the Banana Business</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="https://timeline.knightlab.com/examples/republican/index.html" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_republican.jpg" alt="The Republican Run-Up">
+                        </figure>
+                        <h4>The Republican Run-Up</h4>
+                    </a>
+                </div>
+                <div class="grid-item">
+                    <a href="https://timeline.knightlab.com/examples/houston/index.html" class="button button-light">
+                        <figure class="examples">
+                            <img src="https://timeline.knightlab.com/static/img/examples/thumbs/thumb_houston.jpg" alt="Whitney Houston: 1963-2012">
+                        </figure>
+                        <h4>Whitney Houston: 1963-2012</h4>
+                    </a>
+                </div>
+        </div>
+#}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_faq.html b/public/opac/TimelineJS3-3.5.1/website/templates/_faq.html
new file mode 100644
index 0000000000000000000000000000000000000000..5f4be91cb6e2a88eee34dd0a0cfe31cb6e37195d
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_faq.html
@@ -0,0 +1,111 @@
+
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>How do I edit my timeline?</h3>
+                    <div class="accordion-content">
+                        Once you've created a timeline, you can make changes by going back to your Google spreadsheet. Changes you make to the spreadsheet are automatically available to your Timeline—you don't need to repeat the 'publish to the web' step (step #2). If you want to make changes to the optional settings, you will need to update your embed code, but if you are only changing content in the spreadsheet, then there's nothing else to do.
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>What web browsers does TimelineJS work with?</h3>
+                    <div class="accordion-content">
+                        Our primary development and testing browser is Google Chrome. We adhere closely to web standards, so we believe that TimelineJS should work effectively in all modern web browsers. TimelineJS is known to not work with Internet Explorer versions before IE10.
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>What are my options for changing how my Timeline looks?</h3>
+                    <div class="accordion-content">
+                        First, make sure you know everything you can do in the spreadsheet configuration, like background colors and images. Also, check out the optional settings part of 'step 3' of the authoring tool. You can change the fonts, the position of the timeline navigation, and the initial zoom level. If you still want to do more, there are some configuration options available. Most of those are for fine tuning, but some of them may be helpful.
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>There aren&#x27;t enough options. I want more control over the [font size/color/etc]. Can I change things using CSS?</h3>
+                    <div class="accordion-content">
+                        Because there are so many details to the styling, this is not exactly simple, but, if you have some technical capacity, you can override TimelineJS's <abbr title='Cascading Style Sheets'>CSS</abbr> rules and have complete control over the look of the timeline. For details, see <a href='/docs/overriding-styles.html'>Using the TimelineJS CSS selectors</a>. You will need to be able to <a href='/docs/instantiate-a-timeline.html'>instantiate the Timeline</a> in javascript on your own page. (There is no way to override the CSS using the <code>iframe</code> embed.) Then, either in <code>&lt;style&gt;</code> tags in that page, or in an external stylesheet, you can specify CSS rules changing some or all of TimelineJS's default presentation. The basis of TimelineJS's styles are in <a href='https://github.com/NUKnightLab/TimelineJS3/tree/master/source/less'>these files</a>, which use the <a href='http://lesscss.org/'>Less CSS preprocessor</a>.
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>How can I categorize or group my events?</h3>
+                    <div class="accordion-content">
+                        Every event in a timeline can have a group property. Events with the same group are shown in the same row or adjacent rows, and the common value of their group property is used as a label at the left edge of the timeline. Groups can be set using the 'group' column in the Google Spreadsheet or the 'group' property of a JSON slide object. TimelineJS does not support any other special styling for events in the same group.
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>The first slide in my timeline isn&#x27;t the first chronologically. Why did this happen?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>Can I make media images clickable?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>How can I format text (add line breaks, bold, italics)?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>How do I enter BCE dates?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>How do I create very ancient dates?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>Who can access the data in my Google spreadsheet?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>Privacy is very important to me. How should I use TimelineJS?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>Will my spreadsheet get picked up by search engines?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>Can I use TimelineJS with Wordpress? </h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3>Is TimelineJS free for commercial use?</h3>
+                    <div class="accordion-content">
+                    </div>
+                </li>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_footer.html b/public/opac/TimelineJS3-3.5.1/website/templates/_footer.html
new file mode 100644
index 0000000000000000000000000000000000000000..e8af6bdec6f806822db33eba5b59c6348d6a67c8
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_footer.html
@@ -0,0 +1,54 @@
+<footer class="footer-knightlab--dark">
+    <div class="container">
+        <div class='grid grid-center'>
+            <div class='column-2 column-4-phone column-4-tablet'>
+                <a href="http://knightlab.northwestern.edu" target="_blank">
+                    <img src="https://cdn.knightlab.com/libs/orangeline/latest/assets/logo-knightlab-stacked-dark-small.png" style="margin-left:auto;">
+                </a>
+                <ul class="list--social text-align-center">
+                    <li><a class="link--no-style" href="http://www.twitter.com/knightlab" target="_blank" title="Knight Lab on Twitter"><span class="icon-twitter"></span></a></li>
+                    <li><a class="link--no-style" href="https://www.facebook.com/knightlab" target="_blank" title="Knight Lab on Facebook"><span class="icon-facebook"></span></a></li>
+                    <li><a class="link--no-style" href="https://github.com/NUKnightLab/" target="_blank" title="Knight Lab on GitHub"><span class="icon-github"></span></a></li>
+                </ul>
+            </div>
+            <div class='column-4 column-5-tablet column-6-phone footer-description'>
+                <p>
+                    The <a title="Northwestern University" href="http://www.northwestern.edu/" target="_blank">Northwestern University</a> Knight Lab is a team of technologists and journalists working at advancing news media innovation through exploration and experimentation.
+                </p>
+                <div class="grid-size-2 grid-size-2-phone">
+                    <div class="grid-item">
+                        <a title="Medill School of Journalism, Media, Integrated Marketing Communications" href="http://www.medill.northwestern.edu/" target="_blank">
+                            <img src="https://cdn.knightlab.com/libs/orangeline/latest/assets/logo-medill-dark.png">
+                        </a>
+                    </div>
+                    <div class="grid-item">
+                        <a title="McCormick School of Engineering" href="http://www.mccormick.northwestern.edu/" target="_blank">
+                            <img src="https://cdn.knightlab.com/libs/orangeline/latest/assets/logo-mccormick-dark.png">
+                        </a>
+                    </div>
+                </div>
+            </div>
+        </div>
+        <div class="grid grid-center">
+            <div class="grid-item">
+            <address itemscope="" itemtype="http://data-vocabulary.org/Organization">
+                <span style="display:none;" itemprop="name" title="Knight Lab | Advancing news media innovation through exploration and experimentation." class="address-name">Knight Lab</span>
+                <span itemprop="tel" class="tel">(847) 467-4971</span>
+                <span itemprop="address" itemscope="" itemtype="http://data-vocabulary.org/Address" class="address">
+                    <span itemprop="street-address" class="street-address">1845 Sheridan Road</span>
+                    <span class="room-num">Fisk #109 &amp; #111</span>
+                    <div class="address-group">
+                        <span itemprop="locality">Evanston,</span> <span itemprop="region">IL</span> <span itemprop="postal-code">60208 </span>
+                        <span style="display:none;" itemprop="geo" itemscope="" itemtype="http://www.data-vocabulary.org/Geo/" class="geo">
+                            Latitude: <span itemprop="latitude">42.056893</span><br>Longitude:
+                            <span itemprop="longitude">-87.676735</span>
+                        </span>
+                        <a style="display:none;" href="http://knightlab.northwestern.edu" itemprop="url" class="url">Northwesten University Knight Lab | Advancing media innovation through exploration and experimentation.</a>
+                    </div>
+                </span>
+            </address>
+            <span class="copyright">© Copyright <script type="text/javascript"> document.write(new Date().getFullYear());</script> Northwestern University</span>
+            </div>
+        </div>
+    </div>
+</footer>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_head.html b/public/opac/TimelineJS3-3.5.1/website/templates/_head.html
new file mode 100644
index 0000000000000000000000000000000000000000..a638d1f64edd8f159615d8db40aee62cd8b661a2
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_head.html
@@ -0,0 +1,36 @@
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <title>Timeline</title>
+    <meta name="keywords" content="">
+    <meta name="description" content="Timeline JS is a free, easy-to-use tool for telling stories in a timeline format.">
+    <link rel="stylesheet" href="https://cloud.webtype.com/css/d4767ecb-457a-4677-8761-72f890add836.css"/>
+    <link rel="stylesheet" href="/static/css/site.css"/>
+    <link rel="stylesheet" href="https://cdn.knightlab.com/libs/orangeline/latest/css/orangeline.min.css"/>
+
+   <!-- favicons -->
+    <link rel="apple-touch-icon" sizes="180x180" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/apple-touch-icon.png">
+    <link rel="icon" type="image/png" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/favicon-32x32.png" sizes="32x32">
+    <link rel="icon" type="image/png" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/favicon-16x16.png" sizes="16x16">
+    <link rel="manifest" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/manifest.json">
+    <link rel="mask-icon" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
+    <meta name="theme-color" content="#ffffff">
+    <!-- /favicons -->
+
+    <!-- Open Graph -->
+   <meta property="og:type" content="article" />
+   <meta property="og:title" content="Timeline JS" />
+   <meta property="og:description" content="Easy-to-make, beautiful timelines." />
+   <meta property="og:image" content="https://cdn.knightlab.com/libs/orangeline/latest/assets/screenshot-timeline.png" />
+   <meta property="og:url" content="https://timeline.knightlab.com/" />
+   <meta property="og:site_name" content="Timeline JS" />
+   <!-- /Open Graph -->
+
+   <!-- Twitter Card -->
+   <meta name="twitter:title" content="Timeline JS">
+   <meta name="twitter:description" content="Easy-to-make, beautiful timelines.">
+   <meta name="twitter:image" content="https://cdn.knightlab.com/libs/orangeline/latest/assets/screenshot-timeline.png">
+   <meta name="twitter:site" content="@knightlab">
+   <meta name="twitter:creator" content="@TimelineJS">
+   <!-- /Twitter Card -->
+
+   <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_header.html b/public/opac/TimelineJS3-3.5.1/website/templates/_header.html
new file mode 100644
index 0000000000000000000000000000000000000000..807e6491210c8fcebec5a42e4e3bded57411ab52
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_header.html
@@ -0,0 +1,18 @@
+<header class="header-product">
+    <h1 class="product-logo product-logo-large">Timeline <span>JS</span></h1>
+    <h2 class="product-tagline">Easy-to-make, beautiful timelines.</h2>
+    <a class="button button-secondary button-large button-small-phone" href="#make">Make a Timeline</a>
+    <nav id="navbar-secondary" class="navbar navbar-subnav column-hide-phone">
+        <ul>
+            <li class="logo">
+                <h2 class="product-logo product-logo-smallest">Timeline <span>JS</span></h2>
+            </li>
+        </ul>
+        <ul>
+                <li><a class="button" href="#overview">Overview</a></li>
+                <li><a class="button" href="#examples">Examples</a></li>
+                <li><a class="button" href="#make">Make a Timeline</a></li>
+                <li><a class="button" href="#help">Help</a></li>
+        </ul>
+    </nav>
+</header>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_help.html b/public/opac/TimelineJS3-3.5.1/website/templates/_help.html
new file mode 100644
index 0000000000000000000000000000000000000000..6605bf87bf4fff581af90199334c1da0404cfac7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_help.html
@@ -0,0 +1,50 @@
+    <section class="section container" id="help">
+    <div class="grid">
+        <div class="column-8">
+            <h2>Help</h2>
+            <p>
+                Need help? First, please be sure to look at our list of <a href="#faq">frequently asked questions</a> below. If you're brand new to Timeline JS, you may also want to watch our <a href="https://vimeo.com/143407878" target="_blank">introductory video</a>.
+            </p>
+            <p>
+                If you don't find an answer there, try our <a href="https://knightlab.zendesk.com/forums/22551396-TimelineJS">support forums</a> or use our <a href="https://knightlab.zendesk.com/anonymous_requests/new">tech support web form.</a> <strong>Please be clear</strong> with your question, <strong>include a link to your spreadsheet</strong>, and if appropriate, a link to a page which shows the issue with which you need help. <strong>We can only answer support questions in English.</strong> We try to be prompt, but please understand that we do not have a dedicated tech support staff.
+            </p>
+            <p class="note">
+                <strong>Find a bug?</strong> If you are confident you have found a bug, please report it as <a href="https://github.com/NUKnightLab/TimelineJS3/issues">a GitHub issue</a>. Be sure to include detailed instructions on how to reproduce the bug. If you're not sure, please start with <a href="https://knightlab.zendesk.com/anonymous_requests/new">the tech support system</a>.
+            </p>
+        </div>
+        <div class="column-4">
+            <h3>Technical documentation</h3>
+            <p>Go further with Timeline:</p>
+            <ul>
+                    <li><a href="/docs/using-spreadsheets.html">Use our spreadsheet template</a></li>
+                    <li><a href="/docs/media-types.html">Supported Media Types</a></li>
+                    <li><a href="/docs/json-format.html">JSON data format reference</a></li>
+                    <li><a href="/docs/overriding-styles.html">Using the TimelineJS CSS selectors</a></li>
+                    <li><a href="/docs/options.html">Timeline Configuration Options</a></li>
+                    <li><a href="/docs/instantiate-a-timeline.html">Using TimelineJS in Javascript</a></li>
+            </ul>
+        </div>
+    </div>
+    <div class="grid" id="faq">
+        {# TODO: extract faq.html content into faq.json #}
+        <div class="grid-item">
+            <h3>Frequently asked questions</h3>
+            <ul class="accordion">
+            {% for faq in faqs %}
+            {#
+                Add/edit faqs in the faqs.json file.
+                Depends upon inject_index_data in app.py for these to be available to render.
+            #}
+                <li>
+                    <input type="checkbox" checked>
+                    <i></i>
+                    <h3 id="{{ faq.slug }}">{{ faq.question }}</h3>
+                    <div class="accordion-content">
+                        {{ faq.answer|safe }}
+                    </div>
+                </li>
+            {% endfor %}
+            </ul>
+        </div>
+    </div>
+    </section>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_make.html b/public/opac/TimelineJS3-3.5.1/website/templates/_make.html
new file mode 100644
index 0000000000000000000000000000000000000000..ddab481abf03db246dd5d421213d58e4ccb858fa
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_make.html
@@ -0,0 +1,282 @@
+    <section class="section-color section-color-complement" id="make">
+            <div class="container">
+                <h2>Make a Timeline</h2>
+                <p>
+                    TimelineJS works on any site or blog. Make your own in four easy steps. <br>      <em>Having trouble? Watch our <a href="https://vimeo.com/143407878">video</a>, or see the <a href="#help">help section below</a>.</em>
+                </p>
+                <ol class="instructional-steps">
+                    <li class="step grid">
+                        <div class="step-number column-2">
+                            <h6>Create your spreadsheet</h6>
+                        </div>
+                        <div class="step-details column-10">
+                            <p>Build a new Google Spreadsheet using our template. You'll need to copy the template to your own Google Drive account by clicking the "Make a Copy" button.</p>
+                            <p>Drop dates, text and links to media into the appropriate columns. For more about working with our template, see our <a href="#">help docs.</a></p>
+                            <a class="button button-complement" href="https://docs.google.com/spreadsheets/d/1pHBvXN7nmGkiG8uQSUB82eNlnL8xHu6kydzH_-eguHQ/copy" target="_blank">Get the Spreadsheet Template &nbsp;<span class="icon-new-tab"></span></a>
+                            <p class="note">Don't change the column headers, don't remove any columns, and don't leave any blank rows in your spreadsheet.</p>
+                        </div>
+                    </li>
+                    <li class="step grid">
+                        <div class="step-number column-2">
+                            <h6>Publish to the web</h6>
+                        </div>
+                        <div class="step-details column-10">
+                            <div class="grid">
+                                <div class="grid-item">
+                                    <p>Under the File menu, select “Publish to the Web.”</p>
+                                    <img class="img-shadow"  src="http://timeline.knightlab.com/static/img/make/publish_to_web_small.png" />
+                                    <p>In the next window, click the blue "publish" button. When asked, "Are you sure…?" click OK.</p>
+                                    <p>Now, copy the URL that appears in the center of the window. You'll use this in the next step.</p>
+                                </div>
+                                <div class="grid-item">
+                                    <img class="img-shadow"  src="http://timeline.knightlab.com/static/img/make/publish_to_web_button_small.png" />
+                                    <img class="img-shadow"  src="http://timeline.knightlab.com/static/img/make/publish_to_web_url_small.png" />
+                                </div>
+                            </div>
+                        </div>
+                    </li>
+
+                    <li class="step grid" id="make-step-3">
+                        <div class="step-number column-2">
+                            <h6>Generate your timeline</h6>
+                        </div>
+                        <div class="step-details column-10">
+                            <p>Copy/paste spreadsheet URL into the box below to generate your timeline. (Make sure you've published the spreadsheet.)</p>
+                            <form>
+
+                                <div class="grid grid-left ">
+                                    <div class="input-group-label column-12">
+                                        <label class="input-group-addon" for="inlinelabel">Google Spreadsheet URL</label>
+                                        <input type="text" id="embed-source-url" placeholder="1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI" name="inlinelabel">
+                                    </div>
+                                    <div class="input-group-label column-3">
+                                        <label class="input-group-addon" for="inlinelabel">Width</label>
+                                        <input type="text" value="100%" placeholder="100%" id="embed-width" class="input-mini">
+                                    </div>
+                                    <div class="input-group-label column-3">
+                                        <label class="input-group-addon" for="inlinelabel">Height</label>
+                                        <input type="text" value="650" placeholder="650" id="embed-height" class="input-mini">
+                                    </div>
+                                </div>
+                            </form>
+
+                            <div class="panel">
+                                <form>
+                                    <fieldset>
+                                        <h5 style="margin-top:0;">Optional settings
+                                            <a id="show-options">(show)<span class="caret"></span></a>
+                                            <a id="hide-options">(hide)<span class="caret"></span></a>
+                                        </h5>
+                                        <p class="small"><em>Set language, fonts, starting slide and more.</em></p>
+                                        <div class="more-options">
+                                            <div class="grid">
+                                                <!-- Language-->
+                                                <div class="grid-item">
+                                                    <h6>Language</h6>
+                                                    <select id="embed-language">
+                                                        <option value="en" data-lang="English">English</option>
+                                                        <option value="en-24hr" data-lang="English (24-hour time)">English (24-hour time)</option>
+                                                        <option value="ar" data-lang="Arabic">العربية</option>
+                                                        <option value="af" data-lang="Afrikaans">Afrikaans</option>
+                                                        <option value="id" data-lang="Indonesian">Bahasa Indonesia</option>
+                                                        <option value="ms" data-lang="Malay">Bahasa Melayu</option>
+                                                        <option value="be" data-lang="Belarusian">Беларуская мова</option>
+                                                        <option value="bg" data-lang="Bulgarian">български език</option>
+                                                        <option value="ca" data-lang="Catalan">Català</option>
+                                                        <option value="cz" data-lang="Czech">Čeština</option>
+                                                        <option value="da" data-lang="Danish">Dansk</option>
+                                                        <option value="hi" data-lang="Hindi">हिन्दी</option>
+                                                        <option value="de" data-lang="German">Deutsch</option>
+                                                        <option value="et" data-lang="Estonian">Eesti keel</option>
+                                                        <option value="el" data-lang="Greek">ελληνικά</option>
+                                                        <option value="es" data-lang="Spanish">Español</option>
+                                                        <option value="eo" data-lang="Esperanto">Esperanto</option>
+                                                        <option value="eu" data-lang="Basque">Euskara</option>
+                                                        <option value="fo" data-lang="Faroese">Føroyskt</option>
+                                                        <option value="fr" data-lang="French">Français</option>
+                                                        <option value="fy" data-lang="Frisian">Frysk</option>
+                                                        <option value="ga" data-lang="Irish">Gaeilge</option>
+                                                        <option value="gl" data-lang="Galician">Galego</option>
+                                                        <option value="ko" data-lang="Korean">한국어</option>
+                                                        <option value="hr" data-lang="Croatian">Hrvatski</option>
+                                                        <option value="hy" data-lang="Armenian">Õ€Õ¡ÕµÕ¥Ö€Õ§Õ¶</option>
+                                                        <option value="is" data-lang="Icelandic">Íslenska</option>
+                                                        <option value="it" data-lang="Italian">Italiano</option>
+                                                        <option value="he" data-lang="Hebrew">עברית</option>
+                                                        <option value="ka" data-lang="Georgian">ქართული</option>
+                                                        <option value="lv" data-lang="Latvian">Latviešu valoda</option>
+                                                        <option value="lb" data-lang="Luxembourgish">Lëtzebuergesch</option>
+                                                        <option value="lt" data-lang="Lithuanian">Lietuvių kalba</option>
+                                                        <option value="ro" data-lang="Romanian">Limba română</option>
+                                                        <option value="hu" data-lang="Hungarian">Magyar</option>
+                                                        <option value="my" data-lang="Myanmar"> မြန်မာ</option>
+                                                        <option value="nl" data-lang="Dutch">Nederlands</option>
+                                                        <option value="ne" data-lang="Nepali">नेपाली</option>
+                                                        <option value="ja" data-lang="Japanese">日本語</option>
+                                                        <option value="no" data-lang="Norwegian">Norsk</option>
+                                                        <option value="th" data-lang="Thai">ภาษาไทย</option>
+                                                        <option value="pl" data-lang="Polish">Polski</option>
+                                                        <option value="pt" data-lang="Portuguese">Português</option>
+                                                        <option value="pt-br" data-lang="Portuguese - Brazilian">Português (Brasil)</option>
+                                                        <option value="rm" data-lang="Romansh">Rumantsch</option>
+                                                        <option value="ru" data-lang="Russian">Русский язык</option>
+                                                        <option value="si" data-lang="Sinhalese">සිංහල</option>
+                                                        <option value="sl" data-lang="Slovenian">Slovenščina</option>
+                                                        <option value="sk" data-lang="Slovak">Slovenčina</option>
+                                                        <option value="sr" data-lang="Serbian - Latin">Srpski</option>
+                                                        <option value="sr-cy" data-lang="Serbian - Cyrillic">српски</option>
+                                                        <option value="fi" data-lang="Finnish">Suomi</option>
+                                                        <option value="sv" data-lang="Swedish">Svenska</option>
+                                                        <option value="zh-tw" data-lang="Taiwanese">Taiwanese</option>
+                                                        <option value="tl" data-lang="Tagalog">Tagalog</option>
+                                                        <option value="ta" data-lang="Tamil">தமிழ்</option>
+                                                        <option value="te" data-lang="Telugu">తెలుగు</option>
+                                                        <option value="tr" data-lang="Turkish">Türkçe</option>
+                                                        <option value="uk" data-lang="Ukrainian">Українська</option>
+                                                        <option value="ur" data-lang="Urdu">اُردُو</option>
+                                                        <option value="vi" data-lang="Vietnamese">Tiếng Việt</option>
+                                                        <option value="fa" data-lang="Farsi">فارسی</option>
+                                                        <option value="zh-cn" data-lang="Chinese">中文</option>
+                                                    </select>
+                                                </div>
+
+                                                <!-- Fonts-->
+                                                <div class="grid-item" style="position: relative">
+                                                    <h6>Fonts</h6>
+                                                    <div id="embed-font-dropdown">
+                                                        <p style="padding-top:4px;"><img id="font-pair-preview" src="http://timeline.knilab.com/static/img/make/default.png"></p>
+                                                        <ul id="embed-font">
+                                                            <li data-value="Default" id="embed-font-active" style="padding-top: 1rem"><img src="static/img/make/default.png" alt="PT Narrow and PT Serif"></li>
+                                                            <li data-value="Abril-DroidSans"><img src="static/img/make/abril-droidsans.png" alt="Abril and Droid Sans"></li>
+                                                            <li data-value="Amatic-Andika" checked=""><img src="static/img/make/amatic-andika.png" alt="Amatic and Andika"></li>
+                                                            <li data-value="Bevan-PontanoSans"><img src="static/img/make/bevan-pontanosans.png" alt="Bevan and Pontano Sans"></li>
+                                                            <li data-value="Bitter-Raleway"><img src="static/img/make/bitter-raleway.png" alt="Bitter and Raleway"></li>
+                                                            <li data-value="Clicker-Garamond"><img src="static/img/make/clicker-garamond.png" alt="Clicker and Garamond"></li>
+                                                            <li data-value="Dancing-Ledger"><img src="static/img/make/dancing-ledger.png" alt="Dancing and Ledger"></li>
+                                                            <li data-value="Fjalla-Average"><img src="static/img/make/fjalla-average.png" alt="Fjalla and Average"></li>
+                                                            <li data-value="Georgia-Helvetica"><img src="static/img/make/georgia-helvetica.png" alt="Georgia and Helvetica"></li>
+                                                            <li data-value="Lustria-Lato"><img src="static/img/make/lustria-lato.png" alt="Lustria and Lato"></li>
+                                                            <li data-value="Medula-Lato"><img src="static/img/make/medula-lato.png" alt="Medula One and Lato"></li>
+                                                            <li data-value="OldStandard"><img src="static/img/make/oldstandard.png" alt="Old Standard"></li>
+                                                            <li data-value="OpenSans-GentiumBook"><img src="static/img/make/opensans-gentiumbook.png" alt="Open Sans and Gentium Book"></li>
+                                                            <li data-value="Playfair-FaunaOne"><img src="static/img/make/playfair-faunaone.png" alt="Playfair and Fauna One"></li>
+                                                            <li data-value="Playfair"><img src="static/img/make/playfair.png" alt="Playfair SC and Playfair"></li>
+                                                            <li data-value="PT"><img src="static/img/make/pt.png" alt="PT Sans, PT Sans Narrow, and PT Serif"></li>
+                                                            <li data-value="Roboto-Megrim"><img src="static/img/make/roboto-megrim.png" alt="Roboto and Megrim"></li>
+                                                            <li data-value="Rufina-Sintony"><img src="static/img/make/rufina-sintony.png" alt="Rufina and Sintony"></li>
+                                                            <li data-value="UnicaOne-Vollkorn"><img src="static/img/make/unicaone-vollkorn.png" alt="Unica One and Vollkorn"></li>
+                                                        </ul>
+
+                                                    </div>
+                                                </div>
+                                                <div class="grid-item">
+                                                    <h6>Map Type</h6>
+                                                    <div id="embed-maptype">
+                                                        <p class="small">Currently all Google's base maps are supported. When creating a Google map, style it the way you would like it to appear, and then paste the resulting link into your Google Spreadsheet.</p>
+                                                    </div>
+                                                </div>
+                                            </div>
+
+                                            <div class="grid-size-3 grid-left">
+                                                <div class="grid-item">
+                                                    <h6>Default start slide</h6>
+                                                    <div class="input-group-label">
+                                                        <label class="input-group-addon" for="inlinelabel">Slide</label>
+                                                        <input type="text" value="0" placeholder="0" id="embed-startatslide" class="input-mini">
+                                                    </div>
+                                                    <p class="small"><em>You can tell TimelineJS to start at a specific slide number.</em></p>
+                                                </div>
+                                                <div class="grid-item">
+                                                    <h6>Initial zoom level</h6>
+                                                    <div class="input-group-label">
+                                                        <label class="input-group-addon" for="inlinelabel">Zoom Level</label>
+                                                        <input type="text" value="2" placeholder="2" id="embed-initialzoom" class="input-mini">
+                                                    </div>
+                                                    <p class="small"><em>The zoom level at which the timeline portion of TimelineJS will display on load. Specify a value from 0-10 (default is 2). Smaller numbers show a greater span of time.</em></p>
+                                                </div>
+                                            </div>
+
+
+                                            <div class="grid grid-no-gutters">
+                                                <div class="column-12">
+                                                    <h6>Misc</h6>
+                                                </div>
+                                            </div>
+
+                                            <div class="grid-size-3 grid-left">
+                                                <div class="grid-item">
+                                                    <label class="checkbox">
+                                                        <input id="embed-startatend" type="checkbox" value="option1">Start at the end <br/><small style="display:block;margin-left:1.4rem;"><em>Begins the timeline on the last slide.</em></small>
+                                                    </label>
+                                                </div>
+                                                <div class="grid-item">
+                                                    <label class="checkbox">
+                                                        <input id="embed-timenavtop" type="checkbox" value="option1">Show nav on top
+                                                        <br/><small style="display:block;margin-left:1.4rem;"><em>Switches the vertical order of the timeline navigation and the media.</em></small>
+                                                    </label>
+                                                </div>
+                                                <div class="grid-item">
+                                                    <label class="checkbox">
+                                                        <input id="embed-debug" type="checkbox" value="option1">Debug
+                                                        <br/><small style="display:block;margin-left:1.4rem;"><em>In debug mode, the JavaScript console will display logging messages.</em></small>
+                                                    </label>
+                                                </div>
+                                                <div class="grid-item">
+                                                    <label class="checkbox">
+                                                         <input id="embed-hash-bookmark" type="checkbox" value="option1">Use hash bookmarks
+                                                        <br/><small style="display:block;margin-left:1.4rem;"><em>Assigns a hash bookmark to each slide's URL, allowing deep linking to slides. (For directly linked Timelines only -- does not work for iframe embeds)</em></small>
+                                                    </label>
+                                                </div>
+                                            </div>
+                                        </div>
+                                    </fieldset>
+                                </form>
+                            </div>
+                        </div>
+                    </li>
+
+                    <li class="step grid">
+                        <div class="step-number column-2">
+                            <h6>Share your timeline</h6>
+                        </div>
+                        <div class="step-details column-10">
+                            <h6>Share Link</h6>
+                            <p class="small">Use this to link directly to your timeline. </p> <p class="small"><em>If you're embedding on Medium.com or other oembed-aware services, just paste this link on a line by itself where you want your timeline to appear.</em></p>
+
+                            <!-- <ul class="list--social">
+                                <li>
+                                    <a class="link--no-style" href="#" ><span class="icon-twitter text-color-complement"></span></a>
+                                </li>
+                                <li>
+                                    <a class="link--no-style" href="#"><span class="icon-facebook text-color-complement"></span></a>
+                                </li>
+                            </ul> -->
+                            <form>
+                                <textarea id="sharable-url" rows="3" type="text" "readonly" name="textplaceholder" value="" style="height:4rem;">
+https://cdn.knightlab.com/libs/timeline/latest/embed/?source=1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI&font=Bevan-PotanoSans&maptype=toner&width=600&height=600
+                                </textarea>
+                            </form>
+                            <h6>Embed</h6>
+                            <p class="small">Copy this embed code and paste it on your site where you want your timeline to appear (just like a YouTube video). </p>
+                            <form>
+                                <textarea id="embed_code" rows="3" readonly="readonly" type="text" name="textplaceholder" value="" style="height:5rem;">
+&lt;iframe src=&apos;https://cdn.knightlab.com/libs/timeline/latest/embed/?source=1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI&amp;font=Bevan-PotanoSans&amp;maptype=toner&amp;width=600&amp;height=600&apos; width=&apos;600&apos; height=&apos;600&apos; frameborder=&apos;0&apos;&gt;&lt;/iframe&gt;
+                                </textarea>
+                            </form>
+                            <a class="button button-complement" href="#preview-embed" id="iframe-preview-button">Preview</a>&nbsp;
+                            <a class="button button-light" href="#" id="preview-embed-link" target="_blank">Open Preview in a new window  &nbsp;<span class="icon-new-tab"></span></a>
+                        </div>
+                    </li>
+                </ol>
+            </div>
+            <div id="preview-embed">
+                <div class="container">
+                    <h3>Preview Embed</h3>
+                </div>
+                <section id="demo" class="container-fluid">
+                    <div id="preview-embed-iframe" class="product-demo">
+                        <iframe src="https://cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650" width="100%" height="650" frameborder="0"></iframe>
+                    </div>
+                </section>
+            </div>
+    </section>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_nav.html b/public/opac/TimelineJS3-3.5.1/website/templates/_nav.html
new file mode 100644
index 0000000000000000000000000000000000000000..0541838690a60281ddc7b9426d80b4334ae69e5f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_nav.html
@@ -0,0 +1,24 @@
+ <!-- Add the class "sticky" to "top-bar" to make the navbar sticky. -->
+ <nav class="top-bar" data-topbar role="navigation">
+   <div class="row">
+    <ul class="title-area">
+      <li class="name">
+        <h1><a href="/index.html">TimelineJS</a></h1>
+      </li>
+      <li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
+    </ul>
+
+    <section class="top-bar-section">
+      <!-- Right Nav Section -->
+      <ul class="right">
+        <li class="logo"><a href="//knightlab.northwestern.edu/" alt="Northwestern University Knight Lab"><img width="130" src="https://cdn.knightlab.com/libs/purpleline/latest/img/logos/logo_horizontal_NOtagline_383x91_transparent_NOpadding.png"></a></li>
+      </ul>
+      <!-- Left Nav Section -->
+      <ul class="left">
+        <li><a href="/index.html#make">Make</a></li>
+        <li><a href="/index.html#examples">Examples</a></li>
+        <li class="active"><a href="/docs/index.html">Documentation</a></li>
+      </ul>
+    </section>
+  </div>
+</nav>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_overview.html b/public/opac/TimelineJS3-3.5.1/website/templates/_overview.html
new file mode 100644
index 0000000000000000000000000000000000000000..f69401b5d00f7fd3d3b876ac4696136e1431bc4e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_overview.html
@@ -0,0 +1,32 @@
+    <section id="overview" class="container">
+            <div class="grid-size-2 grid-size-1-phone">
+                <div class="grid-item">
+                    <p>
+                        TimelineJS is an open-source tool that enables anyone to build visually rich, interactive timelines. Beginners can create a timeline using nothing more than a Google spreadsheet, <a href="https://docs.google.com/spreadsheets/u/1/d/1xuY4upIooEeszZ_lCmeNx24eSFWe0rHe9ZdqH2xqVNk/pubhtml">like the one we used for the Timeline above</a>. Experts can use their JSON skills to create custom installations, while keeping TimelineJS's core functionality.
+                    </p>
+                    <figure>
+                        <div class="embed embed-16by9">
+                            <iframe class="embed-item" src="https://player.vimeo.com/video/143407878"></iframe>
+                        </div>
+                        <figcaption class="credit">Knight Lab</figcaption>
+                        <figcaption>
+                            Watch this brief video for an overview of how to make a timeline.
+                        </figcaption>
+                    </figure>
+                </div>
+                <div class="grid-item">
+                    <h3 style="margin-top:0;">Tips &amp; tricks</h3>
+                    <ol>
+                        <li>Keep it short. We recommend not having more than 20 slides for a reader to click through.</li>
+                        <li>Pick stories that have a strong chronological narrative. It does not work well for stories that need to jump around in the timeline.</li>
+                        <li>Write each event as a part of a larger narrative.</li>
+                        <li>Include events that build up to major occurrences — not just the major events.</li>
+                    </ol>
+                    <h3>Media sources</h3>
+                    <p>
+                        TimelineJS can pull in media from a variety of sources.
+                        Twitter, Flickr, YouTube, Vimeo, Vine, Dailymotion, Google Maps, Wikipedia, SoundCloud, Document Cloud and more!
+                    </p>
+                </div>
+            </div>
+    </section>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_roadmap.html b/public/opac/TimelineJS3-3.5.1/website/templates/_roadmap.html
new file mode 100644
index 0000000000000000000000000000000000000000..e2f342dc43d95bd4505615b067b31de11a2beacc
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_roadmap.html
@@ -0,0 +1,27 @@
+<section id="roadmap">
+<div class="row">
+    <div class="small-12 medium-8 columns">
+      <h2>Roadmap</h2>
+      <p>
+      We know that TimelineJS is very popular, so we want to make sure that you understand our plans. TimelineJS3 will be in "beta" until approximately September 2015. Once we're confident that there are no serious issues,
+      we'll move this website to replace the current <a href="http://timeline.knightlab.com">timeline.knightlab.com</a>, so that everyone who makes new timelines will use the new software.
+      </p>
+      <p>
+        Don't worry: even when we do that, <strong>your existing timelines made with either the new or old version will continue to work</strong>, with no action required. Also, as we make improvements to TimelineJS3, the timelines you make now will automatically take advantage of them.
+      </p>
+      <p>
+        However, we have already been tapering off work on any changes to the original TimelineJS, and that will continue as we focus on TimelineJS3. If you discover issues with the original TimelineJS, we will make sure that they aren't issues in TimelineJS3 and we'll encourage you to switch. We've made the new version work with the old spreadsheets, so that should be pretty painless.
+      </p>
+    </div>
+    <div class="small-12 medium-4 columns panel">
+      <h4>Why is it TimelineJS3?</h4>
+      <p>Some people have wondered why we are calling this TimelineJS3. Was there a TimelineJS2?</p>
+      <p>As with other software, we are frequently making changes to our code, and each time we make a new release,
+we update the version number. While we never publicly talked about "TimelineJS2," the version number of the current software is <code>2.36.0</code>. 
+      </p>
+      <p>
+        Once TimelineJS3 is out of beta, we'll just call it TimelineJS, but it will still have version numbers. So TimelineJS3's version numbering begins with <code>3.0.0</code>.
+      </p>
+  </div>
+</div>
+</section>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/_storytelling_tools.html b/public/opac/TimelineJS3-3.5.1/website/templates/_storytelling_tools.html
new file mode 100644
index 0000000000000000000000000000000000000000..20bfbd2ea1ed324bec0a9afd8719f11dfbfb1077
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/_storytelling_tools.html
@@ -0,0 +1,35 @@
+<section class="moth--product">
+    <h3>Storytelling Tools</h3>
+    <p class="product-tagline">We build easy-to-use tools that can help you tell better stories.</p>
+    <div class="grid grid-size-4 grid-size-2-tablet grid-size-1-phone">
+        <div class="grid-item">
+            <a href="http://timeline.knightlab.com/" class="button button-dark">
+                <img class="img-rounded" src="https://cdn.knightlab.com/libs/orangeline/latest/assets/screenshot-timeline.png">
+                <h4 class="product-logo product-logo-small">Timeline <span>JS</span></h4>
+                <p class="product-tagline">Easy-to-make, beautiful timelines.</p>
+            </a>
+        </div>
+        <div class="grid-item">
+            <a href="http://storymap.knightlab.com/" class="button button-dark">
+                <img class="img-rounded" src="https://cdn.knightlab.com/libs/orangeline/latest/assets/screenshot-storymap.png">
+                <h4 class="product-logo product-logo-small">StoryMap <span>JS</span></h4>
+                <p class="product-tagline">Maps that tell stories.</p>
+            </a>
+        </div>
+        <div class="grid-item">
+            <a href="http://juxtapose.knightlab.com/" class="button button-dark">
+                <img class="img-rounded" src="https://cdn.knightlab.com/libs/orangeline/latest/assets/screenshot-juxtapose.jpg">
+                <h4 class="product-logo product-logo-small">Juxtapose <span>JS</span></h4>
+                <p class="product-tagline">Easy-to-make frame comparisons.</p>
+            </a>
+        </div>
+        <div class="grid-item">
+            <a href="http://soundcite.knightlab.com/" class="button button-dark">
+                <img class="img-rounded" src="https://cdn.knightlab.com/libs/orangeline/latest/assets/screenshot-soundcite.png">
+                <h4 class="product-logo product-logo-small">Soundcite <span>JS</span></h4>
+                <p class="product-tagline">Seamless inline audio.</p>
+            </a>
+        </div>
+    </div>
+    <a href="http://knightlab.northwestern.edu/projects/" class="button button-dark" style="margin-top:1rem;z-index:22;">View More</a>
+</section>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/base.html b/public/opac/TimelineJS3-3.5.1/website/templates/base.html
new file mode 100644
index 0000000000000000000000000000000000000000..4a16dbb3d578095d264106d74bc3fc20c6fa0172
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/base.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+{% block head %}
+    {% include "_head.html" %}
+{% endblock head %}
+</head>
+
+<body>
+
+<nav id="navbar-product-top" class="navbar navbar-dark">
+    <ul>
+        <li class="logo">
+            <a href="http://knightlab.com">
+                <img src="https://cdn.knightlab.com/libs/orangeline/latest/assets/knightlab-dark.png" />
+            </a>
+        </li>
+    </ul>
+    <ul class="nav-right column-hide-phone">
+        <li><a class="button button-dark button-small-tablet" href="https://knightlab.northwestern.edu/projects/">Projects</a></li>
+        <li><a class="button button-dark button-small-tablet" href="https://knightlab.northwestern.edu/class">Class</a></li>
+        <li><a class="button button-dark button-small-tablet" href="https://knightlab.northwestern.edu/devicelab">Device Lab</a></li>
+        <li><a class="button button-dark button-small-tablet" href="https://knightlab.northwestern.edu/news/">Blog</a></li>
+        <li><a class="button button-dark button-small-tablet" href="https://knightlab.northwestern.edu/events/">Community</a></li>
+        <li><a class="button button-dark button-small-tablet" href="https://knightlab.northwestern.edu/about/">About</a></li>
+    </ul>
+</nav>
+
+{% block content %}
+{% endblock content %}
+
+{% block footer %}
+    {% include "_footer.html" %}
+{% endblock footer %}
+
+{% block scripts %}
+    <!-- build:js https://cdn.knightlab.com/libs/timeline3/%(cdn)s/js/timeline-min.js -->
+    <script src="/build/js/timeline.js"></script>
+    <!-- endbuild -->
+    <script src="/static/js/main.js"></script>
+    <script src="https://cdn.knightlab.com/libs/orangeline/latest/js/main.js"></script>
+{% endblock scripts %}
+</body>
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/faq.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/faq.html
new file mode 100644
index 0000000000000000000000000000000000000000..a275929e5349b2551564c2de9a710db3f1f4f9f4
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/faq.html
@@ -0,0 +1,239 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+<article>
+  <section class="section-color container">
+    <p class="breadcrumb"><a href="index.html">&#12298; Back to main documentation page</a></p>
+    <h2 class="header-story" id="faq">Frequently Asked Questions</h2>
+  </section>
+  <section class="container">
+    <div class="grid">
+      <div class="column-12">
+        <p id="jump-nav" class="breadcrumb">Jump to: <!-- links dynamically added based on h6.label elements --></p>
+
+        <div class="question">
+          <p id="editing">
+            How do I edit my timeline?
+          </p>
+          <p>
+            Once you've created a timeline, you can make changes by going back to your Google spreadsheet. Changes you make
+            to the spreadsheet are automatically available to your Timeline&mdash;you don't need to repeat the "publish to the web" step
+            (step #2). If you want to make changes to the optional settings, you will need to update your embed code, but if you
+            are only changing content in the spreadsheet, then there's nothing else to do.
+          </p>
+        </div>
+
+        <div class="question">
+          <p id="browsers">
+            What web browsers does TimelineJS work with?
+          </p>
+          <p>
+            Our primary development and testing browser is Google Chrome. We adhere closely to web standards, so we believe that TimelineJS should work effectively in all <a href="http://browsehappy.com/">modern web browsers</a>. TimelineJS is known to not work with Internet Explorer versions before IE10.
+          </p>
+        </div>
+
+
+        <!-- ====================== -->
+        <!-- Style and Presentation -->
+        <!-- ====================== -->
+        <h6 class="label" id="styling" data-short="Styling">Style and Presentation</h6>
+        <div class="question">
+          <p id="styling-overview">
+            What are my options for changing how my Timeline looks?
+          </p>
+          <p>
+            First, make sure you know everything you can do in the <a href="/docs/using-spreadsheets.html">spreadsheet configuration</a>, like background colors and images.
+            Also, check out the <a href="/#make-step-3">optional settings</a> part of "step 3" of the authoring tool. You can change the fonts,
+            the position of the timeline navigation, and the initial zoom level. If you still want to do more, there are some <a href="/docs/options.html">configuration options</a> available. Most of those are for fine tuning, but
+            some of them may be helpful.
+          </p>
+        </div>
+        <div class="question">
+          <p id="custom-css">
+            There aren't enough options. I want more control over the [font size/color/etc]. Can I change things using CSS?
+          </p>
+          <p>
+            Because there are so many details to the styling, this is not exactly simple, but, if you have some technical capacity, you can override
+            TimelineJS's <abbr title="Cascading Style Sheets">CSS</abbr> rules and have complete control
+            over the look of the timeline. For details, see <a href="/docs/overriding-styles.html">Using the TimelineJS CSS selectors</a>. You will need to be able to <a href="/docs/instantiate-a-timeline.html">instantiate the Timeline</a> in javascript on your own page.
+            (There is no way to override the CSS using the <code>iframe</code> embed.) Then, either in <code>&lt;style&gt;</code> tags in that page, or in an external
+            stylesheet, you can specify CSS rules changing some or all of TimelineJS's default presentation. The basis of TimelineJS's styles are in
+            <a href="https://github.com/NUKnightLab/TimelineJS3/tree/master/source/less">these files</a>, which use the <a href="http://lesscss.org/">Less CSS preprocessor</a>.
+          </p>
+        </div>
+        <div class="question">
+          <p id="groups">
+            How can I categorize or group my events?
+          </p>
+          <p>
+            Every event in a timeline can have a <code>group</code> property. Events with the same group are shown in the same row or adjacent rows, and the common value of their <code>group</code>
+            property is used as a label at the left edge of the timeline. Groups can be set <a href="/docs/using-spreadsheets.html#groups">using the "group" column in the Google Spreadsheet</a> or the <a href="/docs/json-format.html#json-slide">"group" property of a JSON slide object</a>. TimelineJS does not support any other special styling for events in the same group.
+          </p>
+        </div>
+
+        <div class="question">
+          <p id="title-slide">
+            The first slide in my timeline isn't the first chronologically. Why did this happen?
+          </p>
+          <p>
+            When using the Google Spreadsheet to configure your timeline, if you put the word <code>title</code> in the <code>type</code> column, that slide will be put at the front, regardless of the values in the date columns. See the <a href="/docs/using-spreadsheets.html#title_slides">Google Spreadsheet documentation</a> for more information.
+          </p>
+        </div>
+
+
+        <!-- ===== -->
+        <!-- Media -->
+        <!-- ===== -->
+        <h6 class="label" id="media" data-short="Media">Working with media</h6>
+
+        <div class="question">
+          <p id="clickable-media">Can I make media images clickable?</p>
+          <p>
+            No. Many of TimelineJS's media types are interactive, and so would not be able to handle a link, and other of TimelineJS's media types have
+            terms of service which require a link back to the source of the media. As an alternative, consider using HTML to add links in the caption, credit,
+            or text for the slide.
+          </p>
+        </div>
+
+        <div class="question">
+          <p id="text-formatting">How can I format text (add line breaks, bold, italics)?</p>
+          <p>TimelineJS's text fields (headline, text, caption, and credit) all accept HTML markup. A full tutorial on HTML is outside the scope of this
+            FAQ, but here are a few basics:
+          </p>
+          <ul>
+            <li>Wrap paragraphs in <code>&lt;p&gt;&lt;/p&gt;</code> tags to create line breaks.</li>
+            <li>Wrap text in <code>&lt;b&gt;&lt;/b&gt;</code> tags for <b>bold</b> text and <code>&lt;i&gt;&lt;/i&gt;</code> for <i>italics</i></li>
+          </ul>
+
+        </div>
+
+        <!-- ======== -->
+        <!-- Settings -->
+        <!-- ======== -->
+  <!--
+        <h6 class="label" data-short="Settings" id="timeline-settings">TimelineJS settings</h6>
+        <div class="question">
+          <p>What are eras?</p>
+          <p></p>
+        </div>
+
+        <div class="question">
+          <p>Question TBD</p>
+          <p></p>
+        </div>
+   -->
+
+        <!-- =============== -->
+        <!-- Dates and times -->
+        <!-- =============== -->
+        <h6 class="label" data-short="Dates and times" id="date-time">Date and time formatting</h6>
+
+        <div class="question">
+          <p id="entering-bce-dates">How do I enter <em>BCE</em> dates?</p>
+          <p>
+            To enter dates before the <a href="https://en.wikipedia.org/wiki/Common_Era">common era</a>, just use a negative value for the year. Of course,
+            you can also enter month and date if you need them.
+          </p>
+        </div>
+
+        <div class="question">
+          <p id="entering-cosmological-dates">How do I create very ancient dates?</p>
+          <p>Generally, you don't have to think about it -- just enter the dates you want. Timeline can handle dates literally to the beginning of time.
+            For dates more than about 250,000 years ago, only the year is usable. Support for those older dates is still relatively new, so
+            if anything seems off, visit our <a href="http://knightlab.zendesk.com">tech support site.</a>
+          </p>
+        </div>
+
+        <!-- ================ -->
+        <!-- Data and privacy -->
+        <!-- ================ -->
+        <h6 class="label" id="data">Data and privacy</h6>
+        <div class="question">
+          <p id="google-spreadsheet-visibility">Who can access the data in my Google spreadsheet?</p>
+          <p>
+            You must make the data public to the web to use TimelineJS with a Google Spreadsheet as the data source. Normally, the data is still
+            only visible to people who know the link, so if you publish a timeline privately, outsiders are unlikely to see the data. However,
+            it is still public, so you must decide if that is acceptable.
+          </p>
+        </div>
+
+        <div class="question">
+          <p id="advanced-privacy">Privacy is very important to me. How should I use TimelineJS?</p>
+          <p>
+            If you want complete control over who can see the information in your timeline, you cannot use Google Spreadsheets, and you cannot use our
+            standard <code>iframe</code> embed code. Instead, you must use <a href="/docs/json-format.html">JSON format</a> for the data
+            and <a href="/docs/instantiate-a-timeline.html">instantiate the timeline</a> directly using javascript. You can then use standard web server
+            security measures to control who has access to your timeline and the data used to create it.
+          </p>
+        </div>
+
+        <div class="question">
+          <p id="are-spreadsheets-indexed">Will my spreadsheet get picked up by search engines?</p>
+          <p>
+            Under normal circumstances, Google tells search engines not to index spreadsheets which are published to the web. Of course, if the page is
+            public on the web, it is possible that a search engine will disregard those instructions.
+          </p>
+        </div>
+
+        <h6 class="label" id="publishing">Publishing</h6>
+        <div class="question">
+          <p id="wordpress">
+            Can I use TimelineJS with Wordpress?
+          </p>
+          <p>
+            <strong>It depends.</strong> TimelineJS does not work with Wordpress.com sites. We are researching ways to address this.
+          </p>
+          <p>
+            If you are able to install plugins to your Wordpress installation, we have a <a href="https://wordpress.org/plugins/knight-lab-timelinejs/">Wordpress plugin for Timeline</a>. It supports embedding Timelines with
+            wordpress "shortcode", and as of version 3.3.14.0, it also has experimental "oembed" support. That means that you can take a direct URL to a timeline (like you get with the "get link to preview" button) and put it in a post on a line by itself, and it should be embedded. (Make sure you've updated the plugin before you try it.)
+            </thead>
+          </p>
+        </div>
+
+        <!-- ========= -->
+        <!-- Licensing -->
+        <!-- ========= -->
+        <h6 class="label" id="licensing">Licensing</h6>
+        <div class="question">
+          <p id="commercial-use">Is TimelineJS free for commercial use?</p>
+          <p>TimelineJS is released under the <a href="https://www.mozilla.org/en-US/MPL/2.0/">Mozilla Public License (MPL), version 2.0</a>.
+            That means that TimelineJS is free to "use, reproduce, make available, modify, display, perform, distribute" or otherwise employ.
+            You don't need our permission to publish stories with TimelineJS and you don't need to pay us any fees or arrange any further license beyond the MPL.
+            To read more about what you can do with TimelineJS, read our <a href="/docs/license.html">license page</a>.
+          </p>
+        </div>
+      </div>
+  </div>
+</section>
+</article>
+{% endblock %}
+{% block scripts %}
+<script type="text/javascript">
+
+jQuery(document).ready(function() {
+  // make permalinks function for each question
+  jQuery("div.question > p[id]").each(function(){
+    jQuery(this).css('cursor','pointer');
+    jQuery(this).click(function(){
+      window.location.hash = "#" + this.id;
+    })
+  });
+
+  // set up the top level links to major sections
+  var sections = []
+  jQuery('h6.label[id]').each(function() {
+    var text = jQuery(this).data('short') || jQuery(this).text();
+    var hash = jQuery(this).attr('id');
+
+    if (sections.length > 0) {
+      sections.push(' | ');
+    }
+    sections.push(jQuery("<a href='#"+ hash +"'>" + text + "</a>"));
+  })
+  jQuery("#jump-nav").append(sections);
+
+})
+</script>
+
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/index.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..d2745210f906783a5a0e500a3543da74c8f12d1c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/index.html
@@ -0,0 +1,55 @@
+{% extends "base.html" %}
+{% block content %}
+<article>
+  <section class="section-color container">
+    <header>
+      <h2 class="header-story">Using TimelineJS</h2>
+      <p>TimelineJS is an open-source tool that enables anyone to build visually rich, interactive timelines. Beginners can <a href="/docs/using-spreadsheets.html">create a timeline using nothing more than a Google spreadsheet</a>. Experts can use their JSON skills to <a href="json-format.html">create custom installations</a> while keeping TimelineJS's core functionality.</p>
+    </header>
+  </section>
+  <section class="product-page container section-color">
+    <div class="grid">
+      <div class="column-6">
+        <h2>Learn more</h2>
+        <p>Get up and running in minutes. Learn how to: </p>
+        <ul>
+          <li><a href="using-spreadsheets.html">Use our spreadsheet template</a></li>
+          <li><a href="../index.html#make">Publish a timeline</a></li>
+        </ul>
+
+        <h2>Getting stuck?</h2>
+        <ul>
+          <li><a href="faq.html">Frequently Asked Questions (and Answers!)</a></li>
+        </ul>
+        <h2>Technical documentation</h2>
+        <p>Go further with Timeline:</p>
+        <ul>
+          <li><a href="media-types.html">Supported Media Types</a></li>
+          <li><a href="json-format.html">JSON data format reference</a></li>
+          <li><a href="overriding-styles.html">Using the TimelineJS CSS selectors</a></li>
+          <li><a href="options.html">Timeline Configuration Options</a></li>
+          <li><a href="instantiate-a-timeline.html">Using TimelineJS in Javascript</a></li>
+        </ul>
+      </div>
+      <div class="column-6" id="tips-and-tricks">
+        <h4>Tips &amp; tricks</h4>
+        <ol>
+          <li>Keep it short. We recommend not having more than 20 slides for a reader to click through.</li>
+          <li>Pick stories that have a strong chronological narrative. It does not work well for stories that need to jump around in the timeline.</li>
+          <li>Write each event as a part of a larger narrative.</li>
+          <li>Include events that build up to major occurrences — not just the major events.</li>
+        </ol>
+      </div>
+      <div class="column-6">
+        <h4>Need help?</h4>
+        <p>First, please be sure to look at our list of <a href="faq.html">frequently asked questions</a>.</p>
+          <p>If you don't find an answer there, we offer tech support <a href="mailto:support@knightlab.zendesk.com">via email</a> or <a href="https://knightlab.zendesk.com/anonymous_requests/new">a web form.</a> We try to be prompt, but please understand that we do not have a dedicated tech support staff.</p>
+      </div>
+      <div class="column-6">
+        <h4> Find a bug?</h4>
+        If you are confident you have found a bug, please report it as <a href="https://github.com/NUKnightLab/TimelineJS3/issues">a GitHub issue</a>. Be sure to include detailed instructions on how to reproduce the bug. If you're not sure, please start with the tech support system.</p>
+      </div>
+    </div>
+  </section>
+</article>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/instantiate-a-timeline.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/instantiate-a-timeline.html
new file mode 100644
index 0000000000000000000000000000000000000000..d03004dbfee73146c642ba02d7b1c882409f36dd
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/instantiate-a-timeline.html
@@ -0,0 +1,133 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+<article id="product-body">
+  <section class="section-color container" id="overriding-styles">
+    <p class="breadcrumb"><a href="index.html">&#12298; Back to main documentation page</a></p>
+    <h2 class="header-story" id="add-javascript">Integrate Timeline using Javascript</h2>
+    <p>
+      Most of our users are happy to use the markup created in our <a href="/index.html#make">simple authoring tool</a> to publish their timeline. However, if you want to substantially customize the visual presentation of your timeline, or integrate it with other parts of your page, you will need to understand some more technical details.
+    </p>
+  </section>
+  <section class="section-color container">
+    <div class="grid">
+      <div class="column-12">
+        <p>
+          There are three key things you need to include on your page to embed a timeline:
+          <ol>
+            <li>A <code>link</code> tag loading the Timeline CSS.</li>
+            <li>A <code>script</code> tag loading the Timeline javascript.</li>
+            <li>A second <code>script</code> tag which creates a Timeline.</li>
+          </ol>
+          Sometimes you'll add more things:
+          <ul>
+            <li>a <code>link</code> tag for <a href="#custom-fonts">custom fonts.</a></li>
+            <li>a <code>link</code> tag to override some of TimelineJS's CSS.</li>
+            <li>Javascript code to read configuration data from a Google Spreadsheet.</li>
+          </ul>
+        </p>
+
+      <pre class="prettyprint lang-html">
+      &lt;!-- 1 --&gt;
+      &lt;link title="timeline-styles" rel="stylesheet" href="https://cdn.knightlab.com/libs/timeline3/latest/css/timeline.css"&gt;
+
+      &lt;!-- 2 --&gt;
+      &lt;script src="https://cdn.knightlab.com/libs/timeline3/latest/js/timeline.js">&lt;/script&gt;
+
+      &lt;div id='timeline-embed' style="width: 100%; height: 600px"&gt;&lt;/div&gt;
+
+      &lt;!-- 3 --&gt;
+      &lt;script type="text/javascript"&gt;
+        // The TL.Timeline constructor takes at least two arguments:
+        // the id of the Timeline container (no '#'), and
+        // the URL to your JSON data file or Google spreadsheet.
+        // the id must refer to an element "above" this code,
+        // and the element must have CSS styling to give it width and height
+        // optionally, a third argument with configuration options can be passed.
+        // See below for more about options.
+        timeline = new TL.Timeline('timeline-embed',
+          'https://docs.google.com/spreadsheets/d/1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI/pubhtml');
+      &lt;/script&gt;</pre>
+
+      </div>
+      <div class="column-12">
+      <h3 id="in-page-json">Creating your own JSON</h3>
+      <p>
+        If you are retrieving JSON from a URL, you can simply use that URL as the second argument, just as if you are
+        loading data from a Google spreadsheet. If instead you have something in your page which will put the data together,
+        you can also pass a JSON object as the second argument.
+      </p>
+      <p>
+        Create the JSON according to <a href="json-format.html">our specifications</a> and then change step 3 to look like this.
+        <pre class="prettyprint lang-html">
+        &lt;!-- 3 --&gt;
+        &lt;script type="text/javascript"&gt;
+          var timeline_json = make_the_json(); // you write this part
+          // two arguments: the id of the Timeline container (no '#')
+          // and the JSON object or an instance of TL.TimelineConfig created from
+          // a suitable JSON object
+          window.timeline = new TL.Timeline('timeline-embed', timeline_json);
+        &lt;/script&gt;</pre>
+
+      </p>
+      </div>
+      <div class="column-12">
+        <h3 id="options">Configuring TimelineJS options</h3>
+        <p><code>TL.Timeline</code> offers an optional third parameter which you may use to pass in additional TimelineJS options. See our <a href="options.html">list of available options</a> and configure like the example below.</p>
+        <pre class="prettyprint lang-html">
+          &lt;script type="text/javascript"&gt;
+            var additionalOptions = {
+              start_at_end: true,
+              default_bg_color: {r:0, g:0, b:0},
+              timenav_height: 250
+            }
+
+            timeline = new TL.Timeline('timeline-embed',
+            'https://docs.google.com/spreadsheets/d/1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI/pubhtml',
+            additionalOptions);
+          &lt;/script&gt;
+        </pre>
+
+      </div>
+      <div class="column-12">
+      <h3 id="custom-fonts">Using custom fonts</h3>
+      <p>Timeline offers several pre-selected font sets. When you use our simple tool, the fonts get included for you, but if you're using the methods on this page, you'll have to load them yourself.</p>
+      <p>
+        To include them, use markup like this, a variation on step 1 above.
+            <pre class="prettyprint lang-html">
+      &lt;!-- 1 --&gt;
+      &lt;link title="timeline-styles" rel="stylesheet" href="https://cdn.knightlab.com/libs/timeline3/latest/css/timeline.css"&gt;
+      &lt;link title="timeline-styles" rel="stylesheet" href="https://cdn.knightlab.com/libs/timeline3/latest/css/fonts/font.abril-droidsans.css"&gt;</pre>
+      </p>
+      <p>
+          Of course, you'll change <code>font.abril-droidsans.css</code> according to which fonts you choose. Here are all the values which you might use there:
+          <ul>
+            <li>font.abril-droidsans.css</li>
+            <li>font.amatic-andika.css</li>
+            <li>font.bevan-pontanosans.css</li>
+            <li>font.bitter-raleway.css</li>
+            <li>font.clicker-garamond.css</li>
+            <li>font.dancing-ledger.css</li>
+            <li>font.default.css</li>
+            <li>font.fjalla-average.css</li>
+            <li>font.georgia-helvetica.css</li>
+            <li>font.knightlab.css</li>
+            <li>font.lustria-lato.css</li>
+            <li>font.medula-lato.css</li>
+            <li>font.oldstandard.css</li>
+            <li>font.opensans-gentiumbook.css</li>
+            <li>font.playfair-faunaone.css</li>
+            <li>font.playfair.css</li>
+            <li>font.pt.css</li>
+            <li>font.roboto-megrim.css</li>
+            <li>font.rufina-sintony.css</li>
+            <li>font.ubuntu.css</li>
+            <li>font.unicaone-vollkorn.css</li>
+          </ul></p>
+      </div>
+      <p>You can <a href="https://cdn.knightlab.com/libs/timeline3/latest/css/fonts/font.abril-droidsans.css">download a model copy</a> of a typical font CSS file from our CDN. You may want to put it through a <a href="http://www.cleancss.com/css-beautify/">CSS formatter before you start to edit it.</a> If you are familiar with <a href="http://lesscss.org/">LESS</a>, you may prefer to work from <a href="https://github.com/NUKnightLab/TimelineJS3/blob/master/source/less/">our LESS files on GitHub</a>.</p>
+    </div>
+  </section>
+</article>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/json-format.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/json-format.html
new file mode 100644
index 0000000000000000000000000000000000000000..b14e40f15fed2d91835c64859269d9a052a6948c
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/json-format.html
@@ -0,0 +1,456 @@
+{% extends "base.html" %}
+
+{% block content %}
+<article>
+  <section class="section-color container">
+    <p class="breadcrumb"><a href="index.html">&#12298; Back to main documentation page</a></p>
+    <header>
+      <h2 class="header-story">TimelineJS JSON data format</h2>
+      <p>
+        Every timeline needs data about the events it is to show. Most people are happy to just <a href="using-spreadsheets.html">use a Google spreadsheet</a> to configure their Timeline, but if you want to write
+        code to dynamically create or update your timeline, you'll need to understand how to format the data.
+      </p>
+    </header>
+  </section>
+  <section class="section-color container" id="json-format-documentation">
+  <div class="grid">
+    <div class="column-12">
+      <p>
+        If you just want to dive in, you can probably copy from one of our examples (like the one about <a href="https://github.com/NUKnightLab/TimelineJS3/blob/master/website/templates/examples/houston/timeline3.json">Whitney Houston</a>). Otherwise, complete documentation is below.
+      </p>
+      <p>
+        After you have worked out how to create JSON data for a Timeline, you'll also need to <a href="instantiate-a-timeline.html">put it on the page.</a>
+      </p>
+    <p>
+      The TimelineJS JSON format consists of a single JSON object with the following properties:
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <strong>Name</strong>
+        </div>
+        <div class="column-2 column-6-phone">
+          <strong>Required?</strong>
+        </div>
+        <div class="column-8">
+          <strong>Notes</strong>
+        </div>
+      </div>
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <code>events</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          Yes
+        </div>
+        <div class="column-8">
+          A JSON list of "slide" objects (<a href="#json-slide" data-scroll="true">see below</a>)
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>title</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          A "slide" object (<a href="#json-slide" data-scroll="true">see below</a>)
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>eras</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          A JSON list of "era" objects (<a href="#json-era" data-scroll="true">see below</a>)
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>scale</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          Either <code>human</code> or <code>cosmological</code>. If no scale is specified, the default is <code>human</code>. The <code>cosmological</code> scale is required to handle dates in the very distant past or future. (Before Tuesday, April 20th, 271,821 BCE after Saturday, September 13 275,760 CE) For the <code>cosmological</code> scale, only the year is considered, but it's OK to have a <code>cosmological</code> timeline with years between 271,821 BCE and 275,760 CE.
+        </div>
+      </div>
+    </p>
+    <p id="json-slide" class="jump">
+      <strong><em>Slide objects</em></strong> are JSON objects with the following properties:
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <strong>Name</strong>
+        </div>
+        <div class="column-2 column-6-phone">
+          <strong>Required?</strong>
+        </div>
+        <div class="column-8">
+          <strong>Notes</strong>
+        </div>
+      </div>
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <code>start_date</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          Yes, except for <code>title</code> slides
+        </div>
+        <div class="column-8">
+          A "date" object (<a href="#json-date" data-scroll="true">see below</a>)
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>end_date</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          A "date" object (<a href="#json-date" data-scroll="true">see below</a>)
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>text</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No, but recommended
+        </div>
+        <div class="column-8">
+          A "text" object (<a href="#json-text" data-scroll="true">see below</a>)
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>media</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          A "media" object (<a href="#json-media" data-scroll="true">see below</a>)
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>group</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          Any text. If present, Timeline will organize events with the same value for <code>group</code> to be in the same row or adjacent rows, separate from events in other groups. The common value for the group will be shown as a label at the left edge of the navigation.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>display_date</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          A string which will be used when Timeline displays the date for this. If used, override's display_date values set on the start or end date for this event, which is useful if you want to control how the two dates relate to each other.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>background</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          A Javascript object. The object can have these properties:
+          <br/><code>url</code>: the fully-qualified URL pointing to an image which will be used as the background
+          <br/><code>color</code>: a CSS color, in hexadecimal (e.g. <code>#0f9bd1</code>) or a valid <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Color_keywords">CSS color keyword</a>.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>autolink</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          A boolean value (<code>true</code> or <code>false</code>). Defaults to <code>true</code>, which means that Timeline will scan text fields and automatically add
+            <code>&lt;a&gt;</code> tags so that links and email addresses are "clickable." If set to false, you may still manually apply the tags in the appropriate fields when
+            you want links. Autolinking applies to the <code>text</code> field in
+            a <code><a href="#json-text" data-scroll="true">text</a></code> object and the <code>caption</code> and <code>credit</code> fields in
+            a <code><a href="#json-media" data-scroll="true">media</a></code> object.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>unique_id</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          No
+        </div>
+        <div class="column-8">
+          A string value which is unique among all slides in your timeline. If not specified, TimelineJS will construct an ID based on the headline, but if you later edit your headline, the ID will change. Unique IDs are used when the <code><a href="/docs/options.html#hash_bookmark">hash_bookmark</a></code> option is used, and can also be used with the <code>timeline.goToId()</code> method to programmatically move the timeline to a specific slide.
+        </div>
+      </div>
+
+      <p id="json-era" class="jump">
+        <strong><em>Era objects</em></strong> are JSON objects which are used to label a span of time on the timeline navigation component. In structure, they are essentially
+        very restricted "slide" objects.
+        <div class="grid">
+          <div class="column-2 column-6-phone">
+            <strong>Name</strong>
+          </div>
+          <div class="column-2 column-6-phone">
+            <strong>Required?</strong>
+          </div>
+          <div class="column-8">
+            <strong>Notes</strong>
+          </div>
+        </div>
+
+        <div class="grid">
+          <div class="column-2 column-6-phone">
+            <code>start_date</code>
+          </div>
+          <div class="column-2 column-6-phone">
+            Yes
+          </div>
+          <div class="column-8">
+            A "date" object (<a href="#json-date" data-scroll="true">see below</a>)
+          </div>
+
+          <div class="column-2 column-6-phone">
+            <code>end_date</code>
+          </div>
+          <div class="column-2 column-6-phone">
+            Yes
+          </div>
+          <div class="column-8">
+            A "date" object (<a href="#json-date" data-scroll="true">see below</a>)
+          </div>
+
+          <div class="column-2 column-6-phone">
+            <code>text</code>
+          </div>
+          <div class="column-2 column-6-phone">
+            No, but recommended
+          </div>
+          <div class="column-8">
+            A "text" object (<a href="#json-text" data-scroll="true">see below</a>)
+          </div>
+        </div>
+
+    <p id="json-date" class="jump"><strong><em>Date objects</em></strong> are JSON objects with the following properties:</p>
+    <div class="grid">
+      <div class="column-2 column-6-phone">
+        <strong>Name</strong>
+      </div>
+      <div class="column-2 column-6-phone">
+        <strong>Required?</strong>
+      </div>
+      <div class="column-8">
+        <strong>Notes</strong>
+      </div>
+    </div>
+
+    <div class="grid">
+      <div class="column-2 column-6-phone">
+        <code>year</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        Yes
+      </div>
+      <div class="column-8">
+        A number. Don't use commas. BCE years should be negative numbers. Don't use the letters "BC", "BCE" or any others.
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>month</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A number from 1-12 (Javascript experts don't outsmart yourselves: Timeline corrects for Javascript's strange use of "0" for "January", etc.)
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>day</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A number
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>hour</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A number from 0-23
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>minute</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A number from 0-59
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>second</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A number from 0-59
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>millisecond</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A number
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>display_date</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A string for presenting the date. Useful if Timeline's date formatting doesn't fit your needs.
+      </div>
+    </div>
+
+    <p id="json-text" class="jump"><strong><em>Text objects</em></strong> are JSON objects with the following properties. For each slide, text objects are optional.</p>
+    <div class="grid">
+      <div class="column-2 column-6-phone">
+        <strong>Name</strong>
+      </div>
+      <div class="column-2 column-6-phone">
+        <strong>Required?</strong>
+      </div>
+      <div class="column-8">
+        <strong>Notes</strong>
+      </div>
+    </div>
+
+    <div class="grid">
+      <div class="column-2 column-6-phone">
+        <code>headline</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        Any text. HTML markup is OK. Blank is also OK.
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>text</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        Any text. HTML markup is OK. Blank is OK. Not used for <a href="#json-era" data-scroll="true">era</a> objects.
+      </div>
+    </div>
+    <p id="json-media" class="jump"><strong><em>Media objects</em></strong> are JSON objects with the following properties. For each slide, media objects are optional.</p>
+    <div class="grid">
+      <div class="column-2 column-6-phone">
+        <strong>Name</strong>
+      </div>
+      <div class="column-2 column-6-phone">
+        <strong>Required?</strong>
+      </div>
+      <div class="column-8">
+        <strong>Notes</strong>
+      </div>
+    </div>
+
+    <div class="grid">
+      <div class="column-2 column-6-phone">
+        <code>url</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        Yes
+      </div>
+      <div class="column-8">
+        In most cases, a URL (see <a href="media-types.html">media type documentation</a> for complete details).
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>caption</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        Any text. HTML markup is OK.
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>credit</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        Any text. HTML markup is OK.
+      </div>
+
+      <div class="column-2 column-6-phone">
+        <code>thumbnail</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A URL for an image to use in the timenav marker for this event. If omitted, Timeline will use an icon based on the type of media. Not relevant for  <code>title</code> slides, because they do not have a marker.
+      </div>
+      
+      <div class="column-2 column-6-phone">
+        <code>alt</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        An alt tag for your image. If none is provided, the caption, if any, will be used.
+      </div>
+      
+      <div class="column-2 column-6-phone">
+        <code>title</code>
+      </div>
+      <div class="column-2 column-6-phone">
+        No
+      </div>
+      <div class="column-8">
+        A title for your image. If none is provided, the caption, if any, will be used.
+      </div>
+    </div>
+  </div>
+</section>
+</article>
+{% endblock %}
+{% block scripts %}
+<script type="text/javascript">
+jQuery(document).ready(function() {
+  // make permalinks function for each question
+  jQuery("p[id]").each(function(){
+    jQuery(this).css('cursor','pointer');
+    jQuery(this).click(function(){
+      window.location.hash = "#" + this.id;
+    })
+  });
+});
+</script>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/license.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/license.html
new file mode 100644
index 0000000000000000000000000000000000000000..fe66e2a7618a912170b367aa62637ac28f8a8195
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/license.html
@@ -0,0 +1,29 @@
+{% extends "base.html" %}
+{% block content %}
+<section class='section-color container'>
+  <div class="grid">
+    <div class="column-12">
+      <p class="breadcrumb"><a href="index.html">&#12298; Back to main documentation page</a></p>
+      <h2>Licensing and use of TimelineJS</h2>
+    </div>
+    <div class="column-7">
+      <p>TimelineJS is released under the <a href="https://www.mozilla.org/en-US/MPL/2.0/">Mozilla Public License (MPL), version 2.0</a>.
+        That means that TimelineJS is free to "use, reproduce, make available, modify, display, perform, distribute" or otherwise employ.
+        <strong>You don't need our permission to publish stories with TimelineJS</strong> and <strong>you don't need to pay us any fees</strong>
+        or arrange any further license beyond the MPL. You may also make changes to <a href="https://github.com/NUKnightLab/TimelineJS3">our source code</a>, although
+        if you use changed code publicly, <a href="https://www.mozilla.org/en-US/MPL/2.0/#distribution-of-source-form">you must make the source code to your modified version available</a>.</p>
+        <p>Note that this page is not offered as legal counsel and you may wish to consult your own lawyers.</p>
+        <p>If you have more questions, feel free to <a href="//knightlab.zendesk.com">reach out to us</a>.</p>
+    </div>
+    <div class="column-5">
+      <h4>You may:</h4>
+      <ul>
+        <li>embed TimelineJS in a personal or commercial website.</li>
+        <li>receive compensation for a page containing Timelines you have created, whether from a client or from display advertising.</li>
+        <li>copy, modify, clone or fork the code for personal or commercial use.</li>
+        <li>host the TimelineJS source code on your own server.</li>
+      </ul>
+    </div>
+  </div>
+</section>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/media-types.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/media-types.html
new file mode 100644
index 0000000000000000000000000000000000000000..8fa7fce15b463b37895096e0841ad5ae40485a8f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/media-types.html
@@ -0,0 +1,89 @@
+{% extends "base.html" %}
+
+{% block content %}
+<article>
+  <section class="section-color container">
+    <p class="breadcrumb"><a href="index.html">&#12298; Back to main documentation page</a></p>
+    <h2 class="header-story" id="media-types">Media Types</h2>
+    <p>
+      People have always loved how easy TimelineJS makes it to add rich media to the slides that tell your story. The new version of Timeline continues the tradition and adds a few new media types.
+    </p>
+  </section>
+  <section class="section-color container">
+    <div class="grid">
+      <div class="column-12">
+        <dl>
+          <dt>Image</dt>
+          <dd>If your URL ends in <code>jpg</code>, <code>gif</code>, <code>png</code> or <code>jpeg</code>, it will be used as the source for an image tag. It should also work if there is a <a href="https://en.wikipedia.org/wiki/Query_string">query string</a> after the extension, perhaps specifying dynamic width and height values.
+          </dd>
+
+          <dt>Online Videos</dt>
+          <dd>Use the URL for the page of the video for <a href="http://vimeo.com">Vimeo</a>, <a href="http://DailyMotion.com">DailyMotion</a>, <a href="http://Vine.co">Vine</a>, and <a href="http://youtube.com/">YouTube</a>. Timeline honors <a href="http://youtubetime.com/">Youtube start-at time parameters</a>.</dd>
+
+          <dt>Video Files</dt>
+          <dd>Use a link to a video file on the internet. Timeline currently supports <code>.mp4</code> files.</dd>
+
+          <dt>Audio Files</dt>
+          <dd>Use a link to a video file on the internet. Timeline currently supports <code>.mp3</code>, <code>.m4a</code>, and <code>.wav</code> files.</dd>
+
+          <dt>SoundCloud</dt>
+          <dd>Use the URL for the <a href="http://soundcloud.com">SoundCloud</a> clip page.</dd>
+
+          <dt>Spotify</dt>
+          <dd>Supports use of tracks, albums, and user playlists. Use the URL obtained from clicking on "Copy Spotify URL."</dd>
+
+          <dt>Twitter</dt>
+          <dd>Use the <a href="http://twitter.com">Twitter</a> embed code, or the URL of the tweet's page.</dd>
+
+          <dt>Google Maps</dt>
+          <dd>Use the URL for the <a href="http://google.com/maps">Google Maps</a> page (unless you are using Streetview, which currently requires the embed URL found in the "Share" section). Coordinates, search results, place marks and directions are all honored by Timeline. TimelineJS supports roadmap, hybrid, satellite and terrain Google Maps, as well as directions, places, and Streetview maps.</dd>
+
+          <dt>Google Plus</dt>
+          <dd>Use the URL for the <a href="http://plus.google.com">Google Plus</a> photo, found by right-clicking (or control-clicking) the image and selecting "Copy Image URL".</dd>
+
+          <dt>Instagram</dt>
+          <dd>Use the URL for the <a href="http://www.instagram.com">Instagram</a> photo's page.</dd>
+
+          <dt>Flickr</dt>
+          <dd>Use the URL for the <a href="http://www.flickr.com">Flickr</a> photo's page. The shortened link  provided in the share menu  (e.g. <code>https://flic.kr/p/sv3VN6</code>) will also work.</dd>
+
+          <dt>Imgur</dt>
+          <dd>Use the URL for the <a href="http://imgur.com">Imgur</a> photo's page.</dd>
+
+  {#
+          <dt>Instagram Profile</dt> <!-- this one seemed kinda uncertain -->
+          <dd>(details TK)</dd>
+   #}
+          <dt>DocumentCloud</dt>
+          <dd>Use the URL of the <a href="http://www.documentcloud.org">Document Cloud</a> document's page.</dd>
+
+          <!-- <dt>Google Doc</dt>
+          <dd>Use the shareable URL provided for your <a href="http://www.google.com/docs/">Google Doc</a>.</dd>
+
+          Not sure exactly how to link to Google docs...
+
+          -->
+
+          <dt>Wikipedia</dt>
+          <dd>Use the URL of the <a href="https://en.wikipedia.org/">Wikipedia</a> article's page.</dd>
+
+          <dt>Storify</dt>
+          <dd>Use the URL of the <a href="http://www.storify.com">Storify</a>.</dd>
+
+          <dt>iframe</dt>
+          <dd>Instead of a URL, you can use <code>&lt;iframe&gt;</code> markup. This is a good general workaround to embedding media types that TimelineJS doesn't handle directly.</dd>
+
+          <dt>Blockquote</dt>
+          <dd>Instead of a URL, you can use <code>&lt;blockquote&gt;</code> tags around whatever text you want to quote.</dd>
+
+          <dt>Wistia</dt>
+          <dd>Use the URL of the <a href="https://wistia.com">Wistia</a> video. You can find this in either the "Social Sharing" or "Embed Code" tab of your video.</dd>
+
+          <dt>Embedly</dt>
+          <dd>If TimelineJS doesn't recognize your media URL, it will try to use <a href="http://embed.ly/">Embed.ly</a> to get the best thing to include on your slide.</dd>
+        </dl>
+      </div>
+    </div>
+</section>
+</article>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/options.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/options.html
new file mode 100644
index 0000000000000000000000000000000000000000..35ab1ec0dd42719f86688f261e8386eb6a119d75
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/options.html
@@ -0,0 +1,404 @@
+{% extends "base.html" %}
+
+{% block content %}
+<article id="product-body">
+  <section class="section-color container">
+    <p class="breadcrumb"><a href="index.html">&#12298; Back to main documentation page</a></p>
+    <h2 class="product-header" id="options">TimelineJS options</h2>
+  </section>
+  <section class="section-color container">
+    <div class="grid">
+      <div class="column-12">
+      <p>When you create a timeline manually by calling <code>TL.Timeline</code>, you may pass in an optional third parameter which contains a variety of presentation options.
+      This third parameter should be a Javascript object with keys matching the value in the <code>Name</code> column and corresponding values appropriate to the specific key. For example:
+      <pre class="prettyprint lang-javascript">
+  var options = {
+    hash_bookmark: false,
+    initial_zoom: 5
+  }
+  var timeline = new TL.Timeline('timeline-embed',
+                                 'https://docs.google.com/spreadsheets/d/1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI/pubhtml',
+                                 options);
+      </pre>
+    </p>
+
+      <p>If you use our <a href="/index.html#make">authoring tool</a>, you can pass most of these as URL parameters. Add <code>&amp;option_name=<em>value</em></code> for each. To demonstrate using the same options
+      as above: <code>https://cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI&font=Default&lang=en&initial_zoom=3&height=650&hash_bookmark=false</code></p>
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <strong>Name</strong>
+        </div>
+        <div class="column-2 column-6-phone">
+          <strong>Default value</strong>
+        </div>
+        <div class="column-8">
+          <strong>Notes</strong>
+        </div>
+      </div>
+
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <code>debug</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>false</code>
+        </div>
+        <div class="column-8">
+          If <code>true</code>, copious console logging will be enabled.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>height</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>this._el.container.offsetHeight</code>
+        </div>
+        <div class="column-8">
+          The height of the timeline.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>width</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>this._el.container.offsetWidth</code>
+        </div>
+        <div class="column-8">
+          The width of the timeline.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>is_embed</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>false</code>
+        </div>
+        <div class="column-8">
+          If <code>true</code>, the class <code>tl-timeline-embed</code> is added to the outer Timeline container. Typically only used to support Timeline iframe embeds.
+        </div>
+
+
+        <!-- This is not meant to be a user option. It's an inferred status.
+        <tr>
+          <td><code>is_full_embed</code></td>
+          <td><code>false</code></td>
+          <td>If true, the class <code>tl-timeline-full-embed</code> is added to the outer Timeline container. Typically only used to support Timeline iframe embeds.</td>
+        </tr> -->
+
+        <div class="column-2 column-6-phone">
+          <code>hash_bookmark</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>false</code>
+        </div>
+        <div class="column-8">
+          If set to <code>true</code>, TimelineJS will update the browser URL each time a slide advances, so that people can link directly to specific slides.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>default_bg_color</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>white</code>
+        </div>
+        <div class="column-8">
+          RGB values to use for slide backgrounds. Specify as hex code, CSS named color, or a Javascript object with <code>r</code>, <code>g</code>, and <code>b</code> properties from 0-255.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>scale_factor</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          2
+        </div>
+        <div class="column-8">
+          How many screen widths wide the timeline should be at first presentation.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>initial_zoom</code>
+        </div>
+        <div class="column-2 column-6-phone">
+        </div>
+        <div class="column-8">
+          The position in the <code>zoom_sequence</code> series used to scale the Timeline when it is first created. Takes precedence over <code>scale_factor</code>.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>zoom_sequence</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
+        </div>
+        <div class="column-8">
+          Array of values for TimeNav zoom levels. Each value is a <code>scale_factor</code>,  which means that at any given level, the full timeline
+          would require that many screens to display all events.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>timenav_position</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          "bottom"
+        </div>
+        <div class="column-8">
+          Display the timeline nav on the <code>top</code> or <code>bottom</code>.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>optimal_tick_width</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          100
+        </div>
+        <div class="column-8">
+          Optimal distance (in pixels) between ticks on axis.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>base_class</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          "tl-timeline"
+        </div>
+        <div class="column-8">
+          Removing the tl-timeline base class will disable all default stylesheets.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>timenav_height</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          150
+        </div>
+        <div class="column-8">
+          The height in pixels of the timeline nav. Takes precedence over  <code>timenav_height_percentage</code>.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>timenav_height_percentage</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          25
+        </div>
+        <div class="column-8">
+          Specify the timeline nav height as a percentage of the screen instead of in pixels.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>timenav_mobile_height_percentage</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          40
+        </div>
+        <div class="column-8">
+          Specify the timeline nav height as a percentage of a mobile device screen.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>timenav_height_min</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          150
+        </div>
+        <div class="column-8">
+          The minimum timeline nav height (in pixels).
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>marker_height_min</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          30
+        </div>
+        <div class="column-8">
+          The minimum marker height (in pixels).
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>marker_width_min</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          100
+        </div>
+        <div class="column-8">
+          The minimum marker witdh (in pixels).
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>marker_padding</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          5
+        </div>
+        <div class="column-8">
+          Top and bottom padding (in pixels) for markers.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>start_at_slide</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          0
+        </div>
+        <div class="column-8">
+          The first slide to display when the timeline is loaded.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>start_at_end</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>false</code>
+        </div>
+        <div class="column-8">
+          If true, loads timeline on last slide.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>menubar_height</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          0
+        </div>
+        <div class="column-8">
+        </div>
+
+
+        <!-- relative_date isn't implemented yet
+        <tr>
+          <td><code>relative_date</code></td>
+          <td>false</td>
+          <td>Use <a href="http://momentjs.com/">Moment.js</a> to show a relative date from the <code>slide.text.date.created_time</code> field.</td>
+        </tr> -->
+
+        <div class="column-2 column-6-phone">
+          <code>use_bc</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>false</code>
+        </div>
+        <div class="column-8">
+          Use declared suffix on dates earlier than 0.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>duration</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          1000
+        </div>
+        <div class="column-8">
+          Animation duration (in milliseconds).
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>ease</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>TL.Ease.easeInOutQuint</code>
+        </div>
+        <div class="column-8">
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>dragging</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>true</code>
+        </div>
+        <div class="column-8">
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>trackResize</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>true</code>
+        </div>
+        <div class="column-8">
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>slide_padding_lr</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          100
+        </div>
+        <div class="column-8">
+          Padding (in pixels) on the left and right of each slide.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>slide_default_fade</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          "0%"
+        </div>
+        <div class="column-8">
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>language</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          "en"
+        </div>
+        <div class="column-8">
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>ga_property_id</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          null
+        </div>
+        <div class="column-8">
+          Google Analytics ID.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>track_events</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          ['back_to_start', 'nav_next', 'nav_previous', 'zoom_in', 'zoom_out']
+        </div>
+        <div class="column-8">
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>script_path</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          ""
+        </div>
+        <div class="column-8">
+          Can be used to help Timeline load related resources such as CSS themes and language files. Rarely needs to be set.
+        </div>
+      </div>
+   </section>
+</article>
+{% endblock %}
+{% block scripts %}
+<script type="text/javascript">
+
+jQuery(document).ready(function() {
+  // make permalinks function for each question
+  jQuery("tr[id]").each(function(){
+  });
+
+  // set up the top level links to major sections
+  jQuery('tr td:first-of-type > code').each(function() {
+    var hash = jQuery(this).text();
+    var tr = this.parentElement.parentElement;
+    tr.id = hash;
+    jQuery(tr).css('cursor','pointer');
+    jQuery(tr).click(function(){
+      window.location.hash = "#" + this.id;
+    })
+  })
+
+})
+</script>
+
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/overriding-styles.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/overriding-styles.html
new file mode 100644
index 0000000000000000000000000000000000000000..895b7c26ccbaa7a6e5af5e19107b28f7d5c95dc9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/overriding-styles.html
@@ -0,0 +1,333 @@
+{% extends "base.html" %}
+
+{% block content %}
+<article id="product-body">
+  <section class="section-color container">
+    <p class="breadcrumb"><a href="index.html">&#12298; Back to main documentation page</a></p>
+    <h2 class="header-story">Using the TimelineJS CSS selectors</h2>
+    <p>If you want to change the way TimelineJS looks, first check out our <a href="/docs/faq.html#styling">style and presentation frequently asked questions</a>. In particular, note that <strong>there is no way to override the CSS using the iframe embed.</strong> You will need to be able to <a href="/docs/instantiate-a-timeline.html">instantiate the Timeline in javascript</a> on your own page. Then, either in <code>style</code> tags in that page, or in an external stylesheet, you can specify CSS rules changing some or all of TimelineJS's default presentation. </p>
+  </section>
+  <section class="section container" id="overriding-styles">
+  <div class="grid">
+    <div class="column-12">
+      <h3>Timeline CSS classes</h3>
+      <p>This table lists the major CSS classes which TimelineJS uses. You may just be able to tweak some of these. However, TimelineJS uses Less for CSS preprocessing, which means that some of the CSS rules are very specific. If just overriding a class doesn't seem to work, read more about <a data-scroll="true" href="#timeline-and-less">Timeline and Less</a> below.</p>
+      <p><strong><em>Slide options</em></strong> affect the media and text areas of slides.</p>
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <strong>Class Name</strong>
+        </div>
+        <div class="column-2 column-6-phone">
+          <strong>Element Type?</strong>
+        </div>
+        <div class="column-8">
+          <strong>Notes</strong>
+        </div>
+      </div>
+
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <code>tl-timeline</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          Added to the initial div containing the timeline. Contains entire element.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-slider-container-mask</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          A wrapper around the slides. Background colors or images can be set here.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-slide</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          Each complete set of slide items. May appear in conjunction with <code>.tl-slide-titleslide</code> (for title slides) or <code>.tl-slide-media-only</code> (slides without text).
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-media-content-container</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          Contains the media, its credit, and its caption.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-media-content</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          Contains the media item. Use this to add borders, padding and more.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-credit</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The media item's credit.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-caption</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The media item's caption.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-text</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The slide's text plus padding. Add background color to the text portion of the slide here.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-text-content-container</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The slide's text minus padding.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-headline-date</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>h3</code>
+        </div>
+        <div class="column-8">
+          The date that appears over the slide's headline.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-headline</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>h2</code>
+        </div>
+        <div class="column-8">
+          The slide's headline. Title slides have the additional class <code>.tl-headline-title</code>.
+          Note that you will probably need to use the selector <code>h2.tl-headline</code> to change the appearance
+          of the slide titles.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-text-content</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The text of the slide, in <code>p</code> tags.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-slidenav-next</code>
+          <br/>or</br>
+          <code>tl-slidenav-previous</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The navigation and text for moving forward and back. Use in conjunction with the following selectors to render the navigation arrows and text.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-slidenav-icon::before</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          Inserts the navigation arrow. Preface with <code>.tl-slidenav-next</code> or <code>.tl-slidenav-previous</code> to specify which arrow to render.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-slidenav-title</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The title of the next/previous slide. Preface with <code>.tl-slidenav-next</code> or <code>.tl-slidenav-previous</code> to specify which title to render.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-slidenav-description</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The description of the next/previous slide. Appears on hover. Preface with <code>.tl-slidenav-next</code> or <code>.tl-slidenav-previous</code> to specify which description to render.
+        </div>
+      </div>
+      <p><strong><em>Timenav options</em></strong> affect the portion of the timeline that renders the time series.</p>
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <strong>Class Name</strong>
+        </div>
+        <div class="column-2 column-6-phone">
+          <strong>Element Type?</strong>
+        </div>
+        <div class="column-8">
+          <strong>Notes</strong>
+        </div>
+      </div>
+
+      <div class="grid">
+        <div class="column-2 column-6-phone">
+          <code>tl-timenav</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The timeline element. Change the background color here.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-menubar</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The zoom icons.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-timemarker</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          All of the elements that make up the markers (flags and lines) on the timenav. The marker of the current slide also has the class <code>.tl-timemarker-active</code>.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-timemarker-content-container</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The flag of the marker. You can set the flag's background color and text color here. When writing styles for this selector, preface this selector with <code>.tl-timemarker</code> (for slides other than the current slide) or <code>.tl-timemarker.tl-timemarker-active</code> (for the current slide).
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-timemarker-timespan</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The width of the marker. This draws the translucent background behind markers if your event has a start and end date. When writing styles for this selector, preface this selector with <code>.tl-timemarker</code> (for slides other than the current slide) or <code>.tl-timemarker.tl-timemarker-active</code> (for the current slide).
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-timemarker-media-container</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The icon or thumbnail representing the media in the timeline flag.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-headline</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>h2</code>
+        </div>
+        <div class="column-8">
+          The text of the flag. Set color and font family here. Note that this is the same class used
+          for the headline in the main slide body. If you want to change only the headline in the navigation,
+          use <code>.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline</code>.
+          (Yes, ideally it wouldn't need to be so specific, but for now, it does.)
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-timeaxis</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The ticks representing the timescale.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-timeaxis-background</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The appearance of the background for the tick marks.
+        </div>
+
+        <div class="column-2 column-6-phone">
+          <code>tl-timeaxis-tick:before</code>
+        </div>
+        <div class="column-2 column-6-phone">
+          <code>div</code>
+        </div>
+        <div class="column-8">
+          The line drawing the tick. Set the background color to change the color of the line. Preface with <code>.tl-timeaxis-major</code> to target major ticks or <code>.tl-timeaxis-minor</code> to target minor ticks.
+        </div>
+      </div>
+      <h3 id="timeline-and-less">TimelineJS and Less</h3>
+      <p>TimelineJS uses the <a href="http://lesscss.org/">Less CSS pre-processor</a> to manage the complex number of elements, variables, and conditions needed to make everything look great. One side effect of how we use <code>Less</code> is that various style rules for TimelineJS are often very specific. Since, in CSS, more specific rules take precedence over less specific ones, you may find it easier to edit Timeline's <code>Less</code> files and compile your own stylesheet than to work out the exact selector which controls style rules.
+      </p>
+      <p>A full <code>Less</code> tutorial is outside the scope of this documentation. In the future, we may be able to provide a few more tips about how our <code>Less</code> files are organized, but the main thing you need to know is this: even though there are many <a href="https://github.com/NUKnightLab/TimelineJS3/blob/master/source/less/">Less files in our Github repository</a>, you only need to compile <code><a href="https://github.com/NUKnightLab/TimelineJS3/blob/master/source/less/TL.Timeline.less">TL.Timeline.less</a></code>, which links to all of the others. And you don't need to set up our full-fledged development environment to compile <code>Less</code>. See the <a href="http://lesscss.org/#using-less">Using Less</a> documentation for more information.
+      </p>
+
+     </div>
+  </div>
+</section>
+</article>
+{% endblock %}
+{% block scripts %}
+<script type="text/javascript">
+jQuery(document).ready(function() {
+  // make permalinks function for each question
+  jQuery("p[id]").each(function(){
+    jQuery(this).css('cursor','pointer');
+    jQuery(this).click(function(){
+      window.location.hash = "#" + this.id;
+    })
+  });
+});
+</script>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/docs/using-spreadsheets.html b/public/opac/TimelineJS3-3.5.1/website/templates/docs/using-spreadsheets.html
new file mode 100644
index 0000000000000000000000000000000000000000..ebb2bfda27f0cbf8a52b9eb3e36423ffd8f423ed
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/docs/using-spreadsheets.html
@@ -0,0 +1,137 @@
+{% extends "base.html" %}
+{% block content %}
+<article>
+  <section class="section-color container">
+    <p class="breadcrumb"><a href="index.html">&#12298; Back to main documentation page</a></p>
+    <header>
+      <h2 class="header-story">Making a timeline from a Google Spreadsheet</h2>
+      <p>
+        You can create a simple timeline in a few short minutes using our <a href="https://drive.google.com/previewtemplate?id=1pHBvXN7nmGkiG8uQSUB82eNlnL8xHu6kydzH_-eguHQ&mode=public">Google spreadsheet template</a>, and this quick guide explaining the basic process.  <a href="json-format.html">Experts can use their JSON</a> skills to create custom installations, while keeping TimelineJS3's core look and functionality.
+      </p>
+      <p>
+        For an example of a completed spreadsheet, see  <a href="https://docs.google.com/spreadsheets/u/1/d/1xuY4upIooEeszZ_lCmeNx24eSFWe0rHe9ZdqH2xqVNk/pubhtml" target="_blank">the spreadsheet</a> which powers the example on our <a href="/index.html">home page</a>.
+      </p>
+    </header>
+  </section>
+  <section class="product-page container">
+    <div>
+      <h4 id="dates">Working with dates</h4>
+      <p id="start_date">
+        The first four spreadsheet columns (<strong>A-D</strong>) are the date of your timeline entry. You can just enter the year, or you can get down to details such as month, day and even time of an event. You <em>must</em> enter at least the year, except for a 'title' slide. (To enter BCE dates, use a negative year, such as <em>-500</em>)
+      </p>
+      <p id="end_date">
+        You have the option to add end dates (columns <strong>E-H</strong>). Again, you can just enter the year, or you can get as detailed as you like. End dates will cause TimelineJS to display spans of time (a.k.a. eras) in the bottom portion of the timeline. If your event doesn't have an "end date", leave these blank&mdash;you don't need to repeat the start date.
+      </p>
+      <p id="display_date">
+        If you need more flexibility about how dates are shown in a slide, you can use column <strong>I</strong> to specify a "display date," which will override any decisions TimelineJS makes about how to show the date. This can be helpful if the actual date is not known, but you need to specify the date so that TimelineJS know how to display it relative to other events. The display date is used on the slide where it is specified, and on labels for the "next" and "previous" buttons which lead to that slide.
+      </p>
+      <h4>Adding content</h4>
+      <p id="slide_text">
+        Columns <strong>J</strong> and <strong>K</strong> of the spreadsheet contain the headline and the body text that will be displayed on each slide of your timeline.
+      </p>
+      <h4 id="media">Adding media (optional)</h4>
+      <p>
+        TimelineJS can pull in media from a variety of sources and has built-in support for Twitter, Instagram, Flickr, Google Maps, DropBox, DocumentCloud, Wikipedia, SoundCloud, Storify, iframes, major video sites (YouTube, Vimeo, etc.) and more. <a href="media-types.html">Read more about the media types TimelineJS works with.</a>
+      </p>
+      <p>
+        You have the option to add media to your slides in columns <strong>L-O</strong>. Under the <strong>Media</strong> column (<strong>L</strong>) enter the link (URL) to the media you wish to display. TimelineJS supports multiple <a href="media-types.html">media types</a>. In the next column (<strong>M</strong>), you can credit the media's original source, and in column <strong>N</strong> you can include a short caption.
+      </p>
+      <p id="media_markup">
+        If TimelineJS doesn't support the media type you want on your slide, you can often make do by entering <code>&lt;iframe&gt;</code> markup in the <strong>Media</strong> column (<strong>L</strong>) instead of a URL. You can also enter <code>&lt;blockquote&gt;</code> markup in column L.
+      </p>
+      <p id="thumbnail">
+        Markers for slides that contain media show a small icon representing the type of media used. If you'd like, you can show a thumbnail of the media there, instead. Simply add the URL of the image you'd like to use to column <strong>O</strong>.
+      </p>
+      <p id="slide_background">
+        If you like, you can set the background of the slide to a specific color or an image. To do this, enter a <a href="http://www.w3schools.com/cssref/css_colors.asp">CSS hex color</a> value, <a href="http://www.w3schools.com/cssref/css_colornames.asp">CSS named color</a>, or the URL to an image in the <strong>Background</strong> column (<strong>R</strong>).
+      </p>
+      <h4 id="title_slides">Titles and Eras</h4>
+      <p>
+        The <strong>Type</strong> column (<strong>P</strong>) can be used to activate a few more specialized features in Timeline. In most cases, you'll leave it blank.
+      </p>
+      <p>
+        If you use the word <code>title</code> in this column, then Timeline will use the row as a "title slide," which is shown before all others, and which does not require a date. Title
+        slides do not appear in the markers in the navigation component of the Timeline. You should only have one row with "title" in the Type column.
+      </p>
+      <p>
+        If you use the word <code>era</code> in this column, then Timeline will use the row to label a span of time in the "axis" area of the timeline navigation component. Each era gets
+        a distinct color, which is not currently configurable. At this time, overlapping eras are not well-supported, but we are investigating design strategies for that use case.
+      </p>
+      <h4 id="organizing_slides">Organizing slides</h4>
+      <p>
+        TimelineJS automatically orders slides according to their start date, and always puts the title slide first, no matter how the rows in your spreadsheet are ordered. If you need to have two slides with exactly the same start date, then the row which appears first in the spreadsheet will be shown first in the timeline.
+      </p>
+      <p id="groups">
+        Using the <strong>Group</strong> column (<strong>Q</strong>), you can organize your slides by groups (formerly known as "tags"). You can put any values you want in the Group column. Events with the same group will be put in the same row or adjacent rows, and TimelineJS will use the text from the Group colum as a label at the left edge of the row(s) containing those events. The group text will also be displayed on each slide. If you like, you can have a mix of slides in groups and slides with a blank value in the Group column.
+      </p>
+    </div>
+  </section>
+  <section class="section-color section-color-complement">
+    <div class="container">
+      <h4 id="publishing">Publishing your Timeline</h4>
+      <p>Now that you have your spreadsheet set up, you can turn it into a timeline in a couple easy steps.</p>
+      <ol class="instructional-steps">
+        <li class="step grid">
+          <div class="step-number column-2">
+            <h6>Publish to Web</h6>
+          </div>
+          <div class="step-details column-10 grid">
+            <div class="column-6">
+              <p>
+                Go to the File menu of your Google spreadsheet and select "Publish to the Web." In the window that pops up make sure you are under Link (it should place you there by default), then make sure that "Automatically republish when changes are made" is checked and that "Entire Document" is selected.
+              </p>
+              <p class="note">
+                If you are using <em>Google Apps for Work</em> or <em>Google Apps for Education</em>, this may not work without the cooperation of your local Google Apps administrator, even if you follow the steps exactly.
+              </p>
+            </div>
+            <div class="column-6" id="step-screenshots">
+              <img class="polaroid doc-illos" src="{{ static_url }}/img/make/publish_to_web_small.png" alt="Publish to Web">
+              <img class="polaroid doc-illos" src="{{ static_url }}/img/make/publish_to_web_button_small.png" alt="Publish to Web 2">
+              <img class="polaroid doc-illos last" src="{{ static_url }}/img/make/publish_to_web_url_small.png" alt="Publish to Web 3">
+            </div>
+          </div>
+        </li>
+        <li class="step grid">
+          <div class="step-number column-2">
+            <h6>Copy the link.</h6>
+          </div>
+          <div class="step-details column-10">
+            Copy the link.
+          </div>
+        </li>
+        <li class="step grid">
+          <div class="step-number column-2">
+            <h6>Open TimelineJS</h6>
+          </div>
+          <div class="step-details column-10">
+            <p><a href="/index.html#make-step-3">Open the TimelineJS site</a>. Paste your copied link into the "Google spreadsheet URL" box. There you are also given some styling options to play around with if you desire.</p>
+          </div>
+        <li class="step grid">
+          <div class="step-number column-2">
+            <h6>Grab the embed code</h6>
+          </div>
+          <div class="step-details column-10">
+            <p>Copy the embed code displayed and paste it on your site wherever you'd like it to appear.</p>
+          </div>
+        </li>
+      </ol>
+      <p>Congratulations! You should be well on your way to creating a simple timeline and playing within the Google spreadsheet boundaries. If you have any specific questions, <a href="mailto:support@knightlab.zendesk.com">please email us</a>.</p>
+    </div>
+  </section>
+</article>
+
+{% endblock %}
+
+{% block scripts %}
+<script type="text/javascript">
+jQuery(document).ready(function() {
+  // make permalinks function for each question
+  jQuery("p[id],h4[id]").each(function(){
+    jQuery(this).css('cursor','pointer');
+    jQuery(this).click(function(){
+      window.location.hash = "#" + this.id;
+    })
+  });
+});
+</script>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/error.html b/public/opac/TimelineJS3-3.5.1/website/templates/error.html
new file mode 100644
index 0000000000000000000000000000000000000000..a8897961dc7d1af502ae773611155ce6f969f570
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/error.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+{% block content %}
+<script type="text/javascript" charset="utf-8" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
+
+<script type="text/javascript" charset="utf-8">
+	$(document).ready(function() {
+		
+		// Add the missing url to the text
+		$("#url").text(window.location.pathname);
+		
+		// Fix the css locations dynamically
+		$("head link").each(function() {
+			for (var i=0; i<window.location.pathname.split(/\//g).length-2; i++)
+				$(this).attr("href", "../" + $(this).attr("href"));
+		});
+		
+	})
+</script>
+<section id="error" class="background-white">
+	<div class="container">
+		<div class="row">
+			<p class="span12 error">
+				Sorry the page <b id="url"></b> could not be found on this server.
+			</p>
+		</div>
+	</div>
+</section>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/_common_example_embed.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/_common_example_embed.html
new file mode 100644
index 0000000000000000000000000000000000000000..a17946ecc5858d7bd3ab948a33933c3a3fd253ec
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/_common_example_embed.html
@@ -0,0 +1,25 @@
+  <!-- Demo -->
+  <div id="timeline-embed">
+    <div id="timeline"></div>
+  </div>
+  <!-- build:css //cdn.knightlab.com/libs/timeline3/%(cdn)s/css/timeline.css -->
+  <link rel="stylesheet" href="/build/css/fonts/font.knightlab.css">
+  <!-- endbuild -->
+  <!-- build:css //cdn.knightlab.com/libs/timeline3/%(cdn)s/css/timeline.css -->
+  <link title="timeline-styles" rel="stylesheet" href="/build/css/timeline.css">
+  <!-- endbuild -->
+  <!-- build:js //cdn.knightlab.com/libs/timeline3/%(cdn)s/js/timeline-min.js -->
+  <script src="/build/js/timeline.js"></script>
+  <!-- endbuild -->
+  <script>
+    $(document).ready(function(){
+        var embed = document.getElementById('timeline-embed');
+        embed.style.height = getComputedStyle(document.body).height;
+        window.timeline = new TL.Timeline('timeline-embed', 'timeline3.json', { hash_bookmark: false});
+        window.addEventListener('resize', function() {
+          var embed = document.getElementById('timeline-embed');
+          embed.style.height = getComputedStyle(document.body).height;
+          timeline.updateDisplay();
+        })
+      });
+  </script>
diff --git a/public/opac/TimelineJS-2.25/examples/example_storify.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/embed-test/index.html
similarity index 56%
rename from public/opac/TimelineJS-2.25/examples/example_storify.html
rename to public/opac/TimelineJS3-3.5.1/website/templates/examples/embed-test/index.html
index aea23852455c59853b6547524ec94031c3e3c99a..17599bdae544d5f555bf475de820aeace6626bd4 100644
--- a/public/opac/TimelineJS-2.25/examples/example_storify.html
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/embed-test/index.html
@@ -1,47 +1,41 @@
 <!DOCTYPE html>
 <html lang="en"><!--
-  	 
-  	88888888888 d8b                        888 d8b                888888   d8888b  
-  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
+
+  	88888888888 d8b                        888 d8b                888888   d8888b
+  	    888     Y8P                        888 Y8P                   88b d88P  Y88b
   	    888                                888                       888 Y88b
   	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
   	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
-  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
-  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
+  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888
+  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P
   	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
-  	                                                                d88P            
-  	                                                              d88P             
-  	                                                            888P              
+  	                                                                d88P
+  	                                                              d88P
+  	                                                            888P
   	 -->
   <head>
-    <title>Timeline JS Example</title>
+    <title>Test Timeline embedded with iframe</title>
+    <meta name="description" content="Demonstrating an iframe embed, to verify that it works over HTTPS">
     <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
+    <meta name="viewport" content="initial-scale=1,width=device-width">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
     <!-- Style-->
     <style>
       html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
+      height:100%;
+      padding: 0px;
+      margin: 0px;
       }
     </style>
     <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+    <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+	<link rel="shortcut icon" href="https://cdn.knightlab.com/libs/blueline/latest/assets/logos/favicon.ico">
   </head>
   <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         source: 'http://storify.com/zachwise/test'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
+  <iframe src='https://cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI&font=Default&lang=en&initial_zoom=2&height=650' width='100%' height='650' frameborder='0'></iframe>
+
+      {% include "_analytics.html" %}
+
   </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/example.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/example.json
new file mode 100644
index 0000000000000000000000000000000000000000..1a9f6618b2242ff1db997ffd1b96ddec9d9c40b9
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/example.json
@@ -0,0 +1,328 @@
+
+{
+    "timeline":
+    {
+        "headline":"Elizabeth Taylor<br/> 1932-2011",
+		"startDate":"1932",
+        "text":"<p>The actress,renowned for her beauty, talent and eventful personal life, was one of the last stars left from Hollywood's golden age. A look at some of the milestones in her life.</p><p>This is demo prototype of this timeline tool. The test content orginates from The New York Time's interactive feature <br/><a href='http://www.nytimes.com/interactive/2011/03/23/movies/20110323-ELIZABETH-TAYLOR-TIMELINE.html' onclick = 'void(0)'>Elizabeth Taylor: 1932-2011</a>.</p>",
+        "type":"default",
+		"asset":
+        {
+            "media":"examples/taylor/born.jpg",
+            "credit":"",
+            "caption":""
+        },
+		"date": [
+            {
+                "startDate":"2011,3,23",
+                "headline":"Elizabeth Taylor Dies in Los Angeles",
+                "asset":
+                {
+                    "media":"examples/taylor/final.jpg",
+                    "credit":"",
+                    "caption":"She died of congestive heart failure at Cedars-Sinai Hospital in Los Angeles."
+                },
+                "tags":"Personal life"
+            },
+            {
+                "startDate":"2004,11,1",
+                "headline":"Reveals Congestive Heart Failure",
+                "text":"Ms. Taylor disclosed that she had congestive heart failure,a disorder in which the heart ",
+                "related":"",
+                "tags":"Personal life"
+            },
+            {
+                "startDate":"2003,1,1",
+                "headline":"Retires from Acting",
+                "text":"Ms. Taylor, whose output steadily decreased beginning in the 1980s, announced her retirement from acting in 2003, saying she preferred to focus on her AIDS charity work.",
+                "asset":
+                {
+                    "media":"examples/taylor/retire.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"2002,1,1",
+                "headline":"Receives Kennedy Center Honor",
+                "text":"Ms. Taylor received a John F. Kennedy Center Honor in 2002.",
+                "asset":
+                {
+                    "media":"examples/taylor/kennedy.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Personal life, Career"
+            },
+            {
+                "startDate":"1999,12,1",
+                "headline":"Introducing Dame Elizabeth Taylor",
+                "text":"Ms. Taylor, a dual citizen of England and the United States, was appointed by Queen Elizabeth II as a Dame Commander of the Order of the British Empire.",
+                "asset":
+                {
+                    "media":"examples/taylor/dame.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Personal life, Career"
+            },
+            {
+                "startDate":"1999,1,1",
+                "headline":"Named a Top Hollywood Legend by AFI",
+                "text":"Ms. Taylor was listed seventh on the American Film Institute's list of the greatest American female screen legends.",
+                "tags":"Career"
+            },
+            {
+                "startDate":"1991,10,6",
+                "headline":"Marries Larry Fortensky",
+				"asset":
+                {
+                    "media":"examples/taylor/fortensky.jpg",
+                    "credit":"",
+                    "caption":"Ms. Taylor's eighth and final marriage was to Larry Fortensky"
+                },
+                "endDate":"1996,10,31",
+                "tags":"Marriages, Personal life"
+            },
+            {
+                "startDate":"1987,1,1",
+                "headline":"Debut of Perfume Line",
+                "text":"In the 1980s and 1990s, Ms. Taylor arguably became better known for her line of perfumes than her acting. Passion, her first licensed product, was released in 1987. White Diamonds followed in 1991.",
+                "asset":
+                {
+                    "media":"http://youtu.be/vjVfu8-Wp6s",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1985",
+                "headline":"AIDS Activism",
+                "text":"Ms. Taylor has been an energetic activist for AIDS-related causes.",
+                "asset":
+                {
+                    "media":"examples/taylor/aids.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "endDate":"2011,2,16",
+                "tags":"Personal life"
+            },
+            {
+                "startDate":"1981",
+                "headline":"Makes Broadway Debut",
+                "text":"Ms. Taylor made her Broadway debut in a revival of \"The Little Foxes\" by Lillian Hellman.",
+                "asset":
+                {
+                    "media":"examples/taylor/broadway.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1976,12,4",
+                "headline":"Marriage to John W. Warner",
+                "asset":
+                {
+                    "media":"examples/taylor/warner.jpg",
+                    "credit":"",
+                    "caption":"Ms. Taylor's seventh marriage"
+                },
+                "endDate":"1982,11,7",
+                "tags":"Marriages, Personal life"
+            },
+            {
+                "startDate":"1975,10,10",
+                "headline":"Remarries Richard Burton",
+                "text":"The second installment of the couple's marriage lasted less than 10 months. Ms. Taylor was also linked to Ardeshir Zahedi, the Iranian ambassador to Washington, during this time.",
+                "asset":
+                {
+                    "media":"examples/taylor/burton-2.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "endDate":"1976,7,29",
+                "tags":"Marriages, Personal life"
+            },
+            {
+                "startDate":"1966,1,1",
+                "headline":"Stars in 'Who's Afraid of Virginia Woolf?'",
+                "text":"Ms. Taylor won her second Academy Award for arguably her most acclaimed role.",
+                "asset":
+                {
+                    "media":"examples/taylor/woolfe.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1964,3,15",
+                "headline":"Marries Richard Burton",
+                "asset":
+                {
+                    "media":"examples/taylor/burton.jpg",
+                    "credit":"",
+                    "caption":"Ms. Taylor left Eddie Fisher and married the actor Richard Burton."
+                },
+                "endDate":"1974,6,26",
+                "tags":"Marriages, Personal life"
+            },
+            {
+                "startDate":"1963",
+                "headline":"Stars in 'Cleopatra'",
+                "asset":
+                {
+                    "media":"http://youtu.be/NGDyZHlHklo",
+                    "credit":"",
+                    "caption":"The opulent production was among the most expensive in cinematic history at the time."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1961,4,17",
+                "headline":"Wins First Academy Award",
+                "text":"Ms. Taylor won her first Oscar for her role in \"Butterfield 8.\"",
+                "asset":
+                {
+                    "media":"examples/taylor/oscar.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1961,1,1",
+                "headline":"Stars in 'Butterfield 8'",
+                "text":"One of Ms. Taylor's most acclaimed roles was as a call girl in the 1960 film \"Butterfield 8.\"",
+                "asset":
+                {
+                    "media":"examples/taylor/butterfield.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "endDate":"196002152034",
+                "tags":"Career"
+            },
+            {
+                "startDate":"1959,5,12",
+                "headline":"Marries Eddie Fisher",
+                "asset":
+                {
+                    "media":"examples/taylor/fisher.jpg",
+                    "credit":"",
+                    "caption":"Ms. Taylor's fourth marriage."
+                },
+                "endDate":"1964,3,6",
+                "tags":"Marriages"
+            },
+            {
+                "startDate":"1957",
+                "headline":"Nominated for an Oscar",
+                "text":"Ms. Taylor received her first Academy Award nomination with a best lead actress nod for \"Raintree County, \" but she did not win. She was also nominated for best actress in \"Cat on a Hot Tin Roof\" (1958); \"Suddenly, Last Summer\" (1959); \"Butterfield 8\" (1960); and \"Who's Afraid of Virginia Woolf?\" (1966).",
+                "asset":
+                {
+                    "media":"http://youtu.be/rDk0JtQHc0A",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1957,2,2",
+                "headline":"Marries Michael Todd",
+                "asset":
+                {
+                    "media":"examples/taylor/todd.jpg",
+                    "credit":"",
+                    "caption":"Ms. Taylor married Michael Todd,a film and theater producer."
+                },
+                "endDate":"1958,3,22",
+                "tags":"Marriages, Personal life"
+            },
+            {
+                "startDate":"1956",
+                "headline":"Stars in 'Giant'",
+                "text":"In another acclaimed early performance, Ms. Taylor starred opposite Rock Hudson and James Dean in George Stevens's epic set in Texas.",
+                "asset":
+                {
+                    "media":"examples/taylor/giant.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1954",
+                "headline":"A Ubiquitous Starlet",
+                "text":"Ms. Taylor's workload increased dramatically after \"A Place in the Sun.\" In 1954, her busiest year, she appeared in four films: \"Beau Brummell\"; \"Elephant Walk\"; \"The Last Time I Saw Paris\"; and \"Rhapsody.\"",
+                "asset":
+                {
+                    "media":"http://youtu.be/ebDVU2OjsSw",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1952",
+                "headline":"Marriage to Michael Wilding",
+                "text":"Ms. Taylor's second marriage, to Michael Wilding, an actor, also ended in divorce. They had two children: Michael Howard Wilding Jr. and Christopher Edward Wilding.",
+                "related":"",
+                "endDate":"1957,1,26",
+                "tags":"Marriages, Personal life"
+            },
+            {
+                "startDate":"1951",
+                "headline":"A Child Star Grows Up",
+                "text":"In the 1950s Ms. Taylor matured into adult roles and began to be considered one of the most beautiful women in the world. Her first acclaimed screen performance as an adult was as a socialite, opposite Montgomery Clift, in George Stevens's \"A Place in the Sun\" in 1951.",
+                "asset":
+                {
+                    "media":"examples/taylor/sun.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1950,5,6",
+                "headline":"Marriage to Conrad Hilton Jr.",
+                "asset":
+                {
+                    "media":"examples/taylor/hilton.jpg",
+                    "credit":"",
+                    "caption":"Ms. Taylor was married eight times to seven men."
+                },
+                "endDate":"1951,1,29",
+                "tags":"Marriages, Personal life"
+            },
+            {
+                "startDate":"1944",
+                "headline":"'National Velvet' Makes Her a Star",
+                "text":"Ms. Taylor became a child star after she played Velvet Brown in MGM's \"National Velvet.",
+                "asset":
+                {
+                    "media":"examples/taylor/velvet.jpg",
+                    "credit":"Robin Weiner\/Associated Press",
+                    "caption":"Elizabeth Taylor, with Earvin \"Magic\" Johnson, at an AIDS fundraiser in 1997."
+                },
+                "tags":"Career"
+            },
+            {
+                "startDate":"1942",
+                "headline":"Screen Debut",
+                "text":"Ms. Taylor signed her first movie contract with Universal Pictures in 1941 and made her screen debut, at age 9, the following year in \"There's One Born Every Minute.\"\nMs. Taylor signed with Metro-Goldwyn-Mayer later in 1942 after Universal canceled her contract. \"Lassie Come Home\" (1943) was her first film for MGM; the studio went on to produce most of Ms. Taylor's most notable films.",
+                "tags":"Career"
+            },
+            {
+                "startDate":"1932,2,27",
+                "headline":"Born in London",
+                "text":"<p>Elizabeth Rosemond Taylor was born in London to American parents, Sara Warmbrodt (the actress Sara Sothern) and Francis Taylor. Ms. Taylor was a dual citizen of England and the United States.\nIn 1939, when World War II began, the Taylors returned to America and eventually settled in Los Angeles.</p>",
+                "tags":"Personal life"
+            }
+        ]
+    }
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS-2.25/examples/example_json.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/index.html
similarity index 63%
rename from public/opac/TimelineJS-2.25/examples/example_json.html
rename to public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/index.html
index ad90cfc684b72d74cac414a3455a4a9639126af8..e257a3ee907b7d4798ee29649a9d6cc85bdd583d 100644
--- a/public/opac/TimelineJS-2.25/examples/example_json.html
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/index.html
@@ -14,34 +14,27 @@
   	                                                            888P              
   	 -->
   <head>
-    <title>Timeline JS Example</title>
+    <title>Whitney Houston, 1963-2012</title>
+    <meta name="description" content="Houston’s voice caught the imagination of the world propelling her to superstardom at an early age becoming one of the most awarded performers of our time.">
     <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
+    <meta name="viewport" content="initial-scale=1,width=device-width">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
     <!-- Style-->
     <style>
       html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
+      height:100%;
+      padding: 0px;
+      margin: 0px;
       }
     </style>
     <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+    <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+	<link rel="shortcut icon" href="https://cdn.knightlab.com/libs/blueline/latest/assets/logos/favicon.ico"> 
   </head>
   <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         source: 'example_json.json'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
+      {% include "examples/_common_example_embed.html" %}
+      {% include "_analytics.html" %}
+
   </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/timeline2.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/timeline2.json
new file mode 100644
index 0000000000000000000000000000000000000000..91b8f238d11b5ea14f70ee48125472668a1365e7
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/timeline2.json
@@ -0,0 +1,218 @@
+
+{
+    "timeline":
+  	{
+        "headline":"Whitney Houston<br/> 1963 - 2012",
+		"startDate":"1963",
+        "text":"<p>Houston's voice caught the imagination of the world propelling her to superstardom at an early age becoming one of the most awarded performers of our time. This is a look into the amazing heights she achieved and her personal struggles with substance abuse and a tumultuous marriage.</p>",
+        "type":"default",
+		"asset":
+        {
+            "media":"//www.flickr.com/photos/tm_10001/2310475988/",
+            "credit":"flickr/<a href='http://www.flickr.com/photos/tm_10001/'>tm_10001</a>",
+            "caption":"Whitney Houston performing on her My Love is Your Love Tour in Hamburg."
+        },
+		"date": [
+            {
+                "startDate":"1963,8,9",
+                "headline":"A Musical Heritage",
+                "text":"<p>Born in New Jersey on August 9th, 1963, Houston grew up surrounded by the music business. Her mother is gospel singer Cissy Houston and her cousins are Dee Dee and Dionne Warwick.</p>",
+                "asset":
+                {
+                    "media":"{{ static_url }}/img/examples/houston/family.jpg",
+                    "credit":"Cissy Houston photo:<a href='http://www.flickr.com/photos/11447043@N00/418180903/'>Tom Marcello</a><br/><a href='http://commons.wikimedia.org/wiki/File%3ADionne_Warwick_television_special_1969.JPG'>Dionne Warwick: CBS Television via Wikimedia Commons</a>",
+                    "caption":"Houston's mother and Gospel singer, Cissy Houston (left) and cousin Dionne Warwick."
+                }
+            },
+            {
+                "startDate":"1978",
+                "headline":"First Recording",
+                "text":"At the age of 15 Houston was featured on Michael Zager's song, Life's a Party.",
+                "asset":
+                {
+                    "media":"https://youtu.be/fSrO91XO1Ck",
+                    "credit":"<a href=\"http://unidiscmusic.com\">Unidisc Music</a>",
+                    "caption":""
+                }
+            },
+             {
+                "startDate":"1978",
+                "headline":"The Early Years",
+                "text":"As a teen Houston's credits include background vocals for Jermaine Jackson, Lou Rawls and the Neville Brothers. She also sang on Chaka Khan's, 'I'm Every Woman,' a song which she later remade for the <i>Bodyguard</i> soundtrack which is the biggest selling soundtrack of all time. It sold over 42 million copies worldwide.",
+                "asset":
+                {
+                    "media":"https://youtu.be/_gvJCCZzmro",
+                    "credit":"EbonyJet",
+                    "caption":"A young poised Whitney Houston in an interview with EbonyJet."
+                }
+            },
+            {
+                "startDate":"1978",
+                "headline":"Early Album Credits",
+                "text":"As a teen Houston's credits include background vocals for Jermaine Jackson, Lou Rawls and the Neville Brothers. She also sang on Chaka Khan's, 'I'm Every Woman,' a song which she later remade for the <i>Bodyguard</i> soundtrack which is the biggest selling soundtrack of all time. It sold over 42 million copies worldwide.",
+                "asset":
+                {
+                    "media":"https://youtu.be/H7_sqdkaAfo",
+                    "credit":"Arista Records",
+                    "caption":"I'm Every Women as performed by Whitney Houston."
+                }
+            },
+            {
+                "startDate":"1983",
+                "headline":"Signed",
+                "text":"Houston is signed to Arista Records after exec Clive Davis sees her performing on stage with her mother in New York.",
+                "asset":
+                {
+                    "media":"https://youtu.be/A4jGzNm2yPI",
+                    "credit":"Sony Music Entertainment",
+                    "caption":"Whitney Houston and Clive Davis discussing her discovery and her eponymous first album."
+                }
+            },
+             {
+                "startDate":"1985",
+                "headline":"Debut",
+                "text":"Whitney Houston's self titled first release sold over 12 million copies in the U.S. and included the hit singles 'How Will I Know,' 'You Give Good Love,' 'Saving All My Love For You' and 'Greatest Love of All.'",
+                "asset":
+                {
+                    "media":"https://youtu.be/m3-hY-hlhBg",
+                    "credit":"Arista Records Inc.",
+                    "caption":"The 'How Will I Know' video showcases the youthful energy that boosted Houston to stardom."
+                }
+            },
+            {
+                "startDate":"1986",
+                "headline":"'The Grammys'",
+                "text":"In 1986 Houston won her first Grammy for the song Saving All My Love. In total she has won six Grammys, the last of which she won in 1999 for It's Not Right But It's Okay.",
+                "asset":
+                {
+                    "media":"https://youtu.be/v0XuiMX1XHg",
+                    "credit":"<a href='http://grammy.org'>The Recording Academy</a>",
+                    "caption":"Dionne Warwick gleefully announces cousin, Whitney Houston, the winner of the Best Female Pop Vocal Performance for the song Saving All My Love."
+                }
+            },
+            {
+                "startDate":"1987",
+                "headline":"'Whitney'",
+                "text":"Multiplatinum second album sells more than 20 million copies worldwide. With 'Whitney', Houston became the first female artist to produce four number 1 singles on one album including \"I Wanna Dance With Somebody,' 'Didn't We Almost Have It All,' 'So Emotional' and 'Where Do Broken Hearts Go.'",
+                "asset":
+                {
+                    "media":"https://youtu.be/eH3giaIzONA",
+                    "credit":"Arista Records Inc.",
+                    "caption":"I Wanna Dance With Somebody"
+                }
+            },
+            {
+                "startDate":"1988",
+                "headline":"\"One Moment In Time\"",
+                "text":"The artist's fame continues to skyrocket as she records the theme song for the Seoul Olympics, 'One Moment In Time.'",
+                "asset":
+                {
+                    "media":"https://youtu.be/96aAx0kxVSA",
+                    "credit":"Arista Records Inc.",
+                    "caption":"\"One Moment In Time\" - Theme song to the 1988 Seoul Olympics"
+                }
+            },
+            {
+                "startDate":"1989",
+                "headline":"Bobby Brown",
+                "text":"Houston and Brown first meet at the Soul Train Music Awards. In an interview with Rolling Stone Magazine, Houston admitted that it was not love at first sight. She turned down Brown's first marriage proposal but eventually fell in love with him.",
+                "asset":
+                {
+                    "media":"",
+                    "credit":"",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"1991",
+                "headline":"Super Bowl",
+                "text":"Houston's national anthem performance captures the hearts and minds of Americans ralllying behind soldiers in the Persian Guf War.",
+                "asset":
+                {
+                    "media":"https://youtu.be/5Fa09teeaqs",
+                    "credit":"CNN",
+                    "caption":"CNN looks back at Houston's iconic performance of the national anthem at Superbowl XXV."
+                }
+            },
+            {
+                "startDate":"1992",
+                "headline":"\"The Bodyguard\"",
+                "text":"Houston starred opposite Kevin Costner in the box office hit, The Bodyguard. The soundtrack to the movie sold over 44 million copies worldwide  garnering 3 Grammy's for the artist.",
+                "asset":
+                {
+                    "media":"https://youtu.be/h9rCobRl-ng",
+                    "credit":"Arista Records",
+                    "caption":"\"Run To You\" from the 1992 \"Bodyguard\" soundtrack.."
+                }
+            },
+            {
+                "startDate":"1992",
+                "headline":"Married Life",
+                "text":"<p>After three years of courtship, Houston marries New Edition singer Bobby Brown. Their only child Bobbi Kristina Brown was born in 1993.</p><p>In 2003 Brown was charged with domestic violence after police responded to a domestic violence call. Houston and Brown were featured in the reality show, \"Being bobby Brown,\" and divorced in 2007.</p>",
+                "asset":
+                {
+                    "media":"https://youtu.be/5cDLZqe735k",
+                    "credit":"",
+                    "caption":"Bobby Brown performing \"My Prerogrative,\" from his \"Don't be Cruel\" solo album. Bobby Brown first became famous with the R&B group, New Edition."
+                }
+            },
+            {
+                "startDate":"2002",
+                "headline":"Crack is Whack",
+                "text":"<p>Houston first publicly admitted to drug use in an interview with Diane Sawyer. The singer coined the term \"Crack is Whack,\" saying that she only used more expensive drugs.</p>",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/d/dd/ABC_-_Good_Morning_America_-_Diane_Sawyer.jpg",
+                    "credit":"flickr/<a href='http://www.flickr.com/photos/23843757@N00/194521206/'>Amanda Benham</a>",
+                    "caption":"Diane Sawyer "
+                }
+            },
+
+            {
+                "startDate":"2004",
+                "headline":"Rehab",
+                "text":"<p>Houston entered rehab several times beginning in 2004. She declared herself drug free in an interview with Oprah Winfrey in 2009 but returned to rehab in 2011.</p>",
+                "asset":
+                {
+                    "media":"https://youtu.be/KLk6mt8FMR0",
+                    "credit":"CNN",
+                    "caption":"Addiction expert, Dr. Drew, talks about Whitney's death and her struggle with addiction."
+                }
+            },
+            {
+                "startDate":"2005",
+                "headline":"Being Bobby Brown",
+                "text":"<p>Being Bobby Brown was a reality show starring Brown and wife Whitney Houston. Houston refused to sign for a second season. A clip of her telling Brown to \"Kiss my ass,\" became a running gag on The Soup.</p>",
+                "asset":
+                {
+                    "media":"",
+                    "credit":"",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"2010",
+                "headline":"A Rocky Comeback",
+                "text":"<p>Houston's comeback tour is cut short due to a diminished voice damaged by years of smoking. She was reportedly devastated at her inability to perform like her old self.</p>",
+                "asset":
+                {
+                    "media":"",
+                    "credit":"",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"2012,2,11",
+                "headline":"Whitney Houston<br/> 1963-2012",
+                "text":"<p>Houston, 48, was discovered dead at the Beverly Hilton Hotel on  on Feb. 11, 2012. She is survived by her daughter, Bobbi Kristina Brown, and mother, Cissy Houston.</p>",
+                "asset":
+                {
+                    "media":"//twitter.com/Blavity/status/851872780949889024",
+                    "credit":"<a href='http://commons.wikimedia.org/wiki/File%3AFlickr_Whitney_Houston_performing_on_GMA_2009_4.jpg'>Asterio Tecson</a> via Wikimedia",
+                    "caption":"Houston, performing on Good Morning America in 2009."
+                }
+
+            }
+        ]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/timeline3.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/timeline3.json
new file mode 100644
index 0000000000000000000000000000000000000000..533cd899ebc454c4630412c0ef119ac38a544f22
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/houston/timeline3.json
@@ -0,0 +1,271 @@
+{
+    "title": {
+        "media": {
+          "url": "//www.flickr.com/photos/tm_10001/2310475988/",
+          "caption": "Whitney Houston performing on her My Love is Your Love Tour in Hamburg.",
+          "credit": "flickr/<a href='http://www.flickr.com/photos/tm_10001/'>tm_10001</a>"
+        },
+        "text": {
+          "headline": "Whitney Houston<br/> 1963 - 2012",
+          "text": "<p>Houston's voice caught the imagination of the world propelling her to superstardom at an early age becoming one of the most awarded performers of our time. This is a look into the amazing heights she achieved and her personal struggles with substance abuse and a tumultuous marriage.</p>"
+        }
+    },
+    "events": [
+      {
+        "media": {
+          "url": "{{ static_url }}/img/examples/houston/family.jpg",
+          "caption": "Houston's mother and Gospel singer, Cissy Houston (left) and cousin Dionne Warwick.",
+          "credit": "Cissy Houston photo:<a href='http://www.flickr.com/photos/11447043@N00/418180903/'>Tom Marcello</a><br/><a href='http://commons.wikimedia.org/wiki/File%3ADionne_Warwick_television_special_1969.JPG'>Dionne Warwick: CBS Television via Wikimedia Commons</a>"
+        },
+        "start_date": {
+          "month": "8",
+          "day": "9",
+          "year": "1963"
+        },
+        "text": {
+          "headline": "A Musical Heritage",
+          "text": "<p>Born in New Jersey on August 9th, 1963, Houston grew up surrounded by the music business. Her mother is gospel singer Cissy Houston and her cousins are Dee Dee and Dionne Warwick.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/fSrO91XO1Ck",
+          "caption": "",
+          "credit": "<a href=\"http://unidiscmusic.com\">Unidisc Music</a>"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "First Recording",
+          "text": "At the age of 15 Houston was featured on Michael Zager's song, Life's a Party."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/_gvJCCZzmro",
+          "caption": "A young poised Whitney Houston in an interview with EbonyJet.",
+          "credit": "EbonyJet"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "The Early Years",
+          "text": "As a teen Houston's credits include background vocals for Jermaine Jackson, Lou Rawls and the Neville Brothers. She also sang on Chaka Khan's, 'I'm Every Woman,' a song which she later remade for the <i>Bodyguard</i> soundtrack which is the biggest selling soundtrack of all time. It sold over 42 million copies worldwide."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/H7_sqdkaAfo",
+          "caption": "I'm Every Women as performed by Whitney Houston.",
+          "credit": "Arista Records"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "Early Album Credits",
+          "text": "As a teen Houston's credits include background vocals for Jermaine Jackson, Lou Rawls and the Neville Brothers. She also sang on Chaka Khan's, 'I'm Every Woman,' a song which she later remade for the <i>Bodyguard</i> soundtrack which is the biggest selling soundtrack of all time. It sold over 42 million copies worldwide."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/A4jGzNm2yPI",
+          "caption": "Whitney Houston and Clive Davis discussing her discovery and her eponymous first album.",
+          "credit": "Sony Music Entertainment"
+        },
+        "start_date": {
+          "year": "1983"
+        },
+        "text": {
+          "headline": "Signed",
+          "text": "Houston is signed to Arista Records after exec Clive Davis sees her performing on stage with her mother in New York."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/m3-hY-hlhBg",
+          "caption": "The 'How Will I Know' video showcases the youthful energy that boosted Houston to stardom.",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1985"
+        },
+        "text": {
+          "headline": "Debut",
+          "text": "Whitney Houston's self titled first release sold over 12 million copies in the U.S. and included the hit singles 'How Will I Know,' 'You Give Good Love,' 'Saving All My Love For You' and 'Greatest Love of All.'"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/v0XuiMX1XHg",
+          "caption": "Dionne Warwick gleefully announces cousin, Whitney Houston, the winner of the Best Female Pop Vocal Performance for the song Saving All My Love.",
+          "credit": "<a href='http://grammy.org'>The Recording Academy</a>"
+        },
+        "start_date": {
+          "year": "1986"
+        },
+        "text": {
+          "headline": "'The Grammys'",
+          "text": "In 1986 Houston won her first Grammy for the song Saving All My Love. In total she has won six Grammys, the last of which she won in 1999 for It's Not Right But It's Okay."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/eH3giaIzONA",
+          "caption": "I Wanna Dance With Somebody",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1987"
+        },
+        "text": {
+          "headline": "'Whitney'",
+          "text": "Multiplatinum second album sells more than 20 million copies worldwide. With 'Whitney', Houston became the first female artist to produce four number 1 singles on one album including \"I Wanna Dance With Somebody,' 'Didn't We Almost Have It All,' 'So Emotional' and 'Where Do Broken Hearts Go.'"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/96aAx0kxVSA",
+          "caption": "\"One Moment In Time\" - Theme song to the 1988 Seoul Olympics",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1988"
+        },
+        "text": {
+          "headline": "\"One Moment In Time\"",
+          "text": "The artist's fame continues to skyrocket as she records the theme song for the Seoul Olympics, 'One Moment In Time.'"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "1989"
+        },
+        "text": {
+          "headline": "Bobby Brown",
+          "text": "Houston and Brown first meet at the Soul Train Music Awards. In an interview with Rolling Stone Magazine, Houston admitted that it was not love at first sight. She turned down Brown's first marriage proposal but eventually fell in love with him."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/5Fa09teeaqs",
+          "caption": "CNN looks back at Houston's iconic performance of the national anthem at Superbowl XXV.",
+          "credit": "CNN"
+        },
+        "start_date": {
+          "year": "1991"
+        },
+        "text": {
+          "headline": "Super Bowl",
+          "text": "Houston's national anthem performance captures the hearts and minds of Americans ralllying behind soldiers in the Persian Guf War."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/h9rCobRl-ng",
+          "caption": "\"Run To You\" from the 1992 \"Bodyguard\" soundtrack..",
+          "credit": "Arista Records"
+        },
+        "start_date": {
+          "year": "1992"
+        },
+        "text": {
+          "headline": "\"The Bodyguard\"",
+          "text": "Houston starred opposite Kevin Costner in the box office hit, The Bodyguard. The soundtrack to the movie sold over 44 million copies worldwide  garnering 3 Grammy's for the artist."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/5cDLZqe735k",
+          "caption": "Bobby Brown performing \"My Prerogrative,\" from his \"Don't be Cruel\" solo album. Bobby Brown first became famous with the R&B group, New Edition.",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "1992"
+        },
+        "text": {
+          "headline": "Married Life",
+          "text": "<p>After three years of courtship, Houston marries New Edition singer Bobby Brown. Their only child Bobbi Kristina Brown was born in 1993.</p><p>In 2003 Brown was charged with domestic violence after police responded to a domestic violence call. Houston and Brown were featured in the reality show, \"Being bobby Brown,\" and divorced in 2007.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/d/dd/ABC_-_Good_Morning_America_-_Diane_Sawyer.jpg",
+          "caption": "Diane Sawyer ",
+          "credit": "flickr/<a href='http://www.flickr.com/photos/23843757@N00/194521206/'>Amanda Benham</a>"
+        },
+        "start_date": {
+          "year": "2002"
+        },
+        "text": {
+          "headline": "Crack is Whack",
+          "text": "<p>Houston first publicly admitted to drug use in an interview with Diane Sawyer. The singer coined the term \"Crack is Whack,\" saying that she only used more expensive drugs.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/KLk6mt8FMR0",
+          "caption": "Addiction expert, Dr. Drew, talks about Whitney's death and her struggle with addiction.",
+          "credit": "CNN"
+        },
+        "start_date": {
+          "year": "2004"
+        },
+        "text": {
+          "headline": "Rehab",
+          "text": "<p>Houston entered rehab several times beginning in 2004. She declared herself drug free in an interview with Oprah Winfrey in 2009 but returned to rehab in 2011.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "2005"
+        },
+        "text": {
+          "headline": "Being Bobby Brown",
+          "text": "<p>Being Bobby Brown was a reality show starring Brown and wife Whitney Houston. Houston refused to sign for a second season. A clip of her telling Brown to \"Kiss my ass,\" became a running gag on The Soup.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "2010"
+        },
+        "text": {
+          "headline": "A Rocky Comeback",
+          "text": "<p>Houston's comeback tour is cut short due to a diminished voice damaged by years of smoking. She was reportedly devastated at her inability to perform like her old self.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "//twitter.com/Blavity/status/851872780949889024",
+          "caption": "Houston, performing on Good Morning America in 2009.",
+          "credit": "<a href='http://commons.wikimedia.org/wiki/File%3AFlickr_Whitney_Houston_performing_on_GMA_2009_4.jpg'>Asterio Tecson</a> via Wikimedia"
+        },
+        "start_date": {
+          "month": "2",
+          "day": "11",
+          "year": "2012"
+        },
+        "text": {
+          "headline": "Whitney Houston<br/> 1963-2012",
+          "text": "<p>Houston, 48, was discovered dead at the Beverly Hilton Hotel on  on Feb. 11, 2012. She is survived by her daughter, Bobbi Kristina Brown, and mother, Cissy Houston.</p>"
+        }
+      }
+    ]
+}
diff --git a/public/opac/TimelineJS-2.25/examples/example_googlespreadsheet.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/mediatypes/index.html
similarity index 54%
rename from public/opac/TimelineJS-2.25/examples/example_googlespreadsheet.html
rename to public/opac/TimelineJS3-3.5.1/website/templates/examples/mediatypes/index.html
index a70190d09e5d6f00a5aab897e6c02b2b282836b5..67930f25c0778a78e2ca54be01af5273d718c464 100644
--- a/public/opac/TimelineJS-2.25/examples/example_googlespreadsheet.html
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/mediatypes/index.html
@@ -14,34 +14,42 @@
   	                                                            888P              
   	 -->
   <head>
-    <title>Timeline JS Example</title>
+    <title>Test all the Media Types</title>
+    <meta name="description" content="A demonstration of all available media types for TimelineJS 3">
     <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
+    <meta name="viewport" content="initial-scale=1,width=device-width">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
     <!-- Style-->
     <style>
       html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
+      height:100%;
+      padding: 0px;
+      margin: 0px;
       }
     </style>
     <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+    <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+	<link rel="stylesheet" type="text/css" href="{{ static_url }}/css/site.css">
+  <!-- build:css //cdn.knightlab.com/libs/timeline3/%(cdn)s/css/timeline.css -->
+  <link title="timeline-styles" rel="stylesheet" href="/build/css/timeline.css">
+  <!-- endbuild -->
+
+  <!-- build:js //cdn.knightlab.com/libs/timeline3/%(cdn)s/js/timeline-min.js -->
+  <script src="/build/js/timeline.js"></script>
+  <!-- endbuild -->
+
   </head>
   <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         source: 'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadHdKcHlHcTB5bzhvbF9iTWwyMmJHdkE&amp;output=html'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
+  <section id="demo">
+    <div id="timeline-embed" style="height: 100%;">
+      <div id="timeline"></div>
+    </div>
+  </section>
+  <script type="text/javascript">
+      window.timeline = new TL.Timeline('timeline-embed', 'timeline3.json');
+  </script>
+    {% include "_analytics.html" %}
+
   </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/mediatypes/timeline3.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/mediatypes/timeline3.json
new file mode 100644
index 0000000000000000000000000000000000000000..5b57d57b612d3cb5d4e9ee37ecb9556a30ed0021
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/mediatypes/timeline3.json
@@ -0,0 +1,421 @@
+{
+    "title": {
+        "media": {
+          "url": "http://www.germuska.com/salzburg-album/full/2QVB_022.jpg",
+          "caption": "The secret passage at Schloss Leopoldskron, Salzburg, Austria",
+          "credit": "Joe Germuska"
+        },
+        "text": {
+          "headline": "TimelineJS Media Types",
+          "text": "<p>TimelineJS supports many media types. This provides a simple way to test them all. This page tests a simple image on a remote server.</p>"
+        }
+    },
+    "events": [
+      {
+        "media": {
+          "url": "https://www.youtube.com/watch?v=pi2v1m6gmD8&t=5m21s",
+          "caption": "the Monkey section of David Van Tieghem's <em>Ear Drums</em>"
+        },
+        "start_date": {
+          "year": "1901"
+        },
+        "text": {
+          "headline": "YouTube Videos",
+          "text": "<p>if Timeline finds a URL that starts with 'youtube.com' or 'youtu.be', it will try to use it to embed a YouTube video. The <em>protocol</em> part of the URL (e.g. <em>https://</em>) is technically optional.</p><p>You can start at a specific point in the video using the <code>t=#m#s</code> parameter: see <a href='http://youtubetime.com/'>http://youtubetime.com/</a></p>"
+        }
+      },
+      {
+        "media": {
+          "url": "http://vimeo.com/20839673",
+          "caption": "<em>Phat Tai</em>, a story of Vietnamese fishermen on the Gulf Coast.",
+          "credit": "Joe York/Southern Foodways Alliance"
+        },
+        "start_date": {
+          "year": "1902"
+        },
+        "text": {
+          "headline": "Vimeo",
+          "text": "To embed a Vimeo video, just copy the URL of the Vimeo.com page which shows the video."
+        }
+      },
+      {
+        "media": {
+          "url": "http://www.dailymotion.com/video/x2fo0e8_the-history-of-advertising-in-60-seconds_lifestyle",
+          "caption": "The History of Advertising in 60 Seconds",
+          "credit": "Mashable"
+        },
+        "start_date": {
+          "year": "1903"
+        },
+        "text": {
+          "headline": "DailyMotion",
+          "text": "To embed a DailyMotion video, just copy the URL of the page which shows the video."
+        }
+     },
+     {
+        "media": {
+          "url": "https://vine.co/v/Og5Ai71WHdD",
+          "caption": "'Banana Moon'",
+          "credit": "Simple Sylvio"
+        },
+        "start_date": {
+          "year": "1904"
+        },
+        "text": {
+          "headline": "Vine",
+          "text": "To embed a Vine, just copy the URL of the page which shows the vine."
+        }
+     },
+     {
+        "media": {
+          "url": "https://soundcloud.com/usher-raymond-music/usher-i-dont-mind-feat-juicy-j",
+          "caption": "I Don't Mind feat. Juicy J",
+          "credit": "Usher Raymond Music"
+        },
+        "start_date": {
+          "year": "1905"
+        },
+        "text": {
+          "headline": "SoundCloud",
+          "text": "To embed a SoundCloud clip, just copy the URL of the clip's page."
+        }
+     },
+     {
+        "media": {
+          "url": "https://twitter.com/NASASpaceflight/status/562327074384654336",
+          "caption": "State of NASA Adress",
+          "credit": "NASASpaceFlight"
+        },
+        "start_date": {
+          "year": "1906"
+        },
+        "text": {
+          "headline": "Twitter",
+          "text": "To display a Tweet, just copy the URL in the embed code."
+        }
+     },
+     {
+        "media": {
+          "url": "https://www.google.com/maps/@42.032147,-87.6689625,15z",
+          "caption": "Google Maps with coordinates",
+          "credit": "Google Maps"
+        },
+        "start_date": {
+          "year": "1907"
+        },
+        "text": {
+          "headline": "Google Maps, Coordinates",
+          "text": "To embed a Google Map with coordinates, just copy the URL of the map's page."
+        }
+     },
+     {
+        "media": {
+          "url": "https://www.google.com/maps/search/target/@41.8747339,-87.6481257,13z?hl=en-US",
+          "caption": "Google Maps with search results",
+          "credit": "Google Maps"
+        },
+        "start_date": {
+          "year": "1908"
+        },
+        "text": {
+          "headline": "Google Maps, Search",
+          "text": "To embed a Google Maps search result, just copy the URL of the map's page."
+        }
+     },
+     {
+        "media": {
+          "url": "https://www.google.com/maps/place/Northwestern+University/@42.056459,-87.675267,17z/data=!3m1!4b1!4m2!3m1!1s0x880fd00b703e4c39:0x2c37b567fad56106",
+          "caption": "Google Maps with place marker",
+          "credit": "Google Maps"
+        },
+        "start_date": {
+          "year": "1909"
+        },
+        "text": {
+          "headline": "Google Maps, Place Marker",
+          "text": "To embed a Google Map with a place marker, just copy the URL of the map's page."
+        }
+     },
+     {
+        "media": {
+          "url": "https://www.google.com/maps/dir/W+Adams+St+%26+S+Clark+St,+Chicago,+IL/Northwestern+University,+633+Clark+Street,+Evanston,+IL+60208/@41.9672743,-87.7225481,12z/data=!3m1!4b1!4m13!4m12!1m5!1m1!1s0x880e2cbc8bcec53b:0x72d2c7372d97283d!2m2!1d-87.6308023!2d41.8794067!1m5!1m1!1s0x880fd00b703e4c39:0x2c37b567fad56106!2m2!1d-87.675267!2d42.056459",
+          "caption": "Google Maps with directions",
+          "credit": "Google Maps"
+        },
+        "start_date": {
+          "year": "1910"
+        },
+        "text": {
+          "headline": "Google Maps, Directions",
+          "text": "To embed a Google Maps with directions, just copy the URL of the map's page."
+        }
+     },
+     {
+        "media": {
+          "url": "https://lh4.googleusercontent.com/-QO1O34U4z7k/Ui4OnAkgWjI/AAAAAAAAQv4/eDSXlUlwcKs/w622-h415-no/IMG_7898.JPG",
+          "caption": "Million Dollar Highway",
+          "credit": "Luke Rague"
+        },
+        "start_date": {
+          "year": "1911"
+        },
+        "text": {
+          "headline": "Google Plus",
+          "text": "To embed a Google Plus photo, just copy image URL."
+        }
+     },
+     {
+        "media": {
+          "url": "http://instagram.com/p/ymwL5JAsw5/",
+          "caption": "Snow and Water",
+          "credit": "Luke Rague"
+        },
+        "start_date": {
+          "year": "1912"
+        },
+        "text": {
+          "headline": "Instagram",
+          "text": "To embed an Instagram, just copy the URL of the photo's page."
+        }
+     },
+     {
+        "media": {
+          "url": "http://instagram.com/lukerague/",
+          "caption": "Luke Rague's Instagram Account",
+          "credit": "Instagram/Luke Rague"
+        },
+        "start_date": {
+          "year": "1912"
+        },
+        "text": {
+          "headline": "Instagram, Profile",
+          "text": "To embed an Instagram profile, just copy the URL."
+        }
+     },
+     {
+        "media": {
+          "url": "https://www.flickr.com/photos/critterseeker/16420145375",
+          "caption": "Mountains of the Alaska Range in Denali National Park, Alaska. (Long link URL)",
+          "credit": "Daniel Leifhelt"
+        },
+        "start_date": {
+          "year": "1913"
+        },
+        "text": {
+          "headline": "Flickr",
+          "text": "To embed a Flickr photo, just copy the URL in the embed code."
+        }
+     },
+     {
+        "media": {
+          "url": "https://www.documentcloud.org/documents/1377371-folketinget.html",
+          "caption": "I don't know, it's not in English",
+          "credit": "Nil Mulvad"
+        },
+        "start_date": {
+          "year": "1914"
+        },
+        "text": {
+          "headline": "Document Cloud",
+          "text": "To embed from Document CLoud, just copy the document's URL."
+        }
+     },
+     {
+        "media": {
+          "url": "http://www.kidzone.ws/images-changed/sharks/head.jpg",
+          "caption": "Sharks!",
+          "credit": "Kid Zone"
+        },
+        "start_date": {
+          "year": "1915"
+        },
+        "text": {
+          "headline": "Image, JPG",
+          "text": "To embed a JPG, just copy the URL endig in '.jpg'."
+        }
+     },
+     {
+        "media": {
+          "url": "http://usatlife.files.wordpress.com/2014/06/groundhog-day-bill-murray-winter-never-going-to-end.gif",
+          "caption": "Groundhog Day clip",
+          "credit": "USA Today"
+        },
+        "start_date": {
+          "year": "1916"
+        },
+        "text": {
+          "headline": "Image, GIF",
+          "text": "To embed a GIF, just copy the URL endig in '.gif'."
+        }
+     },
+     {
+        "media": {
+          "url": "http://pngimg.com/upload/banana_PNG842.png",
+          "caption": "A Banana",
+          "credit": "pngimg.com"
+        },
+        "start_date": {
+          "year": "1917"
+        },
+        "text": {
+          "headline": "Image, PNG",
+          "text": "To embed a PNG, just copy the URL endig in '.png'."
+        }
+     },
+     {
+        "media": {
+          "url": "http://upload.wikimedia.org/wikipedia/commons/c/c2/Rocky_Mountains.jpeg",
+          "caption": "Rocky Mountains",
+          "credit": "Wikipedia Commons"
+        },
+        "start_date": {
+          "year": "1918"
+        },
+        "text": {
+          "headline": "Image, JPEG",
+          "text": "To embed a JPEG, just copy the URL endig in '.jpeg'."
+        }
+     },
+     {
+        "media": {
+          "url": "https://docs.google.com/document/d/1RvKYxHuwweIP8zRrnjad-0exVoZOUsSVgDYPp0J1mzY/view",
+          "caption": "Quotes that Luke likes.",
+          "credit": "Luke Rague"
+        },
+        "start_date": {
+          "year": "1919"
+        },
+        "text": {
+          "headline": "Google Doc, text document",
+          "text": "To embed a Google Doc, just copy the Shareable link."
+        }
+     },
+     {
+        "media": {
+          "url": "https://en.wikipedia.org/wiki/1997_International_Tennis_Championships_%E2%80%93_Doubles",
+          "caption": "1997 Inrternational Tennis Championships - Doubles",
+          "credit": "Wikipedia"
+        },
+        "start_date": {
+          "year": "1920"
+        },
+        "text": {
+          "headline": "Wikipedia",
+          "text": "To embed from Wikipedia, just copy the URL of the article's page."
+        }
+     },
+     {
+        "media": {
+          "url": "https://play.spotify.com/artist/2iE18Oxc8YSumAU232n4rW",
+          "caption": "Jackson 5",
+          "credit": "Jackson 5"
+        },
+        "start_date": {
+          "year": "1921"
+        },
+        "text": {
+          "headline": "Spotify, Artist",
+          "text": "To embed an artist on Spotify, just copy the 'Spotify URL'."
+        }
+     },
+     {
+        "media": {
+          "url": "https://play.spotify.com/user/edvard_m/playlist/4xFSdiuP4gpR4wq2OghlOs",
+          "caption": "Funk Soul Disco",
+          "credit": "Edvard Brudeli Moen"
+        },
+        "start_date": {
+          "year": "1921"
+        },
+        "text": {
+          "headline": "Spotify, Playlist",
+          "text": "To embed a Spotify playlist, just copy the 'Spotify URL'."
+        }
+     },
+     {
+        "media": {
+          "url": "https://play.spotify.com/track/5SdB3onMcO9ZBoKrdvCqhR",
+          "caption": "ABC",
+          "credit": "Jackson 5"
+        },
+        "start_date": {
+          "year": "1922"
+        },
+        "text": {
+          "headline": "Spotify, Track",
+          "text": "To embed a Spotify track, just copy the 'Spotify URL'."
+        }
+     },
+     {
+        "media": {
+          "url": "<iframe src='https://cdn.knightlab.com/libs/timeline/latest/embed/index.html?source=10fFZXg4kioMz8uTVDZfawiJkgrWZxfJuziK1i1AaCrs&font=Bevan-PotanoSans&maptype=toner&lang=en&height=650' width='100%' height='650' frameborder='0'></iframe>", 
+          "caption": "Test Timeline",
+          "credit": "Luke Rague"
+        },
+        "start_date": {
+          "year": "1923"
+        },
+        "text": {
+          "headline": "iFrame",
+          "text": "To embed an iFrame, just copy the iFrame code."
+        }
+     },
+     {
+        "media": {
+          "url": "https://storify.com/IllinoisStateU/best-campus-photos-january-2015",
+          "caption": "Best campus photos: January 2015",
+          "credit": "Illinois State"
+        },
+        "start_date": {
+          "year": "1924"
+        },
+        "text": {
+          "headline": "Storify",
+          "text": "To embed a Storify, just copy URL."
+        }
+     },
+     {
+        "media": {
+          "url": "<iframe src=\"http://www.theonion.com/articles/measles-epidemic-2015-a-timeline-of-the-outbreak,37870/\"></iframe>",
+          "caption": "Measles Epidemic 2015: A Timeline of the Outbreak",
+          "credit": "The Onion"
+        },
+        "start_date": {
+          "year": "1925"
+        },
+        "text": {
+          "headline": "Website, in iFrame",
+          "text": "To embed a website, just copy the URL."
+        }
+     },
+     {
+        "media": {
+          "url": "http://www.theonion.com/articles/measles-epidemic-2015-a-timeline-of-the-outbreak,37870/",
+          "caption": "Measles Epidemic 2015: A Timeline of the Outbreak",
+          "credit": "The Onion"
+        },
+        "start_date": {
+          "year": "1925"
+        },
+        "text": {
+          "headline": "Website, no iFrame",
+          "text": "To embed a website, just copy the URL."
+        }
+     },
+     {
+        "media": {
+          "url": "<blockquote>This is a block quote.</blockquote>",
+          "caption": "That is a block quote.",
+          "credit": "Galactic"
+        },
+        "start_date": {
+          "year": "1926"
+        },
+        "text": {
+          "headline": "Blockquote",
+          "text": "To display a block quote, input text in HTML blockquote tags."
+        }
+     }
+
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/republican/index.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/republican/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..cbd5ae5892b9ecd094abd1574663a26b5394ccc1
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/republican/index.html
@@ -0,0 +1,49 @@
+<!DOCTYPE html>
+<html lang="en"><!--
+
+  	88888888888 d8b                        888 d8b                888888   d8888b
+  	    888     Y8P                        888 Y8P                   88b d88P  Y88b
+  	    888                                888                       888 Y88b
+  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
+  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
+  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888
+  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P
+  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
+  	                                                                d88P
+  	                                                              d88P
+  	                                                            888P
+  	 -->
+  <head>
+    <title>Republican run-up: the GOP caucuses</title>
+    <meta name="description" content="Follow the presidential caucuses and primaries as members of the Republican Party race to become the GOP’s next presidential nominee.">
+    <meta charset="utf-8">
+    <meta name="viewport" content="initial-scale=1,width=device-width">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <!-- Style-->
+    <style>
+      html, body {
+      height:100%;
+      padding: 0px;
+      margin: 0px;
+      }
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
+    <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+	<link rel="shortcut icon" href="https://cdn.knightlab.com/libs/blueline/latest/assets/logos/favicon.ico"> 
+    <script type="text/javascript">
+        var timeline_config = {
+            type:		'timeline',
+            width:		'100%',
+            height:		'100%',
+            source:		'https://docs.google.com/spreadsheet/pub?key=1LuGcd4dnV4NFm7OSaJ7gOUJR0HZywBxh3geX0ltBNx0&amp;output=html',
+            embed_id:	'timeline-embed'
+        }
+    </script>
+  </head>
+  <body>
+     {% include "examples/_common_example_embed.html" %}
+      {% include "_analytics.html" %}
+
+  </body>
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/republican/timeline2.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/republican/timeline2.json
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/republican/timeline3.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/republican/timeline3.json
new file mode 100644
index 0000000000000000000000000000000000000000..2c4875448880595066591645d703731ee1a13788
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/republican/timeline3.json
@@ -0,0 +1,238 @@
+{
+    "scale": "human",
+    "title": {
+        "media": {
+          "caption": "",
+          "credit": "",
+          "url": "",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "The Republican Run-Up",
+          "text": "Follow the presidential caucuses and primaries as members of the Republican Party race to become the GOP's next presidential nominee."
+        }
+      },
+    "events": [
+      {
+        "media": {
+          "caption": "Rick Santorum at the Iowa State Fair before the Ages Straw Poll.",
+          "credit": "<a href=\"http://www.flickr.com/photos/gageskidmore/6057989217/\">Gage Skidmore</a>/Flickr",
+          "url": "https://farm7.staticflickr.com/6200/6057989217_3bd755477b.jpg",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Iowa",
+          "text": "At the first caucus of the season, former Penn. senator Rick Santorum gained an early lead, beating out Mass. Gov. Mitt Romney in Iowa after <a href=\"http://www.foxnews.com/politics/2012/01/21/iowa-republican-party-reaffirms-santorum-as-winner-caucuses/\">much debate</a> about the results. Santorum, Romney and Texas Rep. Ron Paul emerged as pack leaders moving forward into the New Hampshire primaries."
+        },
+        "start_date": {
+          "month": "1",
+          "day": "3",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "From Romney's victory speech, directed at Newt Gingrich, former House speaker",
+          "credit": "Romney Wins In New Hampshire Republican Primary/New York Times",
+          "url": "<blockquote>“In the last few days, we have seen some desperate Republicans join forces with him,” Romney said. “This is such a mistake for our party and for our nation. This country already has a leader who divides us with the bitter politics of envy.”</blockquote>",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "New Hampshire",
+          "text": "Romney <a href=\"http://www.nytimes.com/2012/01/11/us/politics/mitt-romney-wins-in-new-hampshire-republican-primary.html?_r=1\" target=\"new\">swept New Hampshire</a> from the other candidates, winning by a double-digit margin over Santorum and former Utah governor Jon M. Huntsman Jr."
+        },
+        "start_date": {
+          "month": "1",
+          "day": "10",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "Gingrich addresses supporters after South Carolina victory.",
+          "credit": "YouTube.com",
+          "url": "https://youtu.be/2n5yakw5jgo",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "South Carolina",
+          "text": "In a surprising <a href=\"http://www.washingtonpost.com/blogs/election-2012/post/south-carolina-republican-primary-live-updates-photos-video/2012/01/21/gIQADpwbGQ_blog.html\" target=\"new\">turn of events</a>, former House speaker Newt Gingrich came from behind to win South Carolina over Romney - who was looking like the one to beat. Romney and Gingrich become the main contenders in the race."
+        },
+        "start_date": {
+          "month": "1",
+          "day": "21",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "<a href=\"http://www.flickr.com/photos/mittromney/6812048183/\" title=\"Untitled by Mitt Romney, on Flickr\">Mitt Romney</a>/Flickr",
+          "url": "//farm8.staticflickr.com/7001/6812048183_316d424f2f.jpg",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Florida",
+          "text": "Romney makes a <a href=\"http://www.foxnews.com/politics/2012/01/31/romney-leading-among-seniors-hispanics-in-florida-exit-polls/\" target=\"new\">strong comeback</a>, snatching Florida from Gingrich. But the former House speaker wasn't giving up, vowing to keep nipping at Romney's heels with his \"46 States To Go\" campaign. <p>The GOP race, particularly Romney's campaign, begins to emerge as the <a href=\"http://www.newsmax.com/InsideCover/Florida-Republican-primary-results/2012/01/31/id/426195\" target=\"new\">most negative</a> yet."
+        },
+        "start_date": {
+          "month": "1",
+          "day": "31",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "Twitter.com",
+          "url": "https://twitter.com/#!/MittRomney/status/165994713806155776",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Nevada",
+          "text": "Continuing to push forward, <a href=\"http://www.thedailybeast.com/articles/2012/02/04/daily-beast-writers-on-romney-s-nevada-win.html\" target=\"new\">Romney wins</a> the Nevada caucuses after entrance polls showed him ahead in most all of the state's voter groups.<p>Ron Paul was rumored to emerge victorious over Gingrich who seemed to be fading. Despite murmurings he would drop out, Gingrich vowed to continue on."
+        },
+        "start_date": {
+          "month": "2",
+          "day": "4",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "<a href=\"http://www.flickr.com/photos/20325042@N05/6857070403/\" title=\"_MG_4530 by ernie_tacsik, on Flickr\">ernie_tacsik</a>/Flickr",
+          "url": "//farm8.staticflickr.com/7180/6857070403_03901a5026.jpg",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Missouri, Minnesota, Colorado",
+          "text": "Once again dethroning Romney as the front-runner, Santorum exploded in the polls <a href=\"http://abcnews.go.com/Politics/OTUS/santorum-wins-colorado-missouri-minnesota-romney-lowers-expectations/story?id=15533165#.T0MjinJSTFk\" target=\"new\">winning all three</a> Republican voting contests."
+        },
+        "start_date": {
+          "month": "2",
+          "day": "7",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "Twitter.com",
+          "url": "https://twitter.com/#!/MattWilliams06/status/171385782936932353",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Maine",
+          "text": "Romney <a href=\"http://www.cbsnews.com/8301-503544_162-57375990-503544/mitt-romney-wins-maine-gop-caucuses/\" target=\"new\">wins again</a> in Maine with 39 percent of the vote, squeaking by Paul who came in second. Romney also won the straw poll held by <a href=\"http://www.foxnews.com/politics/2012/02/11/romney-wins-cpac-presidential-straw-poll/\" target=\"new\">Conservative Political Action Committee</a>, breaking Paul's two-year streak.<p> Controversy still remains about who should be victorious, as the <a href=\"http://www.pressherald.com/Recount-doesnt-change-vote-totals-Maine-GOP-says.html\" target=\"new\">Maine GOP</a> incorrectly counted the votes, leaving several counties out. Even after the recount, Romney stayed ahead."
+        },
+        "start_date": {
+          "month": "2",
+          "day": "11",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "YouTube",
+          "url": "https://youtu.be/IoFfUg8YtC0",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Arizona debates",
+          "text": "The big four in the GOP race gathered in Mesa, Ariz. to debate before the primaries in Michigan and Arizona.<p> The debate didn't do much for any of the candidates but the spotlight was on <a href=\"http://www.foxnews.com/politics/2012/02/22/gop-candidates-clash-ahead-high-stakes-debate-in-arizona/\" target=\"new\">Romney and Santorum</a> who were going head-to-head for the two states' delegates."
+        },
+        "start_date": {
+          "month": "2",
+          "day": "22",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "YouTube",
+          "url": "https://youtu.be/8-fU-knxT0U",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Gingrich refuses to get personal during South Carolina debate",
+          "text": "The GOP primary debates picked up steam as the four major contenders for the nomination gathered in Charleston, S.C. before the primary. The main event was when CNN's John King asked Gingrich about <a href=\"http://www.washingtonpost.com/politics/marianne-gingrich-newts-ex-wife-says-he-wanted-open-marriage/2012/01/19/gIQAJzgwAQ_print.html\" target=\"new\">allegations leveled by his ex-wife</a>, that he wanted an open marriage. Gingrich cried media bias, telling off King and CNN for addressing the topic in a Presidential debate. <p>Today, Texas Gov. Rick Perry ended his campaign for president and endorsed Gingrich."
+        },
+        "start_date": {
+          "month": "1",
+          "day": "19",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "YouTube",
+          "url": "https://youtu.be/9sj5HcoGK2w",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Debates at University of South Florida",
+          "text": "In Tampa, <a href=\"http://www.usatoday.com/news/politics/story/2012-01-23/gop-florida-debate/52759538/1\" target=\"new\">Romney attacked Gingrich</a>, briefly rendering him speechless and sullying his near-perfect debate performance this season. The event focused on the two men as they fought to gain ground over each other. <p>Santorum and Paul also participated but were overshadowed by Romney and Gingrich."
+        },
+        "start_date": {
+          "month": "1",
+          "day": "23",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "<a href=\"http://www.foxnews.com/politics/2012/01/15/huntsman-to-withdraw-from-race-for-republican-presidential-nomination/#ixzz1mzZGCa5Q\" target=\"new\">Huntsman withdraws from race for Republican presidential nomination</a>/FoxNews.com",
+          "url": "<blockquote>\"Today, I am suspending my campaign for the presidency. I believe it is now time for our party to unite around the candidate best equipped to defeat Barack Obama. Despite our differences and the space between us on some of the issues, I believe that candidate is Gov. Mitt Romney.\"</blockquote>",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Huntsman drops out",
+          "text": "After placing all his eggs in the New Hampshire basket and placing third, Huntsman <a href=\"http://www.foxnews.com/politics/2012/01/15/huntsman-to-withdraw-from-race-for-republican-presidential-nomination/\" target=\"new\">ends his presidential bid</a>, escaping what he called a \"toxic\" environment."
+        },
+        "start_date": {
+          "month": "1",
+          "day": "16",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "<a href=\"http://www.flickr.com/photos/mittromney/6795923698/\" title=\"Untitled by Mitt Romney, on Flickr\">Mitt Romney</a>/Flickr",
+          "url": "//farm8.staticflickr.com/7176/6795923698_d11ecca6bc.jpg",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Michigan and Arizona",
+          "text": "Romney won in both states, leaving Santorum in second place.<p>Winning these states, particularly his home state of Michigan, was important to keep Romney's momentum toward the nomination for the general election."
+        },
+        "start_date": {
+          "month": "2",
+          "day": "28",
+          "year": "2012"
+        }
+      },
+      {
+        "media": {
+          "caption": "",
+          "credit": "",
+          "url": "",
+          "thumbnail": ""
+        },
+        "text": {
+          "headline": "Super Tuesday",
+          "text": "Today, 10 states hold their caucuses and primaries. Tune in for results."
+        },
+        "start_date": {
+          "month": "3",
+          "day": "6",
+          "year": "2012"
+        }
+      }
+    ]
+}
diff --git a/public/opac/TimelineJS-2.25/tests/test_iframe_640.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/index.html
similarity index 68%
rename from public/opac/TimelineJS-2.25/tests/test_iframe_640.html
rename to public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/index.html
index 51ee7abda8451d1db7a4fce2182573fd5eab9687..37b68dc0971f4dff866c9d733777958003876832 100644
--- a/public/opac/TimelineJS-2.25/tests/test_iframe_640.html
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/index.html
@@ -14,24 +14,26 @@
   	                                                            888P              
   	 -->
   <head>
-    <title>Timeline JS Example</title>
+    <title>Sh*t People Say</title>
+    <meta name="description" content="Sh*t People Say Timeline">
     <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
+    <meta name="viewport" content="initial-scale=1,width=device-width">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+	<link rel="shortcut icon" href="https://cdn.knightlab.com/libs/blueline/latest/assets/logos/favicon.ico"> 
     <!-- Style-->
     <style>
       html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
+      height:100%;
+      padding: 0px;
+      margin: 0px;
       }
     </style>
     <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+    <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
   </head>
   <body>
-    <div style="width:640px;"><iframe src="../compiled/index.html?source=0Agl_Dv6iEbDadHdKcHlHcTB5bzhvbF9iTWwyMmJHdkE&font=Bevan-PotanoSans&maptype=toner&debug=true&lang=en&height=650" width='100%' height='650' frameborder='0'></iframe></div>
+      {% include "examples/_common_example_embed.html" %}
+      {% include "_analytics.html" %}
   </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/public/opac/TimelineJS-2.25/examples/example_jsonp.jsonp b/public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/timeline2.json
similarity index 74%
rename from public/opac/TimelineJS-2.25/examples/example_jsonp.jsonp
rename to public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/timeline2.json
index 8d11d617af10115b12391fa54457c9902081db25..0b5eeb691c2de7a7645e4a3a173124767bf42cec 100644
--- a/public/opac/TimelineJS-2.25/examples/example_jsonp.jsonp
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/timeline2.json
@@ -1,19 +1,24 @@
-storyjs_jsonp_data = {
+{
     "timeline":
     {
         "headline":"Sh*t People Say",
         "type":"default",
-		"text":"People say stuff",
-		"startDate":"2012,1,26",
+		"text":"When &quot;Shit Girls Say&quot; was uploaded to YouTube it was picked up by Reddit, the Huffington Post, Mashable etc. In a month, it racked up over 12 million views and has spawned a meme of Sh*t People Say.",
+		"startDate":"2011,12,12",
+        "asset":
+        {
+            "media":"https://youtu.be/u-yLGIH7W9Y",
+            "credit":"",
+            "caption":"Writers & Creators: Kyle Humphrey & Graydon Sheppard"
+		},
         "date": [
             {
                 "startDate":"2012,1,26",
-				"endDate":"2012,1,27",
                 "headline":"Sh*t Politicians Say",
-                "text":"<p>In true political fashion, his character rattles off common jargon heard from people running for office.</p>",
+                "text":"<p>Sh*t Politicians Say landed just hours before Thursday night’s Republican presidential debate and stars actor Joe Leon. In true political fashion, his character rattles off common jargon heard from people running for office.</p><p>Do these ring a bell? Moral fiber, family values, trust me, three-point plan, earmarks, tough question, children are our future, Washington outsider, jobs, my opponent — all sound familiar.</p>",
                 "asset":
                 {
-                    "media":"http://youtu.be/u4XpeU9erbg",
+                    "media":"https://youtu.be/u4XpeU9erbg",
                     "credit":"",
                     "caption":""
                 }
@@ -24,7 +29,7 @@ storyjs_jsonp_data = {
                 "text":"<p>Have you ever heard someone say “can I burn a copy of your Nickelback CD?” or “my Bazooka gum still has flavor!” Nobody says that.</p>",
                 "asset":
                 {
-                    "media":"http://youtu.be/f-x8t0JOnVw",
+                    "media":"https://youtu.be/f-x8t0JOnVw",
                     "credit":"",
                     "caption":""
                 }
@@ -35,21 +40,10 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/Ofy5gNkKGOo",
+                    "media":"https://youtu.be/Ofy5gNkKGOo",
                     "credit":"",
                     "caption":""
                 }
-            },
-			{
-                "startDate":"2011,12,12",
-                "headline":"Sh*t Girls Say",
-                "text":"",
-                "asset":
-                {
-                    "media":"http://youtu.be/u-yLGIH7W9Y",
-                    "credit":"",
-                    "caption":"Writers & Creators: Kyle Humphrey & Graydon Sheppard"
-                }
             },
 			{
                 "startDate":"2012,1,4",
@@ -57,7 +51,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/zyyalkHjSjo",
+                    "media":"https://youtu.be/zyyalkHjSjo",
                     "credit":"",
                     "caption":""
                 }
@@ -69,7 +63,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/BR8zFANeBGQ",
+                    "media":"https://youtu.be/BR8zFANeBGQ",
                     "credit":"",
                     "caption":"written, filmed, and edited by Kate Imbach & Tom Conrad"
                 }
@@ -80,7 +74,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/OmWFnd-p0Lw",
+                    "media":"https://youtu.be/OmWFnd-p0Lw",
                     "credit":"",
                     "caption":""
                 }
@@ -91,7 +85,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/KsT3QTmsN5Q",
+                    "media":"https://youtu.be/KsT3QTmsN5Q",
                     "credit":"",
                     "caption":""
                 }
@@ -102,7 +96,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/vJpBCzzcSgA",
+                    "media":"https://youtu.be/vJpBCzzcSgA",
                     "credit":"",
                     "caption":""
                 }
@@ -113,7 +107,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/c9ehQ7vO7c0",
+                    "media":"https://youtu.be/c9ehQ7vO7c0",
                     "credit":"",
                     "caption":""
                 }
@@ -124,7 +118,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/eRQe-BT9g_U",
+                    "media":"https://youtu.be/eRQe-BT9g_U",
                     "credit":"",
                     "caption":""
                 }
@@ -135,7 +129,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/HRmc5uuoUzA",
+                    "media":"https://youtu.be/HRmc5uuoUzA",
                     "credit":"",
                     "caption":""
                 }
@@ -146,7 +140,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/rwozXzo0MZk",
+                    "media":"https://youtu.be/rwozXzo0MZk",
                     "credit":"",
                     "caption":""
                 }
@@ -157,7 +151,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/kbovd-e-hRg",
+                    "media":"https://youtu.be/kbovd-e-hRg",
                     "credit":"",
                     "caption":"Writers & Creators: Kyle Humphrey & Graydon Sheppard"
                 }
@@ -168,7 +162,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/bDHUhT71JN8",
+                    "media":"https://youtu.be/bDHUhT71JN8",
                     "credit":"",
                     "caption":"Writers & Creators: Kyle Humphrey & Graydon Sheppard"
                 }
@@ -179,7 +173,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/MEOb_meSHhQ",
+                    "media":"https://youtu.be/MEOb_meSHhQ",
                     "credit":"",
                     "caption":""
                 }
@@ -190,7 +184,7 @@ storyjs_jsonp_data = {
                 "text":"No meme is complete without a bit of hipster-bashing.",
                 "asset":
                 {
-                    "media":"http://youtu.be/FUhrSVyu0Kw",
+                    "media":"https://youtu.be/FUhrSVyu0Kw",
                     "credit":"",
                     "caption":"Written, Directed, Conceptualized and Performed by Carrie Valentine and Jessica Katz"
                 }
@@ -201,7 +195,7 @@ storyjs_jsonp_data = {
                 "text":"No meme is complete without cats. This had to happen, obviously.",
                 "asset":
                 {
-                    "media":"http://youtu.be/MUX58Vi-YLg",
+                    "media":"https://youtu.be/MUX58Vi-YLg",
                     "credit":"",
                     "caption":""
                 }
@@ -212,7 +206,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/GMCkuqL9IcM",
+                    "media":"https://youtu.be/GMCkuqL9IcM",
                     "credit":"",
                     "caption":"Video script, production, and editing by Allen Krughoff of Hardcastle Photography"
                 }
@@ -223,7 +217,7 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/IMC1_RH_b3k",
+                    "media":"https://youtu.be/IMC1_RH_b3k",
                     "credit":"",
                     "caption":""
                 }
@@ -238,11 +232,12 @@ storyjs_jsonp_data = {
                 "text":"",
                 "asset":
                 {
-                    "media":"http://youtu.be/yRvJylbSg7o",
+                    "media":"https://youtu.be/yRvJylbSg7o",
                     "credit":"",
                     "caption":"Directed and Edited by Matt Mayer, Produced by Seth Keim, Written by Eliot Glazer. Featuring Eliot and Ilana Glazer, who are siblings, not married."
                 }
             }
         ]
     }
-}
\ No newline at end of file
+}
+
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/timeline3.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/timeline3.json
new file mode 100644
index 0000000000000000000000000000000000000000..7b1a659cdad4a835cf1e3f92ebb33acaf2a73739
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/shit-people-say/timeline3.json
@@ -0,0 +1,336 @@
+{
+    "title": 
+      {
+        "media": {
+          "url": "https://youtu.be/u-yLGIH7W9Y", 
+          "caption": "Writers & Creators: Kyle Humphrey & Graydon Sheppard", 
+          "credit": ""
+        }, 
+        "text": {
+          "headline": "Sh*t People Say", 
+          "text": "When &quot;Shit Girls Say&quot; was uploaded to YouTube it was picked up by Reddit, the Huffington Post, Mashable etc. In a month, it racked up over 12 million views and has spawned a meme of Sh*t People Say."
+        }
+      }, 
+    "events": [ 
+      {
+        "media": {
+          "url": "https://youtu.be/u4XpeU9erbg", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "26", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Politicians Say", 
+          "text": "<p>Sh*t Politicians Say landed just hours before Thursday night\u2019s Republican presidential debate and stars actor Joe Leon. In true political fashion, his character rattles off common jargon heard from people running for office.</p><p>Do these ring a bell? Moral fiber, family values, trust me, three-point plan, earmarks, tough question, children are our future, Washington outsider, jobs, my opponent \u2014 all sound familiar.</p>"
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/f-x8t0JOnVw", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "10", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Nobody Says", 
+          "text": "<p>Have you ever heard someone say \u201ccan I burn a copy of your Nickelback CD?\u201d or \u201cmy Bazooka gum still has flavor!\u201d Nobody says that.</p>"
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/Ofy5gNkKGOo", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "26", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Chicagoans Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/zyyalkHjSjo", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "4", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Broke People Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/BR8zFANeBGQ", 
+          "caption": "written, filmed, and edited by Kate Imbach & Tom Conrad", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "4", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Silicon Valley Says", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/OmWFnd-p0Lw", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "12", 
+          "day": "25", 
+          "year": "2011"
+        }, 
+        "text": {
+          "headline": "Sh*t Vegans Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/KsT3QTmsN5Q", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "23", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Graphic Designers Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/vJpBCzzcSgA", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "12", 
+          "day": "30", 
+          "year": "2011"
+        }, 
+        "text": {
+          "headline": "Sh*t Wookiees Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/c9ehQ7vO7c0", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "17", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t People Say About Sh*t People Say Videos", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/eRQe-BT9g_U", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "20", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Social Media Pros Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/HRmc5uuoUzA", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "11", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Old People Say About Computers", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/rwozXzo0MZk", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "11", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t College Freshmen Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/kbovd-e-hRg", 
+          "caption": "Writers & Creators: Kyle Humphrey & Graydon Sheppard", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "12", 
+          "day": "16", 
+          "year": "2011"
+        }, 
+        "text": {
+          "headline": "Sh*t Girls Say - Episode 2", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/bDHUhT71JN8", 
+          "caption": "Writers & Creators: Kyle Humphrey & Graydon Sheppard", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "12", 
+          "day": "24", 
+          "year": "2011"
+        }, 
+        "text": {
+          "headline": "Sh*t Girls Say - Episode 3 Featuring Juliette Lewis", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/MEOb_meSHhQ", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "27", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Web Designers Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/FUhrSVyu0Kw", 
+          "caption": "Written, Directed, Conceptualized and Performed by Carrie Valentine and Jessica Katz", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "12", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Hipsters Say", 
+          "text": "No meme is complete without a bit of hipster-bashing."
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/MUX58Vi-YLg", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "6", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Cats Say", 
+          "text": "No meme is complete without cats. This had to happen, obviously."
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/GMCkuqL9IcM", 
+          "caption": "Video script, production, and editing by Allen Krughoff of Hardcastle Photography", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "21", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t Cyclists Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/IMC1_RH_b3k", 
+          "caption": "", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "12", 
+          "day": "30", 
+          "year": "2011"
+        }, 
+        "text": {
+          "headline": "Sh*t Yogis Say", 
+          "text": ""
+        }
+      }, 
+      {
+        "media": {
+          "url": "https://youtu.be/yRvJylbSg7o", 
+          "caption": "Directed and Edited by Matt Mayer, Produced by Seth Keim, Written by Eliot Glazer. Featuring Eliot and Ilana Glazer, who are siblings, not married.", 
+          "credit": ""
+        }, 
+        "start_date": {
+          "month": "1", 
+          "day": "18", 
+          "year": "2012"
+        }, 
+        "text": {
+          "headline": "Sh*t New Yorkers Say", 
+          "text": ""
+        }
+      }
+    ]
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/soundcite/index.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/soundcite/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..0c71d101fa1f65792278e61253dde6b2160e36ef
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/soundcite/index.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html lang="en"><!--
+
+  	88888888888 d8b                        888 d8b                888888   d8888b
+  	    888     Y8P                        888 Y8P                   88b d88P  Y88b
+  	    888                                888                       888 Y88b
+  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
+  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
+  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888
+  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P
+  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
+  	                                                                d88P
+  	                                                              d88P
+  	                                                            888P
+  	 -->
+  <head>
+    <title>Whitney Houston, 1963-2012</title>
+    <meta name="description" content="Houston’s voice caught the imagination of the world propelling her to superstardom at an early age becoming one of the most awarded performers of our time.">
+    <meta charset="utf-8">
+    <meta name="viewport" content="initial-scale=1,width=device-width">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <!-- Style-->
+    <style>
+      html, body {
+      height:100%;
+      padding: 0px;
+      margin: 0px;
+      }
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
+    <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+	<link rel="shortcut icon" href="https://cdn.knightlab.com/libs/blueline/latest/assets/logos/favicon.ico">
+  </head>
+  <body>
+      {% include "examples/_common_example_embed.html" %}
+      {% include "_analytics.html" %}
+      <link href='https://cdn.knightlab.com/libs/soundcite/latest/css/player.css' rel='stylesheet' type='text/css'>
+      <script type='text/javascript' src='https://cdn.knightlab.com/libs/soundcite/latest/js/soundcite.min.js'></script>
+
+  </body>
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/soundcite/timeline3.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/soundcite/timeline3.json
new file mode 100644
index 0000000000000000000000000000000000000000..b43761beba7a3507db7f11a7fc9a1427e737d640
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/soundcite/timeline3.json
@@ -0,0 +1,271 @@
+{
+    "title": {
+        "media": {
+          "url": "//www.flickr.com/photos/tm_10001/2310475988/",
+          "caption": "Whitney Houston performing on her My Love is Your Love Tour in Hamburg.",
+          "credit": "flickr/<a href='http://www.flickr.com/photos/tm_10001/'>tm_10001</a>"
+        },
+        "text": {
+          "headline": "Whitney Houston<br/> 1963 - 2012",
+          "text": "<p>Houston's voice caught the imagination of the world propelling her to superstardom at an early age becoming one of the most awarded performers of our time. This is a look into the amazing heights she achieved and her personal struggles with substance abuse and a tumultuous marriage.</p>"
+        }
+    },
+    "events": [
+      {
+        "media": {
+          "url": "{{ static_url }}/img/examples/houston/family.jpg",
+          "caption": "Houston's mother and Gospel singer, Cissy Houston (left) and cousin Dionne Warwick.",
+          "credit": "Cissy Houston photo:<a href='http://www.flickr.com/photos/11447043@N00/418180903/'>Tom Marcello</a><br/><a href='http://commons.wikimedia.org/wiki/File%3ADionne_Warwick_television_special_1969.JPG'>Dionne Warwick: CBS Television via Wikimedia Commons</a>"
+        },
+        "start_date": {
+          "month": "8",
+          "day": "9",
+          "year": "1963"
+        },
+        "text": {
+          "headline": "A Musical Heritage",
+          "text": "<p>Born in New Jersey on August 9th, 1963, Houston grew up surrounded by the music business. Her mother is gospel singer Cissy Houston and her cousins are Dee Dee and Dionne Warwick.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/fSrO91XO1Ck",
+          "caption": "",
+          "credit": "<a href=\"http://unidiscmusic.com\">Unidisc Music</a>"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "First Recording",
+          "text": "At the age of 15 Houston was featured on Michael Zager's song, Life's a Party."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/_gvJCCZzmro",
+          "caption": "A young poised Whitney Houston in an interview with EbonyJet.",
+          "credit": "EbonyJet"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "The Early Years",
+          "text": "As a teen Houston's credits include background vocals for Jermaine Jackson, Lou Rawls and the Neville Brothers. She also sang on Chaka Khan's, 'I'm Every Woman,' a song which she later remade for the <i>Bodyguard</i> soundtrack which is the biggest selling soundtrack of all time. It sold over 42 million copies worldwide."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/H7_sqdkaAfo",
+          "caption": "I'm Every Women as performed by Whitney Houston.",
+          "credit": "Arista Records"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "Early Album Credits",
+          "text": "As a teen Houston's credits include background vocals for Jermaine Jackson, Lou Rawls and the Neville Brothers. She also sang on Chaka Khan's, 'I'm Every Woman,' a song which she later remade for the <i>Bodyguard</i> soundtrack which is the biggest selling soundtrack of all time. It sold over 42 million copies worldwide."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/A4jGzNm2yPI",
+          "caption": "Whitney Houston and Clive Davis discussing her discovery and her eponymous first album.",
+          "credit": "Sony Music Entertainment"
+        },
+        "start_date": {
+          "year": "1983"
+        },
+        "text": {
+          "headline": "Signed",
+          "text": "Houston is signed to Arista Records after exec Clive Davis sees her performing on stage with her mother in New York."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/m3-hY-hlhBg",
+          "caption": "The 'How Will I Know' video showcases the youthful energy that boosted Houston to stardom.",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1985"
+        },
+        "text": {
+          "headline": "Debut",
+          "text": "Whitney Houston's self titled first release sold over 12 million copies in the U.S. and included the hit singles <span class='soundcite' data-url='https://upload.wikimedia.org/wikipedia/en/1/19/HowWillIKnow.ogg' data-start='15000' data-end='19000' data-plays='1'>How Will I Know?</span>, 'You Give Good Love,' 'Saving All My Love For You' and 'Greatest Love of All.'"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/v0XuiMX1XHg",
+          "caption": "Dionne Warwick gleefully announces cousin, Whitney Houston, the winner of the Best Female Pop Vocal Performance for the song Saving All My Love.",
+          "credit": "<a href='http://grammy.org'>The Recording Academy</a>"
+        },
+        "start_date": {
+          "year": "1986"
+        },
+        "text": {
+          "headline": "'The Grammys'",
+          "text": "In 1986 Houston won her first Grammy for the song Saving All My Love. In total she has won six Grammys, the last of which she won in 1999 for It's Not Right But It's Okay."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/eH3giaIzONA",
+          "caption": "I Wanna Dance With Somebody",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1987"
+        },
+        "text": {
+          "headline": "'Whitney'",
+          "text": "Multiplatinum second album sells more than 20 million copies worldwide. With 'Whitney', Houston became the first female artist to produce four number 1 singles on one album including \"I Wanna Dance With Somebody,' 'Didn't We Almost Have It All,' 'So Emotional' and 'Where Do Broken Hearts Go.'"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/96aAx0kxVSA",
+          "caption": "\"One Moment In Time\" - Theme song to the 1988 Seoul Olympics",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1988"
+        },
+        "text": {
+          "headline": "\"One Moment In Time\"",
+          "text": "The artist's fame continues to skyrocket as she records the theme song for the Seoul Olympics, 'One Moment In Time.'"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "1989"
+        },
+        "text": {
+          "headline": "Bobby Brown",
+          "text": "Houston and Brown first meet at the Soul Train Music Awards. In an interview with Rolling Stone Magazine, Houston admitted that it was not love at first sight. She turned down Brown's first marriage proposal but eventually fell in love with him."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/5Fa09teeaqs",
+          "caption": "CNN looks back at Houston's iconic performance of the national anthem at Superbowl XXV.",
+          "credit": "CNN"
+        },
+        "start_date": {
+          "year": "1991"
+        },
+        "text": {
+          "headline": "Super Bowl",
+          "text": "Houston's <span class='soundcite' data-url='https://upload.wikimedia.org/wikipedia/uk/c/cb/Whitney_Houston_-_USA_National_Anthem.ogg' data-start='0' data-end='16000' data-plays='1'>national anthem performance</span> captures the hearts and minds of Americans ralllying behind soldiers in the Persian Guf War."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/h9rCobRl-ng",
+          "caption": "\"Run To You\" from the 1992 \"Bodyguard\" soundtrack..",
+          "credit": "Arista Records"
+        },
+        "start_date": {
+          "year": "1992"
+        },
+        "text": {
+          "headline": "\"The Bodyguard\"",
+          "text": "Houston starred opposite Kevin Costner in the box office hit, The Bodyguard. The soundtrack to the movie sold over 44 million copies worldwide  garnering 3 Grammy's for the artist, including Record of the Year for <span class=\"soundcite\" data-url=\"https://upload.wikimedia.org/wikipedia/en/a/ac/I_Will_Always_Love_You_Whitney.ogg\" data-start=\"0\" data-end=\"11000\" data-plays=\"1\">I Will Always Love You</span>"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/5cDLZqe735k",
+          "caption": "Bobby Brown performing \"My Prerogrative,\" from his \"Don't be Cruel\" solo album. Bobby Brown first became famous with the R&B group, New Edition.",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "1992"
+        },
+        "text": {
+          "headline": "Married Life",
+          "text": "<p>After three years of courtship, Houston marries New Edition singer Bobby Brown. Their only child Bobbi Kristina Brown was born in 1993.</p><p>In 2003 Brown was charged with domestic violence after police responded to a domestic violence call. Houston and Brown were featured in the reality show, \"Being bobby Brown,\" and divorced in 2007.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/d/dd/ABC_-_Good_Morning_America_-_Diane_Sawyer.jpg",
+          "caption": "Diane Sawyer ",
+          "credit": "flickr/<a href='http://www.flickr.com/photos/23843757@N00/194521206/'>Amanda Benham</a>"
+        },
+        "start_date": {
+          "year": "2002"
+        },
+        "text": {
+          "headline": "Crack is Whack",
+          "text": "<p>Houston first publicly admitted to drug use in an interview with Diane Sawyer. The singer coined the term \"Crack is Whack,\" saying that she only used more expensive drugs.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/KLk6mt8FMR0",
+          "caption": "Addiction expert, Dr. Drew, talks about Whitney's death and her struggle with addiction.",
+          "credit": "CNN"
+        },
+        "start_date": {
+          "year": "2004"
+        },
+        "text": {
+          "headline": "Rehab",
+          "text": "<p>Houston entered rehab several times beginning in 2004. She declared herself drug free in an interview with Oprah Winfrey in 2009 but returned to rehab in 2011.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "2005"
+        },
+        "text": {
+          "headline": "Being Bobby Brown",
+          "text": "<p>Being Bobby Brown was a reality show starring Brown and wife Whitney Houston. Houston refused to sign for a second season. A clip of her telling Brown to \"Kiss my ass,\" became a running gag on The Soup.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "2010"
+        },
+        "text": {
+          "headline": "A Rocky Comeback",
+          "text": "<p>Houston's comeback tour is cut short due to a diminished voice damaged by years of smoking. She was reportedly devastated at her inability to perform like her old self.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/0/0f/Flickr_Whitney_Houston_performing_on_GMA_2009_4.jpg",
+          "caption": "Houston, performing on Good Morning America in 2009.",
+          "credit": "<a href='http://commons.wikimedia.org/wiki/File%3AFlickr_Whitney_Houston_performing_on_GMA_2009_4.jpg'>Asterio Tecson</a> via Wikimedia"
+        },
+        "start_date": {
+          "month": "2",
+          "day": "11",
+          "year": "2012"
+        },
+        "text": {
+          "headline": "Whitney Houston<br/> 1963-2012",
+          "text": "<p>Houston, 48, was discovered dead at the Beverly Hilton Hotel on  on Feb. 11, 2012. She is survived by her daughter, Bobbi Kristina Brown, and mother, Cissy Houston.</p>"
+        }
+      }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/timeline3.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/timeline3.json
new file mode 100644
index 0000000000000000000000000000000000000000..7b7ef5225dab26ced9ad0779e36b1cac8277fbf8
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/timeline3.json
@@ -0,0 +1,271 @@
+{
+    "title": {
+        "media": {
+          "url": "//www.flickr.com/photos/tm_10001/2310475988/",
+          "caption": "Whitney Houston performing on her My Love is Your Love Tour in Hamburg.",
+          "credit": "flickr/<a href='http://www.flickr.com/photos/tm_10001/'>tm_10001</a>"
+        },
+        "text": {
+          "headline": "Whitney Houston<br/> 1963 - 2012",
+          "text": "<p>Houston's voice caught the imagination of the world propelling her to superstardom at an early age becoming one of the most awarded performers of our time. This is a look into the amazing heights she achieved and her personal struggles with substance abuse and a tumultuous marriage.</p>"
+        }
+    },
+    "events": [
+      {
+        "media": {
+          "url": "{{ static_url }}/img/examples/houston/family.jpg",
+          "caption": "Houston's mother and Gospel singer, Cissy Houston (left) and cousin Dionne Warwick.",
+          "credit": "Cissy Houston photo:<a href='http://www.flickr.com/photos/11447043@N00/418180903/'>Tom Marcello</a><br/><a href='http://commons.wikimedia.org/wiki/File%3ADionne_Warwick_television_special_1969.JPG'>Dionne Warwick: CBS Television via Wikimedia Commons</a>"
+        },
+        "start_date": {
+          "month": "8",
+          "day": "9",
+          "year": "1963"
+        },
+        "text": {
+          "headline": "A Musical Heritage",
+          "text": "<p>Born in New Jersey on August 9th, 1963, Houston grew up surrounded by the music business. Her mother is gospel singer Cissy Houston and her cousins are Dee Dee and Dionne Warwick.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/fSrO91XO1Ck",
+          "caption": "",
+          "credit": "<a href=\"http://unidiscmusic.com\">Unidisc Music</a>"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "First Recording",
+          "text": "At the age of 15 Houston was featured on Michael Zager's song, Life's a Party."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/_gvJCCZzmro",
+          "caption": "A young poised Whitney Houston in an interview with EbonyJet.",
+          "credit": "EbonyJet"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "The Early Years",
+          "text": "As a teen Houston's credits include background vocals for Jermaine Jackson, Lou Rawls and the Neville Brothers. She also sang on Chaka Khan's, 'I'm Every Woman,' a song which she later remade for the <i>Bodyguard</i> soundtrack which is the biggest selling soundtrack of all time. It sold over 42 million copies worldwide."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/H7_sqdkaAfo",
+          "caption": "I'm Every Women as performed by Whitney Houston.",
+          "credit": "Arista Records"
+        },
+        "start_date": {
+          "year": "1978"
+        },
+        "text": {
+          "headline": "Early Album Credits",
+          "text": "As a teen Houston's credits include background vocals for Jermaine Jackson, Lou Rawls and the Neville Brothers. She also sang on Chaka Khan's, 'I'm Every Woman,' a song which she later remade for the <i>Bodyguard</i> soundtrack which is the biggest selling soundtrack of all time. It sold over 42 million copies worldwide."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/A4jGzNm2yPI",
+          "caption": "Whitney Houston and Clive Davis discussing her discovery and her eponymous first album.",
+          "credit": "Sony Music Entertainment"
+        },
+        "start_date": {
+          "year": "1983"
+        },
+        "text": {
+          "headline": "Signed",
+          "text": "Houston is signed to Arista Records after exec Clive Davis sees her performing on stage with her mother in New York."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/m3-hY-hlhBg",
+          "caption": "The 'How Will I Know' video showcases the youthful energy that boosted Houston to stardom.",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1985"
+        },
+        "text": {
+          "headline": "Debut",
+          "text": "Whitney Houston's self titled first release sold over 12 million copies in the U.S. and included the hit singles 'How Will I Know,' 'You Give Good Love,' 'Saving All My Love For You' and 'Greatest Love of All.'"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/v0XuiMX1XHg",
+          "caption": "Dionne Warwick gleefully announces cousin, Whitney Houston, the winner of the Best Female Pop Vocal Performance for the song Saving All My Love.",
+          "credit": "<a href='http://grammy.org'>The Recording Academy</a>"
+        },
+        "start_date": {
+          "year": "1986"
+        },
+        "text": {
+          "headline": "'The Grammys'",
+          "text": "In 1986 Houston won her first Grammy for the song Saving All My Love. In total she has won six Grammys, the last of which she won in 1999 for It's Not Right But It's Okay."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/eH3giaIzONA",
+          "caption": "I Wanna Dance With Somebody",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1987"
+        },
+        "text": {
+          "headline": "'Whitney'",
+          "text": "Multiplatinum second album sells more than 20 million copies worldwide. With 'Whitney', Houston became the first female artist to produce four number 1 singles on one album including \"I Wanna Dance With Somebody,' 'Didn't We Almost Have It All,' 'So Emotional' and 'Where Do Broken Hearts Go.'"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/96aAx0kxVSA",
+          "caption": "\"One Moment In Time\" - Theme song to the 1988 Seoul Olympics",
+          "credit": "Arista Records Inc."
+        },
+        "start_date": {
+          "year": "1988"
+        },
+        "text": {
+          "headline": "\"One Moment In Time\"",
+          "text": "The artist's fame continues to skyrocket as she records the theme song for the Seoul Olympics, 'One Moment In Time.'"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "1989"
+        },
+        "text": {
+          "headline": "Bobby Brown",
+          "text": "Houston and Brown first meet at the Soul Train Music Awards. In an interview with Rolling Stone Magazine, Houston admitted that it was not love at first sight. She turned down Brown's first marriage proposal but eventually fell in love with him."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/5Fa09teeaqs",
+          "caption": "CNN looks back at Houston's iconic performance of the national anthem at Superbowl XXV.",
+          "credit": "CNN"
+        },
+        "start_date": {
+          "year": "1991"
+        },
+        "text": {
+          "headline": "Super Bowl",
+          "text": "Houston's national anthem performance captures the hearts and minds of Americans ralllying behind soldiers in the Persian Guf War."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/h9rCobRl-ng",
+          "caption": "\"Run To You\" from the 1992 \"Bodyguard\" soundtrack..",
+          "credit": "Arista Records"
+        },
+        "start_date": {
+          "year": "1992"
+        },
+        "text": {
+          "headline": "\"The Bodyguard\"",
+          "text": "Houston starred opposite Kevin Costner in the box office hit, The Bodyguard. The soundtrack to the movie sold over 44 million copies worldwide  garnering 3 Grammy's for the artist."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/5cDLZqe735k",
+          "caption": "Bobby Brown performing \"My Prerogrative,\" from his \"Don't be Cruel\" solo album. Bobby Brown first became famous with the R&B group, New Edition.",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "1992"
+        },
+        "text": {
+          "headline": "Married Life",
+          "text": "<p>After three years of courtship, Houston marries New Edition singer Bobby Brown. Their only child Bobbi Kristina Brown was born in 1993.</p><p>In 2003 Brown was charged with domestic violence after police responded to a domestic violence call. Houston and Brown were featured in the reality show, \"Being bobby Brown,\" and divorced in 2007.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/d/dd/ABC_-_Good_Morning_America_-_Diane_Sawyer.jpg",
+          "caption": "Diane Sawyer ",
+          "credit": "flickr/<a href='http://www.flickr.com/photos/23843757@N00/194521206/'>Amanda Benham</a>"
+        },
+        "start_date": {
+          "year": "2002"
+        },
+        "text": {
+          "headline": "Crack is Whack",
+          "text": "<p>Houston first publicly admitted to drug use in an interview with Diane Sawyer. The singer coined the term \"Crack is Whack,\" saying that she only used more expensive drugs.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/KLk6mt8FMR0",
+          "caption": "Addiction expert, Dr. Drew, talks about Whitney's death and her struggle with addiction.",
+          "credit": "CNN"
+        },
+        "start_date": {
+          "year": "2004"
+        },
+        "text": {
+          "headline": "Rehab",
+          "text": "<p>Houston entered rehab several times beginning in 2004. She declared herself drug free in an interview with Oprah Winfrey in 2009 but returned to rehab in 2011.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "2005"
+        },
+        "text": {
+          "headline": "Being Bobby Brown",
+          "text": "<p>Being Bobby Brown was a reality show starring Brown and wife Whitney Houston. Houston refused to sign for a second season. A clip of her telling Brown to \"Kiss my ass,\" became a running gag on The Soup.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "2010"
+        },
+        "text": {
+          "headline": "A Rocky Comeback",
+          "text": "<p>Houston's comeback tour is cut short due to a diminished voice damaged by years of smoking. She was reportedly devastated at her inability to perform like her old self.</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/0/0f/Flickr_Whitney_Houston_performing_on_GMA_2009_4.jpg",
+          "caption": "Houston, performing on Good Morning America in 2009.",
+          "credit": "<a href='http://commons.wikimedia.org/wiki/File%3AFlickr_Whitney_Houston_performing_on_GMA_2009_4.jpg'>Asterio Tecson</a> via Wikimedia"
+        },
+        "start_date": {
+          "month": "2",
+          "day": "11",
+          "year": "2012"
+        },
+        "text": {
+          "headline": "Whitney Houston<br/> 1963-2012",
+          "text": "<p>Houston, 48, was discovered dead at the Beverly Hilton Hotel on  on Feb. 11, 2012. She is survived by her daughter, Bobbi Kristina Brown, and mother, Cissy Houston.</p>"
+        }
+      }
+    ]
+}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/twain/index.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/twain/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..4bde81224abd4b32d9722b33f82541a443c2efab
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/twain/index.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+<html lang="en"><!--
+  	 
+  	88888888888 d8b                        888 d8b                888888   d8888b  
+  	    888     Y8P                        888 Y8P                   88b d88P  Y88b 
+  	    888                                888                       888 Y88b
+  	    888     888 88888b d88b     d88b   888 888 88888b     d88b   888   Y888b
+  	    888     888 888  888  88b d8P  Y8b 888 888 888  88b d8P  Y8b 888      Y88b
+  	    888     888 888  888  888 88888888 888 888 888  888 88888888 888        888 
+  	    888     888 888  888  888 Y8b      888 888 888  888 Y8b      88P Y88b  d88P 
+  	    888     888 888  888  888   Y8888  888 888 888  888   Y8888  888   Y8888P
+  	                                                                d88P            
+  	                                                              d88P             
+  	                                                            888P              
+  	 -->
+  <head>
+    <title>Mark Twain</title>
+    <meta charset="utf-8">
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="apple-touch-fullscreen" content="yes">
+    <!-- Style-->
+    <style>
+      html, body {
+      height:100%;
+      padding: 0px;
+      margin: 0px;
+      }
+    </style>
+    <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
+    <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+	<link rel="stylesheet" type="text/css" href="{{ static_url }}/css/site.css">
+	<link rel="stylesheet" href="https://cdn.knightlab.com/libs/blueline/latest/css/blueline.min.css">
+  </head>
+  <body>
+  <!-- Demo -->
+  <section id="demo">
+    <div id="timeline-embed" style="height: 100%;">
+      <div id="timeline"></div>
+    </div>
+  </section>
+
+  <!-- build:css //cdn.knightlab.com/libs/timeline3/%(cdn)s/css/timeline.css -->
+  <link title="timeline-styles" rel="stylesheet" href="/build/css/timeline.css">
+  <!-- endbuild -->
+  <!-- build:js //cdn.knightlab.com/libs/timeline3/%(cdn)s/js/timeline-min.js -->
+  <script src="/build/js/timeline.js"></script>
+  <!-- endbuild -->
+  <script>
+    $(document).ready(function(){
+      function createNewTimeline(){
+        $("#timeline-embed").empty();
+        $("link[title=timeline-styles]").attr({href: "/build/css/timeline.css"});
+          window.timeline = new TL.Timeline('timeline-embed', '/examples/twain/marktwain.json', {});
+
+          if ($("#timeline-embed").height() == 0) {
+            setTimeout(function(){
+                console.log("trying again. height: " + $(document).height())
+                $("#timeline-embed").height($(document).height() - $(".nav-tabs").height()- 100);
+                window.timeline.updateDisplay();
+            },500);
+          }
+      }
+
+      $("#timeline-embed").height($(document).height() - $(".nav-tabs").height() - 100);
+
+      /* New timeline styles used when page loads */
+      createNewTimeline();
+    });
+  </script>
+
+
+
+
+    {% include "_analytics.html" %}
+
+  </body>
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/twain/marktwain.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/twain/marktwain.json
new file mode 100644
index 0000000000000000000000000000000000000000..062d3775db0e36bc56a157ab53dd68e026bb7550
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/twain/marktwain.json
@@ -0,0 +1,502 @@
+{
+    "title": {
+            "text": {
+                "text":     "Samuel Langhorne Clemens (November 30, 1835 – April 21, 1910),[1] better known by his pen name Mark Twain, was an American author and humorist."
+            },
+            "media": {
+                "url": "https://en.wikipedia.org/wiki/Mark_Twain",
+                "thumbnail":    "https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Mark_Twain%2C_Brady-Handy_photo_portrait%2C_Feb_7%2C_1871%2C_cropped.jpg/153px-Mark_Twain%2C_Brady-Handy_photo_portrait%2C_Feb_7%2C_1871%2C_cropped.jpg"
+            }
+    },
+    "events": [
+        {
+            "start_date": {
+                "year":			"1908",
+                "month":		"05",
+                "day": 			"13"
+            },
+            "media": {
+                "caption": "Twain caricatured by Spy for Vanity Fair, 1908",
+                "credit": "Vanity Fair",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg",
+                "thumbnail": 	"http://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Mark_Twain_Vanity_Fair_1908-05-13.jpeg/375px-Mark_Twain_Vanity_Fair_1908-05-13.jpeg"
+            },
+            "text": {
+                "text": "Samuel Langhorne Clemens (November 30, 1835 \u2013 April 21, 1910), better known by his pen name Mark Twain, was an American author and humorist. He wrote The Adventures of Tom Sawyer (1876) and its sequel, Adventures of Huckleberry Finn (1885), the later often called \"the Great American Novel.\""
+            },
+            "type": "overview"
+        },
+        {
+            "start_date": {
+                "year":			"2000",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.491711,
+                "line": true,
+                "lon": -91.79326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's birthplace, Florida, Missouri",
+                "credit": "",
+                "url": "https://twitter.com/MarkTwainQuote/status/441928360583643136"
+            },
+            "text": {
+                "headline": "Florida, Missouri",
+                "text": "Born in Florida, Missouri. Halley\u2019s comet visible from earth."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1920",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "end_date": {
+                "year":			"1923",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.501711,
+                "line": true,
+                "lon": -91.94326,
+                "name": "Florida, Missouri",
+                "zoom": 12
+            },
+            "media": {
+                "caption": "Mark Twain's boyhood home in Hannibal, Missouri.",
+                "credit": "",
+                "url": "http://instagram.com/p/lEPdm4J20m/"
+            },
+            "text": {
+                "headline": "Hannibal, Missouri",
+                "text": "Moves to Hannibal, Missouri, which later serves as the model town for Tom Sawyer and Huckleberry Finn."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.710083,
+                "line": true,
+                "lon": -91.357441,
+                "zoom": 12
+            },
+            "media": {
+                "caption": "a Youtube video",
+                "credit": null,
+                "url": "http://www.youtube.com/watch?v=C-nTpGMMVjY"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "caption": "a tweet",
+                "credit": null,
+                "url": "https://twitter.com/mattmansfield/status/613042417298731008"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "06",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "caption": "another youtube video",
+                "credit": null,
+                "url": "http://www.youtube.com/watch?v=C-nTpGMMVjY"
+            },
+            "text": {
+                "headline": "",
+                "text": ""
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1915",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 40.714353,
+                "line": true,
+                "lon": -74.005973,
+                "zoom": 11
+            },
+            "media": {
+                "caption": null,
+                "credit": null,
+                "url": "https://vine.co/v/bjHh0zHdgZT"
+            },
+            "text": {
+                "headline": "Itinerant Printer",
+                "text": "Visits St. Louis, New York, and Philadelphia as an itinerant printer."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "20",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 39.309514,
+                "line": true,
+                "lon": -119.649979,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "Mark Twain's desk when he was editor of the Territorial Enterprise. Mark Twain Territorial Enterprise Museum, Virginia City, NV.",
+                "credit": "",
+                "url": "http://en.wikipedia.org/wiki/Mark_Twain"
+            },
+            "text": {
+                "headline": "Virginia City Territorial Enterprise",
+                "text": "Travels around Nevada and California. Takes job as reporter for the Virginia City Territorial Enterprise."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1960",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 37.774929,
+                "line": true,
+                "lon": -122.419416,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "San Francisco",
+                "text": "Forced to leave Nevada for breaking dueling laws. Prospects in Calaveras County, settles in San Francisco. Writes for magazines and newspapers."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1963",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 19.896766,
+                "line": true,
+                "lon": -155.582782,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "Wreck of USS Hornet.",
+                "credit": "",
+                "url": "http://photos.wikimapia.org/p/00/00/56/17/28_big.jpg"
+            },
+            "text": {
+                "headline": "Hawaii",
+                "text": "Takes trip to Hawaii as correspondent of the Sacramento Alta Californian. Reports on shipwreck of the Hornet. Gives first public lecture."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":			"1930",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 54.525961,
+                "line": true,
+                "lon": 15.255119,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "",
+                "credit": "",
+                "url": "http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu/page1-395px-1867._The_Celebrated_Jumping_Frog_of_Calaveras_County%2C_and_Other_Sketches.djvu.jpg"
+            },
+            "text": {
+                "headline": "Travels",
+                "text": "Travels as correspondent to Europe and the Holy Land on the Quaker City. Sees a picture of Olivia Langdon (Livy). Publishes The Celebrated Jumping Frog of Calaveras County, and Other Sketches. Sales are light."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1935",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 42.089796,
+                "line": true,
+                "lon": -76.807734,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Livy",
+                "text": "Lectures across the United States. Meets and falls in love with Livy in Elmira, New York."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1959",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 42.886447,
+                "lon": -78.878369,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Married",
+                "text": "Marries Livy in Elmira. Her father buys them a house in Buffalo, New York. Son Langdon is born."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1990",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 41.763711,
+                "line": true,
+                "lon": -72.685093,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Roughing It",
+                "text": "Moves with Livy to Hartford. Publishes Roughing It. Daughter is born. Son Langdon dies."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": "#000000",
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"1991",
+                "month":		"01",
+                "day": 			"05",
+                "hour": 		"6",
+                "minute": 		"45",
+                "second": 		"56",
+                "millisecond": 	"",
+                "format": 		""
+            },
+            "location": {
+                "icon": "http://maps.gstatic.com/intl/en_us/mapfiles/ms/micons/blue-pushpin.png",
+                "lat": 54.525961,
+                "lon": 15.255119,
+                "zoom": 11
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg"
+            },
+            "text": {
+                "headline": "Financial",
+                "text": "Leaves Hartford to live in Europe because of financial difficulties."
+            },
+            "unique_id": ""
+        },
+        {
+            "start_date": {
+                "year":         "1900",
+                "month":        "01",
+                "day":          "10",
+                "hour":         "6",
+                "minute":       "45",
+                "second":       "56",
+                "millisecond":  "",
+                "format":       ""
+            },
+            "media": {
+                "caption": "something",
+                "credit": "ETC",
+                "url": "https://www.google.com/maps/place/Medill+School+of+Journalism,+Media,+Integrated+Marketing+Communications+Office+of+Dean/@42.0509363,-87.6737809,18z/data=!4m2!3m1!1s0x0000000000000000:0x683bff755fbf8f0c"
+            },
+            "text": {
+                "headline": "Livy dies",
+                "text": "Livy dies. Begins dictating autobiography. Moves to New York City."
+            },
+            "unique_id": ""
+        },
+        {
+            "background": {
+                "color": null,
+                "opacity": 50,
+                "url": null
+            },
+            "start_date": {
+                "year":			"2014",
+                "month":		"",
+                "day": 			"",
+                "hour": 		"",
+                "minute": 		"",
+                "second": 		"",
+                "millisecond": 	"",
+                "thumbnail": 	"",
+                "format": 		""
+            },
+            "text": {
+                "headline": "Get started!",
+                "text": ""
+            },
+            "unique_id": ""
+        }
+    ]
+}
diff --git a/public/opac/TimelineJS-2.25/examples/example_jsonp.html b/public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/index.html
similarity index 63%
rename from public/opac/TimelineJS-2.25/examples/example_jsonp.html
rename to public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/index.html
index 0e29f710f2bdb7e37247cf8cbdd631cf12370f6e..904ddbf4036cd9b77e2e4d372ad1a114a63f8019 100644
--- a/public/opac/TimelineJS-2.25/examples/example_jsonp.html
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/index.html
@@ -14,34 +14,27 @@
   	                                                            888P              
   	 -->
   <head>
-    <title>Timeline JS Example</title>
+    <title>Revolutionary User Interfaces</title>
+    <meta name="description" content="The human computer interface helps to define computing at any one time.">
     <meta charset="utf-8">
-    <meta name="description" content="TimelineJS example">
+    <meta name="viewport" content="initial-scale=1,width=device-width">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-touch-fullscreen" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
     <!-- Style-->
     <style>
       html, body {
-       height:100%;
-       padding: 0px;
-       margin: 0px;
+      height:100%;
+      padding: 0px;
+      margin: 0px;
       }
     </style>
     <!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+    <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+	<link rel="shortcut icon" href="https://cdn.knightlab.com/libs/blueline/latest/assets/logos/favicon.ico"> 
+
   </head>
   <body>
-      <!-- BEGIN Timeline Embed -->
-      <div id="timeline-embed"></div>
-      <script type="text/javascript">
-        var timeline_config = {
-         width: "100%",
-         height: "100%",
-         source: 'example_jsonp.jsonp'
-        }
-      </script>
-      <script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
-      <!-- END Timeline Embed-->
+       {% include "examples/_common_example_embed.html" %}
+      {% include "_analytics.html" %}
   </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/timeline2.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/timeline2.json
new file mode 100644
index 0000000000000000000000000000000000000000..ad4a94a1223a74adfdbdc5ac7b44881ff1475564
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/timeline2.json
@@ -0,0 +1,260 @@
+
+{
+    "timeline":
+  	{
+        "headline":"Revolutionary User Interfaces",
+		"startDate":"1600",
+        "text":"<p>The human computer interface helps to define computing at any one time. As computers have become more mainstream the interfaces have become more intimate. This is the journey of computer technology and how it has come to touch all of our lives.</p>",
+        "type":"default",
+		"asset":
+        {
+            "media":"{{ static_url }}/img/examples/user-interface/input.png",
+            "credit":"Arjuna Soriano",
+            "caption":"From punch cards to multi touch."
+    },
+		"date": [
+            {
+                "startDate":"1600",
+                "headline":"The Antikythera",
+                "text":"In the year 1900, sponge divers discovered the Antikythera Mechanism, a remarkable mechanical computer used to track the cycles of the solar system dated to as early as 89 B.C. There was no input however. All computations were carried out by the intricate system of clockwork like plates and wheels..",
+                "asset":
+                {
+                    "media":"https://youtu.be/DiQSHiAYt98",
+                    "credit":"<a href=\"http://www.nature.com/nature/videoarchive/index.html\">Nature Video Channel</a>",
+                    "caption":""
+                }
+            },
+     		{
+                "startDate":"1642",
+                "headline":"Pascal's Calculator",
+                "text":"<p>Blaise Pascal invented this calculator to help his father reorganize the French tax system. It could add and subtract in one step and multiply and divide by repetition.</p><p>Input was achieved by spinning the little wheels: inspiration for the iPod click wheel?</p>",
+                "asset":
+                {
+                    "media":"{{ static_url }}/img/examples/user-interface/pascaline.jpg",
+                    "credit":"© 2005 <a href=\"http://commons.wikimedia.org/wiki/User:David.Monniaux\">David Monniaux</a>  ",
+                    "caption":"This piece is on display at Musée des Arts et Métiers, Paris."
+                }
+            },
+     		{
+                "startDate":"1820",
+                "headline":"Thomas Arithometer",
+                "text":"This is the first mass-produced calculator that could add, subtract, multiply and divide. Numbers were  input with all of the little knobs and dials and then the handle was twisted to perform the calculation.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/5/59/Arithmometre.jpg",
+                    "credit":"By <a href=\"http://commons.wikimedia.org/wiki/File%3AArithmometre.jpg\">Ezrdr</a>, via Wikimedia Commons",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"1801",
+                "headline":"Jacquard Loom",
+                "text":"A loom is not a computer. It is the first machine however to use punch-cards as a means of input into a machine. By changing the arrangement of the holes in the card, the loom would weave different patterns. ",
+                "asset":
+                {
+                    "media":"https://youtu.be/2ypE4ZJF7qY",
+                    "credit":"<a href='http://www.youtube.com/user/FiberMusings'>FiberMusings</a>",
+                    "caption":"The Jacquard loom is still in use today in modern factories. The punch-cards can be clearly seen being pulled to the top of the loom."
+                }
+            },
+            {
+                "startDate":"1833",
+                "headline":"The Analytical Engine",
+                "text":"Charles Babbage designed but was never able to produce a working model but it is significant in that it relied upon punched cards for data and programs and would employ a language similar to modern assembly language complete with loops and conditional branching (for the nerds out there).",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/a/a4/Analytical_Engine_%282290032530%29.jpg",
+                    "credit":"By <a href='http://commons.wikimedia.org/wiki/File%3AAnalytical_Engine_(2290032530).jpg'>Marcin Wichary</a> via Wikimedia Commons",
+                    "caption":"This modern model of the Analytical Engine is housed at the Science Museum in London."
+                }
+            },
+            {
+                "startDate":"1868",
+                "headline":"The Typewriter",
+                "text":"Again, not a computer but an important step forward in user interfaces. Invented by Christopher Sholes, An American engineer, the typewriter was layed out in the familiar QWERTY style.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/9/9a/Sholes_typewriter.jpg",
+                    "credit":"By George Iles, via Wikimedia Commons",
+                    "caption":"A prototype of the typewriter with the QWERTY layout clearly visible."
+                }
+            },
+            {
+                "startDate":"1890",
+                "headline":"Herman Hollerith",
+                "text":"In 1890, Hollerith introduced his tabulating machine to be used in the census. He also later invented a key punch, a machine that punched the holes into cards operated by a keyboard. His company was one of the companies that later merged to form IBM.",
+                "asset":
+                {
+                    "media":"https://youtu.be/UZVEp78b0XI?t=1m54s",
+                    "credit":"<a href=\"http://www.youtube.com/user/clipcafe\">clipcafe</a>",
+                    "caption":"A history of early IBM punch card machines and featuring a Pascal calculator."
+                }
+            },
+            {
+                "startDate":"1940",
+                "headline":"Remote Access Computing",
+                "text":"George Stibitz demonstrated the Complex Number Calculator (CNC) at Dartmouth College. The astonishing part was that the CNC was in New York City.",
+                "asset":
+                {
+                    "media":"",
+                    "credit":"",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"1946",
+                "headline":"ENIAC",
+                "text":"Weighing 30 tons, and containing over 18,000 vacuum tubes, the ENIAC was the first truly modern computer. It could be programmed for many complex programs and used an early keyboard as its input.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/1/16/Classic_shot_of_the_ENIAC.jpg",
+                    "credit":"U.S. Army photo",
+                    "caption":"\"Cpl. Irwin Goldstein (foreground) sets the switches on one of the ENIAC's function tables at the Moore School of Electrical Engineering.\" (Caption via Wikimedia)"
+                }
+            },
+            {
+                "startDate":"1951",
+                "headline":"UNIVAC I",
+                "text":"The Universal Automatic Computer I weighed in at 13 tons and sold for over one million dollars. It was the first mass produced computer, selling 46 units. The massive cockpit of a console featured a keyboard",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/5/55/Museum_of_Science%2C_Boston%2C_MA_-_IMG_3163.JPG",
+                    "credit":"By Daderot (Own work) [Public domain], via Wikimedia Commons",
+                    "caption":"Input for the UNIVAC I was via keyboard in this massive input console."
+                }
+            },
+            {
+                "startDate":"1964",
+                "headline":"Multics",
+                "text":"A collaboration between MIT, Bell Laboratories and General Electric created the Multics system. It was a multi-user, time sharing system that spurred along the use of a new interface, a monitor.",
+                "asset":
+                {
+                    "media":"",
+                    "credit":"",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"1968",
+                "headline":"Minicomputer",
+                "text":"Data General introduces the Nova Minicomputer which served as an inspiration for Steve Wozniak's design of the Apple I.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/7/7f/Data_General_Nova_SN_1.agr.JPG",
+                    "credit":"By Arnold Reinhold, via Wikimedia Commons",
+                    "caption":"The first Data General Nova minicomputer displayed at the Computer History Museum in Silicon Valley."
+                }
+            },
+            {
+                "startDate":"1968,12,9",
+                "headline":"The Mouse",
+                "text":"Douglas C. Engelbart and his team demonstrated an online system featuring a mouse, hypertext and the first graphical user interface, a \"windows\" system. The mouse was encased in a wood body and had only one button.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/f/f0/SRI_Douglas_Engelbart_2008.jpg",
+                    "credit":"By SRI International, via Wikimedia Commons",
+                    "caption":"Douglas Engelbart with the first computer mouse prototype."
+                }
+            },
+            {
+                "startDate":"1974",
+                "headline":"Xerox Alto",
+                "text":"The Xerox Alto was the first workstation with a built in mouse with three buttons.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/5/5e/Xerox_Alto_mit_Rechner.JPG",
+                    "credit":"By Joho345, via Wikimedia Commons",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"1976",
+                "headline":"Apple I",
+                "text":"Steve Wozniak designed the Apple I, a single-board computer that he and Steve Jobs sold for $500 each. Thus began Apple Inc. and the Personal Computer.",
+                "asset":
+                {
+                    "media":"//www.flickr.com/photos/euthman/281712899/",
+                    "credit":"<a href='http://www.flickr.com/photos/euthman/281712899/'>Ed Uthman</a> via Flickr",
+                    "caption":"An Apple I computer on display at the Smithsonian."
+                }
+            },
+            {
+                "startDate":"1976",
+                "headline":"The Osborne I",
+                "text":"Weighing 24 pounds and costing under $2,000, the Osborne I was the first portable computer, although you probably couldn't use it in your lap for too long.",
+                "asset":
+                {
+                    "media":"//www.flickr.com/photos/mightyohm/5333827381/",
+                    "credit":"<a href='http://www.flickr.com/photos/mightyohm/5333827381/'>Jeff Keyzer</a> via Flickr",
+                    "caption":"An Apple I computer on display at the Smithsonian."
+                }
+            },
+            {
+                "startDate":"1982",
+                "headline":"Windows 1.0",
+                "text":"Microsoft unveils what will become the dominant operating system for the next several decades.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/a/a9/Microsoft_Windows_1.0_page1.jpg",
+                    "credit":"By Microsoft, via Wikimedia Commons",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"1984",
+                "headline":"The Macintosh",
+                "text":"Apple introduced the Macintosh which was the first commercially successful computer with a mouse and a Graphical User Interface. Apple's Think Different Superbowl commercial also plays this year.",
+                "asset":
+                {
+                    "media":"//www.flickr.com/photos/mwichary/2179402603/",
+                    "credit":"<a href='http://www.flickr.com/photos/mwichary/2179402603/'>Marcin Wichary</a> via Flickr",
+                    "caption":"The Original Macintosh with extra external floppy drive."
+                }
+            },
+            {
+                "startDate":"1997",
+                "headline":"The Stylus",
+                "text":"Personal digital assistants introduce the touch screen with the use of a stylus. Handwriting recognition was hit or miss but some companies developed simplified alphabet input strokes to improve recognition.",
+                "asset":
+                {
+                    "media":"{{ static_url }}/img/examples/user-interface/palm.png",
+                    "credit":"<a href='http://en.wikipedia.org/wiki/File:Palmpilot5000_eu.png'>Channel R</a> via Wikimedia Commons",
+                    "caption":"A Palm Pilot."
+                }
+            },
+            {
+                "startDate":"2001,10,23",
+                "headline":"Continuous Scrolling",
+                "text":"The first iPod introduces the wheel as a user interface. It allowed users to continuously scroll through thousands of songs seamlessly. This interface helped Apple dominate the music player business and eventually the music content business through its iTunes ecosystem.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/3/35/Ipod_1G.png",
+                    "credit":"By Rjcflyer@aol.com at en.wikipedia via Wikimedia Commons",
+                    "caption":"The Original iPod with click wheel user interface."
+                }
+            },
+            {
+                "startDate":"2007",
+                "headline":"Multi Touch",
+                "text":"Steve Jobs unveils the iPhone and the multi touch interface.",
+                "asset":
+                {
+                    "media":"//upload.wikimedia.org/wikipedia/commons/4/49/IPhone_at_Macworld_%28angled_view%29.jpg",
+                    "credit":"By blakeburris, via <a href='http://commons.wikimedia.org/wiki/File:IPhone_at_Macworld_(angled_view).jpg'>Wikimedia Commons</a>",
+                    "caption":""
+                }
+            },
+            {
+                "startDate":"2012",
+                "headline":"Speech Recognition",
+                "text":"<p>Speech recognition has been tested and improved upon for years in military cockpits in the U.S. France and U.K. In fact, Siri, the speech recognition engine used in the iPhone 4S was developed first by DARPA, the Defense Advanced Research Projects Agency.</p>",
+                "asset":
+                {
+                    "media":"{{ static_url }}/img/examples/user-interface/4s.jpg",
+                    "credit":"Apple Inc.",
+                    "caption":""
+                }
+            }
+        ]
+    }
+}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/timeline3.json b/public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/timeline3.json
new file mode 100644
index 0000000000000000000000000000000000000000..24aad0a4baac6831e95183a450793085ed42125f
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/examples/user-interface/timeline3.json
@@ -0,0 +1,327 @@
+{
+    "title": {
+        "media": {
+          "url": "{{ static_url }}/img/examples/user-interface/input.png",
+          "caption": "From punch cards to multi touch.",
+          "credit": "Arjuna Soriano"
+        },
+        "text": {
+          "headline": "Revolutionary User Interfaces",
+          "text": "<p>The human computer interface helps to define computing at any one time. As computers have become more mainstream the interfaces have become more intimate. This is the journey of computer technology and how it has come to touch all of our lives.</p>"
+        }
+    },
+    "events": [
+      {
+        "media": {
+          "url": "https://youtu.be/DiQSHiAYt98",
+          "caption": "",
+          "credit": "<a href=\"http://www.nature.com/nature/videoarchive/index.html\">Nature Video Channel</a>"
+        },
+        "start_date": {
+          "year": "1600"
+        },
+        "text": {
+          "headline": "The Antikythera",
+          "text": "In the year 1900, sponge divers discovered the Antikythera Mechanism, a remarkable mechanical computer used to track the cycles of the solar system dated to as early as 89 B.C. There was no input however. All computations were carried out by the intricate system of clockwork like plates and wheels.."
+        }
+      },
+      {
+        "media": {
+          "url": "{{ static_url }}/img/examples/user-interface/pascaline.jpg",
+          "caption": "This piece is on display at Mus\u00e9e des Arts et M\u00e9tiers, Paris.",
+          "credit": "\u00a9 2005 <a href=\"http://commons.wikimedia.org/wiki/User:David.Monniaux\">David Monniaux</a>  "
+        },
+        "start_date": {
+          "year": "1642"
+        },
+        "text": {
+          "headline": "Pascal's Calculator",
+          "text": "<p>Blaise Pascal invented this calculator to help his father reorganize the French tax system. It could add and subtract in one step and multiply and divide by repetition.</p><p>Input was achieved by spinning the little wheels: inspiration for the iPod click wheel?</p>"
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/5/59/Arithmometre.jpg",
+          "caption": "",
+          "credit": "By <a href=\"http://commons.wikimedia.org/wiki/File%3AArithmometre.jpg\">Ezrdr</a>, via Wikimedia Commons"
+        },
+        "start_date": {
+          "year": "1820"
+        },
+        "text": {
+          "headline": "Thomas Arithometer",
+          "text": "This is the first mass-produced calculator that could add, subtract, multiply and divide. Numbers were  input with all of the little knobs and dials and then the handle was twisted to perform the calculation."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/2ypE4ZJF7qY",
+          "caption": "The Jacquard loom is still in use today in modern factories. The punch-cards can be clearly seen being pulled to the top of the loom.",
+          "credit": "<a href='http://www.youtube.com/user/FiberMusings'>FiberMusings</a>"
+        },
+        "start_date": {
+          "year": "1801"
+        },
+        "text": {
+          "headline": "Jacquard Loom",
+          "text": "A loom is not a computer. It is the first machine however to use punch-cards as a means of input into a machine. By changing the arrangement of the holes in the card, the loom would weave different patterns. "
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/a/a4/Analytical_Engine_%282290032530%29.jpg",
+          "caption": "This modern model of the Analytical Engine is housed at the Science Museum in London.",
+          "credit": "By <a href='http://commons.wikimedia.org/wiki/File%3AAnalytical_Engine_(2290032530).jpg'>Marcin Wichary</a> via Wikimedia Commons"
+        },
+        "start_date": {
+          "year": "1833"
+        },
+        "text": {
+          "headline": "The Analytical Engine",
+          "text": "Charles Babbage designed but was never able to produce a working model but it is significant in that it relied upon punched cards for data and programs and would employ a language similar to modern assembly language complete with loops and conditional branching (for the nerds out there)."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/9/9a/Sholes_typewriter.jpg",
+          "caption": "A prototype of the typewriter with the QWERTY layout clearly visible.",
+          "credit": "By George Iles, via Wikimedia Commons"
+        },
+        "start_date": {
+          "year": "1868"
+        },
+        "text": {
+          "headline": "The Typewriter",
+          "text": "Again, not a computer but an important step forward in user interfaces. Invented by Christopher Sholes, An American engineer, the typewriter was layed out in the familiar QWERTY style."
+        }
+      },
+      {
+        "media": {
+          "url": "https://youtu.be/UZVEp78b0XI?t=1m54s",
+          "caption": "A history of early IBM punch card machines and featuring a Pascal calculator.",
+          "credit": "<a href=\"http://www.youtube.com/user/clipcafe\">clipcafe</a>"
+        },
+        "start_date": {
+          "year": "1890"
+        },
+        "text": {
+          "headline": "Herman Hollerith",
+          "text": "In 1890, Hollerith introduced his tabulating machine to be used in the census. He also later invented a key punch, a machine that punched the holes into cards operated by a keyboard. His company was one of the companies that later merged to form IBM."
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "1940"
+        },
+        "text": {
+          "headline": "Remote Access Computing",
+          "text": "George Stibitz demonstrated the Complex Number Calculator (CNC) at Dartmouth College. The astonishing part was that the CNC was in New York City."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/1/16/Classic_shot_of_the_ENIAC.jpg",
+          "caption": "\"Cpl. Irwin Goldstein (foreground) sets the switches on one of the ENIAC's function tables at the Moore School of Electrical Engineering.\" (Caption via Wikimedia)",
+          "credit": "U.S. Army photo"
+        },
+        "start_date": {
+          "year": "1946"
+        },
+        "text": {
+          "headline": "ENIAC",
+          "text": "Weighing 30 tons, and containing over 18,000 vacuum tubes, the ENIAC was the first truly modern computer. It could be programmed for many complex programs and used an early keyboard as its input."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/5/55/Museum_of_Science%2C_Boston%2C_MA_-_IMG_3163.JPG",
+          "caption": "Input for the UNIVAC I was via keyboard in this massive input console.",
+          "credit": "By Daderot (Own work) [Public domain], via Wikimedia Commons"
+        },
+        "start_date": {
+          "year": "1951"
+        },
+        "text": {
+          "headline": "UNIVAC I",
+          "text": "The Universal Automatic Computer I weighed in at 13 tons and sold for over one million dollars. It was the first mass produced computer, selling 46 units. The massive cockpit of a console featured a keyboard"
+        }
+      },
+      {
+        "media": {
+          "url": "",
+          "caption": "",
+          "credit": ""
+        },
+        "start_date": {
+          "year": "1964"
+        },
+        "text": {
+          "headline": "Multics",
+          "text": "A collaboration between MIT, Bell Laboratories and General Electric created the Multics system. It was a multi-user, time sharing system that spurred along the use of a new interface, a monitor."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/7/7f/Data_General_Nova_SN_1.agr.JPG",
+          "caption": "The first Data General Nova minicomputer displayed at the Computer History Museum in Silicon Valley.",
+          "credit": "By Arnold Reinhold, via Wikimedia Commons"
+        },
+        "start_date": {
+          "year": "1968"
+        },
+        "text": {
+          "headline": "Minicomputer",
+          "text": "Data General introduces the Nova Minicomputer which served as an inspiration for Steve Wozniak's design of the Apple I."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/f/f0/SRI_Douglas_Engelbart_2008.jpg",
+          "caption": "Douglas Engelbart with the first computer mouse prototype.",
+          "credit": "By SRI International, via Wikimedia Commons"
+        },
+        "start_date": {
+          "month": "12",
+          "day": "9",
+          "year": "1968"
+        },
+        "text": {
+          "headline": "The Mouse",
+          "text": "Douglas C. Engelbart and his team demonstrated an online system featuring a mouse, hypertext and the first graphical user interface, a \"windows\" system. The mouse was encased in a wood body and had only one button."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/5/5e/Xerox_Alto_mit_Rechner.JPG",
+          "caption": "",
+          "credit": "By Joho345, via Wikimedia Commons"
+        },
+        "start_date": {
+          "year": "1974"
+        },
+        "text": {
+          "headline": "Xerox Alto",
+          "text": "The Xerox Alto was the first workstation with a built in mouse with three buttons."
+        }
+      },
+      {
+        "media": {
+          "url": "//www.flickr.com/photos/euthman/281712899/",
+          "caption": "An Apple I computer on display at the Smithsonian.",
+          "credit": "<a href='http://www.flickr.com/photos/euthman/281712899/'>Ed Uthman</a> via Flickr"
+        },
+        "start_date": {
+          "year": "1976"
+        },
+        "text": {
+          "headline": "Apple I",
+          "text": "Steve Wozniak designed the Apple I, a single-board computer that he and Steve Jobs sold for $500 each. Thus began Apple Inc. and the Personal Computer."
+        }
+      },
+      {
+        "media": {
+          "url": "//www.flickr.com/photos/mightyohm/5333827381/",
+          "caption": "An Apple I computer on display at the Smithsonian.",
+          "credit": "<a href='http://www.flickr.com/photos/mightyohm/5333827381/'>Jeff Keyzer</a> via Flickr"
+        },
+        "start_date": {
+          "year": "1976"
+        },
+        "text": {
+          "headline": "The Osborne I",
+          "text": "Weighing 24 pounds and costing under $2,000, the Osborne I was the first portable computer, although you probably couldn't use it in your lap for too long."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/a/a9/Microsoft_Windows_1.0_page1.jpg",
+          "caption": "",
+          "credit": "By Microsoft, via Wikimedia Commons"
+        },
+        "start_date": {
+          "year": "1982"
+        },
+        "text": {
+          "headline": "Windows 1.0",
+          "text": "Microsoft unveils what will become the dominant operating system for the next several decades."
+        }
+      },
+      {
+        "media": {
+          "url": "//www.flickr.com/photos/mwichary/2179402603/",
+          "caption": "The Original Macintosh with extra external floppy drive.",
+          "credit": "<a href='http://www.flickr.com/photos/mwichary/2179402603/'>Marcin Wichary</a> via Flickr"
+        },
+        "start_date": {
+          "year": "1984"
+        },
+        "text": {
+          "headline": "The Macintosh",
+          "text": "Apple introduced the Macintosh which was the first commercially successful computer with a mouse and a Graphical User Interface. Apple's Think Different Superbowl commercial also plays this year."
+        }
+      },
+      {
+        "media": {
+          "url": "{{ static_url }}/img/examples/user-interface/palm.png",
+          "caption": "A Palm Pilot.",
+          "credit": "<a href='http://en.wikipedia.org/wiki/File:Palmpilot5000_eu.png'>Channel R</a> via Wikimedia Commons"
+        },
+        "start_date": {
+          "year": "1997"
+        },
+        "text": {
+          "headline": "The Stylus",
+          "text": "Personal digital assistants introduce the touch screen with the use of a stylus. Handwriting recognition was hit or miss but some companies developed simplified alphabet input strokes to improve recognition."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/3/35/Ipod_1G.png",
+          "caption": "The Original iPod with click wheel user interface.",
+          "credit": "By Rjcflyer@aol.com at en.wikipedia via Wikimedia Commons"
+        },
+        "start_date": {
+          "month": "10",
+          "day": "23",
+          "year": "2001"
+        },
+        "text": {
+          "headline": "Continuous Scrolling",
+          "text": "The first iPod introduces the wheel as a user interface. It allowed users to continuously scroll through thousands of songs seamlessly. This interface helped Apple dominate the music player business and eventually the music content business through its iTunes ecosystem."
+        }
+      },
+      {
+        "media": {
+          "url": "//upload.wikimedia.org/wikipedia/commons/4/49/IPhone_at_Macworld_%28angled_view%29.jpg",
+          "caption": "",
+          "credit": "By blakeburris, via <a href='http://commons.wikimedia.org/wiki/File:IPhone_at_Macworld_(angled_view).jpg'>Wikimedia Commons</a>"
+        },
+        "start_date": {
+          "year": "2007"
+        },
+        "text": {
+          "headline": "Multi Touch",
+          "text": "Steve Jobs unveils the iPhone and the multi touch interface."
+        }
+      },
+      {
+        "media": {
+          "url": "{{ static_url }}/img/examples/user-interface/4s.jpg",
+          "caption": "",
+          "credit": "Apple Inc."
+        },
+        "start_date": {
+          "year": "2012"
+        },
+        "text": {
+          "headline": "Speech Recognition",
+          "text": "<p>Speech recognition has been tested and improved upon for years in military cockpits in the U.S. France and U.K. In fact, Siri, the speech recognition engine used in the iPhone 4S was developed first by DARPA, the Defense Advanced Research Projects Agency.</p>"
+        }
+      }
+    ]
+}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/index.html b/public/opac/TimelineJS3-3.5.1/website/templates/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..db7a0723b5556f9b11d6124da8fea1f7a4f1ea55
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/index.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+
+{% block content %}
+{% include "_header.html" %}
+
+<article id="product-body">
+    {% include "_demo.html" %}
+    {% include "_overview.html" %}
+    {% include "_examples.html" %}
+    {% include "_make.html" %}
+    {% include "_help.html" %}
+</article>
+
+{% include "_storytelling_tools.html" %}
+
+{% endblock content %}
+
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/mediatype-tests.html b/public/opac/TimelineJS3-3.5.1/website/templates/mediatype-tests.html
new file mode 100644
index 0000000000000000000000000000000000000000..98e976648a128481bf14942e37c5797934cd4b7e
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/mediatype-tests.html
@@ -0,0 +1,114 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>MediaType Unit Tests</title>
+
+    <link rel="stylesheet" href="//cdn.jsdelivr.net/qunit/1.14.0/qunit.css" />
+
+    <script type="text/javascript" src="//cdn.jsdelivr.net/g/qunit@1.14.0,underscorejs@1.6.0"></script>
+
+  <!-- build:js https://cdn.knightlab.com/libs/timeline3/%(cdn)s/js/timeline-min.js -->
+  <script src="/build/js/timeline.js"></script>
+  <!-- endbuild -->
+
+
+    <script type="text/javascript">
+      // for simple tests, just add a tuple [url,mediatype.type]
+      // Optionally add a third item in the tuple for a more verbose
+      // description of what is being tested.
+      MEDIA_TYPE_TESTS = [
+        // TL.Media.YouTube
+        ['https://www.youtube.com/watch?v=pi2v1m6gmD8&t=5m21s', 'youtube', 'YouTube with time stamp'],
+        ['//www.youtube.com/watch?v=pi2v1m6gmD8', 'youtube', 'YouTube with no protocol'],
+        ['youtu.be/pi2v1m6gmD8', 'youtube', 'YouTu.be short url'],
+        ['http://vimeo.com/20839673', 'vimeo'],
+        ['http://www.dailymotion.com/video/x2fo0e8_the-history-of-advertising-in-60-seconds_lifestyle', 'dailymotion'],
+        ['https://vine.co/v/Og5Ai71WHdD', 'vine'],
+        ['https://soundcloud.com/usher-raymond-music/usher-i-dont-mind-feat-juicy-j', 'soundcloud'],
+        ['https://twitter.com/NASASpaceflight/status/562327074384654336', 'twitter'],
+        ['<blockquote class="twitter-tweet" lang="en"><p>Rough vs. smooth: the Anuket and Anubis regions on <a href="https://twitter.com/hashtag/67P?src=hash">#67P</a> <a href="http://t.co/kOyAiOKlma">http://t.co/kOyAiOKlma</a> <a href="https://twitter.com/hashtag/CometWatch?src=hash">#CometWatch</a> <a href="http://t.co/YmQ8bP5WbS">pic.twitter.com/YmQ8bP5WbS</a></p>&mdash; ESA Rosetta Mission (@ESA_Rosetta) <a href="https://twitter.com/ESA_Rosetta/status/563722810397560832">February 6, 2015</a></blockquote>', 'twitterembed'],
+        ['https://www.google.com/maps/@42.032147,-87.6689625,15z','googlemaps', 'Google Maps with lat/long'],
+        ['https://www.google.com/maps/search/target/@41.8747339,-87.6481257,13z?hl=en-US', 'googlemaps', 'Google Maps with search'],
+        ['https://www.google.com/maps/place/Northwestern+University/@42.056459,-87.675267,17z/data=!3m1!4b1!4m2!3m1!1s0x880fd00b703e4c39:0x2c37b567fad56106', 'googlemaps', 'Google Maps with place'],
+        ['https://www.google.com/maps/dir/W+Adams+St+%26+S+Clark+St,+Chicago,+IL/Northwestern+University,+633+Clark+Street,+Evanston,+IL+60208/@41.9672743,-87.7225481,12z/data=!3m1!4b1!4m13!4m12!1m5!1m1!1s0x880e2cbc8bcec53b:0x72d2c7372d97283d!2m2!1d-87.6308023!2d41.8794067!1m5!1m1!1s0x880fd00b703e4c39:0x2c37b567fad56106!2m2!1d-87.675267!2d42.056459', 'googlemaps', 'Google Maps with directions'],
+        // google plus not specifically supported
+        // ['https://lh4.googleusercontent.com/-QO1O34U4z7k/Ui4OnAkgWjI/AAAAAAAAQv4/eDSXlUlwcKs/w622-h415-no/IMG_7898.JPG', 'googleplus'],
+        ['http://instagram.com/p/ymwL5JAsw5/', 'instagram'],
+        ['http://instagram.com/lukerague/', 'profile'],
+        ['https://www.flickr.com/photos/critterseeker/16420145375', 'flickr'],
+        ['https://flic.kr/p/u7SSxw', 'flickr'],
+        ['https://www.documentcloud.org/documents/1377371-folketinget.html', 'documentcloud'],
+        ['http://www.kidzone.ws/images-changed/sharks/head.jpg', 'image', 'JPG'],
+        ['http://usatlife.files.wordpress.com/2014/06/groundhog-day-bill-murray-winter-never-going-to-end.gif', 'image', 'GIF'],
+        ['http://pngimg.com/upload/banana_PNG842.png', 'image', 'PNG'],
+        ['http://upload.wikimedia.org/wikipedia/commons/c/c2/Rocky_Mountains.jpeg','image', 'JPEG'],
+        ['https://docs.google.com/document/d/1RvKYxHuwweIP8zRrnjad-0exVoZOUsSVgDYPp0J1mzY/edit?usp=sharing', 'googledocs'],
+        ['http://stlab.adobe.com/wiki/images/d/d3/Test.pdf', 'pdf'],
+        ['https://en.wikipedia.org/wiki/1997_International_Tennis_Championships_%E2%80%93_Doubles', 'wikipedia'],
+        ['<iframe src="https://embed.spotify.com/?uri=https://play.spotify.com/artist/2iE18Oxc8YSumAU232n4rW" width="300" height="380" frameborder="0" allowtransparency="true"></iframe>', 'spotify', 'artist'],
+        ['https://play.spotify.com/user/edvard_m/playlist/4xFSdiuP4gpR4wq2OghlOs', 'spotify', 'playlist'],
+        ['https://play.spotify.com/track/5SdB3onMcO9ZBoKrdvCqhR', 'spotify', 'track'],
+        ["<iframe src='https://cdn.knightlab.com/libs/timeline/latest/embed/index.html?source=10fFZXg4kioMz8uTVDZfawiJkgrWZxfJuziK1i1AaCrs&font=Bevan-PotanoSans&maptype=toner&lang=en&height=650' width='100%' height='650' frameborder='0'></iframe>", 'iframe'],
+        ['https://storify.com/IllinoisStateU/best-campus-photos-january-2015', 'storify'],
+        // website media type not currently supported
+        // ['http://www.theonion.com/articles/measles-epidemic-2015-a-timeline-of-the-outbreak,37870/', 'website'],
+        ['http://instagram.com/lukerague', 'profile'],
+        ['<blockquote>This is a block quote.</blockquote>', 'blockquote'],
+        ['http://2.bp.blogspot.com/-dxJbW0CG8Zs/TmkoMA5-cPI/AAAAAAAAAqw/fQpsz9GpFdo/s1600/voyage-dans-la-lune-1902-02-g.jpg', 'image'],
+      ]
+      test("Looping MediaType tests", function() {
+
+        for (var i = 0; i < MEDIA_TYPE_TESTS.length; i++) {
+          var url = MEDIA_TYPE_TESTS[i][0],
+              expected_type = MEDIA_TYPE_TESTS[i][1];
+
+          var expectation = MEDIA_TYPE_TESTS[i][2] || "Expected " + expected_type
+          var mediatype = TL.MediaType({url: url});
+          equal(mediatype.type,expected_type,"Expected " + expected_type);
+        }
+
+      });
+
+
+      // these tests were in the unit-tests.html when we only had one test page
+      test("original URL tests", function() {
+
+              function mediaTypeEqual(url, expected) {
+                var d = TL.MediaType({'url': url})
+                return equal(d.type,expected,expected);
+              }
+
+              mediaTypeEqual('https://www.flickr.com/photos/cleopatra69/5399251313/in/photostream','flickr')
+
+              mediaTypeEqual('http://en.wikipedia.org/wiki/Project_Gutenberg','wikipedia')
+
+              // documentcloud
+              mediaTypeEqual('http://www.documentcloud.org/documents/346266-healthcarefullplan.js','documentcloud')
+              mediaTypeEqual('https://www.documentcloud.org/documents/1497900-new-orleans-harbor-police-la-for-fy-2013.html','documentcloud')
+
+              //Google map view
+              mediaTypeEqual('https://www.google.com/maps/@42.0563195,-87.6969445,14z', 'googlemaps');
+
+              //Google map place
+              mediaTypeEqual('https://www.google.com/maps/place/Northwestern+University+Knight+Lab/@42.050703,-87.673881,17z/data=!3m1!4b1!4m2!3m1!1s0x880fd074140e35d1:0x954a22c1989c7105','googlemaps');
+
+
+              //Google map directions
+              mediaTypeEqual('https://www.google.com/maps/dir/38325+Pepperweed+Rd,+Squaw+Valley,+CA+93675/Kings+Canyon+National+Park,+California/@36.7824144,-119.2024213,10z/data=!3m1!4b1!4m13!4m12!1m5!1m1!1s0x809511dce15514c5:0x907f3cccddac00b3!2m2!1d-119.165587!2d36.679918!1m5!1m1!1s0x80bfd5ee5ff1a77b:0x826483b770430f4c!2m2!1d-118.555148!2d36.887855', 'googlemaps');
+
+              //Google map search
+              mediaTypeEqual('https://www.google.com/maps/search/coffee/@36.8128212,-119.7471762,15z/data=!3m1!4b1!4m5!2m4!3m3!1scoffee!2sCalifornia+State+University,+Fresno,+5241+North+Maple+Avenue,+Fresno,+CA+93740!3s0x80945d024e7effdb:0x8a47b32280fd2166', 'googlemaps');
+
+              //Google map satellite tiles
+              mediaTypeEqual('https://www.google.com/maps/place/38325+Pepperweed+Rd,+Squaw+Valley,+CA+93675/@36.6799575,-119.1647811,347m/data=!3m1!1e3!4m2!3m1!1s0x809511dce15514c5:0x907f3cccddac00b3', 'googlemaps');
+
+              //Google map streetview
+              mediaTypeEqual('https://www.google.com/maps/@36.67911,-119.1649653,3a,75y,285.33h,79.9t/data=!3m4!1e1!3m2!1sQbOSCYjb9m-VnE-GcqwWEA!2e0', 'googlemaps');
+
+            });
+    </script>
+</head>
+<body>
+    <div id="qunit"></div>
+</body>
+</html>
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/test/GoogleSpreadsheetFeedLegacyFormat.json b/public/opac/TimelineJS3-3.5.1/website/templates/test/GoogleSpreadsheetFeedLegacyFormat.json
new file mode 100644
index 0000000000000000000000000000000000000000..f5689c0b74f16f3a51356b4bfd804ec2aa7c1dc5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/test/GoogleSpreadsheetFeedLegacyFormat.json
@@ -0,0 +1 @@
+{"version":"1.0","encoding":"UTF-8","feed":{"xmlns":"http://www.w3.org/2005/Atom","xmlns$openSearch":"http://a9.com/-/spec/opensearchrss/1.0/","xmlns$gsx":"http://schemas.google.com/spreadsheets/2006/extended","id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"od1"},"link":[{"rel":"alternate","type":"text/html","href":"https://spreadsheets.google.com/pub?key\u003d0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE"},{"rel":"http://schemas.google.com/g/2005#feed","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values"},{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values?alt\u003djson"}],"author":[{"name":{"$t":"scott.b.bradley"},"email":{"$t":"scott.b.bradley@gmail.com"}}],"openSearch$totalResults":{"$t":"8"},"openSearch$startIndex":{"$t":"1"},"entry":[{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/b8lvi"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"10/1/2011"},"content":{"type":"text","$t":"headline: Google Spreadsheet Example, text: This is a test of using google spreadsheets as a source for the timeline tool, media: http://www.flickr.com/photos/zachwise/6115056146/in/photostream, mediacredit: Zach Wise/verite.co, mediacaption: \u003ca href\u003d\"http://www.flickr.com/photos/zachwise/6115056146/\" title\u003d\"Chicago by zach.wise, on Flickr\"\u003eChicago by zach.wise\u003c/a\u003e, type: title"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/b8lvi"}],"gsx$startdate":{"$t":"10/1/2011"},"gsx$enddate":{"$t":""},"gsx$headline":{"$t":"Google Spreadsheet Example"},"gsx$text":{"$t":"This is a test of using google spreadsheets as a source for the timeline tool"},"gsx$media":{"$t":"http://www.flickr.com/photos/zachwise/6115056146/in/photostream"},"gsx$mediacredit":{"$t":"Zach Wise/verite.co"},"gsx$mediacaption":{"$t":"\u003ca href\u003d\"http://www.flickr.com/photos/zachwise/6115056146/\" title\u003d\"Chicago by zach.wise, on Flickr\"\u003eChicago by zach.wise\u003c/a\u003e"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":"title"},"gsx$tag":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/cokwr"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"1/12/2012"},"content":{"type":"text","$t":"enddate: 1/12/2012, headline: A Flickr Example, text: Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.\n, media: http://www.flickr.com/photos/zachwise/6687123779/in/photostream, mediacredit: Zach Wise/verite.co, mediacaption: Enjoying the snow while sheltered at the train station"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/cokwr"}],"gsx$startdate":{"$t":"1/12/2012"},"gsx$enddate":{"$t":"1/12/2012"},"gsx$headline":{"$t":"A Flickr Example"},"gsx$text":{"$t":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.\n"},"gsx$media":{"$t":"http://www.flickr.com/photos/zachwise/6687123779/in/photostream"},"gsx$mediacredit":{"$t":"Zach Wise/verite.co"},"gsx$mediacaption":{"$t":"Enjoying the snow while sheltered at the train station"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$tag":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/cpzh4"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"11/1/2011"},"content":{"type":"text","$t":"enddate: 11/1/2011, headline: Another Flickr Example, text: Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.\n, media: http://www.flickr.com/photos/zachwise/6894476777/in/photostream, mediacredit: Zach Wise/verite.co, mediacaption: Chicago to NYC"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/cpzh4"}],"gsx$startdate":{"$t":"11/1/2011"},"gsx$enddate":{"$t":"11/1/2011"},"gsx$headline":{"$t":"Another Flickr Example"},"gsx$text":{"$t":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.\n"},"gsx$media":{"$t":"http://www.flickr.com/photos/zachwise/6894476777/in/photostream"},"gsx$mediacredit":{"$t":"Zach Wise/verite.co"},"gsx$mediacaption":{"$t":"Chicago to NYC"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$tag":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/cre1l"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"11/16/2011"},"content":{"type":"text","$t":"enddate: 11/17/2011, headline: Vimeo — Jay Z - \"Hello Brooklyn\", text: Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.\n, media: https://vimeo.com/10089801, mediacredit: Greg Solenström, mediacaption: Jay Z - \"Hello Brooklyn\""},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/cre1l"}],"gsx$startdate":{"$t":"11/16/2011"},"gsx$enddate":{"$t":"11/17/2011"},"gsx$headline":{"$t":"Vimeo — Jay Z - \"Hello Brooklyn\""},"gsx$text":{"$t":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.\n"},"gsx$media":{"$t":"https://vimeo.com/10089801"},"gsx$mediacredit":{"$t":"Greg Solenström"},"gsx$mediacaption":{"$t":"Jay Z - \"Hello Brooklyn\""},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$tag":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/ciyn3"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"12/1/2011"},"content":{"type":"text","$t":"enddate: 12/1/2011, headline: SoundCloud — Lotus Flower - SBTRKT RMX, media: http://soundcloud.com/radiohead/radiohead-lotus-flower-sbtrkt, mediacredit: Radiohead, mediacaption: Lotus Flower - SBTRKT RMX"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/ciyn3"}],"gsx$startdate":{"$t":"12/1/2011"},"gsx$enddate":{"$t":"12/1/2011"},"gsx$headline":{"$t":"SoundCloud — Lotus Flower - SBTRKT RMX"},"gsx$text":{"$t":""},"gsx$media":{"$t":"http://soundcloud.com/radiohead/radiohead-lotus-flower-sbtrkt"},"gsx$mediacredit":{"$t":"Radiohead"},"gsx$mediacaption":{"$t":"Lotus Flower - SBTRKT RMX"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$tag":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/ckd7g"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"12/7/2011"},"content":{"type":"text","$t":"enddate: 12/7/2011, headline: YouTube — Edwin Land on BBC, media: http://www.youtube.com/watch?v\u003d3DiCvHiDWiY, mediacaption: Edwin Land on BBC"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/ckd7g"}],"gsx$startdate":{"$t":"12/7/2011"},"gsx$enddate":{"$t":"12/7/2011"},"gsx$headline":{"$t":"YouTube — Edwin Land on BBC"},"gsx$text":{"$t":""},"gsx$media":{"$t":"http://www.youtube.com/watch?v\u003d3DiCvHiDWiY"},"gsx$mediacredit":{"$t":""},"gsx$mediacaption":{"$t":"Edwin Land on BBC"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$tag":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/clrrx"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"12/14/2011"},"content":{"type":"text","$t":"enddate: 12/14/2011, headline: A Tweet, media: https://twitter.com/#!/ArjunaSoriano/status/164181156147900416"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/clrrx"}],"gsx$startdate":{"$t":"12/14/2011"},"gsx$enddate":{"$t":"12/14/2011"},"gsx$headline":{"$t":"A Tweet"},"gsx$text":{"$t":""},"gsx$media":{"$t":"https://twitter.com/#!/ArjunaSoriano/status/164181156147900416"},"gsx$mediacredit":{"$t":""},"gsx$mediacaption":{"$t":""},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$tag":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/ba0fz"},"updated":{"$t":"2015-04-23T17:37:38.533Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"12/22/2011"},"content":{"type":"text","$t":"enddate: 12/28/2011, headline: Google Map, text: Just put a link to the map. Nothing fancy, just a link., media: http://maps.google.com/maps?q\u003dchicago\u0026hl\u003den\u0026sll\u003d41.874961,-87.619054\u0026sspn\u003d0.159263,0.351906\u0026t\u003dt\u0026hnear\u003dChicago,+Cook,+Illinois\u0026z\u003d11"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdGlZc0xVVFc3WjBESzBqZGJmYTNKRFE/1/public/values/ba0fz"}],"gsx$startdate":{"$t":"12/22/2011"},"gsx$enddate":{"$t":"12/28/2011"},"gsx$headline":{"$t":"Google Map"},"gsx$text":{"$t":"Just put a link to the map. Nothing fancy, just a link."},"gsx$media":{"$t":"http://maps.google.com/maps?q\u003dchicago\u0026hl\u003den\u0026sll\u003d41.874961,-87.619054\u0026sspn\u003d0.159263,0.351906\u0026t\u003dt\u0026hnear\u003dChicago,+Cook,+Illinois\u0026z\u003d11"},"gsx$mediacredit":{"$t":""},"gsx$mediacaption":{"$t":""},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$tag":{"$t":""}}]}}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/test/GoogleSpreadsheetFeedTJS3Format.json b/public/opac/TimelineJS3-3.5.1/website/templates/test/GoogleSpreadsheetFeedTJS3Format.json
new file mode 100644
index 0000000000000000000000000000000000000000..0e9949699f6bafab57f33e763740ba5913a56999
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/test/GoogleSpreadsheetFeedTJS3Format.json
@@ -0,0 +1 @@
+{"version":"1.0","encoding":"UTF-8","feed":{"xmlns":"http://www.w3.org/2005/Atom","xmlns$openSearch":"http://a9.com/-/spec/opensearchrss/1.0/","xmlns$gsx":"http://schemas.google.com/spreadsheets/2006/extended","id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"od1"},"link":[{"rel":"alternate","type":"text/html","href":"https://spreadsheets.google.com/pub?key\u003d0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E"},{"rel":"http://schemas.google.com/g/2005#feed","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values"},{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values?alt\u003djson"}],"author":[{"name":{"$t":"scott.b.bradley"},"email":{"$t":"scott.b.bradley@gmail.com"}}],"openSearch$totalResults":{"$t":"8"},"openSearch$startIndex":{"$t":"1"},"entry":[{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/b8lvi"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"1905"},"content":{"type":"text","$t":"month: 7, day: 3, headline: Google Spreadsheet Example, text: This is a test of using google spreadsheets as a source for the timeline tool, media: http://www.flickr.com/photos/zachwise/6115056146/in/photostream, mediacredit: Zach Wise/verite.co, mediacaption: \u003ca href\u003d\"http://www.flickr.com/photos/zachwise/6115056146/\" title\u003d\"Chicago by zach.wise, on Flickr\"\u003eChicago by zach.wise\u003c/a\u003e, type: title"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/b8lvi"}],"gsx$year":{"$t":"1905"},"gsx$month":{"$t":"7"},"gsx$day":{"$t":"3"},"gsx$time":{"$t":""},"gsx$endyear":{"$t":""},"gsx$endmonth":{"$t":""},"gsx$endday":{"$t":""},"gsx$endtime":{"$t":""},"gsx$displaydate":{"$t":""},"gsx$headline":{"$t":"Google Spreadsheet Example"},"gsx$text":{"$t":"This is a test of using google spreadsheets as a source for the timeline tool"},"gsx$media":{"$t":"http://www.flickr.com/photos/zachwise/6115056146/in/photostream"},"gsx$mediacredit":{"$t":"Zach Wise/verite.co"},"gsx$mediacaption":{"$t":"\u003ca href\u003d\"http://www.flickr.com/photos/zachwise/6115056146/\" title\u003d\"Chicago by zach.wise, on Flickr\"\u003eChicago by zach.wise\u003c/a\u003e"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":"title"},"gsx$group":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/cokwr"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"2012"},"content":{"type":"text","$t":"month: 1, day: 1, endyear: 2012, endmonth: 2, endday: 1, displaydate: January — February, headline: A Flickr Example, text: TimelineJS is an open-source tool that enables you to build visually-rich interactive timelines and is available in 40 languages., media: http://www.flickr.com/photos/zachwise/6687123779/in/photostream, mediacredit: Zach Wise/verite.co, mediacaption: Enjoying the snow while sheltered at the train station"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/cokwr"}],"gsx$year":{"$t":"2012"},"gsx$month":{"$t":"1"},"gsx$day":{"$t":"1"},"gsx$time":{"$t":""},"gsx$endyear":{"$t":"2012"},"gsx$endmonth":{"$t":"2"},"gsx$endday":{"$t":"1"},"gsx$endtime":{"$t":""},"gsx$displaydate":{"$t":"January — February"},"gsx$headline":{"$t":"A Flickr Example"},"gsx$text":{"$t":"TimelineJS is an open-source tool that enables you to build visually-rich interactive timelines and is available in 40 languages."},"gsx$media":{"$t":"http://www.flickr.com/photos/zachwise/6687123779/in/photostream"},"gsx$mediacredit":{"$t":"Zach Wise/verite.co"},"gsx$mediacaption":{"$t":"Enjoying the snow while sheltered at the train station"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$group":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/cpzh4"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"2011"},"content":{"type":"text","$t":"month: 11, day: 1, endyear: 2011, endmonth: 12, endday: 15, headline: Another Flickr Example, text: It's Easy to Make Your Own Timeline, media: http://www.flickr.com/photos/zachwise/6894476777/in/photostream, mediacredit: Zach Wise/verite.co, mediacaption: Chicago to NYC"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/cpzh4"}],"gsx$year":{"$t":"2011"},"gsx$month":{"$t":"11"},"gsx$day":{"$t":"1"},"gsx$time":{"$t":""},"gsx$endyear":{"$t":"2011"},"gsx$endmonth":{"$t":"12"},"gsx$endday":{"$t":"15"},"gsx$endtime":{"$t":""},"gsx$displaydate":{"$t":""},"gsx$headline":{"$t":"Another Flickr Example"},"gsx$text":{"$t":"It's Easy to Make Your Own Timeline"},"gsx$media":{"$t":"http://www.flickr.com/photos/zachwise/6894476777/in/photostream"},"gsx$mediacredit":{"$t":"Zach Wise/verite.co"},"gsx$mediacaption":{"$t":"Chicago to NYC"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$group":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/cre1l"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"2011"},"content":{"type":"text","$t":"month: 11, day: 16, time: 05:58:44, endyear: 2011, endmonth: 11, endday: 16, endtime: 07:30:00, headline: Vimeo Example, text: Illustrate your Timeline with photos, videos, tweets and more., media: https://vimeo.com/10089801, mediacredit: Greg Solenström, mediacaption: Jay Z - \"Hello Brooklyn\""},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/cre1l"}],"gsx$year":{"$t":"2011"},"gsx$month":{"$t":"11"},"gsx$day":{"$t":"16"},"gsx$time":{"$t":"05:58:44"},"gsx$endyear":{"$t":"2011"},"gsx$endmonth":{"$t":"11"},"gsx$endday":{"$t":"16"},"gsx$endtime":{"$t":"07:30:00"},"gsx$displaydate":{"$t":""},"gsx$headline":{"$t":"Vimeo Example"},"gsx$text":{"$t":"Illustrate your Timeline with photos, videos, tweets and more."},"gsx$media":{"$t":"https://vimeo.com/10089801"},"gsx$mediacredit":{"$t":"Greg Solenström"},"gsx$mediacaption":{"$t":"Jay Z - \"Hello Brooklyn\""},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$group":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/ciyn3"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"2011"},"content":{"type":"text","$t":"month: 12, day: 1, endyear: 2011, endmonth: 12, endday: 2, headline: SoundCloud Example, media: http://soundcloud.com/radiohead/radiohead-lotus-flower-sbtrkt, mediacredit: Radiohead, mediacaption: Lotus Flower - SBTRKT RMX"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/ciyn3"}],"gsx$year":{"$t":"2011"},"gsx$month":{"$t":"12"},"gsx$day":{"$t":"1"},"gsx$time":{"$t":""},"gsx$endyear":{"$t":"2011"},"gsx$endmonth":{"$t":"12"},"gsx$endday":{"$t":"2"},"gsx$endtime":{"$t":""},"gsx$displaydate":{"$t":""},"gsx$headline":{"$t":"SoundCloud Example"},"gsx$text":{"$t":""},"gsx$media":{"$t":"http://soundcloud.com/radiohead/radiohead-lotus-flower-sbtrkt"},"gsx$mediacredit":{"$t":"Radiohead"},"gsx$mediacaption":{"$t":"Lotus Flower - SBTRKT RMX"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$group":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/ckd7g"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"2011"},"content":{"type":"text","$t":"month: 12, day: 7, endyear: 2011, endmonth: 12, endday: 8, headline: YouTube Example, media: http://www.youtube.com/watch?v\u003d3DiCvHiDWiY, mediacaption: Edwin Land on BBC"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/ckd7g"}],"gsx$year":{"$t":"2011"},"gsx$month":{"$t":"12"},"gsx$day":{"$t":"7"},"gsx$time":{"$t":""},"gsx$endyear":{"$t":"2011"},"gsx$endmonth":{"$t":"12"},"gsx$endday":{"$t":"8"},"gsx$endtime":{"$t":""},"gsx$displaydate":{"$t":""},"gsx$headline":{"$t":"YouTube Example"},"gsx$text":{"$t":""},"gsx$media":{"$t":"http://www.youtube.com/watch?v\u003d3DiCvHiDWiY"},"gsx$mediacredit":{"$t":""},"gsx$mediacaption":{"$t":"Edwin Land on BBC"},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$group":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/clrrx"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"2011"},"content":{"type":"text","$t":"month: 5, day: 6, endyear: 2011, endmonth: 5, endday: 7, headline: Tweet Example, media: https://twitter.com/#!/ArjunaSoriano/status/164181156147900416"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/clrrx"}],"gsx$year":{"$t":"2011"},"gsx$month":{"$t":"5"},"gsx$day":{"$t":"6"},"gsx$time":{"$t":""},"gsx$endyear":{"$t":"2011"},"gsx$endmonth":{"$t":"5"},"gsx$endday":{"$t":"7"},"gsx$endtime":{"$t":""},"gsx$displaydate":{"$t":""},"gsx$headline":{"$t":"Tweet Example"},"gsx$text":{"$t":""},"gsx$media":{"$t":"https://twitter.com/#!/ArjunaSoriano/status/164181156147900416"},"gsx$mediacredit":{"$t":""},"gsx$mediacaption":{"$t":""},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$group":{"$t":""}},{"id":{"$t":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/ba0fz"},"updated":{"$t":"2015-04-23T16:58:27.363Z"},"category":[{"scheme":"http://schemas.google.com/spreadsheets/2006","term":"http://schemas.google.com/spreadsheets/2006#list"}],"title":{"type":"text","$t":"2011"},"content":{"type":"text","$t":"month: 3, day: 4, endyear: 2011, endmonth: 4, endday: 4, headline: Google Map Example, text: Just put a link to the map. Nothing fancy, just a link., media: http://maps.google.com/maps?q\u003dchicago\u0026hl\u003den\u0026sll\u003d41.874961,-87.619054\u0026sspn\u003d0.159263,0.351906\u0026t\u003dt\u0026hnear\u003dChicago,+Cook,+Illinois\u0026z\u003d11"},"link":[{"rel":"self","type":"application/atom+xml","href":"https://spreadsheets.google.com/feeds/list/0AhvhxF6vquPhdFNXNEt2dEh2YmVKOFcwMEZsdy1Rb1E/1/public/values/ba0fz"}],"gsx$year":{"$t":"2011"},"gsx$month":{"$t":"3"},"gsx$day":{"$t":"4"},"gsx$time":{"$t":""},"gsx$endyear":{"$t":"2011"},"gsx$endmonth":{"$t":"4"},"gsx$endday":{"$t":"4"},"gsx$endtime":{"$t":""},"gsx$displaydate":{"$t":""},"gsx$headline":{"$t":"Google Map Example"},"gsx$text":{"$t":"Just put a link to the map. Nothing fancy, just a link."},"gsx$media":{"$t":"http://maps.google.com/maps?q\u003dchicago\u0026hl\u003den\u0026sll\u003d41.874961,-87.619054\u0026sspn\u003d0.159263,0.351906\u0026t\u003dt\u0026hnear\u003dChicago,+Cook,+Illinois\u0026z\u003d11"},"gsx$mediacredit":{"$t":""},"gsx$mediacaption":{"$t":""},"gsx$mediathumbnail":{"$t":""},"gsx$type":{"$t":""},"gsx$group":{"$t":""}}]}}
\ No newline at end of file
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/test/maps.html b/public/opac/TimelineJS3-3.5.1/website/templates/test/maps.html
new file mode 100644
index 0000000000000000000000000000000000000000..a84ed4c70d8db77fededcb3f73980a333e699c37
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/test/maps.html
@@ -0,0 +1,4 @@
+{% extends "base.html" %}
+{% block content %}
+<iframe src="https://www.google.com/maps/embed/v1/streetview?location=42.050958,-87.676965&fov=75&heading=214.66&pitch=0&key=AIzaSyB9dW8e_iRrATFa8g24qB6BDBGdkrLDZYI" width="600" height="600"></iframe>
+{% endblock %}
diff --git a/public/opac/TimelineJS3-3.5.1/website/templates/unit-tests.html b/public/opac/TimelineJS3-3.5.1/website/templates/unit-tests.html
new file mode 100644
index 0000000000000000000000000000000000000000..c32eea56e05354ba055f58fae649c19b54c5fcf5
--- /dev/null
+++ b/public/opac/TimelineJS3-3.5.1/website/templates/unit-tests.html
@@ -0,0 +1,659 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>Unit Tests</title>
+
+    <link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.18.0.css" />
+
+    <script type="text/javascript" src="//cdn.jsdelivr.net/g/underscorejs@1.6.0"></script>
+    <script type="text/javascript" src="https://code.jquery.com/qunit/qunit-1.18.0.js"></script>
+
+  <!-- build:js https://cdn.knightlab.com/libs/timeline3/%(cdn)s/js/timeline-min.js -->
+  <script src="/build/js/timeline.js"></script>
+  <!-- endbuild -->
+
+
+    <script type="text/javascript">
+
+      function date_dict(d) {
+        return {
+          'milliseconds': d.data.date_obj.getMilliseconds(),
+          'seconds': d.data.date_obj.getSeconds(),
+          'minutes': d.data.date_obj.getMinutes(),
+          'hours': d.data.date_obj.getHours(),
+          'day': d.data.date_obj.getDate(),
+          'month': d.data.date_obj.getMonth(), // 0-11 remember
+          'year': d.data.date_obj.getYear()
+        }
+      }
+
+      function date_parts_match(a, b, parts) {
+        a = date_dict(a);
+        b = date_dict(b);
+        for (var i = 0; i < parts.length; i++) {
+          if (a[parts[i]] != b[parts[i]]) return false;
+        };
+        return true;
+      }
+
+      QUnit.module("TL.Util tests",{});
+      QUnit.test("TL.Util", function(assert) {
+        var test = [
+          [0,1],
+          [2,3],
+          [5,7]
+        ];
+        assert.equal(TL.Util.maxDepth(test),1,"Max depth 1.")
+
+        var test = [
+          [0,5],
+          [2,8],
+          [9,10]
+        ];
+        assert.equal(TL.Util.maxDepth(test),2,"Max depth 2.")
+
+        var test = [
+          [0,3],
+          [5,8],
+          [9,10]
+        ];
+        assert.equal(TL.Util.maxDepth(test),1,"Max depth 1.")
+
+        var test = [
+          [0,3],
+          [2,8],
+          [4,9],
+          [15,20]
+        ];
+        assert.equal(TL.Util.maxDepth(test),2,"Max depth 2.")
+
+        var test = [
+          [0,5],
+          [2,8],
+          [4,9],
+          [15,20]
+        ];
+        assert.equal(TL.Util.maxDepth(test),3,"Max depth 3.")
+
+        var test = [
+          [0,5],
+          [2,8],
+          [10,25],
+          [15,20],
+          [18,27],
+          [24,28],
+
+        ];
+        assert.equal(TL.Util.maxDepth(test),3,"Max depth 3.")
+
+        assert.equal(TL.Util.trim(null),'', "null gets zero length string");
+        assert.equal(TL.Util.trim(' bob '), 'bob');
+        assert.equal(TL.Util.trim('bob '), 'bob');
+        assert.equal(TL.Util.trim('bob'), 'bob');
+        assert.ok(TL.Util.trim('bob'), "trimming a non-empty string returns a true value")
+        assert.ok(!(TL.Util.trim('')), "trimming an empty string returns a false value")
+      });
+
+      QUnit.test("TL.Util color tools", function(assert){
+         assert.ok(TL.Util.rgbToHex({r: 255, g: 255, b: 255}).match(/^#ffffff$/i), "RGB white is Hex white");
+         assert.ok(TL.Util.rgbToHex('rgb(218,112,214)').match(/^#DA70D6$/i), "colors convert correctly from rgb string");
+         var rgb = TL.Util.hexToRgb('#DA70D6');
+         assert.equal(rgb.r,218,"test hexToRgb red")
+         assert.equal(rgb.g,112,"test hexToRgb green")
+         assert.equal(rgb.b,214,"test hexToRgb blue")
+         throws(function(assert) { TL.Util.rgbToHex("malformed string") }, "make sure bad values throw exceptions 1");
+         throws(function(assert) { TL.Util.rgbToHex("rgb(218,112)") }, "make sure bad values throw exceptions 2");
+         throws(function(assert) { TL.Util.rgbToHex({r: 255, g: 255, c: 255}) }, "make sure bad values throw exceptions 3");
+         var zero_test = TL.Util.rgbToHex({r: 0, g: 255, b: 255})
+         assert.ok(zero_test.match(/^#00FFFF$/i), "make sure a zero value doesn't throw an exception")
+         var from_name = TL.Util.hexToRgb('bisque');
+         var from_hex = TL.Util.hexToRgb('#ffe4c4');
+         assert.equal(from_name.r, from_hex.r, "named colors should work too... red")
+         assert.equal(from_name.g, from_hex.g, "named colors should work too... green")
+         assert.equal(from_name.b, from_hex.b, "named colors should work too... blue")
+         assert.equal(TL.Util.colorObjToHex(from_name), TL.Util.colorObjToHex(from_hex), "objects to hexes");
+         assert.ok(TL.Util.colorObjToHex(from_name).match(/^#ffe4c4$/i), "objects to hexes")
+         assert.ok(TL.Util.colorObjToHex(from_hex).match(/^#ffe4c4$/i), "objects to hexes")
+      });
+
+      QUnit.test("TL.Util.linkify", function(assert) {
+        var text = "This is some text with a URL in it http://knightlab.northwestern.edu and then some more text";
+        var linked = TL.Util.linkify(text);
+        assert.ok(linked.startsWith('This is some text with a URL in it <a'), "should start the same and then have a link -> " + linked);
+        assert.ok(linked.match(/href=['"]http:\/\/knightlab.northwestern.edu['"]/), "should have an href -> " + linked);
+        assert.ok(linked.match(/>knightlab.northwestern.edu<\/a>/), "should have an href " + linked);
+
+        text = "This is some text with www.google.com in it";
+        var linked = TL.Util.linkify(text);
+        assert.ok(linked.startsWith('This is some text with <a'), "should start the same and then have a link " + linked);
+        assert.ok(linked.match(/href=['"]http:\/\/www.google.com['"]/), "should have an href");
+        assert.ok(linked.match(/>www.google.com<\/a>/), "should have the right link text");
+
+        text = "This is some text with support@knightlab.zendesk.com in it";
+        var linked = TL.Util.linkify(text);
+        assert.ok(linked.startsWith('This is some text with <a'), "should start the same and then have a link " + linked);
+        assert.ok(linked.match(/href=['"]mailto:support@knightlab.zendesk.com['"]/), "should have an href " + linked);
+        assert.ok(linked.match(/>support@knightlab.zendesk.com<\/a>/), "should have the right link text " + linked);
+
+        text = "This is text which already has <a href='http://google.com'>a link</a> in it."
+        var not_linked = TL.Util.linkify(text);
+        assert.equal(not_linked,text,'linkify should not have changed anything.')
+
+        text = 'This is text which already has <a href="http://google.com">a link</a> in it.'
+        var not_linked = TL.Util.linkify(text);
+        assert.equal(not_linked,text,'linkify should not have changed anything.')
+
+        text = 'This is text which already has <a href=http://google.com>a link</a> in it.'
+        var not_linked = TL.Util.linkify(text);
+        assert.equal(not_linked,text,'linkify should not have changed anything.')
+
+      })
+
+      QUnit.test("TL.Util.findNextGreater", function(assert) {
+        var l = [1, 5, 10, 20, 35];
+        assert.equal(TL.Util.findNextGreater(l,1),5, "5 is next greatest after 1");
+        assert.equal(TL.Util.findNextGreater(l,5),10, "10 is next greatest after 5");
+        assert.equal(TL.Util.findNextGreater(l,10),20, "20 is next greatest after 10");
+        assert.equal(TL.Util.findNextGreater(l,15),20, "correctly handle a curr val which isn't in the list");
+        assert.equal(TL.Util.findNextGreater(l,35),35, "handle value at end of list");
+        assert.equal(TL.Util.findNextGreater(l,40),40, "handle value greater than max in list");
+        assert.equal(TL.Util.findNextGreater(l,40, 35),35, "handle greater than max in list with default");
+
+        assert.equal(TL.Util.findNextLesser(l,1),1, "1 is least");
+        assert.equal(TL.Util.findNextLesser(l,5),1, "1 is least after 5");
+        assert.equal(TL.Util.findNextLesser(l,10),5, "20 is next greatest after 10");
+        assert.equal(TL.Util.findNextLesser(l,15),10, "10 is less than 15 (which isn't in list)");
+        assert.equal(TL.Util.findNextLesser(l,35),20, "20 less than 35");
+        assert.equal(TL.Util.findNextLesser(l,40),35, "35 is less than 40");
+        assert.equal(TL.Util.findNextLesser(l,0, 0),0, "handle less than min in list without default");
+        assert.equal(TL.Util.findNextLesser(l,0, -10),-10, "handle less than min in list with default");
+      })
+
+      QUnit.test("TL.Util.isEmptyObject", function(assert) {
+          o = {}
+          assert.ok(TL.Util.isEmptyObject(o),"no keys should be empty");
+          o.foo = "  ";
+          assert.ok(TL.Util.isEmptyObject(o),"empty string should be empty");
+          o.bar = "";
+          assert.ok(TL.Util.isEmptyObject(o),"2 empty strings should be empty");
+          o.baz = null;
+          assert.ok(TL.Util.isEmptyObject(o),"add null, still should be empty");
+          o.foo = "  not empty  ";
+          assert.equal(TL.Util.isEmptyObject(o), false, "adding a string ")
+      })
+
+      QUnit.test("TL.Util.parseYouTubeTime", function(assert) {
+          assert.equal(TL.Util.parseYouTubeTime('5s'),5,"parse seconds only")
+          assert.equal(TL.Util.parseYouTubeTime('1m5s'),65,"parse m/s")
+          assert.equal(TL.Util.parseYouTubeTime('2h4m5s'),7445,"parse h/m/s")
+          assert.equal(TL.Util.parseYouTubeTime('5m'),300,"parse minutes only")
+          assert.equal(TL.Util.parseYouTubeTime('1h'),3600,"parse hours only")
+          assert.equal(TL.Util.parseYouTubeTime(''),0,"handle empty string")
+          assert.equal(TL.Util.parseYouTubeTime(null),0,"handle empty string")
+          assert.equal(TL.Util.parseYouTubeTime('4:55'),0,"handle malformed string")
+          assert.equal(TL.Util.parseYouTubeTime(5),5,"handle number")
+      });
+
+      QUnit.test("TL.Util.ensureUniqueKey", function(assert) {
+          var o = { foo: 1, bar: 2 }
+          assert.ok(!(TL.Util.ensureUniqueKey(o, 'foo') in o), "should be unique");
+          assert.equal(TL.Util.ensureUniqueKey(o, 'baz'), 'baz', "not in there, give it back");
+          assert.equal(TL.Util.ensureUniqueKey(o, 'foo'), 'foo-2', "treat existing as 1-based");
+          o['foo-2'] = 3;
+          assert.ok(!(TL.Util.ensureUniqueKey(o, 'foo') in o), "should be unique");
+          var random = TL.Util.ensureUniqueKey(o, '');
+          assert.ok(TL.Util.trim(random), "Should get a non-empty string");
+          assert.ok(!(random in o), "empty string should get non-empty unique");
+      });
+
+
+      QUnit.module("TL.Date tests",{});
+
+      QUnit.test("TL.Date", function(assert) {
+        var refdate = TL.Date.makeDate({year: 2000, month: 6, day: 21});
+        var jsdate = new Date();
+        throws(function(assert) { refdate.isBefore(jsdate) }, "Don't allow comparison with JS Dates");
+        jsdate = TL.Date.makeDate(new Date());
+        assert.ok(refdate.isBefore(jsdate),"refdate should be before any new date");
+        assert.ok(jsdate.isAfter(refdate),"any new date should be after refdate");
+
+        var smalldate = TL.Date.makeDate({year: 2015});
+        assert.ok(!isNaN(smalldate.getTime()),"small dates are human");
+
+        var bigdate = TL.Date.makeDate({year: 1000000});
+        assert.ok(!isNaN(bigdate.getTime()),"big dates are cosmological");
+
+        var cdate = TL.Date.makeDate({year: 2014, display_date: "hello"});
+        assert.equal(cdate.getDisplayDate(), 'hello', 'display_text overrides other formatting')
+
+        var date = TL.Date.makeDate({year: 75});
+        assert.equal(date.getDisplayDate(), "75", "handle years in the first century CE correctly")
+
+      });
+
+      QUnit.test("TL.Date.parseDate", function(assert) {
+        var d = TL.Date.parseDate('2014-08-20');
+        assert.equal(d.year,'2014','three part date gets year 2014');
+        assert.equal(d.month,'08', 'three part date gets month 08');
+        assert.equal(d.day,'20', 'three part date gets day 20');
+
+        var d = TL.Date.parseDate('2014-08');
+        assert.equal(d.year,'2014','two part date gets year 2014');
+        assert.equal(d.month,'08','two part date gets month 08');
+        assert.ok(!(d.day), 'two-part date has no day');
+
+        var d = TL.Date.parseDate('2014');
+        assert.equal(d.year,'2014','year-only date gets 2014');
+        assert.ok(!(d.month), 'year only date has no month');
+        assert.ok(!(d.day), 'year only date has no day');
+
+        var d = TL.Date.parseDate('-6');
+        assert.equal(d.year,'-6','year-only date gets -6 (BC ok)');
+        assert.ok(!(d.month), 'year only date has no month');
+        assert.ok(!(d.day), 'year only date has no day');
+
+
+      });
+
+      QUnit.test("TL.Date.findBestFormat", function(assert) {
+        var date = new TL.Date({'year': 1975, month: 7})
+        assert.equal(date.findBestFormat(),"month","Expect a format key")
+        assert.equal(date.findBestFormat(true),"month_short","Expect a different format key for short (legacy)")
+        assert.equal(date.findBestFormat('short'),"month_short","Expect a different format key for short (explicit)")
+
+      });
+
+      QUnit.test("TL.Date.floor", function(assert) {
+          throws(function(assert) { TL.Date.makeDate(new Date()).floor('foobar'); },new RegExp(/invalid_scale_err/),"bad scale throws invalid_scale_err error.")
+
+
+          var d = TL.Date.makeDate(new Date(1407440158306)); // Thu Aug 07 2014 14:35:58 GMT-0500 (CDT)
+          var floored = d.floor('millisecond');
+          var date_obj = floored.data.date_obj;
+          assert.ok(date_parts_match(d,floored,['year','month','date','hours','minutes','seconds','milliseconds']), 'millisecond rounding doesnt change others')
+          assert.equal(date_obj.getTime(), d.getTime(), 'rounds to millisecond')
+
+          var floored = d.floor('second');
+          var date_obj = floored.data.date_obj;
+          assert.ok(date_parts_match(d,floored,['year','month','date','hours','minutes', 'seconds']), 'second rounding doesnt change others')
+          assert.equal(date_obj.getMilliseconds(),0,'seconds round to 0 millis ' + floored)
+
+          var floored = d.floor('minute');
+          var date_obj = floored.data.date_obj;
+          assert.ok(date_parts_match(d,floored,['year','month','date','hours','minutes']), 'minute rounding doesnt change others')
+          assert.equal(date_obj.getMilliseconds(),0,'minutes round to 0 millis ' + floored)
+          assert.equal(date_obj.getSeconds(),0,'minutes round to 0 seconds ' + floored)
+
+          var floored = d.floor('hour');
+          var date_obj = floored.data.date_obj;
+          assert.ok(date_parts_match(d,floored,['year','month','date','hours']), 'hour rounding doesnt change others')
+          assert.equal(date_obj.getMilliseconds(),0,'hours round to 0 millis ' + floored)
+          assert.equal(date_obj.getSeconds(),0,'hours round to 0 seconds ' + floored)
+          assert.equal(date_obj.getMinutes(),0,'hours round to 0 minutes ' + floored)
+
+          var floored = d.floor('day');
+          var date_obj = floored.data.date_obj;
+          assert.ok(date_parts_match(d,floored,['year','month','date']), 'day rounding doesnt change others')
+          assert.equal(date_obj.getMilliseconds(),0,'days round to 0 millis ' + floored)
+          assert.equal(date_obj.getSeconds(),0,'days round to 0 seconds ' + floored)
+          assert.equal(date_obj.getMinutes(),0,'days round to 0 minutes ' + floored)
+          assert.equal(date_obj.getHours(),0,'days round to 0 hours ' + floored)
+
+          var floored = d.floor('month');
+          var date_obj = floored.data.date_obj;
+          assert.ok(date_parts_match(d,floored,['year','month']), 'month rounding doesnt change others')
+          assert.equal(date_obj.getMilliseconds(),0,'months round to 0 millis ' + floored)
+          assert.equal(date_obj.getSeconds(),0,'months round to 0 seconds ' + floored)
+          assert.equal(date_obj.getMinutes(),0,'months round to 0 minutes ' + floored)
+          assert.equal(date_obj.getHours(),0,'months round to 0 hours ' + floored)
+          assert.equal(date_obj.getDate(),1,'months round to day 1 ' + floored)
+
+          var floored = d.floor('year');
+          var date_obj = floored.data.date_obj;
+          assert.ok(date_parts_match(d,floored,['year']), 'year rounding doesnt change others')
+          assert.equal(date_obj.getMilliseconds(),0,'years round to 0 millis ' + floored)
+          assert.equal(date_obj.getSeconds(),0,'years round to 0 seconds ' + floored)
+          assert.equal(date_obj.getMinutes(),0,'years round to 0 minutes ' + floored)
+          assert.equal(date_obj.getHours(),0,'years round to 0 hours ' + floored)
+          assert.equal(date_obj.getDate(),1,'years round to day 1 ' + floored)
+          assert.equal(date_obj.getMonth(),0,'years round to month 0 ' + floored)
+
+          var floored = d.floor('decade');
+          var date_obj = floored.data.date_obj;
+          assert.equal(date_obj.getYear(),110, "decade should round to 2010 " + floored)
+
+          var floored = d.floor('century');
+          var date_obj = floored.data.date_obj;
+          assert.equal(date_obj.getYear(),100, "century should round to 2000 " + floored)
+
+          var floored = d.floor('millennium');
+          var date_obj = floored.data.date_obj;
+          assert.equal(date_obj.getYear(),100, "Should round to 2000 " + floored)
+
+          var early_ce = TL.Date.makeDate(-59149708181438); // 8/14/95 (90 not 1995)
+          var floored = early_ce.floor('decade');
+          assert.equal(floored.getTime(),-59326970400000,'Early floored dates should not go into the 20th Century')
+
+          var age_scale = TL.Date.makeDate({year: 1500000});
+          throws(function(assert) {
+            age_scale.floor('month');
+          },/invalid_scale_err/,'month not valid scale for cosmo');
+          assert.equal(age_scale.floor('age').getTime(),1000000,'Should floor to 1M years');
+
+          var cosmo_year = new TL.BigDate({'year': 1945});
+          assert.equal(cosmo_year.floor('decade').getTime(),1940, 'decade should floor 1945 to 1940')
+
+      });
+
+      QUnit.test("TL.Date date formatting", function(assert) {
+        var msgs = TL.Language.default;
+        var d = TL.Date.makeDate({year: '2014', month: '1', day: '1' })
+        assert.equal(d.getDisplayDate(msgs),"January 1, 2014")
+        var d = TL.Date.makeDate({year: '2014'})
+        assert.equal(d.getDisplayDate(msgs),"2014")
+      });
+
+      QUnit.test("TL.Util.isTrue", function(assert) {
+        assert.ok(TL.Util.isTrue(true));
+        assert.notOk(TL.Util.isTrue(false));
+        assert.notOk(TL.Util.isTrue());
+        assert.notOk(TL.Util.isTrue(null));
+        assert.ok(TL.Util.isTrue('true'));
+        assert.ok(TL.Util.isTrue(1));
+      })
+
+      QUnit.module("TL.DateUtil tests",{});
+      QUnit.test("TL.DateUtil", function(assert) {
+        var a = {start_date: TL.Date.makeDate({year: 1999})} // will break when we have start dates
+        var b = {start_date: TL.Date.makeDate({year: 2000})}
+        var c = {start_date: TL.Date.makeDate({year: 2001})}
+
+        var ary = [c,b,a]
+        TL.DateUtil.sortByDate(ary);
+        assert.equal(ary[0],a,"A should sort first")
+        assert.equal(ary[1],b,"B should sort second")
+        assert.equal(ary[2],c,"C should sort third")
+
+        ary = [b,a,c];
+        TL.DateUtil.sortByDate(ary);
+        assert.equal(ary[0],a,"A should sort first")
+        assert.equal(ary[1],b,"B should sort second")
+        assert.equal(ary[2],c,"C should sort third")
+
+        ary = [b,c,a]
+        TL.DateUtil.sortByDate(ary);
+        assert.equal(ary[0],a,"A should sort first")
+        assert.equal(ary[1],b,"B should sort second")
+        assert.equal(ary[2],c,"C should sort third")
+
+
+      })
+
+      QUnit.test("TL.DateUtil.parseTime", function(assert){
+
+        var test_date = function(time_str,expected_hour, expected_minute, expected_second, expected_milli) {
+          try {
+            var parsed = TL.DateUtil.parseTime(time_str);
+            assert.equal(parsed.hour,expected_hour,time_str + " expected hour " + expected_hour);
+            assert.equal(parsed.minute,expected_minute,time_str + " expected minute " + expected_minute);
+            assert.equal(parsed.second,expected_second,time_str + " expected second " + expected_second);
+            assert.equal(parsed.millisecond,expected_milli,time_str + " expected milli " + expected_milli);
+          } catch(e) {
+            assert.ok(false, "Failure testing " + time_str + " got " + e);
+          }
+
+
+        }
+        test_date('11:30:40.5', 11, 30, 40, 500);
+
+
+        test_date('11:30', 11, 30, null, null);
+        test_date('11.30', 11, 30, null, null);
+        test_date('1130', 11, 30, null, null);
+        test_date('11.30pm', 23, 30, null, null);
+        test_date('11:30 pm', 23, 30, null, null);
+        test_date('1130 pm', 23, 30, null, null);
+        test_date('11:30:40', 11, 30, 40, null);
+        test_date('23:30:40', 23, 30, 40, null);
+        test_date('11:30:40 pm', 23, 30, 40, null);
+        test_date('11:30:40pm', 23, 30, 40, null);
+        test_date("12:33 PM", 12, 33, null, null);
+        test_date("1233", 12, 33, null, null);
+        test_date("12:33 a.m.", 0, 33, null, null);
+        test_date("0033", 0, 33, null, null);
+        throws(function(assert) {TL.DateUtil.parseTime('24:30')}, /invalid_hour_err/i, "hour 24 throws invalid_hour_err error");
+        throws(function(assert) {TL.DateUtil.parseTime('23:30pm')}, /invalid_hour_err/i, 'hour 23 with pm throws invalid_hour_err error' );
+
+
+
+      });
+
+      QUnit.module("TL.Language tests",{});
+      QUnit.test("TL.Language",function(assert) {
+        var msgs = new TL.Language();
+        assert.equal(msgs.name,"English","English is default");
+        assert.equal(msgs.lang,"en","en is default");
+        assert.equal(msgs._('loading'),"Loading","get a message");
+        assert.equal(msgs._('foobar'),"foobar","invalid keys should pass through");
+
+        var msgs = TL.Language.fallback;
+        assert.equal(msgs.name,"English","English is default");
+        assert.equal(msgs.lang,"en","en is default");
+        assert.equal(msgs._('loading'),"Loading","get a message");
+        assert.equal(msgs._('foobar'),"foobar","invalid keys should pass through");
+
+        assert.equal(TL.Language.formatNumber(18.54,'%.1f and some other stuff'), "18.5 and some other stuff", "check rounding and replacement")
+
+        assert.equal(TL.Language.formatNumber(18.54,'a literal display year'), 'a literal display year', "pass through literals as display dates")
+
+        assert.equal(msgs.formatBigYear({'year': 20000}, 'foobar'), '20.0 thousand years ago', "use fallback bigdateformat")
+      })
+
+      QUnit.test( "TL.Language test non-english", function(assert) {
+          var msgs = new TL.Language({language: 'pl'});
+          assert.equal(msgs.name,"English","English is default and polish doesn't have one");
+          assert.equal(msgs.lang,"pl","should have gotten 'pl'");
+          assert.equal(msgs._('loading'),"\u0141adowanie","get a message for loading");
+          assert.equal(msgs._('foobar'),"foobar","invalid keys should pass through");
+      });
+
+
+      QUnit.test("TL.Language date formatting", function(assert) {
+        var msgs = TL.Language.fallback;
+        var d = new Date(2014,7,7,4,5,0);
+        assert.equal(msgs.formatDate(d,'d'),'7','short day');
+        assert.equal(msgs.formatDate(d,'dd'),'07','padded day');
+        assert.equal(msgs.formatDate(d,'ddd'),'Thurs.','short day of week');
+        assert.equal(msgs.formatDate(d,'dddd'),'Thursday','full day of week');
+        assert.equal(msgs.formatDate(d,'m'),'8','month number');
+        assert.equal(msgs.formatDate(d,'mm'),'08','padded month number');
+        assert.equal(msgs.formatDate(d,'mmm'),'Aug.','short month name');
+        assert.equal(msgs.formatDate(d,'mmmm'),'August','long month name');
+        assert.equal(msgs.formatDate(d,'yy'),'14','short year');
+        assert.equal(msgs.formatDate(d,'yyyy'),'2014','long year');
+        assert.equal(msgs.formatDate(d,'h'),'4','hour');
+        assert.equal(msgs.formatDate(d,'hh'),'04','padded hour');
+        assert.equal(msgs.formatDate(d,'H'),'4','hour (24HR)');
+        assert.equal(msgs.formatDate(d,'HH'),'04','padded hour (24HR)');
+        assert.equal(msgs.formatDate(d,'M'),'5','minute');
+        assert.equal(msgs.formatDate(d,'MM'),'05','padded minute');
+        var d2 = new Date(d.getTime()+(1000*60*60*12));
+        assert.equal(msgs.formatDate(d2,'H'),'16','hour (24HR after noon)');
+        assert.equal(msgs.formatDate(d2,'HH'),'16','padded hour (24HR after noon)');
+        assert.equal(msgs.formatDate(d,'s'),'0','second');
+        assert.equal(msgs.formatDate(d,'ss'),'00','padded second');
+
+        var d = new Date(2014,7,7,4,5,0);
+        d.setFullYear(-500);
+        assert.equal(msgs.formatDate(d,'yyyy'),'500 <span>BCE</span>','BCE date');
+
+
+      });
+
+      // QUnit.test("TimeScale._assessGroups", function(assert){
+      //   var slides = [{group: 'alice'}, { group: 'bob'}, {group: 'alice'}, {group: 'carol'}];
+      //   var groups = TL.TimeScale._assessGroups(slides);
+      //   assert.equal(groups.length,3);
+      // });
+
+
+      function asyncJSON(url) {
+            var data = TL.ajax({
+                url: url,
+                async: false
+            });
+            return JSON.parse(data.responseText);
+      }
+
+      QUnit.module("TL.ConfigFactory tests",{});
+
+      QUnit.test("TL.ConfigFactory", function(assert) {
+        var data = TL.ConfigFactory.googleFeedJSONtoTimelineJSON(asyncJSON('test/GoogleSpreadsheetFeedLegacyFormat.json'));
+        assert.equal(7, data.events.length, "7 entries in GoogleSpreadsheetFeedLegacyFormat");
+        assert.ok(data.title, "There should be a title.")
+        var data = TL.ConfigFactory.googleFeedJSONtoTimelineJSON(asyncJSON('test/GoogleSpreadsheetFeedTJS3Format.json'));
+        assert.equal(7, data.events.length, "7 events in GoogleSpreadsheetFeedTJS3Format (one title)");
+        assert.ok(data.title, "There should be a title.")
+        assert.equal(2012, data.events[0].start_date.year, "first non-title event is year 2012");
+        assert.equal(2011, data.events[6].start_date.year, "last non-title event is year 2011");
+      });
+
+      QUnit.test("TL.ConfigFactory.parseGoogleSpreadsheetURL", function(assert) {
+        var key = '1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI';
+        var parts = TL.ConfigFactory.parseGoogleSpreadsheetURL(key);
+        assert.equal(key, parts.key, "Bare sheet ID should come back in key")
+
+        var url = 'https://docs.google.com/spreadsheets/d/1a8jYcSMWGXupicLJhtNAhkQfta8Fc5qKinDIJtroOAI/pubhtml'
+        var key = '1a8jYcSMWGXupicLJhtNAhkQfta8Fc5qKinDIJtroOAI';
+        var parts = TL.ConfigFactory.parseGoogleSpreadsheetURL(url);
+        assert.equal(key, parts.key, "new-ish url format should get the right key")
+
+        var url = 'https://docs.google.com/spreadsheets/d/1a8jYcSMWGXupicLJhtNAhkQfta8Fc5qKinDIJtroOAI/pubhtml?gid=2066744085'
+        var key = '1a8jYcSMWGXupicLJhtNAhkQfta8Fc5qKinDIJtroOAI';
+        var worksheet = '2066744085';
+        var parts = TL.ConfigFactory.parseGoogleSpreadsheetURL(url);
+        assert.equal(key, parts.key, "new-ish url format should get the right key")
+        assert.equal(worksheet, parts.worksheet, "new-ish url format should get the right worksheet")
+
+        var url = 'https://docs.google.com/spreadsheets/d/1_7l1RsxQIodkOuKguCPMVQWgmQLGoPr7nBQa9l1k5_4/pubhtml'
+        var key = '1_7l1RsxQIodkOuKguCPMVQWgmQLGoPr7nBQa9l1k5_4';
+        var parts = TL.ConfigFactory.parseGoogleSpreadsheetURL(url);
+        assert.equal(key, parts.key, "new-ish url format should get the right key")
+      });
+
+      QUnit.module("TimelineConfig ajax tests", {});
+
+      QUnit.test("Handling CDN 'preview' URLs", function (assert){
+        assert.expect(0);
+        var bad_url = 'https://cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI&font=Default&lang=en&initial_zoom=2&height=650';
+        var done = assert.async();
+        var config = TL.ConfigFactory.makeConfig(bad_url,function(config) {
+            assert.notOk(config.isValid(), "Bad URL should result in invalid timeline config.");
+            var tl_error = config.messages.errors[0];
+            assert.equal(tl_error.message_key, 'invalid_url_err', "Expect 'invalid_url_err' in message key.");
+        })
+        done();
+      })
+
+      QUnit.module("user-interface JSON tests", {});
+
+      QUnit.test("TimelineConfig for user-interface", function(assert) {
+
+        var done = assert.async();
+        TL.ConfigFactory.makeConfig('/examples/user-interface/timeline3.json',function(config){
+            assert.ok((typeof(config) != undefined) ,"config loaded")
+            console.log(config," is null? ")
+            window.stash = config;
+            assert.ok((typeof(config.events) != undefined ),"config has events")
+            var slides = config.events;
+            var sorted = true;
+            for (var i = 0; i < slides.length - 1; i++) {
+              var earlier = slides[i];
+              var later = slides[i+1];
+              sorted = sorted && (earlier.start_date.data.date_obj <= later.start_date.data.date_obj);
+            };
+            assert.ok(sorted,"dates are sorted");
+            done();
+        });
+
+      });
+
+
+
+      QUnit.test("TimeScale", function(assert) {
+          var done = assert.async();
+          TL.ConfigFactory.makeConfig('/examples/user-interface/timeline3.json',function(config){
+              assert.ok(config,"test data loaded");
+              var timescale = new TL.TimeScale(config,{display_width: 2200, screen_multiplier: 3});
+              assert.equal(timescale.getMinorScale(),'year',"timescale should be years");
+              assert.ok(timescale.getTicks().major.ticks.length > 0,"should be some major ticks")
+              assert.ok(timescale.getTicks().minor.ticks.length > 0,"should be some minor ticks")
+              assert.equal(timescale.getNumberOfRows(),3,"Expecting 3 rows") // this will change if someone monkeys around with the config file!
+              assert.equal(timescale.getScale(),'human','test case uses human dates')
+              done();
+          });
+
+
+      });
+
+
+      QUnit.module("marktwain.json tests",{});
+
+      QUnit.test("TimeScale", function(assert) {
+          var done = assert.async();
+          TL.ConfigFactory.makeConfig('/examples/twain/marktwain.json',function(config){
+              var timescale = new TL.TimeScale(config);
+              assert.equal(timescale.getNumberOfRows(),5, "expect 5 rows");
+              assert.equal(timescale._positions.length,config.events.length,"There should be the same number of positions (" + timescale._positions.length + ") as slides ("+config.events.length+")")
+              var row_check = new Array(timescale.getNumberOfRows());
+              for (var i = 0; i < row_check.length; i++) {
+                row_check[i] = [];
+              };
+              var all_posinfos_defined = true;
+
+              for (var i = 0; i < config.events.length; i++) {
+                var pos_info = timescale.getPositionInfo(i);
+                all_posinfos_defined = all_posinfos_defined && (typeof(pos_info) != "undefined")
+                row_check[pos_info.row].push(pos_info);
+              };
+              assert.ok(all_posinfos_defined,"There should be a pos_info for every idx");
+              var slides_in_rows = 0;
+              for (var i = 0; i < timescale.getNumberOfRows(); i++) {
+                slides_in_rows += row_check[i].length;
+                var no_overlaps = true;
+                for (var j = 1; j < row_check[i].length; j++) {
+                  no_overlaps = no_overlaps && (row_check[i][j-1].end < row_check[i][j].start);
+                };
+                assert.ok(no_overlaps,"No overlaps in row " + i)
+              };
+              assert.equal(slides_in_rows,config.events.length,"In checking rows we should have seen all slides")
+              done();
+          });
+      })
+
+      QUnit.test("TimeScale max rows", function(assert) {
+        var config = new TL.TimelineConfig({ scale: 'cosmological',
+          events:
+          [
+            {start_date: {year: 1}, end_date: {year: 1000}},
+            {start_date: {year: 100}, end_date: {year: 1500}},
+            {start_date: {year: 200}, end_date: {year: 2000}},
+            {start_date: {year: 300}, end_date: {year: 2500}},
+            {start_date: {year: 400}, end_date: {year: 2600}},
+            {start_date: {year: 500}, end_date: {year: 4000}},
+          ]
+        })
+        var timescale = new TL.TimeScale(config,{display_width: 600, screen_multiplier: 3, max_rows: 4});
+        assert.equal(timescale.getNumberOfRows(),4,"Max rows 4 should be honored.")
+        var timescale = new TL.TimeScale(config,{display_width: 600, screen_multiplier: 3, max_rows: 3});
+        assert.equal(timescale.getNumberOfRows(),3,"Max rows 3 should be honored.")
+      });
+
+
+
+    </script>
+</head>
+<body>
+    <div id="qunit"></div>
+</body>
+</html>
diff --git a/tests/application/modules/opac/controllers/RechercheControllerTest.php b/tests/application/modules/opac/controllers/RechercheControllerTest.php
index 1244c078fc56c787ad0f64f2d97ad8c7cd39571f..d097db3d7c47f59427167ea666400f085e2fab0b 100644
--- a/tests/application/modules/opac/controllers/RechercheControllerTest.php
+++ b/tests/application/modules/opac/controllers/RechercheControllerTest.php
@@ -1825,7 +1825,7 @@ class RechercheControllerSimpleActionWithListeFormatChronoTest extends Recherche
 
   /** @test */
   public function timelineJSShouldBeLoaded() {
-    $this->assertXPath('//script[contains(@src, "public/opac/TimelineJS-2.25/compiled/js/storyjs-embed.js")]');
+    $this->assertXPath('//script[contains(@src, "public/opac/TimelineJS3-3.5.1/compiled/js/timeline-embed.js")]');
   }
 
 
diff --git a/tests/library/ZendAfi/View/Helper/ListeNotices/ChronoSourceTest.php b/tests/library/ZendAfi/View/Helper/ListeNotices/ChronoSourceTest.php
index ed191f9471460e6a32ad9c24954d3f7c3e639dda..b6f19433b82f42f21f5f3cc5155c28af91f4ba4b 100644
--- a/tests/library/ZendAfi/View/Helper/ListeNotices/ChronoSourceTest.php
+++ b/tests/library/ZendAfi/View/Helper/ListeNotices/ChronoSourceTest.php
@@ -59,85 +59,73 @@ class ZendAfi_View_Helper_ListeNotices_ChronoSourceTest extends ViewHelperTestCa
   }
 
 
-  /** @test */
-  public function timelineHeadlineShouldBeResultatRecherche() {
-    $this->assertEquals('Résultat de la recherche', $this->_json->timeline->headline);
-  }
-
-
-  /** @test */
-  public function timelineTypeShouldBeDefault() {
-    $this->assertEquals('default', $this->_json->timeline->type);
-  }
-
-
   /** @test */
   public function firstNoticeStartDateShouldBe2009() {
-    $this->assertEquals('2009', $this->_json->timeline->date[0]->startDate);
+    $this->assertEquals('2009', $this->_json[0]->start_date->year);
   }
 
 
   /** @test */
   public function firstNoticeStartDateShouldBeCurrentYear() {
-    $this->assertEquals(date('Y'), $this->_json->timeline->date[1]->startDate);
+    $this->assertEquals(date('Y'), $this->_json[1]->start_date->year);
   }
 
 
   /** @test */
   public function firstNoticeHeadlineShouldContainsHarryPotterPrisonnierAzkaban() {
     $this->assertContains('Harry Potter et le prisonnier d\'Azkaban',
-                          $this->_json->timeline->date[0]->headline);
+                          $this->_json[0]->text->headline);
   }
 
 
   /** @test */
   public function secondNoticeHeadlineShouldContainsLaJeuneFille() {
-    $this->assertContains('La jeune fille', $this->_json->timeline->date[1]->headline);
+    $this->assertContains('La jeune fille', $this->_json[1]->text->headline);
   }
 
 
   /** @test */
   public function firstNoticeTextShouldContainsLinkToNotice() {
     $this->assertContains('/recherche/viewnotice/clef/POTTER/id/2',
-                          $this->_json->timeline->date[0]->text);
+                          $this->_json[0]->text->text);
   }
 
 
   /** @test */
   public function secondNoticeTextShouldBeSekouEstRenvoye() {
     $this->assertContains('Sékou est renvoyé de l\'usine parce qu\'il a osé',
-                          $this->_json->timeline->date[1]->text);
+                          $this->_json[1]->text->text);
   }
 
 
   /** @test */
   public function firstNoticeThumbnailShouldBeHpDotPng() {
-    $this->assertContains('hp.png', $this->_json->timeline->date[0]->asset->thumbnail);
+    $this->assertContains('hp.png', $this->_json[0]->media->thumbnail);
   }
 
 
   /** @test */
   public function firstNoticeMediaShouldBeHpBigDotPng() {
-    $this->assertContains('hp_big.png', $this->_json->timeline->date[0]->asset->media);
+    $this->assertContains('hp_big.png', $this->_json[0]->media->url);
   }
 
 
   /** @test */
   public function firstNoticeThumbnailShouldBeSupporAutDotPng() {
-    $this->assertContains('supports/aut_s.png', $this->_json->timeline->date[1]->asset->thumbnail);
+    $this->assertContains('supports/aut_s.png', $this->_json[1]->media->thumbnail);
   }
 
 
   /** @test */
   public function firstNoticeHeadlineShouldLinkToRechercheViewNoticeClefPotter() {
-    $this->assertContains('/recherche/viewnotice/clef/POTTER/id/2', $this->_json->timeline->date[0]->headline);
+    $this->assertContains('/recherche/viewnotice/clef/POTTER/id/2',
+                          $this->_json[0]->text->headline);
   }
 
 
   /** @test */
   public function secondNoticeHeadlineShouldLinkToRechercheViewNoticeClefJF() {
-    $this->assertContains('/recherche/viewnotice/clef/JF/id/45', $this->_json->timeline->date[1]->headline);
+    $this->assertContains('/recherche/viewnotice/clef/JF/id/45',
+                          $this->_json[1]->text->headline);
   }
-
 }
-?>
\ No newline at end of file