diff --git a/.gitignore b/.gitignore index cb33b3395..f82ae93ff 100644 --- a/.gitignore +++ b/.gitignore @@ -2,15 +2,13 @@ .DS_Store* dev_examples/ cdn/ -Embed.CDN.js -Embed.CDN.Generator.js -compiled/generator.html -compiled/index.html -compiled/generator-backup.html -compiled/js/storyjs-embed-cdn.js -compiled/js/storyjs-embed-generator.js -compiled/css/timeline-generator.css +compiled *.tmproj *.tmproject tmtags -source/gfx/Sprites/ \ No newline at end of file +source/gfx/Sprites/ +/node_modules +*.pyc +codekit-config.json +build + diff --git a/.gitmodules b/.gitmodules index 933337205..e69de29bb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +0,0 @@ -[submodule "source/js/Core"] - path = source/js/Core - url = https://zachwise@github.com/VeriteCo/StoryJS-Core.git -[submodule "source/less/Core"] - path = source/less/Core - url = https://zachwise@github.com/VeriteCo/StoryJS-Core-CSS.git diff --git a/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/README.markdown b/README.markdown index 240d59a18..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 @@ -12,8 +55,9 @@ in the future. Creating one is as easy as filling in a Google spreadsheet or as detailed as JSON. - + ## Add it to your site + ### Using Inline (*easiest*) Place the embed code where you want the timeline to show in the `` of your site. See [Config Options](#config-options) for a full list of what you can set in the config. @@ -37,7 +81,7 @@ Place the embed code where you want the timeline to show in the `` of your js: 'path_to_js/timeline-min.js' //OPTIONAL PATH TO JS } - + ``` ### Using a method (*advanced*) You could also initialize a new timeline using the `createStoryJS` method after `storyjs-embed.js` has been loaded @@ -58,7 +102,7 @@ Here's a simple example: - + - +
``` - +### 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 + + + + + + + +``` + +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` English* Languages available: +* `af` *Afrikaans* +* `ar` *Arabic* +* `hy` *Armenian* +* `eu` *Basque* +* `be` *Belarusian* +* `bg` *Bulgarian* +* `ca` *Catalan* +* `zh-cn` *Chinese* +* `hr` *Croatian / Hrvatski* +* `cz` *Czech* +* `da` *Danish* +* `nl` *Dutch* * `en` *English* +* `en-24hr` *English (24-hour time)* +* `eo` *Esperanto* +* `et` *Estonian* +* `fo` *Faroese* +* `fa` *Farsi* +* `fi` *Finnish* * `fr` *French* -* `es` *Spanish* -* `it` *Italian* +* `fy` *Frisian* +* `gl` *Galician* +* `ka` *Georgian* * `de` *German / Deutsch* -* `pt` *Portuguese* -* `pt-br` *Brazilian Portuguese* -* `nl` *Dutch* -* `is` *Icelandic* -* `no` *Norwegian* -* `bg` *Bulgarian* -* `sl` *Slovenian* +* `el` *Greek* +* `he` *Hebrew* +* `hi` *Hindi* * `hu` *Hungarian* -* `hy` *Armenian* -* `fo` *Faroese* -* `cz` *Czech* -* `dk` *Danish* +* `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* +* `sr-cy` *Serbian - Cyrillic* +* `sr` *Serbian - Latin* +* `si` *Sinhalese* * `sk` *Slovak* -* `ca` *Catalan* -* `el` *Greek* -* `ta` *Tamil* +* `sl` *Slovenian* +* `es` *Spanish* +* `sv` *Swedish* * `tl` *Tagalog* -* `tr` *Turkish* -* `ja` *Japanese* -* `kr` *Korean* -* `zh-ch` *Chinese* +* `ta` *Tamil* * `zh-tw` *Taiwanese* -* `ar` *Arabic (beta)* +* `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/VeriteCo/StoryJS-Core/blob/master/Language/locale/en.js) and find your language's [two letter code here](http://spreadsheets.google.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&gid=1) -###Start at End +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* -###Debug +###Debug `debug` Will log events etc to the console. *default is false* -###Map Style Types +###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` +* `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.verite.co/gfx/font-options.png) +![Font Combination Preview](http://timeline.knightlab.com/static/img/make/font-options.png) ## File Formats @@ -192,8 +312,8 @@ Due to recent changes to the Google Maps API, you need a [API Key](https://devel JSON is the native data format for TimelineJS. -Remember, JSON is it is picky. A misplaced comma or quotation mark can -prevent the timeline from loading properly. +Remember, JSON is picky. A misplaced comma or quotation mark can +prevent the timeline from loading properly. Here is the full model: ```javascript @@ -211,11 +331,12 @@ Here is the full model: }, "date": [ { - "startDate":"2011,12,10", - "endDate":"2011,12,11", + "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", @@ -232,7 +353,7 @@ Here is the full model: "text":"

Body text goes here, some HTML is OK

", "tag":"This is Optional" } - + ] } } @@ -242,7 +363,7 @@ Here is the full model: 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 extention `.jsonp` +To allow this to happen, the file must end with the extension `.jsonp` Here is the full model: ```javascript @@ -264,6 +385,7 @@ storyjs_jsonp_data = { "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", @@ -279,18 +401,9 @@ storyjs_jsonp_data = { "headline":"Headline Goes Here", "tag":"This is Optional" } - - ], - "chart": [ - { - "startDate":"2011,12,10", - "endDate":"2011,12,11", - "headline":"Headline Goes Here", - "value":"28" - } - + ] - + } } ``` @@ -301,7 +414,7 @@ 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 a couple things you need to know in order to create a timeline using Google Docs: @@ -309,7 +422,7 @@ 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 @@ -317,7 +430,7 @@ 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. @@ -328,10 +441,10 @@ using Google Docs: etc.), then paste it into the timeline’s HTML file (see [Add it to your site](#add-it-to-your-site) ) - + ### Storify: -Support for Storify is still in it's early stages. It works though. Just paste a link to the storify story as the source. +Support for Storify is still in its early stages. It works though. Just paste a link to the storify story as the source. ## Media @@ -351,10 +464,8 @@ Tips and tricks to best utilize TimelineJS 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 1f34b9642..c280ca6e5 100644 --- a/codekit-config.json +++ b/codekit-config.json @@ -1,250 +1,279 @@ { "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" : "6708", + "creatorBuild" : "8317", "files" : { - "\/dev_examples\/archive\/index_backup.html" : { + "\/compiled\/js\/locale\/it.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/archive\/index_backup.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it-min.js", + "fileType" : 64 }, - "\/dev_examples\/debug_1.html" : { + "\/compiled\/css\/themes\/font\/Lora-Istok.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/debug_1.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 - }, - "\/source\/less\/Core\/Font\/Bevan-PotanoSans.less" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Bevan-PotanoSans.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/Bevan-PotanoSans.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lora-Istok.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/source\/js\/Core\/Core\/VMM.Util.js" : { + "\/compiled\/js\/locale\/ru.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Util.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Util-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/kr.js" : { + "\/source\/js\/Core\/Language\/locale\/de.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/kr.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/de.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/kr.js", - "fileType" : 5 - }, - "\/compiled\/css\/timeline.css" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/timeline.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "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" : 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 }, - "\/source\/js\/Core\/Language\/locale\/sk.js" : { - "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" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sk.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sk.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/dev_examples\/power-plants\/fisk_ryanryanryan.jpg" : { + "\/dev_examples\/archive\/taylor\/hilton.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_ryanryanryan.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/hilton.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_ryanryanryan.jpg", - "initialSize" : 196798, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/hilton.jpg", + "initialSize" : 72463, + "fileType" : 4096 }, - "\/examples\/example_googlespreadsheet.html" : { + "\/dev_examples\/archive\/taylor\/oscar.jpg" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, + "ignore" : 0, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_googlespreadsheet.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/oscar.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/oscar.jpg", + "initialSize" : 107669, + "fileType" : 4096 }, - "\/compiled\/js\/locale\/el.js" : { + "\/compiled\/js\/locale\/pt-br.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/el.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/el-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Embed\/Embed.js" : { - "ignoreWasSetByUser" : 1, + "\/source\/js\/Core\/Language\/locale\/el.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/el.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/el.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Library\/LazyLoad.js" : { + "\/source\/js\/Core\/Language\/locale\/zh-tw.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/LazyLoad.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/zh-tw.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/LazyLoad-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/butterfield.jpg" : { + "\/source\/js\/Core\/Embed\/Embed.CDN.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/butterfield.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/butterfield.jpg", - "initialSize" : 70444, - "fileType" : 9 - }, - "\/compiled\/js\/locale\/pt.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.CDN.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/is.js" : { + "\/source\/js\/Core\/Core\/VMM.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM-min.js", + "fileType" : 64 }, - "\/dev_examples\/power-plants\/fisk_swanksalot.jpg" : { + "\/tests\/test_googlespreadsheet.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "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 + "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/source\/js\/Core\/Embed\/Embed.LoadLib.js" : { + "\/compiled\/js\/locale\/hu.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.LoadLib.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/hu.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.LoadLib-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hu-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/pt-br.js" : { + "\/source\/js\/Core\/Language\/locale\/da.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/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\/css\/themes\/font\/Rancho-Gudea.css" : { + "\/compiled\/js\/locale\/sv.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Rancho-Gudea.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sv.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sv-min.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/SansitaOne-Kameron.less" : { + "\/compiled\/js\/locale\/eu.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/SansitaOne-Kameron.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/eu.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/SansitaOne-Kameron.css", + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/eu-min.js", + "fileType" : 64 + }, + "\/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, - "fileType" : 0 + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/dev_examples\/houston\/wh3.jpg" : { + "\/dev_examples\/archive\/taylor\/born.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/wh3.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/born.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/wh3.jpg", - "initialSize" : 89432, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/born.jpg", + "initialSize" : 50360, + "fileType" : 4096 }, - "\/source\/less\/Core\/Font\/NewsCycle-Merriweather.less" : { + "\/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, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/source\/js\/Core\/Language\/locale\/fo.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/NewsCycle-Merriweather.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fo.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js", + "fileType" : 64 }, "\/source\/jade\/sections\/example-head.jade" : { "ignoreWasSetByUser" : 0, @@ -255,18 +284,7 @@ "outputStyle" : 0, "compileDebug" : 1, "outputAbbreviatedPath" : "\/source\/jade\/sections\/example-head.html", - "fileType" : 7 - }, - "\/source\/js\/Core\/Language\/locale\/bg.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/bg.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/bg.js", - "fileType" : 5 + "fileType" : 512 }, "\/source\/js\/Core\/Media\/VMM.Media.js" : { "ignoreWasSetByUser" : 0, @@ -277,62 +295,62 @@ "outputStyle" : 1, "syntaxCheckerStyle" : 0, "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.Media-min.js", - "fileType" : 5 + "fileType" : 64 }, - "\/source\/less\/Core\/VMM.Slider.less" : { + "\/compiled\/js\/locale\/lv.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Slider.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/lv.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Slider.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/lv-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/en.js" : { + "\/compiled\/js\/locale\/zh-cn.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/en.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-cn.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-cn-min.js", + "fileType" : 64 }, - "\/compiled\/generator.html" : { + "\/source\/js\/Core\/Language\/VMM.Language.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/generator.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/VMM.Language.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/Core\/Language\/VMM.Language-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/it.js" : { + "\/source\/js\/Core\/Language\/locale\/ta.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ta.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ta.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Mixins.less" : { + "\/source\/js\/VMM.Timeline.License.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Mixins.less", + "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.License.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/Mixins.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.License-min.js", + "fileType" : 64 }, "\/compiled\/js\/locale\/zh-tw.js" : { "ignoreWasSetByUser" : 0, @@ -343,1463 +361,1707 @@ "outputStyle" : 1, "syntaxCheckerStyle" : 0, "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw-min.js", - "fileType" : 5 + "fileType" : 64 }, - "\/examples\/example_jquery_load.html" : { + "\/tests\/test_utc_firefox.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_jquery_load.html", + "inputAbbreviatedPath" : "\/tests\/test_utc_firefox.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 - }, - "\/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" : 7 + "fileType" : 2048 }, - "\/compiled\/css\/themes\/font\/PT.css" : { + "\/dev_examples\/archive\/kitchen-sink\/index.html" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PT.css", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/kitchen-sink\/index.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 2048 }, - "\/source\/js\/Core\/Core\/VMM.Library.js" : { + "\/source\/js\/Core\/Slider\/VMM.Slider.Slide.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Library.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.Slide.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Library-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.Slide-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Core\/VMM.Date.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Date.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Date-min.js", - "fileType" : 5 - }, - "\/source\/js\/Core\/Slider\/VMM.Slider.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" : "\/source\/js\/Core\/Slider\/VMM.Slider.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider-min.js", - "fileType" : 5 - }, - "\/source\/jade\/example_json.jade" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/jade\/example_json.jade", - "outputStyle" : 0, - "compileDebug" : 1, - "outputAbbreviatedPath" : "\/examples\/example_json.html", - "fileType" : 7 + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/css\/themes\/timeline-dark.png" : { + "\/dev_examples\/archive\/taylor\/giant.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/giant.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png", - "initialSize" : 15505, - "fileType" : 10 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/giant.jpg", + "initialSize" : 94410, + "fileType" : 4096 }, - "\/dev_examples\/index2.html" : { + "\/source\/js\/Core\/Language\/locale\/hy.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/index2.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "ignore" : 0, + "hidden" : 0, + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/hy.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hy.js", + "fileType" : 64 }, - "\/compiled\/js\/storyjs-embed-generator.js" : { + "\/compiled\/js\/locale\/iw.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/iw.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/iw-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/de.js" : { + "\/source\/js\/Core\/Media\/VMM.ExternalAPI.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/de.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.ExternalAPI.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/de-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.ExternalAPI-min.js", + "fileType" : 64 }, - "\/dev_examples\/houston\/young.jpg" : { + "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/young.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/young.jpg", - "initialSize" : 71002, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/middle-east\/MohamedBouazizi.jpg", + "initialSize" : 79732, + "fileType" : 4096 }, - "\/source\/js\/Core\/Language\/locale\/nl.js" : { + "\/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, - "ignore" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/nl.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, + "\/source\/jade\/includes\/ascii.jade" : { + "ignoreWasSetByUser" : 1, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/source\/jade\/includes\/ascii.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/source\/jade\/includes\/ascii.html", + "fileType" : 512 }, - "\/dev_examples\/template_googlespreadsheet2\/index.html" : { + "\/compiled\/js\/locale\/ta.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/template_googlespreadsheet2\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ta.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ta-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/Arvo-PTSans.css" : { + "\/source\/jade\/sections\/embed-generator.jade" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Arvo-PTSans.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/source\/jade\/sections\/embed-generator.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/source\/jade\/sections\/embed-generator.html", + "fileType" : 512 }, - "\/compiled\/css\/timeline.png" : { + "\/compiled\/css\/timeline@2x.png" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/timeline.png", + "inputAbbreviatedPath" : "\/compiled\/css\/timeline@2x.png", "processed" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/timeline.png", - "initialSize" : 15404, - "fileType" : 10 + "outputAbbreviatedPath" : "\/compiled\/css\/timeline@2x.png", + "initialSize" : 49364, + "fileType" : 8192 }, - "\/source\/less\/Core\/Font\/Arvo-PTSans.less" : { + "\/source\/js\/Core\/Language\/locale\/hu.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Arvo-PTSans.less", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/hu.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/Arvo-PTSans.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hu.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/Pacifico-Arimo.less" : { + "\/source\/jade\/tests\/test_extra_html.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Pacifico-Arimo.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/Pacifico-Arimo.css", - "strictImports" : 0, - "fileType" : 0 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_extra_html.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_extra_html.html", + "fileType" : 512 }, - "\/source\/js\/Core\/Language\/locale\/en.js" : { + "\/source\/jade\/tests\/test_iframe_640.jade" : { "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" : 5 + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_iframe_640.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_iframe_640.html", + "fileType" : 512 }, - "\/source\/less\/Core\/Font\/NixieOne-Ledger.less" : { + "\/source\/jade\/example_storify.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/NixieOne-Ledger.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/NixieOne-Ledger.css", - "strictImports" : 0, - "fileType" : 0 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/example_storify.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/examples\/example_storify.html", + "fileType" : 512 }, - "\/compiled\/index.html" : { + "\/examples\/example_json.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/index.html", + "inputAbbreviatedPath" : "\/examples\/example_json.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/compiled\/js\/locale\/es.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 0, + "\/source\/less\/Core\/VMM.Core.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Core.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Core.css", "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es-min.js", - "fileType" : 5 - }, - "\/source\/js\/Core\/Language\/locale\/it.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, + "ignoreWasSetByUser" : 1, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/it.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/less\/Core\/Font\/PTSerif-PTSans.less" : { + "\/compiled\/js\/locale\/ka.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PTSerif-PTSans.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ka.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/PTSerif-PTSans.css", - "strictImports" : 0, - "fileType" : 0 - }, - "\/source\/jade\/example_jsonp.jade" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/jade\/example_jsonp.jade", - "outputStyle" : 0, - "compileDebug" : 1, - "outputAbbreviatedPath" : "\/examples\/example_jsonp.html", - "fileType" : 7 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ka-min.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/Merriweather-NewsCycle.less" : { + "\/compiled\/js\/locale\/ja.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Merriweather-NewsCycle.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ja.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/Merriweather-NewsCycle.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ja-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Core\/VMM.js" : { + "\/source\/js\/Core\/Media\/VMM.MediaType.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaType.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaType-min.js", + "fileType" : 64 }, - "\/source\/jade\/index.jade" : { + "\/source\/jade\/tests\/test_googlespreadsheet_bc_era_ages_epoch.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/jade\/index.jade", + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet_bc_era_ages_epoch.jade", "outputStyle" : 0, "compileDebug" : 1, - "outputAbbreviatedPath" : "\/compiled\/index.html", - "fileType" : 7 + "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_bc_era_ages_epoch.html", + "fileType" : 512 }, - "\/dev_examples\/example_html.html" : { + "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/example_html.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/dev_examples\/embed.html" : { + "\/compiled\/index.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/embed.html", + "inputAbbreviatedPath" : "\/compiled\/index.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/source\/js\/Core\/Core\/VMM.LoadLib.js" : { + "\/source\/js\/Core\/Language\/locale\/sk.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.LoadLib.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sk.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.LoadLib-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sk.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/Lekton-Molengo.less" : { + "\/compiled\/js\/locale\/da.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Lekton-Molengo.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/da.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/Lekton-Molengo.css", - "strictImports" : 0, - "fileType" : 0 - }, - "\/dev_examples\/taylor\/woolfe.jpg" : { - "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 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/da-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/ja.js" : { + "\/compiled\/js\/locale\/ca.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ja.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ca.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ja-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ca-min.js", + "fileType" : 64 }, - "\/compiled\/js\/timeline-min.js" : { + "\/tests\/test_extra_html.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", + "inputAbbreviatedPath" : "\/tests\/test_extra_html.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 + }, + "\/source\/js\/Core\/Language\/locale\/eu.js" : { + "ignoreWasSetByUser" : 0, + "ignore" : 0, + "hidden" : 0, + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/eu.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/eu.js", + "fileType" : 64 }, - "\/source\/js\/VMM.TImeline.Min.js" : { + "\/source\/js\/Core\/Language\/locale\/tr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/VMM.TImeline.Min.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/tr.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tr.js", + "fileType" : 64 }, - "\/source\/less\/Core\/GFX.less" : { + "\/compiled\/js\/locale\/hy.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/GFX.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/hy.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/GFX.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hy-min.js", + "fileType" : 64 }, - "\/source\/js\/VMM.Timeline.License.js" : { + "\/source\/js\/Core\/Language\/locale\/ar.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.License.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ar.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.License-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ar.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/born.jpg" : { + "\/compiled\/css\/themes\/font\/PT.css" : { "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\/css\/themes\/font\/PT.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/compiled\/js\/locale\/dk.js" : { + "\/compiled\/js\/storyjs-embed.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/dk.js", + "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/dk-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/fr.js" : { + "\/source\/js\/Core\/Language\/locale\/it.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fr.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/it.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/it.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Media\/VMM.TextElement.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, + "\/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, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.TextElement.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.TextElement-min.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/less\/Core\/Font\/BreeSerif-OpenSans.less" : { + "\/dev_examples\/archive\/taylor\/sun.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/BreeSerif-OpenSans.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/BreeSerif-OpenSans.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/sun.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/sun.jpg", + "initialSize" : 47058, + "fileType" : 4096 }, - "\/source\/js\/Core\/Language\/locale\/ta.js" : { + "\/source\/js\/Core\/Library\/LazyLoad.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ta.js", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/LazyLoad.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ta.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/LazyLoad-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/hu.js" : { + "\/source\/js\/Core\/Language\/locale\/ka.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/hu.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ka.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hu.js", - "fileType" : 5 - }, - "\/source\/less\/Core\/VMM.Core.less" : { - "ignoreWasSetByUser" : 1, - "ignore" : 1, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Core.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Core.css", - "strictImports" : 0, - "fileType" : 0 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ka.js", + "fileType" : 64 }, - "\/source\/less\/Theme\/Dark.less" : { - "ignoreWasSetByUser" : 1, + "\/source\/jade\/tests\/test_googlespreadsheet_biblical_ad.jade" : { + "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Theme\/Dark.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css", - "strictImports" : 0, - "fileType" : 0 - }, - "\/examples\/example_storify.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_storify.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet_biblical_ad.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_biblical_ad.html", + "fileType" : 512 }, - "\/compiled\/js\/locale\/ca.js" : { + "\/source\/js\/Core\/Core\/VMM.LoadLib.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ca.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.LoadLib.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ca-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.LoadLib-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/warner.jpg" : { + "\/dev_examples\/archive\/taylor\/burton.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/warner.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/burton.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/warner.jpg", - "initialSize" : 110210, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/burton.jpg", + "initialSize" : 85307, + "fileType" : 4096 }, - "\/compiled\/lib\/jquery-min.js" : { - "ignoreWasSetByUser" : 1, + "\/source\/js\/Core\/Core\/VMM.Util.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/lib\/jquery-min.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Util.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/lib\/jquery-min-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Util-min.js", + "fileType" : 64 }, - "\/dev_examples\/embed-dark.html" : { + "\/examples\/example_storify.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/embed-dark.html", + "inputAbbreviatedPath" : "\/examples\/example_storify.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/dev_examples\/shit-people-say\/index.html" : { + "\/tests\/test_jsonp.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/shit-people-say\/index.html", + "inputAbbreviatedPath" : "\/tests\/test_jsonp.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/compiled\/js\/locale\/ar.js" : { + "\/compiled\/js\/locale\/cz.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ar.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ar-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz-min.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Typography.less" : { + "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Typography.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/Typography.css", - "strictImports" : 0, - "fileType" : 0 - }, - "\/dev_examples\/example_storify.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/example_storify.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/source\/less\/VMM.Timeline.TimeNav.less" : { + "\/source\/js\/VMM.Timeline.js" : { + "ignoreWasSetByUser" : 1, + "ignore" : 0, + "hidden" : 0, + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.js", + "outputStyle" : 0, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/timeline.js", + "fileType" : 64 + }, + "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css" : { "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" : "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/dev_examples\/taylor\/final.jpg" : { + "\/source\/js\/Core\/Language\/locale\/ru.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/final.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/final.jpg", - "initialSize" : 56926, - "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\/less\/Core\/Font\/DroidSerif-DroidSans.less" : { + "\/source\/js\/Core\/Language\/locale\/af.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/DroidSerif-DroidSans.less", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/af.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/DroidSerif-DroidSans.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/af.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Slider\/VMM.Slider.Slide.js" : { + "\/compiled\/js\/locale\/id.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.Slide.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider.Slide-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/pt-br.js" : { - "ignoreWasSetByUser" : 0, + "\/source\/js\/Core\/Library\/jQuery\/easing.js" : { + "ignoreWasSetByUser" : 1, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/jQuery\/easing.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-br-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/jQuery\/easing-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Library\/bootstrap-tooltip.js" : { + "\/examples\/example_googlespreadsheet.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 0, + "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/bootstrap-tooltip.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/bootstrap-tooltip-min.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/examples\/example_googlespreadsheet.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/source\/js\/Core\/Language\/locale\/is.js" : { + "\/source\/js\/Core\/Core\/VMM.Date.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/is.js", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Date.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Date-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css" : { + "\/dev_examples\/archive\/taylor\/index.html" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/index.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 2048 }, - "\/compiled\/js\/timeline.js" : { + "\/source\/js\/Core\/Core\/VMM.Library.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/timeline.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Library.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Library-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/pt.js" : { + "\/dev_examples\/archive\/taylor\/todd.jpg" : { + "ignoreWasSetByUser" : 0, + "ignore" : 0, + "hidden" : 0, + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/todd.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/todd.jpg", + "initialSize" : 103878, + "fileType" : 4096 + }, + "\/source\/js\/Core\/Language\/locale\/id.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/pt.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/id.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js", + "fileType" : 64 }, - "\/source\/js\/VMM.Timeline.DataObj.js" : { - "ignoreWasSetByUser" : 0, + "\/source\/less\/Core\/VMM.Slider.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Slider.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Slider.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, "ignore" : 1, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj-min.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/js\/locale\/ta.js" : { + "\/source\/jade\/includes\/mixins.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ta.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ta-min.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/source\/jade\/includes\/mixins.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/source\/jade\/includes\/mixins.html", + "fileType" : 512 }, - "\/compiled\/js\/locale\/hu.js" : { + "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/hu.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hu-min.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/dev_examples\/middle-east\/MohamedBouazizi.jpg" : { + "\/source\/js\/Core\/Slider\/VMM.Slider.js" : { "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" : "\/source\/js\/Core\/Slider\/VMM.Slider.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.Slider-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/es.js" : { + "\/compiled\/css\/themes\/font\/Arvo-PTSans.css" : { + "ignoreWasSetByUser" : 0, + "ignore" : 1, + "hidden" : 0, + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Arvo-PTSans.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 + }, + "\/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\/js\/Core\/Language\/locale\/es.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.CDN.Generator.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js", - "fileType" : 5 + "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\/taylor\/retire.jpg" : { + "\/dev_examples\/archive\/taylor\/fortensky.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/retire.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fortensky.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/retire.jpg", - "initialSize" : 88811, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fortensky.jpg", + "initialSize" : 99172, + "fileType" : 4096 }, - "\/compiled\/js\/locale\/nl.js" : { + "\/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\/nl.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/af.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/af-min.js", + "fileType" : 64 }, - "\/dev_examples\/houston\/whChild.jpg" : { + "\/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" : "\/dev_examples\/houston\/whChild.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/whChild.jpg", - "initialSize" : 87009, - "fileType" : 9 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-cy.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-cy-min.js", + "fileType" : 64 }, - "\/dev_examples\/template_googlespreadsheet\/index.html" : { + "\/compiled\/js\/locale\/bg.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/template_googlespreadsheet\/index.html", + "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" : 8 + "fileType" : 16 }, - "\/compiled\/js\/locale\/kr.js" : { + "\/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" : "\/compiled\/js\/locale\/kr.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.License.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/kr-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.License-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/todd.jpg" : { + "\/source\/js\/Core\/Language\/locale\/pl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/todd.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/todd.jpg", - "initialSize" : 103878, - "fileType" : 9 + "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 }, - "\/dev_examples\/debug_hide_dates.html" : { + "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/debug_hide_dates.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/source\/js\/Core\/Library\/AES.js" : { + "\/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\/Library\/AES.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.TextElement.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/AES-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.TextElement-min.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/AbrilFatface-Average.less" : { + "\/source\/js\/Core\/Language\/locale\/en.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/AbrilFatface-Average.less", + "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, + "ignoreWasSetByUser" : 0, "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/AbrilFatface-Average.css", + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/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, - "fileType" : 0 + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css" : { + "\/source\/jade\/example_googlespreadsheet.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Merriweather-NewsCycle.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/example_googlespreadsheet.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/examples\/example_googlespreadsheet.html", + "fileType" : 512 }, - "\/compiled\/css\/themes\/font\/Lora-Istok.css" : { + "\/compiled\/css\/themes\/timeline-dark@2x.png" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lora-Istok.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark@2x.png", + "processed" : 0, + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark@2x.png", + "initialSize" : 49145, + "fileType" : 8192 }, - "\/dev_examples\/taylor\/giant.jpg" : { + "\/source\/jade\/generator.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/giant.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/giant.jpg", - "initialSize" : 94410, - "fileType" : 9 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/generator.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/compiled\/generator.html", + "fileType" : 512 }, - "\/source\/js\/Core\/VMM.StoryJS.js" : { + "\/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" : "\/source\/js\/Core\/VMM.StoryJS.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fi.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fi-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/zh-ch.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, - "ignore" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/zh-ch.js", + "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" : "\/compiled\/js\/locale\/zh-ch.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/bootstrap-tooltip-min.js", + "fileType" : 64 }, - "\/compiled\/css\/timeline-generator.css" : { + "\/dev_examples\/archive\/taylor\/burton-2.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/timeline-generator.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "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\/Core\/VMM.FileExtention.js" : { + "\/source\/js\/Core\/Media\/VMM.MediaElement.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.FileExtention.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaElement.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.FileExtention-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaElement-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/ru.js" : { + "\/compiled\/js\/locale\/sk.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sk.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sk-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/hy.js" : { + "\/compiled\/js\/storyjs-embed-generator.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/hy.js", + "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hy-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/no.js" : { + "\/source\/js\/Core\/Core\/VMM.Browser.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/no.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Browser.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/no-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Browser-min.js", + "fileType" : 64 }, - "\/source\/js\/VMM.Timeline.js" : { - "ignoreWasSetByUser" : 1, + "\/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\/VMM.Timeline.js", - "outputStyle" : 0, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/no.js", + "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/timeline.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/no.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Media\/VMM.MediaType.js" : { - "ignoreWasSetByUser" : 0, + "\/source\/js\/Core\/Library\/Leaflet.js" : { + "ignoreWasSetByUser" : 1, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaType.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/Leaflet.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaType-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/Leaflet-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/el.js" : { + "\/dev_examples\/archive\/taylor\/kennedy.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/el.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/el.js", - "fileType" : 5 + "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\/Embed\/Embed.CDN.js" : { + "\/source\/js\/Core\/Language\/locale\/fi.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.CDN.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fi.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fi.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css" : { + "\/source\/jade\/example_json.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/example_json.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/examples\/example_json.html", + "fileType" : 512 }, - "\/source\/jade\/sections\/embed-generator.jade" : { + "\/compiled\/js\/locale\/tl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/jade\/sections\/embed-generator.jade", - "outputStyle" : 0, - "compileDebug" : 1, - "outputAbbreviatedPath" : "\/source\/jade\/sections\/embed-generator.html", - "fileType" : 7 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/tl.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tl-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/VMM.StoryJS.License.js" : { + "\/compiled\/js\/locale\/sl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.License.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.License-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sl-min.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font.Default.less" : { + "\/tests\/test_iframe_640.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font.Default.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/Font.Default.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/tests\/test_iframe_640.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/source\/less\/Core\/Variables.less" : { + "\/compiled\/js\/locale\/pl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Variables.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pl.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/Variables.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pl-min.js", + "fileType" : 64 }, - "\/source\/jade\/example_googlespreadsheet.jade" : { + "\/compiled\/css\/timeline-generator.css" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/jade\/example_googlespreadsheet.jade", - "outputStyle" : 0, - "compileDebug" : 1, - "outputAbbreviatedPath" : "\/examples\/example_googlespreadsheet.html", - "fileType" : 7 + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/css\/timeline-generator.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/dev_examples\/iframe.html" : { + "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/iframe.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/source\/js\/Core\/Language\/locale\/tl.js" : { + "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/tl.js", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Bevan-PotanoSans.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 + }, + "\/compiled\/js\/locale\/nl.js" : { + "ignoreWasSetByUser" : 0, + "ignore" : 1, + "hidden" : 0, + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tl.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/sun.jpg" : { + "\/dev_examples\/archive\/taylor\/aids.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/sun.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/aids.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/sun.jpg", - "initialSize" : 47058, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/aids.jpg", + "initialSize" : 75647, + "fileType" : 4096 }, - "\/source\/less\/VMM.Timeline.less" : { + "\/source\/js\/Core\/Language\/locale\/ko.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/VMM.Timeline.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ko.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/timeline.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ko.js", + "fileType" : 64 }, - "\/dev_examples\/power-plants\/fisk_greenpeaceusa2012.jpg" : { + "\/dev_examples\/archive\/middle-east\/index.html" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_greenpeaceusa2012.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_greenpeaceusa2012.jpg", - "initialSize" : 77211, - "fileType" : 9 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/middle-east\/index.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/source\/js\/Core\/Language\/locale\/ar.js" : { + "\/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, + "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\/gl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ar.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/gl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ar.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/gl.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/PoiretOne-Molengo.less" : { + "\/source\/js\/Core\/Language\/locale\/lv.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PoiretOne-Molengo.less", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/lv.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/PoiretOne-Molengo.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/lv.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/VMM.Language.js" : { + "\/compiled\/js\/locale\/gl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/VMM.Language.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/gl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Language\/VMM.Language-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/gl-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/burton.jpg" : { + "\/compiled\/js\/storyjs-embed-cdn.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/burton.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/burton.jpg", - "initialSize" : 85307, - "fileType" : 9 - }, - "\/source\/js\/Core\/Language\/locale\/pl.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/pl.js", + "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pl.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn-min.js", + "fileType" : 64 }, - "\/compiled\/js\/storyjs-embed.js" : { + "\/compiled\/js\/locale\/el.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/el.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/el-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/oscar.jpg" : { + "\/source\/jade\/index.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/oscar.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/oscar.jpg", - "initialSize" : 107669, - "fileType" : 9 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/index.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/compiled\/index.html", + "fileType" : 512 }, - "\/dev_examples\/middle-east\/index.html" : { + "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/middle-east\/index.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/dev_examples\/taylor\/dame.jpg" : { + "\/source\/jade\/tests\/test_jsonp.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/dame.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/dame.jpg", - "initialSize" : 108781, - "fileType" : 9 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_jsonp.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_jsonp.html", + "fileType" : 512 }, - "\/dev_examples\/houston\/wh1.jpg" : { + "\/dev_examples\/archive\/taylor\/final.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/wh1.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/final.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/wh1.jpg", - "initialSize" : 452169, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/final.jpg", + "initialSize" : 56926, + "fileType" : 4096 }, - "\/source\/js\/Core\/Language\/locale\/tr.js" : { + "\/source\/js\/Core\/Language\/locale\/en-24hr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/tr.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/en-24hr.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tr.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en-24hr.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Media\/VMM.ExternalAPI.js" : { + "\/source\/js\/VMM.Timeline.TimeNav.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.ExternalAPI.js", + "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.TimeNav.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.ExternalAPI-min.js", - "fileType" : 5 - }, - "\/dev_examples\/republican\/index.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/republican\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.TimeNav-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/id.js" : { + "\/source\/js\/Core\/Core\/VMM.Core.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Core.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Core-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/hilton.jpg" : { + "\/dev_examples\/archive\/taylor\/velvet.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/hilton.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/velvet.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/hilton.jpg", - "initialSize" : 72463, - "fileType" : 9 - }, - "\/dev_examples\/houston\/index.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 - }, - "\/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" : 5 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/velvet.jpg", + "initialSize" : 77001, + "fileType" : 4096 }, - "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css" : { + "\/dev_examples\/archive\/taylor\/warner.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PoiretOne-Molengo.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/warner.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/warner.jpg", + "initialSize" : 110210, + "fileType" : 4096 }, - "\/source\/js\/Core\/Library\/Leaflet.js" : { - "ignoreWasSetByUser" : 1, + "\/source\/js\/VMM.Timeline.DataObj.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/Leaflet.js", + "inputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/Leaflet-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/VMM.Timeline.DataObj-min.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/burton-2.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, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/burton-2.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/burton-2.jpg", - "initialSize" : 74788, - "fileType" : 9 - }, - "\/source\/js\/Core\/Language\/locale\/hy.js" : { + "strictImports" : 0, "ignoreWasSetByUser" : 0, - "ignore" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/hy.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/hy.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/js\/Core\/Language\/locale\/no.js" : { + "\/source\/js\/Core\/Language\/locale\/sr-cy.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/no.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sr-cy.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/no.js", - "fileType" : 5 - }, - "\/dev_examples\/example_kitchensink.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/example_kitchensink.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr-cy.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Language\/locale\/ru.js" : { + "\/source\/jade\/tests\/test_googlespreadsheet_minutes.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/ru.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ru.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet_minutes.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_minutes.html", + "fileType" : 512 }, - "\/source\/js\/Core\/Language\/locale\/id.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, + "\/compiled\/lib\/jquery-min.js" : { + "ignoreWasSetByUser" : 1, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/id.js", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/lib\/jquery-min.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/id.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/lib\/jquery-min-min.js", + "fileType" : 64 }, - "\/dev_examples\/template_json\/index.html" : { + "\/compiled\/js\/timeline.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/template_json\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/timeline.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/Lekton-Molengo.css" : { + "\/source\/js\/Core\/Slider\/VMM.DragSlider.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Lekton-Molengo.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.DragSlider.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.DragSlider-min.js", + "fileType" : 64 }, - "\/compiled\/js\/storyjs-embed-cdn.js" : { + "\/source\/js\/Core\/Embed\/Embed.LoadLib.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.LoadLib.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-cdn-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.LoadLib-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css" : { + "\/source\/js\/Core\/Language\/locale\/es.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NixieOne-Ledger.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/es.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/timeline-texture.png" : { + "\/dev_examples\/archive\/taylor\/fisher.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-texture.png", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fisher.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-texture.png", - "initialSize" : 42976, - "fileType" : 10 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/fisher.jpg", + "initialSize" : 93019, + "fileType" : 4096 }, "\/source\/js\/Core\/Language\/locale\/ca.js" : { "ignoreWasSetByUser" : 0, @@ -1810,193 +2072,128 @@ "outputStyle" : 1, "syntaxCheckerStyle" : 0, "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ca.js", - "fileType" : 5 + "fileType" : 64 }, - "\/source\/less\/Core\/Reset.less" : { + "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Reset.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/Reset.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PTSerif-PTSans.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/dev_examples\/taylor\/fortensky.jpg" : { + "\/compiled\/css\/themes\/timeline-dark.png" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/fortensky.jpg", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/fortensky.jpg", - "initialSize" : 99172, - "fileType" : 9 + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-dark.png", + "initialSize" : 15505, + "fileType" : 8192 }, - "\/compiled\/js\/locale\/bg.js" : { + "\/tests\/test_googlespreadsheet_biblical_ad.html" : { "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" : 5 - }, - "\/dev_examples\/kitchen-sink\/index.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/kitchen-sink\/index.html", + "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_biblical_ad.html", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 2048 }, - "\/source\/js\/Core\/Language\/locale\/fo.js" : { + "\/compiled\/js\/locale\/en.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fo.js", + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/en.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js", - "fileType" : 5 - }, - "\/dev_examples\/taylor\/kennedy.jpg" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/kennedy.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/kennedy.jpg", - "initialSize" : 84946, - "fileType" : 9 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/en-min.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/PlayfairDisplay-Muli.less" : { - "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, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PlayfairDisplay-Muli.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/PlayfairDisplay-Muli.css", "strictImports" : 0, - "fileType" : 0 - }, - "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/AbrilFatface-Average.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 - }, - "\/dev_examples\/taylor\/index.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/js\/Core\/Embed\/Embed.CDN.Generator.js" : { + "\/source\/js\/Core\/Language\/locale\/tl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.CDN.Generator.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/tl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed-generator.js", - "fileType" : 5 - }, - "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tl.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/broadway.jpg" : { + "\/source\/jade\/tests\/test_googlespreadsheet.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/broadway.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/broadway.jpg", - "initialSize" : 111700, - "fileType" : 9 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/jade\/tests\/test_googlespreadsheet.jade", + "outputStyle" : 0, + "compileDebug" : 1, + "outputAbbreviatedPath" : "\/tests\/test_googlespreadsheet.html", + "fileType" : 512 }, - "\/compiled\/js\/locale\/fo.js" : { + "\/compiled\/js\/locale\/no.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/no.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/no-min.js", + "fileType" : 64 }, - "\/dev_examples\/houston\/whlead.jpg" : { + "\/source\/js\/Core\/Language\/locale\/zh-cn.js" : { "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 - }, - "\/dev_examples\/template_html\/index.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/template_html\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/zh-cn.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-cn.js", + "fileType" : 64 }, - "\/examples\/example_json.html" : { + "\/compiled\/js\/locale\/ko.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_json.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 - }, - "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/DroidSerif-DroidSans.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ko.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ko-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/tr.js" : { + "\/tests\/test_googlespreadsheet_minutes.html" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/tr.js", - "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tr-min.js", - "fileType" : 5 + "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_minutes.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, "\/source\/js\/Core\/Language\/locale\/cz.js" : { "ignoreWasSetByUser" : 0, @@ -2007,303 +2204,327 @@ "outputStyle" : 1, "syntaxCheckerStyle" : 0, "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js", - "fileType" : 5 + "fileType" : 64 }, - "\/compiled\/js\/locale\/pl.js" : { + "\/compiled\/js\/locale\/fo.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pl.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fo.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pl-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fo-min.js", + "fileType" : 64 }, - "\/dev_examples\/power-plants\/fisk_pauldailingmedill.jpg" : { + "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_pauldailingmedill.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_pauldailingmedill.jpg", - "initialSize" : 219541, - "fileType" : 9 + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Pacifico-Arimo.css", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 16 }, - "\/source\/js\/Core\/Media\/VMM.MediaElement.js" : { + "\/source\/js\/Core\/Language\/locale\/fr.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaElement.js", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/fr.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Media\/VMM.MediaElement-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js", + "fileType" : 64 }, - "\/source\/js\/VMM.Timeline.TimeNav.js" : { + "\/dev_examples\/archive\/taylor\/dame.jpg" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "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" : "\/dev_examples\/archive\/taylor\/dame.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/dame.jpg", + "initialSize" : 108781, + "fileType" : 4096 }, - "\/source\/js\/Core\/Language\/locale\/sl.js" : { + "\/compiled\/css\/themes\/timeline-texture.png" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, + "outputPathIsSetByUser" : 0, + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-texture.png", + "processed" : 0, + "outputAbbreviatedPath" : "\/compiled\/css\/themes\/timeline-texture.png", + "initialSize" : 42976, + "fileType" : 8192 + }, + "\/source\/js\/Core\/Embed\/Embed.js" : { + "ignoreWasSetByUser" : 1, + "ignore" : 0, + "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sl.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Embed\/Embed.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sl.js", - "fileType" : 5 - }, - "\/dev_examples\/index_html.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/index_html.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputAbbreviatedPath" : "\/compiled\/js\/storyjs-embed.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Core\/VMM.Browser.js" : { + "\/compiled\/js\/timeline-min.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Browser.js", + "inputAbbreviatedPath" : "\/compiled\/js\/timeline-min.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Browser-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/timeline-min-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/dark.css" : { + "\/compiled\/css\/themes\/font\/Rancho-Gudea.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Rancho-Gudea.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 16 }, - "\/dev_examples\/houston\/wh2.jpg" : { + "\/examples\/example_jsonp.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/houston\/wh2.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/houston\/wh2.jpg", - "initialSize" : 35669, - "fileType" : 9 + "inputAbbreviatedPath" : "\/examples\/example_jsonp.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/dev_examples\/taylor\/velvet.jpg" : { + "\/tests\/test_googlespreadsheet_bc_era_ages_epoch.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/velvet.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/velvet.jpg", - "initialSize" : 77001, - "fileType" : 9 + "inputAbbreviatedPath" : "\/tests\/test_googlespreadsheet_bc_era_ages_epoch.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/source\/js\/Core\/Language\/locale\/de.js" : { + "\/source\/js\/Core\/Language\/locale\/nl.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/de.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/nl.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/de.js", - "fileType" : 5 - }, - "\/dev_examples\/debug.html" : { - "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/debug.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/nl.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/Lora-Istok.less" : { + "\/source\/js\/Core\/Language\/locale\/sv.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Lora-Istok.less", + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sv.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/Lora-Istok.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sv.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/Georgia-Helvetica.less" : { + "\/source\/js\/Core\/Language\/locale\/bg.js" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Georgia-Helvetica.less", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/bg.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/Georgia-Helvetica.css", - "strictImports" : 0, - "fileType" : 0 + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/bg.js", + "fileType" : 64 }, - "\/source\/jade\/includes\/mixins.jade" : { + "\/compiled\/js\/locale\/tr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/jade\/includes\/mixins.jade", - "outputStyle" : 0, - "compileDebug" : 1, - "outputAbbreviatedPath" : "\/source\/jade\/includes\/mixins.html", - "fileType" : 7 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/tr.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/tr-min.js", + "fileType" : 64 }, - "\/source\/less\/Core\/Font\/PT.less" : { + "\/compiled\/js\/locale\/sr.js" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, + "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/PT.less", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sr.js", "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/PT.css", + "syntaxCheckerStyle" : 0, + "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, - "fileType" : 0 + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/dev_examples\/taylor\/fisher.jpg" : { + "\/dev_examples\/archive\/taylor\/woolfe.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/fisher.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/woolfe.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/fisher.jpg", - "initialSize" : 93019, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/woolfe.jpg", + "initialSize" : 113102, + "fileType" : 4096 }, - "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css" : { + "\/source\/js\/Core\/Language\/locale\/sr.js" : { + "ignoreWasSetByUser" : 0, + "ignore" : 0, + "hidden" : 0, + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/sr.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sr.js", + "fileType" : 64 + }, + "\/compiled\/css\/themes\/dark.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/dark.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "fileType" : 16 }, - "\/dev_examples\/power-plants\/fisk_vxla.jpg" : { - "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\/power-plants\/fisk_vxla.jpg", - "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/power-plants\/fisk_vxla.jpg", - "initialSize" : 95680, - "fileType" : 9 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/js\/locale\/fr.js" : { + "\/source\/js\/Core\/Core\/VMM.FileExtention.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.FileExtention.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.FileExtention-min.js", + "fileType" : 64 }, - "\/dev_examples\/embed_wide.html" : { + "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/embed_wide.html", + "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/NewsCycle-Merriweather.css", "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "fileType" : 16 }, - "\/source\/less\/Core\/VMM.Tooltip.less" : { + "\/compiled\/js\/locale\/fr.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Tooltip.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Tooltip.css", - "strictImports" : 0, - "fileType" : 0 - }, - "\/source\/js\/Core\/Language\/locale\/zh-tw.js" : { - "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, - "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/zh-tw.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/fr.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-tw.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/fr-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css" : { + "\/dev_examples\/archive\/taylor\/broadway.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/PlayfairDisplay-Muli.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/broadway.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/broadway.jpg", + "initialSize" : 111700, + "fileType" : 4096 }, - "\/dev_examples\/test_dates.html" : { + "\/compiled\/css\/timeline.png" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, - "hidden" : 1, + "ignore" : 0, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/test_dates.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/css\/timeline.png", + "processed" : 0, + "outputAbbreviatedPath" : "\/compiled\/css\/timeline.png", + "initialSize" : 15404, + "fileType" : 8192 }, - "\/examples\/example_jsonp.html" : { + "\/dev_examples\/archive\/taylor\/butterfield.jpg" : { "ignoreWasSetByUser" : 0, - "ignore" : 1, + "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/examples\/example_jsonp.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/butterfield.jpg", + "processed" : 0, + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/butterfield.jpg", + "initialSize" : 70444, + "fileType" : 4096 }, - "\/source\/js\/Core\/Language\/locale\/dk.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\/Core\/Language\/locale\/dk.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/dk.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/js\/Core\/Slider\/VMM.DragSlider.js" : { + "\/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, - "ignore" : 1, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.DragSlider.js", + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Slider\/VMM.DragSlider-min.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, "\/source\/js\/Core\/Language\/locale\/ja.js" : { "ignoreWasSetByUser" : 0, @@ -2314,147 +2535,177 @@ "outputStyle" : 1, "syntaxCheckerStyle" : 0, "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ja.js", - "fileType" : 5 + "fileType" : 64 }, - "\/compiled\/js\/locale\/zh-ch.js" : { + "\/compiled\/js\/locale\/ar.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-ch.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/ar.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/zh-ch-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/ar-min.js", + "fileType" : 64 }, - "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css" : { + "\/source\/less\/Core\/VMM.Tooltip.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/VMM.Tooltip.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/VMM.Tooltip.css", + "outputPathIsSetByUser" : 0, + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, "ignoreWasSetByUser" : 0, - "ignore" : 0, + "shouldRunBless" : 0, "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/css\/themes\/font\/BreeSerif-OpenSans.css", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 13 + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 }, - "\/source\/less\/Core\/Font\/Rancho-Gudea.less" : { + "\/compiled\/generator.html" : { "ignoreWasSetByUser" : 0, - "ignore" : 0, - "hidden" : 0, + "ignore" : 1, + "hidden" : 1, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/less\/Core\/Font\/Rancho-Gudea.less", - "outputStyle" : 1, - "shouldRunBless" : 0, - "outputAbbreviatedPath" : "\/source\/less\/Core\/css\/Rancho-Gudea.css", - "strictImports" : 0, - "fileType" : 0 + "inputAbbreviatedPath" : "\/compiled\/generator.html", + "outputAbbreviatedPath" : "No Output Path", + "fileType" : 2048 }, - "\/compiled\/js\/locale\/sk.js" : { + "\/compiled\/js\/locale\/is.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sk.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sk-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is-min.js", + "fileType" : 64 }, - "\/dev_examples\/houston\/eyesclosedftm_10001.jpg" : { + "\/source\/js\/Core\/Language\/locale\/iw.js" : { "ignoreWasSetByUser" : 0, "ignore" : 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 + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/iw.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/iw.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Core\/VMM.Core.js" : { + "\/source\/js\/Core\/Library\/AES.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Core.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/AES.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Core\/VMM.Core-min.js", - "fileType" : 5 - }, - "\/source\/jade\/includes\/ascii.jade" : { - "ignoreWasSetByUser" : 1, - "ignore" : 1, - "hidden" : 0, - "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/jade\/includes\/ascii.jade", - "outputStyle" : 0, - "compileDebug" : 1, - "outputAbbreviatedPath" : "\/source\/jade\/includes\/ascii.html", - "fileType" : 7 + "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/AES-min.js", + "fileType" : 64 }, - "\/source\/jade\/generator.jade" : { + "\/source\/jade\/example_jsonp.jade" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 1, - "inputAbbreviatedPath" : "\/source\/jade\/generator.jade", + "inputAbbreviatedPath" : "\/source\/jade\/example_jsonp.jade", "outputStyle" : 0, "compileDebug" : 1, - "outputAbbreviatedPath" : "\/compiled\/generator.html", - "fileType" : 7 + "outputAbbreviatedPath" : "\/examples\/example_jsonp.html", + "fileType" : 512 }, - "\/dev_examples\/power-plants\/index.html" : { + "\/compiled\/js\/locale\/es.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, - "hidden" : 1, + "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/power-plants\/index.html", - "outputAbbreviatedPath" : "No Output Path", - "fileType" : 8 + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/es.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/es-min.js", + "fileType" : 64 }, - "\/compiled\/js\/locale\/sl.js" : { + "\/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, - "ignore" : 1, + "shouldRunBless" : 0, "hidden" : 0, + "strictMath" : 0, + "outputStyle" : 1, + "fileType" : 1, + "debugStyle" : 0 + }, + "\/source\/less\/Core\/Reset.less" : { + "ieCompatibility" : 1, + "inputAbbreviatedPath" : "\/source\/less\/Core\/Reset.less", + "outputAbbreviatedPath" : "\/source\/less\/css\/Reset.css", "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/sl.js", + "strictUnits" : 0, + "relativeURLS" : 0, + "ignore" : 1, + "strictImports" : 0, + "ignoreWasSetByUser" : 0, + "shouldRunBless" : 0, + "hidden" : 0, + "strictMath" : 0, "outputStyle" : 1, - "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/sl-min.js", - "fileType" : 5 + "fileType" : 1, + "debugStyle" : 0 }, - "\/compiled\/js\/locale\/cz.js" : { + "\/compiled\/js\/locale\/pt.js" : { "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/compiled\/js\/locale\/cz.js", + "inputAbbreviatedPath" : "\/compiled\/js\/locale\/pt.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/compiled\/js\/locale\/cz-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/pt-min.js", + "fileType" : 64 }, - "\/source\/js\/Core\/Library\/jQuery\/easing.js" : { - "ignoreWasSetByUser" : 1, + "\/source\/js\/Core\/VMM.StoryJS.js" : { + "ignoreWasSetByUser" : 0, "ignore" : 1, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/source\/js\/Core\/Library\/jQuery\/easing.js", + "inputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS.js", "outputStyle" : 1, "syntaxCheckerStyle" : 0, - "outputAbbreviatedPath" : "\/source\/js\/Core\/Library\/jQuery\/easing-min.js", - "fileType" : 5 + "outputAbbreviatedPath" : "\/source\/js\/Core\/VMM.StoryJS-min.js", + "fileType" : 64 + }, + "\/source\/js\/Core\/Language\/locale\/is.js" : { + "ignoreWasSetByUser" : 0, + "ignore" : 0, + "hidden" : 0, + "outputPathIsSetByUser" : 1, + "inputAbbreviatedPath" : "\/source\/js\/Core\/Language\/locale\/is.js", + "outputStyle" : 1, + "syntaxCheckerStyle" : 0, + "outputAbbreviatedPath" : "\/compiled\/js\/locale\/is.js", + "fileType" : 64 }, - "\/dev_examples\/taylor\/aids.jpg" : { + "\/dev_examples\/archive\/taylor\/retire.jpg" : { "ignoreWasSetByUser" : 0, "ignore" : 0, "hidden" : 0, "outputPathIsSetByUser" : 0, - "inputAbbreviatedPath" : "\/dev_examples\/taylor\/aids.jpg", + "inputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/retire.jpg", "processed" : 0, - "outputAbbreviatedPath" : "\/dev_examples\/taylor\/aids.jpg", - "initialSize" : 75647, - "fileType" : 9 + "outputAbbreviatedPath" : "\/dev_examples\/archive\/taylor\/retire.jpg", + "initialSize" : 88811, + "fileType" : 4096 } }, "manualImportLinks" : [ @@ -2462,6 +2713,7 @@ ], "projectSettings" : { "hamlNoEscapeInAttributes" : 0, + "kitAutoOutputPathStyle" : 0, "lessOutputStyle" : 1, "hamlAutoOutputPathReplace2" : "", "draggedImportConcatenationStyle" : 1, @@ -2474,24 +2726,29 @@ "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, "stylusAutoOutputPathRelativePath" : "..\/css", "jsCheckerIndent" : 4, + "kitAutoOutputPathRelativePath" : "", "lessAutoOutputPathReplace2" : "css", "jadeAutoOutputPathReplace2" : "", "shouldRunBless" : 0, @@ -2516,7 +2773,10 @@ "coffeeAutoOutputPathReplace1" : "", "hamlUseDoubleQuotes" : 0, "coffeeAutoOutputPathReplace2" : "", + "kitAutoOutputPathReplace1" : "", "uglifyReservedNamesString" : "", + "coffeeOutputStyle" : 0, + "slimAutoOutputPathRelativePath" : "", "jsHintFlags" : { "onecase" : 0, "immed" : 0, @@ -2569,8 +2829,6 @@ "plusplus" : 0, "noempty" : 0 }, - "coffeeOutputStyle" : 0, - "slimAutoOutputPathRelativePath" : "", "jsLintFlags" : { "white" : 1, "bitwise" : 0, @@ -2623,7 +2881,16 @@ "slimAutoOutputPathReplace2" : "", "jadeCompileDebug" : 1, "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 4d7be8a07..000000000 --- a/compiled/css/themes/dark.css +++ /dev/null @@ -1,279 +0,0 @@ -.vco-storyjs{}.vco-storyjs div *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6,.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs pre,.vco-storyjs a,.vco-storyjs abbr,.vco-storyjs acronym,.vco-storyjs address,.vco-storyjs cite,.vco-storyjs code,.vco-storyjs del,.vco-storyjs dfn,.vco-storyjs em,.vco-storyjs img,.vco-storyjs q,.vco-storyjs s,.vco-storyjs samp,.vco-storyjs small,.vco-storyjs strike,.vco-storyjs strong,.vco-storyjs sub,.vco-storyjs sup,.vco-storyjs tt,.vco-storyjs var,.vco-storyjs dd,.vco-storyjs dl,.vco-storyjs dt,.vco-storyjs li,.vco-storyjs ol,.vco-storyjs ul,.vco-storyjs fieldset,.vco-storyjs form,.vco-storyjs label,.vco-storyjs legend,.vco-storyjs button,.vco-storyjs table,.vco-storyjs caption,.vco-storyjs tbody,.vco-storyjs tfoot,.vco-storyjs thead,.vco-storyjs tr,.vco-storyjs th,.vco-storyjs td,.vco-storyjs .vco-container,.vco-storyjs .content-container,.vco-storyjs .media,.vco-storyjs .text,.vco-storyjs .vco-slider,.vco-storyjs .slider,.vco-storyjs .date,.vco-storyjs .title,.vco-storyjs .messege,.vco-storyjs .map,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .vco-feedback,.vco-storyjs .vco-feature,.vco-storyjs .toolbar,.vco-storyjs .marker,.vco-storyjs .dot,.vco-storyjs .line,.vco-storyjs .flag,.vco-storyjs .time,.vco-storyjs .era,.vco-storyjs .major,.vco-storyjs .minor,.vco-storyjs .vco-navigation,.vco-storyjs .start,.vco-storyjs .active{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;width:auto;float:none;} -.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{clear:none;} -.vco-storyjs table{border-collapse:collapse;border-spacing:0;} -.vco-storyjs ol,.vco-storyjs ul{list-style:none;} -.vco-storyjs q:before,.vco-storyjs q:after,.vco-storyjs blockquote:before,.vco-storyjs blockquote:after{content:"";} -.vco-storyjs a:focus{outline:thin dotted;} -.vco-storyjs a:hover,.vco-storyjs a:active{outline:0;} -.vco-storyjs article,.vco-storyjs aside,.vco-storyjs details,.vco-storyjs figcaption,.vco-storyjs figure,.vco-storyjs footer,.vco-storyjs header,.vco-storyjs hgroup,.vco-storyjs nav,.vco-storyjs section{display:block;} -.vco-storyjs audio,.vco-storyjs canvas,.vco-storyjs video{display:inline-block;*display:inline;*zoom:1;} -.vco-storyjs audio:not([controls]){display:none;} -.vco-storyjs div{max-width:none;} -.vco-storyjs sub,.vco-storyjs sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;} -.vco-storyjs sup{top:-0.5em;} -.vco-storyjs sub{bottom:-0.25em;} -.vco-storyjs img{border:0;-ms-interpolation-mode:bicubic;} -.vco-storyjs button,.vco-storyjs input,.vco-storyjs select,.vco-storyjs textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;} -.vco-storyjs button,.vco-storyjs input{line-height:normal;*overflow:visible;} -.vco-storyjs button::-moz-focus-inner,.vco-storyjs input::-moz-focus-inner{border:0;padding:0;} -.vco-storyjs button,.vco-storyjs input[type="button"],.vco-storyjs input[type="reset"],.vco-storyjs input[type="submit"]{cursor:pointer;-webkit-appearance:button;} -.vco-storyjs input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -.vco-storyjs input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;} -.vco-storyjs textarea{overflow:auto;vertical-align:top;} -.vco-storyjs{font-family:"Georgia",Times New Roman,Times,serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:"Georgia",Times New Roman,Times,serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:"Georgia",Times New Roman,Times,serif;} -.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} -.vco-storyjs{font-size:15px;font-weight:normal;line-height:20px;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;}.vco-storyjs p{font-size:15px;font-weight:normal;line-height:20px;margin-bottom:20px;color:#aaaaaa;}.vco-storyjs p small{font-size:12px;line-height:17px;} -.vco-storyjs p:first-child{margin-top:20px;} -.vco-storyjs .vco-navigation p{color:#999999;} -.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{margin-bottom:15px;} -.vco-storyjs .vco-feature p{color:#aaaaaa;} -.vco-storyjs .vco-feature blockquote,.vco-storyjs .vco-feature blockquote p{color:#ffffff;} -.vco-storyjs .date a,.vco-storyjs .title a{color:#999999;} -.vco-storyjs .hyphenate{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{font-weight:normal;color:#ffffff;text-transform:none;}.vco-storyjs h1 a,.vco-storyjs h2 a,.vco-storyjs h3 a,.vco-storyjs h4 a,.vco-storyjs h5 a,.vco-storyjs h6 a{color:#999999;} -.vco-storyjs h1 small,.vco-storyjs h2 small,.vco-storyjs h3 small,.vco-storyjs h4 small,.vco-storyjs h5 small,.vco-storyjs h6 small{color:#999999;} -.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-weight:bold;} -.vco-storyjs h2.start{font-size:36px;line-height:38px;margin-bottom:15px;} -.vco-storyjs h1{margin-bottom:15px;font-size:32px;line-height:34px;}.vco-storyjs h1 small{font-size:18px;} -.vco-storyjs h2{margin-bottom:15px;font-size:28px;line-height:30px;}.vco-storyjs h2 small{font-size:14px;line-height:16px;} -.vco-storyjs h2.date{font-size:16px;line-height:18px;margin-bottom:3.75px;color:#999999;} -.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{line-height:40px;}.vco-storyjs h3 .active,.vco-storyjs h4 .active,.vco-storyjs h5 .active,.vco-storyjs h6 .active{color:#0bd4e3;} -.vco-storyjs h3{font-size:28px;line-height:30px;}.vco-storyjs h3 small{font-size:14px;} -.vco-storyjs h4{font-size:20px;line-height:22px;}.vco-storyjs h4 small{font-size:12px;} -.vco-storyjs h5{font-size:16px;line-height:18px;} -.vco-storyjs h6{font-size:13px;line-height:14px;text-transform:uppercase;} -.vco-storyjs strong{font-weight:bold;font-style:inherit;} -.vco-storyjs em{font-style:italic;font-weight:inherit;} -.vco-storyjs Q{quotes:'„' '“';font-style:italic;} -.vco-storyjs blockquote,.vco-storyjs blockquote p{font-size:28px;line-height:36px;text-align:left;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#ffffff;} -.vco-storyjs .credit{color:#999999;text-align:right;font-size:10px;line-height:10px;display:block;margin:0 auto;clear:both;} -.vco-storyjs .caption{text-align:left;margin-top:5px;color:#aaaaaa;font-size:11px;line-height:14px;clear:both;} -.vco-storyjs.vco-right-to-left h1,.vco-storyjs.vco-right-to-left h2,.vco-storyjs.vco-right-to-left h3,.vco-storyjs.vco-right-to-left h4,.vco-storyjs.vco-right-to-left h5,.vco-storyjs.vco-right-to-left h6,.vco-storyjs.vco-right-to-left p,.vco-storyjs.vco-right-to-left blockquote,.vco-storyjs.vco-right-to-left pre,.vco-storyjs.vco-right-to-left a,.vco-storyjs.vco-right-to-left abbr,.vco-storyjs.vco-right-to-left acronym,.vco-storyjs.vco-right-to-left address,.vco-storyjs.vco-right-to-left cite,.vco-storyjs.vco-right-to-left code,.vco-storyjs.vco-right-to-left del,.vco-storyjs.vco-right-to-left dfn,.vco-storyjs.vco-right-to-left em,.vco-storyjs.vco-right-to-left img,.vco-storyjs.vco-right-to-left q,.vco-storyjs.vco-right-to-left s,.vco-storyjs.vco-right-to-left samp,.vco-storyjs.vco-right-to-left small,.vco-storyjs.vco-right-to-left strike,.vco-storyjs.vco-right-to-left strong,.vco-storyjs.vco-right-to-left sub,.vco-storyjs.vco-right-to-left sup,.vco-storyjs.vco-right-to-left tt,.vco-storyjs.vco-right-to-left var,.vco-storyjs.vco-right-to-left dd,.vco-storyjs.vco-right-to-left dl,.vco-storyjs.vco-right-to-left dt,.vco-storyjs.vco-right-to-left li,.vco-storyjs.vco-right-to-left ol,.vco-storyjs.vco-right-to-left ul,.vco-storyjs.vco-right-to-left fieldset,.vco-storyjs.vco-right-to-left form,.vco-storyjs.vco-right-to-left label,.vco-storyjs.vco-right-to-left legend,.vco-storyjs.vco-right-to-left button,.vco-storyjs.vco-right-to-left table,.vco-storyjs.vco-right-to-left caption,.vco-storyjs.vco-right-to-left tbody,.vco-storyjs.vco-right-to-left tfoot,.vco-storyjs.vco-right-to-left thead,.vco-storyjs.vco-right-to-left tr,.vco-storyjs.vco-right-to-left th,.vco-storyjs.vco-right-to-left td{direction:rtl;} -.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){.vco-slider .nav-next,.vco-slider .nav-previous{display:none;}}@media (max-width:640px){}.vco-skinny .vco-slider .slider-item .content .layout-text-media .text .container{text-align:center !important;} -.vco-skinny .vco-slider .slider-item .content .layout-text-media h2,.vco-skinny .vco-slider .slider-item .content .layout-text-media h3{display:block !important;width:100% !important;text-align:center !important;} -.vco-skinny .vco-slider .slider-item .content .content-container{display:block;}.vco-skinny .vco-slider .slider-item .content .content-container .text{width:100%;max-width:100%;min-width:120px;display:block;}.vco-skinny .vco-slider .slider-item .content .content-container .text .container{display:block;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.vco-skinny .vco-slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:none;}.vco-skinny .vco-slider .slider-item .content .content-container .media .media-wrapper{margin-left:0px;margin-right:0px;width:100%;display:block;} -.vco-skinny.vco-notouch .vco-slider .nav-previous,.vco-skinny.vco-notouch .vco-slider .nav-next{z-index:203;}.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .title{filter:alpha(opacity=1);-khtml-opacity:0.01;-moz-opacity:0.01;opacity:0.01;} -.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .icon{filter:alpha(opacity=15);-khtml-opacity:0.15;-moz-opacity:0.15;opacity:0.15;} -.vco-skinny.vco-notouch .vco-slider .nav-previous .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px 0;width:24px;height:24px;overflow:hidden;margin-left:10px;} -.vco-skinny.vco-notouch .vco-slider .nav-next .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px 0;width:24px;height:24px;overflow:hidden;margin-left:66px;} -.vco-skinny.vco-notouch .vco-slider .nav-previous:hover,.vco-skinny.vco-notouch .vco-slider .nav-next:hover{color:#aaaaaa !important;background-color:#aaaaaa;background-color:rgba(255, 255, 255, 0.65);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;font-weight:bold;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{padding-bottom:5px;} -.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{padding-left:5px;padding-right:5px;} -.vco-slider{width:100%;height:100%;overflow:hidden;}.vco-slider .slider-container-mask{text-align:center;width:100%;height:100%;overflow:hidden;}.vco-slider .slider-container-mask .slider-container{position:absolute;top:0px;left:-2160px;width:100%;height:100%;text-align:center;display:block;}.vco-slider .slider-container-mask .slider-container .slider-item-container{display:table-cell;vertical-align:middle;} -.vco-notouch .vco-slider .nav-previous:hover,.vco-notouch .vco-slider .nav-next:hover{color:#aaaaaa;cursor:pointer;} -.vco-notouch .vco-slider .nav-previous:hover .icon{margin-left:10px;} -.vco-notouch .vco-slider .nav-next:hover .icon{margin-left:66px;} -.vco-notouch .vco-slider .slider-item .content .content-container .media .media-container .wikipedia h4 a:hover{color:#0bd4e3;text-decoration:none;} -.vco-notouch .vco-slider .slider-item .content .content-container .created-at:hover{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover{text-decoration:none;}.vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover h5{text-decoration:underline;} -.vco-slider img,.vco-slider embed,.vco-slider object,.vco-slider video,.vco-slider iframe{max-width:100%;} -.vco-slider .nav-previous,.vco-slider .nav-next{position:absolute;top:0px;width:100px;color:#DBDBDB;font-size:11px;}.vco-slider .nav-previous .nav-container,.vco-slider .nav-next .nav-container{height:100px;width:100px;position:absolute;} -.vco-slider .nav-previous .icon,.vco-slider .nav-next .icon{margin-top:12px;margin-bottom:15px;} -.vco-slider .nav-previous .date,.vco-slider .nav-next .date,.vco-slider .nav-previous .title,.vco-slider .nav-next .title{line-height:14px;}.vco-slider .nav-previous .date a,.vco-slider .nav-next .date a,.vco-slider .nav-previous .title a,.vco-slider .nav-next .title a{color:#999999;} -.vco-slider .nav-previous .date small,.vco-slider .nav-next .date small,.vco-slider .nav-previous .title small,.vco-slider .nav-next .title small{display:none;} -.vco-slider .nav-previous .date,.vco-slider .nav-next .date{font-size:13px;line-height:13px;font-weight:bold;text-transform:uppercase;margin-bottom:5px;} -.vco-slider .nav-previous .title,.vco-slider .nav-next .title{font-size:11px;line-height:13px;} -.vco-slider .nav-previous{float:left;text-align:left;}.vco-slider .nav-previous .icon{margin-left:15px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px 0;width:24px;height:24px;overflow:hidden;} -.vco-slider .nav-previous .date,.vco-slider .nav-previous .title{text-align:left;padding-left:15px;} -.vco-slider .nav-next{float:right;text-align:right;}.vco-slider .nav-next .icon{margin-left:61px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px 0;width:24px;height:24px;overflow:hidden;} -.vco-slider .nav-next .date,.vco-slider .nav-next .title{text-align:right;padding-right:15px;} -.vco-slider .slider-item{position:absolute;width:700px;height:100%;padding:0px;margin:0px;display:table;overflow-y:auto;}.vco-slider .slider-item .content{display:table-cell;vertical-align:middle;}.vco-slider .slider-item .content .pad-top .text .container{padding-top:15px;} -.vco-slider .slider-item .content .pad-right .text .container{padding-right:15px;} -.vco-slider .slider-item .content .pad-left .text .container{padding-left:30px;} -.vco-slider .slider-item .content .pad-left .media.text-media .media-wrapper .media-container{border:none;background-color:#1a1a1a;} -.vco-slider .slider-item .content .content-container{display:table;vertical-align:middle;}.vco-slider .slider-item .content .content-container .text{width:40%;max-width:50%;min-width:120px;display:table-cell;vertical-align:middle;}.vco-slider .slider-item .content .content-container .text .container{display:table-cell;vertical-align:middle;text-align:left;}.vco-slider .slider-item .content .content-container .text .container p{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.vco-slider .slider-item .content .content-container .text .container h2.date{font-size:15px;line-height:15px;font-weight:normal;} -.vco-slider .slider-item .content .content-container .text .container .slide-tag{font-size:11px;font-weight:bold;color:#1a1a1a;background-color:#cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;vertical-align:baseline;white-space:nowrap;line-height:11px;padding:1px 3px 1px;margin-left:7.5px;margin-bottom:7.5px;} -.vco-slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:left;}.vco-slider .slider-item .content .content-container .media .media-wrapper{display:inline-block;margin-left:auto;margin-right:auto;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container{display:inline-block;line-height:0px;padding:0px;max-height:100%;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image img{border:1px solid;border-color:#333333 #999999 #999999 #333333;background-color:#1a1a1a;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame iframe{background-color:#1a1a1a;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .soundcloud{border:0;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image{display:inline-block;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow{position:relative;z-index:1;background:#1a1a1a;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:before,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#999999;-webkit-box-shadow:0 15px 10px #999999;-moz-box-shadow:0 15px 10px #999999;box-shadow:0 15px 10px #999999;-webkit-transform:rotate(-2deg);-moz-transform:rotate(-2deg);-ms-transform:rotate(-2deg);-o-transform:rotate(-2deg);transform:rotate(-2deg);} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow::after{-webkit-transform:rotate(2deg);-moz-transform:rotate(2deg);-ms-transform:rotate(2deg);-o-transform:rotate(2deg);transform:rotate(2deg);right:10px;left:auto;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text{display:table;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container{display:table-cell;vertical-align:middle;font-size:15px;line-height:20px;color:#aaaaaa;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container p{margin-bottom:20px;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia{font-size:15px;line-height:20px;text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia .wiki-source{margin-bottom:15px;font-size:13px;line-height:19px;font-style:italic;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4{border-bottom:1px solid #333333;margin-bottom:5px;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4 a{color:#ffffff;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia p{font-size:13px;line-height:19px;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map{line-height:normal;z-index:200;text-align:left;background-color:#1a1a1a;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map img{max-height:none !important;max-width:none !important;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .google-map{height:100%;width:100%;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution{position:absolute;z-index:201;bottom:0px;width:100%;overflow:hidden;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text{height:19px;overflow:hidden;-webkit-user-select:none;line-height:19px;margin-right:60px;padding-left:65px;font-family:Arial,sans-serif;font-size:10px;color:#444;white-space:nowrap;color:#1a1a1a;text-shadow:1px 1px 1px #aaaaaa;text-align:center;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text a{color:#1a1a1a !important;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .credit{color:#999999;text-align:right;display:block;margin:0 auto;margin-top:6px;font-size:10px;line-height:13px;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .caption{text-align:left;margin-top:10px;color:#aaaaaa;font-size:11px;line-height:14px;text-rendering:optimizeLegibility;word-wrap:break-word;} -.vco-slider .slider-item .content .media.text-media .media-wrapper .media-container{border:none;background-color:#1a1a1a;} -.vco-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;} -.vco-slider .slider-item .content .storify .created-at{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -96px;} -.vco-slider .slider-item .content .twitter .created-at{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -24px;} -.vco-slider .slider-item .content .googleplus .googleplus-content{font-size:13px;line-height:19px;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#aaaaaa;}.vco-slider .slider-item .content .googleplus .googleplus-content p{font-size:13px;line-height:19px;} -.vco-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;} -.vco-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;} -.vco-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;}.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:before,.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:after{display:table;content:"";} -.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:after{clear:both;} -.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments h5{margin-bottom:5px;} -.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments div{width:50%;padding-left:15px;display:inline-block;} -.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments p{font-size:11px;line-height:14px;margin-bottom:5px;} -.vco-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%;} -.vco-slider .slider-item .content .googleplus .proflinkPrefix{color:#0bd4e3;} -.vco-slider .slider-item .content .googleplus .created-at{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -72px;} -.vco-slider .slider-item .content .twitter,.vco-slider .slider-item .content .plain-text-quote,.vco-slider .slider-item .content .storify,.vco-slider .slider-item .content .googleplus{text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.vco-slider .slider-item .content .twitter blockquote,.vco-slider .slider-item .content .plain-text-quote blockquote,.vco-slider .slider-item .content .storify blockquote,.vco-slider .slider-item .content .googleplus blockquote{color:#aaaaaa;}.vco-slider .slider-item .content .twitter blockquote p,.vco-slider .slider-item .content .plain-text-quote blockquote p,.vco-slider .slider-item .content .storify blockquote p,.vco-slider .slider-item .content .googleplus blockquote p{font-size:28px;line-height:36px;margin-bottom:6px;padding-top:10px;background-color:#1a1a1a;color:#ffffff;} -.vco-slider .slider-item .content .twitter blockquote .quote-mark,.vco-slider .slider-item .content .plain-text-quote blockquote .quote-mark,.vco-slider .slider-item .content .storify blockquote .quote-mark,.vco-slider .slider-item .content .googleplus blockquote .quote-mark{color:#aaaaaa;} -.vco-slider .slider-item .content-container.layout-text-media .text-media{border-top:1px solid #e3e3e3;padding-top:15px;padding-right:0;} -.vco-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;} -.vco-slider .slider-item .content-container.layout-text{width:100%;}.vco-slider .slider-item .content-container.layout-text .text{width:100%;max-width:100%;}.vco-slider .slider-item .content-container.layout-text .text .container{display:block;vertical-align:middle;padding:0px;width:90%;text-align:left;margin-left:auto;margin-right:auto;} -.vco-slider .slider-item .content-container.layout-media{width:100%;}.vco-slider .slider-item .content-container.layout-media .text{width:100%;height:100%;max-width:100%;display:block;text-align:center;}.vco-slider .slider-item .content-container.layout-media .text .container{display:block;text-align:center;width:100%;margin-left:none;margin-right:none;} -.vco-slider .slider-item .content-container.layout-media .media{width:100%;min-width:50%;float:none;}.vco-slider .slider-item .content-container.layout-media .media .media-wrapper .media-container{margin-left:auto;margin-right:auto;line-height:0px;padding:0px;} -.vco-slider .slider-item .content-container.layout-media .twitter,.vco-slider .slider-item .content-container.layout-media .wikipedia,.vco-slider .slider-item .content-container.layout-media .googleplus{max-width:70%;} -.storyjs-embed{background-color:#1a1a1a;margin-bottom:20px;border:1px solid #333333;padding-top:20px;padding-bottom:20px;clear:both;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);-moz-box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);} -.storyjs-embed.full-embed{overflow:hidden;border:0 !important;padding:0 !important;margin:0 !important;clear:both;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important;-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;} -.storyjs-embed.sized-embed{overflow:hidden;border:1px solid #333333;padding-top:7px;padding-bottom:7px;margin:0 !important;clear:both;-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;} -.vco-storyjs{width:100%;height:100%;padding:0px;margin:0px;background-color:#1a1a1a;position:absolute;z-index:100;clear:both;overflow:hidden;}.vco-storyjs .vmm-clear:before,.vco-storyjs .vmm-clear:after{content:"";display:table;} -.vco-storyjs .vmm-clear:after{clear:both;} -.vco-storyjs .vmm-clear{*zoom:1;} -.vco-storyjs .vco-feature{width:100%;}.vco-storyjs .vco-feature .slider,.vco-storyjs .vco-feature .vco-slider{width:100%;float:left;position:relative;z-index:10;padding-top:15px;-webkit-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);} -.vco-storyjs .vco-feedback{position:absolute;display:table;overflow:hidden;top:0px;left:0px;z-index:205;width:100%;height:100%;} -.vco-storyjs div.vco-loading,.vco-storyjs div.vco-explainer{display:table;text-align:center;min-width:100px;margin-top:15px;height:100%;width:100%;background-color:#1a1a1a;}.vco-storyjs div.vco-loading .vco-loading-container,.vco-storyjs div.vco-explainer .vco-loading-container,.vco-storyjs div.vco-loading .vco-explainer-container,.vco-storyjs div.vco-explainer .vco-explainer-container{display:table-cell;vertical-align:middle;}.vco-storyjs div.vco-loading .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-loading-icon{display:block;background-repeat:no-repeat;vertical-align:middle;margin-left:auto;margin-right:auto;text-align:center;background-image:url(themes/loading.gif?v3.4);width:28px;height:28px;} -.vco-storyjs div.vco-loading .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-gesture-icon{display:block;vertical-align:middle;margin-left:auto;margin-right:auto;text-align:center;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px -160px;width:48px;height:48px;} -.vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message{display:block;} -.vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message,.vco-storyjs div.vco-loading .vco-loading-container .vco-message p,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message p,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message p,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message p{text-align:center;font-size:11px;line-height:13px;text-transform:uppercase;margin-top:7.5px;margin-bottom:7.5px;} -.vco-storyjs div.vco-explainer{background-color:transparent;} -.vco-storyjs .vco-bezel{background-color:#aaaaaa;background-color:rgba(255, 255, 255, 0.8);width:80px;height:50px;padding:50px;padding-top:25px;padding:25px 20px 50px 20px;margin:auto;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}.vco-storyjs .vco-bezel .vco-message,.vco-storyjs .vco-bezel .vco-message p{color:#1a1a1a;font-weight:bold;} -.vco-storyjs .vco-container.vco-main{position:absolute;top:0px;left:0px;padding-bottom:3px;width:auto;height:auto;margin:0px;clear:both;} -.vco-storyjs img,.vco-storyjs embed,.vco-storyjs object,.vco-storyjs video,.vco-storyjs iframe{max-width:100%;} -.vco-storyjs img{max-height:100%;border:1px solid #999999;} -.vco-storyjs a{color:#0bd4e3;text-decoration:none;} -.vco-storyjs a:hover{color:#07909a;text-decoration:underline;} -.vco-storyjs .vcard{float:right;margin-bottom:15px;}.vco-storyjs .vcard a{color:#aaaaaa;} -.vco-storyjs .vcard a:hover{text-decoration:none;}.vco-storyjs .vcard a:hover .fn{text-decoration:underline;} -.vco-storyjs .vcard .fn,.vco-storyjs .vcard .nickname{padding-left:42px;} -.vco-storyjs .vcard .fn{display:block;font-weight:bold;} -.vco-storyjs .vcard .nickname{margin-top:1px;display:block;color:#aaaaaa;} -.vco-storyjs .vcard .avatar{float:left;display:block;width:32px;height:32px;}.vco-storyjs .vcard .avatar img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;} -.vco-storyjs .thumbnail{width:24px;height:24px;overflow:hidden;float:left;margin:0;margin-right:1px;margin-top:6px;border:0;padding:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.vco-storyjs a.thumbnail:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.vco-storyjs .thumbnail.thumb-plaintext{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -48px;} -.vco-storyjs .thumbnail.thumb-quote{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -48px;} -.vco-storyjs .thumbnail.thumb-document{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -48px;} -.vco-storyjs .thumbnail.thumb-photo{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -24px;border:0;}.vco-storyjs .thumbnail.thumb-photo img{border:0px none #333333 !important;} -.vco-storyjs .thumbnail.thumb-twitter{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -24px;} -.vco-storyjs .thumbnail.thumb-vimeo{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -48px;} -.vco-storyjs .thumbnail.thumb-youtube{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -72px;} -.vco-storyjs .thumbnail.thumb-video{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -24px;} -.vco-storyjs .thumbnail.thumb-audio{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-304px -24px;} -.vco-storyjs .thumbnail.thumb-map{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -48px;} -.vco-storyjs .thumbnail.thumb-website{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -24px;} -.vco-storyjs .thumbnail.thumb-link{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -72px;} -.vco-storyjs .thumbnail.thumb-wikipedia{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -48px;} -.vco-storyjs .thumbnail.thumb-storify{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -96px;} -.vco-storyjs .thumbnail.thumb-googleplus{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -72px;} -.vco-storyjs thumbnail.thumb-instagram{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;} -.vco-storyjs thumbnail.thumb-instagram-full{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -96px;width:48px;height:24px;} -.vco-storyjs .thumb-storify-full{height:12px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -96px;width:48px;} -.vco-storyjs .thumbnail-inline{width:16px;height:14px;overflow:hidden;display:inline-block;margin-right:1px;margin-left:3px;margin-top:2px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-storyjs .twitter .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px -96px;} -.vco-storyjs .storify .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -96px;} -.vco-storyjs .googleplus .thumbnail-inline{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;} -.vco-storyjs .zFront{z-index:204;} -.vco-notouch .vco-navigation .vco-toolbar .zoom-in:hover,.vco-notouch .vco-navigation .vco-toolbar .zoom-out:hover,.vco-notouch .vco-navigation .vco-toolbar .back-home:hover{color:#0bd4e3;cursor:pointer;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-notouch .vco-navigation .timenav .content .marker.active:hover{cursor:default;}.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag .flag-content h3,.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag-small .flag-content h3{color:#0bd4e3;} -.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag .flag-content h4,.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag-small .flag-content h4{color:#999999;} -.vco-notouch .vco-navigation .timenav .content .marker:hover .line{z-index:24;background:#999999;} -.vco-notouch .vco-navigation .timenav .content .marker .flag:hover,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{cursor:pointer;}.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content h3,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3{color:#aaaaaa;} -.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content h4,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h4{color:#aaaaaa;} -.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content .thumbnail,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-notouch .vco-navigation .timenav .content .marker .flag:hover{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} -.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{height:56px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content{height:36px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3{margin-top:5px;} -.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content{height:14px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content h3{margin-top:4px;} -.vco-timeline .vco-navigation{clear:both;cursor:move;width:100%;height:200px;border-top:1px solid #e3e3e3;position:relative;}.vco-timeline .vco-navigation .vco-toolbar{position:absolute;top:45px;left:0px;z-index:202;background-color:#1a1a1a;border:1px solid #333333;-webkit-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);}.vco-timeline .vco-navigation .vco-toolbar .zoom-in,.vco-timeline .vco-navigation .vco-toolbar .zoom-out,.vco-timeline .vco-navigation .vco-toolbar .back-home{font-weight:normal;font-size:10px;line-height:20px;top:0px;z-index:202;width:18px;height:18px;color:#aaaaaa;text-align:center;font-weight:bold;border:1px solid #1a1a1a;padding:5px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .vco-toolbar .zoom-in .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px 0;width:24px;height:24px;} -.vco-timeline .vco-navigation .vco-toolbar .zoom-out .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px 0;width:24px;height:24px;} -.vco-timeline .vco-navigation .vco-toolbar .back-home .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px 0;width:24px;height:24px;} -.vco-timeline .vco-navigation .vco-toolbar.touch{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;background-color:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in,.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out,.vco-timeline .vco-navigation .vco-toolbar.touch .back-home{width:40px;height:40px;padding:5px;background-color:#1a1a1a;border:1px solid #333333;-webkit-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -160px;width:40px;height:40px;} -.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -160px;width:40px;height:40px;} -.vco-timeline .vco-navigation .vco-toolbar.touch .back-home .icon{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-304px -160px;width:40px;height:40px;} -.vco-timeline .vco-navigation .timenav-background{position:absolute;cursor:move;top:0px;left:0px;height:150px;width:100%;background-color:#262626;}.vco-timeline .vco-navigation .timenav-background .timenav-interval-background{position:absolute;top:151px;left:0px;background:#1a1a1a;width:100%;height:49px;-webkit-box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);-moz-box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);}.vco-timeline .vco-navigation .timenav-background .timenav-interval-background .top-highlight{position:absolute;top:-1px;left:0px;z-index:30;width:100%;height:1px;background:#1a1a1a;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;-webkit-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);} -.vco-timeline .vco-navigation .timenav-background .timenav-line{position:absolute;top:0px;left:50%;width:3px;height:150px;background-color:#0bd4e3;z-index:1;-webkit-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);} -.vco-timeline .vco-navigation .timenav-background .timenav-indicator{position:absolute;top:-1px;left:50%;z-index:202;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-160px -48px;width:24px;height:24px;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag div{height:50px;display:table;}.vco-timeline .vco-navigation .timenav-background .timenav-tag div h3{display:table-cell;vertical-align:middle;padding-left:65px;font-size:15px;color:#0c0c0c;font-weight:bold;text-shadow:0px 1px 1px #727272;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half{height:25px;}.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half div{height:25px;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full{height:50px;}.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full div{height:50px;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-2,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-4,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-6{background:#2e2e2e;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-1,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-3,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-5{background:#262626;} -.vco-timeline .vco-navigation .timenav{position:absolute;top:0px;left:-250px;z-index:1;}.vco-timeline .vco-navigation .timenav .content{position:relative;}.vco-timeline .vco-navigation .timenav .content .marker.start{display:none;} -.vco-timeline .vco-navigation .timenav .content .marker.active .dot{background:#0bd4e3;z-index:200;} -.vco-timeline .vco-navigation .timenav .content .marker.active .line{z-index:199;background:#0bd4e3;width:1px;}.vco-timeline .vco-navigation .timenav .content .marker.active .line .event-line{background:#0bd4e3;filter:alpha(opacity=75);-khtml-opacity:0.75;-moz-opacity:0.75;opacity:0.75;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small{z-index:200;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content{height:36px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3{color:#0bd4e3;margin-top:5px;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content .thumbnail,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row1,.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row2,.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row1,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row2,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row3{z-index:200;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content{height:14px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3{margin-top:4px;} -.vco-timeline .vco-navigation .timenav .content .marker{position:absolute;top:0px;left:150px;display:block;}.vco-timeline .vco-navigation .timenav .content .marker .dot{position:absolute;top:150px;left:0px;display:block;width:6px;height:6px;background:#aaaaaa;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;z-index:21;} -.vco-timeline .vco-navigation .timenav .content .marker .line{position:absolute;top:0px;left:3px;width:1px;height:150px;background-color:#333333;background-color:rgba(51, 51, 51, 0.5);-webkit-box-shadow:1px 0 0 rgba(26, 26, 26, 0.5);-moz-box-shadow:1px 0 0 rgba(26, 26, 26, 0.5);box-shadow:1px 0 0 rgba(26, 26, 26, 0.5);z-index:22;}.vco-timeline .vco-navigation .timenav .content .marker .line .event-line{position:absolute;z-index:22;left:0px;height:1px;width:1px;background:#0bd4e3;filter:alpha(opacity=15);-khtml-opacity:0.15;-moz-opacity:0.15;opacity:0.15;} -.vco-timeline .vco-navigation .timenav .content .marker .flag,.vco-timeline .vco-navigation .timenav .content .marker .flag-small{position:absolute;top:15px;left:3px;padding:0px;display:block;z-index:23;width:153px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content{padding:0px 7px 2px 6px;overflow:hidden;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3{font-weight:bold;font-size:15px;line-height:20px;font-size:11px;line-height:11px;color:#999999;margin-bottom:2px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3 small,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3 small{display:none;} -.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h4,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h4{display:none;font-weight:normal;font-size:15px;line-height:20px;margin-top:5px;font-size:10px;line-height:10px;color:#aaaaaa;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h4 small,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h4 small{display:none;} -.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content .thumbnail,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail{margin-bottom:15px;margin-right:3px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content .thumbnail img,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail img{width:22px;height:22px;max-height:none;max-width:none;border:0;border:1px solid #999999;padding:0;margin:0;} -.vco-timeline .vco-navigation .timenav .content .marker .flag{height:56px;background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 0;width:153px;height:53px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content{height:36px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3{margin-top:5px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:0 -135px;width:153px;height:26px;}.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content{height:14px;}.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3{margin-top:4px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail{width:16px;height:10px;margin-right:1px;margin-top:6px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-plaintext{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-quote{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-document{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-photo{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-280px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-twitter{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-256px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vimeo{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-youtube{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-304px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-video{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-328px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-audio{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-304px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-map{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-website{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-link{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-232px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-wikipedia{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-storify{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-184px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-googleplus{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content thumbnail.thumb-instagram{background-image:url(themes/timeline-dark.png?v3.4);background-repeat:no-repeat;background-position:-208px -96px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag.row1{z-index:25;top:48px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag.row2{z-index:24;top:96px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag.row3{z-index:23;top:1px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row1{z-index:28;top:24px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row2{z-index:27;top:48px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row3{z-index:26;top:72px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row4{z-index:25;top:96px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row5{z-index:24;top:120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row6{z-index:23;top:1px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag.zFront,.vco-timeline .vco-navigation .timenav .content .marker .flag-small.zFront{z-index:201;} -.vco-timeline .vco-navigation .timenav .content .era{position:absolute;top:138px;left:150px;height:12px;display:block;overflow:hidden;}.vco-timeline .vco-navigation .timenav .content .era div{height:50px;width:100%;height:100%;line-height:0px;background:#262626;background:rgba(38, 38, 38, 0.33);}.vco-timeline .vco-navigation .timenav .content .era div h3,.vco-timeline .vco-navigation .timenav .content .era div h4{position:absolute;bottom:1px;padding-left:15px;font-size:15px;font-weight:bold;color:rgba(11, 212, 227, 0.35);text-shadow:0px 1px 1px #727272;} -.vco-timeline .vco-navigation .timenav .content .era1 div{background:#e31a0b;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(227, 26, 11, 0.1);border-right:1px solid rgba(245, 58, 44, 0.05);}.vco-timeline .vco-navigation .timenav .content .era1 div h3,.vco-timeline .vco-navigation .timenav .content .era1 div h4{color:rgba(227, 26, 11, 0.35);text-shadow:0px 1px 1px #727272;} -.vco-timeline .vco-navigation .timenav .content .era2 div{background:#e30b68;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(227, 11, 104, 0.1);border-right:1px solid rgba(245, 44, 131, 0.05);}.vco-timeline .vco-navigation .timenav .content .era2 div h3,.vco-timeline .vco-navigation .timenav .content .era2 div h4{color:rgba(227, 11, 104, 0.35);text-shadow:0px 1px 1px #727272;} -.vco-timeline .vco-navigation .timenav .content .era3 div{background:#0b68e3;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(11, 104, 227, 0.1);border-right:1px solid rgba(44, 131, 245, 0.05);}.vco-timeline .vco-navigation .timenav .content .era3 div h3,.vco-timeline .vco-navigation .timenav .content .era3 div h4{color:rgba(11, 104, 227, 0.35);text-shadow:0px 1px 1px #727272;} -.vco-timeline .vco-navigation .timenav .content .era4 div{background:#e3860b;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(227, 134, 11, 0.1);border-right:1px solid rgba(245, 158, 44, 0.05);}.vco-timeline .vco-navigation .timenav .content .era4 div h3,.vco-timeline .vco-navigation .timenav .content .era4 div h4{color:rgba(227, 134, 11, 0.35);text-shadow:0px 1px 1px #727272;} -.vco-timeline .vco-navigation .timenav .content .era5 div{background:#0be386;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(11, 227, 134, 0.1);border-right:1px solid rgba(44, 245, 158, 0.05);}.vco-timeline .vco-navigation .timenav .content .era5 div h3,.vco-timeline .vco-navigation .timenav .content .era5 div h4{color:rgba(11, 227, 134, 0.35);text-shadow:0px 1px 1px #727272;} -.vco-timeline .vco-navigation .timenav .content .era6 div{background:#0bd4e3;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(11, 212, 227, 0.1);border-right:1px solid rgba(44, 231, 245, 0.05);}.vco-timeline .vco-navigation .timenav .content .era6 div h3,.vco-timeline .vco-navigation .timenav .content .era6 div h4{color:rgba(11, 212, 227, 0.35);text-shadow:0px 1px 1px #727272;} -.vco-timeline .vco-navigation .timenav .time{position:absolute;left:0px;top:150px;height:50px;background-color:#1a1a1a;line-height:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval-minor{max-width:none;height:6px;white-space:nowrap;position:absolute;top:-2px;left:8px;z-index:10;}.vco-timeline .vco-navigation .timenav .time .time-interval-minor .minor{position:relative;top:2px;display:inline-block;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAMCAMAAACdvocfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFzMzM////040VdgAAAAJ0Uk5T/wDltzBKAAAAEklEQVR42mJgYAQCBopJgAADAAbwADHy2qHzAAAAAElFTkSuQmCC);width:100px;height:6px;background-position:center top;white-space:nowrap;color:#aaaaaa;margin-top:0px;padding-top:0px;} -.vco-timeline .vco-navigation .timenav .time .time-interval{white-space:nowrap;position:absolute;top:5px;left:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval div{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAMCAMAAACdvocfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFzMzM////040VdgAAAAJ0Uk5T/wDltzBKAAAAEklEQVR42mJgYAQCBopJgAADAAbwADHy2qHzAAAAAElFTkSuQmCC);background-position:left top;background-repeat:no-repeat;padding-top:6px;position:absolute;height:3px;left:0px;display:block;font-weight:normal;font-size:10px;line-height:20px;text-transform:uppercase;text-align:left;text-indent:0px;white-space:nowrap;color:#aaaaaa;margin-left:0px;margin-right:0px;margin-top:0px;z-index:2;}.vco-timeline .vco-navigation .timenav .time .time-interval div strong{font-weight:bold;color:#ffffff;} -.vco-timeline .vco-navigation .timenav .time .time-interval div.era{font-weight:bold;padding-top:0px;margin-top:-3px;margin-left:2px;background-image:none;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era1{color:#e31a0b;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era2{color:#e30b68;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era3{color:#0b68e3;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era4{color:#e3860b;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era5{color:#0be386;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era6{color:#0bd4e3;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval-major{white-space:nowrap;position:absolute;top:5px;left:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval-major div{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAQAQMAAADtUYf0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyOTAzRjI3REIzNDcxMUUxQUQ3QUZCOThEODQ1NDhCNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyOTAzRjI3RUIzNDcxMUUxQUQ3QUZCOThEODQ1NDhCNyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjI5MDNGMjdCQjM0NzExRTFBRDdBRkI5OEQ4NDU0OEI3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjI5MDNGMjdDQjM0NzExRTFBRDdBRkI5OEQ4NDU0OEI3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+DPWNfQAAAANQTFRFzMzMylJEJwAAAAtJREFUCB1jYMAPAAAgAAHDvpOtAAAAAElFTkSuQmCC);background-position:left top;background-repeat:no-repeat;padding-top:15px;position:absolute;height:15px;left:0px;display:block;font-weight:bold;font-size:12px;line-height:20px;text-transform:uppercase;text-align:left;text-indent:0px;white-space:nowrap;color:#aaaaaa;margin-left:0px;margin-right:0px;margin-top:1px;z-index:5;}.vco-timeline .vco-navigation .timenav .time .time-interval-major div strong{font-weight:bold;color:#ffffff;} diff --git a/compiled/css/themes/font/AbrilFatface-Average.css b/compiled/css/themes/font/AbrilFatface-Average.css deleted file mode 100644 index 8ded1702d..000000000 --- a/compiled/css/themes/font/AbrilFatface-Average.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Average',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Average',serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Average',serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Average',serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Average',serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Abril Fatface',cursive;} -.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 c5d51d035..000000000 --- a/compiled/css/themes/font/Arvo-PTSans.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Arvo',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Arvo',serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Arvo',serif;} -.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 620d15fa4..000000000 --- a/compiled/css/themes/font/Bevan-PotanoSans.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Pontano Sans',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Pontano Sans',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Pontano Sans',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Pontano Sans',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Pontano Sans',sans-serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Bevan',serif;} -.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 c969a5ea3..000000000 --- a/compiled/css/themes/font/BreeSerif-OpenSans.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Bree Serif',Georgia,serif;} -.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 fbd977224..000000000 --- a/compiled/css/themes/font/DroidSerif-DroidSans.css +++ /dev/null @@ -1,7 +0,0 @@ -.vco-storyjs{font-family:'Droid Serif',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Droid Sans',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Droid Sans',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Droid Sans',sans-serif !important;} -.vco-storyjs p{font-family:'Droid Sans',sans-serif !important;} -.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Droid Serif',serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Droid Serif',serif;font-weight:700;} -.tooltip{font-family:'Droid Sans',sans-serif;} diff --git a/compiled/css/themes/font/Georgia-Helvetica.css b/compiled/css/themes/font/Georgia-Helvetica.css deleted file mode 100644 index 681eab269..000000000 --- a/compiled/css/themes/font/Georgia-Helvetica.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:"Georgia",Times New Roman,Times,serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:"Georgia",Times New Roman,Times,serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:"Georgia",Times New Roman,Times,serif;} -.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,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 207865023..000000000 --- a/compiled/css/themes/font/Lekton-Molengo.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Lekton',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Lekton',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Lekton',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Lekton',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Lekton',sans-serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Molengo',sans-serif;} -.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 6177e371f..000000000 --- a/compiled/css/themes/font/Lora-Istok.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Lora',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Istok Web',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Istok Web',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Istok Web',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Istok Web',sans-serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Lora',serif;font-weight:700;} -.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 11bb6789c..000000000 --- a/compiled/css/themes/font/Merriweather-NewsCycle.css +++ /dev/null @@ -1,8 +0,0 @@ -.vco-storyjs{font-family:'Merriweather',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'News Cycle',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'News Cycle',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'News Cycle',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'News Cycle',sans-serif !important;} -.vco-storyjs p{font-size:16px;line-height:22px;} -.vco-storyjs .wikipedia p{font-size:14px !important;line-height:20px !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Merriweather',serif;font-weight:900;} -.tooltip{font-family:'News Cycle',sans-serif;} diff --git a/compiled/css/themes/font/NewsCycle-Merriweather.css b/compiled/css/themes/font/NewsCycle-Merriweather.css deleted file mode 100644 index d17263c13..000000000 --- a/compiled/css/themes/font/NewsCycle-Merriweather.css +++ /dev/null @@ -1,8 +0,0 @@ -.vco-storyjs{font-family:'News Cycle',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'News Cycle',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'News Cycle',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'News Cycle',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Merriweather',serif !important;} -.vco-storyjs p{font-size:16px;line-height:22px;} -.vco-storyjs .wikipedia p{font-size:14px !important;line-height:20px !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'News Cycle',sans-serif;font-weight:900;} -.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 0be61b2a0..000000000 --- a/compiled/css/themes/font/NixieOne-Ledger.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Ledger',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Ledger',serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Ledger',serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Ledger',serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Ledger',serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Nixie One',cursive;} -.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 45a7d2bdc..000000000 --- a/compiled/css/themes/font/PT.css +++ /dev/null @@ -1,7 +0,0 @@ -.vco-storyjs{font-family:'PT Serif',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'PT Serif',serif !important;} -.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-style:italic;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'PT Sans Narrow',sans-serif;font-weight:700;} -.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 3507badfa..000000000 --- a/compiled/css/themes/font/PTSerif-PTSans.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'PT Serif',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'PT Sans',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'PT Serif',serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'PT Sans',sans-serif;font-weight:700;} -.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 b1df281f4..000000000 --- a/compiled/css/themes/font/Pacifico-Arimo.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Arimo',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Arimo',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Arimo',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Arimo',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Arimo',sans-serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Pacifico',cursive;} -.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 691908e92..000000000 --- a/compiled/css/themes/font/PlayfairDisplay-Muli.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Muli',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Muli',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Muli',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Muli',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Muli',sans-serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Playfair Display',serif;} -.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 a911f22eb..000000000 --- a/compiled/css/themes/font/PoiretOne-Molengo.css +++ /dev/null @@ -1,8 +0,0 @@ -.vco-storyjs{font-family:'Poiret One',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Molengo',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Molengo',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Molengo',sans-serif !important;} -.vco-storyjs p{font-family:'Molengo',sans-serif !important;font-size:16px !important;line-height:22px !important;} -.vco-storyjs .wikipedia p{font-size:14px !important;line-height:20px !important;} -.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Poiret One',serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Poiret One',serif;} -.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 d30093aba..000000000 --- a/compiled/css/themes/font/Rancho-Gudea.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Gudea',sans-serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Gudea',sans-serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Gudea',sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Gudea',sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Gudea',sans-serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Rancho',cursive;} -.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 489cf50da..000000000 --- a/compiled/css/themes/font/SansitaOne-Kameron.css +++ /dev/null @@ -1,6 +0,0 @@ -.vco-storyjs{font-family:'Kameron',serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:'Kameron',serif !important;} -.vco-storyjs .vco-feature h1.date,.vco-storyjs .vco-feature h2.date,.vco-storyjs .vco-feature h3.date,.vco-storyjs .vco-feature h4.date,.vco-storyjs .vco-feature h5.date,.vco-storyjs .vco-feature h6.date{font-family:'Kameron',serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:'Kameron',serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:'Kameron',serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:'Sansita One',cursive;} -.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 b41465c2e..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 a4394d3b4..000000000 --- a/compiled/css/timeline.css +++ /dev/null @@ -1,280 +0,0 @@ -.vco-storyjs{}.vco-storyjs div *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6,.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs pre,.vco-storyjs a,.vco-storyjs abbr,.vco-storyjs acronym,.vco-storyjs address,.vco-storyjs cite,.vco-storyjs code,.vco-storyjs del,.vco-storyjs dfn,.vco-storyjs em,.vco-storyjs img,.vco-storyjs q,.vco-storyjs s,.vco-storyjs samp,.vco-storyjs small,.vco-storyjs strike,.vco-storyjs strong,.vco-storyjs sub,.vco-storyjs sup,.vco-storyjs tt,.vco-storyjs var,.vco-storyjs dd,.vco-storyjs dl,.vco-storyjs dt,.vco-storyjs li,.vco-storyjs ol,.vco-storyjs ul,.vco-storyjs fieldset,.vco-storyjs form,.vco-storyjs label,.vco-storyjs legend,.vco-storyjs button,.vco-storyjs table,.vco-storyjs caption,.vco-storyjs tbody,.vco-storyjs tfoot,.vco-storyjs thead,.vco-storyjs tr,.vco-storyjs th,.vco-storyjs td,.vco-storyjs .vco-container,.vco-storyjs .content-container,.vco-storyjs .media,.vco-storyjs .text,.vco-storyjs .vco-slider,.vco-storyjs .slider,.vco-storyjs .date,.vco-storyjs .title,.vco-storyjs .messege,.vco-storyjs .map,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .vco-feedback,.vco-storyjs .vco-feature,.vco-storyjs .toolbar,.vco-storyjs .marker,.vco-storyjs .dot,.vco-storyjs .line,.vco-storyjs .flag,.vco-storyjs .time,.vco-storyjs .era,.vco-storyjs .major,.vco-storyjs .minor,.vco-storyjs .vco-navigation,.vco-storyjs .start,.vco-storyjs .active{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;width:auto;float:none;} -.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{clear:none;} -.vco-storyjs table{border-collapse:collapse;border-spacing:0;} -.vco-storyjs ol,.vco-storyjs ul{list-style:none;} -.vco-storyjs q:before,.vco-storyjs q:after,.vco-storyjs blockquote:before,.vco-storyjs blockquote:after{content:"";} -.vco-storyjs a:focus{outline:thin dotted;} -.vco-storyjs a:hover,.vco-storyjs a:active{outline:0;} -.vco-storyjs article,.vco-storyjs aside,.vco-storyjs details,.vco-storyjs figcaption,.vco-storyjs figure,.vco-storyjs footer,.vco-storyjs header,.vco-storyjs hgroup,.vco-storyjs nav,.vco-storyjs section{display:block;} -.vco-storyjs audio,.vco-storyjs canvas,.vco-storyjs video{display:inline-block;*display:inline;*zoom:1;} -.vco-storyjs audio:not([controls]){display:none;} -.vco-storyjs div{max-width:none;} -.vco-storyjs sub,.vco-storyjs sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;} -.vco-storyjs sup{top:-0.5em;} -.vco-storyjs sub{bottom:-0.25em;} -.vco-storyjs img{border:0;-ms-interpolation-mode:bicubic;} -.vco-storyjs button,.vco-storyjs input,.vco-storyjs select,.vco-storyjs textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;} -.vco-storyjs button,.vco-storyjs input{line-height:normal;*overflow:visible;} -.vco-storyjs button::-moz-focus-inner,.vco-storyjs input::-moz-focus-inner{border:0;padding:0;} -.vco-storyjs button,.vco-storyjs input[type="button"],.vco-storyjs input[type="reset"],.vco-storyjs input[type="submit"]{cursor:pointer;-webkit-appearance:button;} -.vco-storyjs input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -.vco-storyjs input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;} -.vco-storyjs textarea{overflow:auto;vertical-align:top;} -.vco-storyjs{font-family:"Georgia",Times New Roman,Times,serif;}.vco-storyjs .twitter,.vco-storyjs .vcard,.vco-storyjs .messege,.vco-storyjs .credit,.vco-storyjs .caption,.vco-storyjs .zoom-in,.vco-storyjs .zoom-out,.vco-storyjs .back-home,.vco-storyjs .time-interval div,.vco-storyjs .time-interval-major div,.vco-storyjs .nav-container{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs .timenav h1,.vco-storyjs .flag-content h1,.vco-storyjs .era h1,.vco-storyjs .timenav h2,.vco-storyjs .flag-content h2,.vco-storyjs .era h2,.vco-storyjs .timenav h3,.vco-storyjs .flag-content h3,.vco-storyjs .era h3,.vco-storyjs .timenav h4,.vco-storyjs .flag-content h4,.vco-storyjs .era h4,.vco-storyjs .timenav h5,.vco-storyjs .flag-content h5,.vco-storyjs .era h5,.vco-storyjs .timenav h6,.vco-storyjs .flag-content h6,.vco-storyjs .era h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;} -.vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p{font-family:"Georgia",Times New Roman,Times,serif !important;} -.vco-storyjs .vco-feature h1,.vco-storyjs .vco-feature h2,.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{font-family:"Georgia",Times New Roman,Times,serif;} -.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} -.vco-storyjs{font-size:15px;font-weight:normal;line-height:20px;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;}.vco-storyjs p{font-size:15px;font-weight:normal;line-height:20px;margin-bottom:20px;color:#666666;}.vco-storyjs p small{font-size:12px;line-height:17px;} -.vco-storyjs p:first-child{margin-top:20px;} -.vco-storyjs .vco-navigation p{color:#999999;} -.vco-storyjs .vco-feature h3,.vco-storyjs .vco-feature h4,.vco-storyjs .vco-feature h5,.vco-storyjs .vco-feature h6{margin-bottom:15px;} -.vco-storyjs .vco-feature p{color:#666666;} -.vco-storyjs .vco-feature blockquote,.vco-storyjs .vco-feature blockquote p{color:#000000;} -.vco-storyjs .date a,.vco-storyjs .title a{color:#999999;} -.vco-storyjs .hyphenate{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{font-weight:normal;color:#000000;text-transform:none;}.vco-storyjs h1 a,.vco-storyjs h2 a,.vco-storyjs h3 a,.vco-storyjs h4 a,.vco-storyjs h5 a,.vco-storyjs h6 a{color:#999999;} -.vco-storyjs h1 small,.vco-storyjs h2 small,.vco-storyjs h3 small,.vco-storyjs h4 small,.vco-storyjs h5 small,.vco-storyjs h6 small{color:#999999;} -.vco-storyjs h1.date,.vco-storyjs h2.date,.vco-storyjs h3.date,.vco-storyjs h4.date,.vco-storyjs h5.date,.vco-storyjs h6.date{font-weight:bold;} -.vco-storyjs h2.start{font-size:36px;line-height:38px;margin-bottom:15px;} -.vco-storyjs h1{margin-bottom:15px;font-size:32px;line-height:34px;}.vco-storyjs h1 small{font-size:18px;} -.vco-storyjs h2{margin-bottom:15px;font-size:28px;line-height:30px;}.vco-storyjs h2 small{font-size:14px;line-height:16px;} -.vco-storyjs h2.date{font-size:16px;line-height:18px;margin-bottom:3.75px;color:#999999;} -.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6{line-height:40px;}.vco-storyjs h3 .active,.vco-storyjs h4 .active,.vco-storyjs h5 .active,.vco-storyjs h6 .active{color:#0088cc;} -.vco-storyjs h3{font-size:28px;line-height:30px;}.vco-storyjs h3 small{font-size:14px;} -.vco-storyjs h4{font-size:20px;line-height:22px;}.vco-storyjs h4 small{font-size:12px;} -.vco-storyjs h5{font-size:16px;line-height:18px;} -.vco-storyjs h6{font-size:13px;line-height:14px;text-transform:uppercase;} -.vco-storyjs strong{font-weight:bold;font-style:inherit;} -.vco-storyjs em{font-style:italic;font-weight:inherit;} -.vco-storyjs Q{quotes:'„' '“';font-style:italic;} -.vco-storyjs blockquote,.vco-storyjs blockquote p{font-size:28px;line-height:36px;text-align:left;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#000000;} -.vco-storyjs .credit{color:#999999;text-align:right;font-size:10px;line-height:10px;display:block;margin:0 auto;clear:both;} -.vco-storyjs .caption{text-align:left;margin-top:5px;color:#666666;font-size:11px;line-height:14px;clear:both;} -.vco-storyjs.vco-right-to-left h1,.vco-storyjs.vco-right-to-left h2,.vco-storyjs.vco-right-to-left h3,.vco-storyjs.vco-right-to-left h4,.vco-storyjs.vco-right-to-left h5,.vco-storyjs.vco-right-to-left h6,.vco-storyjs.vco-right-to-left p,.vco-storyjs.vco-right-to-left blockquote,.vco-storyjs.vco-right-to-left pre,.vco-storyjs.vco-right-to-left a,.vco-storyjs.vco-right-to-left abbr,.vco-storyjs.vco-right-to-left acronym,.vco-storyjs.vco-right-to-left address,.vco-storyjs.vco-right-to-left cite,.vco-storyjs.vco-right-to-left code,.vco-storyjs.vco-right-to-left del,.vco-storyjs.vco-right-to-left dfn,.vco-storyjs.vco-right-to-left em,.vco-storyjs.vco-right-to-left img,.vco-storyjs.vco-right-to-left q,.vco-storyjs.vco-right-to-left s,.vco-storyjs.vco-right-to-left samp,.vco-storyjs.vco-right-to-left small,.vco-storyjs.vco-right-to-left strike,.vco-storyjs.vco-right-to-left strong,.vco-storyjs.vco-right-to-left sub,.vco-storyjs.vco-right-to-left sup,.vco-storyjs.vco-right-to-left tt,.vco-storyjs.vco-right-to-left var,.vco-storyjs.vco-right-to-left dd,.vco-storyjs.vco-right-to-left dl,.vco-storyjs.vco-right-to-left dt,.vco-storyjs.vco-right-to-left li,.vco-storyjs.vco-right-to-left ol,.vco-storyjs.vco-right-to-left ul,.vco-storyjs.vco-right-to-left fieldset,.vco-storyjs.vco-right-to-left form,.vco-storyjs.vco-right-to-left label,.vco-storyjs.vco-right-to-left legend,.vco-storyjs.vco-right-to-left button,.vco-storyjs.vco-right-to-left table,.vco-storyjs.vco-right-to-left caption,.vco-storyjs.vco-right-to-left tbody,.vco-storyjs.vco-right-to-left tfoot,.vco-storyjs.vco-right-to-left thead,.vco-storyjs.vco-right-to-left tr,.vco-storyjs.vco-right-to-left th,.vco-storyjs.vco-right-to-left td{direction:rtl;} -.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){.vco-slider .nav-next,.vco-slider .nav-previous{display:none;}}@media (max-width:640px){}.vco-skinny .vco-slider .slider-item .content .layout-text-media .text .container{text-align:center !important;} -.vco-skinny .vco-slider .slider-item .content .layout-text-media h2,.vco-skinny .vco-slider .slider-item .content .layout-text-media h3{display:block !important;width:100% !important;text-align:center !important;} -.vco-skinny .vco-slider .slider-item .content .content-container{display:block;}.vco-skinny .vco-slider .slider-item .content .content-container .text{width:100%;max-width:100%;min-width:120px;display:block;}.vco-skinny .vco-slider .slider-item .content .content-container .text .container{display:block;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.vco-skinny .vco-slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:none;}.vco-skinny .vco-slider .slider-item .content .content-container .media .media-wrapper{margin-left:0px;margin-right:0px;width:100%;display:block;} -.vco-skinny.vco-notouch .vco-slider .nav-previous,.vco-skinny.vco-notouch .vco-slider .nav-next{z-index:203;}.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .title{filter:alpha(opacity=1);-khtml-opacity:0.01;-moz-opacity:0.01;opacity:0.01;} -.vco-skinny.vco-notouch .vco-slider .nav-previous .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-next .nav-container .icon{filter:alpha(opacity=15);-khtml-opacity:0.15;-moz-opacity:0.15;opacity:0.15;} -.vco-skinny.vco-notouch .vco-slider .nav-previous .icon{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px 0;width:24px;height:24px;overflow:hidden;margin-left:10px;} -.vco-skinny.vco-notouch .vco-slider .nav-next .icon{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-232px 0;width:24px;height:24px;overflow:hidden;margin-left:66px;} -.vco-skinny.vco-notouch .vco-slider .nav-previous:hover,.vco-skinny.vco-notouch .vco-slider .nav-next:hover{color:#aaaaaa !important;background-color:#333333;background-color:rgba(0, 0, 0, 0.65);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .icon,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;font-weight:bold;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{padding-bottom:5px;} -.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .date,.vco-skinny.vco-notouch .vco-slider .nav-previous:hover .nav-container .title,.vco-skinny.vco-notouch .vco-slider .nav-next:hover .nav-container .title{padding-left:5px;padding-right:5px;} -.vco-slider{width:100%;height:100%;overflow:hidden;}.vco-slider .slider-container-mask{text-align:center;width:100%;height:100%;overflow:hidden;}.vco-slider .slider-container-mask .slider-container{position:absolute;top:0px;left:-2160px;width:100%;height:100%;text-align:center;display:block;}.vco-slider .slider-container-mask .slider-container .slider-item-container{display:table-cell;vertical-align:middle;} -.vco-notouch .vco-slider .nav-previous:hover,.vco-notouch .vco-slider .nav-next:hover{color:#333333;cursor:pointer;} -.vco-notouch .vco-slider .nav-previous:hover .icon{margin-left:10px;} -.vco-notouch .vco-slider .nav-next:hover .icon{margin-left:66px;} -.vco-notouch .vco-slider .slider-item .content .content-container .media .media-container .wikipedia h4 a:hover{color:#0088cc;text-decoration:none;} -.vco-notouch .vco-slider .slider-item .content .content-container .created-at:hover{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover{text-decoration:none;}.vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover h5{text-decoration:underline;} -.vco-slider img,.vco-slider embed,.vco-slider object,.vco-slider video,.vco-slider iframe{max-width:100%;} -.vco-slider .nav-previous,.vco-slider .nav-next{position:absolute;top:0px;width:100px;color:#DBDBDB;font-size:11px;}.vco-slider .nav-previous .nav-container,.vco-slider .nav-next .nav-container{height:100px;width:100px;position:absolute;} -.vco-slider .nav-previous .icon,.vco-slider .nav-next .icon{margin-top:12px;margin-bottom:15px;} -.vco-slider .nav-previous .date,.vco-slider .nav-next .date,.vco-slider .nav-previous .title,.vco-slider .nav-next .title{line-height:14px;}.vco-slider .nav-previous .date a,.vco-slider .nav-next .date a,.vco-slider .nav-previous .title a,.vco-slider .nav-next .title a{color:#999999;} -.vco-slider .nav-previous .date small,.vco-slider .nav-next .date small,.vco-slider .nav-previous .title small,.vco-slider .nav-next .title small{display:none;} -.vco-slider .nav-previous .date,.vco-slider .nav-next .date{font-size:13px;line-height:13px;font-weight:bold;text-transform:uppercase;margin-bottom:5px;} -.vco-slider .nav-previous .title,.vco-slider .nav-next .title{font-size:11px;line-height:13px;} -.vco-slider .nav-previous{float:left;text-align:left;}.vco-slider .nav-previous .icon{margin-left:15px;background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-160px 0;width:24px;height:24px;overflow:hidden;} -.vco-slider .nav-previous .date,.vco-slider .nav-previous .title{text-align:left;padding-left:15px;} -.vco-slider .nav-next{float:right;text-align:right;}.vco-slider .nav-next .icon{margin-left:61px;background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-184px 0;width:24px;height:24px;overflow:hidden;} -.vco-slider .nav-next .date,.vco-slider .nav-next .title{text-align:right;padding-right:15px;} -.vco-slider .slider-item{position:absolute;width:700px;height:100%;padding:0px;margin:0px;display:table;overflow-y:auto;}.vco-slider .slider-item .content{display:table-cell;vertical-align:middle;}.vco-slider .slider-item .content .pad-top .text .container{padding-top:15px;} -.vco-slider .slider-item .content .pad-right .text .container{padding-right:15px;} -.vco-slider .slider-item .content .pad-left .text .container{padding-left:30px;} -.vco-slider .slider-item .content .pad-left .media.text-media .media-wrapper .media-container{border:none;background-color:#ffffff;} -.vco-slider .slider-item .content .content-container{display:table;vertical-align:middle;}.vco-slider .slider-item .content .content-container .text{width:40%;max-width:50%;min-width:120px;display:table-cell;vertical-align:middle;}.vco-slider .slider-item .content .content-container .text .container{display:table-cell;vertical-align:middle;text-align:left;}.vco-slider .slider-item .content .content-container .text .container p{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word;} -.vco-slider .slider-item .content .content-container .text .container h2.date{font-size:15px;line-height:15px;font-weight:normal;} -.vco-slider .slider-item .content .content-container .text .container .slide-tag{font-size:11px;font-weight:bold;color:#ffffff;background-color:#cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;vertical-align:baseline;white-space:nowrap;line-height:11px;padding:1px 3px 1px;margin-left:7.5px;margin-bottom:7.5px;} -.vco-slider .slider-item .content .content-container .media{width:100%;min-width:50%;float:left;}.vco-slider .slider-item .content .content-container .media .media-wrapper{display:inline-block;margin-left:auto;margin-right:auto;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container{display:inline-block;line-height:0px;padding:0px;max-height:100%;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image img{border:1px solid;border-color:#cccccc #999999 #999999 #cccccc;background-color:#ffffff;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame iframe{background-color:#ffffff;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .soundcloud{border:0;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-image{display:inline-block;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow{position:relative;z-index:1;background:#ffffff;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:before,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#999999;-webkit-box-shadow:0 15px 10px #999999;-moz-box-shadow:0 15px 10px #999999;box-shadow:0 15px 10px #999999;-webkit-transform:rotate(-2deg);-moz-transform:rotate(-2deg);-ms-transform:rotate(-2deg);-o-transform:rotate(-2deg);transform:rotate(-2deg);} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-shadow::after{-webkit-transform:rotate(2deg);-moz-transform:rotate(2deg);-ms-transform:rotate(2deg);-o-transform:rotate(2deg);transform:rotate(2deg);right:10px;left:auto;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text{display:table;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container{display:table-cell;vertical-align:middle;font-size:15px;line-height:20px;color:#666666;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .plain-text .container p{margin-bottom:20px;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia{font-size:15px;line-height:20px;text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia .wiki-source{margin-bottom:15px;font-size:13px;line-height:19px;font-style:italic;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4{border-bottom:1px solid #cccccc;margin-bottom:5px;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4 a{color:#000000;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia p{font-size:13px;line-height:19px;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map{line-height:normal;z-index:200;text-align:left;background-color:#ffffff;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map img{max-height:none !important;max-width:none !important;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .google-map{height:100%;width:100%;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution{position:absolute;z-index:201;bottom:0px;width:100%;overflow:hidden;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text{height:19px;overflow:hidden;-webkit-user-select:none;line-height:19px;margin-right:60px;padding-left:65px;font-family:Arial,sans-serif;font-size:10px;color:#444;white-space:nowrap;color:#ffffff;text-shadow:1px 1px 1px #333333;text-align:center;}.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text a{color:#ffffff !important;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .credit{color:#999999;text-align:right;display:block;margin:0 auto;margin-top:6px;font-size:10px;line-height:13px;} -.vco-slider .slider-item .content .content-container .media .media-wrapper .caption{text-align:left;margin-top:10px;color:#666666;font-size:11px;line-height:14px;text-rendering:optimizeLegibility;word-wrap:break-word;} -.vco-slider .slider-item .content .media.text-media .media-wrapper .media-container{border:none;background-color:#ffffff;} -.vco-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;} -.vco-slider .slider-item .content .storify .created-at{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-328px -96px;} -.vco-slider .slider-item .content .twitter .created-at{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-256px -24px;} -.vco-slider .slider-item .content .googleplus .googleplus-content{font-size:13px;line-height:19px;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#666666;}.vco-slider .slider-item .content .googleplus .googleplus-content p{font-size:13px;line-height:19px;} -.vco-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;} -.vco-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;} -.vco-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;}.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:before,.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:after{display:table;content:"";} -.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments:after{clear:both;} -.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments h5{margin-bottom:5px;} -.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments div{width:50%;padding-left:15px;display:inline-block;} -.vco-slider .slider-item .content .googleplus .googleplus-content .googleplus-attachments p{font-size:11px;line-height:14px;margin-bottom:5px;} -.vco-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%;} -.vco-slider .slider-item .content .googleplus .proflinkPrefix{color:#0088cc;} -.vco-slider .slider-item .content .googleplus .created-at{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -72px;} -.vco-slider .slider-item .content .twitter,.vco-slider .slider-item .content .plain-text-quote,.vco-slider .slider-item .content .storify,.vco-slider .slider-item .content .googleplus{text-align:left;margin-left:auto;margin-right:auto;margin-bottom:15px;clear:both;}.vco-slider .slider-item .content .twitter blockquote,.vco-slider .slider-item .content .plain-text-quote blockquote,.vco-slider .slider-item .content .storify blockquote,.vco-slider .slider-item .content .googleplus blockquote{color:#666666;}.vco-slider .slider-item .content .twitter blockquote p,.vco-slider .slider-item .content .plain-text-quote blockquote p,.vco-slider .slider-item .content .storify blockquote p,.vco-slider .slider-item .content .googleplus blockquote p{font-size:28px;line-height:36px;margin-bottom:6px;padding-top:10px;background-color:#ffffff;color:#000000;} -.vco-slider .slider-item .content .twitter blockquote .quote-mark,.vco-slider .slider-item .content .plain-text-quote blockquote .quote-mark,.vco-slider .slider-item .content .storify blockquote .quote-mark,.vco-slider .slider-item .content .googleplus blockquote .quote-mark{color:#666666;} -.vco-slider .slider-item .content-container.layout-text-media .text-media{border-top:1px solid #e3e3e3;padding-top:15px;padding-right:0;} -.vco-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;} -.vco-slider .slider-item .content-container.layout-text{width:100%;}.vco-slider .slider-item .content-container.layout-text .text{width:100%;max-width:100%;}.vco-slider .slider-item .content-container.layout-text .text .container{display:block;vertical-align:middle;padding:0px;width:90%;text-align:left;margin-left:auto;margin-right:auto;} -.vco-slider .slider-item .content-container.layout-media{width:100%;}.vco-slider .slider-item .content-container.layout-media .text{width:100%;height:100%;max-width:100%;display:block;text-align:center;}.vco-slider .slider-item .content-container.layout-media .text .container{display:block;text-align:center;width:100%;margin-left:none;margin-right:none;} -.vco-slider .slider-item .content-container.layout-media .media{width:100%;min-width:50%;float:none;}.vco-slider .slider-item .content-container.layout-media .media .media-wrapper .media-container{margin-left:auto;margin-right:auto;line-height:0px;padding:0px;} -.vco-slider .slider-item .content-container.layout-media .twitter,.vco-slider .slider-item .content-container.layout-media .wikipedia,.vco-slider .slider-item .content-container.layout-media .googleplus{max-width:70%;} -.storyjs-embed{background-color:#ffffff;margin-bottom:20px;border:1px solid #cccccc;padding-top:20px;padding-bottom:20px;clear:both;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);-moz-box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);box-shadow:1px 1px 3px rgba(0, 0, 0, 0.35);} -.storyjs-embed.full-embed{overflow:hidden;border:0 !important;padding:0 !important;margin:0 !important;clear:both;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important;-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;} -.storyjs-embed.sized-embed{overflow:hidden;border:1px solid #cccccc;padding-top:7px;padding-bottom:7px;margin:0 !important;clear:both;-webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;-moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;box-shadow:0 0px 0px rgba(0, 0, 0, 0.25) !important;} -.vco-storyjs{width:100%;height:100%;padding:0px;margin:0px;background-color:#ffffff;position:absolute;z-index:100;clear:both;overflow:hidden;}.vco-storyjs .vmm-clear:before,.vco-storyjs .vmm-clear:after{content:"";display:table;} -.vco-storyjs .vmm-clear:after{clear:both;} -.vco-storyjs .vmm-clear{*zoom:1;} -.vco-storyjs .vco-feature{width:100%;}.vco-storyjs .vco-feature .slider,.vco-storyjs .vco-feature .vco-slider{width:100%;float:left;position:relative;z-index:10;padding-top:15px;-webkit-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);} -.vco-storyjs .vco-feedback{position:absolute;display:table;overflow:hidden;top:0px;left:0px;z-index:205;width:100%;height:100%;} -.vco-storyjs div.vco-loading,.vco-storyjs div.vco-explainer{display:table;text-align:center;min-width:100px;margin-top:15px;height:100%;width:100%;background-color:#ffffff;}.vco-storyjs div.vco-loading .vco-loading-container,.vco-storyjs div.vco-explainer .vco-loading-container,.vco-storyjs div.vco-loading .vco-explainer-container,.vco-storyjs div.vco-explainer .vco-explainer-container{display:table-cell;vertical-align:middle;}.vco-storyjs div.vco-loading .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-loading-icon{display:block;background-repeat:no-repeat;vertical-align:middle;margin-left:auto;margin-right:auto;text-align:center;background-image:url(loading.gif?v3.4);width:28px;height:28px;} -.vco-storyjs div.vco-loading .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-gesture-icon{display:block;vertical-align:middle;margin-left:auto;margin-right:auto;text-align:center;background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-160px -160px;width:48px;height:48px;} -.vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message{display:block;} -.vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message,.vco-storyjs div.vco-loading .vco-loading-container .vco-message p,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message p,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message p,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message p{text-align:center;font-size:11px;line-height:13px;text-transform:uppercase;margin-top:7.5px;margin-bottom:7.5px;} -.vco-storyjs div.vco-explainer{background-color:transparent;} -.vco-storyjs .vco-bezel{background-color:#333333;background-color:rgba(0, 0, 0, 0.8);width:80px;height:50px;padding:50px;padding-top:25px;padding:25px 20px 50px 20px;margin:auto;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}.vco-storyjs .vco-bezel .vco-message,.vco-storyjs .vco-bezel .vco-message p{color:#ffffff;font-weight:bold;} -.vco-storyjs .vco-container.vco-main{position:absolute;top:0px;left:0px;padding-bottom:3px;width:auto;height:auto;margin:0px;clear:both;} -.vco-storyjs img,.vco-storyjs embed,.vco-storyjs object,.vco-storyjs video,.vco-storyjs iframe{max-width:100%;} -.vco-storyjs img{max-height:100%;border:1px solid #999999;} -.vco-storyjs a{color:#0088cc;text-decoration:none;} -.vco-storyjs a:hover{color:#005580;text-decoration:underline;} -.vco-storyjs .vcard{float:right;margin-bottom:15px;}.vco-storyjs .vcard a{color:#333333;} -.vco-storyjs .vcard a:hover{text-decoration:none;}.vco-storyjs .vcard a:hover .fn{text-decoration:underline;} -.vco-storyjs .vcard .fn,.vco-storyjs .vcard .nickname{padding-left:42px;} -.vco-storyjs .vcard .fn{display:block;font-weight:bold;} -.vco-storyjs .vcard .nickname{margin-top:1px;display:block;color:#666666;} -.vco-storyjs .vcard .avatar{float:left;display:block;width:32px;height:32px;}.vco-storyjs .vcard .avatar img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;} -.vco-storyjs .thumbnail{width:24px;height:24px;overflow:hidden;float:left;margin:0;margin-right:1px;margin-top:6px;border:0;padding:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.vco-storyjs a.thumbnail:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.vco-storyjs .thumbnail.thumb-plaintext{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-280px -48px;} -.vco-storyjs .thumbnail.thumb-quote{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-232px -48px;} -.vco-storyjs .thumbnail.thumb-document{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-256px -48px;} -.vco-storyjs .thumbnail.thumb-photo{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-280px -24px;border:0;}.vco-storyjs .thumbnail.thumb-photo img{border:0px none #cccccc !important;} -.vco-storyjs .thumbnail.thumb-twitter{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-256px -24px;} -.vco-storyjs .thumbnail.thumb-vimeo{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-328px -48px;} -.vco-storyjs .thumbnail.thumb-youtube{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-328px -72px;} -.vco-storyjs .thumbnail.thumb-video{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-328px -24px;} -.vco-storyjs .thumbnail.thumb-audio{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-304px -24px;} -.vco-storyjs .thumbnail.thumb-map{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -48px;} -.vco-storyjs .thumbnail.thumb-website{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-232px -24px;} -.vco-storyjs .thumbnail.thumb-link{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-184px -72px;} -.vco-storyjs .thumbnail.thumb-wikipedia{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-184px -48px;} -.vco-storyjs .thumbnail.thumb-storify{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-328px -96px;} -.vco-storyjs .thumbnail.thumb-googleplus{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -72px;} -.vco-storyjs thumbnail.thumb-instagram{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -96px;} -.vco-storyjs thumbnail.thumb-instagram-full{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-232px -96px;width:48px;height:24px;} -.vco-storyjs .thumb-storify-full{height:12px;background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-280px -96px;width:48px;} -.vco-storyjs .thumbnail-inline{width:16px;height:14px;overflow:hidden;display:inline-block;margin-right:1px;margin-left:3px;margin-top:2px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-storyjs .twitter .thumbnail-inline{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-160px -96px;} -.vco-storyjs .storify .thumbnail-inline{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-184px -96px;} -.vco-storyjs .googleplus .thumbnail-inline{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -96px;} -.vco-storyjs .zFront{z-index:204;} -.vco-notouch .vco-navigation .vco-toolbar .zoom-in:hover,.vco-notouch .vco-navigation .vco-toolbar .zoom-out:hover,.vco-notouch .vco-navigation .vco-toolbar .back-home:hover{color:#0088cc;cursor:pointer;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-notouch .vco-navigation .timenav .content .marker.active:hover{cursor:default;}.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag .flag-content h3,.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag-small .flag-content h3{color:#0088cc;} -.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag .flag-content h4,.vco-notouch .vco-navigation .timenav .content .marker.active:hover .flag-small .flag-content h4{color:#999999;} -.vco-notouch .vco-navigation .timenav .content .marker:hover .line{z-index:24;background:#999999;} -.vco-notouch .vco-navigation .timenav .content .marker .flag:hover,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{cursor:pointer;}.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content h3,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3{color:#333333;} -.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content h4,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h4{color:#aaaaaa;} -.vco-notouch .vco-navigation .timenav .content .marker .flag:hover .flag-content .thumbnail,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-notouch .vco-navigation .timenav .content .marker .flag:hover{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} -.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover{height:56px;background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content{height:36px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3{margin-top:5px;} -.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content{height:14px;}.vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content h3{margin-top:4px;} -.vco-timeline .vco-navigation{clear:both;cursor:move;width:100%;height:200px;border-top:1px solid #e3e3e3;position:relative;}.vco-timeline .vco-navigation .vco-toolbar{position:absolute;top:45px;left:0px;z-index:202;background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);}.vco-timeline .vco-navigation .vco-toolbar .zoom-in,.vco-timeline .vco-navigation .vco-toolbar .zoom-out,.vco-timeline .vco-navigation .vco-toolbar .back-home{font-weight:normal;font-size:10px;line-height:20px;top:0px;z-index:202;width:18px;height:18px;color:#333333;text-align:center;font-weight:bold;border:1px solid #ffffff;padding:5px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .vco-toolbar .zoom-in .icon{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-256px 0;width:24px;height:24px;} -.vco-timeline .vco-navigation .vco-toolbar .zoom-out .icon{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-280px 0;width:24px;height:24px;} -.vco-timeline .vco-navigation .vco-toolbar .back-home .icon{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-328px 0;width:24px;height:24px;} -.vco-timeline .vco-navigation .vco-toolbar.touch{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;background-color:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in,.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out,.vco-timeline .vco-navigation .vco-toolbar.touch .back-home{width:40px;height:40px;padding:5px;background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 0px rgba(0, 0, 0, 0.2);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in .icon{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -160px;width:40px;height:40px;} -.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out .icon{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-256px -160px;width:40px;height:40px;} -.vco-timeline .vco-navigation .vco-toolbar.touch .back-home .icon{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-304px -160px;width:40px;height:40px;} -.vco-timeline .vco-navigation .timenav-background{position:absolute;cursor:move;top:0px;left:0px;height:150px;width:100%;background-color:#e9e9e9;}.vco-timeline .vco-navigation .timenav-background .timenav-interval-background{position:absolute;top:151px;left:0px;background:#ffffff;width:100%;height:49px;-webkit-box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);-moz-box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);box-shadow:-1px -1px 7px rgba(0, 0, 0, 0.1);}.vco-timeline .vco-navigation .timenav-background .timenav-interval-background .top-highlight{position:absolute;top:-1px;left:0px;z-index:30;width:100%;height:1px;background:#ffffff;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;-webkit-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);-moz-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);} -.vco-timeline .vco-navigation .timenav-background .timenav-line{position:absolute;top:0px;left:50%;width:3px;height:150px;background-color:#0088cc;z-index:1;-webkit-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);box-shadow:1px 1px 7px rgba(0, 0, 0, 0.3);} -.vco-timeline .vco-navigation .timenav-background .timenav-indicator{position:absolute;top:-1px;left:50%;z-index:202;background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-160px -48px;width:24px;height:24px;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag div{height:50px;display:table;}.vco-timeline .vco-navigation .timenav-background .timenav-tag div h3{display:table-cell;vertical-align:middle;padding-left:65px;font-size:15px;color:#d0d0d0;font-weight:bold;text-shadow:0px 1px 1px #ffffff;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half{height:25px;}.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half div{height:25px;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full{height:50px;}.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full div{height:50px;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-2,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-4,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-6{background:#f1f1f1;} -.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-1,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-3,.vco-timeline .vco-navigation .timenav-background .timenav-tag-row-5{background:#e9e9e9;} -.vco-timeline .vco-navigation .timenav{position:absolute;top:0px;left:-250px;z-index:1;}.vco-timeline .vco-navigation .timenav .content{position:relative;}.vco-timeline .vco-navigation .timenav .content .marker.start{display:none;} -.vco-timeline .vco-navigation .timenav .content .marker.active .dot{background:#0088cc;z-index:200;} -.vco-timeline .vco-navigation .timenav .content .marker.active .line{z-index:199;background:#0088cc;width:1px;}.vco-timeline .vco-navigation .timenav .content .marker.active .line .event-line{background:#0088cc;filter:alpha(opacity=75);-khtml-opacity:0.75;-moz-opacity:0.75;opacity:0.75;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small{z-index:200;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content{height:36px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3{color:#0088cc;margin-top:5px;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content .thumbnail,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content .thumbnail{filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row1,.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row2,.vco-timeline .vco-navigation .timenav .content .marker.active .flag.row3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row1,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row2,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small.row3{z-index:200;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:0 -53px;width:153px;height:53px;} -.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:0 -109px;width:153px;height:26px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content{height:14px;}.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3{margin-top:4px;} -.vco-timeline .vco-navigation .timenav .content .marker{position:absolute;top:0px;left:150px;display:block;}.vco-timeline .vco-navigation .timenav .content .marker .dot{position:absolute;top:150px;left:0px;display:block;width:6px;height:6px;background:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;z-index:21;} -.vco-timeline .vco-navigation .timenav .content .marker .line{position:absolute;top:0px;left:3px;width:1px;height:150px;background-color:#cccccc;background-color:rgba(204, 204, 204, 0.5);-webkit-box-shadow:1px 0 0 rgba(255, 255, 255, 0.5);-moz-box-shadow:1px 0 0 rgba(255, 255, 255, 0.5);box-shadow:1px 0 0 rgba(255, 255, 255, 0.5);z-index:22;}.vco-timeline .vco-navigation .timenav .content .marker .line .event-line{position:absolute;z-index:22;left:0px;height:1px;width:1px;background:#0088cc;filter:alpha(opacity=15);-khtml-opacity:0.15;-moz-opacity:0.15;opacity:0.15;} -.vco-timeline .vco-navigation .timenav .content .marker .flag,.vco-timeline .vco-navigation .timenav .content .marker .flag-small{position:absolute;top:15px;left:3px;padding:0px;display:block;z-index:23;width:153px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content{padding:0px 7px 2px 6px;overflow:hidden;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3{font-weight:bold;font-size:15px;line-height:20px;font-size:11px;line-height:11px;color:#999999;margin-bottom:2px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3 small,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3 small{display:none;} -.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h4,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h4{display:none;font-weight:normal;font-size:15px;line-height:20px;margin-top:5px;font-size:10px;line-height:10px;color:#aaaaaa;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h4 small,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h4 small{display:none;} -.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content .thumbnail,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail{margin-bottom:15px;margin-right:3px;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content .thumbnail img,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail img{width:22px;height:22px;max-height:none;max-width:none;border:0;border:1px solid #999999;padding:0;margin:0;} -.vco-timeline .vco-navigation .timenav .content .marker .flag{height:56px;background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:0 0;width:153px;height:53px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content{height:36px;}.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3{margin-top:5px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:0 -135px;width:153px;height:26px;}.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content{height:14px;}.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3{margin-top:4px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail{width:16px;height:10px;margin-right:1px;margin-top:6px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-plaintext{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-280px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-quote{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-232px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-document{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-256px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-photo{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-280px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-twitter{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-256px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vimeo{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-328px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-youtube{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-304px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-video{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-328px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-audio{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-304px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-map{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-website{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-232px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-link{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-232px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-wikipedia{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-184px -120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-storify{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-184px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-googleplus{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -130px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content thumbnail.thumb-instagram{background-image:url(timeline.png?v4.3);background-repeat:no-repeat;background-position:-208px -96px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag.row1{z-index:25;top:48px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag.row2{z-index:24;top:96px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag.row3{z-index:23;top:1px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row1{z-index:28;top:24px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row2{z-index:27;top:48px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row3{z-index:26;top:72px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row4{z-index:25;top:96px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row5{z-index:24;top:120px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row6{z-index:23;top:1px;} -.vco-timeline .vco-navigation .timenav .content .marker .flag.zFront,.vco-timeline .vco-navigation .timenav .content .marker .flag-small.zFront{z-index:201;} -.vco-timeline .vco-navigation .timenav .content .era{position:absolute;top:138px;left:150px;height:12px;display:block;overflow:hidden;}.vco-timeline .vco-navigation .timenav .content .era div{height:50px;width:100%;height:100%;line-height:0px;background:#e9e9e9;background:rgba(233, 233, 233, 0.33);}.vco-timeline .vco-navigation .timenav .content .era div h3,.vco-timeline .vco-navigation .timenav .content .era div h4{position:absolute;bottom:1px;padding-left:15px;font-size:15px;font-weight:bold;color:rgba(0, 136, 204, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vco-timeline .vco-navigation .timenav .content .era1 div{background:#cc4400;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(204, 68, 0, 0.1);border-right:1px solid rgba(255, 85, 0, 0.05);}.vco-timeline .vco-navigation .timenav .content .era1 div h3,.vco-timeline .vco-navigation .timenav .content .era1 div h4{color:rgba(204, 68, 0, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vco-timeline .vco-navigation .timenav .content .era2 div{background:#cc0022;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(204, 0, 34, 0.1);border-right:1px solid rgba(255, 0, 43, 0.05);}.vco-timeline .vco-navigation .timenav .content .era2 div h3,.vco-timeline .vco-navigation .timenav .content .era2 div h4{color:rgba(204, 0, 34, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vco-timeline .vco-navigation .timenav .content .era3 div{background:#0022cc;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(0, 34, 204, 0.1);border-right:1px solid rgba(0, 43, 255, 0.05);}.vco-timeline .vco-navigation .timenav .content .era3 div h3,.vco-timeline .vco-navigation .timenav .content .era3 div h4{color:rgba(0, 34, 204, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vco-timeline .vco-navigation .timenav .content .era4 div{background:#ccaa00;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(204, 170, 0, 0.1);border-right:1px solid rgba(255, 213, 0, 0.05);}.vco-timeline .vco-navigation .timenav .content .era4 div h3,.vco-timeline .vco-navigation .timenav .content .era4 div h4{color:rgba(204, 170, 0, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vco-timeline .vco-navigation .timenav .content .era5 div{background:#00ccaa;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(0, 204, 170, 0.1);border-right:1px solid rgba(0, 255, 213, 0.05);}.vco-timeline .vco-navigation .timenav .content .era5 div h3,.vco-timeline .vco-navigation .timenav .content .era5 div h4{color:rgba(0, 204, 170, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vco-timeline .vco-navigation .timenav .content .era6 div{background:#0088cc;filter:alpha(opacity=10);-khtml-opacity:0.1;-moz-opacity:0.1;opacity:0.1;border-left:1px solid rgba(0, 136, 204, 0.1);border-right:1px solid rgba(0, 170, 255, 0.05);}.vco-timeline .vco-navigation .timenav .content .era6 div h3,.vco-timeline .vco-navigation .timenav .content .era6 div h4{color:rgba(0, 136, 204, 0.35);text-shadow:0px 1px 1px #ffffff;} -.vco-timeline .vco-navigation .timenav .time{position:absolute;left:0px;top:150px;height:50px;background-color:#ffffff;line-height:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval-minor{max-width:none;height:6px;white-space:nowrap;position:absolute;top:-2px;left:8px;z-index:10;}.vco-timeline .vco-navigation .timenav .time .time-interval-minor .minor{position:relative;top:2px;display:inline-block;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAMCAMAAACdvocfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFzMzM////040VdgAAAAJ0Uk5T/wDltzBKAAAAEklEQVR42mJgYAQCBopJgAADAAbwADHy2qHzAAAAAElFTkSuQmCC);width:100px;height:6px;background-position:center top;white-space:nowrap;color:#666666;margin-top:0px;padding-top:0px;} -.vco-timeline .vco-navigation .timenav .time .time-interval{white-space:nowrap;position:absolute;top:5px;left:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval div{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAMCAMAAACdvocfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFzMzM////040VdgAAAAJ0Uk5T/wDltzBKAAAAEklEQVR42mJgYAQCBopJgAADAAbwADHy2qHzAAAAAElFTkSuQmCC);background-position:left top;background-repeat:no-repeat;padding-top:6px;position:absolute;height:3px;left:0px;display:block;font-weight:normal;font-size:10px;line-height:20px;text-transform:uppercase;text-align:left;text-indent:0px;white-space:nowrap;color:#666666;margin-left:0px;margin-right:0px;margin-top:0px;z-index:2;}.vco-timeline .vco-navigation .timenav .time .time-interval div strong{font-weight:bold;color:#000000;} -.vco-timeline .vco-navigation .timenav .time .time-interval div.era{font-weight:bold;padding-top:0px;margin-top:-3px;margin-left:2px;background-image:none;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era1{color:#cc4400;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era2{color:#cc0022;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era3{color:#0022cc;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era4{color:#ccaa00;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era5{color:#00ccaa;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval .era6{color:#0088cc;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;} -.vco-timeline .vco-navigation .timenav .time .time-interval-major{white-space:nowrap;position:absolute;top:5px;left:0px;}.vco-timeline .vco-navigation .timenav .time .time-interval-major div{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAQAQMAAADtUYf0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyOTAzRjI3REIzNDcxMUUxQUQ3QUZCOThEODQ1NDhCNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyOTAzRjI3RUIzNDcxMUUxQUQ3QUZCOThEODQ1NDhCNyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjI5MDNGMjdCQjM0NzExRTFBRDdBRkI5OEQ4NDU0OEI3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjI5MDNGMjdDQjM0NzExRTFBRDdBRkI5OEQ4NDU0OEI3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+DPWNfQAAAANQTFRFzMzMylJEJwAAAAtJREFUCB1jYMAPAAAgAAHDvpOtAAAAAElFTkSuQmCC);background-position:left top;background-repeat:no-repeat;padding-top:15px;position:absolute;height:15px;left:0px;display:block;font-weight:bold;font-size:12px;line-height:20px;text-transform:uppercase;text-align:left;text-indent:0px;white-space:nowrap;color:#333333;margin-left:0px;margin-right:0px;margin-top:1px;z-index:5;}.vco-timeline .vco-navigation .timenav .time .time-interval-major div strong{font-weight:bold;color:#000000;} -@media screen and (-webkit-max-device-pixel-ratio:1){}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){}@media screen and (max-device-width:480px) and (orientation:portrait){.storyjs-embed.full-embed{height:557px !important;width:320px !important;}.storyjs-embed.full-embed .vco-feature{height:356px !important;}}@media screen and (max-device-width:480px) and (orientation:landscape){.storyjs-embed.full-embed{height:409px !important;width:480px !important;}.storyjs-embed.full-embed .vco-feature{height:208px !important;}}@media screen and (min-device-width:481px) and (orientation:portrait){}@media screen and (min-device-width:481px) and (orientation:landscape){}@media (max-width:480px){}@media only screen and (max-width:480px){} diff --git a/compiled/css/timeline.png b/compiled/css/timeline.png deleted file mode 100644 index f01f1c08b..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 96b0236d4..000000000 --- a/compiled/js/locale/ar.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ar",right_to_left:!0,api:{wikipedia:"ar"},date:{month:["كانون الثاني","شباط","آذار","نيسان","أيار","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],month_abbr:["كانون الثاني","شباط","آذار","نيسان","أيار","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],day:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],day_abbr:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_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/bg.js b/compiled/js/locale/bg.js deleted file mode 100644 index be0ad12a5..000000000 --- a/compiled/js/locale/bg.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"bg",api:{wikipedia:"bg"},date:{month:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],month_abbr:["Ян.","Фев.","Март","Апр.","Май","Юни","Юли","Авг.","Септ.","Окт.","Ноем.","Дек."],day:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],day_abbr:["Нед.","Пон.","Вт.","Ср.","Четв.","Пет.","Съб."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'
'd mmmm yyyy''",full_long:"d mmm yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'
d mmm 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/ca.js b/compiled/js/locale/ca.js deleted file mode 100644 index 03ba94840..000000000 --- a/compiled/js/locale/ca.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ca",api:{wikipedia:"ca"},date:{month:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],month_abbr:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],day:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],day_abbr:["Dg.","Dl.","Dt.","Dc.","Dj.","Dv.","Ds."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"''d mmmm yyyy'' HH:MM",full_long:"dddd',' d mmm yyyy HH:MM",full_long_small_date:"HH:MM'
d mmm yyyy''"},messages:{loading_timeline:"Carregant cronologia...",return_to_title:"Tornar al títol",expand_timeline:"Ampliar la cronologia",contract_timeline:"Reduir la cronologia",wikipedia:"Des de Wikipedia, l'enciclopèdia lliure",loading_content:"Carregant contingut",loading:"Carregant"}}); \ No newline at end of file diff --git a/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/el.js b/compiled/js/locale/el.js deleted file mode 100644 index e2737e562..000000000 --- a/compiled/js/locale/el.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"en",api:{wikipedia:"en"},date:{month:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],month_abbr:["Ιαν.","Φεβ.","Μαρ.","Απρ.","Μαη","Ιουν.","Ιουλ.","Αύγ.","Σεπτ.","Οκτ.","Νοεμ.","Δεκ."],day:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],day_abbr:["Κυρ.","Δευ.","Τρίτη.","Τετ.","Πεμπ.","Παρ.","Σαβ."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'
'mmmm d',' yyyy''",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h:MM TT'
mmm d',' yyyy''"},messages:{loading_timeline:"Φόρτωση Timeline... ",return_to_title:"Επιστροφή στον Τίτλο",expand_timeline:"Μεγέθυνση",contract_timeline:"Contract Timeline",wikipedia:"From Wikipedia, the free encyclopedia",loading_content:"Φόρτωση Περιεχομένου",loading:"Γίνεται Φόρτωση"}}); \ No newline at end of file diff --git a/compiled/js/locale/en.js b/compiled/js/locale/en.js deleted file mode 100644 index b80fc3678..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' h:MM TT",full_long_small_date:"h: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/hu.js b/compiled/js/locale/hu.js deleted file mode 100644 index c8e190311..000000000 --- a/compiled/js/locale/hu.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"hu",api:{wikipedia:"hu"},date:{month:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],month_abbr:["Jan.","Febr.","Márc","Ápr.","Máj.","Jún.","Júl.","Aug.","Szept.","Okt.","Nov.","Dec."],day:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],day_abbr:["Vas.","Hétfő","Kedd","Szer.","Csüt.","Pén.","Szom."]},dateformats:{year:"yyyy",month_short:"mmm",month:"yyyy mmmm",full_short:"mmm d",full:"yyyy mmmm d",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM '
'yyyy mmmm d''",full_long:"yyyy mmm d',' HH:MM",full_long_small_date:"HH:MM '
yyyy mmm d''"},messages:{loading_timeline:"Az idővonal betöltése... ",return_to_title:"Vissza a címhez",expand_timeline:"Nagyítás",contract_timeline:"Kicsinyítés",wikipedia:"A Wikipédiából, a szabad enciklopédiából",loading_content:"Tartalom betöltése",loading:"Betöltés"}}); \ No newline at end of file diff --git a/compiled/js/locale/hy.js b/compiled/js/locale/hy.js deleted file mode 100644 index 7df00af9b..000000000 --- a/compiled/js/locale/hy.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"hy",api:{wikipedia:"hy"},date:{month:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],month_abbr:["Հնվ.","Փետ.","Մար","Ապր","Մայ","Հուն","Հուլ","Օգս.","Սեպ.","Հոկ.","Նոյ.","Դեկ."],day:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"],day_abbr:["Կի.","Եկ.","Եք.","Չո.","Հի.","Ու.","Շա."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm',' yyyy",time_no_seconds_short:"H:MM",time_no_seconds_small_date:"H:MM'
'd mmmm',' yyyy''",full_long:"d mmm',' yyyy 'at' H:MM",full_long_small_date:"H:MM '
d mmm',' 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/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 287c93abd..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:"yyyy mmm",full_short:"mmm d",full:"yyyy mmm d ",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'yyyy mmm d''",full_long:"dddd',' d mmm yyyy 'um' HH:MM",full_long_small_date:"HH:MM'
'dddd','yyyy mmm d''"},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/nl.js b/compiled/js/locale/nl.js deleted file mode 100644 index c94e07061..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","maa","apr","mei","juni","juli","aug","sept","okt","nov","dec"],day:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],day_abbr:["zo","ma","di","wo","do","vr","za"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm yyyy",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd mmmm yyyy''",full_long:"dddd',' d mmm yyyy 'om' 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:"Inhoud laden",loading:"Laden"}}); \ No newline at end of file diff --git a/compiled/js/locale/no.js b/compiled/js/locale/no.js deleted file mode 100644 index 8ff4ca97b..000000000 --- a/compiled/js/locale/no.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"no",api:{wikipedia:"no"},date:{month:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],month_abbr:["Jan.","Feb.","Mars","Apr.","Mai","Juni","Juli","Aug.","Sep.","Okt.","Nov.","Des."],day:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],day_abbr:["Søn.","Man.","Tir.","Ons.","Tor.","Fre.","Lør."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d. mmm",full:"d. mmmm',' yyyy",time_no_seconds_short:"HH:MM",time_no_seconds_small_date:"HH:MM'
'd. mmmm',' yyyy''",full_long:"dddd',' d. mmm',' yyyy 'kl.' HH:MM",full_long_small_date:"HH:MM'
'dddd',' d. mmm',' yyyy''"},messages:{loading_timeline:"Laster timeline... ",return_to_title:"Tilbake til tittel",expand_timeline:"Utvid timeline",contract_timeline:"Krymp timeline",wikipedia:"Fra Wikipedia, den frie encyklopedi",loading_content:"Laster innhold",loading:"Laster"}}); \ No newline at end of file diff --git a/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/pt.js b/compiled/js/locale/pt.js deleted file mode 100644 index 25d66c5c1..000000000 --- a/compiled/js/locale/pt.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"pt",api:{wikipedia:"pt"},date:{month:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],month_abbr:["Jan","Fev","Mar","Abr","Maio","Jun","Jul","Ago","Set","Out","Nov","Dez"],day:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sabado"],day_abbr:["Dom","Seg","Ter","Qua","Qui","Sex","Sab"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_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:"A carregar a timeline... ",return_to_title:"Voltar ao Título",expand_timeline:"Expandir Timeline",contract_timeline:"Colapsar Timeline",wikipedia:"Wikipedia, A enciclopedia Livre.",loading_content:"A carregar o conteúdo",loading:"A carregar"}}); \ No newline at end of file diff --git a/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/sk.js b/compiled/js/locale/sk.js deleted file mode 100644 index 5735e660a..000000000 --- a/compiled/js/locale/sk.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"sk",api:{wikipedia:"sk"},date:{month:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],month_abbr:["Jan.","Feb.","Marec","Apríl","Máj","Jún","Júl","Aug.","Sept.","Okt.","Nov.","Dec."],day:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],day_abbr:["Ned.","Pon.","Uto.","Str.","Štv.","Pia.","Sob."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"d. mmmm',' 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:"Načítam časovú os... ",return_to_title:"Späť na úvod",expand_timeline:"Zväčšiť časovú os",contract_timeline:"Zmenšiť časovú os",wikipedia:"Z Wikipedie, encyklopédie zadarmo",loading_content:"Načítam obsah",loading:"Načítanie"}}); \ No newline at end of file diff --git a/compiled/js/locale/sl.js b/compiled/js/locale/sl.js deleted file mode 100644 index a8e8b28ea..000000000 --- a/compiled/js/locale/sl.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE SLOVENIAN -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"sl",api:{wikipedia:"sl"},date:{month:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],month_abbr:["Jan.","Feb.","Marec","April","Maj","Junij","July","Avg.","Sept.","Okt.","Nov.","Dec."],day:["Nedelja","Ponedeljek","Torek","Sreda","Čertek","Petek","Sobota"],day_abbr:["Ned.","Pon.","Tor.","Sre.","Čet.","Pet.","Sob."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm',' yyyy",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT' 'mmmm d',' yyyy''",full_long:"d mmm ',' yyyy 'ob' hh:MM TT",full_long_small_date:"hh:MM TT' d mmm',' yyyy''"},messages:{loading_timeline:"Nalagam časovni trak... ",return_to_title:"Nazaj na naslov",expand_timeline:"Razširi časovni trak",contract_timeline:"Najemi časovni trak",wikipedia:"Vir Wikipedija",loading_content:"Nalaganje vsebine",loading:"Nalaganje"}}); \ No newline at end of file diff --git a/compiled/js/locale/ta.js b/compiled/js/locale/ta.js deleted file mode 100644 index 3d44ead1c..000000000 --- a/compiled/js/locale/ta.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"ta",api:{wikipedia:"ta"},date:{month:["ஜனவரி","பெப்ரவரி","மார்ச்","ஏப்ரல்","மே","ஜுன்","ஜுலை","ஆகஸ்ட்","செப்டம்பர்","ஒக்டோபர்","நவம்பர்","டிசம்பர்"],month_abbr:["ஜன.","பெப்.","மார்ச்","ஏப்ரல்","மே","ஜுன்","ஜுலை","ஆகஸ்ட்","செப்ட்.","ஒக்டோ.","நவம்பர்","டிசம்பர்"],day:["ஞாயிறு","திங்கள்","செவ்வாய்","புதன்","வியாழன்","வெள்ளி","சனி"],day_abbr:["ஞா","தி","செ","பு","வி","வெ","சனி"]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_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/tl.js b/compiled/js/locale/tl.js deleted file mode 100644 index 24cc87db7..000000000 --- a/compiled/js/locale/tl.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"tl",api:{wikipedia:"tl"},date:{month:["Enemo","Pebrero","Marso","Abril","Mayo","Hunyo","Hulyo","Agosto","Setyembre","Oktubre","Nobyembre","Disyembre"],month_abbr:["Ene.","Peb.","Mar.","Abr.","Mayo","Hun.","Hul.","Ago.","Set.","Okt.","Nob.","Dis."],day:["Linggo","Lunes","Martes","Miyerkules","Huwebes","Biyernes","Sabado"],day_abbr:["Li.","L.","M.","Mi.","H.","B.","S."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"mmm d",full:"mmmm d',' yyyy",time_no_seconds_short:"h:MM TT",time_no_seconds_small_date:"h:MM TT'
'mmmm d',' yyyy''",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h: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:"Mula sa Wikipedia, ang malayang ensiklopedya",loading_content:"Loading Content",loading:"Loading"}}); \ No newline at end of file diff --git a/compiled/js/locale/tr.js b/compiled/js/locale/tr.js deleted file mode 100644 index 975fa5c4a..000000000 --- a/compiled/js/locale/tr.js +++ /dev/null @@ -1,2 +0,0 @@ -/* LANGUAGE -================================================== */typeof VMM!="undefined"&&(VMM.Language={lang:"tr",api:{wikipedia:"tr"},date:{month:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],month_abbr:["Oca.","Şub.","Mar.","Nis.","May.","Haz.","Tem.","Ağu.","Eyl.","Eki.","Kas.","Ara."],day:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],day_abbr:["Paz.","Pzt.","Sal.","Çar.","Per.","Cum.","Cts."]},dateformats:{year:"yyyy",month_short:"mmm",month:"mmmm yyyy",full_short:"d mmm",full:"d mmmm',' yyyy",time_no_seconds_short:"H:MM",time_no_seconds_small_date:"H:MM'
'd mmmm',' yyyy''",full_long:"d mmm',' yyyy 'at' H:MM",full_long_small_date:"H:MM '
d mmm',' yyyy''"},messages:{loading_timeline:"Zaman Çizelgesi Yükleniyor... ",return_to_title:"Başlığa Dön",expand_timeline:"Zaman Çizelgesini Genişlet",contract_timeline:"Zaman Çizelgesini Daralt",wikipedia:"Wikipedia'dan, özgür ansiklopedi",loading_content:"İçerik Yükleniyor",loading:"Yükleniyor"}}); \ No newline at end of file diff --git a/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/storyjs-embed.js b/compiled/js/storyjs-embed.js deleted file mode 100644 index 35114c66f..000000000 --- a/compiled/js/storyjs-embed.js +++ /dev/null @@ -1,45 +0,0 @@ -/*! - StoryJS - Designed and built by Zach Wise at VéritéCo - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. -*//* ********************************************** - Begin LazyLoad.js -********************************************** *//*jslint browser: true, eqeqeq: true, bitwise: true, newcap: true, immed: true, regexp: false *//* -LazyLoad makes it easy and painless to lazily load one or more external -JavaScript or CSS files on demand either during or after the rendering of a web -page. - -Supported browsers include Firefox 2+, IE6+, Safari 3+ (including Mobile -Safari), Google Chrome, and Opera 9+. Other browsers may or may not work and -are not officially supported. - -Visit https://github.com/rgrove/lazyload/ for more info. - -Copyright (c) 2011 Ryan Grove -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the 'Software'), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -@module lazyload -@class LazyLoad -@static -@version 2.0.3 (git) -*/function getEmbedScriptPath(e){var t=document.getElementsByTagName("script"),n="",r="";for(var i=0;i40)return;l.checks++;if(l.js&&l.css&&l.font.css&&l.font.js&&l.language){if(!l.finished){l.finished=!0;N()}}else l.timeout=setTimeout("onloaded_check_again();",250)}function T(){var e="storyjs-embed";r=document.createElement("div");h.embed_id!=""?i=document.getElementById(h.embed_id):i=document.getElementById("timeline-embed");i.appendChild(r);r.setAttribute("id",h.id);if(h.width.toString().match("%"))i.style.width=h.width.split("%")[0]+"%";else{h.width=h.width-2;i.style.width=h.width+"px"}if(h.height.toString().match("%")){i.style.height=h.height;e+=" full-embed";i.style.height=h.height.split("%")[0]+"%"}else{e+=" sized-embed";h.height=h.height-16;i.style.height=h.height+"px"}i.setAttribute("class",e);i.setAttribute("className",e);r.style.position="relative"}function N(){VMM.debug=h.debug;n=new VMM.Timeline(h.id);n.init(h);o&&VMM.bindEvent(global,onHeadline,"HEADLINE")}var n,r,i,s,o=!1,u="2.17",a="1.7.1",f="",l={timeout:"",checks:0,finished:!1,js:!1,css:!1,jquery:!1,has_jquery:!1,language:!1,font:{css:!1,js:!1}},c={base:embed_path,css:embed_path+"css/",js:embed_path+"js/",locale:embed_path+"js/locale/",jquery:"http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js",font:{google:!1,css:embed_path+"css/themes/font/",js:"http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"}},h={version:u,debug:!1,type:"timeline",id:"storyjs",embed_id:"timeline-embed",embed:!0,width:"100%",height:"100%",source:"https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html",lang:"en",font:"default",css:c.css+"timeline.css?"+u,js:c.js+"timeline-min.js?"+u,api_keys:{google:"",flickr:"",twitter:""},gmap_key:""},p=[{name:"Merriweather-NewsCycle",google:["News+Cycle:400,700:latin","Merriweather:400,700,900:latin"]},{name:"NewsCycle-Merriweather",google:["News+Cycle:400,700:latin","Merriweather:300,400,700:latin"]},{name:"PoiretOne-Molengo",google:["Poiret+One::latin","Molengo::latin"]},{name:"Arvo-PTSans",google:["Arvo:400,700,400italic:latin","PT+Sans:400,700,400italic:latin"]},{name:"PTSerif-PTSans",google:["PT+Sans:400,700,400italic:latin","PT+Serif:400,700,400italic:latin"]},{name:"PT",google:["PT+Sans+Narrow:400,700:latin","PT+Sans:400,700,400italic:latin","PT+Serif:400,700,400italic:latin"]},{name:"DroidSerif-DroidSans",google:["Droid+Sans:400,700:latin","Droid+Serif:400,700,400italic:latin"]},{name:"Lekton-Molengo",google:["Lekton:400,700,400italic:latin","Molengo::latin"]},{name:"NixieOne-Ledger",google:["Nixie+One::latin","Ledger::latin"]},{name:"AbrilFatface-Average",google:["Average::latin","Abril+Fatface::latin"]},{name:"PlayfairDisplay-Muli",google:["Playfair+Display:400,400italic:latin","Muli:300,400,300italic,400italic:latin"]},{name:"Rancho-Gudea",google:["Rancho::latin","Gudea:400,700,400italic:latin"]},{name:"Bevan-PotanoSans",google:["Bevan::latin","Pontano+Sans::latin"]},{name:"BreeSerif-OpenSans",google:["Bree+Serif::latin","Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800:latin"]},{name:"SansitaOne-Kameron",google:["Sansita+One::latin","Kameron:400,700:latin"]},{name:"Lora-Istok",google:["Lora:400,700,400italic,700italic:latin","Istok+Web:400,700,400italic,700italic:latin"]},{name:"Pacifico-Arimo",google:["Pacifico::latin","Arimo:400,700,400italic,700italic:latin"]}];if(typeof e=="object")for(s in e)Object.prototype.hasOwnProperty.call(e,s)&&(h[s]=e[s]);typeof t!="undefined"&&(h.source=t);if(typeof url_config=="object"){o=!0;h.source.match("docs.google.com")||h.source.match("json")||h.source.match("storify")||(h.source="https://docs.google.com/spreadsheet/pub?key="+h.source+"&output=html")}if(h.js.match("locale")){h.lang=h.js.split("locale/")[1].replace(".js","");h.js=c.js+"timeline-min.js?"+u}if(!h.js.match("/")){h.css=c.css+h.type+".css?"+u;h.js=c.js+h.type+"-min.js?"+u;h.id="storyjs-"+h.type}h.lang.match("/")?c.locale=h.lang:c.locale=c.locale+h.lang+".js?"+u;T();LoadLib.css(h.css,w);if(h.font=="default"){l.font.js=!0;l.font.css=!0}else{var d;if(h.font.match("/")){d=h.font.split(".css")[0].split("/");c.font.name=d[d.length-1];c.font.css=h.font}else{c.font.name=h.font;c.font.css=c.font.css+h.font+".css?"+u}LoadLib.css(c.font.css,E);for(var v=0;v=0)if(o[t].href===e.urls[0]){a("css");break}i+=1;e&&(i<200?setTimeout(h,50):a("css"))}}var t,n,r={},i=0,s={css:[],js:[]},o=e.styleSheets;return{css:function(e,t,n,r){l("css",e,t,n,r)},js:function(e,t,n,r){l("js",e,t,n,r)}}}(this.document);LoadLib=function(e){function n(e){var n=0,r=!1;for(n=0;n"}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.match("now")){var o=new Date;t.setFullYear(o.getFullYear());t.setMonth(o.getMonth());t.setDate(o.getDate());e.match("hours")&&t.setHours(o.getHours());if(e.match("minutes")){t.setHours(o.getHours());t.setMinutes(o.getMinutes())}if(e.match("seconds")){t.setHours(o.getHours());t.setMinutes(o.getMinutes());t.setSeconds(o.getSeconds())}if(e.match("milliseconds")){t.setHours(o.getHours());t.setMinutes(o.getMinutes());t.setSeconds(o.getSeconds());t.setMilliseconds(o.getMilliseconds())}}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]){a("css");break}i+=1;e&&(i<200?setTimeout(h,50):a("css"))}}var t,n,r={},i=0,s={css:[],js:[]},o=e.styleSheets;return{css:function(e,t,n,r){l("css",e,t,n,r)},js:function(e,t,n,r){l("js",e,t,n,r)}}}(this.document);LoadLib=function(e){function n(e){var n=0,r=!1;for(n=0;n'mmmm d',' yyyy''",full_long:"mmm d',' yyyy 'at' h:MM TT",full_long_small_date:"h: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"}});typeof VMM!="undefined"&&typeof VMM.ExternalAPI=="undefined"&&(VMM.ExternalAPI={keys:{google:"",flickr:"",twitter:""},keys_master:{vp:"Pellentesque nibh felis, eleifend id, commodo in, interdum vitae, leo",flickr:"RAIvxHY4hE/Elm5cieh4X5ptMyDpj7MYIxziGxi0WGCcy1s+yr7rKQ==",google:"jwNGnYw4hE9lmAez4ll0QD+jo6SKBJFknkopLS4FrSAuGfIwyj57AusuR0s8dAo=",twitter:""},init:function(){return this},setKeys:function(e){VMM.ExternalAPI.keys=e},pushQues:function(){VMM.master_config.googlemaps.active&&VMM.ExternalAPI.googlemaps.pushQue();VMM.master_config.youtube.active&&VMM.ExternalAPI.youtube.pushQue();VMM.master_config.soundcloud.active&&VMM.ExternalAPI.soundcloud.pushQue();VMM.master_config.googledocs.active&&VMM.ExternalAPI.googledocs.pushQue();VMM.master_config -.googleplus.active&&VMM.ExternalAPI.googleplus.pushQue();VMM.master_config.wikipedia.active&&VMM.ExternalAPI.wikipedia.pushQue();VMM.master_config.vimeo.active&&VMM.ExternalAPI.vimeo.pushQue();VMM.master_config.twitter.active&&VMM.ExternalAPI.twitter.pushQue();VMM.master_config.flickr.active&&VMM.ExternalAPI.flickr.pushQue();VMM.master_config.webthumb.active&&VMM.ExternalAPI.webthumb.pushQue()},twitter:{tweetArray:[],get:function(e){var t={mid:e.id,id:e.uid};VMM.master_config.twitter.que.push(t);VMM.master_config.twitter.active=!0},create:function(e,t){var n=e.mid.toString(),r={twitterid:e.mid},i="http://api.twitter.com/1/statuses/show.json?id="+e.mid+"&include_entities=true&callback=?",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);VMM.attachElement("#marker_content_"+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