123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661 |
- /*
- TimelineJS - ver. 2.26.2 - 2013-10-07
- Copyright (c) 2012-2013 Northwestern University
- a project of the Northwestern University Knight Lab, originally created by Zach Wise
- https://github.com/NUKnightLab/TimelineJS
- 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/.
- */
- .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 {
- border:0;
- font-weight:300;
- font-style:normal;
- font-size:100%;
- line-height:1;
- font-family:inherit;
- width:auto;
- float:none;
- margin:0;
- padding:0;
- }
- .vco-storyjs h1,.vco-storyjs h2,.vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6 {
- clear:none;
- font-weight:300;
- color:#555555;
- text-transform: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 audio,.vco-storyjs canvas,.vco-storyjs video {
- display:inline;
- zoom:1;
- }
- .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:-.5em;
- }
- .vco-storyjs sub {
- bottom:-.25em;
- }
- .vco-storyjs img {
- -ms-interpolation-mode:bicubic;
- max-height:100%;
- border:1px solid #999;
- }
- .vco-storyjs button,.vco-storyjs input,.vco-storyjs select,.vco-storyjs textarea {
- font-size:100%;
- vertical-align:middle;
- margin:0;
- }
- .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: 'Open Sans'
- font-size:15px;
- font-weight:400;
- line-height:20px;
- -webkit-font-smoothing:antialiased;
- -webkit-text-size-adjust:100%;
- width:100%;
- height:100%;
- background-color:#fff;
- position:absolute;
- z-index:100;
- clear:both;
- overflow:hidden;
- margin:0;
- padding:0;
- }
- .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:700;
- }
- .vco-storyjs p,.vco-storyjs blockquote,.vco-storyjs blockquote p,.vco-storyjs .twitter blockquote p {
- }
- .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 {
- }
- .timeline-tooltip {
- position:absolute;
- z-index:205;
- display:block;
- visibility:visible;
- opacity:0;
- filter:alpha(opacity=0);
- font-weight:700;
- font-size:12px;
- line-height:12px;
- padding:5px;
- }
- .thumbnail {
- background-image:url(timeline.png?v4.4);
- }
- .vco-storyjs p {
- font-size:15px;
- font-weight:400;
- line-height:20px;
- margin-bottom:20px;
- color:#666;
- }
- .vco-storyjs p small {
- font-size:12px;
- line-height:17px;
- }
- .vco-storyjs p:first-child {
- margin-top:20px;
- }
- .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 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:#999;
- }
- .vco-storyjs h3,.vco-storyjs h4,.vco-storyjs h5,.vco-storyjs h6 {
- line-height:40px;
- }
- .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:700;
- font-style:inherit;
- }
- .vco-storyjs em {
- font-style:italic;
- font-weight:inherit;
- }
- .vco-storyjs Q {
- quotes:„ “;
- font-style:italic;
- }
- .vco-storyjs blockquote,.vco-storyjs blockquote p {
- font-size:24px;
- line-height:32px;
- text-align:left;
- margin-bottom:6px;
- padding-top:10px;
- background-color:#fff;
- color:#000;
- }
- .vco-storyjs .credit {
- color:#999;
- text-align:right;
- font-size:10px;
- line-height:10px;
- display:block;
- clear:both;
- margin:0 auto;
- }
- .vco-storyjs .caption {
- text-align:left;
- margin-top:5px;
- color:#666;
- font-size:11px;
- line-height:14px;
- clear:both;
- }
- .vco-storyjs.vco-right-to-left h1,.vco-storyjs.vco-right-to-left h2,.vco-storyjs.vco-right-to-left h3,.vco-storyjs.vco-right-to-left h4,.vco-storyjs.vco-right-to-left h5,.vco-storyjs.vco-right-to-left h6,.vco-storyjs.vco-right-to-left p,.vco-storyjs.vco-right-to-left blockquote,.vco-storyjs.vco-right-to-left pre,.vco-storyjs.vco-right-to-left a,.vco-storyjs.vco-right-to-left abbr,.vco-storyjs.vco-right-to-left acronym,.vco-storyjs.vco-right-to-left address,.vco-storyjs.vco-right-to-left cite,.vco-storyjs.vco-right-to-left code,.vco-storyjs.vco-right-to-left del,.vco-storyjs.vco-right-to-left dfn,.vco-storyjs.vco-right-to-left em,.vco-storyjs.vco-right-to-left img,.vco-storyjs.vco-right-to-left q,.vco-storyjs.vco-right-to-left s,.vco-storyjs.vco-right-to-left samp,.vco-storyjs.vco-right-to-left small,.vco-storyjs.vco-right-to-left strike,.vco-storyjs.vco-right-to-left strong,.vco-storyjs.vco-right-to-left sub,.vco-storyjs.vco-right-to-left sup,.vco-storyjs.vco-right-to-left tt,.vco-storyjs.vco-right-to-left var,.vco-storyjs.vco-right-to-left dd,.vco-storyjs.vco-right-to-left dl,.vco-storyjs.vco-right-to-left dt,.vco-storyjs.vco-right-to-left li,.vco-storyjs.vco-right-to-left ol,.vco-storyjs.vco-right-to-left ul,.vco-storyjs.vco-right-to-left fieldset,.vco-storyjs.vco-right-to-left form,.vco-storyjs.vco-right-to-left label,.vco-storyjs.vco-right-to-left legend,.vco-storyjs.vco-right-to-left button,.vco-storyjs.vco-right-to-left table,.vco-storyjs.vco-right-to-left caption,.vco-storyjs.vco-right-to-left tbody,.vco-storyjs.vco-right-to-left tfoot,.vco-storyjs.vco-right-to-left thead,.vco-storyjs.vco-right-to-left tr,.vco-storyjs.vco-right-to-left th,.vco-storyjs.vco-right-to-left td {
- direction:rtl;
- }
- .timeline-tooltip.in {
- opacity:.8;
- filter:alpha(opacity=80);
- }
- .timeline-tooltip.top {
- margin-top:-2px;
- }
- .timeline-tooltip.right {
- margin-left:2px;
- }
- .timeline-tooltip.bottom {
- margin-top:2px;
- }
- .timeline-tooltip.left {
- margin-left:-2px;
- }
- .timeline-tooltip.top .timeline-tooltip-arrow {
- bottom:0;
- left:50%;
- margin-left:-5px;
- border-left:5px solid transparent;
- border-right:5px solid transparent;
- border-top:5px solid #000;
- }
- .timeline-tooltip.left .timeline-tooltip-arrow {
- top:50%;
- right:0;
- margin-top:-5px;
- border-top:5px solid transparent;
- border-bottom:5px solid transparent;
- border-left:5px solid #000;
- }
- .timeline-tooltip.bottom .timeline-tooltip-arrow {
- top:0;
- left:50%;
- margin-left:-5px;
- border-left:5px solid transparent;
- border-right:5px solid transparent;
- border-bottom:5px solid #000;
- }
- .timeline-tooltip.right .timeline-tooltip-arrow {
- top:50%;
- left:0;
- margin-top:-5px;
- border-top:5px solid transparent;
- border-bottom:5px solid transparent;
- border-right:5px solid #000;
- }
- .timeline-tooltip-inner {
- max-width:200px;
- color:#fff;
- text-align:center;
- text-decoration:none;
- background-color:#000;
- -webkit-border-radius:4px;
- -moz-border-radius:4px;
- border-radius:4px;
- padding:3px 8px;
- }
- .timeline-tooltip-arrow {
- position:absolute;
- width:0;
- height:0;
- }
- .fancybox-wrap,.fancybox-skin,.fancybox-outer,.fancybox-inner,.fancybox-image,.fancybox-wrap iframe,.fancybox-wrap object,.fancybox-nav,.fancybox-nav span,.fancybox-tmp {
- border:0;
- outline:none;
- vertical-align:top;
- margin:0;
- padding:0;
- }
- .fancybox-wrap {
- position:absolute;
- top:0;
- left:0;
- z-index:8020;
- }
- .fancybox-skin {
- position:relative;
- background:#fff;
- color:#444;
- text-shadow:none;
- }
- .fancybox-opened {
- z-index:8030;
- }
- .fancybox-opened .fancybox-skin {
- -webkit-box-shadow:1px 1px 10px rgba(0,0,0,0.5);
- -moz-box-shadow:1px 1px 10px rgba(0,0,0,0.5);
- box-shadow:1px 1px 10px rgba(0,0,0,0.5);
- }
- .fancybox-inner {
- overflow:hidden;
- }
- .fancybox-type-iframe .fancybox-inner {
- -webkit-overflow-scrolling:touch;
- }
- .fancybox-error {
- color:#444;
- font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
- white-space:nowrap;
- margin:0;
- padding:15px;
- }
- .fancybox-image,.fancybox-iframe {
- display:block;
- width:100%;
- height:100%;
- }
- .fancybox-image {
- max-width:100%;
- max-height:100%;
- }
- .fancybox-close,.fancybox-prev span,.fancybox-next span {
- background-image:url(fancybox_sprite.png);
- }
- #fancybox-loading {
- position:fixed;
- top:50%;
- left:50%;
- margin-top:-14px;
- margin-left:-14px;
- background-position:0 -108px;
- opacity:.8;
- cursor:pointer;
- z-index:8060;
- }
- #fancybox-loading div {
- width:28px;
- height:28px;
- background:url(loading.gif) center center no-repeat;
- }
- .fancybox-close {
- position:absolute;
- top:-18px;
- right:-18px;
- width:36px;
- height:36px;
- cursor:pointer;
- z-index:8040;
- }
- .fancybox-nav {
- position:absolute;
- top:0;
- width:40%;
- height:100%;
- cursor:pointer;
- text-decoration:none;
- background:transparent url(blank.gif);
- -webkit-tap-highlight-color:rgba(0,0,0,0);
- z-index:8040;
- }
- .fancybox-prev {
- left:0;
- }
- .fancybox-next {
- right:0;
- }
- .fancybox-nav span {
- position:absolute;
- top:50%;
- width:36px;
- height:34px;
- margin-top:-18px;
- cursor:pointer;
- z-index:8040;
- visibility:hidden;
- }
- .fancybox-prev span {
- left:10px;
- background-position:0 -36px;
- }
- .fancybox-next span {
- right:10px;
- background-position:0 -72px;
- }
- .fancybox-tmp {
- position:absolute;
- top:-99999px;
- left:-99999px;
- visibility:hidden;
- max-width:99999px;
- max-height:99999px;
- overflow:visible!important;
- }
- .fancybox-lock {
- overflow:hidden!important;
- width:auto;
- }
- .fancybox-lock body {
- overflow:hidden!important;
- }
- .fancybox-lock-test {
- overflow-y:hidden!important;
- }
- .fancybox-overlay {
- position:absolute;
- top:0;
- left:0;
- overflow:hidden;
- display:none;
- z-index:8010;
- background:url(overlay.png);
- }
- .fancybox-overlay-fixed {
- position:fixed;
- bottom:0;
- right:0;
- }
- .fancybox-lock .fancybox-overlay {
- overflow:auto;
- overflow-y:scroll;
- }
- .fancybox-title {
- visibility:hidden;
- font:normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
- position:relative;
- text-shadow:none;
- z-index:8050;
- }
- .fancybox-title-float-wrap {
- position:absolute;
- bottom:0;
- right:50%;
- margin-bottom:-35px;
- z-index:8050;
- text-align:center;
- }
- .fancybox-title-float-wrap .child {
- display:inline-block;
- margin-right:-100%;
- background:rgba(0,0,0,0.8);
- -webkit-border-radius:15px;
- -moz-border-radius:15px;
- border-radius:15px;
- text-shadow:0 1px 2px #222;
- color:#fff;
- font-weight:700;
- line-height:24px;
- white-space:nowrap;
- padding:2px 20px;
- }
- .fancybox-title-outside-wrap {
- position:relative;
- margin-top:10px;
- color:#fff;
- }
- .fancybox-title-inside-wrap {
- padding-top:10px;
- }
- .fancybox-title-over-wrap {
- position:absolute;
- bottom:0;
- left:0;
- color:#fff;
- background:rgba(0,0,0,0.8);
- padding:10px;
- }
- .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 .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 .media-wrapper {
- margin-left:0;
- margin-right:0;
- 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:.01;
- -moz-opacity:.01;
- opacity:.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:.15;
- -moz-opacity:.15;
- opacity:.15;
- }
- .vco-skinny.vco-notouch .vco-slider .nav-previous .icon {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-208px 0;
- width:24px;
- height:24px;
- overflow:hidden;
- margin-left:10px;
- }
- .vco-skinny.vco-notouch .vco-slider .nav-next .icon {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-232px 0;
- width:24px;
- height:24px;
- overflow:hidden;
- margin-left:66px;
- }
- .vco-skinny.vco-notouch .vco-slider .nav-previous:hover,.vco-skinny.vco-notouch .vco-slider .nav-next:hover {
- color:#aaa!important;
- 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:700;
- 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:0;
- left:-2160px;
- width:100%;
- height:100%;
- text-align:center;
- display:block;
- }
- .vco-notouch .vco-slider .nav-previous:hover,.vco-notouch .vco-slider .nav-next:hover {
- color:#333;
- 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-slider .nav-previous,.vco-slider .nav-next {
- position:absolute;
- top:0;
- 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,.vco-slider .nav-next .date {
- font-size:13px;
- line-height:13px;
- font-weight:700;
- text-transform:uppercase;
- margin-bottom:5px;
- }
- .vco-slider .nav-previous .title,.vco-slider .nav-next .title {
- font-size:11px;
- line-height:13px;
- }
- .vco-slider .nav-previous {
- float:left;
- text-align:left;
- }
- .vco-slider .nav-previous .icon {
- margin-left:15px;
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-160px 0;
- width:24px;
- height:24px;
- overflow:hidden;
- }
- .vco-slider .nav-previous .date,.vco-slider .nav-previous .title {
- text-align:left;
- padding-left:15px;
- }
- .vco-slider .nav-next {
- float:right;
- text-align:right;
- }
- .vco-slider .nav-next .icon {
- margin-left:61px;
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-184px 0;
- width:24px;
- height:24px;
- overflow:hidden;
- }
- .vco-slider .nav-next .date,.vco-slider .nav-next .title {
- text-align:right;
- padding-right:15px;
- }
- .vco-slider .slider-item {
- position:absolute;
- width:700px;
- height:100%;
- display:table;
- overflow-y:auto;
- margin:0;
- padding:0;
- }
- .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 .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 h2.date {
- font-size:15px;
- line-height:15px;
- font-weight:400;
- }
- .vco-slider .slider-item .content .content-container .text .container .slide-tag {
- font-size:11px;
- font-weight:700;
- color:#fff;
- background-color:#ccc;
- -webkit-border-radius:3px;
- -moz-border-radius:3px;
- border-radius:3px;
- vertical-align:baseline;
- white-space:nowrap;
- line-height:11px;
- margin-left:7.5px;
- margin-bottom:7.5px;
- padding:1px 3px;
- }
- .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:0;
- max-height:100%;
- padding:0;
- }
- .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;
- background-color:#fff;
- border-color:#ccc #999 #999 #ccc;
- }
- .vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .media-frame iframe {
- background-color:#fff;
- }
- .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:#fff;
- }
- .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:#999;
- -webkit-box-shadow:0 15px 10px #999;
- -moz-box-shadow:0 15px 10px #999;
- box-shadow:0 15px 10px #999;
- -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:#666;
- }
- .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 #ccc;
- margin-bottom:5px;
- }
- .vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map {
- line-height:normal;
- z-index:200;
- text-align:left;
- background-color:#fff;
- }
- .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:0;
- 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-size:10px;
- white-space:nowrap;
- color:#fff;
- text-shadow:1px 1px 1px #333;
- text-align:center;
- }
- .vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .map .map-attribution .attribution-text a {
- color:#fff!important;
- }
- .vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .credit {
- color:#999;
- text-align:right;
- display:block;
- font-size:10px;
- line-height:13px;
- margin:6px auto 0;
- }
- .vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .caption {
- text-align:left;
- margin-top:10px;
- color:#666;
- font-size:11px;
- line-height:14px;
- text-rendering:optimizeLegibility;
- word-wrap:break-word;
- }
- .vco-slider .slider-item .content .content-container .created-at {
- width:24px;
- height:24px;
- overflow:hidden;
- margin-left:7.5px;
- margin-top:2px;
- display:inline-block;
- float:right;
- filter:alpha(opacity=25);
- -khtml-opacity:.25;
- -moz-opacity:.25;
- opacity:.25;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content {
- font-size:13px;
- line-height:19px;
- margin-bottom:6px;
- padding-top:10px;
- background-color:#fff;
- color:#666;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-annotation {
- font-size:15px;
- line-height:20px;
- color:#000;
- border-bottom:1px solid #e3e3e3;
- padding-bottom:7.5px;
- margin-bottom:7.5px;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments {
- border-top:1px solid #e3e3e3;
- padding-top:15px;
- margin-top:15px;
- border-bottom:1px solid #e3e3e3;
- padding-bottom:15px;
- margin-bottom:15px;
- zoom:1;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:before,.vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:after {
- display:table;
- content:"";
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments h5 {
- margin-bottom:5px;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments div {
- width:50%;
- padding-left:15px;
- display:inline-block;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments p {
- font-size:11px;
- line-height:14px;
- margin-bottom:5px;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments img {
- float:left;
- display:block;
- bottom:0;
- left:0;
- position:relative;
- right:0;
- top:0;
- width:40%;
- margin:auto;
- }
- .vco-slider .slider-item .content .content-container .twitter,.vco-slider .slider-item .content .content-container .plain-text-quote,.vco-slider .slider-item .content .content-container .storify,.vco-slider .slider-item .content .content-container .googleplus {
- text-align:left;
- margin-left:auto;
- margin-right:auto;
- margin-bottom:15px;
- clear:both;
- }
- .vco-slider .slider-item .content .content-container .twitter blockquote {
- font-size:15px;
- }
- .vco-slider .slider-item .content .content-container .twitter blockquote p {
- font-size:24px;
- }
- .vco-slider .slider-item .content .content-container.layout-text-media .text-media {
- border-top:1px solid #e3e3e3;
- padding-top:15px;
- padding-right:0;
- }
- .vco-slider .slider-item .content .content-container.layout-text-media.pad-left .text-media {
- padding-right:15px;
- padding-top:0;
- border-right:1px solid #e3e3e3;
- border-top:0 solid #e3e3e3;
- }
- .vco-slider .slider-item .content .content-container.layout-text .text {
- width:100%;
- max-width:100%;
- }
- .vco-slider .slider-item .content .content-container.layout-text .text .container {
- display:block;
- vertical-align:middle;
- width:90%;
- text-align:left;
- margin-left:auto;
- margin-right:auto;
- padding:0;
- }
- .vco-slider .slider-item .content .content-container.layout-media .text {
- width:100%;
- height:100%;
- max-width:100%;
- display:block;
- text-align:center;
- }
- .vco-slider .slider-item .content .content-container.layout-media .text .container {
- display:block;
- text-align:center;
- width:100%;
- margin-left:none;
- margin-right:none;
- }
- .vco-slider .slider-item .content .content-container.layout-media .media .media-wrapper .media-container {
- margin-left:auto;
- margin-right:auto;
- line-height:0;
- padding:0;
- }
- .vco-slider .slider-item .content .content-container.layout-media .twitter,.vco-slider .slider-item .content .content-container.layout-media .wikipedia,.vco-slider .slider-item .content .content-container.layout-media .googleplus {
- max-width:70%;
- }
- .storyjs-embed {
- background-color:#fff;
- margin-bottom:20px;
- border:1px solid #ccc;
- 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;
- clear:both;
- -webkit-border-radius:0!important;
- -moz-border-radius:0!important;
- border-radius:0!important;
- -webkit-box-shadow:0 0 0 rgba(0,0,0,0.25)!important;
- -moz-box-shadow:0 0 0 rgba(0,0,0,0.25)!important;
- box-shadow:0 0 0 rgba(0,0,0,0.25)!important;
- margin:0!important;
- padding:0!important;
- }
- .storyjs-embed.sized-embed {
- overflow:hidden;
- border:1px solid #ccc;
- padding-top:7px;
- padding-bottom:7px;
- clear:both;
- -webkit-box-shadow:0 0 0 rgba(0,0,0,0.25)!important;
- -moz-box-shadow:0 0 0 rgba(0,0,0,0.25)!important;
- box-shadow:0 0 0 rgba(0,0,0,0.25)!important;
- margin:0!important;
- }
- .vco-storyjs .vmm-clear:before,.vco-storyjs .vmm-clear:after {
- content:"";
- display:table;
- }
- .vco-storyjs .vmm-clear {
- zoom:1;
- }
- .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:0;
- left:0;
- 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:#fff;
- }
- .vco-storyjs div.vco-loading .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-loading-icon {
- display:block;
- background-repeat:no-repeat;
- vertical-align:middle;
- margin-left:auto;
- margin-right:auto;
- text-align:center;
- background-image:url(loading.gif?v3.4);
- width:28px;
- height:28px;
- }
- .vco-storyjs div.vco-loading .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-gesture-icon {
- display:block;
- vertical-align:middle;
- margin-left:auto;
- margin-right:auto;
- text-align:center;
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-160px -160px;
- width:48px;
- height:48px;
- }
- .vco-storyjs div.vco-loading .vco-loading-container .vco-message,.vco-storyjs div.vco-explainer .vco-loading-container .vco-message,.vco-storyjs div.vco-loading .vco-explainer-container .vco-message,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-message,.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:rgba(0,0,0,0.8);
- width:80px;
- height:50px;
- -webkit-border-radius:10px;
- -moz-border-radius:10px;
- border-radius:10px;
- margin:auto;
- padding:25px 20px 50px;
- }
- .vco-storyjs .vco-bezel .vco-message,.vco-storyjs .vco-bezel .vco-message p {
- color:#fff;
- font-weight:700;
- }
- .vco-storyjs .vco-container.vco-main {
- position:absolute;
- top:0;
- left:0;
- padding-bottom:3px;
- width:auto;
- height:auto;
- clear:both;
- margin:0;
- }
- .vco-storyjs a:hover {
- color:#005580;
- text-decoration:underline;
- }
- .vco-storyjs .vcard {
- float:right;
- margin-bottom:15px;
- }
- .vco-storyjs .vcard .fn,.vco-storyjs .vcard .nickname {
- padding-left:42px;
- }
- .vco-storyjs .vcard .fn {
- display:block;
- font-weight:700;
- }
- .vco-storyjs .vcard .nickname {
- margin-top:1px;
- display:block;
- color:#666;
- }
- .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;
- border:0;
- -webkit-border-radius:0;
- -moz-border-radius:0;
- border-radius:0;
- -webkit-box-shadow:none;
- -moz-box-shadow:none;
- box-shadow:none;
- margin:6px 1px 0 0;
- padding:0;
- }
- .vco-storyjs a.thumbnail:hover {
- -webkit-box-shadow:none;
- -moz-box-shadow:none;
- box-shadow:none;
- }
- .vco-storyjs .thumbnail.thumb-plaintext {
- background-repeat:no-repeat;
- background-position:-280px -48px;
- }
- .vco-storyjs .thumbnail.thumb-quote {
- background-repeat:no-repeat;
- background-position:-232px -48px;
- }
- .vco-storyjs .thumbnail.thumb-document {
- background-repeat:no-repeat;
- background-position:-256px -48px;
- }
- .vco-storyjs .thumbnail.thumb-photo {
- background-repeat:no-repeat;
- background-position:-280px -24px;
- border:0;
- }
- .vco-storyjs .thumbnail.thumb-photo img {
- border:0 none #ccc!important;
- }
- .vco-storyjs .thumbnail.thumb-vimeo {
- background-repeat:no-repeat;
- background-position:-328px -48px;
- }
- .vco-storyjs .thumbnail.thumb-vine {
- background-repeat:no-repeat;
- background-position:-232px -72px;
- }
- .vco-storyjs .thumbnail.thumb-youtube {
- background-repeat:no-repeat;
- background-position:-328px -72px;
- }
- .vco-storyjs .thumbnail.thumb-video {
- background-repeat:no-repeat;
- background-position:-328px -24px;
- }
- .vco-storyjs .thumbnail.thumb-audio {
- background-repeat:no-repeat;
- background-position:-304px -24px;
- }
- .vco-storyjs .thumbnail.thumb-map {
- background-repeat:no-repeat;
- background-position:-208px -48px;
- }
- .vco-storyjs .thumbnail.thumb-website {
- background-repeat:no-repeat;
- background-position:-232px -24px;
- }
- .vco-storyjs .thumbnail.thumb-link {
- background-repeat:no-repeat;
- background-position:-184px -72px;
- }
- .vco-storyjs .thumbnail.thumb-wikipedia {
- background-repeat:no-repeat;
- background-position:-184px -48px;
- }
- .vco-storyjs thumbnail.thumb-instagram {
- background-repeat:no-repeat;
- background-position:-208px -96px;
- }
- .vco-storyjs thumbnail.thumb-instagram-full {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-232px -96px;
- width:48px;
- height:24px;
- }
- .vco-storyjs .thumb-storify-full {
- height:12px;
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-280px -96px;
- width:48px;
- }
- .vco-storyjs .thumbnail-inline {
- width:16px;
- height:14px;
- overflow:hidden;
- display:inline-block;
- margin-right:1px;
- margin-left:3px;
- margin-top:2px;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.5;
- }
- .vco-storyjs .twitter .thumbnail-inline {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-160px -96px;
- }
- .vco-storyjs .storify .thumbnail-inline {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-184px -96px;
- }
- .vco-storyjs .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:#08c;
- 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:hover .line {
- z-index:24;
- background:#999;
- }
- .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 h4,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h4 {
- color:#aaa;
- }
- .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:0;
- z-index:202;
- background-color:#fff;
- border:1px solid #ccc;
- -webkit-box-shadow:1px 1px 0 rgba(0,0,0,0.2);
- -moz-box-shadow:1px 1px 0 rgba(0,0,0,0.2);
- box-shadow:1px 1px 0 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-size:10px;
- line-height:20px;
- top:0;
- z-index:202;
- width:18px;
- height:18px;
- color:#333;
- text-align:center;
- font-weight:700;
- border:1px solid #fff;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.5;
- padding:5px;
- }
- .vco-timeline .vco-navigation .vco-toolbar .zoom-in .icon {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-256px 0;
- width:24px;
- height:24px;
- }
- .vco-timeline .vco-navigation .vco-toolbar .zoom-out .icon {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-280px 0;
- width:24px;
- height:24px;
- }
- .vco-timeline .vco-navigation .vco-toolbar .back-home .icon {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-328px 0;
- width:24px;
- height:24px;
- }
- .vco-timeline .vco-navigation .vco-toolbar.touch {
- -webkit-border-radius:10px;
- -moz-border-radius:10px;
- border-radius:10px;
- background-color:transparent;
- -webkit-box-shadow:none;
- -moz-box-shadow:none;
- box-shadow:none;
- }
- .vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in,.vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out,.vco-timeline .vco-navigation .vco-toolbar.touch .back-home {
- width:40px;
- height:40px;
- background-color:#fff;
- border:1px solid #ccc;
- -webkit-box-shadow:1px 1px 0 rgba(0,0,0,0.2);
- -moz-box-shadow:1px 1px 0 rgba(0,0,0,0.2);
- box-shadow:1px 1px 0 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;
- padding:5px;
- }
- .vco-timeline .vco-navigation .vco-toolbar.touch .zoom-in .icon {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-208px -160px;
- width:40px;
- height:40px;
- }
- .vco-timeline .vco-navigation .vco-toolbar.touch .zoom-out .icon {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-256px -160px;
- width:40px;
- height:40px;
- }
- .vco-timeline .vco-navigation .vco-toolbar.touch .back-home .icon {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-304px -160px;
- width:40px;
- height:40px;
- }
- .vco-timeline .vco-navigation .timenav-background {
- position:absolute;
- cursor:move;
- top:0;
- left:0;
- height:150px;
- width:100%;
- background-color:#e9e9e9;
- }
- .vco-timeline .vco-navigation .timenav-background .timenav-interval-background {
- position:absolute;
- top:151px;
- left:0;
- background:#fff;
- 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:0;
- z-index:30;
- width:100%;
- height:1px;
- background:#fff;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.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:0;
- left:50%;
- width:3px;
- height:150px;
- background-color:#08c;
- z-index:1;
- -webkit-box-shadow:1px 1px 7px rgba(0,0,0,0.3);
- -moz-box-shadow:1px 1px 7px rgba(0,0,0,0.3);
- box-shadow:1px 1px 7px rgba(0,0,0,0.3);
- }
- .vco-timeline .vco-navigation .timenav-background .timenav-indicator {
- position:absolute;
- top:-1px;
- left:50%;
- z-index:202;
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-160px -48px;
- width:24px;
- height:24px;
- }
- .vco-timeline .vco-navigation .timenav-background .timenav-tag div {
- height:50px;
- display:table;
- }
- .vco-timeline .vco-navigation .timenav-background .timenav-tag div h3 {
- display:table-cell;
- vertical-align:middle;
- padding-left:65px;
- font-size:15px;
- color:#d0d0d0;
- font-weight:700;
- text-shadow:0 1px 1px #fff;
- }
- .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:0;
- left:-250px;
- z-index:1;
- }
- .vco-timeline .vco-navigation .timenav .content .marker.active .dot {
- background:#08c;
- z-index:200;
- }
- .vco-timeline .vco-navigation .timenav .content .marker.active .line {
- z-index:199;
- background:#08c;
- width:1px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker.active .line .event-line {
- background:#08c;
- filter:alpha(opacity=75);
- -khtml-opacity:.75;
- -moz-opacity:.75;
- opacity:.75;
- }
- .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:#08c;
- margin-top:5px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker {
- position:absolute;
- top:0;
- left:150px;
- display:block;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .dot {
- position:absolute;
- top:150px;
- left:0;
- display:block;
- width:6px;
- height:6px;
- background:#333;
- -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:0;
- left:3px;
- width:1px;
- height:150px;
- 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:0;
- height:1px;
- width:1px;
- background:#08c;
- filter:alpha(opacity=15);
- -khtml-opacity:.15;
- -moz-opacity:.15;
- opacity:.15;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag,.vco-timeline .vco-navigation .timenav .content .marker .flag-small {
- position:absolute;
- top:15px;
- left:3px;
- display:block;
- z-index:23;
- width:153px;
- padding:0;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content {
- overflow:hidden;
- padding:0 7px 2px 6px;
- }
- .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:700;
- font-size:11px;
- line-height:11px;
- color:#999;
- margin-bottom:2px;
- }
- .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:400;
- margin-top:5px;
- font-size:10px;
- line-height:10px;
- color:#aaa;
- }
- .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:.5;
- -moz-opacity:.5;
- opacity:.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:1px solid #999;
- margin:0;
- padding:0;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:0 0;
- width:153px;
- height:53px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:0 -135px;
- width:153px;
- height:26px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail {
- width:16px;
- height:10px;
- margin-right:1px;
- margin-top:6px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-plaintext {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-280px -130px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-quote {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-232px -130px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-document {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-256px -130px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-photo {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-280px -120px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-twitter {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-256px -120px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vimeo {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-328px -130px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-vine {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-160px -120px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-youtube {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-304px -130px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-video {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-328px -120px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-audio {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-304px -120px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-map {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-208px -120px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-wikipedia {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-184px -120px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-storify {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-184px -130px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-googleplus {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-208px -130px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag.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-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.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 {
- width:100%;
- height:100%;
- line-height:0;
- 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:700;
- color:rgba(0,136,204,0.35);
- text-shadow:0 1px 1px #fff;
- }
- .vco-timeline .vco-navigation .timenav .content .era1 div {
- background:#c40;
- filter:alpha(opacity=10);
- -khtml-opacity:.1;
- -moz-opacity:.1;
- opacity:.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:0 1px 1px #fff;
- }
- .vco-timeline .vco-navigation .timenav .content .era2 div {
- background:#c02;
- filter:alpha(opacity=10);
- -khtml-opacity:.1;
- -moz-opacity:.1;
- opacity:.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:0 1px 1px #fff;
- }
- .vco-timeline .vco-navigation .timenav .content .era3 div {
- background:#02c;
- filter:alpha(opacity=10);
- -khtml-opacity:.1;
- -moz-opacity:.1;
- opacity:.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:0 1px 1px #fff;
- }
- .vco-timeline .vco-navigation .timenav .content .era4 div {
- background:#ca0;
- filter:alpha(opacity=10);
- -khtml-opacity:.1;
- -moz-opacity:.1;
- opacity:.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:0 1px 1px #fff;
- }
- .vco-timeline .vco-navigation .timenav .content .era5 div {
- background:#0ca;
- filter:alpha(opacity=10);
- -khtml-opacity:.1;
- -moz-opacity:.1;
- opacity:.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:0 1px 1px #fff;
- }
- .vco-timeline .vco-navigation .timenav .content .era6 div {
- background:#08c;
- filter:alpha(opacity=10);
- -khtml-opacity:.1;
- -moz-opacity:.1;
- opacity:.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:0 1px 1px #fff;
- }
- .vco-timeline .vco-navigation .timenav .time {
- position:absolute;
- left:0;
- top:150px;
- height:50px;
- background-color:#fff;
- line-height:0;
- }
- .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:#666;
- margin-top:0;
- padding-top:0;
- }
- .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:0;
- display:block;
- font-weight:400;
- font-size:10px;
- line-height:20px;
- text-transform:uppercase;
- text-align:left;
- text-indent:0;
- white-space:nowrap;
- color:#666;
- margin-left:0;
- margin-right:0;
- margin-top:0;
- z-index:2;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval div.era {
- font-weight:700;
- padding-top:0;
- margin-top:-3px;
- margin-left:2px;
- background-image:none;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval .era1 {
- color:#c40;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.5;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval .era2 {
- color:#c02;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.5;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval .era3 {
- color:#02c;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.5;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval .era4 {
- color:#ca0;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.5;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval .era5 {
- color:#0ca;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.5;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval .era6 {
- color:#08c;
- filter:alpha(opacity=50);
- -khtml-opacity:.5;
- -moz-opacity:.5;
- opacity:.5;
- }
- .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:0;
- display:block;
- font-weight:700;
- font-size:12px;
- line-height:20px;
- text-transform:uppercase;
- text-align:left;
- text-indent:0;
- white-space:nowrap;
- color:#333;
- margin-left:0;
- margin-right:0;
- margin-top:1px;
- z-index:5;
- }
- .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,.vco-skinny .vco-slider .slider-item .content .content-container,.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 audio:not([controls]),.vco-slider .nav-previous .date small,.vco-slider .nav-next .date small,.vco-slider .nav-previous .title small,.vco-slider .nav-next .title small,.vco-timeline .vco-navigation .timenav .content .marker.start,.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,.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-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,.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 {
- }
- .vco-storyjs .vco-navigation p,.vco-storyjs .date a,.vco-storyjs .title a,.vco-storyjs h1 a,.vco-storyjs h2 a,.vco-storyjs h3 a,.vco-storyjs h4 a,.vco-storyjs h5 a,.vco-storyjs h6 a,.vco-storyjs h1 small,.vco-storyjs h2 small,.vco-storyjs h3 small,.vco-storyjs h4 small,.vco-storyjs h5 small,.vco-storyjs h6 small,.vco-slider .nav-previous .date a,.vco-slider .nav-next .date a,.vco-slider .nav-previous .title a,.vco-slider .nav-next .title a,.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:#999;
- }
- .vco-storyjs .vco-feature p,.vco-slider .slider-item .content .content-container .twitter blockquote,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote,.vco-slider .slider-item .content .content-container .storify blockquote,.vco-slider .slider-item .content .content-container .googleplus blockquote,.vco-slider .slider-item .content .content-container .twitter blockquote .quote-mark,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote .quote-mark,.vco-slider .slider-item .content .content-container .storify blockquote .quote-mark,.vco-slider .slider-item .content .content-container .googleplus blockquote .quote-mark {
- color:#666;
- }
- .vco-storyjs .vco-feature blockquote,.vco-storyjs .vco-feature blockquote p,.vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia h4 a {
- color:#000;
- }
- .vco-storyjs .hyphenate,.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-storyjs h3 .active,.vco-storyjs h4 .active,.vco-storyjs h5 .active,.vco-storyjs h6 .active,.vco-slider .slider-item .content .content-container .googleplus .proflinkPrefix,.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:#08c;
- }
- .fancybox-outer,.fancybox-inner,.vco-timeline .vco-navigation .timenav .content {
- position:relative;
- }
- .fancybox-nav:hover span,.fancybox-opened .fancybox-title {
- visibility:visible;
- }
- .vco-skinny .vco-slider .slider-item .content .content-container .media,.vco-slider .slider-item .content .content-container.layout-media .media {
- width:100%;
- min-width:50%;
- float:none;
- }
- .vco-slider .slider-container-mask .slider-container .slider-item-container,.vco-slider .slider-item .content,.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-notouch .vco-slider .slider-item .content .content-container .media .media-container .wikipedia h4 a:hover,.vco-storyjs a {
- color:#08c;
- text-decoration:none;
- }
- .vco-notouch .vco-slider .slider-item .content .content-container .created-at:hover,.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,.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-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover,.vco-storyjs .vcard a:hover {
- text-decoration:none;
- }
- .vco-notouch .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments a:hover h5,.vco-storyjs .vcard a:hover .fn {
- text-decoration:underline;
- }
- .vco-slider img,.vco-slider embed,.vco-slider object,.vco-slider video,.vco-slider iframe,.vco-storyjs img,.vco-storyjs embed,.vco-storyjs object,.vco-storyjs video,.vco-storyjs iframe {
- max-width:100%;
- }
- .vco-slider .slider-item .content .pad-left .media.text-media .media-wrapper .media-container,.vco-slider .slider-item .content .content-container .media.text-media .media-wrapper .media-container {
- border:none;
- background-color:#fff;
- }
- .vco-slider .slider-item .content .content-container .media .media-wrapper .media-container .wikipedia p,.vco-slider .slider-item .content .content-container .googleplus .googleplus-content p {
- font-size:13px;
- line-height:19px;
- }
- .vco-slider .slider-item .content .content-container .storify .created-at,.vco-storyjs .thumbnail.thumb-storify {
- background-repeat:no-repeat;
- background-position:-328px -96px;
- }
- .vco-slider .slider-item .content .content-container .twitter .created-at,.vco-storyjs .thumbnail.thumb-twitter {
- background-repeat:no-repeat;
- background-position:-256px -24px;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-title,.vco-slider .slider-item .content .content-container .twitter blockquote p,.vco-slider .slider-item .content .content-container .plain-text-quote blockquote p,.vco-slider .slider-item .content .content-container .storify blockquote p,.vco-slider .slider-item .content .content-container .googleplus blockquote p {
- font-size:24px;
- line-height:32px;
- margin-bottom:6px;
- padding-top:10px;
- background-color:#fff;
- color:#000;
- }
- .vco-slider .slider-item .content .content-container .googleplus .googleplus-content .googleplus-attachments:after,.vco-storyjs .vmm-clear:after {
- clear:both;
- }
- .vco-slider .slider-item .content .content-container .googleplus .created-at,.vco-storyjs .thumbnail.thumb-googleplus {
- background-repeat:no-repeat;
- background-position:-208px -72px;
- }
- .vco-slider .slider-item .content .content-container.layout-text,.vco-slider .slider-item .content .content-container.layout-media,.vco-storyjs .vco-feature {
- width:100%;
- }
- .vco-storyjs .vcard a,.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:#333;
- }
- .vco-storyjs .googleplus .thumbnail-inline,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content thumbnail.thumb-instagram {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-208px -96px;
- }
- .vco-notouch .vco-navigation .timenav .content .marker .flag:hover,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover,.vco-timeline .vco-navigation .timenav .content .marker.active .flag {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:0 -53px;
- width:153px;
- height:53px;
- }
- .vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content,.vco-timeline .vco-navigation .timenav .content .marker.active .flag .flag-content,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content,.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content {
- height:36px;
- }
- .vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker .flag .flag-content h3 {
- margin-top:5px;
- }
- .vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:0 -109px;
- width:153px;
- height:26px;
- }
- .vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content {
- height:14px;
- }
- .vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small .flag-content h3,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content h3 {
- margin-top:4px;
- }
- .vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half,.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-half div {
- height:25px;
- }
- .vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full,.vco-timeline .vco-navigation .timenav-background .timenav-tag-size-full div {
- height:50px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker.active .flag,.vco-timeline .vco-navigation .timenav .content .marker.active .flag-small,.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 .flag-small .flag-content .thumbnail.thumb-website,.vco-timeline .vco-navigation .timenav .content .marker .flag-small .flag-content .thumbnail.thumb-link {
- background-image:url(timeline.png?v4.4);
- background-repeat:no-repeat;
- background-position:-232px -120px;
- }
- .vco-timeline .vco-navigation .timenav .content .marker .flag.row3,.vco-timeline .vco-navigation .timenav .content .marker .flag-small.row6 {
- z-index:23;
- top:1px;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval,.vco-timeline .vco-navigation .timenav .time .time-interval-major {
- white-space:nowrap;
- position:absolute;
- top:5px;
- left:0;
- }
- .vco-timeline .vco-navigation .timenav .time .time-interval div strong,.vco-timeline .vco-navigation .timenav .time .time-interval-major div strong {
- font-weight:700;
- color:#000;
- }
- @media only screen and -webkit-min-device-pixel-ratio2,only screen and min-device-pixel-ratio2{
- .thumbnail {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- }
- .vco-skinny.vco-notouch .vco-slider .nav-previous .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-208px 0;
- width:24px;
- height:24px;
- overflow:hidden;
- }
- .vco-skinny.vco-notouch .vco-slider .nav-next .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-232px 0;
- width:24px;
- height:24px;
- overflow:hidden;
- }
- .vco-slider .nav-previous .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-160px 0;
- width:24px;
- height:24px;
- overflow:hidden;
- }
- .vco-slider .nav-next .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-184px 0;
- width:24px;
- height:24px;
- overflow:hidden;
- }
- .vco-storyjs div.vco-loading .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-loading-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-loading-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-loading-icon {
- background-image:url(loading@2x.gif?v3.4);
- }
- .vco-storyjs div.vco-loading .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-loading-container .vco-gesture-icon,.vco-storyjs div.vco-loading .vco-explainer-container .vco-gesture-icon,.vco-storyjs div.vco-explainer .vco-explainer-container .vco-gesture-icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-160px -160px;
- width:48px;
- height:48px;
- }
- .vco-notouch .vco-navigation .vco-toolbar .zoom-in .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-256px 0;
- width:24px;
- height:24px;
- }
- .vco-notouch .vco-navigation .vco-toolbar .zoom-out .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-280px 0;
- width:24px;
- height:24px;
- }
- .vco-notouch .vco-navigation .vco-toolbar .back-home .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-328px 0;
- width:24px;
- height:24px;
- }
- .vco-notouch .vco-navigation .vco-toolbar.touch .zoom-in .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-208px -160px;
- width:40px;
- height:40px;
- }
- .vco-notouch .vco-navigation .vco-toolbar.touch .zoom-out .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-256px -160px;
- width:40px;
- height:40px;
- }
- .vco-notouch .vco-navigation .vco-toolbar.touch .back-home .icon {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-304px -160px;
- width:40px;
- height:40px;
- }
- .vco-notouch .vco-navigation .timenav .content .marker .flag-small.flag-small-last:hover {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:0 -109px;
- width:153px;
- height:26px;
- }
- .vco-notouch .vco-navigation .timenav-background .timenav-indicator {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:-160px -48px;
- width:24px;
- height:24px;
- }
- .vco-notouch .vco-navigation .timenav .content .marker .flag:hover,.vco-notouch .vco-navigation .timenav .content .marker .flag-small:hover {
- background-image:url(timeline@2x.png?v4.4);
- background-size:352px 260px;
- background-repeat:no-repeat;
- background-position:0 -53px;
- width:153px;
- height:53px;
- }
- }
- @media only screen and -webkit-min-device-pixel-ratio15,only screen and min--moz-device-pixel-ratio15,only screen and min-device-pixel-ratio15{
- #fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span {
- background-image:url(fancybox_sprite@2x.png);
- background-size:44px 152px;
- }
- #fancybox-loading div {
- background-image:url(loading@2x.gif);
- background-size:24px 24px;
- }
- }
- @media only screen and max-width480px,only screen and max-device-width480px{
- .vco-slider .nav-next,.vco-slider .nav-previous {
- display:none;
- }
- }
- @media screen and max-device-width480px and orientationportrait{
- .storyjs-embed.full-embed {
- height:557px!important;
- width:320px!important;
- }
- .storyjs-embed.full-embed .vco-feature {
- height:356px!important;
- }
- }
- @media screen and max-device-width480px and orientationlandscape{
- .storyjs-embed.full-embed {
- height:409px!important;
- width:480px!important;
- }
- .storyjs-embed.full-embed .vco-feature {
- height:208px!important;
- }
- }
|