diff --git a/.gitignore b/.gitignore index bdb124730..f82ae93ff 100644 --- a/.gitignore +++ b/.gitignore @@ -2,14 +2,13 @@ .DS_Store* dev_examples/ cdn/ -Embed.CDN.js -Embed.CDN.Generator.js -compiled/generator.html -compiled/index.html -compiled/js/timeline-embed-cdn.js -compiled/js/timeline-embed-generator.js -compiled/css/timeline-generator.css +compiled *.tmproj *.tmproject tmtags source/gfx/Sprites/ +/node_modules +*.pyc +codekit-config.json +build + diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..e69de29bb diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 000000000..1a1176208 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,106 @@ +2.35.6 (2015-03-25) +------ +Restore original animation/easing (revert pull #681) + +2.35.5 (2015-02-26) +------ +#672,679,681,683 a series of presentation/performance tweaks from @acdha +Fix auto-linking regression + +2.35.4 (2015-02-17) +------ +Fix Stamen map tile URL bug + + +2.35.3 (2015-02-17) +------ +#673 Update Taiwanese locale +#689 Update Thai locale +#693 Update Polish locale +#705 Frisian localization +#722 Support 'youtubeTheme' config option +#732 Updated German Translations +#733 Move "Swipe to Navigate" to I18N. Now we need translations for 55 languages! +#744 Hindi localization +#745 Update Icelandic date formats +#749 Irish localization +#762 Belarusian localization + +2.35.2 (2014-11-24) +------ +fix half-width bug on small displays + +2.35.1 (2014-11-19) +------ +#719 whackamole with JS dates + +2.35.0 (2014-11-19) +------ +#718 Issue with dates in 1970 in GMT/BST time zones + +2.34.1 +------ +#710 fix regression from #706 re IE https +#709 retina image for loading.gif (even though we don't use it) + +2.34.0 +------ +Remove HTTPS URL rewriting for older IE. +don't do analytics on https +Check to make sure that every slide has a start date, so that people get a clear warning if the spreadsheet header has been changed. +fix jquery version check, again. (should accept jquery 2, although TimelineJS has not been tested with jquery 2) cf. #551 +Update ko.js translation file +Update fa.js + +2.33.1 +------ +Fix bug in handling maps.google URLs +Update zh-cn localization file. + +2.33.0 +------ +#638 (WIP) better handle new-format Google Maps URLs +#597 parse new-format Google Spreadsheet URLs correctly +(no ticket) Support "W" as date format token for "week" based on existing getWeek add on to Date.prototype +#632 Accept *.bmp as image URL in media field +#631 Add bower file +#589 remove unused code that refers to non-existent modules +#526 fix jQuery version check so 1.10.x > 1.9.x +#529 fix untagify to remove closing tags as well +#567 be more permissive about iframe markup +#512 fix Dark.css theme even though themes are generally not supported +#520 treat Streetview API urls as images, not maps +#536 fix typo in README.md +#623 set maxheight on soundcloud embeds +#624 'crush' pngs +#625 deal with nutty MSIE user agent strings + +2.32.0 +------ +Stop YouTube players when slide changes +Better method for determining embed path root +Check for iframe and blockquote media before other url tests +Add languages: 'hr' (Croatian), 'uk' (Ukrainian) +minor fixes to language files for 'fi' (Finnish) 'sl' (Slovenian) + +2.31.0 +------ +Add languages: 'ro' (Romanian), 'th' (Thai) +minor fixes to language files for 'es' (Spanish) 'fa' (Farsi), 'hu' (Hungarian), 'no' (Norwegian) +add OpenStreetMap as a map option ('osm') +Support '.svg' as an image media type +support custom thumbnails when no media is specified +clearer warning about "compatibility mode" to IE users. + +2.30.0 +------ +Fix language code for 'zh-cn' (Chinese) +add 'fa' (Farsi) +Move 'remove' function from Array.prototype to a util method to avoid adverse affects on other JS code. + +2.26.2 +----- + +* Start a CHANGELOG +* Change embed HTML to dynamically set the embed path, to support use over https + diff --git a/DEVELOPER.md b/DEVELOPER.md new file mode 100644 index 000000000..6fa03e968 --- /dev/null +++ b/DEVELOPER.md @@ -0,0 +1,84 @@ +## Requirements + + python 2.7.x + + [virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/) + + [Node.js](http://nodejs.org) + + [LESS](http://lesscss.org) + + # npm install -g less + + [UglifyJS](https://github.com/mishoo/UglifyJS) + + # npm install -g uglify-js@">=2.4" + +## Setup + + # Change into the parent directory containing your repositories + cd path_to_repos_root + + # Clone the secrets repository (if necessary) + git clone git@github.com:NUKnightLab/secrets.git + + # Clone KnightLab support repositories (General public, you can skip this step) + git clone git@github.com:NUKnightLab/cdn.knightlab.com.git + git clone git@github.com:NUKnightLab/fablib.git + + # Clone the timeline repository (and the submodules) + git clone --recursive git@github.com:NUKnightLab/TimelineJS.git + + # Change into the timeline repository + cd TimelineJS + + # Create a virtual environment + mkvirtualenv TimelineJS + + # Activate the virtual environment + workon TimelineJS + + # Install python requirements + pip install -r requirements.txt + + # Run the development server. + fab serve + + # Re-compile to preview changes. Of course this will need to be in another terminal, or after the fab serve command was put in the + # background. It would be great to automate this, but we would like to not add another build system and haven't figured out how to + # do it with fabric. Pull requests are welcome! + fab build + +## Overview + +Files in the `source` directory are resources for deployment to the CDN. + +Files in the `website` directory are specific to the website. + +`config.json` is used to control building, staging, and deployment + +## Updating the documentation site + +Documentation site files are in the `website` directory. To review your edits locally, run `fab serve` to start a local server on [http://localhost:5000](http://localhost:5000). + +## Deploying updates to the documentation site (timeline.knightlab.com) + +To deploy to S3, type `fab deploy`. + +## Adding support for a new language + +* Add the file with the correct ISO-639 language code name in the `source/js/Core/Language/locale` directory. +* Update website/templates/_make.html to refer to the new file (remember to sort alphabetically by language name, not code) +* create a test timeline using the new language to verify that it basically works +* deploy a new version (don't forget to stage_wp) +* update knightlab-timeline.php in the TimelineJS-Wordpress-Plugin repo and release that too. + + +## Deploying javascript changes to the CDN + +To stage your changes to a versioned directory in your local CDN repository, type `fab stage` You will be prompted for the new version number. After you provide it, this `fab stage` runs a build, copies the files into a versioned directory in your local `cdn.knightlab.com` repository, and tags the last commit with a version number. + +To stage your changes to the `latest` directory in your local CDN repository, type `fab stage_latest` You will be prompted for which version number you want to stage as the 'latest' version on the CDN. This copies files from the directory with that version in your local `cdn.knightlab.com` respository into the corresponding `latest` directory -- so you will have to have used `fab stage` before this. + +You must push and deploy all CDN changes separately from that repository. Don't forget to edit the index page there until we work out some automated index building system. + diff --git a/LICENSE b/LICENSE index aed8f1fc9..d061c3619 100644 --- a/LICENSE +++ b/LICENSE @@ -1,13 +1,365 @@ -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 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/. -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. +Mozilla Public License Version 2.0 +================================== -http://www.gnu.org/licenses/ +1. Definitions +-------------- -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"). \ No newline at end of file +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/README.markdown b/README.markdown index 615b6d1ff..130af45de 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,47 @@ -# TimelineJS +# This Version of Timeline is no longer under development + +Therefore, GitHub issues and pull requests have been disabled. + +Knight Lab has created a new version at https://github.com/NUKnightLab/TimelineJS3 . The new library should work with existing Google Spreadsheets, but not existing TimelineJS JSON files. The new version of TimelineJS requires a new JSON format, and there is no direct conversion tool, although it should not be too complicated to manually or programatically convert an old JSON file. + +Knight Lab will continue to serve this version of Timeline from + +* https://cdn.knightlab.com/libs/timeline/latest/js/timeline-min.js +* https://cdn.knightlab.com/libs/timeline/latest/js/timeline.js +* https://cdn.knightlab.com/libs/timeline/latest/css/timeline.css + +However, no future development on this line of code is planned. + +---- + +**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) + - [Loading the files](#loading-the-files) + - [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 @@ -15,127 +58,316 @@ JSON. ## Add it to your site -Place the embed code where you want the timeline to show in the `` of your site. +### Using Inline (*easiest*) +Place the embed code where you want the timeline to show in the `` of your site. See [Config Options](#config-options) for a full list of what you can set in the config. ```html
- + +``` +### 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 + + + + + + + + + +
+ +``` + +### Loading the files +If you like, you may load TimelineJS from the KnightLab's CDN. The examples above demonstrate how to do this using `story-embed.js`, which is the simplest way to set up a Timeline of your own. + +If for some reason you need more fine-grained control over your timeline, load the javascript and CSS files separately. We recommend that you load them from our CDN. + +```html + + + + + + + ``` - -## Options -###Language +If you need to serve copies of the files from your own server, use the entire contents of the ["/build/" directory](https://github.com/NUKnightLab/TimelineJS/tree/master/build) of our GitHub repository. If you use a local copy of `story-embed.js` it should automatically load the other Timeline resources from your server. + +## 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* +*default is `en` English* Languages available: -* `en` *English* -* `fr` *Français* -* `es` *Español* -* `de` *Deutsch* -* `it` *Italiano* -* `pt-br` *Português Brazil * -* `nl` *Dutch* +* `af` *Afrikaans* +* `ar` *Arabic* +* `hy` *Armenian* +* `eu` *Basque* +* `be` *Belarusian* +* `bg` *Bulgarian* +* `ca` *Catalan* +* `zh-cn` *Chinese* +* `hr` *Croatian / Hrvatski* * `cz` *Czech* -* `dk` *Danish* +* `da` *Danish* +* `nl` *Dutch* +* `en` *English* +* `en-24hr` *English (24-hour time)* +* `eo` *Esperanto* +* `et` *Estonian* +* `fo` *Faroese* +* `fa` *Farsi* +* `fi` *Finnish* +* `fr` *French* +* `fy` *Frisian* +* `gl` *Galician* +* `ka` *Georgian* +* `de` *German / Deutsch* +* `el` *Greek* +* `he` *Hebrew* +* `hi` *Hindi* +* `hu` *Hungarian* +* `is` *Icelandic* * `id` *Indonesian* +* `ga` *Irish* +* `it` *Italian* +* `ja` *Japanese* +* `ko` *Korean* +* `lv` *Latvian* +* `lt` *Lithuanian* +* `lb` *Luxembourgish* +* `ms` *Malay* +* `ne` *Nepali* +* `no` *Norwegian* * `pl` *Polish* +* `pt` *Portuguese* +* `pt-br` *Portuguese (Brazilian)* +* `ro` *Romanian* +* `rm` *Romansh* * `ru` *Russian* -* `is` *Icelandic* -* `fo` *Icelandic* -* `kr` *월요일* -* `ja` *日本語* -* `zh-ch` *中文* -* `zh-tw` *Taiwanese Mandarin* -* `ta` *தமிழ் - Tamil* - -Help us add more. Grab a copy of a language file and replace it with your language [Example language file](https://github.com/VeriteCo/TimelineJS/blob/master/source/js/locale/en.js) - -###Start at End +* `sr-cy` *Serbian - Cyrillic* +* `sr` *Serbian - Latin* +* `si` *Sinhalese* +* `sk` *Slovak* +* `sl` *Slovenian* +* `es` *Spanish* +* `sv` *Swedish* +* `tl` *Tagalog* +* `ta` *Tamil* +* `zh-tw` *Taiwanese* +* `te` *Telugu* +* `th` *Thai* +* `tr` *Turkish* +* `uk` *Ukrainian* + + + +Help us add more. Grab a copy of a language file and replace it with your language [Example language file](https://github.com/NUKnightLab/TimelineJS/blob/master/source/js/Core/Language/locale/en.js) and find your language's [two letter code here](http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) + +###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 `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. +This will tweak the default zoom level. Equivalent 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 `hash_bookmark` set to true to allow bookmarking slides using the hash tag *default is false* -###Map Style Types +###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 ](maps.stamen.com) +* [Stamen Maps ](http://maps.stamen.com) * `toner` * `toner-lines` * `toner-labels` * `watercolor` * `sterrain` - + * Google Maps * `ROADMAP` * `TERRAIN` * `HYBRID` * `SATELLITE` -###Font Options +* OpenStreetMap + - `osm` + +###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 +* `AbrilFatface-Average` *Abril Fatface & Average* +* `Arvo-PTSans` *Arvo & PT Sans* +* `Bevan-PotanoSans` *Bevan & Potano Sans* +* `BreeSerif-OpenSans` *Bree Serif & Open Sans* +* `DroidSerif-DroidSans` *Droid Serif & Droid Sans* +* `Georgia-Helvetica` *Georgia & Helvetica Neue* +* `Lekton-Molengo` *Lekton & Molengo* +* `Merriweather-NewsCycle` *Merriweather & News Cycle* +* `NewsCycle-Merriweather` *News Cycle & Merriweather* +* `NixieOne-Ledger` *Nixie One & Ledger* +* `Pacifico-Arimo` *Pacifico & Arimo* +* `PlayfairDisplay-Muli` *Playfair Display & Muli* +* `PoiretOne-Molengo` *Poiret One & Molengo* +* `PTSerif-PTSans` *PT Serif & PT Sans* +* `PT` *PT Sans & PT Narrow & PT Serif* +* `Rancho-Gudea` *Rancho & Gudea* +* `SansitaOne-Kameron` *Sansita One & Kameron* +* Or make your own + +####Font Combination Preview: +![Font Combination Preview](http://timeline.knightlab.com/static/img/make/font-options.png) ## File Formats ### JSON: -JSON is the native data format for TimelineJS. It is easy enough for “normals” -to use but powerful enough for real nerds to get excited about. +JSON is the native data format for TimelineJS. -The thing about JSON is it is picky. A misplaced comma or quotation mark can -prevent the timeline from loading properly. Instructions on actually using the -JSON file are included in the example data.JSON file. +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":"

Intro body text goes here, some HTML is ok

", + "asset": { + "media":"http://yourdomain_or_socialmedialink_goes_here.jpg", + "credit":"Credit Name Goes Here", + "caption":"Caption text goes here" + }, + "date": [ + { + "startDate":"2011,12,10,07,02,10", + "endDate":"2011,12,11,08,11", + "headline":"Headline Goes Here", + "text":"

Body text goes here, some HTML is OK

", + "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":"

Body text goes here, some HTML is OK

", + "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", @@ -153,6 +385,7 @@ Here is the full model: "headline":"Headline Goes Here", "text":"

Body text goes here, some HTML is OK

", "tag":"This is Optional", + "classname":"optionaluniqueclassnamecanbeaddedhere", "asset": { "media":"http://twitter.com/ArjunaSoriano/status/164181156147900416", "thumbnail":"optional-32x32px.jpg", @@ -166,30 +399,30 @@ Here is the full model: "startDate":"2011,12,10", "endDate":"2011,12,11", "headline":"Headline Goes Here", - "text":"

Body text goes here, some HTML is OK

", "tag":"This is Optional" } - + ] + } } ``` + ### 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://docs.google.com/a/digitalartwork.net/previewtemplate?id=0AppSVxABhnltdEhzQjQ4MlpOaldjTmZLclQxQWFTOUE&mode=public) +You can find the template here: [TimelineJS Google Spreadsheet Template](https://drive.google.com/previewtemplate?id=0AppSVxABhnltdEhzQjQ4MlpOaldjTmZLclQxQWFTOUE&mode=public&pli=1#) -There are only four things you need to know in order to create a timeline +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 @@ -198,7 +431,6 @@ using Google Docs: 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. @@ -206,22 +438,13 @@ using Google Docs: 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: + etc.), then paste it into the timeline’s HTML file (see [Add it to your site](#add-it-to-your-site) ) - - `timeline.init(“URL goes here”)` - 4. Designate the “start” slide - This indicates which event is the title slide, the one that begins the - timeline. - - Only one should be labeled "start" (generally, the first one). The title slide - must have a start date, headline and text to appear properly. - ### 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. +Support for Storify is still in its early stages. It works though. Just paste a link to the storify story as the source. ## Media @@ -240,3 +463,9 @@ 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/bower.json b/bower.json new file mode 100644 index 000000000..d9c5e974b --- /dev/null +++ b/bower.json @@ -0,0 +1,38 @@ +{ + "name": "TimelineJS", + "version": "2.32.0", + "homepage": "http://timeline.knightlab.com", + "authors": [ + "Zach Wise ", + "NUKnightLab" + ], + "description": "A Storytelling Timeline built in JavaScript.", + "main": [ + "build/js/timeline.js", + "build/css/timeline.css", + "build/embed/index.html", + "build/js/storyjs-embed.js", + "build/js/storyjs-embed-generator.js", + "build/js/storyjs-embed-cdn.js" + ], + "keywords": [ + "timeline", + "storytelling", + "timelinejs", + "timeline.js", + "history", + "googledocs", + "storify" + ], + "repository": { + "type": "git", + "url": "git@github.com:NUKnightLab/TimelineJS.git" + }, + "license": "MPL v2.0", + "ignore": [ + "**/.*", + "examples", + "tests", + "website" + ] +} diff --git a/codekit-config.json b/codekit-config.json index 871272e58..c280ca6e5 100644 --- a/codekit-config.json +++ b/codekit-config.json @@ -1,530 +1,610 @@ { "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" : "6449", + "creatorBuild" : "8317", "files" : { - "\/source\/js\/lib\/AES.js" : { - "ignoreWasSetByUser" : 1, + "\/compiled\/js\/locale\/it.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/lib\/AES.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/lib\/AES-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it-min.js", + "fileType" : 64 }, - "\/dev_examples\/archive\/index_backup.html" : { + "\/compiled\/css\/themes\/font\/Lora-Istok.css" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/archive\/index_backup.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lora-Istok.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/dev_examples\/debug_1.html" : { + "\/compiled\/js\/locale\/ru.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/debug_1.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru-min.js", + "fileType" : 64 }, - "\/compiled\/css\/timeline.css" : { + "\/source\/js\/Core\/Language\/locale\/de.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/timeline.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/de.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/de.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/SansitaOne-Kameron.css" : { + "\/source\/jade\/tests\/test_utc_firefox.jade" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/SansitaOne-Kameron.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_utc_firefox.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_utc_firefox.html", + "fileType" : 512 }, - "\/dev_examples\/power-plants\/fisk_ryanryanryan.jpg" : { - "ignoreWasSetByUser" : 0, + "\/source\/less\/Core\/Font\/DroidSerif-DroidSans.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/DroidSerif-DroidSans.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_ryanryanryan.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_ryanryanryan.jpg", - "initialSize" : 196798, - "fileType" : 9 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/examples\/example_googlespreadsheet.html" : { + "\/dev_examples\/archive\/taylor\/hilton.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_googlespreadsheet.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/hilton.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/hilton.jpg", + "initialSize" : 72463, + "fileType" : 4096 }, - "\/dev_examples\/taylor\/butterfield.jpg" : { + "\/dev_examples\/archive\/taylor\/oscar.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/butterfield.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/oscar.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/butterfield.jpg", - "initialSize" : 70444, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/oscar.jpg", + "initialSize" : 107669, + "fileType" : 4096 }, - "\/compiled\/js\/locale\/is.js" : { + "\/compiled\/js\/locale\/pt-br.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is-min.js", - "fileType" : 5 - }, - "\/dev_examples\/power-plants\/fisk_swanksalot.jpg" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_swanksalot.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_swanksalot.jpg", - "initialSize" : 119914, - "fileType" : 9 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br-min.js", + "fileType" : 64 }, - "\/source\/js\/locale\/en.js" : { + "\/source\/js\/Core\/Language\/locale\/el.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/en.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/el.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en.js", - "fileType" : 5 - }, - "\/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" : 13 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/el.js", + "fileType" : 64 }, - "\/source\/js\/Core\/VMM.FileExtention.js" : { + "\/source\/js\/Core\/Language\/locale\/zh-tw.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.FileExtention.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/zh-tw.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.FileExtention-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw.js", + "fileType" : 64 }, - "\/dev_examples\/houston\/wh3.jpg" : { + "\/source\/js\/Core\/Embed\/Embed.CDN.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/wh3.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/wh3.jpg", - "initialSize" : 89432, - "fileType" : 9 + "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\/VMM.Library.js" : { + "\/source\/js\/Core\/Core\/VMM.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.Library.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.Library-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/it.js" : { + "\/tests\/test_googlespreadsheet.html" : { "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" : 5 + "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/compiled\/js\/locale\/en.js" : { + "\/compiled\/js\/locale\/hu.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/en.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/hu.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en-min.js", - "fileType" : 5 - }, - "\/compiled\/generator.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/generator.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hu-min.js", + "fileType" : 64 }, - "\/source\/js\/locale\/pt-br.js" : { + "\/source\/js\/Core\/Language\/locale\/da.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/pt-br.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/da.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/da.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/zh-tw.js" : { + "\/compiled\/js\/locale\/sv.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sv.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw-min.js", - "fileType" : 5 - }, - "\/source\/js\/Embed\/Embed.CDN.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Embed\/Embed.CDN.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 2, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-embed-cdn.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sv-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/PT.css" : { + "\/compiled\/js\/locale\/eu.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PT.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/eu.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/eu-min.js", + "fileType" : 64 }, - "\/source\/js\/locale\/it.js" : { - "ignoreWasSetByUser" : 0, + "\/source\/less\/Core\/Font\/Pacifico-Arimo.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Pacifico-Arimo.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/it.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/css\/themes\/timeline-dark.png" : { + "\/dev_examples\/archive\/taylor\/born.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/born.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png", - "initialSize" : 8862, - "fileType" : 10 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/born.jpg", + "initialSize" : 50360, + "fileType" : 4096 }, - "\/dev_examples\/index2.html" : { + "\/source\/less\/Core\/Mixins.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Mixins.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/Mixins.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, "ignoreWasSetByUser" : 0, - "ignore" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/index2.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/js\/locale\/de.js" : { + "\/source\/less\/Core\/Font\/AbrilFatface-Average.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/AbrilFatface-Average.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, "ignoreWasSetByUser" : 0, - "ignore" : 1, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/de.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/de-min.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/dev_examples\/houston\/young.jpg" : { + "\/source\/js\/Core\/Language\/locale\/fo.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/young.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/young.jpg", - "initialSize" : 71002, - "fileType" : 9 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fo.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css" : { + "\/source\/jade\/sections\/example-head.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/source\/jade\/sections\/example-head.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/source\/jade\/sections\/example-head.html", + "fileType" : 512 }, - "\/dev_examples\/template_googlespreadsheet2\/index.html" : { + "\/source\/js\/Core\/Media\/VMM.Media.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/template_googlespreadsheet2\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.Media.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.Media-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/VMM.Util.js" : { + "\/compiled\/js\/locale\/lv.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.Util.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/lv.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.Util-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/lv-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/Arvo-PTSans.css" : { + "\/compiled\/js\/locale\/zh-cn.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Arvo-PTSans.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-cn.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-cn-min.js", + "fileType" : 64 }, - "\/source\/js\/Slider\/VMM.TouchSlider.js" : { + "\/source\/js\/Core\/Language\/VMM.Language.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Slider\/VMM.TouchSlider.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/VMM.Language.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Slider\/VMM.TouchSlider-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Language\/VMM.Language-min.js", + "fileType" : 64 }, - "\/compiled\/css\/timeline.png" : { + "\/source\/js\/Core\/Language\/locale\/ta.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/timeline.png", - "processed" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/timeline.png", - "initialSize" : 8608, - "fileType" : 10 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ta.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ta.js", + "fileType" : 64 }, - "\/source\/less\/Font\/PT.less" : { + "\/source\/js\/VMM.Timeline.License.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/PT.less", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.License.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PT.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.License-min.js", + "fileType" : 64 }, - "\/source\/js\/Media\/VMM.MediaType.js" : { + "\/compiled\/js\/locale\/zh-tw.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Media\/VMM.MediaType.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Media\/VMM.MediaType-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw-min.js", + "fileType" : 64 }, - "\/compiled\/index.html" : { + "\/tests\/test_utc_firefox.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/index.html", + "inputAbbreviatedPath" : "\/tests\/test_utc_firefox.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/examples\/example_kitchensink.html" : { + "\/dev_examples\/archive\/kitchen-sink\/index.html" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_kitchensink.html", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/kitchen-sink\/index.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/compiled\/js\/timeline-embed-cdn.js" : { + "\/source\/js\/Core\/Slider\/VMM.Slider.Slide.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/timeline-embed-cdn.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.Slide.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-embed-cdn-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.Slide-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/es.js" : { + "\/source\/less\/Core\/Font\/PoiretOne-Molengo.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PoiretOne-Molengo.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, "ignoreWasSetByUser" : 0, - "ignore" : 1, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es-min.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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 }, - "\/source\/less\/Font\/PTSerif-PTSans.less" : { + "\/source\/js\/Core\/Language\/locale\/hy.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/PTSerif-PTSans.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/hy.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hy.js", + "fileType" : 64 }, - "\/source\/less\/VMM.Timeline.Core.less" : { + "\/compiled\/js\/locale\/iw.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/VMM.Timeline.Core.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/iw.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/VMM.Timeline.Core.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/iw-min.js", + "fileType" : 64 }, - "\/source\/js\/VMM.Language.js" : { + "\/source\/js\/Core\/Media\/VMM.ExternalAPI.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/VMM.Language.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.ExternalAPI.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/VMM.Language-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.ExternalAPI-min.js", + "fileType" : 64 }, - "\/source\/js\/locale\/nl.js" : { + "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/nl.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js", - "fileType" : 5 + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg", + "initialSize" : 79732, + "fileType" : 4096 }, - "\/source\/less\/Font.Default.less" : { + "\/source\/less\/Core\/Font.Default.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font.Default.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/Font.Default.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/source\/jade\/includes\/ascii.jade" : { + "ignoreWasSetByUser" : 1, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Font.Default.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/Font.Default.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/source\/jade\/includes\/ascii.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/source\/jade\/includes\/ascii.html", + "fileType" : 512 }, - "\/source\/less\/Font\/Arvo-PTSans.less" : { + "\/compiled\/js\/locale\/ta.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/Arvo-PTSans.less", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ta.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Arvo-PTSans.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ta-min.js", + "fileType" : 64 }, - "\/dev_examples\/example_html.html" : { + "\/source\/jade\/sections\/embed-generator.jade" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/example_html.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/source\/jade\/sections\/embed-generator.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/source\/jade\/sections\/embed-generator.html", + "fileType" : 512 }, - "\/dev_examples\/embed.html" : { + "\/compiled\/css\/timeline@2x.png" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/embed.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/css\/timeline@2x.png", + "processed" : 0, + "outputAbbreviatedPath" : "\/compiled\/css\/timeline@2x.png", + "initialSize" : 49364, + "fileType" : 8192 }, - "\/source\/js\/locale\/ru.js" : { + "\/source\/js\/Core\/Language\/locale\/hu.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/ru.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/hu.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hu.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/woolfe.jpg" : { + "\/source\/jade\/tests\/test_extra_html.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/woolfe.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/woolfe.jpg", - "initialSize" : 113102, - "fileType" : 9 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_extra_html.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_extra_html.html", + "fileType" : 512 }, - "\/source\/less\/Font\/SansitaOne-Kameron.less" : { + "\/source\/jade\/tests\/test_iframe_640.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/SansitaOne-Kameron.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/SansitaOne-Kameron.css", + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_iframe_640.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_iframe_640.html", + "fileType" : 512 + }, + "\/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 + }, + "\/examples\/example_json.html" : { + "ignoreWasSetByUser" : 0, + "ignore" : 1, + "hidden" : 1, + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/examples\/example_json.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 + }, + "\/source\/less\/Core\/VMM.Core.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Core.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Core.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, "strictImports" : 0, - "fileType" : 0 + "ignoreWasSetByUser" : 1, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "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\/js\/locale\/ja.js" : { "ignoreWasSetByUser" : 0, @@ -535,1446 +615,2097 @@ "outputStyle" : 1, "syntaxCheckerStyle" : 0, "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ja-min.js", - "fileType" : 5 + "fileType" : 64 }, - "\/compiled\/js\/timeline-min.js" : { + "\/source\/js\/Core\/Media\/VMM.MediaType.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaType.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaType-min.js", + "fileType" : 64 }, - "\/source\/js\/locale\/pl.js" : { + "\/source\/jade\/tests\/test_googlespreadsheet_bc_era_ages_epoch.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/pl.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pl.js", - "fileType" : 5 + "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 }, - "\/source\/js\/VMM.Timeline.License.js" : { + "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css" : { "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" : 5 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/compiled\/js\/locale\/dk.js" : { + "\/compiled\/index.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 0, + "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/dk.js", + "inputAbbreviatedPath" : "\/compiled\/index.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 + }, + "\/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\/dk-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sk.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/born.jpg" : { + "\/compiled\/js\/locale\/da.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/born.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/born.jpg", - "initialSize" : 50360, - "fileType" : 9 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/da.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/da-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/warner.jpg" : { + "\/compiled\/js\/locale\/ca.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/warner.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/warner.jpg", - "initialSize" : 110210, - "fileType" : 9 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ca.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ca-min.js", + "fileType" : 64 }, - "\/source\/less\/VMM.Timeline.TimeNav.less" : { + "\/tests\/test_extra_html.html" : { "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" : 0 + "inputAbbreviatedPath" : "\/tests\/test_extra_html.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/source\/js\/lib\/jQuery\/easing.js" : { + "\/source\/js\/Core\/Language\/locale\/eu.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/lib\/jQuery\/easing.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/eu.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/lib\/jQuery\/easing-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/eu.js", + "fileType" : 64 }, - "\/source\/less\/Font\/Lekton-Molengo.less" : { + "\/source\/js\/Core\/Language\/locale\/tr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/Lekton-Molengo.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/tr.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lekton-Molengo.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tr.js", + "fileType" : 64 }, - "\/source\/less\/Theme\/Dark.less" : { - "ignoreWasSetByUser" : 1, + "\/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 + }, + "\/source\/js\/Core\/Language\/locale\/ar.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Theme\/Dark.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ar.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ar.js", + "fileType" : 64 }, - "\/examples\/example_storify.html" : { + "\/compiled\/css\/themes\/font\/PT.css" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_storify.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PT.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/dev_examples\/example_storify.html" : { + "\/compiled\/js\/storyjs-embed.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/example_storify.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-min.js", + "fileType" : 64 }, - "\/dev_examples\/embed-dark.html" : { + "\/source\/js\/Core\/Language\/locale\/it.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/embed-dark.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/it.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js", + "fileType" : 64 }, - "\/compiled\/lib\/jquery-min.js" : { + "\/source\/less\/Theme\/Dark.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Theme\/Dark.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, "ignoreWasSetByUser" : 1, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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\/Library\/LazyLoad.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/lib\/jquery-min.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/LazyLoad.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/lib\/jquery-min-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/LazyLoad-min.js", + "fileType" : 64 }, - "\/source\/js\/Embed\/Embed.js" : { - "ignoreWasSetByUser" : 1, + "\/source\/js\/Core\/Language\/locale\/ka.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Embed\/Embed.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ka.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-embed.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ka.js", + "fileType" : 64 }, - "\/source\/less\/Font\/AbrilFatface-Average.less" : { + "\/source\/jade\/tests\/test_googlespreadsheet_biblical_ad.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/AbrilFatface-Average.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet_biblical_ad.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_biblical_ad.html", + "fileType" : 512 }, - "\/dev_examples\/shit-people-say\/index.html" : { + "\/source\/js\/Core\/Core\/VMM.LoadLib.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/shit-people-say\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.LoadLib.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.LoadLib-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/final.jpg" : { + "\/dev_examples\/archive\/taylor\/burton.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/final.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/burton.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/final.jpg", - "initialSize" : 56926, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/burton.jpg", + "initialSize" : 85307, + "fileType" : 4096 }, - "\/source\/less\/VMM.Slider.less" : { + "\/source\/js\/Core\/Core\/VMM.Util.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/VMM.Slider.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Util.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/VMM.Slider.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Util-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/pt-br.js" : { + "\/examples\/example_storify.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 0, + "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br-min.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/examples\/example_storify.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css" : { + "\/tests\/test_jsonp.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css", + "inputAbbreviatedPath" : "\/tests\/test_jsonp.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 2048 }, - "\/compiled\/js\/timeline.js" : { + "\/compiled\/js\/locale\/cz.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/timeline.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz-min.js", + "fileType" : 64 }, - "\/source\/js\/VMM.Timeline.DataObj.js" : { + "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj.js", - "outputStyle" : 1, + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 + }, + "\/source\/js\/VMM.Timeline.js" : { + "ignoreWasSetByUser" : 1, + "ignore" : 0, + "hidden" : 0, + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.js", + "outputStyle" : 0, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/timeline.js", + "fileType" : 64 }, - "\/dev_examples\/middle-east\/MohamedBouazizi.jpg" : { + "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/middle-east\/MohamedBouazizi.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/middle-east\/MohamedBouazizi.jpg", - "initialSize" : 79732, - "fileType" : 9 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/dev_examples\/taylor\/retire.jpg" : { + "\/source\/js\/Core\/Language\/locale\/ru.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/retire.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/retire.jpg", - "initialSize" : 88811, - "fileType" : 9 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ru.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js", + "fileType" : 64 }, - "\/source\/js\/Media\/VMM.Media.js" : { + "\/source\/js\/Core\/Language\/locale\/af.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Media\/VMM.Media.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/af.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Media\/VMM.Media-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/af.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/nl.js" : { + "\/compiled\/js\/locale\/id.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id-min.js", + "fileType" : 64 }, - "\/dev_examples\/houston\/whChild.jpg" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, + "\/source\/js\/Core\/Library\/jQuery\/easing.js" : { + "ignoreWasSetByUser" : 1, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/whChild.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/whChild.jpg", - "initialSize" : 87009, - "fileType" : 9 + "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/jQuery\/easing.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/jQuery\/easing-min.js", + "fileType" : 64 }, - "\/dev_examples\/template_googlespreadsheet\/index.html" : { + "\/examples\/example_googlespreadsheet.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, + "ignore" : 1, + "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/template_googlespreadsheet\/index.html", + "inputAbbreviatedPath" : "\/examples\/example_googlespreadsheet.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/source\/less\/Reset.less" : { + "\/source\/js\/Core\/Core\/VMM.Date.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Reset.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Date.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/Reset.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Date-min.js", + "fileType" : 64 }, - "\/source\/js\/Slider\/VMM.Slider.js" : { + "\/dev_examples\/archive\/taylor\/index.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Slider\/VMM.Slider.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Slider\/VMM.Slider-min.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/index.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/compiled\/js\/locale\/kr.js" : { + "\/source\/js\/Core\/Core\/VMM.Library.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/kr.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Library.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/kr-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Library-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/todd.jpg" : { + "\/dev_examples\/archive\/taylor\/todd.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/todd.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/todd.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/todd.jpg", + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/todd.jpg", "initialSize" : 103878, - "fileType" : 9 + "fileType" : 4096 }, - "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css" : { + "\/source\/js\/Core\/Language\/locale\/id.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "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\/less\/Core\/VMM.Slider.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Slider.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Slider.css", "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/css\/themes\/font\/Lora-Istok.css" : { + "\/source\/jade\/includes\/mixins.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lora-Istok.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/source\/jade\/includes\/mixins.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/source\/jade\/includes\/mixins.html", + "fileType" : 512 }, - "\/dev_examples\/taylor\/giant.jpg" : { + "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/giant.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/giant.jpg", - "initialSize" : 94410, - "fileType" : 9 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/compiled\/css\/timeline-generator.css" : { + "\/source\/js\/Core\/Slider\/VMM.Slider.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/timeline-generator.css", + "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\/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" : 13 + "fileType" : 16 }, - "\/source\/less\/Font\/Bevan-PotanoSans.less" : { + "\/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 + }, + "\/source\/js\/Core\/Embed\/Embed.CDN.Generator.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/Bevan-PotanoSans.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.CDN.Generator.js", "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator.js", + "fileType" : 64 + }, + "\/source\/less\/Core\/Font\/PTSerif-PTSans.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PTSerif-PTSans.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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 + }, + "\/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 + }, + "\/source\/less\/Core\/Variables.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Variables.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/Variables.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/source\/less\/Core\/Font\/PlayfairDisplay-Muli.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PlayfairDisplay-Muli.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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\/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 + }, + "\/source\/less\/Core\/Font\/Georgia-Helvetica.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Georgia-Helvetica.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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\/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 + }, + "\/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\/css\/timeline.css" : { + "ignoreWasSetByUser" : 0, + "ignore" : 1, + "hidden" : 0, + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/css\/timeline.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 + }, + "\/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\/Font\/NixieOne-Ledger.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/NixieOne-Ledger.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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\/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 + }, + "\/source\/less\/Core\/Font\/Merriweather-NewsCycle.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Merriweather-NewsCycle.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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 + }, + "\/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 + }, + "\/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\/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\/Bevan-PotanoSans.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Bevan-PotanoSans.less", "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, "strictImports" : 0, - "fileType" : 0 + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/js\/locale\/ru.js" : { + "\/source\/less\/Core\/Font\/NewsCycle-Merriweather.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/NewsCycle-Merriweather.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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 + }, + "\/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 + }, + "\/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 + }, + "\/source\/less\/Core\/Font\/SansitaOne-Kameron.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/SansitaOne-Kameron.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/SansitaOne-Kameron.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/compiled\/js\/locale\/fi.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fi.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fi-min.js", + "fileType" : 64 }, - "\/source\/js\/VMM.Timeline.js" : { + "\/source\/less\/Core\/Typography.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Typography.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/Typography.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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 + }, + "\/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 + }, + "\/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\/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 + }, + "\/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 + }, + "\/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 + }, + "\/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 + }, + "\/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 + }, + "\/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\/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\/less\/VMM.Timeline.TimeNav.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/VMM.Timeline.TimeNav.less", + "outputAbbreviatedPath" : "\/source\/css\/VMM.Timeline.TimeNav.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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\/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 + }, + "\/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\/js\/Core\/Language\/locale\/fi.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fi.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fi.js", + "fileType" : 64 + }, + "\/source\/jade\/example_json.jade" : { + "ignoreWasSetByUser" : 0, + "ignore" : 0, + "hidden" : 0, + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/example_json.jade", "outputStyle" : 0, - "syntaxCheckerStyle" : 1, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline.js", - "fileType" : 5 + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/examples\/example_json.html", + "fileType" : 512 + }, + "\/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 }, - "\/source\/js\/Core\/VMM.Browser.js" : { + "\/compiled\/js\/locale\/sl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.Browser.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.Browser-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sl-min.js", + "fileType" : 64 + }, + "\/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 }, - "\/source\/js\/Slider\/VMM.DragSlider.js" : { + "\/compiled\/js\/locale\/pl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Slider\/VMM.DragSlider.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Slider\/VMM.DragSlider-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pl-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css" : { + "\/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 + }, + "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 16 }, - "\/source\/less\/Variables.less" : { + "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Variables.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/Variables.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/source\/js\/lib\/bootstrap-tooltip.js" : { - "ignoreWasSetByUser" : 1, + "\/compiled\/js\/locale\/nl.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/lib\/bootstrap-tooltip.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/lib\/bootstrap-tooltip-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl-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 }, - "\/source\/js\/locale\/kr.js" : { + "\/source\/js\/Core\/Language\/locale\/ko.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/kr.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ko.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/kr.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ko.js", + "fileType" : 64 }, - "\/source\/js\/locale\/ja.js" : { + "\/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\/less\/Core\/Font\/Rancho-Gudea.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Rancho-Gudea.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Rancho-Gudea.css", "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/ja.js", + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ja.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/js\/locale\/dk.js" : { + "\/source\/js\/Core\/Language\/locale\/gl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/dk.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/gl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/dk.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/gl.js", + "fileType" : 64 }, - "\/source\/less\/Font\/Merriweather-NewsCycle.less" : { + "\/source\/js\/Core\/Language\/locale\/lv.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/Merriweather-NewsCycle.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/lv.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/lv.js", + "fileType" : 64 }, - "\/dev_examples\/iframe.html" : { + "\/compiled\/js\/locale\/gl.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/iframe.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/gl.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/gl-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/sun.jpg" : { + "\/compiled\/js\/storyjs-embed-cdn.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/sun.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/sun.jpg", - "initialSize" : 47058, - "fileType" : 9 + "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn-min.js", + "fileType" : 64 }, - "\/source\/less\/VMM.Timeline.less" : { + "\/compiled\/js\/locale\/el.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/VMM.Timeline.less", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/el.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/timeline.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/el-min.js", + "fileType" : 64 }, - "\/source\/js\/locale\/zh-ch.js" : { + "\/source\/jade\/index.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/zh-ch.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-ch.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/source\/jade\/index.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/compiled\/index.html", + "fileType" : 512 }, - "\/source\/less\/Font\/NixieOne-Ledger.less" : { + "\/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 + }, + "\/source\/jade\/tests\/test_jsonp.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/NixieOne-Ledger.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_jsonp.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_jsonp.html", + "fileType" : 512 }, - "\/dev_examples\/power-plants\/fisk_greenpeaceusa2012.jpg" : { + "\/dev_examples\/archive\/taylor\/final.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_greenpeaceusa2012.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/final.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_greenpeaceusa2012.jpg", - "initialSize" : 77211, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/final.jpg", + "initialSize" : 56926, + "fileType" : 4096 }, - "\/source\/js\/locale\/de.js" : { + "\/source\/js\/Core\/Language\/locale\/en-24hr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/de.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/en-24hr.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/de.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en-24hr.js", + "fileType" : 64 }, - "\/source\/less\/Typography.less" : { + "\/source\/js\/VMM.Timeline.TimeNav.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Typography.less", + "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.TimeNav.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/Typography.css", - "strictImports" : 0, - "fileType" : 0 - }, - "\/dev_examples\/taylor\/burton.jpg" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/burton.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/burton.jpg", - "initialSize" : 85307, - "fileType" : 9 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.TimeNav-min.js", + "fileType" : 64 }, - "\/compiled\/js\/timeline-embed.js" : { + "\/source\/js\/Core\/Core\/VMM.Core.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/timeline-embed.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Core.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-embed-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Core-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/oscar.jpg" : { + "\/dev_examples\/archive\/taylor\/velvet.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/oscar.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/velvet.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/oscar.jpg", - "initialSize" : 107669, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/velvet.jpg", + "initialSize" : 77001, + "fileType" : 4096 }, - "\/dev_examples\/taylor\/dame.jpg" : { + "\/dev_examples\/archive\/taylor\/warner.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/dame.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/warner.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/dame.jpg", - "initialSize" : 108781, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/warner.jpg", + "initialSize" : 110210, + "fileType" : 4096 }, - "\/dev_examples\/middle-east\/index.html" : { + "\/source\/js\/VMM.Timeline.DataObj.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/middle-east\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj-min.js", + "fileType" : 64 }, - "\/dev_examples\/houston\/wh1.jpg" : { - "ignoreWasSetByUser" : 0, + "\/source\/less\/Core\/Font\/Arvo-PTSans.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Arvo-PTSans.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Arvo-PTSans.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/wh1.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/wh1.jpg", - "initialSize" : 452169, - "fileType" : 9 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/js\/locale\/es.js" : { + "\/source\/js\/Core\/Language\/locale\/sr-cy.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/es.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sr-cy.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-cy.js", + "fileType" : 64 }, - "\/dev_examples\/republican\/index.html" : { + "\/source\/jade\/tests\/test_googlespreadsheet_minutes.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/republican\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet_minutes.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_minutes.html", + "fileType" : 512 }, - "\/compiled\/js\/locale\/id.js" : { - "ignoreWasSetByUser" : 0, + "\/compiled\/lib\/jquery-min.js" : { + "ignoreWasSetByUser" : 1, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js", + "inputAbbreviatedPath" : "\/compiled\/lib\/jquery-min.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id-min.js", - "fileType" : 5 - }, - "\/dev_examples\/taylor\/hilton.jpg" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/hilton.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/hilton.jpg", - "initialSize" : 72463, - "fileType" : 9 - }, - "\/dev_examples\/houston\/index.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputAbbreviatedPath" : "\/compiled\/lib\/jquery-min-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css" : { + "\/compiled\/js\/timeline.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/compiled\/js\/timeline.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", + "fileType" : 64 }, - "\/compiled\/js\/timeline-embed-generator.js" : { + "\/source\/js\/Core\/Slider\/VMM.DragSlider.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/timeline-embed-generator.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.DragSlider.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-embed-generator-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.DragSlider-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/VMM.ProgressBar.js" : { - "ignoreWasSetByUser" : 1, + "\/source\/js\/Core\/Embed\/Embed.LoadLib.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.ProgressBar.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.LoadLib.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.ProgressBar-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.LoadLib-min.js", + "fileType" : 64 }, - "\/source\/js\/Media\/VMM.MediaElement.js" : { + "\/source\/js\/Core\/Language\/locale\/es.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Media\/VMM.MediaElement.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/es.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Media\/VMM.MediaElement-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/burton-2.jpg" : { + "\/dev_examples\/archive\/taylor\/fisher.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/burton-2.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fisher.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/burton-2.jpg", - "initialSize" : 74788, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fisher.jpg", + "initialSize" : 93019, + "fileType" : 4096 }, - "\/source\/less\/Font\/Lora-Istok.less" : { + "\/source\/js\/Core\/Language\/locale\/ca.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/Lora-Istok.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ca.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lora-Istok.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ca.js", + "fileType" : 64 }, - "\/dev_examples\/example_kitchensink.html" : { + "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/example_kitchensink.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/source\/js\/Embed\/Embed.CDN.Generator.js" : { + "\/compiled\/css\/themes\/timeline-dark.png" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Embed\/Embed.CDN.Generator.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 1, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-embed-generator.js", - "fileType" : 5 + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png", + "processed" : 0, + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png", + "initialSize" : 15505, + "fileType" : 8192 }, - "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css" : { + "\/tests\/test_googlespreadsheet_biblical_ad.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css", + "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_biblical_ad.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 2048 }, - "\/compiled\/css\/themes\/font\/Lekton-Molengo.css" : { + "\/compiled\/js\/locale\/en.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lekton-Molengo.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/en.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en-min.js", + "fileType" : 64 }, - "\/dev_examples\/template_json\/index.html" : { - "ignoreWasSetByUser" : 0, + "\/source\/less\/Core\/Font\/BreeSerif-OpenSans.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/BreeSerif-OpenSans.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/template_json\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/css\/themes\/timeline-texture.png" : { + "\/source\/js\/Core\/Language\/locale\/tl.js" : { "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" : 10 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/tl.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tl.js", + "fileType" : 64 }, - "\/source\/less\/Font\/Rancho-Gudea.less" : { + "\/source\/jade\/tests\/test_googlespreadsheet.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/Rancho-Gudea.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Rancho-Gudea.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet.html", + "fileType" : 512 }, - "\/dev_examples\/taylor\/fortensky.jpg" : { + "\/compiled\/js\/locale\/no.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/fortensky.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/fortensky.jpg", - "initialSize" : 99172, - "fileType" : 9 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/no.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/no-min.js", + "fileType" : 64 }, - "\/dev_examples\/kitchen-sink\/index.html" : { + "\/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\/ko.js" : { + "ignoreWasSetByUser" : 0, + "ignore" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/kitchen-sink\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ko.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ko-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/kennedy.jpg" : { + "\/tests\/test_googlespreadsheet_minutes.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/kennedy.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/kennedy.jpg", - "initialSize" : 84946, - "fileType" : 9 + "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_minutes.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/source\/less\/Font\/PlayfairDisplay-Muli.less" : { + "\/source\/js\/Core\/Language\/locale\/cz.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/PlayfairDisplay-Muli.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/cz.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js", + "fileType" : 64 }, - "\/source\/js\/locale\/zh-tw.js" : { + "\/compiled\/js\/locale\/fo.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/zh-tw.js", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css" : { + "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 16 }, - "\/source\/js\/locale\/is.js" : { + "\/source\/js\/Core\/Language\/locale\/fr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/is.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fr.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/index.html" : { + "\/dev_examples\/archive\/taylor\/dame.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/dame.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/dame.jpg", + "initialSize" : 108781, + "fileType" : 4096 }, - "\/dev_examples\/taylor\/broadway.jpg" : { + "\/compiled\/css\/themes\/timeline-texture.png" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/broadway.jpg", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-texture.png", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/broadway.jpg", - "initialSize" : 111700, - "fileType" : 9 + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-texture.png", + "initialSize" : 42976, + "fileType" : 8192 }, - "\/compiled\/js\/locale\/fo.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, + "\/source\/js\/Core\/Embed\/Embed.js" : { + "ignoreWasSetByUser" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo-min.js", - "fileType" : 5 - }, - "\/dev_examples\/houston\/whlead.jpg" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/whlead.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/whlead.jpg", - "initialSize" : 97988, - "fileType" : 9 + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed.js", + "fileType" : 64 }, - "\/source\/less\/GFX.less" : { + "\/compiled\/js\/timeline-min.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/GFX.less", + "inputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/GFX.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min-min.js", + "fileType" : 64 }, - "\/source\/js\/Slider\/VMM.Slider.Slide.js" : { + "\/compiled\/css\/themes\/font\/Rancho-Gudea.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Slider\/VMM.Slider.Slide.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Slider\/VMM.Slider.Slide-min.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Rancho-Gudea.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/dev_examples\/template_html\/index.html" : { + "\/examples\/example_jsonp.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/template_html\/index.html", + "inputAbbreviatedPath" : "\/examples\/example_jsonp.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/examples\/example_json.html" : { + "\/tests\/test_googlespreadsheet_bc_era_ages_epoch.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_json.html", + "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_bc_era_ages_epoch.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css" : { + "\/source\/js\/Core\/Language\/locale\/nl.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/nl.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js", + "fileType" : 64 }, - "\/source\/js\/locale\/cz.js" : { + "\/source\/js\/Core\/Language\/locale\/sv.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/cz.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sv.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sv.js", + "fileType" : 64 }, - "\/source\/less\/Font\/BreeSerif-OpenSans.less" : { + "\/source\/js\/Core\/Language\/locale\/bg.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/BreeSerif-OpenSans.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/bg.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/bg.js", + "fileType" : 64 }, - "\/source\/js\/Media\/VMM.ExternalAPI.js" : { + "\/compiled\/js\/locale\/tr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Media\/VMM.ExternalAPI.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/tr.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Media\/VMM.ExternalAPI-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tr-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/pl.js" : { + "\/compiled\/js\/locale\/sr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pl.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sr.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pl-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-min.js", + "fileType" : 64 + }, + "\/source\/less\/Core\/GFX.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/GFX.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/GFX.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/less\/Font\/Pacifico-Arimo.less" : { + "\/dev_examples\/archive\/taylor\/woolfe.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/Pacifico-Arimo.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css", - "strictImports" : 0, - "fileType" : 0 + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/woolfe.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/woolfe.jpg", + "initialSize" : 113102, + "fileType" : 4096 }, - "\/source\/less\/Font\/DroidSerif-DroidSans.less" : { + "\/source\/js\/Core\/Language\/locale\/sr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/DroidSerif-DroidSans.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sr.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr.js", + "fileType" : 64 }, - "\/source\/js\/VMM.Timeline.TimeNav.js" : { + "\/compiled\/css\/themes\/dark.css" : { "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" : 5 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/dev_examples\/index_html.html" : { - "ignoreWasSetByUser" : 0, + "\/source\/less\/Core\/Font\/Lekton-Molengo.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Lekton-Molengo.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lekton-Molengo.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/index_html.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/js\/Media\/VMM.TextElement.js" : { + "\/source\/js\/Core\/Core\/VMM.FileExtention.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Media\/VMM.TextElement.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.FileExtention.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Media\/VMM.TextElement-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.FileExtention-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/dark.css" : { + "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 16 }, - "\/examples\/example_language.html" : { + "\/compiled\/js\/locale\/fr.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_language.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr-min.js", + "fileType" : 64 }, - "\/dev_examples\/power-plants\/fisk_pauldailingmedill.jpg" : { + "\/dev_examples\/archive\/taylor\/broadway.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_pauldailingmedill.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/broadway.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_pauldailingmedill.jpg", - "initialSize" : 219541, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/broadway.jpg", + "initialSize" : 111700, + "fileType" : 4096 }, - "\/dev_examples\/houston\/wh2.jpg" : { + "\/compiled\/css\/timeline.png" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/wh2.jpg", + "inputAbbreviatedPath" : "\/compiled\/css\/timeline.png", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/wh2.jpg", - "initialSize" : 35669, - "fileType" : 9 + "outputAbbreviatedPath" : "\/compiled\/css\/timeline.png", + "initialSize" : 15404, + "fileType" : 8192 }, - "\/dev_examples\/taylor\/velvet.jpg" : { + "\/dev_examples\/archive\/taylor\/butterfield.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/velvet.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/butterfield.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/velvet.jpg", - "initialSize" : 77001, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/butterfield.jpg", + "initialSize" : 70444, + "fileType" : 4096 }, - "\/source\/js\/locale\/fr.js" : { - "ignoreWasSetByUser" : 0, + "\/source\/less\/Core\/Font\/PT.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PT.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PT.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/fr.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/dev_examples\/debug.html" : { - "ignoreWasSetByUser" : 0, + "\/source\/less\/Core\/Font\/Lora-Istok.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Lora-Istok.less", + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lora-Istok.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/debug.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/js\/VMM.Timeline.Min.js" : { + "\/source\/js\/Core\/Language\/locale\/ja.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.Min.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ja.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", - "fileType" : 5 - }, - "\/source\/less\/VMM.Timeline.Tooltip.less" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/VMM.Timeline.Tooltip.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/VMM.Timeline.Tooltip.css", - "strictImports" : 0, - "fileType" : 0 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ja.js", + "fileType" : 64 }, - "\/source\/js\/Core\/VMM.Date.js" : { + "\/compiled\/js\/locale\/ar.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.Date.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ar.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.Date-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ar-min.js", + "fileType" : 64 }, - "\/source\/less\/Mixins.less" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 0, + "\/source\/less\/Core\/VMM.Tooltip.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Tooltip.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Tooltip.css", "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Mixins.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/css\/Mixins.css", + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, "strictImports" : 0, - "fileType" : 0 - }, - "\/dev_examples\/taylor\/fisher.jpg" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/fisher.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/fisher.jpg", - "initialSize" : 93019, - "fileType" : 9 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/dev_examples\/embed_wide.html" : { + "\/compiled\/generator.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, + "ignore" : 1, + "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/embed_wide.html", + "inputAbbreviatedPath" : "\/compiled\/generator.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 - }, - "\/dev_examples\/power-plants\/fisk_vxla.jpg" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_vxla.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_vxla.jpg", - "initialSize" : 95680, - "fileType" : 9 + "fileType" : 2048 }, - "\/compiled\/js\/locale\/fr.js" : { + "\/compiled\/js\/locale\/is.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is-min.js", + "fileType" : 64 }, - "\/source\/js\/locale\/fo.js" : { + "\/source\/js\/Core\/Language\/locale\/iw.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/fo.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/iw.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/iw.js", + "fileType" : 64 }, - "\/source\/js\/Core\/VMM.LoadLib.js" : { + "\/source\/js\/Core\/Library\/AES.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.LoadLib.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/AES.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.LoadLib-min.js", - "fileType" : 5 - }, - "\/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" : 13 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/AES-min.js", + "fileType" : 64 }, - "\/source\/less\/Font\/PoiretOne-Molengo.less" : { + "\/source\/jade\/example_jsonp.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Font\/PoiretOne-Molengo.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css", - "strictImports" : 0, - "fileType" : 0 - }, - "\/dev_examples\/test_dates.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/test_dates.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/source\/jade\/example_jsonp.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/examples\/example_jsonp.html", + "fileType" : 512 }, - "\/compiled\/js\/locale\/zh-ch.js" : { + "\/compiled\/js\/locale\/es.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-ch.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-ch-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es-min.js", + "fileType" : 64 }, - "\/source\/js\/lib\/Embed.LoadLib.js" : { - "ignoreWasSetByUser" : 1, - "ignore" : 1, + "\/source\/less\/VMM.Timeline.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/VMM.Timeline.less", + "outputAbbreviatedPath" : "\/compiled\/css\/timeline.css", + "outputPathIsSetByUser" : 1, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 0, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/lib\/Embed.LoadLib.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/lib\/Embed.LoadLib-min.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 0, + "\/source\/less\/Core\/Reset.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Reset.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/Reset.css", "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 - }, - "\/dev_examples\/houston\/eyesclosedftm_10001.jpg" : { + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, "ignoreWasSetByUser" : 0, - "ignore" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/eyesclosedftm_10001.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/eyesclosedftm_10001.jpg", - "initialSize" : 90398, - "fileType" : 9 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/js\/Core\/VMM.js" : { + "\/compiled\/js\/locale\/pt.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM-min.js", - "fileType" : 5 - }, - "\/dev_examples\/power-plants\/index.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/cz.js" : { + "\/source\/js\/Core\/VMM.StoryJS.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/aids.jpg" : { + "\/source\/js\/Core\/Language\/locale\/is.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/aids.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/aids.jpg", - "initialSize" : 75647, - "fileType" : 9 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/is.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js", + "fileType" : 64 }, - "\/source\/js\/locale\/id.js" : { + "\/dev_examples\/archive\/taylor\/retire.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/locale\/id.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js", - "fileType" : 5 + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/retire.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/retire.jpg", + "initialSize" : 88811, + "fileType" : 4096 } }, "manualImportLinks" : [ @@ -1982,6 +2713,7 @@ ], "projectSettings" : { "hamlNoEscapeInAttributes" : 0, + "kitAutoOutputPathStyle" : 0, "lessOutputStyle" : 1, "hamlAutoOutputPathReplace2" : "", "draggedImportConcatenationStyle" : 1, @@ -1994,33 +2726,42 @@ "sassAutoOutputPathStyle" : 2, "stylusAutoOutputPathReplace2" : "css", "lessAutoOutputPathStyle" : 2, + "lessIECompatibility" : 1, "genericWebpageFileExtensionsString" : "html, xhtml, htm, shtml, shtm, php, jsp, asp, aspx, erb, ctp", + "lessStrictUnits" : 0, + "lessStrictMath" : 0, "coffeeMinifyOutput" : 1, "javascriptOutputSuffix" : "-min", - "stylusLineNumbers" : 0, "jadeOutputStyle" : 0, "coffeeAutoOutputPathStyle" : 0, + "autoSyncProjectSettingsFile" : 1, "lessAutoOutputPathReplace1" : "less", "jadeAutoOutputPathReplace1" : "", "lessAutoOutputPathRelativePath" : "..\/css", "hamlAutoOutputPathRelativePath" : "", "jsCheckerReservedNamesString" : "", "javascriptOutputStyle" : 1, - "sassDebugStyle" : 0, + "stylusDebugStyle" : 0, + "hamlUseCDATA" : false, "hamlAutoOutputPathStyle" : 0, + "sassDebugStyle" : 0, "hamlOutputStyle" : 0, - "stylusFirebug" : 0, - "jsCheckerIndent" : 4, "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, @@ -2032,7 +2773,10 @@ "coffeeAutoOutputPathReplace1" : "", "hamlUseDoubleQuotes" : 0, "coffeeAutoOutputPathReplace2" : "", + "kitAutoOutputPathReplace1" : "", "uglifyReservedNamesString" : "", + "coffeeOutputStyle" : 0, + "slimAutoOutputPathRelativePath" : "", "jsHintFlags" : { "onecase" : 0, "immed" : 0, @@ -2059,8 +2803,8 @@ "newcap" : 0, "forin" : 0, "regexdash" : 0, - "browser" : 1, "node" : 0, + "browser" : 1, "eqnull" : 1, "mootools" : 0, "iterator" : 0, @@ -2085,7 +2829,6 @@ "plusplus" : 0, "noempty" : 0 }, - "coffeeOutputStyle" : 0, "jsLintFlags" : { "white" : 1, "bitwise" : 0, @@ -2126,15 +2869,28 @@ "no-dead-code" : 0, "inline-script" : 0, "ascii" : 0, - "mangle-toplevel" : 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, - "javascriptAutoOutputPathRelativePath" : "" + "slimRailsCompatible" : 0, + "kitAutoOutputPathReplace2" : "", + "lessRelativeURLS" : 0, + "lessDebugStyle" : 0, + "javascriptAutoOutputPathRelativePath" : "", + "slimAutoOutputPathStyle" : 0 + }, + "projectAttributes" : { + "bourbonEnabled" : 0, + "displayValue" : "TimelineJS", + "displayValueWasSetByUser" : 0, + "compassEnabled" : 0 } } \ No newline at end of file diff --git a/compiled/css/themes/dark.css b/compiled/css/themes/dark.css deleted file mode 100644 index 90166c5f7..000000000 --- a/compiled/css/themes/dark.css +++ /dev/null @@ -1,260 +0,0 @@ -.vmm-timeline{}.vmm-timeline div *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -.vmm-timeline h1,.vmm-timeline h2,.vmm-timeline h3,.vmm-timeline h4,.vmm-timeline h5,.vmm-timeline h6,.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline pre,.vmm-timeline a,.vmm-timeline abbr,.vmm-timeline acronym,.vmm-timeline address,.vmm-timeline cite,.vmm-timeline code,.vmm-timeline del,.vmm-timeline dfn,.vmm-timeline em,.vmm-timeline img,.vmm-timeline q,.vmm-timeline s,.vmm-timeline samp,.vmm-timeline small,.vmm-timeline strike,.vmm-timeline strong,.vmm-timeline sub,.vmm-timeline sup,.vmm-timeline tt,.vmm-timeline var,.vmm-timeline dd,.vmm-timeline dl,.vmm-timeline dt,.vmm-timeline li,.vmm-timeline ol,.vmm-timeline ul,.vmm-timeline fieldset,.vmm-timeline form,.vmm-timeline label,.vmm-timeline legend,.vmm-timeline button,.vmm-timeline table,.vmm-timeline caption,.vmm-timeline tbody,.vmm-timeline tfoot,.vmm-timeline thead,.vmm-timeline tr,.vmm-timeline th,.vmm-timeline td,.vmm-timeline .container,.vmm-timeline .content-container,.vmm-timeline .media,.vmm-timeline .text,.vmm-timeline .slider,.vmm-timeline .date,.vmm-timeline .title,.vmm-timeline .messege,.vmm-timeline .map,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .feedback,.vmm-timeline .feature,.vmm-timeline .toolbar,.vmm-timeline .marker,.vmm-timeline .dot,.vmm-timeline .line,.vmm-timeline .flag,.vmm-timeline .time,.vmm-timeline .era,.vmm-timeline .major,.vmm-timeline .minor,.vmm-timeline .navigation,.vmm-timeline .start,.vmm-timeline .active{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;} -.vmm-timeline table{border-collapse:collapse;border-spacing:0;} -.vmm-timeline ol,.vmm-timeline ul{list-style:none;} -.vmm-timeline q:before,.vmm-timeline q:after,.vmm-timeline blockquote:before,.vmm-timeline blockquote:after{content:"";} -.vmm-timeline a:focus{outline:thin dotted;} -.vmm-timeline a:hover,.vmm-timeline a:active{outline:0;} -.vmm-timeline article,.vmm-timeline aside,.vmm-timeline details,.vmm-timeline figcaption,.vmm-timeline figure,.vmm-timeline footer,.vmm-timeline header,.vmm-timeline hgroup,.vmm-timeline nav,.vmm-timeline section{display:block;} -.vmm-timeline audio,.vmm-timeline canvas,.vmm-timeline video{display:inline-block;*display:inline;*zoom:1;} -.vmm-timeline audio:not([controls]){display:none;} -.vmm-timeline div{max-width:none;} -.vmm-timeline sub,.vmm-timeline sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;} -.vmm-timeline sup{top:-0.5em;} -.vmm-timeline sub{bottom:-0.25em;} -.vmm-timeline img{border:0;-ms-interpolation-mode:bicubic;} -.vmm-timeline button,.vmm-timeline input,.vmm-timeline select,.vmm-timeline textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;} -.vmm-timeline button,.vmm-timeline input{line-height:normal;*overflow:visible;} -.vmm-timeline button::-moz-focus-inner,.vmm-timeline input::-moz-focus-inner{border:0;padding:0;} -.vmm-timeline button,.vmm-timeline input[type="button"],.vmm-timeline input[type="reset"],.vmm-timeline input[type="submit"]{cursor:pointer;-webkit-appearance:button;} -.vmm-timeline input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -.vmm-timeline input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;} -.vmm-timeline textarea{overflow:auto;vertical-align:top;} -.vmm-timeline{font-family:"Georgia",Times New Roman,Times,serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vmm-timeline h1.date,.vmm-timeline h2.date,.vmm-timeline h3.date,.vmm-timeline h4.date,.vmm-timeline h5.date,.vmm-timeline h6.date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:"Georgia",Times New Roman,Times,serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:"Georgia",Times New Roman,Times,serif;} -.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} -#timeline-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);} -#timeline-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;} -#timeline-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;} -.vmm-timeline{width:100%;height:100%;padding:0px;margin:0px;background-color:#1a1a1a;position:absolute;z-index:100;clear:both;overflow:hidden;}.vmm-timeline .vmm-clear:before,.vmm-timeline .vmm-clear:after{content:"";display:table;} -.vmm-timeline .vmm-clear:after{clear:both;} -.vmm-timeline .vmm-clear{*zoom:1;} -.vmm-timeline .feature{width:100%;}.vmm-timeline .feature .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);} -.vmm-timeline .feedback{position:absolute;display:table;overflow:hidden;top:0px;left:0px;z-index:205;width:100%;height:100%;background-color:#1a1a1a;} -.vmm-timeline div.loading{display:table;text-align:center;min-width:100px;margin-top:15px;height:100%;width:100%;background-color:#1a1a1a;}.vmm-timeline div.loading .loading-container{display:table-cell;vertical-align:middle;}.vmm-timeline div.loading .loading-container .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;} -.vmm-timeline div.loading .loading-container .message{display:block;} -.vmm-timeline div.loading .loading-container .message,.vmm-timeline div.loading .loading-container .message p{text-align:center;font-size:11px;line-height:13px;text-transform:uppercase;margin-top:7.5px;margin-bottom:7.5px;} -.vmm-timeline .container.main{position:absolute;top:0px;left:0px;padding-bottom:3px;width:auto;height:auto;margin:0px;clear:both;} -.vmm-timeline img,.vmm-timeline embed,.vmm-timeline object,.vmm-timeline video,.vmm-timeline iframe{max-width:100%;} -.vmm-timeline img{max-height:100%;border:1px solid #999999;} -.vmm-timeline a{color:#0bd4e3;text-decoration:none;} -.vmm-timeline a:hover{color:#07909a;text-decoration:underline;} -.vmm-timeline .vcard{float:right;margin-bottom:15px;}.vmm-timeline .vcard a{color:#aaaaaa;} -.vmm-timeline .vcard a:hover{text-decoration:none;}.vmm-timeline .vcard a:hover .fn{text-decoration:underline;} -.vmm-timeline .vcard .fn,.vmm-timeline .vcard .nickname{padding-left:42px;} -.vmm-timeline .vcard .fn{display:block;font-weight:bold;} -.vmm-timeline .vcard .nickname{margin-top:1px;display:block;color:#aaaaaa;} -.vmm-timeline .vcard .avatar{float:left;display:block;width:32px;height:32px;}.vmm-timeline .vcard .avatar img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;} -.vmm-timeline .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;} -.vmm-timeline a.thumbnail:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.vmm-timeline .thumbnail.thumb-plaintext{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -48px;} -.vmm-timeline .thumbnail.thumb-quote{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -48px;} -.vmm-timeline .thumbnail.thumb-document{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -48px;} -.vmm-timeline .thumbnail.thumb-photo{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -24px;border:0;}.vmm-timeline .thumbnail.thumb-photo img{border:0px none #333333 !important;} -.vmm-timeline .thumbnail.thumb-twitter{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -24px;} -.vmm-timeline .thumbnail.thumb-vimeo{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -48px;} -.vmm-timeline .thumbnail.thumb-youtube{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -72px;} -.vmm-timeline .thumbnail.thumb-video{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -24px;} -.vmm-timeline .thumbnail.thumb-audio{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-304px -24px;} -.vmm-timeline .thumbnail.thumb-map{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -48px;} -.vmm-timeline .thumbnail.thumb-website{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -24px;} -.vmm-timeline .thumbnail.thumb-link{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -72px;} -.vmm-timeline .thumbnail.thumb-wikipedia{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -48px;} -.vmm-timeline .thumbnail.thumb-storify{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -96px;} -.vmm-timeline .thumbnail.thumb-googleplus{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -72px;} -.vmm-timeline thumbnail.thumb-instagram{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;} -.vmm-timeline 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;} -.vmm-timeline .thumb-storify-full{height:12px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -96px;width:48px;} -.vmm-timeline .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;} -.vmm-timeline .twitter .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px -96px;} -.vmm-timeline .storify .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -96px;} -.vmm-timeline .googleplus .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;} -.vmm-timeline .zFront{z-index:204;} -.slider{width:100%;height:100%;overflow:hidden;}.slider .slider-container-mask{text-align:center;width:100%;height:100%;overflow:hidden;}.slider .slider-container-mask .slider-container{position:absolute;top:0px;left:-2160px;width:100%;height:100%;text-align:center;display:block;}.slider .slider-container-mask .slider-container .slider-item-container{display:table-cell;vertical-align:middle;} -.vmm-notouch .slider .nav-previous:hover,.vmm-notouch .slider .nav-next:hover{color:#aaaaaa;cursor:pointer;} -.vmm-notouch .slider .nav-previous:hover .icon{margin-left:10px;} -.vmm-notouch .slider .nav-next:hover .icon{margin-left:66px;} -.vmm-notouch .slider .slider-item .content .content-container .media .media-container .wikipedia h4 a:hover{color:#0bd4e3;text-decoration:none;} -.vmm-notouch .slider .slider-item .content .content-container .created-at:hover{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vmm-notouch .slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover{text-decoration:none;}.vmm-notouch .slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover h5{text-decoration:underline;} -.slider img,.slider embed,.slider object,.slider video,.slider iframe{max-width:100%;} -.slider .nav-previous,.slider .nav-next{position:absolute;top:0px;width:100px;color:#DBDBDB;font-size:11px;}.slider .nav-previous .nav-container,.slider .nav-next .nav-container{height:100px;width:100px;position:absolute;} -.slider .nav-previous .icon,.slider .nav-next .icon{margin-top:12px;margin-bottom:15px;} -.slider .nav-previous .date,.slider .nav-next .date,.slider .nav-previous .title,.slider .nav-next .title{line-height:14px;}.slider .nav-previous .date a,.slider .nav-next .date a,.slider .nav-previous .title a,.slider .nav-next .title a{color:#999999;} -.slider .nav-previous .date small,.slider .nav-next .date small,.slider .nav-previous .title small,.slider .nav-next .title small{display:none;} -.slider .nav-previous .date,.slider .nav-next .date{font-size:13px;line-height:13px;font-weight:bold;text-transform:uppercase;margin-bottom:5px;} -.slider .nav-previous .title,.slider .nav-next .title{font-size:11px;line-height:13px;} -.slider .nav-previous{float:left;text-align:left;}.slider .nav-previous .icon{margin-left:15px;height:24px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px 0;width:24px;height:24px;overflow:hidden;} -.slider .nav-previous .date,.slider .nav-previous .title{text-align:left;padding-left:15px;} -.slider .nav-next{float:right;text-align:right;}.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;height:24px;overflow:hidden;} -.slider .nav-next .date,.slider .nav-next .title{text-align:right;padding-right:15px;} -.slider .slider-item{position:absolute;width:700px;height:100%;padding:0px;margin:0px;display:table;overflow-y:auto;}.slider .slider-item .content{display:table-cell;vertical-align:middle;}.slider .slider-item .content .pad-top .text .container{padding-top:15px;} -.slider .slider-item .content .pad-right .text .container{padding-right:15px;} -.slider .slider-item .content .pad-left .text .container{padding-left:30px;} -.slider .slider-item .content .pad-left .media.text-media .media-wrapper .media-container{border:none;background-color:#1a1a1a;} -.slider .slider-item .content .content-container{display:table;vertical-align:middle;}.slider .slider-item .content .content-container .text{width:40%;max-width:50%;min-width:120px;display:table-cell;vertical-align:middle;}.slider .slider-item .content .content-container .text .container{display:table-cell;vertical-align:middle;text-align:left;}.slider .slider-item .content .content-container .text .container p{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.slider .slider-item .content .content-container .text .container h2.date{font-size:15px;line-height:15px;font-weight:normal;} -.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;} -.slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:left;}.slider .slider-item .content .content-container .media .media-wrapper{display:inline-block;margin-left:auto;margin-right:auto;}.slider .slider-item .content .content-container .media .media-wrapper .media-container{display:inline-block;line-height:0px;padding:0px;max-height:100%;}.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame,.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;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame iframe{background-color:#1a1a1a;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .soundcloud{border:0;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image{display:inline-block;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow{position:relative;z-index:1;background:#1a1a1a;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:before,.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);-o-transform:rotate(-2deg);-ms-transform:rotate(-2deg);transform:rotate(-2deg);} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow::after{-webkit-transform:rotate(2deg);-moz-transform:rotate(2deg);-o-transform:rotate(2deg);-ms-transform:rotate(2deg);transform:rotate(2deg);right:10px;left:auto;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text{display:table;}.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;}.slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container p{margin-bottom:20px;} -.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;}.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;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4{border-bottom:1px solid #333333;margin-bottom:5px;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4 a{color:#ffffff;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia p{font-size:13px;line-height:19px;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .map{line-height:normal;z-index:200;text-align:left;background-color:#1a1a1a;}.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;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .map .google-map{height:100%;width:100%;} -.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;}.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;}.slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text a{color:#1a1a1a !important;} -.slider .slider-item .content .content-container .media .media-wrapper .credit{color:#999999;text-align:right;display:block;margin:0 auto;margin-top:6px;font-size:10px;line-height:13px;} -.slider .slider-item .content .content-container .media .media-wrapper .caption{text-align:left;margin-top:10px;color:#aaaaaa;font-size:11px;line-height:14px;text-rendering:optimizeLegibility;word-wrap:break-word;} -.slider .slider-item .content .media.text-media .media-wrapper .media-container{border:none;background-color:#1a1a1a;} -.slider .slider-item .content .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;} -.slider .slider-item .content .storify .created-at{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -96px;} -.slider .slider-item .content .twitter .created-at{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -24px;} -.slider .slider-item .content .googleplus .googleplus-content{font-size:13px;line-height:19px;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#aaaaaa;}.slider .slider-item .content .googleplus .googleplus-content p{font-size:13px;line-height:19px;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-title{font-size:28px;line-height:36px;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#ffffff;} -.slider .slider-item .content .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;} -.slider .slider-item .content .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;}.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:before,.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:after{display:table;content:"";} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:after{clear:both;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments h5{margin-bottom:5px;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments div{width:50%;padding-left:15px;display:inline-block;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments p{font-size:11px;line-height:14px;margin-bottom:5px;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments img{float:left;display:block;bottom:0;left:0;margin:auto;position:relative;right:0;top:0;width:40%;} -.slider .slider-item .content .googleplus .proflinkPrefix{color:#0bd4e3;} -.slider .slider-item .content .googleplus .created-at{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -72px;} -.slider .slider-item .content .twitter,.slider .slider-item .content .plain-text-quote,.slider .slider-item .content .storify,.slider .slider-item .content .googleplus{text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.slider .slider-item .content .twitter blockquote,.slider .slider-item .content .plain-text-quote blockquote,.slider .slider-item .content .storify blockquote,.slider .slider-item .content .googleplus blockquote{color:#aaaaaa;}.slider .slider-item .content .twitter blockquote p,.slider .slider-item .content .plain-text-quote blockquote p,.slider .slider-item .content .storify blockquote p,.slider .slider-item .content .googleplus blockquote p{font-size:28px;line-height:36px;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#ffffff;} -.slider .slider-item .content .twitter blockquote .quote-mark,.slider .slider-item .content .plain-text-quote blockquote .quote-mark,.slider .slider-item .content .storify blockquote .quote-mark,.slider .slider-item .content .googleplus blockquote .quote-mark{color:#aaaaaa;} -.slider .slider-item .content-container.layout-text-media .text-media{border-top:1px solid #e3e3e3;padding-top:15px;padding-right:0;} -.slider .slider-item .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;} -.slider .slider-item .content-container.layout-text{width:100%;}.slider .slider-item .content-container.layout-text .text{width:100%;max-width:100%;}.slider .slider-item .content-container.layout-text .text .container{display:block;vertical-align:middle;text-align:left;padding:0px;width:90%;text-align:left;margin-left:auto;margin-right:auto;} -.slider .slider-item .content-container.layout-media{width:100%;}.slider .slider-item .content-container.layout-media .text{width:100%;height:100%;max-width:100%;display:block;text-align:center;}.slider .slider-item .content-container.layout-media .text .container{display:block;text-align:center;width:100%;margin-left:none;margin-right:none;} -.slider .slider-item .content-container.layout-media .media{width:100%;min-width:50%;float:none;}.slider .slider-item .content-container.layout-media .media .media-wrapper .media-container{margin-left:auto;margin-right:auto;line-height:0px;padding:0px;} -.slider .slider-item .content-container.layout-media .twitter,.slider .slider-item .content-container.layout-media .wikipedia,.slider .slider-item .content-container.layout-media .googleplus{max-width:70%;} -.vmm-notouch .navigation .toolbar .zoom-in:hover,.vmm-notouch .navigation .toolbar .zoom-out:hover,.vmm-notouch .navigation .toolbar .back-home:hover{color:#0bd4e3;cursor:pointer;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vmm-notouch .navigation .timenav .content .marker.active:hover{cursor:default;}.vmm-notouch .navigation .timenav .content .marker.active:hover .flag .flag-content h3,.vmm-notouch .navigation .timenav .content .marker.active:hover .flag-small .flag-content h3{color:#0bd4e3;} -.vmm-notouch .navigation .timenav .content .marker.active:hover .flag .flag-content h4,.vmm-notouch .navigation .timenav .content .marker.active:hover .flag-small .flag-content h4{color:#999999;} -.vmm-notouch .navigation .timenav .content .marker:hover .line{z-index:24;background:#999999;} -.vmm-notouch .navigation .timenav .content .marker .flag:hover,.vmm-notouch .navigation .timenav .content .marker .flag-small:hover{cursor:pointer;}.vmm-notouch .navigation .timenav .content .marker .flag:hover .flag-content h3,.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content h3{color:#aaaaaa;} -.vmm-notouch .navigation .timenav .content .marker .flag:hover .flag-content h4,.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content h4{color:#aaaaaa;} -.vmm-notouch .navigation .timenav .content .marker .flag:hover .flag-content .thumbnail,.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vmm-notouch .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;} -.vmm-notouch .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;}.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content{height:36px;}.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content h3{margin-top:5px;} -.vmm-notouch .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;height:26px;}.vmm-notouch .navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content{height:14px;}.vmm-notouch .navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content h3{margin-top:4px;} -.vmm-timeline .navigation{clear:both;cursor:move;width:100%;height:200px;border-top:1px solid #e3e3e3;position:relative;}.vmm-timeline .navigation .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);}.vmm-timeline .navigation .toolbar .zoom-in,.vmm-timeline .navigation .toolbar .zoom-out,.vmm-timeline .navigation .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;} -.vmm-timeline .navigation .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;} -.vmm-timeline .navigation .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;} -.vmm-timeline .navigation .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;} -.vmm-timeline .navigation .timenav-background{position:absolute;cursor:move;top:0px;left:0px;height:150px;width:100%;background-color:#262626;}.vmm-timeline .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);}.vmm-timeline .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);} -.vmm-timeline .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);} -.vmm-timeline .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;} -.vmm-timeline .navigation .timenav-background .timenav-tag div{height:50px;display:table;}.vmm-timeline .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;} -.vmm-timeline .navigation .timenav-background .timenav-tag-size-half{height:25px;}.vmm-timeline .navigation .timenav-background .timenav-tag-size-half div{height:25px;} -.vmm-timeline .navigation .timenav-background .timenav-tag-size-full{height:50px;}.vmm-timeline .navigation .timenav-background .timenav-tag-size-full div{height:50px;} -.vmm-timeline .navigation .timenav-background .timenav-tag-row-2,.vmm-timeline .navigation .timenav-background .timenav-tag-row-4,.vmm-timeline .navigation .timenav-background .timenav-tag-row-6{background:#2e2e2e;} -.vmm-timeline .navigation .timenav-background .timenav-tag-row-1,.vmm-timeline .navigation .timenav-background .timenav-tag-row-3,.vmm-timeline .navigation .timenav-background .timenav-tag-row-5{background:#262626;} -.vmm-timeline .navigation .timenav{position:absolute;top:0px;left:-250px;z-index:1;}.vmm-timeline .navigation .timenav .content{position:relative;}.vmm-timeline .navigation .timenav .content .marker.start{display:none;} -.vmm-timeline .navigation .timenav .content .marker.active .dot{background:#0bd4e3;z-index:200;} -.vmm-timeline .navigation .timenav .content .marker.active .line{z-index:199;background:#0bd4e3;width:1px;}.vmm-timeline .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;} -.vmm-timeline .navigation .timenav .content .marker.active .flag,.vmm-timeline .navigation .timenav .content .marker.active .flag-small{z-index:200;}.vmm-timeline .navigation .timenav .content .marker.active .flag .flag-content,.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content{height:36px;}.vmm-timeline .navigation .timenav .content .marker.active .flag .flag-content h3,.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content h3{color:#0bd4e3;margin-top:5px;} -.vmm-timeline .navigation .timenav .content .marker.active .flag .flag-content .thumbnail,.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vmm-timeline .navigation .timenav .content .marker.active .flag.row1,.vmm-timeline .navigation .timenav .content .marker.active .flag.row2,.vmm-timeline .navigation .timenav .content .marker.active .flag.row3,.vmm-timeline .navigation .timenav .content .marker.active .flag-small.row1,.vmm-timeline .navigation .timenav .content .marker.active .flag-small.row2,.vmm-timeline .navigation .timenav .content .marker.active .flag-small.row3{z-index:200;} -.vmm-timeline .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;} -.vmm-timeline .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;height:26px;}.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content{height:14px;}.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content h3{margin-top:4px;} -.vmm-timeline .navigation .timenav .content .marker{position:absolute;top:0px;left:150px;display:block;}.vmm-timeline .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;} -.vmm-timeline .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;}.vmm-timeline .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;} -.vmm-timeline .navigation .timenav .content .marker .flag,.vmm-timeline .navigation .timenav .content .marker .flag-small{position:absolute;top:15px;left:3px;padding:0px;display:block;z-index:23;width:153px;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content,.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content{padding:0px 7px 2px 6px;overflow:hidden;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h3,.vmm-timeline .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;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h3 small,.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content h3 small{display:none;} -.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h4,.vmm-timeline .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;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h4 small,.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content h4 small{display:none;} -.vmm-timeline .navigation .timenav .content .marker .flag .flag-content .thumbnail,.vmm-timeline .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;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content .thumbnail img,.vmm-timeline .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;} -.vmm-timeline .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;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content{height:36px;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h3{margin-top:5px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small{height:26px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -135px;width:153px;height:26px;}.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content{height:14px;}.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content h3{margin-top:4px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail{width:16px;height:10px;margin-right:1px;margin-top:6px;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .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;} -.vmm-timeline .navigation .timenav .content .marker .flag.row1{z-index:25;top:48px;} -.vmm-timeline .navigation .timenav .content .marker .flag.row2{z-index:24;top:96px;} -.vmm-timeline .navigation .timenav .content .marker .flag.row3{z-index:23;top:1px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row1{z-index:28;top:24px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row2{z-index:27;top:48px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row3{z-index:26;top:72px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row4{z-index:25;top:96px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row5{z-index:24;top:120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row6{z-index:23;top:1px;} -.vmm-timeline .navigation .timenav .content .marker .flag.zFront,.vmm-timeline .navigation .timenav .content .marker .flag-small.zFront{z-index:201;} -.vmm-timeline .navigation .timenav .content .era{position:absolute;top:138px;left:150px;height:12px;display:block;overflow:hidden;}.vmm-timeline .navigation .timenav .content .era div{height:50px;width:100%;height:100%;line-height:0px;background:#262626;background:rgba(38, 38, 38, 0.33);}.vmm-timeline .navigation .timenav .content .era div h3,.vmm-timeline .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;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era1 div h3,.vmm-timeline .navigation .timenav .content .era1 div h4{color:rgba(227, 26, 11, 0.35);text-shadow:0px 1px 1px #727272;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era2 div h3,.vmm-timeline .navigation .timenav .content .era2 div h4{color:rgba(227, 11, 104, 0.35);text-shadow:0px 1px 1px #727272;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era3 div h3,.vmm-timeline .navigation .timenav .content .era3 div h4{color:rgba(11, 104, 227, 0.35);text-shadow:0px 1px 1px #727272;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era4 div h3,.vmm-timeline .navigation .timenav .content .era4 div h4{color:rgba(227, 134, 11, 0.35);text-shadow:0px 1px 1px #727272;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era5 div h3,.vmm-timeline .navigation .timenav .content .era5 div h4{color:rgba(11, 227, 134, 0.35);text-shadow:0px 1px 1px #727272;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era6 div h3,.vmm-timeline .navigation .timenav .content .era6 div h4{color:rgba(11, 212, 227, 0.35);text-shadow:0px 1px 1px #727272;} -.vmm-timeline .navigation .timenav .time{position:absolute;left:0px;top:150px;height:50px;background-color:#1a1a1a;line-height:0px;}.vmm-timeline .navigation .timenav .time .time-interval-minor{max-width:none;height:6px;white-space:nowrap;position:absolute;top:-2px;left:8px;z-index:10;}.vmm-timeline .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;} -.vmm-timeline .navigation .timenav .time .time-interval{white-space:nowrap;position:absolute;top:5px;left:0px;}.vmm-timeline .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;}.vmm-timeline .navigation .timenav .time .time-interval div strong{font-weight:bold;color:#ffffff;} -.vmm-timeline .navigation .timenav .time .time-interval div.era{font-weight:bold;padding-top:0px;margin-top:-3px;margin-left:2px;background-image:none;} -.vmm-timeline .navigation .timenav .time .time-interval .era1{color:#e31a0b;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era2{color:#e30b68;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era3{color:#0b68e3;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era4{color:#e3860b;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era5{color:#0be386;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era6{color:#0bd4e3;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval-major{white-space:nowrap;position:absolute;top:5px;left:0px;}.vmm-timeline .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;}.vmm-timeline .navigation .timenav .time .time-interval-major div strong{font-weight:bold;color:#ffffff;} -.vmm-timeline{font-size:15px;font-weight:normal;line-height:20px;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;}.vmm-timeline p{font-size:15px;font-weight:normal;line-height:20px;margin-bottom:20px;color:#aaaaaa;}.vmm-timeline p small{font-size:12px;line-height:17px;} -.vmm-timeline p:first-child{margin-top:20px;} -.vmm-timeline .navigation p{color:#999999;} -.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{margin-bottom:15px;} -.vmm-timeline .feature p{color:#aaaaaa;} -.vmm-timeline .feature blockquote,.vmm-timeline .feature blockquote p{color:#ffffff;} -.vmm-timeline .date a,.vmm-timeline .title a{color:#999999;} -.vmm-timeline .hyphenate{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.vmm-timeline h1,.vmm-timeline h2,.vmm-timeline h3,.vmm-timeline h4,.vmm-timeline h5,.vmm-timeline h6{font-weight:normal;color:#ffffff;text-transform:none;}.vmm-timeline h1 a,.vmm-timeline h2 a,.vmm-timeline h3 a,.vmm-timeline h4 a,.vmm-timeline h5 a,.vmm-timeline h6 a{color:#999999;} -.vmm-timeline h1 small,.vmm-timeline h2 small,.vmm-timeline h3 small,.vmm-timeline h4 small,.vmm-timeline h5 small,.vmm-timeline h6 small{color:#999999;} -.vmm-timeline h1.date,.vmm-timeline h2.date,.vmm-timeline h3.date,.vmm-timeline h4.date,.vmm-timeline h5.date,.vmm-timeline h6.date{font-weight:bold;} -.vmm-timeline h2.start{font-size:36px;line-height:38px;margin-bottom:15px;} -.vmm-timeline h1{margin-bottom:15px;font-size:32px;line-height:34px;}.vmm-timeline h1 small{font-size:18px;} -.vmm-timeline h2{margin-bottom:15px;font-size:28px;line-height:30px;}.vmm-timeline h2 small{font-size:14px;line-height:16px;} -.vmm-timeline h2.date{font-size:16px;line-height:18px;margin-bottom:3.75px;color:#999999;} -.vmm-timeline h3,.vmm-timeline h4,.vmm-timeline h5,.vmm-timeline h6{line-height:40px;}.vmm-timeline h3 .active,.vmm-timeline h4 .active,.vmm-timeline h5 .active,.vmm-timeline h6 .active{color:#0bd4e3;} -.vmm-timeline h3{font-size:28px;line-height:30px;}.vmm-timeline h3 small{font-size:14px;} -.vmm-timeline h4{font-size:20px;line-height:22px;}.vmm-timeline h4 small{font-size:12px;} -.vmm-timeline h5{font-size:16px;line-height:18px;} -.vmm-timeline h6{font-size:13px;line-height:14px;text-transform:uppercase;} -.vmm-timeline strong{font-weight:bold;font-style:inherit;} -.vmm-timeline em{font-style:italic;font-weight:inherit;} -.vmm-timeline Q{quotes:'„' '“';font-style:italic;} -.vmm-timeline blockquote,.vmm-timeline blockquote p{font-size:28px;line-height:36px;text-align:left;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#ffffff;} -.vmm-timeline .credit{color:#999999;text-align:right;font-size:10px;line-height:10px;display:block;margin:0 auto;clear:both;} -.vmm-timeline .caption{text-align:left;margin-top:5px;color:#aaaaaa;font-size:11px;line-height:14px;clear:both;} -.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;} -.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} -.tooltip.top{margin-top:-2px;} -.tooltip.right{margin-left:2px;} -.tooltip.bottom{margin-top:2px;} -.tooltip.left{margin-left:-2px;} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} -.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;} -.tooltip-arrow{position:absolute;width:0;height:0;} -@media only screen and (max-width:480px),only screen and (max-device-width:480px){}@media (max-width:600px){.slider .slider-item .content .content-container{display:block;}.slider .slider-item .content .content-container .text{width:100%;max-width:100%;min-width:120px;display:block;}.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;} .slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:none;}.slider .slider-item .content .content-container .media .media-wrapper{margin-left:0px;margin-right:0px;width:100%;display:block;} .slider .slider-item .content .content-container .media.text-media .media-wrapper .media-container{border:none;}} diff --git a/compiled/css/themes/font/AbrilFatface-Average.css b/compiled/css/themes/font/AbrilFatface-Average.css deleted file mode 100644 index bd03a763b..000000000 --- a/compiled/css/themes/font/AbrilFatface-Average.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Average',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Average',serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Average',serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Average',serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Average',serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Abril Fatface',cursive;} -.tooltip{font-family:'Average',serif;} diff --git a/compiled/css/themes/font/Arvo-PTSans.css b/compiled/css/themes/font/Arvo-PTSans.css deleted file mode 100644 index d059aaeb9..000000000 --- a/compiled/css/themes/font/Arvo-PTSans.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Arvo',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Arvo',serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Arvo',serif;} -.tooltip{font-family:'PT Sans',sans-serif;} diff --git a/compiled/css/themes/font/Bevan-PotanoSans.css b/compiled/css/themes/font/Bevan-PotanoSans.css deleted file mode 100644 index 9bc9a146b..000000000 --- a/compiled/css/themes/font/Bevan-PotanoSans.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Pontano Sans',sans-serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Pontano Sans',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Pontano Sans',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Pontano Sans',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Pontano Sans',sans-serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Bevan',serif;} -.tooltip{font-family:'Pontano Sans',sans-serif;} diff --git a/compiled/css/themes/font/BreeSerif-OpenSans.css b/compiled/css/themes/font/BreeSerif-OpenSans.css deleted file mode 100644 index 978f328ed..000000000 --- a/compiled/css/themes/font/BreeSerif-OpenSans.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Bree Serif',Georgia,serif;} -.tooltip{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;} diff --git a/compiled/css/themes/font/DroidSerif-DroidSans.css b/compiled/css/themes/font/DroidSerif-DroidSans.css deleted file mode 100644 index a8d578e9f..000000000 --- a/compiled/css/themes/font/DroidSerif-DroidSans.css +++ /dev/null @@ -1,7 +0,0 @@ -.vmm-timeline{font-family:'Droid Serif',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Droid Sans',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Droid Sans',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Droid Sans',sans-serif !important;} -.vmm-timeline p{font-family:'Droid Sans',sans-serif !important;} -.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Droid Serif',serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Droid Serif',serif;font-weight:700;} -.tooltip{font-family:'Droid Sans',sans-serif;} diff --git a/compiled/css/themes/font/Lekton-Molengo.css b/compiled/css/themes/font/Lekton-Molengo.css deleted file mode 100644 index f39552ce7..000000000 --- a/compiled/css/themes/font/Lekton-Molengo.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Lekton',sans-serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Lekton',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Lekton',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Lekton',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Lekton',sans-serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Molengo',sans-serif;} -.tooltip{font-family:'Lekton',sans-serif;} diff --git a/compiled/css/themes/font/Lora-Istok.css b/compiled/css/themes/font/Lora-Istok.css deleted file mode 100644 index 14772c1c8..000000000 --- a/compiled/css/themes/font/Lora-Istok.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Lora',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Istok Web',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Istok Web',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Istok Web',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Istok Web',sans-serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Lora',serif;font-weight:700;} -.tooltip{font-family:'Istok Web',sans-serif;} diff --git a/compiled/css/themes/font/Merriweather-NewsCycle.css b/compiled/css/themes/font/Merriweather-NewsCycle.css deleted file mode 100644 index 330a06336..000000000 --- a/compiled/css/themes/font/Merriweather-NewsCycle.css +++ /dev/null @@ -1,8 +0,0 @@ -.vmm-timeline{font-family:'Merriweather',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'News Cycle',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'News Cycle',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'News Cycle',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'News Cycle',sans-serif !important;} -.vmm-timeline p{font-size:16px;line-height:22px;} -.vmm-timeline .wikipedia p{font-size:14px !important;line-height:20px !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Merriweather',serif;font-weight:900;} -.tooltip{font-family:'News Cycle',sans-serif;} diff --git a/compiled/css/themes/font/NixieOne-Ledger.css b/compiled/css/themes/font/NixieOne-Ledger.css deleted file mode 100644 index 1a573ca5b..000000000 --- a/compiled/css/themes/font/NixieOne-Ledger.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Ledger',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Ledger',serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Ledger',serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Ledger',serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Ledger',serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Nixie One',cursive;} -.tooltip{font-family:'Ledger',serif;} diff --git a/compiled/css/themes/font/PT.css b/compiled/css/themes/font/PT.css deleted file mode 100644 index d1a3ae283..000000000 --- a/compiled/css/themes/font/PT.css +++ /dev/null @@ -1,7 +0,0 @@ -.vmm-timeline{font-family:'PT Serif',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'PT Serif',serif !important;} -.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-style:italic;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'PT Sans Narrow',sans-serif;font-weight:700;} -.tooltip{font-family:'PT Sans',sans-serif;} diff --git a/compiled/css/themes/font/PTSerif-PTSans.css b/compiled/css/themes/font/PTSerif-PTSans.css deleted file mode 100644 index 0289bd781..000000000 --- a/compiled/css/themes/font/PTSerif-PTSans.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'PT Serif',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'PT Sans',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'PT Serif',serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'PT Sans',sans-serif;font-weight:700;} -.tooltip{font-family:'PT Sans',sans-serif;} diff --git a/compiled/css/themes/font/Pacifico-Arimo.css b/compiled/css/themes/font/Pacifico-Arimo.css deleted file mode 100644 index 9341b5680..000000000 --- a/compiled/css/themes/font/Pacifico-Arimo.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Arimo',sans-serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Arimo',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Arimo',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Arimo',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Arimo',sans-serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Pacifico',cursive;} -.tooltip{font-family:'Arimo',sans-serif;} diff --git a/compiled/css/themes/font/PlayfairDisplay-Muli.css b/compiled/css/themes/font/PlayfairDisplay-Muli.css deleted file mode 100644 index 94115c9a7..000000000 --- a/compiled/css/themes/font/PlayfairDisplay-Muli.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Muli',sans-serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Muli',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Muli',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Muli',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Muli',sans-serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Playfair Display',serif;} -.tooltip{font-family:'Muli',sans-serif;} diff --git a/compiled/css/themes/font/PoiretOne-Molengo.css b/compiled/css/themes/font/PoiretOne-Molengo.css deleted file mode 100644 index 9a5e626f8..000000000 --- a/compiled/css/themes/font/PoiretOne-Molengo.css +++ /dev/null @@ -1,8 +0,0 @@ -.vmm-timeline{font-family:'Poiret One',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Molengo',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Molengo',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Molengo',sans-serif !important;} -.vmm-timeline p{font-family:'Molengo',sans-serif !important;font-size:16px !important;line-height:22px !important;} -.vmm-timeline .wikipedia p{font-size:14px !important;line-height:20px !important;} -.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Poiret One',serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Poiret One',serif;} -.tooltip{font-family:'Molengo',sans-serif;} diff --git a/compiled/css/themes/font/Rancho-Gudea.css b/compiled/css/themes/font/Rancho-Gudea.css deleted file mode 100644 index 5d20c1778..000000000 --- a/compiled/css/themes/font/Rancho-Gudea.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Gudea',sans-serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Gudea',sans-serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Gudea',sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Gudea',sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Gudea',sans-serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Rancho',cursive;} -.tooltip{font-family:'Gudea',sans-serif;} diff --git a/compiled/css/themes/font/SansitaOne-Kameron.css b/compiled/css/themes/font/SansitaOne-Kameron.css deleted file mode 100644 index f12fcbb2c..000000000 --- a/compiled/css/themes/font/SansitaOne-Kameron.css +++ /dev/null @@ -1,6 +0,0 @@ -.vmm-timeline{font-family:'Kameron',serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:'Kameron',serif !important;} -.vmm-timeline .feature h1.date,.vmm-timeline .feature h2.date,.vmm-timeline .feature h3.date,.vmm-timeline .feature h4.date,.vmm-timeline .feature h5.date,.vmm-timeline .feature h6.date{font-family:'Kameron',serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:'Kameron',serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:'Kameron',serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:'Sansita One',cursive;} -.tooltip{font-family:'Kameron',serif;} diff --git a/compiled/css/themes/timeline-dark.png b/compiled/css/themes/timeline-dark.png deleted file mode 100644 index 1f4dca4c7..000000000 Binary files a/compiled/css/themes/timeline-dark.png and /dev/null differ diff --git a/compiled/css/themes/timeline-texture.png b/compiled/css/themes/timeline-texture.png deleted file mode 100644 index a5e603e50..000000000 Binary files a/compiled/css/themes/timeline-texture.png and /dev/null differ diff --git a/compiled/css/timeline.css b/compiled/css/timeline.css deleted file mode 100644 index 8c812088b..000000000 --- a/compiled/css/timeline.css +++ /dev/null @@ -1,260 +0,0 @@ -.vmm-timeline{}.vmm-timeline div *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -.vmm-timeline h1,.vmm-timeline h2,.vmm-timeline h3,.vmm-timeline h4,.vmm-timeline h5,.vmm-timeline h6,.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline pre,.vmm-timeline a,.vmm-timeline abbr,.vmm-timeline acronym,.vmm-timeline address,.vmm-timeline cite,.vmm-timeline code,.vmm-timeline del,.vmm-timeline dfn,.vmm-timeline em,.vmm-timeline img,.vmm-timeline q,.vmm-timeline s,.vmm-timeline samp,.vmm-timeline small,.vmm-timeline strike,.vmm-timeline strong,.vmm-timeline sub,.vmm-timeline sup,.vmm-timeline tt,.vmm-timeline var,.vmm-timeline dd,.vmm-timeline dl,.vmm-timeline dt,.vmm-timeline li,.vmm-timeline ol,.vmm-timeline ul,.vmm-timeline fieldset,.vmm-timeline form,.vmm-timeline label,.vmm-timeline legend,.vmm-timeline button,.vmm-timeline table,.vmm-timeline caption,.vmm-timeline tbody,.vmm-timeline tfoot,.vmm-timeline thead,.vmm-timeline tr,.vmm-timeline th,.vmm-timeline td,.vmm-timeline .container,.vmm-timeline .content-container,.vmm-timeline .media,.vmm-timeline .text,.vmm-timeline .slider,.vmm-timeline .date,.vmm-timeline .title,.vmm-timeline .messege,.vmm-timeline .map,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .feedback,.vmm-timeline .feature,.vmm-timeline .toolbar,.vmm-timeline .marker,.vmm-timeline .dot,.vmm-timeline .line,.vmm-timeline .flag,.vmm-timeline .time,.vmm-timeline .era,.vmm-timeline .major,.vmm-timeline .minor,.vmm-timeline .navigation,.vmm-timeline .start,.vmm-timeline .active{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;} -.vmm-timeline table{border-collapse:collapse;border-spacing:0;} -.vmm-timeline ol,.vmm-timeline ul{list-style:none;} -.vmm-timeline q:before,.vmm-timeline q:after,.vmm-timeline blockquote:before,.vmm-timeline blockquote:after{content:"";} -.vmm-timeline a:focus{outline:thin dotted;} -.vmm-timeline a:hover,.vmm-timeline a:active{outline:0;} -.vmm-timeline article,.vmm-timeline aside,.vmm-timeline details,.vmm-timeline figcaption,.vmm-timeline figure,.vmm-timeline footer,.vmm-timeline header,.vmm-timeline hgroup,.vmm-timeline nav,.vmm-timeline section{display:block;} -.vmm-timeline audio,.vmm-timeline canvas,.vmm-timeline video{display:inline-block;*display:inline;*zoom:1;} -.vmm-timeline audio:not([controls]){display:none;} -.vmm-timeline div{max-width:none;} -.vmm-timeline sub,.vmm-timeline sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;} -.vmm-timeline sup{top:-0.5em;} -.vmm-timeline sub{bottom:-0.25em;} -.vmm-timeline img{border:0;-ms-interpolation-mode:bicubic;} -.vmm-timeline button,.vmm-timeline input,.vmm-timeline select,.vmm-timeline textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;} -.vmm-timeline button,.vmm-timeline input{line-height:normal;*overflow:visible;} -.vmm-timeline button::-moz-focus-inner,.vmm-timeline input::-moz-focus-inner{border:0;padding:0;} -.vmm-timeline button,.vmm-timeline input[type="button"],.vmm-timeline input[type="reset"],.vmm-timeline input[type="submit"]{cursor:pointer;-webkit-appearance:button;} -.vmm-timeline input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -.vmm-timeline input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;} -.vmm-timeline textarea{overflow:auto;vertical-align:top;} -.vmm-timeline{font-family:"Georgia",Times New Roman,Times,serif;}.vmm-timeline .twitter,.vmm-timeline .vcard,.vmm-timeline .messege,.vmm-timeline .credit,.vmm-timeline .caption,.vmm-timeline .zoom-in,.vmm-timeline .zoom-out,.vmm-timeline .back-home,.vmm-timeline .time-interval div,.vmm-timeline .time-interval-major div,.vmm-timeline .nav-container{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vmm-timeline h1.date,.vmm-timeline h2.date,.vmm-timeline h3.date,.vmm-timeline h4.date,.vmm-timeline h5.date,.vmm-timeline h6.date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vmm-timeline .timenav h1,.vmm-timeline .flag-content h1,.vmm-timeline .era h1,.vmm-timeline .timenav h2,.vmm-timeline .flag-content h2,.vmm-timeline .era h2,.vmm-timeline .timenav h3,.vmm-timeline .flag-content h3,.vmm-timeline .era h3,.vmm-timeline .timenav h4,.vmm-timeline .flag-content h4,.vmm-timeline .era h4,.vmm-timeline .timenav h5,.vmm-timeline .flag-content h5,.vmm-timeline .era h5,.vmm-timeline .timenav h6,.vmm-timeline .flag-content h6,.vmm-timeline .era h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vmm-timeline p,.vmm-timeline blockquote,.vmm-timeline blockquote p,.vmm-timeline .twitter blockquote p{font-family:"Georgia",Times New Roman,Times,serif !important;} -.vmm-timeline .feature h1,.vmm-timeline .feature h2,.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{font-family:"Georgia",Times New Roman,Times,serif;} -.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} -#timeline-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);} -#timeline-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;} -#timeline-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;} -.vmm-timeline{width:100%;height:100%;padding:0px;margin:0px;background-color:#ffffff;position:absolute;z-index:100;clear:both;overflow:hidden;}.vmm-timeline .vmm-clear:before,.vmm-timeline .vmm-clear:after{content:"";display:table;} -.vmm-timeline .vmm-clear:after{clear:both;} -.vmm-timeline .vmm-clear{*zoom:1;} -.vmm-timeline .feature{width:100%;}.vmm-timeline .feature .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);} -.vmm-timeline .feedback{position:absolute;display:table;overflow:hidden;top:0px;left:0px;z-index:205;width:100%;height:100%;background-color:#ffffff;} -.vmm-timeline div.loading{display:table;text-align:center;min-width:100px;margin-top:15px;height:100%;width:100%;background-color:#ffffff;}.vmm-timeline div.loading .loading-container{display:table-cell;vertical-align:middle;}.vmm-timeline div.loading .loading-container .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;} -.vmm-timeline div.loading .loading-container .message{display:block;} -.vmm-timeline div.loading .loading-container .message,.vmm-timeline div.loading .loading-container .message p{text-align:center;font-size:11px;line-height:13px;text-transform:uppercase;margin-top:7.5px;margin-bottom:7.5px;} -.vmm-timeline .container.main{position:absolute;top:0px;left:0px;padding-bottom:3px;width:auto;height:auto;margin:0px;clear:both;} -.vmm-timeline img,.vmm-timeline embed,.vmm-timeline object,.vmm-timeline video,.vmm-timeline iframe{max-width:100%;} -.vmm-timeline img{max-height:100%;border:1px solid #999999;} -.vmm-timeline a{color:#0088cc;text-decoration:none;} -.vmm-timeline a:hover{color:#005580;text-decoration:underline;} -.vmm-timeline .vcard{float:right;margin-bottom:15px;}.vmm-timeline .vcard a{color:#333333;} -.vmm-timeline .vcard a:hover{text-decoration:none;}.vmm-timeline .vcard a:hover .fn{text-decoration:underline;} -.vmm-timeline .vcard .fn,.vmm-timeline .vcard .nickname{padding-left:42px;} -.vmm-timeline .vcard .fn{display:block;font-weight:bold;} -.vmm-timeline .vcard .nickname{margin-top:1px;display:block;color:#666666;} -.vmm-timeline .vcard .avatar{float:left;display:block;width:32px;height:32px;}.vmm-timeline .vcard .avatar img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;} -.vmm-timeline .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;} -.vmm-timeline a.thumbnail:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.vmm-timeline .thumbnail.thumb-plaintext{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-280px -48px;} -.vmm-timeline .thumbnail.thumb-quote{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-232px -48px;} -.vmm-timeline .thumbnail.thumb-document{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-256px -48px;} -.vmm-timeline .thumbnail.thumb-photo{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-280px -24px;border:0;}.vmm-timeline .thumbnail.thumb-photo img{border:0px none #cccccc !important;} -.vmm-timeline .thumbnail.thumb-twitter{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-256px -24px;} -.vmm-timeline .thumbnail.thumb-vimeo{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-328px -48px;} -.vmm-timeline .thumbnail.thumb-youtube{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-328px -72px;} -.vmm-timeline .thumbnail.thumb-video{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-328px -24px;} -.vmm-timeline .thumbnail.thumb-audio{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-304px -24px;} -.vmm-timeline .thumbnail.thumb-map{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-208px -48px;} -.vmm-timeline .thumbnail.thumb-website{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-232px -24px;} -.vmm-timeline .thumbnail.thumb-link{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-184px -72px;} -.vmm-timeline .thumbnail.thumb-wikipedia{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-184px -48px;} -.vmm-timeline .thumbnail.thumb-storify{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-328px -96px;} -.vmm-timeline .thumbnail.thumb-googleplus{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-208px -72px;} -.vmm-timeline thumbnail.thumb-instagram{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;} -.vmm-timeline thumbnail.thumb-instagram-full{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-232px -96px;width:48px;height:24px;} -.vmm-timeline .thumb-storify-full{height:12px;background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-280px -96px;width:48px;} -.vmm-timeline .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;} -.vmm-timeline .twitter .thumbnail-inline{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-160px -96px;} -.vmm-timeline .storify .thumbnail-inline{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-184px -96px;} -.vmm-timeline .googleplus .thumbnail-inline{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;} -.vmm-timeline .zFront{z-index:204;} -.slider{width:100%;height:100%;overflow:hidden;}.slider .slider-container-mask{text-align:center;width:100%;height:100%;overflow:hidden;}.slider .slider-container-mask .slider-container{position:absolute;top:0px;left:-2160px;width:100%;height:100%;text-align:center;display:block;}.slider .slider-container-mask .slider-container .slider-item-container{display:table-cell;vertical-align:middle;} -.vmm-notouch .slider .nav-previous:hover,.vmm-notouch .slider .nav-next:hover{color:#333333;cursor:pointer;} -.vmm-notouch .slider .nav-previous:hover .icon{margin-left:10px;} -.vmm-notouch .slider .nav-next:hover .icon{margin-left:66px;} -.vmm-notouch .slider .slider-item .content .content-container .media .media-container .wikipedia h4 a:hover{color:#0088cc;text-decoration:none;} -.vmm-notouch .slider .slider-item .content .content-container .created-at:hover{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vmm-notouch .slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover{text-decoration:none;}.vmm-notouch .slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover h5{text-decoration:underline;} -.slider img,.slider embed,.slider object,.slider video,.slider iframe{max-width:100%;} -.slider .nav-previous,.slider .nav-next{position:absolute;top:0px;width:100px;color:#DBDBDB;font-size:11px;}.slider .nav-previous .nav-container,.slider .nav-next .nav-container{height:100px;width:100px;position:absolute;} -.slider .nav-previous .icon,.slider .nav-next .icon{margin-top:12px;margin-bottom:15px;} -.slider .nav-previous .date,.slider .nav-next .date,.slider .nav-previous .title,.slider .nav-next .title{line-height:14px;}.slider .nav-previous .date a,.slider .nav-next .date a,.slider .nav-previous .title a,.slider .nav-next .title a{color:#999999;} -.slider .nav-previous .date small,.slider .nav-next .date small,.slider .nav-previous .title small,.slider .nav-next .title small{display:none;} -.slider .nav-previous .date,.slider .nav-next .date{font-size:13px;line-height:13px;font-weight:bold;text-transform:uppercase;margin-bottom:5px;} -.slider .nav-previous .title,.slider .nav-next .title{font-size:11px;line-height:13px;} -.slider .nav-previous{float:left;text-align:left;}.slider .nav-previous .icon{margin-left:15px;height:24px;background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-160px 0;width:24px;height:24px;overflow:hidden;} -.slider .nav-previous .date,.slider .nav-previous .title{text-align:left;padding-left:15px;} -.slider .nav-next{float:right;text-align:right;}.slider .nav-next .icon{margin-left:61px;background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-184px 0;width:24px;height:24px;height:24px;overflow:hidden;} -.slider .nav-next .date,.slider .nav-next .title{text-align:right;padding-right:15px;} -.slider .slider-item{position:absolute;width:700px;height:100%;padding:0px;margin:0px;display:table;overflow-y:auto;}.slider .slider-item .content{display:table-cell;vertical-align:middle;}.slider .slider-item .content .pad-top .text .container{padding-top:15px;} -.slider .slider-item .content .pad-right .text .container{padding-right:15px;} -.slider .slider-item .content .pad-left .text .container{padding-left:30px;} -.slider .slider-item .content .pad-left .media.text-media .media-wrapper .media-container{border:none;background-color:#ffffff;} -.slider .slider-item .content .content-container{display:table;vertical-align:middle;}.slider .slider-item .content .content-container .text{width:40%;max-width:50%;min-width:120px;display:table-cell;vertical-align:middle;}.slider .slider-item .content .content-container .text .container{display:table-cell;vertical-align:middle;text-align:left;}.slider .slider-item .content .content-container .text .container p{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.slider .slider-item .content .content-container .text .container h2.date{font-size:15px;line-height:15px;font-weight:normal;} -.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;} -.slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:left;}.slider .slider-item .content .content-container .media .media-wrapper{display:inline-block;margin-left:auto;margin-right:auto;}.slider .slider-item .content .content-container .media .media-wrapper .media-container{display:inline-block;line-height:0px;padding:0px;max-height:100%;}.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame,.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;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame iframe{background-color:#ffffff;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .soundcloud{border:0;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image{display:inline-block;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow{position:relative;z-index:1;background:#ffffff;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:before,.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);-o-transform:rotate(-2deg);-ms-transform:rotate(-2deg);transform:rotate(-2deg);} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow::after{-webkit-transform:rotate(2deg);-moz-transform:rotate(2deg);-o-transform:rotate(2deg);-ms-transform:rotate(2deg);transform:rotate(2deg);right:10px;left:auto;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text{display:table;}.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;}.slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container p{margin-bottom:20px;} -.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;}.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;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4{border-bottom:1px solid #cccccc;margin-bottom:5px;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4 a{color:#000000;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia p{font-size:13px;line-height:19px;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .map{line-height:normal;z-index:200;text-align:left;background-color:#ffffff;}.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;} -.slider .slider-item .content .content-container .media .media-wrapper .media-container .map .google-map{height:100%;width:100%;} -.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;}.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;}.slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text a{color:#ffffff !important;} -.slider .slider-item .content .content-container .media .media-wrapper .credit{color:#999999;text-align:right;display:block;margin:0 auto;margin-top:6px;font-size:10px;line-height:13px;} -.slider .slider-item .content .content-container .media .media-wrapper .caption{text-align:left;margin-top:10px;color:#666666;font-size:11px;line-height:14px;text-rendering:optimizeLegibility;word-wrap:break-word;} -.slider .slider-item .content .media.text-media .media-wrapper .media-container{border:none;background-color:#ffffff;} -.slider .slider-item .content .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;} -.slider .slider-item .content .storify .created-at{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-328px -96px;} -.slider .slider-item .content .twitter .created-at{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-256px -24px;} -.slider .slider-item .content .googleplus .googleplus-content{font-size:13px;line-height:19px;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#666666;}.slider .slider-item .content .googleplus .googleplus-content p{font-size:13px;line-height:19px;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-title{font-size:28px;line-height:36px;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#000000;} -.slider .slider-item .content .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;} -.slider .slider-item .content .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;}.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:before,.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:after{display:table;content:"";} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:after{clear:both;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments h5{margin-bottom:5px;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments div{width:50%;padding-left:15px;display:inline-block;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments p{font-size:11px;line-height:14px;margin-bottom:5px;} -.slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments img{float:left;display:block;bottom:0;left:0;margin:auto;position:relative;right:0;top:0;width:40%;} -.slider .slider-item .content .googleplus .proflinkPrefix{color:#0088cc;} -.slider .slider-item .content .googleplus .created-at{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-208px -72px;} -.slider .slider-item .content .twitter,.slider .slider-item .content .plain-text-quote,.slider .slider-item .content .storify,.slider .slider-item .content .googleplus{text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.slider .slider-item .content .twitter blockquote,.slider .slider-item .content .plain-text-quote blockquote,.slider .slider-item .content .storify blockquote,.slider .slider-item .content .googleplus blockquote{color:#666666;}.slider .slider-item .content .twitter blockquote p,.slider .slider-item .content .plain-text-quote blockquote p,.slider .slider-item .content .storify blockquote p,.slider .slider-item .content .googleplus blockquote p{font-size:28px;line-height:36px;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#000000;} -.slider .slider-item .content .twitter blockquote .quote-mark,.slider .slider-item .content .plain-text-quote blockquote .quote-mark,.slider .slider-item .content .storify blockquote .quote-mark,.slider .slider-item .content .googleplus blockquote .quote-mark{color:#666666;} -.slider .slider-item .content-container.layout-text-media .text-media{border-top:1px solid #e3e3e3;padding-top:15px;padding-right:0;} -.slider .slider-item .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;} -.slider .slider-item .content-container.layout-text{width:100%;}.slider .slider-item .content-container.layout-text .text{width:100%;max-width:100%;}.slider .slider-item .content-container.layout-text .text .container{display:block;vertical-align:middle;text-align:left;padding:0px;width:90%;text-align:left;margin-left:auto;margin-right:auto;} -.slider .slider-item .content-container.layout-media{width:100%;}.slider .slider-item .content-container.layout-media .text{width:100%;height:100%;max-width:100%;display:block;text-align:center;}.slider .slider-item .content-container.layout-media .text .container{display:block;text-align:center;width:100%;margin-left:none;margin-right:none;} -.slider .slider-item .content-container.layout-media .media{width:100%;min-width:50%;float:none;}.slider .slider-item .content-container.layout-media .media .media-wrapper .media-container{margin-left:auto;margin-right:auto;line-height:0px;padding:0px;} -.slider .slider-item .content-container.layout-media .twitter,.slider .slider-item .content-container.layout-media .wikipedia,.slider .slider-item .content-container.layout-media .googleplus{max-width:70%;} -.vmm-notouch .navigation .toolbar .zoom-in:hover,.vmm-notouch .navigation .toolbar .zoom-out:hover,.vmm-notouch .navigation .toolbar .back-home:hover{color:#0088cc;cursor:pointer;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vmm-notouch .navigation .timenav .content .marker.active:hover{cursor:default;}.vmm-notouch .navigation .timenav .content .marker.active:hover .flag .flag-content h3,.vmm-notouch .navigation .timenav .content .marker.active:hover .flag-small .flag-content h3{color:#0088cc;} -.vmm-notouch .navigation .timenav .content .marker.active:hover .flag .flag-content h4,.vmm-notouch .navigation .timenav .content .marker.active:hover .flag-small .flag-content h4{color:#999999;} -.vmm-notouch .navigation .timenav .content .marker:hover .line{z-index:24;background:#999999;} -.vmm-notouch .navigation .timenav .content .marker .flag:hover,.vmm-notouch .navigation .timenav .content .marker .flag-small:hover{cursor:pointer;}.vmm-notouch .navigation .timenav .content .marker .flag:hover .flag-content h3,.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content h3{color:#333333;} -.vmm-notouch .navigation .timenav .content .marker .flag:hover .flag-content h4,.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content h4{color:#aaaaaa;} -.vmm-notouch .navigation .timenav .content .marker .flag:hover .flag-content .thumbnail,.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vmm-notouch .navigation .timenav .content .marker .flag:hover{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} -.vmm-notouch .navigation .timenav .content .marker .flag-small:hover{height:56px;background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content{height:36px;}.vmm-notouch .navigation .timenav .content .marker .flag-small:hover .flag-content h3{margin-top:5px;} -.vmm-notouch .navigation .timenav .content .marker .flag-small.flag-small-last:hover{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;height:26px;}.vmm-notouch .navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content{height:14px;}.vmm-notouch .navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content h3{margin-top:4px;} -.vmm-timeline .navigation{clear:both;cursor:move;width:100%;height:200px;border-top:1px solid #e3e3e3;position:relative;}.vmm-timeline .navigation .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);}.vmm-timeline .navigation .toolbar .zoom-in,.vmm-timeline .navigation .toolbar .zoom-out,.vmm-timeline .navigation .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;} -.vmm-timeline .navigation .toolbar .zoom-in .icon{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-256px 0;width:24px;height:24px;} -.vmm-timeline .navigation .toolbar .zoom-out .icon{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-280px 0;width:24px;height:24px;} -.vmm-timeline .navigation .toolbar .back-home .icon{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-328px 0;width:24px;height:24px;} -.vmm-timeline .navigation .timenav-background{position:absolute;cursor:move;top:0px;left:0px;height:150px;width:100%;background-color:#e9e9e9;}.vmm-timeline .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);}.vmm-timeline .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);} -.vmm-timeline .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);} -.vmm-timeline .navigation .timenav-background .timenav-indicator{position:absolute;top:-1px;left:50%;z-index:202;background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-160px -48px;width:24px;height:24px;} -.vmm-timeline .navigation .timenav-background .timenav-tag div{height:50px;display:table;}.vmm-timeline .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;} -.vmm-timeline .navigation .timenav-background .timenav-tag-size-half{height:25px;}.vmm-timeline .navigation .timenav-background .timenav-tag-size-half div{height:25px;} -.vmm-timeline .navigation .timenav-background .timenav-tag-size-full{height:50px;}.vmm-timeline .navigation .timenav-background .timenav-tag-size-full div{height:50px;} -.vmm-timeline .navigation .timenav-background .timenav-tag-row-2,.vmm-timeline .navigation .timenav-background .timenav-tag-row-4,.vmm-timeline .navigation .timenav-background .timenav-tag-row-6{background:#f1f1f1;} -.vmm-timeline .navigation .timenav-background .timenav-tag-row-1,.vmm-timeline .navigation .timenav-background .timenav-tag-row-3,.vmm-timeline .navigation .timenav-background .timenav-tag-row-5{background:#e9e9e9;} -.vmm-timeline .navigation .timenav{position:absolute;top:0px;left:-250px;z-index:1;}.vmm-timeline .navigation .timenav .content{position:relative;}.vmm-timeline .navigation .timenav .content .marker.start{display:none;} -.vmm-timeline .navigation .timenav .content .marker.active .dot{background:#0088cc;z-index:200;} -.vmm-timeline .navigation .timenav .content .marker.active .line{z-index:199;background:#0088cc;width:1px;}.vmm-timeline .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;} -.vmm-timeline .navigation .timenav .content .marker.active .flag,.vmm-timeline .navigation .timenav .content .marker.active .flag-small{z-index:200;}.vmm-timeline .navigation .timenav .content .marker.active .flag .flag-content,.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content{height:36px;}.vmm-timeline .navigation .timenav .content .marker.active .flag .flag-content h3,.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content h3{color:#0088cc;margin-top:5px;} -.vmm-timeline .navigation .timenav .content .marker.active .flag .flag-content .thumbnail,.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vmm-timeline .navigation .timenav .content .marker.active .flag.row1,.vmm-timeline .navigation .timenav .content .marker.active .flag.row2,.vmm-timeline .navigation .timenav .content .marker.active .flag.row3,.vmm-timeline .navigation .timenav .content .marker.active .flag-small.row1,.vmm-timeline .navigation .timenav .content .marker.active .flag-small.row2,.vmm-timeline .navigation .timenav .content .marker.active .flag-small.row3{z-index:200;} -.vmm-timeline .navigation .timenav .content .marker.active .flag{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} -.vmm-timeline .navigation .timenav .content .marker.active .flag-small{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;height:26px;}.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content{height:14px;}.vmm-timeline .navigation .timenav .content .marker.active .flag-small .flag-content h3{margin-top:4px;} -.vmm-timeline .navigation .timenav .content .marker{position:absolute;top:0px;left:150px;display:block;}.vmm-timeline .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;} -.vmm-timeline .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;}.vmm-timeline .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;} -.vmm-timeline .navigation .timenav .content .marker .flag,.vmm-timeline .navigation .timenav .content .marker .flag-small{position:absolute;top:15px;left:3px;padding:0px;display:block;z-index:23;width:153px;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content,.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content{padding:0px 7px 2px 6px;overflow:hidden;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h3,.vmm-timeline .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;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h3 small,.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content h3 small{display:none;} -.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h4,.vmm-timeline .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;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h4 small,.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content h4 small{display:none;} -.vmm-timeline .navigation .timenav .content .marker .flag .flag-content .thumbnail,.vmm-timeline .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;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content .thumbnail img,.vmm-timeline .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;} -.vmm-timeline .navigation .timenav .content .marker .flag{height:56px;background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:0 0;width:153px;height:53px;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content{height:36px;}.vmm-timeline .navigation .timenav .content .marker .flag .flag-content h3{margin-top:5px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small{height:26px;background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:0 -135px;width:153px;height:26px;}.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content{height:14px;}.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content h3{margin-top:4px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail{width:16px;height:10px;margin-right:1px;margin-top:6px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-plaintext{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-280px -130px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-quote{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-232px -130px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-document{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-256px -130px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-photo{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-280px -120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-twitter{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-256px -120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vimeo{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-328px -130px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-youtube{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-304px -130px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-video{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-328px -120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-audio{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-304px -120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-map{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-208px -120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-website{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-232px -120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-link{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-232px -120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-wikipedia{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-184px -120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-storify{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-184px -130px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-googleplus{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-208px -130px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small .flag-content thumbnail.thumb-instagram{background-image:url(timeline.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;} -.vmm-timeline .navigation .timenav .content .marker .flag.row1{z-index:25;top:48px;} -.vmm-timeline .navigation .timenav .content .marker .flag.row2{z-index:24;top:96px;} -.vmm-timeline .navigation .timenav .content .marker .flag.row3{z-index:23;top:1px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row1{z-index:28;top:24px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row2{z-index:27;top:48px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row3{z-index:26;top:72px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row4{z-index:25;top:96px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row5{z-index:24;top:120px;} -.vmm-timeline .navigation .timenav .content .marker .flag-small.row6{z-index:23;top:1px;} -.vmm-timeline .navigation .timenav .content .marker .flag.zFront,.vmm-timeline .navigation .timenav .content .marker .flag-small.zFront{z-index:201;} -.vmm-timeline .navigation .timenav .content .era{position:absolute;top:138px;left:150px;height:12px;display:block;overflow:hidden;}.vmm-timeline .navigation .timenav .content .era div{height:50px;width:100%;height:100%;line-height:0px;background:#e9e9e9;background:rgba(233, 233, 233, 0.33);}.vmm-timeline .navigation .timenav .content .era div h3,.vmm-timeline .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;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era1 div h3,.vmm-timeline .navigation .timenav .content .era1 div h4{color:rgba(204, 68, 0, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era2 div h3,.vmm-timeline .navigation .timenav .content .era2 div h4{color:rgba(204, 0, 34, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era3 div h3,.vmm-timeline .navigation .timenav .content .era3 div h4{color:rgba(0, 34, 204, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era4 div h3,.vmm-timeline .navigation .timenav .content .era4 div h4{color:rgba(204, 170, 0, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era5 div h3,.vmm-timeline .navigation .timenav .content .era5 div h4{color:rgba(0, 204, 170, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vmm-timeline .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);}.vmm-timeline .navigation .timenav .content .era6 div h3,.vmm-timeline .navigation .timenav .content .era6 div h4{color:rgba(0, 136, 204, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vmm-timeline .navigation .timenav .time{position:absolute;left:0px;top:150px;height:50px;background-color:#ffffff;line-height:0px;}.vmm-timeline .navigation .timenav .time .time-interval-minor{max-width:none;height:6px;white-space:nowrap;position:absolute;top:-2px;left:8px;z-index:10;}.vmm-timeline .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;} -.vmm-timeline .navigation .timenav .time .time-interval{white-space:nowrap;position:absolute;top:5px;left:0px;}.vmm-timeline .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;}.vmm-timeline .navigation .timenav .time .time-interval div strong{font-weight:bold;color:#000000;} -.vmm-timeline .navigation .timenav .time .time-interval div.era{font-weight:bold;padding-top:0px;margin-top:-3px;margin-left:2px;background-image:none;} -.vmm-timeline .navigation .timenav .time .time-interval .era1{color:#cc4400;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era2{color:#cc0022;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era3{color:#0022cc;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era4{color:#ccaa00;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era5{color:#00ccaa;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval .era6{color:#0088cc;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vmm-timeline .navigation .timenav .time .time-interval-major{white-space:nowrap;position:absolute;top:5px;left:0px;}.vmm-timeline .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;}.vmm-timeline .navigation .timenav .time .time-interval-major div strong{font-weight:bold;color:#000000;} -.vmm-timeline{font-size:15px;font-weight:normal;line-height:20px;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;}.vmm-timeline p{font-size:15px;font-weight:normal;line-height:20px;margin-bottom:20px;color:#666666;}.vmm-timeline p small{font-size:12px;line-height:17px;} -.vmm-timeline p:first-child{margin-top:20px;} -.vmm-timeline .navigation p{color:#999999;} -.vmm-timeline .feature h3,.vmm-timeline .feature h4,.vmm-timeline .feature h5,.vmm-timeline .feature h6{margin-bottom:15px;} -.vmm-timeline .feature p{color:#666666;} -.vmm-timeline .feature blockquote,.vmm-timeline .feature blockquote p{color:#000000;} -.vmm-timeline .date a,.vmm-timeline .title a{color:#999999;} -.vmm-timeline .hyphenate{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.vmm-timeline h1,.vmm-timeline h2,.vmm-timeline h3,.vmm-timeline h4,.vmm-timeline h5,.vmm-timeline h6{font-weight:normal;color:#000000;text-transform:none;}.vmm-timeline h1 a,.vmm-timeline h2 a,.vmm-timeline h3 a,.vmm-timeline h4 a,.vmm-timeline h5 a,.vmm-timeline h6 a{color:#999999;} -.vmm-timeline h1 small,.vmm-timeline h2 small,.vmm-timeline h3 small,.vmm-timeline h4 small,.vmm-timeline h5 small,.vmm-timeline h6 small{color:#999999;} -.vmm-timeline h1.date,.vmm-timeline h2.date,.vmm-timeline h3.date,.vmm-timeline h4.date,.vmm-timeline h5.date,.vmm-timeline h6.date{font-weight:bold;} -.vmm-timeline h2.start{font-size:36px;line-height:38px;margin-bottom:15px;} -.vmm-timeline h1{margin-bottom:15px;font-size:32px;line-height:34px;}.vmm-timeline h1 small{font-size:18px;} -.vmm-timeline h2{margin-bottom:15px;font-size:28px;line-height:30px;}.vmm-timeline h2 small{font-size:14px;line-height:16px;} -.vmm-timeline h2.date{font-size:16px;line-height:18px;margin-bottom:3.75px;color:#999999;} -.vmm-timeline h3,.vmm-timeline h4,.vmm-timeline h5,.vmm-timeline h6{line-height:40px;}.vmm-timeline h3 .active,.vmm-timeline h4 .active,.vmm-timeline h5 .active,.vmm-timeline h6 .active{color:#0088cc;} -.vmm-timeline h3{font-size:28px;line-height:30px;}.vmm-timeline h3 small{font-size:14px;} -.vmm-timeline h4{font-size:20px;line-height:22px;}.vmm-timeline h4 small{font-size:12px;} -.vmm-timeline h5{font-size:16px;line-height:18px;} -.vmm-timeline h6{font-size:13px;line-height:14px;text-transform:uppercase;} -.vmm-timeline strong{font-weight:bold;font-style:inherit;} -.vmm-timeline em{font-style:italic;font-weight:inherit;} -.vmm-timeline Q{quotes:'„' '“';font-style:italic;} -.vmm-timeline blockquote,.vmm-timeline blockquote p{font-size:28px;line-height:36px;text-align:left;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#000000;} -.vmm-timeline .credit{color:#999999;text-align:right;font-size:10px;line-height:10px;display:block;margin:0 auto;clear:both;} -.vmm-timeline .caption{text-align:left;margin-top:5px;color:#666666;font-size:11px;line-height:14px;clear:both;} -.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;} -.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} -.tooltip.top{margin-top:-2px;} -.tooltip.right{margin-left:2px;} -.tooltip.bottom{margin-top:2px;} -.tooltip.left{margin-left:-2px;} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} -.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;} -.tooltip-arrow{position:absolute;width:0;height:0;} -@media only screen and (max-width:480px),only screen and (max-device-width:480px){}@media (max-width:600px){.slider .slider-item .content .content-container{display:block;}.slider .slider-item .content .content-container .text{width:100%;max-width:100%;min-width:120px;display:block;}.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;} .slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:none;}.slider .slider-item .content .content-container .media .media-wrapper{margin-left:0px;margin-right:0px;width:100%;display:block;} .slider .slider-item .content .content-container .media.text-media .media-wrapper .media-container{border:none;}} diff --git a/compiled/css/timeline.png b/compiled/css/timeline.png deleted file mode 100644 index fc266a7df..000000000 Binary files a/compiled/css/timeline.png and /dev/null differ diff --git a/compiled/js/locale/ar.js b/compiled/js/locale/ar.js deleted file mode 100644 index b77def922..000000000 --- a/compiled/js/locale/ar.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ar",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_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'
'mmmm d',' yyyy''",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'
mmm d',' yyyy''"},messages:{loading_timeline:"���� �������... ",return_to_title:"������",expand_timeline:"����� �����",contract_timeline:"���������",wikipedia:"�� ���������, �������� �����",loading_content:"����� �������",loading:"�����"}}); \ No newline at end of file diff --git a/compiled/js/locale/cz.js b/compiled/js/locale/cz.js deleted file mode 100644 index 9923f1376..000000000 --- a/compiled/js/locale/cz.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'
'd. mmmm',' yyyy''",full_long:"d. mmm',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'
d. mmm',' yyyy''"},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/compiled/js/locale/de.js b/compiled/js/locale/de.js deleted file mode 100644 index cef495adf..000000000 --- a/compiled/js/locale/de.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd. mmmm yyyy''",full_long:"dddd',' d. mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d. mmm yyyy''"},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/compiled/js/locale/dk.js b/compiled/js/locale/dk.js deleted file mode 100644 index 4e8b22de5..000000000 --- a/compiled/js/locale/dk.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"dk",api:{wikipedia:"dk"},date:{month:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],month_abbr:["Jan.","Feb.","Marts","April","Maj","Juni","Juli","Aug.","Sept.","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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm',' yyyy''",full_long:"dddd',' d. mmm',' yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d. mmm yyyy''"},messages:{loading_timeline:"Henter timeline... ",return_to_title:"Tilbage til titel",expand_timeline:"Forstør timeline",contract_timeline:"Minimør timeline",wikipedia:"Fra Wikipedia",loading_content:"Henter indhold",loading:"Arbejder"}}); \ No newline at end of file diff --git a/compiled/js/locale/en.js b/compiled/js/locale/en.js deleted file mode 100644 index ef9c7e041..000000000 --- a/compiled/js/locale/en.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'
'mmmm d',' yyyy''",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'
mmm d',' yyyy''"},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/compiled/js/locale/es.js b/compiled/js/locale/es.js deleted file mode 100644 index d9aae779c..000000000 --- a/compiled/js/locale/es.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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","ié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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},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/compiled/js/locale/fo.js b/compiled/js/locale/fo.js deleted file mode 100644 index c6e12cb57..000000000 --- a/compiled/js/locale/fo.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd'.' mmmm yyyy''",full_long:"d'.' mmmm yyyy 'klokkan' HH:MM",full_long_small_date:"HH:MM'
'd'.' mmm yyyy''"},messages:{loading_timeline:"Lesur inn tíðarrás...",return_to_title:"Víðka tíðarrás...",expand_timeline:"Minka tíðarrás...",contract_timeline:"Minka tíðarrás",wikipedia:"Fr· Wikipedia",loading_content:"Lesur inn tilfar",loading:"Lesur inn"}}); \ No newline at end of file diff --git a/compiled/js/locale/fr.js b/compiled/js/locale/fr.js deleted file mode 100644 index 73858b21d..000000000 --- a/compiled/js/locale/fr.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'à' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},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/compiled/js/locale/id.js b/compiled/js/locale/id.js deleted file mode 100644 index fc1a6ff97..000000000 --- a/compiled/js/locale/id.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'pukul' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},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/compiled/js/locale/is.js b/compiled/js/locale/is.js deleted file mode 100644 index 69cc6f58d..000000000 --- a/compiled/js/locale/is.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"hh:MM TT",time_no_seconds_small_date:"hh:MM TT'
'mmmm d',' yyyy''",full_long:"dddd',' mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'
'dddd',' mmm d',' yyyy''"},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/compiled/js/locale/it.js b/compiled/js/locale/it.js deleted file mode 100644 index 0fd59e1b4..000000000 --- a/compiled/js/locale/it.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"it",api:{wikipedia:"it"},date:{month:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settebre","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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},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/compiled/js/locale/ja.js b/compiled/js/locale/ja.js deleted file mode 100644 index de0f96749..000000000 --- a/compiled/js/locale/ja.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'yyyy年m月d日''",full_long:"yyyy年m月d日 H時M分s秒",full_long_small_date:"HH:MM:ss'
'yyyy年m月d日''"},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/compiled/js/locale/kr.js b/compiled/js/locale/kr.js deleted file mode 100644 index b943d1ce3..000000000 --- a/compiled/js/locale/kr.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"kr",api:{wikipedia:"kr"},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:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},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/compiled/js/locale/nl.js b/compiled/js/locale/nl.js deleted file mode 100644 index d86db6aa6..000000000 --- a/compiled/js/locale/nl.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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","ma","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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},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:"Loading Content",loading:"Loading"}}); \ No newline at end of file diff --git a/compiled/js/locale/pl.js b/compiled/js/locale/pl.js deleted file mode 100644 index b1c2d0071..000000000 --- a/compiled/js/locale/pl.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"pl",api:{wikipedia:"pl"},date:{month:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},messages:{loading_timeline:"Ładowanie Timeline... ",return_to_title:"Wróć do tutułu",expand_timeline:"Rozszerz Timeline",contract_timeline:"Umowa Timeline",wikipedia:"Z Wikipedii, wolnej encyklopedii",loading_content:"Ładowanie zawartości",loading:"Ładowanie"}}); \ No newline at end of file diff --git a/compiled/js/locale/pt-br.js b/compiled/js/locale/pt-br.js deleted file mode 100644 index 146abbf00..000000000 --- a/compiled/js/locale/pt-br.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"hh:MM TT",time_no_seconds_small_date:"hh:MM TT'
'd 'de' mmmm',' yyyy''",full_long:"dddd',' d 'de' mmm',' yyyy 'às' hh:MM TT",full_long_small_date:"hh:MM TT'
'dddd',' d 'de' mmm',' yyyy''"},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:"Loading Content",loading:"Loading"}}); \ No newline at end of file diff --git a/compiled/js/locale/ru.js b/compiled/js/locale/ru.js deleted file mode 100644 index 577340e23..000000000 --- a/compiled/js/locale/ru.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'
'mmmm d',' yyyy''",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'
mmm d',' yyyy''"},messages:{loading_timeline:"Загрузка... ",return_to_title:"Вернуться к заголовку",expand_timeline:"Увеличить",contract_timeline:"Уменьшить",wikipedia:"Из Wikipedia",loading_content:"Загрузка контента",loading:"Загрузка"}}); \ No newline at end of file diff --git a/compiled/js/locale/zh-ch.js b/compiled/js/locale/zh-ch.js deleted file mode 100644 index 0368c4ef3..000000000 --- a/compiled/js/locale/zh-ch.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"zh-ch",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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},messages:{loading_timeline:"加载时间线... ",return_to_title:"回到开头",expand_timeline:"伸展时间",contract_timeline:"缩短时间",wikipedia:"From Wikipedia, the free encyclopedia",loading_content:"Loading Content",loading:"Loading"}}); \ No newline at end of file diff --git a/compiled/js/locale/zh-tw.js b/compiled/js/locale/zh-tw.js deleted file mode 100644 index a163aa68e..000000000 --- a/compiled/js/locale/zh-tw.js +++ /dev/null @@ -1,2 +0,0 @@ -/* 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_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d mmm yyyy''"},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/compiled/js/timeline-embed.js b/compiled/js/timeline-embed.js deleted file mode 100644 index 55447acc8..000000000 --- a/compiled/js/timeline-embed.js +++ /dev/null @@ -1,36 +0,0 @@ -/*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 -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 getScriptPath(e){var t=document.getElementsByTagName("script"),n="",r="";for(var i=0;i=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);var WebFontConfig;if(typeof embed_path=="undefined"||typeof embed_path=="undefined")var embed_path=getScriptPath("timeline-embed.js").split("js/")[0];(function(){function v(){LazyLoad.js(l.js,m)}function m(){a.js=!0;l.lang!="en"?LazyLoad.js(f.locale,g):a.language=!0;E()}function g(){a.language=!0;E()}function y(){a.css=!0;E()}function b(){a.font.css=!0;E()}function w(){a.font.js=!0;E()}function E(){if(a.checks>40)return;a.checks++;if(a.js&&a.css&&a.font.css&&a.font.js&&a.language){if(!a.finished){a.finished=!0;x()}}else a.timeout=setTimeout("onloaded_check_again();",250)}function S(){t=document.createElement("div");n=document.getElementById("timeline-embed");n.appendChild(t);t.setAttribute("id","timelinejs");if(l.width.toString().match("%")){n.style.width=l.width;n.setAttribute("class","full-embed ");n.setAttribute("className","full-embed ")}else{n.setAttribute("class"," sized-embed");n.setAttribute("className"," sized-embed");l.width=l.width-2;n.style.width=l.width+"px"}if(l.height.toString().match("%"))n.style.height=l.height;else{l.height=l.height-16;n.style.height=l.height+"px"}t.style.position="relative"}function x(){VMM.debug=l.debug;e=new VMM.Timeline;e.init(l.source);i&&VMM.bindEvent(global,onHeadline,"HEADLINE")}var e,t,n,r,i=!1,s="1.68",o="1.7.1",u="",a={timeout:"",checks:0,finished:!1,js:!1,css:!1,jquery:!1,has_jquery:!1,language:!1,font:{css:!1,js:!1}},f={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"}},l={version:s,debug:!1,embed:!0,width:"100%",height:"650",source:"https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html",lang:"en",font:"default",css:f.css+"timeline.css?"+s,js:f.js+"timeline-min.js?"+s},c=[{name:"Merriweather-NewsCycle",google:["News+Cycle:400,700:latin","Merriweather:400,700,900: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 url_config=="object"){l.height="100%";for(r in url_config)Object.prototype.hasOwnProperty.call(url_config,r)&&(l[r]=url_config[r]);l.source.match("docs.google.com")||l.source.match("json")||l.source.match("storify")||(l.source="https://docs.google.com/spreadsheet/pub?key="+l.source+"&output=html");i=!0}else if(typeof timeline_config=="object")for(r in timeline_config)Object.prototype.hasOwnProperty.call(timeline_config,r)&&(l[r]=timeline_config[r]);else if(typeof config=="object")for(r in config)Object.prototype.hasOwnProperty.call(config,r)&&(l[r]=config[r]);l.lang.match("/")?f.locale=l.lang:f.locale=f.locale+l.lang+".js?"+s;if(l.js.match("locale")){l.lang=l.js.split("locale/")[1].replace(".js","");l.js=f.js+"timeline-min.js?"+s}S();LazyLoad.css(l.css,y);if(l.font=="default"){a.font.js=!0;a.font.css=!0}else{var h;if(l.font.match("/")){h=l.font.split(".css")[0].split("/");f.font.name=h[h.length-1];f.font.css=l.font}else{f.font.name=l.font;f.font.css=f.font.css+l.font+".css?"+s}LazyLoad.css(f.font.css,b);for(var p=0;p"}return s};VMM.createMediaElement=function(e,t,n){var r="",i=!1;r+="
";if(e!=null&&e!=""){valid=!0;r+="";n!=null&&n!=""&&(r+=VMM.createElement("div",n,"credit"));t!=null&&t!=""&&(r+=VMM.createElement("div",t,"caption"))}r+="
";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="
",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'mmmm d',' yyyy''",full_long:"mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'
mmm d',' yyyy''"},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'
'mmmm d',' yyyy''",full_long:"dddd',' mmm d',' yyyy 'at' hh:MM TT",full_long_small_date:"hh:MM TT'
'dddd',' mmm d',' yyyy''"},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){"use strict";var t,n,r,i;if(type.of(e)=="date")t=e;else{t=new Date(0,0,1,0,0,0,0);if(e.match(/,/gi)){n=e.split(",");for(var s=0;s1&&t.setMonth(n[1]-1);n[2]>1&&t.setDate(n[2]);n[3]>1&&t.setHours(n[3]);n[4]>1&&t.setMinutes(n[4]);n[5]>1&&t.setSeconds(n[5]);n[6]>1&&t.setMilliseconds(n[6])}else if(e.match("/")){if(e.match(" ")){i=e.split(" ");if(e.match(":")){r=i[1].split(":");r[0]>=1&&t.setHours(r[0]);r[1]>=1&&t.setMinutes(r[1]);r[2]>=1&&t.setSeconds(r[2]);r[3]>=1&&t.setMilliseconds(r[3])}n=i[0].split("/")}else n=e.split("/");n[2]&&t.setFullYear(n[2]);n[0]>1&&t.setMonth(n[0]-1);n[1]>1&&t.setDate(n[1])}else if(e.length<=5){t.setFullYear(parseInt(e,10));t.setMonth(0);t.setDate(1);t.setHours(0);t.setMinutes(0);t.setSeconds(0);t.setMilliseconds(0)}else if(e.match("T"))if(navigator.userAgent.match(/MSIE\s(?!9.0)/)){i=e.split("T");if(e.match(":")){r=_time_parse[1].split(":");r[0]>=1&&t.setHours(r[0]);r[1]>=1&&t.setMinutes(r[1]);r[2]>=1&&t.setSeconds(r[2]);r[3]>=1&&t.setMilliseconds(r[3])}_d_array=i[0].split("-");n[0]&&t.setFullYear(n[0]);n[1]>1&&t.setMonth(n[1]-1);n[2]>1&&t.setDate(n[2])}else t=new Date(Date.parse(e));else t=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},prettyDate:function(e,t,n){var r,i,s,o,u=!1,a,f,l;n!=null&&(u=!0);if(type.of(e)=="date"){e.getMonth()===0&&e.getDate()==1&&e.getHours()===0&&e.getMinutes()===0?s=VMM.Date.dateformats.year:e.getDate()<=1&&e.getHours()===0&&e.getMinutes()===0?t?s=VMM.Date.dateformats.month_short:s=VMM.Date.dateformats.month:e.getHours()===0&&e.getMinutes()===0?t?s=VMM.Date.dateformats.full_short:s=VMM.Date.dateformats.full:e.getMinutes()===0?t?s=VMM.Date.dateformats.time_no_seconds_short:s=VMM.Date.dateformats.time_no_seconds_small_date:t?s=VMM.Date.dateformats.time_no_seconds_short:s=VMM.Date.dateformats.full_long;r=dateFormat(e,s,!1);o=r.split(" ");for(var c=0;c99?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;tt){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$&").replace(i,"$1$2").replace(s,"$1")},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,"$3")}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$2$5$8$11$14$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$2").replace(a,"$1").replace(f,"@$1").replace(l,"$1")},linkify_wikipedia:function(e){var t=/]*>(.*?)<\/i>/gim;return e.replace(t,"$&").replace(/]*>/gim,"").replace(/<\/i>/gim,"").replace(/]*>/gim,"").replace(/<\/b>/gim,"")},unlinkify:function(e){if(!e)return e;e=e.replace(/]*>/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,"
")},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;r1?"."+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=0)if(o[t].href===e.urls[0]){l("css");break}i+=1;e&&(i<200?setTimeout(d,50):l("css"))}}var t,n,r={},i=0,s={css:[],js:[]},o=e.styleSheets,u=[];return{css:function(e,t,n,r){if(a(e))return t;h("css",e,t,n,r)},js:function(e,t,n,r){if(a(e))return t;h("js",e,t,n,r)}}}(this.document));typeof VMM!="undefined"&&typeof VMM.ExternalAPI=="undefined"&&(VMM.ExternalAPI={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.twitter.active&&VMM.ExternalAPI.twitter.pushQue();VMM.master_config.flickr.active&&VMM.ExternalAPI.flickr.pushQue()},twitter:{tweetArray:[],get:function(e,t){var n={mid:e,id:t};VMM.master_config.twitter.que.push(n);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=?",s=setTimeout(VMM.ExternalAPI.twitter.errorTimeOut,VMM.master_config.timers.api,e),o=setTimeout(t,VMM.master_config.timers.api,e);VMM.getJSON(i,function(t){var n=t.id_str,r="

",i=VMM.Util.linkify_with_twitter(t.text,"_blank");r+=i;r+="

";typeof t.entities.media!="undefined"&&t.entities.media[0].type=="photo";r+="";VMM.attachElement("#"+e.id.toString(),r);VMM.attachElement("#text_thumb_"+e.id.toString(),t.text)}).error(function(t,n,r){trace("TWITTER error");trace("TWITTER ERROR: "+n+" "+t.responseText);VMM.attachElement("#"+e.id,VMM.MediaElement.loadingmessage("ERROR LOADING TWEET "+e.mid))}).success(function(e){clearTimeout(s);clearTimeout(o);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="

You've reached the maximum number of tweets you can load in an hour.

";n+="

You can view tweets again starting at:
"+t.reset_time+"

"}else n="

Still waiting on Twitter. "+e.mid+"

";VMM.attachElement("#"+e.id.toString(),VMM.MediaElement.loadingmessage(n))})},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)}},getHTML:function(e){var t="http://api.twitter.com/1/statuses/oembed.json?id="+e+"&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
";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