layers.css 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805
  1. /*-----------------------------------------------------------------------------
  2. - Revolution Slider 5.0 Layer Style Settings -
  3. Screen Stylesheet
  4. version: 5.0.0
  5. date: 18/03/15
  6. author: themepunch
  7. email: info@themepunch.com
  8. website: http://www.themepunch.com
  9. -----------------------------------------------------------------------------*/
  10. * {
  11. -webkit-box-sizing: border-box;
  12. -moz-box-sizing: border-box;
  13. box-sizing: border-box;
  14. }
  15. .tp-caption.Twitter-Content a,.tp-caption.Twitter-Content a:visited
  16. {
  17. color:#0084B4!important;
  18. }
  19. .tp-caption.Twitter-Content a:hover
  20. {
  21. color:#0084B4!important;
  22. text-decoration:underline!important;
  23. }
  24. .tp-caption.medium_grey,.medium_grey
  25. {
  26. background-color:#888;
  27. border-style:none;
  28. border-width:0;
  29. color:#fff;
  30. font-family:Arial;
  31. font-size:20px;
  32. font-weight:700;
  33. line-height:20px;
  34. margin:0;
  35. padding:2px 4px;
  36. position:absolute;
  37. text-shadow:0 2px 5px rgba(0,0,0,0.5);
  38. white-space:nowrap;
  39. }
  40. .tp-caption.small_text,.small_text
  41. {
  42. border-style:none;
  43. border-width:0;
  44. color:#fff;
  45. font-family:Arial;
  46. font-size:14px;
  47. font-weight:700;
  48. line-height:20px;
  49. margin:0;
  50. position:absolute;
  51. text-shadow:0 2px 5px rgba(0,0,0,0.5);
  52. white-space:nowrap;
  53. }
  54. .tp-caption.medium_text,.medium_text
  55. {
  56. border-style:none;
  57. border-width:0;
  58. color:#fff;
  59. font-family:Arial;
  60. font-size:20px;
  61. font-weight:700;
  62. line-height:20px;
  63. margin:0;
  64. position:absolute;
  65. text-shadow:0 2px 5px rgba(0,0,0,0.5);
  66. white-space:nowrap;
  67. }
  68. .tp-caption.large_text,.large_text
  69. {
  70. border-style:none;
  71. border-width:0;
  72. color:#fff;
  73. font-family:Arial;
  74. font-size:40px;
  75. font-weight:700;
  76. line-height:40px;
  77. margin:0;
  78. position:absolute;
  79. text-shadow:0 2px 5px rgba(0,0,0,0.5);
  80. white-space:nowrap;
  81. }
  82. .tp-caption.very_large_text,.very_large_text
  83. {
  84. border-style:none;
  85. border-width:0;
  86. color:#fff;
  87. font-family:Arial;
  88. font-size:60px;
  89. font-weight:700;
  90. letter-spacing:-2px;
  91. line-height:60px;
  92. margin:0;
  93. position:absolute;
  94. text-shadow:0 2px 5px rgba(0,0,0,0.5);
  95. white-space:nowrap;
  96. }
  97. .tp-caption.very_big_white,.very_big_white
  98. {
  99. background-color:#000;
  100. border-style:none;
  101. border-width:0;
  102. color:#fff;
  103. font-family:Arial;
  104. font-size:60px;
  105. font-weight:800;
  106. line-height:60px;
  107. margin:0;
  108. padding:1px 4px 0;
  109. position:absolute;
  110. text-shadow:none;
  111. white-space:nowrap;
  112. }
  113. .tp-caption.very_big_black,.very_big_black
  114. {
  115. background-color:#fff;
  116. border-style:none;
  117. border-width:0;
  118. color:#000;
  119. font-family:Arial;
  120. font-size:60px;
  121. font-weight:700;
  122. line-height:60px;
  123. margin:0;
  124. padding:1px 4px 0;
  125. position:absolute;
  126. text-shadow:none;
  127. white-space:nowrap;
  128. }
  129. .tp-caption.modern_medium_fat,.modern_medium_fat
  130. {
  131. border-style:none;
  132. border-width:0;
  133. color:#000;
  134. font-family:"Open Sans", sans-serif;
  135. font-size:24px;
  136. font-weight:800;
  137. line-height:20px;
  138. margin:0;
  139. position:absolute;
  140. text-shadow:none;
  141. white-space:nowrap;
  142. }
  143. .tp-caption.modern_medium_fat_white,.modern_medium_fat_white
  144. {
  145. border-style:none;
  146. border-width:0;
  147. color:#fff;
  148. font-family:"Open Sans", sans-serif;
  149. font-size:24px;
  150. font-weight:800;
  151. line-height:20px;
  152. margin:0;
  153. position:absolute;
  154. text-shadow:none;
  155. white-space:nowrap;
  156. }
  157. .tp-caption.modern_medium_light,.modern_medium_light
  158. {
  159. border-style:none;
  160. border-width:0;
  161. color:#000;
  162. font-family:"Open Sans", sans-serif;
  163. font-size:24px;
  164. font-weight:300;
  165. line-height:20px;
  166. margin:0;
  167. position:absolute;
  168. text-shadow:none;
  169. white-space:nowrap;
  170. }
  171. .tp-caption.modern_big_bluebg,.modern_big_bluebg
  172. {
  173. background-color:#4e5b6c;
  174. border-style:none;
  175. border-width:0;
  176. color:#fff;
  177. font-family:"Open Sans", sans-serif;
  178. font-size:30px;
  179. font-weight:800;
  180. letter-spacing:0;
  181. line-height:36px;
  182. margin:0;
  183. padding:3px 10px;
  184. position:absolute;
  185. text-shadow:none;
  186. }
  187. .tp-caption.modern_big_redbg,.modern_big_redbg
  188. {
  189. background-color:#de543e;
  190. border-style:none;
  191. border-width:0;
  192. color:#fff;
  193. font-family:"Open Sans", sans-serif;
  194. font-size:30px;
  195. font-weight:300;
  196. letter-spacing:0;
  197. line-height:36px;
  198. margin:0;
  199. padding:1px 10px 3px;
  200. position:absolute;
  201. text-shadow:none;
  202. }
  203. .tp-caption.modern_small_text_dark,.modern_small_text_dark
  204. {
  205. border-style:none;
  206. border-width:0;
  207. color:#555;
  208. font-family:Arial;
  209. font-size:14px;
  210. line-height:22px;
  211. margin:0;
  212. position:absolute;
  213. text-shadow:none;
  214. white-space:nowrap;
  215. }
  216. .tp-caption.boxshadow,.boxshadow
  217. {
  218. box-shadow:0 0 20px rgba(0,0,0,0.5);
  219. }
  220. .tp-caption.black,.black
  221. {
  222. color:#000;
  223. text-shadow:none;
  224. }
  225. .tp-caption.noshadow,.noshadow
  226. {
  227. text-shadow:none;
  228. }
  229. .tp-caption.thinheadline_dark,.thinheadline_dark
  230. {
  231. background-color:transparent;
  232. color:rgba(0,0,0,0.85);
  233. font-family:"Open Sans";
  234. font-size:30px;
  235. font-weight:300;
  236. line-height:30px;
  237. position:absolute;
  238. text-shadow:none;
  239. }
  240. .tp-caption.thintext_dark,.thintext_dark
  241. {
  242. background-color:transparent;
  243. color:rgba(0,0,0,0.85);
  244. font-family:"Open Sans";
  245. font-size:16px;
  246. font-weight:300;
  247. line-height:26px;
  248. position:absolute;
  249. text-shadow:none;
  250. }
  251. .tp-caption.largeblackbg,.largeblackbg
  252. {
  253. background-color:#000;
  254. border-radius:0;
  255. color:#fff;
  256. font-family:"Open Sans";
  257. font-size:50px;
  258. font-weight:300;
  259. line-height:70px;
  260. padding:0 20px;
  261. position:absolute;
  262. text-shadow:none;
  263. }
  264. .tp-caption.largepinkbg,.largepinkbg
  265. {
  266. background-color:#db4360;
  267. border-radius:0;
  268. color:#fff;
  269. font-family:"Open Sans";
  270. font-size:50px;
  271. font-weight:300;
  272. line-height:70px;
  273. padding:0 20px;
  274. position:absolute;
  275. text-shadow:none;
  276. }
  277. .tp-caption.largewhitebg,.largewhitebg
  278. {
  279. background-color:#fff;
  280. border-radius:0;
  281. color:#000;
  282. font-family:"Open Sans";
  283. font-size:50px;
  284. font-weight:300;
  285. line-height:70px;
  286. padding:0 20px;
  287. position:absolute;
  288. text-shadow:none;
  289. }
  290. .tp-caption.largegreenbg,.largegreenbg
  291. {
  292. background-color:#67ae73;
  293. border-radius:0;
  294. color:#fff;
  295. font-family:"Open Sans";
  296. font-size:50px;
  297. font-weight:300;
  298. line-height:70px;
  299. padding:0 20px;
  300. position:absolute;
  301. text-shadow:none;
  302. }
  303. .tp-caption.excerpt,.excerpt
  304. {
  305. background-color:rgba(0,0,0,1);
  306. border-color:#fff;
  307. border-style:none;
  308. border-width:0;
  309. color:#fff;
  310. font-family:Arial;
  311. font-size:36px;
  312. font-weight:700;
  313. height:auto;
  314. letter-spacing:-1.5px;
  315. line-height:36px;
  316. margin:0;
  317. padding:1px 4px 0;
  318. text-decoration:none;
  319. text-shadow:none;
  320. white-space:normal!important;
  321. width:150px;
  322. }
  323. .tp-caption.large_bold_grey,.large_bold_grey
  324. {
  325. background-color:transparent;
  326. border-color:#ffd658;
  327. border-style:none;
  328. border-width:0;
  329. color:#666;
  330. font-family:"Open Sans";
  331. font-size:60px;
  332. font-weight:800;
  333. line-height:60px;
  334. margin:0;
  335. padding:1px 4px 0;
  336. text-decoration:none;
  337. text-shadow:none;
  338. }
  339. .tp-caption.medium_thin_grey,.medium_thin_grey
  340. {
  341. background-color:transparent;
  342. border-color:#ffd658;
  343. border-style:none;
  344. border-width:0;
  345. color:#666;
  346. font-family:"Open Sans";
  347. font-size:34px;
  348. font-weight:300;
  349. line-height:30px;
  350. margin:0;
  351. padding:1px 4px 0;
  352. text-decoration:none;
  353. text-shadow:none;
  354. }
  355. .tp-caption.small_thin_grey,.small_thin_grey
  356. {
  357. background-color:transparent;
  358. border-color:#ffd658;
  359. border-style:none;
  360. border-width:0;
  361. color:#757575;
  362. font-family:"Open Sans";
  363. font-size:18px;
  364. font-weight:300;
  365. line-height:26px;
  366. margin:0;
  367. padding:1px 4px 0;
  368. text-decoration:none;
  369. text-shadow:none;
  370. }
  371. .tp-caption.lightgrey_divider,.lightgrey_divider
  372. {
  373. background-color:rgba(235,235,235,1);
  374. background-position:initial;
  375. background-repeat:initial;
  376. border-color:#222;
  377. border-style:none;
  378. border-width:0;
  379. height:3px;
  380. text-decoration:none;
  381. width:370px;
  382. }
  383. .tp-caption.large_bold_darkblue,.large_bold_darkblue
  384. {
  385. background-color:transparent;
  386. border-color:#ffd658;
  387. border-style:none;
  388. border-width:0;
  389. color:#34495e;
  390. font-family:"Open Sans";
  391. font-size:58px;
  392. font-weight:800;
  393. line-height:60px;
  394. text-decoration:none;
  395. }
  396. .tp-caption.medium_bg_darkblue,.medium_bg_darkblue
  397. {
  398. background-color:#34495e;
  399. border-color:#ffd658;
  400. border-style:none;
  401. border-width:0;
  402. color:#fff;
  403. font-family:"Open Sans";
  404. font-size:20px;
  405. font-weight:800;
  406. line-height:20px;
  407. padding:10px;
  408. text-decoration:none;
  409. }
  410. .tp-caption.medium_bold_red,.medium_bold_red
  411. {
  412. background-color:transparent;
  413. border-color:#ffd658;
  414. border-style:none;
  415. border-width:0;
  416. color:#e33a0c;
  417. font-family:"Open Sans";
  418. font-size:24px;
  419. font-weight:800;
  420. line-height:30px;
  421. padding:0;
  422. text-decoration:none;
  423. }
  424. .tp-caption.medium_light_red,.medium_light_red
  425. {
  426. background-color:transparent;
  427. border-color:#ffd658;
  428. border-style:none;
  429. border-width:0;
  430. color:#e33a0c;
  431. font-family:"Open Sans";
  432. font-size:21px;
  433. font-weight:300;
  434. line-height:26px;
  435. padding:0;
  436. text-decoration:none;
  437. }
  438. .tp-caption.medium_bg_red,.medium_bg_red
  439. {
  440. background-color:#e33a0c;
  441. border-color:#ffd658;
  442. border-style:none;
  443. border-width:0;
  444. color:#fff;
  445. font-family:"Open Sans";
  446. font-size:20px;
  447. font-weight:800;
  448. line-height:20px;
  449. padding:10px;
  450. text-decoration:none;
  451. }
  452. .tp-caption.medium_bold_orange,.medium_bold_orange
  453. {
  454. background-color:transparent;
  455. border-color:#ffd658;
  456. border-style:none;
  457. border-width:0;
  458. color:#f39c12;
  459. font-family:"Open Sans";
  460. font-size:24px;
  461. font-weight:800;
  462. line-height:30px;
  463. text-decoration:none;
  464. }
  465. .tp-caption.medium_bg_orange,.medium_bg_orange
  466. {
  467. background-color:#f39c12;
  468. border-color:#ffd658;
  469. border-style:none;
  470. border-width:0;
  471. color:#fff;
  472. font-family:"Open Sans";
  473. font-size:20px;
  474. font-weight:800;
  475. line-height:20px;
  476. padding:10px;
  477. text-decoration:none;
  478. }
  479. .tp-caption.grassfloor,.grassfloor
  480. {
  481. background-color:rgba(160,179,151,1);
  482. border-color:#222;
  483. border-style:none;
  484. border-width:0;
  485. height:150px;
  486. text-decoration:none;
  487. width:4000px;
  488. }
  489. .tp-caption.large_bold_white,.large_bold_white
  490. {
  491. background-color:transparent;
  492. border-color:#ffd658;
  493. border-style:none;
  494. border-width:0;
  495. color:#fff;
  496. font-family:"Open Sans";
  497. font-size:58px;
  498. font-weight:800;
  499. line-height:60px;
  500. text-decoration:none;
  501. }
  502. .tp-caption.medium_light_white,.medium_light_white
  503. {
  504. background-color:transparent;
  505. border-color:#ffd658;
  506. border-style:none;
  507. border-width:0;
  508. color:#fff;
  509. font-family:"Open Sans";
  510. font-size:30px;
  511. font-weight:300;
  512. line-height:36px;
  513. padding:0;
  514. text-decoration:none;
  515. }
  516. .tp-caption.mediumlarge_light_white,.mediumlarge_light_white
  517. {
  518. background-color:transparent;
  519. border-color:#ffd658;
  520. border-style:none;
  521. border-width:0;
  522. color:#fff;
  523. font-family:"Open Sans";
  524. font-size:34px;
  525. font-weight:300;
  526. line-height:40px;
  527. padding:0;
  528. text-decoration:none;
  529. }
  530. .tp-caption.mediumlarge_light_white_center,.mediumlarge_light_white_center
  531. {
  532. background-color:transparent;
  533. border-color:#ffd658;
  534. border-style:none;
  535. border-width:0;
  536. color:#fff;
  537. font-family:"Open Sans";
  538. font-size:34px;
  539. font-weight:300;
  540. line-height:40px;
  541. padding:0;
  542. text-align:center;
  543. text-decoration:none;
  544. }
  545. .tp-caption.medium_bg_asbestos,.medium_bg_asbestos
  546. {
  547. background-color:#7f8c8d;
  548. border-color:#ffd658;
  549. border-style:none;
  550. border-width:0;
  551. color:#fff;
  552. font-family:"Open Sans";
  553. font-size:20px;
  554. font-weight:800;
  555. line-height:20px;
  556. padding:10px;
  557. text-decoration:none;
  558. }
  559. .tp-caption.medium_light_black,.medium_light_black
  560. {
  561. background-color:transparent;
  562. border-color:#ffd658;
  563. border-style:none;
  564. border-width:0;
  565. color:#000;
  566. font-family:"Open Sans";
  567. font-size:30px;
  568. font-weight:300;
  569. line-height:36px;
  570. padding:0;
  571. text-decoration:none;
  572. }
  573. .tp-caption.large_bold_black,.large_bold_black
  574. {
  575. background-color:transparent;
  576. border-color:#ffd658;
  577. border-style:none;
  578. border-width:0;
  579. color:#000;
  580. font-family:"Open Sans";
  581. font-size:58px;
  582. font-weight:800;
  583. line-height:60px;
  584. text-decoration:none;
  585. }
  586. .tp-caption.mediumlarge_light_darkblue,.mediumlarge_light_darkblue
  587. {
  588. background-color:transparent;
  589. border-color:#ffd658;
  590. border-style:none;
  591. border-width:0;
  592. color:#34495e;
  593. font-family:"Open Sans";
  594. font-size:34px;
  595. font-weight:300;
  596. line-height:40px;
  597. padding:0;
  598. text-decoration:none;
  599. }
  600. .tp-caption.small_light_white,.small_light_white
  601. {
  602. background-color:transparent;
  603. border-color:#ffd658;
  604. border-style:none;
  605. border-width:0;
  606. color:#fff;
  607. font-family:"Open Sans";
  608. font-size:17px;
  609. font-weight:300;
  610. line-height:28px;
  611. padding:0;
  612. text-decoration:none;
  613. }
  614. .tp-caption.roundedimage,.roundedimage
  615. {
  616. border-color:#222;
  617. border-style:none;
  618. border-width:0;
  619. }
  620. .tp-caption.large_bg_black,.large_bg_black
  621. {
  622. background-color:#000;
  623. border-color:#ffd658;
  624. border-style:none;
  625. border-width:0;
  626. color:#fff;
  627. font-family:"Open Sans";
  628. font-size:40px;
  629. font-weight:800;
  630. line-height:40px;
  631. padding:10px 20px 15px;
  632. text-decoration:none;
  633. }
  634. .tp-caption.mediumwhitebg,.mediumwhitebg
  635. {
  636. background-color:#fff;
  637. border-color:#000;
  638. border-style:none;
  639. border-width:0;
  640. color:#000;
  641. font-family:"Open Sans";
  642. font-size:30px;
  643. font-weight:300;
  644. line-height:30px;
  645. padding:5px 15px 10px;
  646. text-decoration:none;
  647. text-shadow:none;
  648. }
  649. .tp-caption.maincaption,.maincaption
  650. {
  651. background-color:transparent;
  652. border-color:#000;
  653. border-style:none;
  654. border-width:0;
  655. color:#212a40;
  656. font-family:roboto;
  657. font-size:33px;
  658. font-weight:500;
  659. line-height:43px;
  660. text-decoration:none;
  661. text-shadow:none;
  662. }
  663. .tp-caption.miami_title_60px,.miami_title_60px
  664. {
  665. background-color:transparent;
  666. border-color:#000;
  667. border-style:none;
  668. border-width:0;
  669. color:#fff;
  670. font-family:"Source Sans Pro";
  671. font-size:60px;
  672. font-weight:700;
  673. letter-spacing:1px;
  674. line-height:60px;
  675. text-decoration:none;
  676. text-shadow:none;
  677. }
  678. .tp-caption.miami_subtitle,.miami_subtitle
  679. {
  680. background-color:transparent;
  681. border-color:#000;
  682. border-style:none;
  683. border-width:0;
  684. color:rgba(255,255,255,0.65);
  685. font-family:"Source Sans Pro";
  686. font-size:17px;
  687. font-weight:400;
  688. letter-spacing:2px;
  689. line-height:24px;
  690. text-decoration:none;
  691. text-shadow:none;
  692. }
  693. .tp-caption.divideline30px,.divideline30px
  694. {
  695. background:#fff;
  696. background-color:#fff;
  697. border-color:#222;
  698. border-style:none;
  699. border-width:0;
  700. height:2px;
  701. min-width:30px;
  702. text-decoration:none;
  703. }
  704. .tp-caption.Miami_nostyle,.Miami_nostyle
  705. {
  706. border-color:#222;
  707. border-style:none;
  708. border-width:0;
  709. }
  710. .tp-caption.miami_content_light,.miami_content_light
  711. {
  712. background-color:transparent;
  713. border-color:#000;
  714. border-style:none;
  715. border-width:0;
  716. color:#fff;
  717. font-family:"Source Sans Pro";
  718. font-size:22px;
  719. font-weight:400;
  720. letter-spacing:0;
  721. line-height:28px;
  722. text-decoration:none;
  723. text-shadow:none;
  724. }
  725. .tp-caption.miami_title_60px_dark,.miami_title_60px_dark
  726. {
  727. background-color:transparent;
  728. border-color:#000;
  729. border-style:none;
  730. border-width:0;
  731. color:#333;
  732. font-family:"Source Sans Pro";
  733. font-size:60px;
  734. font-weight:700;
  735. letter-spacing:1px;
  736. line-height:60px;
  737. text-decoration:none;
  738. text-shadow:none;
  739. }
  740. .tp-caption.miami_content_dark,.miami_content_dark
  741. {
  742. background-color:transparent;
  743. border-color:#000;
  744. border-style:none;
  745. border-width:0;
  746. color:#666;
  747. font-family:"Source Sans Pro";
  748. font-size:22px;
  749. font-weight:400;
  750. letter-spacing:0;
  751. line-height:28px;
  752. text-decoration:none;
  753. text-shadow:none;
  754. }
  755. .tp-caption.divideline30px_dark,.divideline30px_dark
  756. {
  757. background-color:#333;
  758. border-color:#222;
  759. border-style:none;
  760. border-width:0;
  761. height:2px;
  762. min-width:30px;
  763. text-decoration:none;
  764. }
  765. .tp-caption.ellipse70px,.ellipse70px
  766. {
  767. background-color:rgba(0,0,0,0.14902);
  768. border-color:#222;
  769. border-radius:50px 50px 50px 50px;
  770. border-style:none;
  771. border-width:0;
  772. cursor:pointer;
  773. line-height:1px;
  774. min-height:70px;
  775. min-width:70px;
  776. text-decoration:none;
  777. }
  778. .tp-caption.arrowicon,.arrowicon
  779. {
  780. border-color:#222;
  781. border-style:none;
  782. border-width:0;
  783. line-height:1px;
  784. }
  785. .tp-caption.MarkerDisplay,.MarkerDisplay
  786. {
  787. background-color:transparent;
  788. border-color:#000;
  789. border-radius:0 0 0 0;
  790. border-style:none;
  791. border-width:0;
  792. font-family:"Permanent Marker";
  793. font-style:normal;
  794. padding:0;
  795. text-decoration:none;
  796. text-shadow:none;
  797. }
  798. .tp-caption.Restaurant-Display,.Restaurant-Display
  799. {
  800. background-color:transparent;
  801. border-color:transparent;
  802. border-radius:0 0 0 0;
  803. border-style:none;
  804. border-width:0;
  805. color:#fff;
  806. font-family:Roboto;
  807. font-size:120px;
  808. font-style:normal;
  809. font-weight:700;
  810. line-height:120px;
  811. padding:0;
  812. text-decoration:none;
  813. }
  814. .tp-caption.Restaurant-Cursive,.Restaurant-Cursive
  815. {
  816. background-color:transparent;
  817. border-color:transparent;
  818. border-radius:0 0 0 0;
  819. border-style:none;
  820. border-width:0;
  821. color:#fff;
  822. font-family:"Nothing you could do";
  823. font-size:30px;
  824. font-style:normal;
  825. font-weight:400;
  826. letter-spacing:2px;
  827. line-height:30px;
  828. padding:0;
  829. text-decoration:none;
  830. }
  831. .tp-caption.Restaurant-ScrollDownText,.Restaurant-ScrollDownText
  832. {
  833. background-color:transparent;
  834. border-color:transparent;
  835. border-radius:0 0 0 0;
  836. border-style:none;
  837. border-width:0;
  838. color:#fff;
  839. font-family:Roboto;
  840. font-size:17px;
  841. font-style:normal;
  842. font-weight:400;
  843. letter-spacing:2px;
  844. line-height:17px;
  845. padding:0;
  846. text-decoration:none;
  847. }
  848. .tp-caption.Restaurant-Description,.Restaurant-Description
  849. {
  850. background-color:transparent;
  851. border-color:transparent;
  852. border-radius:0 0 0 0;
  853. border-style:none;
  854. border-width:0;
  855. color:#fff;
  856. font-family:Roboto;
  857. font-size:20px;
  858. font-style:normal;
  859. font-weight:300;
  860. letter-spacing:3px;
  861. line-height:30px;
  862. padding:0;
  863. text-decoration:none;
  864. }
  865. .tp-caption.Restaurant-Price,.Restaurant-Price
  866. {
  867. background-color:transparent;
  868. border-color:transparent;
  869. border-radius:0 0 0 0;
  870. border-style:none;
  871. border-width:0;
  872. color:#fff;
  873. font-family:Roboto;
  874. font-size:30px;
  875. font-style:normal;
  876. font-weight:300;
  877. letter-spacing:3px;
  878. line-height:30px;
  879. padding:0;
  880. text-decoration:none;
  881. }
  882. .tp-caption.Restaurant-Menuitem,.Restaurant-Menuitem
  883. {
  884. background-color:rgba(0,0,0,1.00);
  885. border-color:transparent;
  886. border-radius:0 0 0 0;
  887. border-style:none;
  888. border-width:0;
  889. color:rgba(255,255,255,1.00);
  890. font-family:Roboto;
  891. font-size:17px;
  892. font-style:normal;
  893. font-weight:400;
  894. letter-spacing:2px;
  895. line-height:17px;
  896. padding:10px 30px;
  897. text-align:left;
  898. text-decoration:none;
  899. }
  900. .tp-caption.Furniture-LogoText,.Furniture-LogoText
  901. {
  902. background-color:transparent;
  903. border-color:transparent;
  904. border-radius:0 0 0 0;
  905. border-style:none;
  906. border-width:0;
  907. color:rgba(230,207,163,1.00);
  908. font-family:Raleway;
  909. font-size:160px;
  910. font-style:normal;
  911. font-weight:300;
  912. line-height:150px;
  913. padding:0;
  914. text-decoration:none;
  915. text-shadow:none;
  916. }
  917. .tp-caption.Furniture-Plus,.Furniture-Plus
  918. {
  919. background-color:rgba(255,255,255,1.00);
  920. border-color:transparent;
  921. border-radius:30px 30px 30px 30px;
  922. border-style:none;
  923. border-width:0;
  924. box-shadow:rgba(0,0,0,0.1) 0 1px 3px;
  925. color:rgba(230,207,163,1.00);
  926. font-family:Raleway;
  927. font-size:20px;
  928. font-style:normal;
  929. font-weight:400;
  930. line-height:20px;
  931. padding:6px 7px 4px;
  932. text-decoration:none;
  933. text-shadow:none;
  934. }
  935. .tp-caption.Furniture-Title,.Furniture-Title
  936. {
  937. background-color:transparent;
  938. border-color:transparent;
  939. border-radius:0 0 0 0;
  940. border-style:none;
  941. border-width:0;
  942. color:rgba(0,0,0,1.00);
  943. font-family:Raleway;
  944. font-size:20px;
  945. font-style:normal;
  946. font-weight:700;
  947. letter-spacing:3px;
  948. line-height:20px;
  949. padding:0;
  950. text-decoration:none;
  951. text-shadow:none;
  952. }
  953. .tp-caption.Furniture-Subtitle,.Furniture-Subtitle
  954. {
  955. background-color:transparent;
  956. border-color:transparent;
  957. border-radius:0 0 0 0;
  958. border-style:none;
  959. border-width:0;
  960. color:rgba(0,0,0,1.00);
  961. font-family:Raleway;
  962. font-size:17px;
  963. font-style:normal;
  964. font-weight:300;
  965. line-height:20px;
  966. padding:0;
  967. text-decoration:none;
  968. text-shadow:none;
  969. }
  970. .tp-caption.Gym-Display,.Gym-Display
  971. {
  972. background-color:transparent;
  973. border-color:transparent;
  974. border-radius:0 0 0 0;
  975. border-style:none;
  976. border-width:0;
  977. color:rgba(255,255,255,1.00);
  978. font-family:Raleway;
  979. font-size:80px;
  980. font-style:normal;
  981. font-weight:900;
  982. line-height:70px;
  983. padding:0;
  984. text-decoration:none;
  985. }
  986. .tp-caption.Gym-Subline,.Gym-Subline
  987. {
  988. background-color:transparent;
  989. border-color:transparent;
  990. border-radius:0 0 0 0;
  991. border-style:none;
  992. border-width:0;
  993. color:rgba(255,255,255,1.00);
  994. font-family:Raleway;
  995. font-size:30px;
  996. font-style:normal;
  997. font-weight:100;
  998. letter-spacing:5px;
  999. line-height:30px;
  1000. padding:0;
  1001. text-decoration:none;
  1002. }
  1003. .tp-caption.Gym-SmallText,.Gym-SmallText
  1004. {
  1005. background-color:transparent;
  1006. border-color:transparent;
  1007. border-radius:0 0 0 0;
  1008. border-style:none;
  1009. border-width:0;
  1010. color:rgba(255,255,255,1.00);
  1011. font-family:Raleway;
  1012. font-size:17px;
  1013. font-style:normal;
  1014. font-weight:300;
  1015. line-height:22;
  1016. padding:0;
  1017. text-decoration:none;
  1018. text-shadow:none;
  1019. }
  1020. .tp-caption.Fashion-SmallText,.Fashion-SmallText
  1021. {
  1022. background-color:transparent;
  1023. border-color:transparent;
  1024. border-radius:0 0 0 0;
  1025. border-style:none;
  1026. border-width:0;
  1027. color:rgba(255,255,255,1.00);
  1028. font-family:Raleway;
  1029. font-size:12px;
  1030. font-style:normal;
  1031. font-weight:600;
  1032. letter-spacing:2px;
  1033. line-height:20px;
  1034. padding:0;
  1035. text-decoration:none;
  1036. }
  1037. .tp-caption.Fashion-BigDisplay,.Fashion-BigDisplay
  1038. {
  1039. background-color:transparent;
  1040. border-color:transparent;
  1041. border-radius:0 0 0 0;
  1042. border-style:none;
  1043. border-width:0;
  1044. color:rgba(0,0,0,1.00);
  1045. font-family:Raleway;
  1046. font-size:60px;
  1047. font-style:normal;
  1048. font-weight:900;
  1049. letter-spacing:2px;
  1050. line-height:60px;
  1051. padding:0;
  1052. text-decoration:none;
  1053. }
  1054. .tp-caption.Fashion-TextBlock,.Fashion-TextBlock
  1055. {
  1056. background-color:transparent;
  1057. border-color:transparent;
  1058. border-radius:0 0 0 0;
  1059. border-style:none;
  1060. border-width:0;
  1061. color:rgba(0,0,0,1.00);
  1062. font-family:Raleway;
  1063. font-size:20px;
  1064. font-style:normal;
  1065. font-weight:400;
  1066. letter-spacing:2px;
  1067. line-height:40px;
  1068. padding:0;
  1069. text-decoration:none;
  1070. }
  1071. .tp-caption.Sports-Display,.Sports-Display
  1072. {
  1073. background-color:transparent;
  1074. border-color:transparent;
  1075. border-radius:0 0 0 0;
  1076. border-style:none;
  1077. border-width:0;
  1078. color:rgba(255,255,255,1.00);
  1079. font-family:Raleway;
  1080. font-size:130px;
  1081. font-style:normal;
  1082. font-weight:100;
  1083. letter-spacing:13px;
  1084. line-height:130px;
  1085. padding:0;
  1086. text-decoration:none;
  1087. }
  1088. .tp-caption.Sports-DisplayFat,.Sports-DisplayFat
  1089. {
  1090. background-color:transparent;
  1091. border-color:transparent;
  1092. border-radius:0 0 0 0;
  1093. border-style:none;
  1094. border-width:0;
  1095. color:rgba(255,255,255,1.00);
  1096. font-family:Raleway;
  1097. font-size:130px;
  1098. font-style:normal;
  1099. font-weight:900;
  1100. line-height:130px;
  1101. padding:0;
  1102. text-decoration:none;
  1103. }
  1104. .tp-caption.Sports-Subline,.Sports-Subline
  1105. {
  1106. background-color:transparent;
  1107. border-color:transparent;
  1108. border-radius:0 0 0 0;
  1109. border-style:none;
  1110. border-width:0;
  1111. color:rgba(0,0,0,1.00);
  1112. font-family:Raleway;
  1113. font-size:32px;
  1114. font-style:normal;
  1115. font-weight:400;
  1116. letter-spacing:4px;
  1117. line-height:32px;
  1118. padding:0;
  1119. text-decoration:none;
  1120. }
  1121. .tp-caption.Instagram-Caption,.Instagram-Caption
  1122. {
  1123. background-color:transparent;
  1124. border-color:transparent;
  1125. border-radius:0 0 0 0;
  1126. border-style:none;
  1127. border-width:0;
  1128. color:rgba(255,255,255,1.00);
  1129. font-family:Roboto;
  1130. font-size:20px;
  1131. font-style:normal;
  1132. font-weight:900;
  1133. line-height:20px;
  1134. padding:0;
  1135. text-decoration:none;
  1136. }
  1137. .tp-caption.News-Title,.News-Title
  1138. {
  1139. background-color:transparent;
  1140. border-color:transparent;
  1141. border-radius:0 0 0 0;
  1142. border-style:none;
  1143. border-width:0;
  1144. color:rgba(255,255,255,1.00);
  1145. font-family:"Roboto Slab";
  1146. font-size:70px;
  1147. font-style:normal;
  1148. font-weight:400;
  1149. line-height:60px;
  1150. padding:0;
  1151. text-decoration:none;
  1152. }
  1153. .tp-caption.News-Subtitle,.News-Subtitle
  1154. {
  1155. background-color:rgba(255,255,255,0);
  1156. border-color:transparent;
  1157. border-radius:0 0 0 0;
  1158. border-style:none;
  1159. border-width:0;
  1160. color:rgba(255,255,255,1.00);
  1161. font-family:"Roboto Slab";
  1162. font-size:15px;
  1163. font-style:normal;
  1164. font-weight:300;
  1165. line-height:24px;
  1166. padding:0;
  1167. text-decoration:none;
  1168. }
  1169. .tp-caption.News-Subtitle:hover,.News-Subtitle:hover
  1170. {
  1171. background-color:rgba(255,255,255,0);
  1172. border-color:transparent;
  1173. border-radius:0 0 0 0;
  1174. border-style:solid;
  1175. border-width:0;
  1176. color:rgba(255,255,255,0.65);
  1177. text-decoration:none;
  1178. }
  1179. .tp-caption.Photography-Display,.Photography-Display
  1180. {
  1181. background-color:transparent;
  1182. border-color:transparent;
  1183. border-radius:0 0 0 0;
  1184. border-style:none;
  1185. border-width:0;
  1186. color:rgba(255,255,255,1.00);
  1187. font-family:Raleway;
  1188. font-size:80px;
  1189. font-style:normal;
  1190. font-weight:100;
  1191. letter-spacing:5px;
  1192. line-height:70px;
  1193. padding:0;
  1194. text-decoration:none;
  1195. }
  1196. .tp-caption.Photography-Subline,.Photography-Subline
  1197. {
  1198. background-color:transparent;
  1199. border-color:transparent;
  1200. border-radius:0 0 0 0;
  1201. border-style:none;
  1202. border-width:0;
  1203. color:rgba(119,119,119,1.00);
  1204. font-family:Raleway;
  1205. font-size:20px;
  1206. font-style:normal;
  1207. font-weight:300;
  1208. letter-spacing:3px;
  1209. line-height:30px;
  1210. padding:0;
  1211. text-decoration:none;
  1212. }
  1213. .tp-caption.Photography-ImageHover,.Photography-ImageHover
  1214. {
  1215. background-color:transparent;
  1216. border-color:rgba(255,255,255,0);
  1217. border-radius:0 0 0 0;
  1218. border-style:none;
  1219. border-width:0;
  1220. color:rgba(255,255,255,1.00);
  1221. font-size:20px;
  1222. font-style:normal;
  1223. font-weight:400;
  1224. line-height:22;
  1225. padding:0;
  1226. text-decoration:none;
  1227. }
  1228. .tp-caption.Photography-ImageHover:hover,.Photography-ImageHover:hover
  1229. {
  1230. background-color:transparent;
  1231. border-color:transparent;
  1232. border-radius:0 0 0 0;
  1233. border-style:none;
  1234. border-width:0;
  1235. color:rgba(255,255,255,1.00);
  1236. text-decoration:none;
  1237. }
  1238. .tp-caption.Photography-Menuitem,.Photography-Menuitem
  1239. {
  1240. background-color:rgba(0,0,0,0.65);
  1241. border-color:transparent;
  1242. border-radius:0 0 0 0;
  1243. border-style:none;
  1244. border-width:0;
  1245. color:rgba(255,255,255,1.00);
  1246. font-family:Raleway;
  1247. font-size:20px;
  1248. font-style:normal;
  1249. font-weight:300;
  1250. letter-spacing:2px;
  1251. line-height:20px;
  1252. padding:3px 5px 3px 8px;
  1253. text-decoration:none;
  1254. }
  1255. .tp-caption.Photography-Menuitem:hover,.Photography-Menuitem:hover
  1256. {
  1257. background-color:rgba(0,255,222,0.65);
  1258. border-color:transparent;
  1259. border-radius:0 0 0 0;
  1260. border-style:none;
  1261. border-width:0;
  1262. color:rgba(255,255,255,1.00);
  1263. text-decoration:none;
  1264. }
  1265. .tp-caption.Photography-Textblock,.Photography-Textblock
  1266. {
  1267. background-color:transparent;
  1268. border-color:transparent;
  1269. border-radius:0 0 0 0;
  1270. border-style:none;
  1271. border-width:0;
  1272. color:rgba(255,255,255,1.00);
  1273. font-family:Raleway;
  1274. font-size:17px;
  1275. font-style:normal;
  1276. font-weight:300;
  1277. letter-spacing:2px;
  1278. line-height:30px;
  1279. padding:0;
  1280. text-decoration:none;
  1281. }
  1282. .tp-caption.Photography-Subline-2,.Photography-Subline-2
  1283. {
  1284. background-color:transparent;
  1285. border-color:transparent;
  1286. border-radius:0 0 0 0;
  1287. border-style:none;
  1288. border-width:0;
  1289. color:rgba(255,255,255,0.35);
  1290. font-family:Raleway;
  1291. font-size:20px;
  1292. font-style:normal;
  1293. font-weight:300;
  1294. letter-spacing:3px;
  1295. line-height:30px;
  1296. padding:0;
  1297. text-decoration:none;
  1298. }
  1299. .tp-caption.Photography-ImageHover2,.Photography-ImageHover2
  1300. {
  1301. background-color:transparent;
  1302. border-color:rgba(255,255,255,0);
  1303. border-radius:0 0 0 0;
  1304. border-style:none;
  1305. border-width:0;
  1306. color:rgba(255,255,255,1.00);
  1307. font-family:Arial;
  1308. font-size:20px;
  1309. font-style:normal;
  1310. font-weight:400;
  1311. line-height:22;
  1312. padding:0;
  1313. text-decoration:none;
  1314. }
  1315. .tp-caption.Photography-ImageHover2:hover,.Photography-ImageHover2:hover
  1316. {
  1317. background-color:transparent;
  1318. border-color:transparent;
  1319. border-radius:0 0 0 0;
  1320. border-style:none;
  1321. border-width:0;
  1322. color:rgba(255,255,255,1.00);
  1323. text-decoration:none;
  1324. }
  1325. .tp-caption.WebProduct-Title,.WebProduct-Title
  1326. {
  1327. background-color:transparent;
  1328. border-color:transparent;
  1329. border-radius:0 0 0 0;
  1330. border-style:none;
  1331. border-width:0;
  1332. color:rgba(51,51,51,1.00);
  1333. font-family:Raleway;
  1334. font-size:90px;
  1335. font-style:normal;
  1336. font-weight:100;
  1337. line-height:90px;
  1338. padding:0;
  1339. text-decoration:none;
  1340. }
  1341. .tp-caption.WebProduct-SubTitle,.WebProduct-SubTitle
  1342. {
  1343. background-color:transparent;
  1344. border-color:transparent;
  1345. border-radius:0 0 0 0;
  1346. border-style:none;
  1347. border-width:0;
  1348. color:rgba(153,153,153,1.00);
  1349. font-family:Raleway;
  1350. font-size:15px;
  1351. font-style:normal;
  1352. font-weight:400;
  1353. line-height:20px;
  1354. padding:0;
  1355. text-decoration:none;
  1356. }
  1357. .tp-caption.WebProduct-Content,.WebProduct-Content
  1358. {
  1359. background-color:transparent;
  1360. border-color:transparent;
  1361. border-radius:0 0 0 0;
  1362. border-style:none;
  1363. border-width:0;
  1364. color:rgba(153,153,153,1.00);
  1365. font-family:Raleway;
  1366. font-size:16px;
  1367. font-style:normal;
  1368. font-weight:600;
  1369. line-height:24px;
  1370. padding:0;
  1371. text-decoration:none;
  1372. }
  1373. .tp-caption.WebProduct-Menuitem,.WebProduct-Menuitem
  1374. {
  1375. background-color:rgba(51,51,51,1.00);
  1376. border-color:transparent;
  1377. border-radius:0 0 0 0;
  1378. border-style:none;
  1379. border-width:0;
  1380. color:rgba(255,255,255,1.00);
  1381. font-family:Raleway;
  1382. font-size:15px;
  1383. font-style:normal;
  1384. font-weight:500;
  1385. letter-spacing:2px;
  1386. line-height:20px;
  1387. padding:3px 5px 3px 8px;
  1388. text-align:left;
  1389. text-decoration:none;
  1390. }
  1391. .tp-caption.WebProduct-Menuitem:hover,.WebProduct-Menuitem:hover
  1392. {
  1393. background-color:rgba(255,255,255,1.00);
  1394. border-color:transparent;
  1395. border-radius:0 0 0 0;
  1396. border-style:none;
  1397. border-width:0;
  1398. color:rgba(153,153,153,1.00);
  1399. text-decoration:none;
  1400. }
  1401. .tp-caption.WebProduct-Title-Light,.WebProduct-Title-Light
  1402. {
  1403. background-color:transparent;
  1404. border-color:transparent;
  1405. border-radius:0 0 0 0;
  1406. border-style:none;
  1407. border-width:0;
  1408. color:rgba(255,255,255,1.00);
  1409. font-family:Raleway;
  1410. font-size:90px;
  1411. font-style:normal;
  1412. font-weight:100;
  1413. line-height:90px;
  1414. padding:0;
  1415. text-align:left;
  1416. text-decoration:none;
  1417. }
  1418. .tp-caption.WebProduct-SubTitle-Light,.WebProduct-SubTitle-Light
  1419. {
  1420. background-color:transparent;
  1421. border-color:transparent;
  1422. border-radius:0 0 0 0;
  1423. border-style:none;
  1424. border-width:0;
  1425. color:rgba(255,255,255,0.35);
  1426. font-family:Raleway;
  1427. font-size:15px;
  1428. font-style:normal;
  1429. font-weight:400;
  1430. line-height:20px;
  1431. padding:0;
  1432. text-align:left;
  1433. text-decoration:none;
  1434. }
  1435. .tp-caption.WebProduct-Content-Light,.WebProduct-Content-Light
  1436. {
  1437. background-color:transparent;
  1438. border-color:transparent;
  1439. border-radius:0 0 0 0;
  1440. border-style:none;
  1441. border-width:0;
  1442. color:rgba(255,255,255,0.65);
  1443. font-family:Raleway;
  1444. font-size:16px;
  1445. font-style:normal;
  1446. font-weight:600;
  1447. line-height:24px;
  1448. padding:0;
  1449. text-align:left;
  1450. text-decoration:none;
  1451. }
  1452. .tp-caption.FatRounded,.FatRounded
  1453. {
  1454. background-color:rgba(0,0,0,0.50);
  1455. border-color:rgba(211,211,211,1.00);
  1456. border-radius:50px 50px 50px 50px;
  1457. border-style:none;
  1458. border-width:0;
  1459. color:rgba(255,255,255,1.00);
  1460. font-family:Raleway;
  1461. font-size:30px;
  1462. font-style:normal;
  1463. font-weight:900;
  1464. line-height:30px;
  1465. padding:20px 22px 20px 25px;
  1466. text-align:left;
  1467. text-decoration:none;
  1468. text-shadow:none;
  1469. }
  1470. .tp-caption.FatRounded:hover,.FatRounded:hover
  1471. {
  1472. background-color:rgba(0,0,0,1.00);
  1473. border-color:rgba(211,211,211,1.00);
  1474. border-radius:50px 50px 50px 50px;
  1475. border-style:none;
  1476. border-width:0;
  1477. color:rgba(255,255,255,1.00);
  1478. text-decoration:none;
  1479. }
  1480. .tp-caption.NotGeneric-Title,.NotGeneric-Title
  1481. {
  1482. background-color:transparent;
  1483. border-color:transparent;
  1484. border-radius:0 0 0 0;
  1485. border-style:none;
  1486. border-width:0;
  1487. color:rgba(255,255,255,1.00);
  1488. font-family:Raleway;
  1489. font-size:70px;
  1490. font-style:normal;
  1491. font-weight:800;
  1492. line-height:70px;
  1493. padding:10px 0;
  1494. text-decoration:none;
  1495. }
  1496. .tp-caption.NotGeneric-SubTitle,.NotGeneric-SubTitle
  1497. {
  1498. background-color:transparent;
  1499. border-color:transparent;
  1500. border-radius:0 0 0 0;
  1501. border-style:none;
  1502. border-width:0;
  1503. color:rgba(255,255,255,1.00);
  1504. font-family:Raleway;
  1505. font-size:13px;
  1506. font-style:normal;
  1507. font-weight:500;
  1508. letter-spacing:4px;
  1509. line-height:20px;
  1510. padding:0;
  1511. text-align:left;
  1512. text-decoration:none;
  1513. }
  1514. .tp-caption.NotGeneric-CallToAction,.NotGeneric-CallToAction
  1515. {
  1516. background-color:rgba(0,0,0,0);
  1517. border-color:rgba(255,255,255,0.50);
  1518. border-radius:0 0 0 0;
  1519. border-style:solid;
  1520. border-width:1px;
  1521. color:rgba(255,255,255,1.00);
  1522. font-family:Raleway;
  1523. font-size:14px;
  1524. font-style:normal;
  1525. font-weight:500;
  1526. letter-spacing:3px;
  1527. line-height:14px;
  1528. padding:10px 30px;
  1529. text-align:left;
  1530. text-decoration:none;
  1531. }
  1532. .tp-caption.NotGeneric-CallToAction:hover,.NotGeneric-CallToAction:hover
  1533. {
  1534. background-color:transparent;
  1535. border-color:rgba(255,255,255,1.00);
  1536. border-radius:0 0 0 0;
  1537. border-style:solid;
  1538. border-width:1px;
  1539. color:rgba(255,255,255,1.00);
  1540. text-decoration:none;
  1541. }
  1542. .tp-caption.NotGeneric-Icon,.NotGeneric-Icon
  1543. {
  1544. background-color:rgba(0,0,0,0);
  1545. border-color:rgba(255,255,255,0);
  1546. border-radius:0 0 0 0;
  1547. border-style:solid;
  1548. border-width:0;
  1549. color:rgba(255,255,255,1.00);
  1550. font-family:Raleway;
  1551. font-size:30px;
  1552. font-style:normal;
  1553. font-weight:400;
  1554. letter-spacing:3px;
  1555. line-height:30px;
  1556. padding:0;
  1557. text-align:left;
  1558. text-decoration:none;
  1559. }
  1560. .tp-caption.NotGeneric-Menuitem,.NotGeneric-Menuitem
  1561. {
  1562. background-color:rgba(0,0,0,0);
  1563. border-color:rgba(255,255,255,0.15);
  1564. border-radius:0 0 0 0;
  1565. border-style:solid;
  1566. border-width:1px;
  1567. color:rgba(255,255,255,1.00);
  1568. font-family:Raleway;
  1569. font-size:14px;
  1570. font-style:normal;
  1571. font-weight:500;
  1572. letter-spacing:3px;
  1573. line-height:14px;
  1574. padding:27px 30px;
  1575. text-align:left;
  1576. text-decoration:none;
  1577. }
  1578. .tp-caption.NotGeneric-Menuitem:hover,.NotGeneric-Menuitem:hover
  1579. {
  1580. background-color:rgba(0,0,0,0);
  1581. border-color:rgba(255,255,255,1.00);
  1582. border-radius:0 0 0 0;
  1583. border-style:solid;
  1584. border-width:1px;
  1585. color:rgba(255,255,255,1.00);
  1586. text-decoration:none;
  1587. }
  1588. .tp-caption.MarkerStyle,.MarkerStyle
  1589. {
  1590. background-color:transparent;
  1591. border-color:transparent;
  1592. border-radius:0 0 0 0;
  1593. border-style:none;
  1594. border-width:0;
  1595. color:rgba(255,255,255,1.00);
  1596. font-family:"Permanent Marker";
  1597. font-size:17px;
  1598. font-style:normal;
  1599. font-weight:100;
  1600. line-height:30px;
  1601. padding:0;
  1602. text-align:left;
  1603. text-decoration:none;
  1604. }
  1605. .tp-caption.Gym-Menuitem,.Gym-Menuitem
  1606. {
  1607. background-color:rgba(0,0,0,1.00);
  1608. border-color:rgba(255,255,255,0);
  1609. border-radius:3px 3px 3px 3px;
  1610. border-style:solid;
  1611. border-width:2px;
  1612. color:rgba(255,255,255,1.00);
  1613. font-family:Raleway;
  1614. font-size:20px;
  1615. font-style:normal;
  1616. font-weight:300;
  1617. letter-spacing:2px;
  1618. line-height:20px;
  1619. padding:3px 5px 3px 8px;
  1620. text-align:left;
  1621. text-decoration:none;
  1622. }
  1623. .tp-caption.Gym-Menuitem:hover,.Gym-Menuitem:hover
  1624. {
  1625. background-color:rgba(0,0,0,1.00);
  1626. border-color:rgba(255,255,255,0.25);
  1627. border-radius:3px 3px 3px 3px;
  1628. border-style:solid;
  1629. border-width:2px;
  1630. color:rgba(255,255,255,1.00);
  1631. text-decoration:none;
  1632. }
  1633. .tp-caption.Newspaper-Button,.Newspaper-Button
  1634. {
  1635. background-color:rgba(255,255,255,0);
  1636. border-color:rgba(255,255,255,0.25);
  1637. border-radius:0 0 0 0;
  1638. border-style:solid;
  1639. border-width:1px;
  1640. color:rgba(255,255,255,1.00);
  1641. font-family:Roboto;
  1642. font-size:13px;
  1643. font-style:normal;
  1644. font-weight:700;
  1645. letter-spacing:2px;
  1646. line-height:17px;
  1647. padding:12px 35px;
  1648. text-align:left;
  1649. text-decoration:none;
  1650. }
  1651. .tp-caption.Newspaper-Button:hover,.Newspaper-Button:hover
  1652. {
  1653. background-color:rgba(255,255,255,1.00);
  1654. border-color:rgba(255,255,255,1.00);
  1655. border-radius:0 0 0 0;
  1656. border-style:solid;
  1657. border-width:1px;
  1658. color:rgba(0,0,0,1.00);
  1659. text-decoration:none;
  1660. }
  1661. .tp-caption.Newspaper-Subtitle,.Newspaper-Subtitle
  1662. {
  1663. background-color:transparent;
  1664. border-color:transparent;
  1665. border-radius:0 0 0 0;
  1666. border-style:none;
  1667. border-width:0;
  1668. color:rgba(168,216,238,1.00);
  1669. font-family:Roboto;
  1670. font-size:15px;
  1671. font-style:normal;
  1672. font-weight:900;
  1673. line-height:20px;
  1674. padding:0;
  1675. text-align:left;
  1676. text-decoration:none;
  1677. }
  1678. .tp-caption.Newspaper-Title,.Newspaper-Title
  1679. {
  1680. background-color:transparent;
  1681. border-color:transparent;
  1682. border-radius:0 0 0 0;
  1683. border-style:none;
  1684. border-width:0;
  1685. color:rgba(255,255,255,1.00);
  1686. font-family:"Roboto Slab";
  1687. font-size:50px;
  1688. font-style:normal;
  1689. font-weight:400;
  1690. line-height:55px;
  1691. padding:0 0 10px;
  1692. text-align:left;
  1693. text-decoration:none;
  1694. }
  1695. .tp-caption.Newspaper-Title-Centered,.Newspaper-Title-Centered
  1696. {
  1697. background-color:transparent;
  1698. border-color:transparent;
  1699. border-radius:0 0 0 0;
  1700. border-style:none;
  1701. border-width:0;
  1702. color:rgba(255,255,255,1.00);
  1703. font-family:"Roboto Slab";
  1704. font-size:50px;
  1705. font-style:normal;
  1706. font-weight:400;
  1707. line-height:55px;
  1708. padding:0 0 10px;
  1709. text-align:center;
  1710. text-decoration:none;
  1711. }
  1712. .tp-caption.Hero-Button,.Hero-Button
  1713. {
  1714. background-color:rgba(0,0,0,0);
  1715. border-color:rgba(255,255,255,0.50);
  1716. border-radius:0 0 0 0;
  1717. border-style:solid;
  1718. border-width:1px;
  1719. color:rgba(255,255,255,1.00);
  1720. font-family:Raleway;
  1721. font-size:14px;
  1722. font-style:normal;
  1723. font-weight:500;
  1724. letter-spacing:3px;
  1725. line-height:14px;
  1726. padding:10px 30px;
  1727. text-align:left;
  1728. text-decoration:none;
  1729. }
  1730. .tp-caption.Hero-Button:hover,.Hero-Button:hover
  1731. {
  1732. background-color:rgba(255,255,255,1.00);
  1733. border-color:rgba(255,255,255,1.00);
  1734. border-radius:0 0 0 0;
  1735. border-style:solid;
  1736. border-width:1px;
  1737. color:rgba(0,0,0,1.00);
  1738. text-decoration:none;
  1739. }
  1740. .tp-caption.Video-Title,.Video-Title
  1741. {
  1742. background-color:rgba(0,0,0,1.00);
  1743. border-color:transparent;
  1744. border-radius:0 0 0 0;
  1745. border-style:none;
  1746. border-width:0;
  1747. color:rgba(255,255,255,1.00);
  1748. font-family:Raleway;
  1749. font-size:30px;
  1750. font-style:normal;
  1751. font-weight:900;
  1752. line-height:30px;
  1753. padding:5px;
  1754. text-align:left;
  1755. text-decoration:none;
  1756. }
  1757. .tp-caption.Video-SubTitle,.Video-SubTitle
  1758. {
  1759. background-color:rgba(0,0,0,0.35);
  1760. border-color:transparent;
  1761. border-radius:0 0 0 0;
  1762. border-style:none;
  1763. border-width:0;
  1764. color:rgba(255,255,255,1.00);
  1765. font-family:Raleway;
  1766. font-size:12px;
  1767. font-style:normal;
  1768. font-weight:600;
  1769. letter-spacing:2px;
  1770. line-height:12px;
  1771. padding:5px;
  1772. text-align:left;
  1773. text-decoration:none;
  1774. }
  1775. .tp-caption.NotGeneric-Button,.NotGeneric-Button
  1776. {
  1777. background-color:rgba(0,0,0,0);
  1778. border-color:rgba(255,255,255,0.50);
  1779. border-radius:0 0 0 0;
  1780. border-style:solid;
  1781. border-width:1px;
  1782. color:rgba(255,255,255,1.00);
  1783. font-family:Raleway;
  1784. font-size:14px;
  1785. font-style:normal;
  1786. font-weight:500;
  1787. letter-spacing:3px;
  1788. line-height:14px;
  1789. padding:10px 30px;
  1790. text-align:left;
  1791. text-decoration:none;
  1792. }
  1793. .tp-caption.NotGeneric-Button:hover,.NotGeneric-Button:hover
  1794. {
  1795. background-color:transparent;
  1796. border-color:rgba(255,255,255,1.00);
  1797. border-radius:0 0 0 0;
  1798. border-style:solid;
  1799. border-width:1px;
  1800. color:rgba(255,255,255,1.00);
  1801. text-decoration:none;
  1802. }
  1803. .tp-caption.NotGeneric-BigButton,.NotGeneric-BigButton
  1804. {
  1805. background-color:rgba(0,0,0,0);
  1806. border-color:rgba(255,255,255,0.15);
  1807. border-radius:0 0 0 0;
  1808. border-style:solid;
  1809. border-width:1px;
  1810. color:rgba(255,255,255,1.00);
  1811. font-family:Raleway;
  1812. font-size:14px;
  1813. font-style:normal;
  1814. font-weight:500;
  1815. letter-spacing:3px;
  1816. line-height:14px;
  1817. padding:27px 30px;
  1818. text-align:left;
  1819. text-decoration:none;
  1820. }
  1821. .tp-caption.NotGeneric-BigButton:hover,.NotGeneric-BigButton:hover
  1822. {
  1823. background-color:rgba(0,0,0,0);
  1824. border-color:rgba(255,255,255,1.00);
  1825. border-radius:0 0 0 0;
  1826. border-style:solid;
  1827. border-width:1px;
  1828. color:rgba(255,255,255,1.00);
  1829. text-decoration:none;
  1830. }
  1831. .tp-caption.WebProduct-Button,.WebProduct-Button
  1832. {
  1833. background-color:rgba(51,51,51,1.00);
  1834. border-color:rgba(0,0,0,1.00);
  1835. border-radius:0 0 0 0;
  1836. border-style:none;
  1837. border-width:2px;
  1838. color:rgba(255,255,255,1.00);
  1839. font-family:Raleway;
  1840. font-size:16px;
  1841. font-style:normal;
  1842. font-weight:600;
  1843. letter-spacing:1px;
  1844. line-height:48px;
  1845. padding:0 40px;
  1846. text-align:left;
  1847. text-decoration:none;
  1848. }
  1849. .tp-caption.WebProduct-Button:hover,.WebProduct-Button:hover
  1850. {
  1851. background-color:rgba(255,255,255,1.00);
  1852. border-color:rgba(0,0,0,1.00);
  1853. border-radius:0 0 0 0;
  1854. border-style:none;
  1855. border-width:2px;
  1856. color:rgba(51,51,51,1.00);
  1857. text-decoration:none;
  1858. }
  1859. .tp-caption.Restaurant-Button,.Restaurant-Button
  1860. {
  1861. background-color:rgba(10,10,10,0);
  1862. border-color:rgba(255,255,255,0.50);
  1863. border-radius:0 0 0 0;
  1864. border-style:solid;
  1865. border-width:2px;
  1866. color:rgba(255,255,255,1.00);
  1867. font-family:Roboto;
  1868. font-size:17px;
  1869. font-style:normal;
  1870. font-weight:500;
  1871. letter-spacing:3px;
  1872. line-height:17px;
  1873. padding:12px 35px;
  1874. text-align:left;
  1875. text-decoration:none;
  1876. }
  1877. .tp-caption.Restaurant-Button:hover,.Restaurant-Button:hover
  1878. {
  1879. background-color:rgba(0,0,0,0);
  1880. border-color:rgba(255,224,129,1.00);
  1881. border-radius:0 0 0 0;
  1882. border-style:solid;
  1883. border-width:2px;
  1884. color:rgba(255,255,255,1.00);
  1885. text-decoration:none;
  1886. }
  1887. .tp-caption.Gym-Button,.Gym-Button
  1888. {
  1889. background-color:rgba(139,192,39,1.00);
  1890. border-color:rgba(0,0,0,0);
  1891. border-radius:30px 30px 30px 30px;
  1892. border-style:solid;
  1893. border-width:0;
  1894. color:rgba(255,255,255,1.00);
  1895. font-family:Raleway;
  1896. font-size:15px;
  1897. font-style:normal;
  1898. font-weight:600;
  1899. letter-spacing:1px;
  1900. line-height:15px;
  1901. padding:13px 35px;
  1902. text-align:left;
  1903. text-decoration:none;
  1904. }
  1905. .tp-caption.Gym-Button:hover,.Gym-Button:hover
  1906. {
  1907. background-color:rgba(114,168,0,1.00);
  1908. border-color:rgba(0,0,0,0);
  1909. border-radius:30px 30px 30px 30px;
  1910. border-style:solid;
  1911. border-width:0;
  1912. color:rgba(255,255,255,1.00);
  1913. text-decoration:none;
  1914. }
  1915. .tp-caption.Gym-Button-Light,.Gym-Button-Light
  1916. {
  1917. background-color:transparent;
  1918. border-color:rgba(255,255,255,0.25);
  1919. border-radius:30px 30px 30px 30px;
  1920. border-style:solid;
  1921. border-width:2px;
  1922. color:rgba(255,255,255,1.00);
  1923. font-family:Raleway;
  1924. font-size:15px;
  1925. font-style:normal;
  1926. font-weight:600;
  1927. line-height:15px;
  1928. padding:12px 35px;
  1929. text-align:left;
  1930. text-decoration:none;
  1931. }
  1932. .tp-caption.Gym-Button-Light:hover,.Gym-Button-Light:hover
  1933. {
  1934. background-color:rgba(114,168,0,0);
  1935. border-color:rgba(139,192,39,1.00);
  1936. border-radius:30px 30px 30px 30px;
  1937. border-style:solid;
  1938. border-width:2px;
  1939. color:rgba(255,255,255,1.00);
  1940. text-decoration:none;
  1941. }
  1942. .tp-caption.Sports-Button-Light,.Sports-Button-Light
  1943. {
  1944. background-color:rgba(0,0,0,0);
  1945. border-color:rgba(255,255,255,0.50);
  1946. border-radius:0 0 0 0;
  1947. border-style:solid;
  1948. border-width:2px;
  1949. color:rgba(255,255,255,1.00);
  1950. font-family:Raleway;
  1951. font-size:17px;
  1952. font-style:normal;
  1953. font-weight:600;
  1954. letter-spacing:2px;
  1955. line-height:17px;
  1956. padding:12px 35px;
  1957. text-align:left;
  1958. text-decoration:none;
  1959. }
  1960. .tp-caption.Sports-Button-Light:hover,.Sports-Button-Light:hover
  1961. {
  1962. background-color:rgba(0,0,0,0);
  1963. border-color:rgba(255,255,255,1.00);
  1964. border-radius:0 0 0 0;
  1965. border-style:solid;
  1966. border-width:2px;
  1967. color:rgba(255,255,255,1.00);
  1968. text-decoration:none;
  1969. }
  1970. .tp-caption.Sports-Button-Red,.Sports-Button-Red
  1971. {
  1972. background-color:rgba(219,28,34,1.00);
  1973. border-color:rgba(219,28,34,0);
  1974. border-radius:0 0 0 0;
  1975. border-style:solid;
  1976. border-width:2px;
  1977. color:rgba(255,255,255,1.00);
  1978. font-family:Raleway;
  1979. font-size:17px;
  1980. font-style:normal;
  1981. font-weight:600;
  1982. letter-spacing:2px;
  1983. line-height:17px;
  1984. padding:12px 35px;
  1985. text-align:left;
  1986. text-decoration:none;
  1987. }
  1988. .tp-caption.Sports-Button-Red:hover,.Sports-Button-Red:hover
  1989. {
  1990. background-color:rgba(0,0,0,1.00);
  1991. border-color:rgba(0,0,0,1.00);
  1992. border-radius:0 0 0 0;
  1993. border-style:solid;
  1994. border-width:2px;
  1995. color:rgba(255,255,255,1.00);
  1996. text-decoration:none;
  1997. }
  1998. .tp-caption.Photography-Button,.Photography-Button
  1999. {
  2000. background-color:rgba(0,0,0,0);
  2001. border-color:rgba(255,255,255,0.25);
  2002. border-radius:30px 30px 30px 30px;
  2003. border-style:solid;
  2004. border-width:1px;
  2005. color:rgba(255,255,255,1.00);
  2006. font-family:Raleway;
  2007. font-size:15px;
  2008. font-style:normal;
  2009. font-weight:600;
  2010. letter-spacing:1px;
  2011. line-height:15px;
  2012. padding:13px 35px;
  2013. text-align:left;
  2014. text-decoration:none;
  2015. }
  2016. .tp-caption.Photography-Button:hover,.Photography-Button:hover
  2017. {
  2018. background-color:rgba(0,0,0,0);
  2019. border-color:rgba(255,255,255,1.00);
  2020. border-radius:30px 30px 30px 30px;
  2021. border-style:solid;
  2022. border-width:1px;
  2023. color:rgba(255,255,255,1.00);
  2024. text-decoration:none;
  2025. }
  2026. .tp-caption.Newspaper-Button-2,.Newspaper-Button-2
  2027. {
  2028. background-color:rgba(0,0,0,0);
  2029. border-color:rgba(255,255,255,0.50);
  2030. border-radius:3px 3px 3px 3px;
  2031. border-style:solid;
  2032. border-width:2px;
  2033. color:rgba(255,255,255,1.00);
  2034. font-family:Roboto;
  2035. font-size:15px;
  2036. font-style:normal;
  2037. font-weight:900;
  2038. line-height:15px;
  2039. padding:10px 30px;
  2040. text-align:left;
  2041. text-decoration:none;
  2042. }
  2043. .tp-caption.Newspaper-Button-2:hover,.Newspaper-Button-2:hover
  2044. {
  2045. background-color:rgba(0,0,0,0);
  2046. border-color:rgba(255,255,255,1.00);
  2047. border-radius:3px 3px 3px 3px;
  2048. border-style:solid;
  2049. border-width:2px;
  2050. color:rgba(255,255,255,1.00);
  2051. text-decoration:none;
  2052. }
  2053. .tp-caption.Feature-Tour,.Feature-Tour
  2054. {
  2055. background-color:rgba(139,192,39,1.00);
  2056. border-color:rgba(0,0,0,0);
  2057. border-radius:30px 30px 30px 30px;
  2058. border-style:solid;
  2059. border-width:0;
  2060. color:rgba(255,255,255,1.00);
  2061. font-family:Roboto;
  2062. font-size:17px;
  2063. font-style:normal;
  2064. font-weight:700;
  2065. line-height:17px;
  2066. padding:17px 35px;
  2067. text-align:left;
  2068. text-decoration:none;
  2069. }
  2070. .tp-caption.Feature-Tour:hover,.Feature-Tour:hover
  2071. {
  2072. background-color:rgba(114,168,0,1.00);
  2073. border-color:rgba(0,0,0,0);
  2074. border-radius:30px 30px 30px 30px;
  2075. border-style:solid;
  2076. border-width:0;
  2077. color:rgba(255,255,255,1.00);
  2078. text-decoration:none;
  2079. }
  2080. .tp-caption.Feature-Examples,.Feature-Examples
  2081. {
  2082. background-color:transparent;
  2083. border-color:rgba(33,42,64,0.15);
  2084. border-radius:30px 30px 30px 30px;
  2085. border-style:solid;
  2086. border-width:2px;
  2087. color:rgba(33,42,64,0.50);
  2088. font-family:Roboto;
  2089. font-size:17px;
  2090. font-style:normal;
  2091. font-weight:700;
  2092. line-height:17px;
  2093. padding:15px 35px;
  2094. text-align:left;
  2095. text-decoration:none;
  2096. }
  2097. .tp-caption.Feature-Examples:hover,.Feature-Examples:hover
  2098. {
  2099. background-color:transparent;
  2100. border-color:rgba(139,192,39,1.00);
  2101. border-radius:30px 30px 30px 30px;
  2102. border-style:solid;
  2103. border-width:2px;
  2104. color:rgba(139,192,39,1.00);
  2105. text-decoration:none;
  2106. }
  2107. .tp-caption.subcaption,.subcaption
  2108. {
  2109. background-color:transparent;
  2110. border-color:rgba(0,0,0,1.00);
  2111. border-radius:0 0 0 0;
  2112. border-style:none;
  2113. border-width:0;
  2114. color:rgba(111,124,130,1.00);
  2115. font-family:roboto;
  2116. font-size:19px;
  2117. font-style:normal;
  2118. font-weight:400;
  2119. line-height:24px;
  2120. padding:0;
  2121. text-align:left;
  2122. text-decoration:none;
  2123. text-shadow:none;
  2124. }
  2125. .tp-caption.menutab,.menutab
  2126. {
  2127. background-color:transparent;
  2128. border-color:rgba(0,0,0,1.00);
  2129. border-radius:0 0 0 0;
  2130. border-style:none;
  2131. border-width:0;
  2132. color:rgba(41,46,49,1.00);
  2133. font-family:roboto;
  2134. font-size:25px;
  2135. font-style:normal;
  2136. font-weight:300;
  2137. line-height:30px;
  2138. padding:0;
  2139. text-align:left;
  2140. text-decoration:none;
  2141. text-shadow:none;
  2142. }
  2143. .tp-caption.menutab:hover,.menutab:hover
  2144. {
  2145. background-color:transparent;
  2146. border-color:transparent;
  2147. border-radius:0 0 0 0;
  2148. border-style:none;
  2149. border-width:0;
  2150. color:rgba(213,0,0,1.00);
  2151. text-decoration:none;
  2152. }
  2153. .tp-caption.maincontent,.maincontent
  2154. {
  2155. background-color:transparent;
  2156. border-color:rgba(0,0,0,1.00);
  2157. border-radius:0 0 0 0;
  2158. border-style:none;
  2159. border-width:0;
  2160. color:rgba(41,46,49,1.00);
  2161. font-family:roboto;
  2162. font-size:21px;
  2163. font-style:normal;
  2164. font-weight:300;
  2165. line-height:26px;
  2166. padding:0;
  2167. text-align:left;
  2168. text-decoration:none;
  2169. text-shadow:none;
  2170. }
  2171. .tp-caption.minitext,.minitext
  2172. {
  2173. background-color:transparent;
  2174. border-color:rgba(0,0,0,1.00);
  2175. border-radius:0 0 0 0;
  2176. border-style:none;
  2177. border-width:0;
  2178. color:rgba(185,186,187,1.00);
  2179. font-family:roboto;
  2180. font-size:15px;
  2181. font-style:normal;
  2182. font-weight:400;
  2183. line-height:20px;
  2184. padding:0;
  2185. text-align:left;
  2186. text-decoration:none;
  2187. text-shadow:none;
  2188. }
  2189. .tp-caption.Feature-Buy,.Feature-Buy
  2190. {
  2191. background-color:rgba(0,154,238,1.00);
  2192. border-color:rgba(0,0,0,0);
  2193. border-radius:30px 30px 30px 30px;
  2194. border-style:solid;
  2195. border-width:0;
  2196. color:rgba(255,255,255,1.00);
  2197. font-family:Roboto;
  2198. font-size:17px;
  2199. font-style:normal;
  2200. font-weight:700;
  2201. line-height:17px;
  2202. padding:17px 35px;
  2203. text-align:left;
  2204. text-decoration:none;
  2205. }
  2206. .tp-caption.Feature-Buy:hover,.Feature-Buy:hover
  2207. {
  2208. background-color:rgba(0,133,214,1.00);
  2209. border-color:rgba(0,0,0,0);
  2210. border-radius:30px 30px 30px 30px;
  2211. border-style:solid;
  2212. border-width:0;
  2213. color:rgba(255,255,255,1.00);
  2214. text-decoration:none;
  2215. }
  2216. .tp-caption.Feature-Examples-Light,.Feature-Examples-Light
  2217. {
  2218. background-color:transparent;
  2219. border-color:rgba(255,255,255,0.15);
  2220. border-radius:30px 30px 30px 30px;
  2221. border-style:solid;
  2222. border-width:2px;
  2223. color:rgba(255,255,255,1.00);
  2224. font-family:Roboto;
  2225. font-size:17px;
  2226. font-style:normal;
  2227. font-weight:700;
  2228. line-height:17px;
  2229. padding:15px 35px;
  2230. text-align:left;
  2231. text-decoration:none;
  2232. }
  2233. .tp-caption.Feature-Examples-Light:hover,.Feature-Examples-Light:hover
  2234. {
  2235. background-color:transparent;
  2236. border-color:rgba(255,255,255,1.00);
  2237. border-radius:30px 30px 30px 30px;
  2238. border-style:solid;
  2239. border-width:2px;
  2240. color:rgba(255,255,255,1.00);
  2241. text-decoration:none;
  2242. }
  2243. .tp-caption.Facebook-Likes,.Facebook-Likes
  2244. {
  2245. background-color:rgba(59,89,153,1.00);
  2246. border-color:transparent;
  2247. border-radius:0 0 0 0;
  2248. border-style:none;
  2249. border-width:0;
  2250. color:rgba(255,255,255,1.00);
  2251. font-family:Roboto;
  2252. font-size:15px;
  2253. font-style:normal;
  2254. font-weight:500;
  2255. line-height:22px;
  2256. padding:5px 15px;
  2257. text-align:left;
  2258. text-decoration:none;
  2259. }
  2260. .tp-caption.Twitter-Favorites,.Twitter-Favorites
  2261. {
  2262. background-color:rgba(255,255,255,0);
  2263. border-color:transparent;
  2264. border-radius:0 0 0 0;
  2265. border-style:none;
  2266. border-width:0;
  2267. color:rgba(136,153,166,1.00);
  2268. font-family:Roboto;
  2269. font-size:15px;
  2270. font-style:normal;
  2271. font-weight:500;
  2272. line-height:22px;
  2273. padding:0;
  2274. text-align:left;
  2275. text-decoration:none;
  2276. }
  2277. .tp-caption.Twitter-Link,.Twitter-Link
  2278. {
  2279. background-color:rgba(255,255,255,1.00);
  2280. border-color:transparent;
  2281. border-radius:30px 30px 30px 30px;
  2282. border-style:none;
  2283. border-width:0;
  2284. color:rgba(135,153,165,1.00);
  2285. font-family:Roboto;
  2286. font-size:15px;
  2287. font-style:normal;
  2288. font-weight:500;
  2289. line-height:15px;
  2290. padding:11px 11px 9px;
  2291. text-align:left;
  2292. text-decoration:none;
  2293. }
  2294. .tp-caption.Twitter-Link:hover,.Twitter-Link:hover
  2295. {
  2296. background-color:rgba(0,132,180,1.00);
  2297. border-color:transparent;
  2298. border-radius:30px 30px 30px 30px;
  2299. border-style:none;
  2300. border-width:0;
  2301. color:rgba(255,255,255,1.00);
  2302. text-decoration:none;
  2303. }
  2304. .tp-caption.Twitter-Retweet,.Twitter-Retweet
  2305. {
  2306. background-color:rgba(255,255,255,0);
  2307. border-color:transparent;
  2308. border-radius:0 0 0 0;
  2309. border-style:none;
  2310. border-width:0;
  2311. color:rgba(136,153,166,1.00);
  2312. font-family:Roboto;
  2313. font-size:15px;
  2314. font-style:normal;
  2315. font-weight:500;
  2316. line-height:22px;
  2317. padding:0;
  2318. text-align:left;
  2319. text-decoration:none;
  2320. }
  2321. .tp-caption.Twitter-Content,.Twitter-Content
  2322. {
  2323. background-color:rgba(255,255,255,1.00);
  2324. border-color:transparent;
  2325. border-radius:0 0 0 0;
  2326. border-style:none;
  2327. border-width:0;
  2328. color:rgba(41,47,51,1.00);
  2329. font-family:Roboto;
  2330. font-size:20px;
  2331. font-style:normal;
  2332. font-weight:500;
  2333. line-height:28px;
  2334. padding:30px 30px 70px;
  2335. text-align:left;
  2336. text-decoration:none;
  2337. }
  2338. .revtp-searchform input[type="text"],
  2339. .revtp-searchform input[type="email"],
  2340. .revtp-form input[type="text"],
  2341. .revtp-form input[type="email"]{
  2342. font-family: "Arial", sans-serif;
  2343. font-size: 15px;
  2344. color: #000;
  2345. background-color: #fff;
  2346. line-height: 46px;
  2347. padding: 0 20px;
  2348. cursor: text;
  2349. border: 0;
  2350. width: 400px;
  2351. margin-bottom: 0px;
  2352. -webkit-transition: background-color 0.5s;
  2353. -moz-transition: background-color 0.5s;
  2354. -o-transition: background-color 0.5s;
  2355. -ms-transition: background-color 0.5s;
  2356. transition: background-color 0.5s;
  2357. border-radius: 0px;
  2358. }
  2359. .tp-caption.BigBold-Title,
  2360. .BigBold-Title {
  2361. color: rgba(255, 255, 255, 1.00);
  2362. font-size: 110px;
  2363. line-height: 100px;
  2364. font-weight: 800;
  2365. font-style: normal;
  2366. font-family: Raleway;
  2367. padding: 10px 0px 10px 0;
  2368. text-decoration: none;
  2369. background-color: transparent;
  2370. border-color: transparent;
  2371. border-style: none;
  2372. border-width: 0px;
  2373. border-radius: 0 0 0 0px;
  2374. text-align: left
  2375. }
  2376. .tp-caption.BigBold-SubTitle,
  2377. .BigBold-SubTitle {
  2378. color: rgba(255, 255, 255, 0.50);
  2379. font-size: 15px;
  2380. line-height: 24px;
  2381. font-weight: 500;
  2382. font-style: normal;
  2383. font-family: Raleway;
  2384. padding: 0 0 0 0px;
  2385. text-decoration: none;
  2386. background-color: transparent;
  2387. border-color: transparent;
  2388. border-style: none;
  2389. border-width: 0px;
  2390. border-radius: 0 0 0 0px;
  2391. text-align: left;
  2392. letter-spacing: 1px
  2393. }
  2394. .tp-caption.BigBold-Button,
  2395. .BigBold-Button {
  2396. color: rgba(255, 255, 255, 1.00);
  2397. font-size: 13px;
  2398. line-height: 13px;
  2399. font-weight: 500;
  2400. font-style: normal;
  2401. font-family: Raleway;
  2402. padding: 15px 50px 15px 50px;
  2403. text-decoration: none;
  2404. background-color: rgba(0, 0, 0, 0);
  2405. border-color: rgba(255, 255, 255, 0.50);
  2406. border-style: solid;
  2407. border-width: 1px;
  2408. border-radius: 0px 0px 0px 0px;
  2409. text-align: left;
  2410. letter-spacing: 1px
  2411. }
  2412. .tp-caption.BigBold-Button:hover,
  2413. .BigBold-Button:hover {
  2414. color: rgba(255, 255, 255, 1.00);
  2415. text-decoration: none;
  2416. background-color: transparent;
  2417. border-color: rgba(255, 255, 255, 1.00);
  2418. border-style: solid;
  2419. border-width: 1px;
  2420. border-radius: 0px 0px 0px 0px
  2421. }
  2422. .tp-caption.FoodCarousel-Content,
  2423. .FoodCarousel-Content {
  2424. color: rgba(41, 46, 49, 1.00);
  2425. font-size: 17px;
  2426. line-height: 28px;
  2427. font-weight: 500;
  2428. font-style: normal;
  2429. font-family: Raleway;
  2430. padding: 30px 30px 30px 30px;
  2431. text-decoration: none;
  2432. background-color: rgba(255, 255, 255, 1.00);
  2433. border-color: rgba(41, 46, 49, 1.00);
  2434. border-style: solid;
  2435. border-width: 1px;
  2436. border-radius: 0 0 0 0px;
  2437. text-align: left
  2438. }
  2439. .tp-caption.FoodCarousel-Button,
  2440. .FoodCarousel-Button {
  2441. color: rgba(41, 46, 49, 1.00);
  2442. font-size: 13px;
  2443. line-height: 13px;
  2444. font-weight: 700;
  2445. font-style: normal;
  2446. font-family: Raleway;
  2447. padding: 15px 70px 15px 50px;
  2448. text-decoration: none;
  2449. background-color: rgba(255, 255, 255, 1.00);
  2450. border-color: rgba(41, 46, 49, 1.00);
  2451. border-style: solid;
  2452. border-width: 1px;
  2453. border-radius: 0px 0px 0px 0px;
  2454. text-align: left;
  2455. letter-spacing: 1px
  2456. }
  2457. .tp-caption.FoodCarousel-Button:hover,
  2458. .FoodCarousel-Button:hover {
  2459. color: rgba(255, 255, 255, 1.00);
  2460. text-decoration: none;
  2461. background-color: rgba(41, 46, 49, 1.00);
  2462. border-color: rgba(41, 46, 49, 1.00);
  2463. border-style: solid;
  2464. border-width: 1px;
  2465. border-radius: 0px 0px 0px 0px
  2466. }
  2467. .tp-caption.FoodCarousel-CloseButton,
  2468. .FoodCarousel-CloseButton {
  2469. color: rgba(41, 46, 49, 1.00);
  2470. font-size: 20px;
  2471. line-height: 20px;
  2472. font-weight: 700;
  2473. font-style: normal;
  2474. font-family: Raleway;
  2475. padding: 14px 14px 14px 16px;
  2476. text-decoration: none;
  2477. background-color: rgba(0, 0, 0, 0);
  2478. border-color: rgba(41, 46, 49, 0);
  2479. border-style: solid;
  2480. border-width: 1px;
  2481. border-radius: 30px 30px 30px 30px;
  2482. text-align: left;
  2483. letter-spacing: 1px
  2484. }
  2485. .tp-caption.FoodCarousel-CloseButton:hover,
  2486. .FoodCarousel-CloseButton:hover {
  2487. color: rgba(255, 255, 255, 1.00);
  2488. text-decoration: none;
  2489. background-color: rgba(41, 46, 49, 1.00);
  2490. border-color: rgba(41, 46, 49, 0);
  2491. border-style: solid;
  2492. border-width: 1px;
  2493. border-radius: 30px 30px 30px 30px
  2494. }
  2495. .tp-caption.Video-SubTitle,
  2496. .Video-SubTitle {
  2497. color: rgba(255, 255, 255, 1.00);
  2498. font-size: 12px;
  2499. line-height: 12px;
  2500. font-weight: 600;
  2501. font-style: normal;
  2502. font-family: Raleway;
  2503. padding: 5px 5px 5px 5px;
  2504. text-decoration: none;
  2505. background-color: rgba(0, 0, 0, 0.35);
  2506. border-color: transparent;
  2507. border-style: none;
  2508. border-width: 0px;
  2509. border-radius: 0 0 0 0px;
  2510. letter-spacing: 2px;
  2511. text-align: left
  2512. }
  2513. .tp-caption.Video-Title,
  2514. .Video-Title {
  2515. color: rgba(255, 255, 255, 1.00);
  2516. font-size: 30px;
  2517. line-height: 30px;
  2518. font-weight: 900;
  2519. font-style: normal;
  2520. font-family: Raleway;
  2521. padding: 5px 5px 5px 5px;
  2522. text-decoration: none;
  2523. background-color: rgba(0, 0, 0, 1.00);
  2524. border-color: transparent;
  2525. border-style: none;
  2526. border-width: 0px;
  2527. border-radius: 0 0 0 0px;
  2528. text-align: left
  2529. }
  2530. .tp-caption.Travel-BigCaption,
  2531. .Travel-BigCaption {
  2532. color: rgba(255, 255, 255, 1.00);
  2533. font-size: 50px;
  2534. line-height: 50px;
  2535. font-weight: 400;
  2536. font-style: normal;
  2537. font-family: Roboto;
  2538. padding: 0 0 0 0px;
  2539. text-decoration: none;
  2540. background-color: transparent;
  2541. border-color: transparent;
  2542. border-style: none;
  2543. border-width: 0px;
  2544. border-radius: 0 0 0 0px;
  2545. text-align: left
  2546. }
  2547. .tp-caption.Travel-SmallCaption,
  2548. .Travel-SmallCaption {
  2549. color: rgba(255, 255, 255, 1.00);
  2550. font-size: 25px;
  2551. line-height: 30px;
  2552. font-weight: 300;
  2553. font-style: normal;
  2554. font-family: Roboto;
  2555. padding: 0 0 0 0px;
  2556. text-decoration: none;
  2557. background-color: transparent;
  2558. border-color: transparent;
  2559. border-style: none;
  2560. border-width: 0px;
  2561. border-radius: 0 0 0 0px;
  2562. text-align: left
  2563. }
  2564. .tp-caption.Travel-CallToAction,
  2565. .Travel-CallToAction {
  2566. color: rgba(255, 255, 255, 1.00);
  2567. font-size: 25px;
  2568. line-height: 25px;
  2569. font-weight: 500;
  2570. font-style: normal;
  2571. font-family: Roboto;
  2572. padding: 12px 20px 12px 20px;
  2573. text-decoration: none;
  2574. background-color: rgba(255, 255, 255, 0.05);
  2575. border-color: rgba(255, 255, 255, 1.00);
  2576. border-style: solid;
  2577. border-width: 2px;
  2578. border-radius: 5px 5px 5px 5px;
  2579. text-align: left;
  2580. letter-spacing: 1px
  2581. }
  2582. .tp-caption.Travel-CallToAction:hover,
  2583. .Travel-CallToAction:hover {
  2584. color: rgba(255, 255, 255, 1.00);
  2585. text-decoration: none;
  2586. background-color: rgba(255, 255, 255, 0.15);
  2587. border-color: rgba(255, 255, 255, 1.00);
  2588. border-style: solid;
  2589. border-width: 2px;
  2590. border-radius: 5px 5px 5px 5px
  2591. }
  2592. .tp-caption.RotatingWords-TitleWhite,
  2593. .RotatingWords-TitleWhite {
  2594. color: rgba(255, 255, 255, 1.00);
  2595. font-size: 70px;
  2596. line-height: 70px;
  2597. font-weight: 800;
  2598. font-style: normal;
  2599. font-family: Raleway;
  2600. padding: 0px 0px 0px 0;
  2601. text-decoration: none;
  2602. background-color: transparent;
  2603. border-color: transparent;
  2604. border-style: none;
  2605. border-width: 0px;
  2606. border-radius: 0 0 0 0px;
  2607. text-align: left
  2608. }
  2609. .tp-caption.RotatingWords-Button,
  2610. .RotatingWords-Button {
  2611. color: rgba(255, 255, 255, 1.00);
  2612. font-size: 20px;
  2613. line-height: 20px;
  2614. font-weight: 700;
  2615. font-style: normal;
  2616. font-family: Raleway;
  2617. padding: 20px 50px 20px 50px;
  2618. text-decoration: none;
  2619. background-color: rgba(0, 0, 0, 0);
  2620. border-color: rgba(255, 255, 255, 0.15);
  2621. border-style: solid;
  2622. border-width: 2px;
  2623. border-radius: 0px 0px 0px 0px;
  2624. text-align: left;
  2625. letter-spacing: 3px
  2626. }
  2627. .tp-caption.RotatingWords-Button:hover,
  2628. .RotatingWords-Button:hover {
  2629. color: rgba(255, 255, 255, 1.00);
  2630. text-decoration: none;
  2631. background-color: transparent;
  2632. border-color: rgba(255, 255, 255, 1.00);
  2633. border-style: solid;
  2634. border-width: 2px;
  2635. border-radius: 0px 0px 0px 0px
  2636. }
  2637. .tp-caption.RotatingWords-SmallText,
  2638. .RotatingWords-SmallText {
  2639. color: rgba(255, 255, 255, 1.00);
  2640. font-size: 14px;
  2641. line-height: 20px;
  2642. font-weight: 400;
  2643. font-style: normal;
  2644. font-family: Raleway;
  2645. padding: 0 0 0 0px;
  2646. text-decoration: none;
  2647. background-color: transparent;
  2648. border-color: transparent;
  2649. border-style: none;
  2650. border-width: 0px;
  2651. border-radius: 0 0 0 0px;
  2652. text-align: left;
  2653. text-shadow: none
  2654. }
  2655. .tp-caption.ContentZoom-SmallTitle,
  2656. .ContentZoom-SmallTitle {
  2657. color: rgba(41, 46, 49, 1.00);
  2658. font-size: 33px;
  2659. line-height: 45px;
  2660. font-weight: 600;
  2661. font-style: normal;
  2662. font-family: Raleway;
  2663. padding: 0 0 0 0px;
  2664. text-decoration: none;
  2665. background-color: transparent;
  2666. border-color: transparent;
  2667. border-style: none;
  2668. border-width: 0px;
  2669. border-radius: 0 0 0 0px;
  2670. text-align: left
  2671. }
  2672. .tp-caption.ContentZoom-SmallSubtitle,
  2673. .ContentZoom-SmallSubtitle {
  2674. color: rgba(111, 124, 130, 1.00);
  2675. font-size: 16px;
  2676. line-height: 24px;
  2677. font-weight: 600;
  2678. font-style: normal;
  2679. font-family: Raleway;
  2680. padding: 0 0 0 0px;
  2681. text-decoration: none;
  2682. background-color: transparent;
  2683. border-color: transparent;
  2684. border-style: none;
  2685. border-width: 0px;
  2686. border-radius: 0 0 0 0px;
  2687. text-align: left
  2688. }
  2689. .tp-caption.ContentZoom-SmallIcon,
  2690. .ContentZoom-SmallIcon {
  2691. color: rgba(41, 46, 49, 1.00);
  2692. font-size: 20px;
  2693. line-height: 20px;
  2694. font-weight: 400;
  2695. font-style: normal;
  2696. font-family: Raleway;
  2697. padding: 10px 10px 10px 10px;
  2698. text-decoration: none;
  2699. background-color: transparent;
  2700. border-color: transparent;
  2701. border-style: none;
  2702. border-width: 0px;
  2703. border-radius: 0 0 0 0px;
  2704. text-align: left
  2705. }
  2706. .tp-caption.ContentZoom-SmallIcon:hover,
  2707. .ContentZoom-SmallIcon:hover {
  2708. color: rgba(111, 124, 130, 1.00);
  2709. text-decoration: none;
  2710. background-color: transparent;
  2711. border-color: transparent;
  2712. border-style: none;
  2713. border-width: 0px;
  2714. border-radius: 0 0 0 0px
  2715. }
  2716. .tp-caption.ContentZoom-DetailTitle,
  2717. .ContentZoom-DetailTitle {
  2718. color: rgba(41, 46, 49, 1.00);
  2719. font-size: 70px;
  2720. line-height: 70px;
  2721. font-weight: 500;
  2722. font-style: normal;
  2723. font-family: Raleway;
  2724. padding: 0 0 0 0px;
  2725. text-decoration: none;
  2726. background-color: transparent;
  2727. border-color: transparent;
  2728. border-style: none;
  2729. border-width: 0px;
  2730. border-radius: 0 0 0 0px;
  2731. text-align: left
  2732. }
  2733. .tp-caption.ContentZoom-DetailSubTitle,
  2734. .ContentZoom-DetailSubTitle {
  2735. color: rgba(111, 124, 130, 1.00);
  2736. font-size: 25px;
  2737. line-height: 25px;
  2738. font-weight: 500;
  2739. font-style: normal;
  2740. font-family: Raleway;
  2741. padding: 0 0 0 0px;
  2742. text-decoration: none;
  2743. background-color: transparent;
  2744. border-color: transparent;
  2745. border-style: none;
  2746. border-width: 0px;
  2747. border-radius: 0 0 0 0px;
  2748. text-align: left
  2749. }
  2750. .tp-caption.ContentZoom-DetailContent,
  2751. .ContentZoom-DetailContent {
  2752. color: rgba(111, 124, 130, 1.00);
  2753. font-size: 17px;
  2754. line-height: 28px;
  2755. font-weight: 500;
  2756. font-style: normal;
  2757. font-family: Raleway;
  2758. padding: 0 0 0 0px;
  2759. text-decoration: none;
  2760. background-color: transparent;
  2761. border-color: transparent;
  2762. border-style: none;
  2763. border-width: 0px;
  2764. border-radius: 0 0 0 0px;
  2765. text-align: left
  2766. }
  2767. .tp-caption.ContentZoom-Button,
  2768. .ContentZoom-Button {
  2769. color: rgba(41, 46, 49, 1.00);
  2770. font-size: 13px;
  2771. line-height: 13px;
  2772. font-weight: 700;
  2773. font-style: normal;
  2774. font-family: Raleway;
  2775. padding: 15px 50px 15px 50px;
  2776. text-decoration: none;
  2777. background-color: rgba(0, 0, 0, 0);
  2778. border-color: rgba(41, 46, 49, 0.50);
  2779. border-style: solid;
  2780. border-width: 1px;
  2781. border-radius: 0px 0px 0px 0px;
  2782. text-align: left;
  2783. letter-spacing: 1px
  2784. }
  2785. .tp-caption.ContentZoom-Button:hover,
  2786. .ContentZoom-Button:hover {
  2787. color: rgba(255, 255, 255, 1.00);
  2788. text-decoration: none;
  2789. background-color: rgba(41, 46, 49, 1.00);
  2790. border-color: rgba(41, 46, 49, 1.00);
  2791. border-style: solid;
  2792. border-width: 1px;
  2793. border-radius: 0px 0px 0px 0px
  2794. }
  2795. .tp-caption.ContentZoom-ButtonClose,
  2796. .ContentZoom-ButtonClose {
  2797. color: rgba(41, 46, 49, 1.00);
  2798. font-size: 13px;
  2799. line-height: 13px;
  2800. font-weight: 700;
  2801. font-style: normal;
  2802. font-family: Raleway;
  2803. padding: 14px 14px 14px 16px;
  2804. text-decoration: none;
  2805. background-color: rgba(0, 0, 0, 0);
  2806. border-color: rgba(41, 46, 49, 0.50);
  2807. border-style: solid;
  2808. border-width: 1px;
  2809. border-radius: 30px 30px 30px 30px;
  2810. text-align: left;
  2811. letter-spacing: 1px
  2812. }
  2813. .tp-caption.ContentZoom-ButtonClose:hover,
  2814. .ContentZoom-ButtonClose:hover {
  2815. color: rgba(255, 255, 255, 1.00);
  2816. text-decoration: none;
  2817. background-color: rgba(41, 46, 49, 1.00);
  2818. border-color: rgba(41, 46, 49, 1.00);
  2819. border-style: solid;
  2820. border-width: 1px;
  2821. border-radius: 30px 30px 30px 30px
  2822. }
  2823. .tp-caption.Newspaper-Title,
  2824. .Newspaper-Title {
  2825. color: rgba(255, 255, 255, 1.00);
  2826. font-size: 50px;
  2827. line-height: 55px;
  2828. font-weight: 400;
  2829. font-style: normal;
  2830. font-family: "Roboto Slab";
  2831. padding: 0 0 10px 0;
  2832. text-decoration: none;
  2833. background-color: transparent;
  2834. border-color: transparent;
  2835. border-style: none;
  2836. border-width: 0px;
  2837. border-radius: 0 0 0 0px;
  2838. text-align: left
  2839. }
  2840. .tp-caption.Newspaper-Subtitle,
  2841. .Newspaper-Subtitle {
  2842. color: rgba(168, 216, 238, 1.00);
  2843. font-size: 15px;
  2844. line-height: 20px;
  2845. font-weight: 900;
  2846. font-style: normal;
  2847. font-family: Roboto;
  2848. padding: 0 0 0 0px;
  2849. text-decoration: none;
  2850. background-color: transparent;
  2851. border-color: transparent;
  2852. border-style: none;
  2853. border-width: 0px;
  2854. border-radius: 0 0 0 0px;
  2855. text-align: left
  2856. }
  2857. .tp-caption.Newspaper-Button,
  2858. .Newspaper-Button {
  2859. color: rgba(255, 255, 255, 1.00);
  2860. font-size: 13px;
  2861. line-height: 17px;
  2862. font-weight: 700;
  2863. font-style: normal;
  2864. font-family: Roboto;
  2865. padding: 12px 35px 12px 35px;
  2866. text-decoration: none;
  2867. background-color: rgba(255, 255, 255, 0);
  2868. border-color: rgba(255, 255, 255, 0.25);
  2869. border-style: solid;
  2870. border-width: 1px;
  2871. border-radius: 0px 0px 0px 0px;
  2872. letter-spacing: 2px;
  2873. text-align: left
  2874. }
  2875. .tp-caption.Newspaper-Button:hover,
  2876. .Newspaper-Button:hover {
  2877. color: rgba(0, 0, 0, 1.00);
  2878. text-decoration: none;
  2879. background-color: rgba(255, 255, 255, 1.00);
  2880. border-color: rgba(255, 255, 255, 1.00);
  2881. border-style: solid;
  2882. border-width: 1px;
  2883. border-radius: 0px 0px 0px 0px
  2884. }
  2885. .tp-caption.rtwhitemedium,
  2886. .rtwhitemedium {
  2887. font-size: 22px;
  2888. line-height: 26px;
  2889. color: rgb(255, 255, 255);
  2890. text-decoration: none;
  2891. background-color: transparent;
  2892. border-width: 0px;
  2893. border-color: rgb(0, 0, 0);
  2894. border-style: none;
  2895. text-shadow: none
  2896. }
  2897. @media only screen and (max-width: 767px) {
  2898. .revtp-searchform input[type="text"],
  2899. .revtp-searchform input[type="email"],
  2900. .revtp-form input[type="text"],
  2901. .revtp-form input[type="email"] { width: 200px !important; }
  2902. }
  2903. .revtp-searchform input[type="submit"],
  2904. .revtp-form input[type="submit"] {
  2905. font-family: "Arial", sans-serif;
  2906. line-height: 46px;
  2907. letter-spacing: 1px;
  2908. text-transform: uppercase;
  2909. font-size: 15px;
  2910. font-weight: 700;
  2911. padding: 0 20px;
  2912. border: 0;
  2913. background: #009aee;
  2914. color: #fff;
  2915. border-radius: 0px;
  2916. }
  2917. .tp-caption.Twitter-Content a,
  2918. .tp-caption.Twitter-Content a:visited {
  2919. color: #0084B4 !important
  2920. }
  2921. .tp-caption.Twitter-Content a:hover {
  2922. color: #0084B4 !important;
  2923. text-decoration: underline !important
  2924. }
  2925. .tp-caption.Concept-Title,
  2926. .Concept-Title {
  2927. color: rgba(255, 255, 255, 1.00);
  2928. font-size: 70px;
  2929. line-height: 70px;
  2930. font-weight: 700;
  2931. font-style: normal;
  2932. font-family: "Roboto Condensed";
  2933. padding: 0px 0px 10px 0px;
  2934. text-decoration: none;
  2935. text-align: left;
  2936. background-color: transparent;
  2937. border-color: transparent;
  2938. border-style: none;
  2939. border-width: 0px;
  2940. border-radius: 0px 0px 0px 0px;
  2941. letter-spacing: 5px
  2942. }
  2943. .tp-caption.Concept-SubTitle,
  2944. .Concept-SubTitle {
  2945. color: rgba(255, 255, 255, 0.65);
  2946. font-size: 25px;
  2947. line-height: 25px;
  2948. font-weight: 700;
  2949. font-style: italic;
  2950. font-family: ""Playfair Display"";
  2951. padding: 0px 0px 10px 0px;
  2952. text-decoration: none;
  2953. text-align: left;
  2954. background-color: transparent;
  2955. border-color: transparent;
  2956. border-style: none;
  2957. border-width: 0px;
  2958. border-radius: 0px 0px 0px 0px
  2959. }
  2960. .tp-caption.Concept-Content,
  2961. .Concept-Content {
  2962. color: rgba(255, 255, 255, 1.00);
  2963. font-size: 20px;
  2964. line-height: 30px;
  2965. font-weight: 400;
  2966. font-style: normal;
  2967. font-family: "Roboto Condensed";
  2968. padding: 0px 0px 0px 0px;
  2969. text-decoration: none;
  2970. text-align: center;
  2971. background-color: rgba(0, 0, 0, 0);
  2972. border-color: rgba(255, 255, 255, 1.00);
  2973. border-style: none;
  2974. border-width: 2px;
  2975. border-radius: 0px 0px 0px 0px
  2976. }
  2977. .tp-caption.Concept-MoreBtn,
  2978. .Concept-MoreBtn {
  2979. color: rgba(255, 255, 255, 1.00);
  2980. font-size: 30px;
  2981. line-height: 30px;
  2982. font-weight: 300;
  2983. font-style: normal;
  2984. font-family: Roboto;
  2985. padding: 10px 8px 7px 10px;
  2986. text-decoration: none;
  2987. text-align: left;
  2988. background-color: transparent;
  2989. border-color: rgba(255, 255, 255, 0);
  2990. border-style: solid;
  2991. border-width: 0px;
  2992. border-radius: 50px 50px 50px 50px;
  2993. letter-spacing: 1px;
  2994. text-align: left
  2995. }
  2996. .tp-caption.Concept-MoreBtn:hover,
  2997. .Concept-MoreBtn:hover {
  2998. color: rgba(255, 255, 255, 1.00);
  2999. text-decoration: none;
  3000. background-color: rgba(255, 255, 255, 0.15);
  3001. border-color: rgba(255, 255, 255, 0);
  3002. border-style: solid;
  3003. border-width: 0px;
  3004. border-radius: 50px 50px 50px 50px
  3005. }
  3006. .tp-caption.Concept-LessBtn,
  3007. .Concept-LessBtn {
  3008. color: rgba(255, 255, 255, 1.00);
  3009. font-size: 30px;
  3010. line-height: 30px;
  3011. font-weight: 300;
  3012. font-style: normal;
  3013. font-family: Roboto;
  3014. padding: 10px 8px 7px 10px;
  3015. text-decoration: none;
  3016. text-align: left;
  3017. background-color: rgba(0, 0, 0, 1.00);
  3018. border-color: rgba(255, 255, 255, 0);
  3019. border-style: solid;
  3020. border-width: 0px;
  3021. border-radius: 50px 50px 50px 50px;
  3022. letter-spacing: 1px;
  3023. text-align: left
  3024. }
  3025. .tp-caption.Concept-LessBtn:hover,
  3026. .Concept-LessBtn:hover {
  3027. color: rgba(0, 0, 0, 1.00);
  3028. text-decoration: none;
  3029. background-color: rgba(255, 255, 255, 1.00);
  3030. border-color: rgba(255, 255, 255, 0);
  3031. border-style: solid;
  3032. border-width: 0px;
  3033. border-radius: 50px 50px 50px 50px
  3034. }
  3035. .tp-caption.Concept-SubTitle-Dark,
  3036. .Concept-SubTitle-Dark {
  3037. color: rgba(0, 0, 0, 0.65);
  3038. font-size: 25px;
  3039. line-height: 25px;
  3040. font-weight: 700;
  3041. font-style: italic;
  3042. font-family: "Playfair Display";
  3043. padding: 0px 0px 10px 0px;
  3044. text-decoration: none;
  3045. text-align: left;
  3046. background-color: transparent;
  3047. border-color: transparent;
  3048. border-style: none;
  3049. border-width: 0px;
  3050. border-radius: 0px 0px 0px 0px
  3051. }
  3052. .tp-caption.Concept-Title-Dark,
  3053. .Concept-Title-Dark {
  3054. color: rgba(0, 0, 0, 1.00);
  3055. font-size: 70px;
  3056. line-height: 70px;
  3057. font-weight: 700;
  3058. font-style: normal;
  3059. font-family: "Roboto Condensed";
  3060. padding: 0px 0px 10px 0px;
  3061. text-decoration: none;
  3062. text-align: center;
  3063. background-color: transparent;
  3064. border-color: transparent;
  3065. border-style: none;
  3066. border-width: 0px;
  3067. border-radius: 0px 0px 0px 0px;
  3068. letter-spacing: 5px
  3069. }
  3070. .tp-caption.Concept-MoreBtn-Dark,
  3071. .Concept-MoreBtn-Dark {
  3072. color: rgba(0, 0, 0, 1.00);
  3073. font-size: 30px;
  3074. line-height: 30px;
  3075. font-weight: 300;
  3076. font-style: normal;
  3077. font-family: Roboto;
  3078. padding: 10px 8px 7px 10px;
  3079. text-decoration: none;
  3080. text-align: left;
  3081. background-color: transparent;
  3082. border-color: rgba(255, 255, 255, 0);
  3083. border-style: solid;
  3084. border-width: 0px;
  3085. border-radius: 50px 50px 50px 50px;
  3086. letter-spacing: 1px;
  3087. text-align: left
  3088. }
  3089. .tp-caption.Concept-MoreBtn-Dark:hover,
  3090. .Concept-MoreBtn-Dark:hover {
  3091. color: rgba(255, 255, 255, 1.00);
  3092. text-decoration: none;
  3093. background-color: rgba(0, 0, 0, 1.00);
  3094. border-color: rgba(255, 255, 255, 0);
  3095. border-style: solid;
  3096. border-width: 0px;
  3097. border-radius: 50px 50px 50px 50px
  3098. }
  3099. .tp-caption.Concept-Content-Dark,
  3100. .Concept-Content-Dark {
  3101. color: rgba(0, 0, 0, 1.00);
  3102. font-size: 20px;
  3103. line-height: 30px;
  3104. font-weight: 400;
  3105. font-style: normal;
  3106. font-family: "Roboto Condensed";
  3107. padding: 0px 0px 0px 0px;
  3108. text-decoration: none;
  3109. text-align: center;
  3110. background-color: rgba(0, 0, 0, 0);
  3111. border-color: rgba(255, 255, 255, 1.00);
  3112. border-style: none;
  3113. border-width: 2px;
  3114. border-radius: 0px 0px 0px 0px
  3115. }
  3116. .tp-caption.Concept-Notice,
  3117. .Concept-Notice {
  3118. color: rgba(255, 255, 255, 1.00);
  3119. font-size: 15px;
  3120. line-height: 15px;
  3121. font-weight: 400;
  3122. font-style: normal;
  3123. font-family: "Roboto Condensed";
  3124. padding: 0px 0px 0px 0px;
  3125. text-decoration: none;
  3126. text-align: center;
  3127. background-color: rgba(0, 0, 0, 0);
  3128. border-color: rgba(255, 255, 255, 1.00);
  3129. border-style: none;
  3130. border-width: 2px;
  3131. border-radius: 0px 0px 0px 0px;
  3132. letter-spacing: 2px
  3133. }
  3134. .tp-caption.Concept-Content a,
  3135. .tp-caption.Concept-Content a:visited {
  3136. color: #fff !important;
  3137. border-bottom: 1px solid #fff !important;
  3138. font-weight: 700 !important;
  3139. }
  3140. .tp-caption.Concept-Content a:hover {
  3141. border-bottom: 1px solid transparent !important;
  3142. }
  3143. .tp-caption.Concept-Content-Dark a,
  3144. .tp-caption.Concept-Content-Dark a:visited {
  3145. color: #000 !important;
  3146. border-bottom: 1px solid #000 !important;
  3147. font-weight: 700 !important;
  3148. }
  3149. .tp-caption.Concept-Content-Dark a:hover {
  3150. border-bottom: 1px solid transparent !important;
  3151. }
  3152. .tp-caption.Twitter-Content a,
  3153. .tp-caption.Twitter-Content a:visited {
  3154. color: #0084B4 !important
  3155. }
  3156. .tp-caption.Twitter-Content a:hover {
  3157. color: #0084B4 !important;
  3158. text-decoration: underline !important
  3159. }
  3160. .tp-caption.Creative-Title,
  3161. .Creative-Title {
  3162. color: rgba(255, 255, 255, 1.00);
  3163. font-size: 70px;
  3164. line-height: 70px;
  3165. font-weight: 400;
  3166. font-style: normal;
  3167. font-family: "Playfair Display";
  3168. padding: 0px 0px 0px 0px;
  3169. text-decoration: none;
  3170. text-align: center;
  3171. background-color: transparent;
  3172. border-color: transparent;
  3173. border-style: none;
  3174. border-width: 0px;
  3175. border-radius: 0px 0px 0px 0px
  3176. }
  3177. .tp-caption.Creative-SubTitle,
  3178. .Creative-SubTitle {
  3179. color: rgba(205, 176, 131, 1.00);
  3180. font-size: 14px;
  3181. line-height: 14px;
  3182. font-weight: 400;
  3183. font-style: normal;
  3184. font-family: Lato;
  3185. padding: 0px 0px 0px 0px;
  3186. text-decoration: none;
  3187. text-align: center;
  3188. background-color: transparent;
  3189. border-color: transparent;
  3190. border-style: none;
  3191. border-width: 0px;
  3192. border-radius: 0px 0px 0px 0px;
  3193. letter-spacing: 2px
  3194. }
  3195. .tp-caption.Creative-Button,
  3196. .Creative-Button {
  3197. color: rgba(205, 176, 131, 1.00);
  3198. font-size: 13px;
  3199. line-height: 13px;
  3200. font-weight: 400;
  3201. font-style: normal;
  3202. font-family: Lato;
  3203. padding: 15px 50px 15px 50px;
  3204. text-decoration: none;
  3205. text-align: left;
  3206. background-color: rgba(0, 0, 0, 0);
  3207. border-color: rgba(205, 176, 131, 0.25);
  3208. border-style: solid;
  3209. border-width: 1px;
  3210. border-radius: 0px 0px 0px 0px;
  3211. letter-spacing: 2px
  3212. }
  3213. .tp-caption.Creative-Button:hover,
  3214. .Creative-Button:hover {
  3215. color: rgba(205, 176, 131, 1.00);
  3216. text-decoration: none;
  3217. background-color: rgba(0, 0, 0, 0);
  3218. border-color: rgba(205, 176, 131, 1.00);
  3219. border-style: solid;
  3220. border-width: 1px;
  3221. border-radius: 0px 0px 0px 0px
  3222. }
  3223. .tp-caption.subcaption,
  3224. .subcaption {
  3225. color: rgba(111, 124, 130, 1.00);
  3226. font-size: 19px;
  3227. line-height: 24px;
  3228. font-weight: 400;
  3229. font-style: normal;
  3230. font-family: roboto;
  3231. padding: 0 0 0 0px;
  3232. text-decoration: none;
  3233. background-color: transparent;
  3234. border-color: rgba(0, 0, 0, 1.00);
  3235. border-style: none;
  3236. border-width: 0px;
  3237. border-radius: 0 0 0 0px;
  3238. text-shadow: none;
  3239. text-align: left
  3240. }
  3241. .tp-caption.RedDot,
  3242. .RedDot {
  3243. color: rgba(0, 0, 0, 1.00);
  3244. font-weight: 400;
  3245. font-style: normal;
  3246. padding: 0px 0px 0px 0px;
  3247. text-decoration: none;
  3248. text-align: left;
  3249. background-color: rgba(213, 0, 0, 1.00);
  3250. border-color: rgba(255, 255, 255, 1.00);
  3251. border-style: solid;
  3252. border-width: 5px;
  3253. border-radius: 50px 50px 50px 50px
  3254. }
  3255. .tp-caption.RedDot:hover,
  3256. .RedDot:hover {
  3257. color: rgba(0, 0, 0, 1.00);
  3258. text-decoration: none;
  3259. background-color: rgba(255, 255, 255, 0.75);
  3260. border-color: rgba(213, 0, 0, 1.00);
  3261. border-style: solid;
  3262. border-width: 5px;
  3263. border-radius: 50px 50px 50px 50px
  3264. }
  3265. .tp-caption.SlidingOverlays-Title,
  3266. .SlidingOverlays-Title {
  3267. color: rgba(255, 255, 255, 1.00);
  3268. font-size: 50px;
  3269. line-height: 50px;
  3270. font-weight: 400;
  3271. font-style: normal;
  3272. font-family: "Playfair Display";
  3273. padding: 0px 0px 0px 0px;
  3274. text-decoration: none;
  3275. text-align: left;
  3276. background-color: transparent;
  3277. border-color: transparent;
  3278. border-style: none;
  3279. border-width: 0px;
  3280. border-radius: 0px 0px 0px 0px
  3281. }
  3282. .tp-caption.SlidingOverlays-Title,
  3283. .SlidingOverlays-Title {
  3284. color: rgba(255, 255, 255, 1.00);
  3285. font-size: 50px;
  3286. line-height: 50px;
  3287. font-weight: 400;
  3288. font-style: normal;
  3289. font-family: "Playfair Display";
  3290. padding: 0px 0px 0px 0px;
  3291. text-decoration: none;
  3292. text-align: left;
  3293. background-color: transparent;
  3294. border-color: transparent;
  3295. border-style: none;
  3296. border-width: 0px;
  3297. border-radius: 0px 0px 0px 0px
  3298. }
  3299. .tp-caption.Woo-TitleLarge,
  3300. .Woo-TitleLarge {
  3301. color: rgba(0, 0, 0, 1.00);
  3302. font-size: 40px;
  3303. line-height: 40px;
  3304. font-weight: 400;
  3305. font-style: normal;
  3306. font-family: "Playfair Display";
  3307. padding: 0 0 0 0px;
  3308. text-decoration: none;
  3309. background-color: transparent;
  3310. border-color: transparent;
  3311. border-style: none;
  3312. border-width: 0px;
  3313. border-radius: 0 0 0 0px;
  3314. text-align: center;
  3315. }
  3316. .tp-caption.Woo-Rating,
  3317. .Woo-Rating {
  3318. color: rgba(0, 0, 0, 1.00);
  3319. font-size: 14px;
  3320. line-height: 30px;
  3321. font-weight: 300;
  3322. font-style: normal;
  3323. font-family: Roboto;
  3324. padding: 0 0 0 0px;
  3325. text-decoration: none;
  3326. background-color: transparent;
  3327. border-color: transparent;
  3328. border-style: none;
  3329. border-width: 0px;
  3330. border-radius: 0 0 0 0px;
  3331. text-align: left;
  3332. }
  3333. .tp-caption.Woo-SubTitle,
  3334. .Woo-SubTitle {
  3335. color: rgba(0, 0, 0, 1.00);
  3336. font-size: 18px;
  3337. line-height: 18px;
  3338. font-weight: 300;
  3339. font-style: normal;
  3340. font-family: Roboto;
  3341. padding: 0 0 0 0px;
  3342. text-decoration: none;
  3343. background-color: transparent;
  3344. border-color: transparent;
  3345. border-style: none;
  3346. border-width: 0px;
  3347. border-radius: 0 0 0 0px;
  3348. text-align: center;
  3349. letter-spacing: 2px;
  3350. }
  3351. .tp-caption.Woo-PriceLarge,
  3352. .Woo-PriceLarge {
  3353. color: rgba(0, 0, 0, 1.00);
  3354. font-size: 60px;
  3355. line-height: 60px;
  3356. font-weight: 700;
  3357. font-style: normal;
  3358. font-family: Roboto;
  3359. padding: 0 0 0 0px;
  3360. text-decoration: none;
  3361. background-color: transparent;
  3362. border-color: transparent;
  3363. border-style: none;
  3364. border-width: 0px;
  3365. border-radius: 0 0 0 0px;
  3366. text-align: center;
  3367. }
  3368. .tp-caption.Woo-ProductInfo,
  3369. .Woo-ProductInfo {
  3370. color: rgba(0, 0, 0, 1.00);
  3371. font-size: 15px;
  3372. line-height: 15px;
  3373. font-weight: 500;
  3374. font-style: normal;
  3375. font-family: Roboto;
  3376. padding: 12px 75px 12px 50px;
  3377. text-decoration: none;
  3378. background-color: rgba(254, 207, 114, 1.00);
  3379. border-color: rgba(0, 0, 0, 1.00);
  3380. border-style: solid;
  3381. border-width: 1px;
  3382. border-radius: 4px 4px 4px 4px;
  3383. text-align: left;
  3384. }
  3385. .tp-caption.Woo-ProductInfo:hover,
  3386. .Woo-ProductInfo:hover {
  3387. color: rgba(0, 0, 0, 1.00);
  3388. text-decoration: none;
  3389. background-color: rgba(243, 168, 71, 1.00);
  3390. border-color: rgba(0, 0, 0, 1.00);
  3391. border-style: solid;
  3392. border-width: 1px;
  3393. border-radius: 4px 4px 4px 4px
  3394. }
  3395. .tp-caption.Woo-AddToCart,
  3396. .Woo-AddToCart {
  3397. color: rgba(0, 0, 0, 1.00);
  3398. font-size: 15px;
  3399. line-height: 15px;
  3400. font-weight: 500;
  3401. font-style: normal;
  3402. font-family: Roboto;
  3403. padding: 12px 35px 12px 35px;
  3404. text-decoration: none;
  3405. background-color: rgba(254, 207, 114, 1.00);
  3406. border-color: rgba(0, 0, 0, 1.00);
  3407. border-style: solid;
  3408. border-width: 1px;
  3409. border-radius: 4px 4px 4px 4px;
  3410. text-align: left;
  3411. }
  3412. .tp-caption.Woo-AddToCart:hover,
  3413. .Woo-AddToCart:hover {
  3414. color: rgba(0, 0, 0, 1.00);
  3415. text-decoration: none;
  3416. background-color: rgba(243, 168, 71, 1.00);
  3417. border-color: rgba(0, 0, 0, 1.00);
  3418. border-style: solid;
  3419. border-width: 1px;
  3420. border-radius: 4px 4px 4px 4px
  3421. }
  3422. .tp-caption.Woo-TitleLarge,
  3423. .Woo-TitleLarge {
  3424. color: rgba(0, 0, 0, 1.00);
  3425. font-size: 40px;
  3426. line-height: 40px;
  3427. font-weight: 400;
  3428. font-style: normal;
  3429. font-family: "Playfair Display";
  3430. padding: 0 0 0 0px;
  3431. text-decoration: none;
  3432. background-color: transparent;
  3433. border-color: transparent;
  3434. border-style: none;
  3435. border-width: 0px;
  3436. border-radius: 0 0 0 0px;
  3437. text-align: center;
  3438. }
  3439. .tp-caption.Woo-SubTitle,
  3440. .Woo-SubTitle {
  3441. color: rgba(0, 0, 0, 1.00);
  3442. font-size: 18px;
  3443. line-height: 18px;
  3444. font-weight: 300;
  3445. font-style: normal;
  3446. font-family: Roboto;
  3447. padding: 0 0 0 0px;
  3448. text-decoration: none;
  3449. background-color: transparent;
  3450. border-color: transparent;
  3451. border-style: none;
  3452. border-width: 0px;
  3453. border-radius: 0 0 0 0px;
  3454. text-align: center;
  3455. letter-spacing: 2px;
  3456. }
  3457. .tp-caption.Woo-PriceLarge,
  3458. .Woo-PriceLarge {
  3459. color: rgba(0, 0, 0, 1.00);
  3460. font-size: 60px;
  3461. line-height: 60px;
  3462. font-weight: 700;
  3463. font-style: normal;
  3464. font-family: Roboto;
  3465. padding: 0 0 0 0px;
  3466. text-decoration: none;
  3467. background-color: transparent;
  3468. border-color: transparent;
  3469. border-style: none;
  3470. border-width: 0px;
  3471. border-radius: 0 0 0 0px;
  3472. text-align: center;
  3473. }
  3474. .tp-caption.Woo-ProductInfo,
  3475. .Woo-ProductInfo {
  3476. color: rgba(0, 0, 0, 1.00);
  3477. font-size: 15px;
  3478. line-height: 15px;
  3479. font-weight: 500;
  3480. font-style: normal;
  3481. font-family: Roboto;
  3482. padding: 12px 75px 12px 50px;
  3483. text-decoration: none;
  3484. background-color: rgba(254, 207, 114, 1.00);
  3485. border-color: rgba(0, 0, 0, 1.00);
  3486. border-style: solid;
  3487. border-width: 1px;
  3488. border-radius: 4px 4px 4px 4px;
  3489. text-align: left;
  3490. }
  3491. .tp-caption.Woo-ProductInfo:hover,
  3492. .Woo-ProductInfo:hover {
  3493. color: rgba(0, 0, 0, 1.00);
  3494. text-decoration: none;
  3495. background-color: rgba(243, 168, 71, 1.00);
  3496. border-color: rgba(0, 0, 0, 1.00);
  3497. border-style: solid;
  3498. border-width: 1px;
  3499. border-radius: 4px 4px 4px 4px
  3500. }
  3501. .tp-caption.Woo-AddToCart,
  3502. .Woo-AddToCart {
  3503. color: rgba(0, 0, 0, 1.00);
  3504. font-size: 15px;
  3505. line-height: 15px;
  3506. font-weight: 500;
  3507. font-style: normal;
  3508. font-family: Roboto;
  3509. padding: 12px 35px 12px 35px;
  3510. text-decoration: none;
  3511. background-color: rgba(254, 207, 114, 1.00);
  3512. border-color: rgba(0, 0, 0, 1.00);
  3513. border-style: solid;
  3514. border-width: 1px;
  3515. border-radius: 4px 4px 4px 4px;
  3516. text-align: left;
  3517. }
  3518. .tp-caption.Woo-AddToCart:hover,
  3519. .Woo-AddToCart:hover {
  3520. color: rgba(0, 0, 0, 1.00);
  3521. text-decoration: none;
  3522. background-color: rgba(243, 168, 71, 1.00);
  3523. border-color: rgba(0, 0, 0, 1.00);
  3524. border-style: solid;
  3525. border-width: 1px;
  3526. border-radius: 4px 4px 4px 4px
  3527. }
  3528. .tp-caption.FullScreen-Toggle,
  3529. .FullScreen-Toggle {
  3530. color: rgba(255, 255, 255, 1.00);
  3531. font-size: 20px;
  3532. line-height: 20px;
  3533. font-weight: 400;
  3534. font-style: normal;
  3535. font-family: Raleway;
  3536. padding: 11px 8px 11px 12px;
  3537. text-decoration: none;
  3538. text-align: left;
  3539. background-color: rgba(0, 0, 0, 0.50);
  3540. border-color: rgba(255, 255, 255, 0);
  3541. border-style: solid;
  3542. border-width: 0px;
  3543. border-radius: 0px 0px 0px 0px;
  3544. letter-spacing: 3px;
  3545. text-align: left
  3546. }
  3547. .tp-caption.FullScreen-Toggle:hover,
  3548. .FullScreen-Toggle:hover {
  3549. color: rgba(255, 255, 255, 1.00);
  3550. text-decoration: none;
  3551. background-color: rgba(0, 0, 0, 1.00);
  3552. border-color: rgba(255, 255, 255, 0);
  3553. border-style: solid;
  3554. border-width: 0px;
  3555. border-radius: 0px 0px 0px 0px
  3556. }
  3557. .tp-caption.Agency-Title,
  3558. .Agency-Title {
  3559. color: rgba(255, 255, 255, 1.00);
  3560. font-size: 70px;
  3561. line-height: 70px;
  3562. font-weight: 900;
  3563. font-style: normal;
  3564. font-family: lato;
  3565. padding: 0 0 0 0px;
  3566. text-decoration: none;
  3567. background-color: transparent;
  3568. border-color: transparent;
  3569. border-style: none;
  3570. border-width: 0px;
  3571. border-radius: 0 0 0 0px;
  3572. text-align: left;
  3573. letter-spacing: 10px
  3574. }
  3575. .tp-caption.Agency-SubTitle,
  3576. .Agency-SubTitle {
  3577. color: rgba(255, 255, 255, 1.00);
  3578. font-size: 20px;
  3579. line-height: 20px;
  3580. font-weight: 400;
  3581. font-style: italic;
  3582. font-family: Georgia, serif;
  3583. padding: 0 0 0 0px;
  3584. text-decoration: none;
  3585. background-color: transparent;
  3586. border-color: transparent;
  3587. border-style: none;
  3588. border-width: 0px;
  3589. border-radius: 0 0 0 0px;
  3590. text-align: center
  3591. }
  3592. .tp-caption.Agency-PlayBtn,
  3593. .Agency-PlayBtn {
  3594. color: rgba(255, 255, 255, 1.00);
  3595. font-size: 30px;
  3596. line-height: 71px;
  3597. font-weight: 500;
  3598. font-style: normal;
  3599. font-family: Roboto;
  3600. padding: 0px 0px 0px 0px;
  3601. text-decoration: none;
  3602. background-color: transparent;
  3603. border-color: rgba(255, 255, 255, 1.00);
  3604. border-style: solid;
  3605. border-width: 2px;
  3606. border-radius: 100px 100px 100px 100px;
  3607. text-align: center
  3608. }
  3609. .tp-caption.Agency-PlayBtn:hover,
  3610. .Agency-PlayBtn:hover {
  3611. color: rgba(255, 255, 255, 1.00);
  3612. text-decoration: none;
  3613. background-color: transparent;
  3614. border-color: rgba(255, 255, 255, 1.00);
  3615. border-style: solid;
  3616. border-width: 2px;
  3617. border-radius: 100px 100px 100px 100px;
  3618. cursor: pointer
  3619. }
  3620. .tp-caption.Agency-SmallText,
  3621. .Agency-SmallText {
  3622. color: rgba(255, 255, 255, 1.00);
  3623. font-size: 12px;
  3624. line-height: 12px;
  3625. font-weight: 900;
  3626. font-style: normal;
  3627. font-family: lato;
  3628. padding: 0 0 0 0px;
  3629. text-decoration: none;
  3630. background-color: transparent;
  3631. border-color: transparent;
  3632. border-style: none;
  3633. border-width: 0px;
  3634. border-radius: 0 0 0 0px;
  3635. text-align: left;
  3636. letter-spacing: 5px
  3637. }
  3638. .tp-caption.Agency-Social,
  3639. .Agency-Social {
  3640. color: rgba(51, 51, 51, 1.00);
  3641. font-size: 25px;
  3642. line-height: 50px;
  3643. font-weight: 400;
  3644. font-style: normal;
  3645. font-family: Georgia, serif;
  3646. padding: 0 0 0 0px;
  3647. text-decoration: none;
  3648. background-color: transparent;
  3649. border-color: rgba(51, 51, 51, 1.00);
  3650. border-style: solid;
  3651. border-width: 2px;
  3652. border-radius: 30px 30px 30px 30px;
  3653. text-align: center
  3654. }
  3655. .tp-caption.Agency-Social:hover,
  3656. .Agency-Social:hover {
  3657. color: rgba(255, 255, 255, 1.00);
  3658. text-decoration: none;
  3659. background-color: rgba(51, 51, 51, 1.00);
  3660. border-color: rgba(51, 51, 51, 1.00);
  3661. border-style: solid;
  3662. border-width: 2px;
  3663. border-radius: 30px 30px 30px 30px;
  3664. cursor: pointer
  3665. }
  3666. .tp-caption.Agency-CloseBtn,
  3667. .Agency-CloseBtn {
  3668. color: rgba(255, 255, 255, 1.00);
  3669. font-size: 50px;
  3670. line-height: 50px;
  3671. font-weight: 500;
  3672. font-style: normal;
  3673. font-family: Roboto;
  3674. padding: 0px 0px 0px 0px;
  3675. text-decoration: none;
  3676. background-color: transparent;
  3677. border-color: rgba(255, 255, 255, 0);
  3678. border-style: none;
  3679. border-width: 0px;
  3680. border-radius: 100px 100px 100px 100px;
  3681. text-align: center
  3682. }
  3683. .tp-caption.Agency-CloseBtn:hover,
  3684. .Agency-CloseBtn:hover {
  3685. color: rgba(255, 255, 255, 1.00);
  3686. text-decoration: none;
  3687. background-color: transparent;
  3688. border-color: rgba(255, 255, 255, 0);
  3689. border-style: none;
  3690. border-width: 0px;
  3691. border-radius: 100px 100px 100px 100px;
  3692. cursor: pointer
  3693. }
  3694. .tp-caption.Dining-Title,
  3695. .Dining-Title {
  3696. color: rgba(255, 255, 255, 1.00);
  3697. font-size: 70px;
  3698. line-height: 70px;
  3699. font-weight: 400;
  3700. font-style: normal;
  3701. font-family: Georgia, serif;
  3702. padding: 0 0 0 0px;
  3703. text-decoration: none;
  3704. background-color: transparent;
  3705. border-color: transparent;
  3706. border-style: none;
  3707. border-width: 0px;
  3708. border-radius: 0 0 0 0px;
  3709. text-align: left;
  3710. letter-spacing: 10px
  3711. }
  3712. .tp-caption.Dining-SubTitle,
  3713. .Dining-SubTitle {
  3714. color: rgba(255, 255, 255, 1.00);
  3715. font-size: 20px;
  3716. line-height: 20px;
  3717. font-weight: 400;
  3718. font-style: normal;
  3719. font-family: Georgia, serif;
  3720. padding: 0 0 0 0px;
  3721. text-decoration: none;
  3722. background-color: transparent;
  3723. border-color: transparent;
  3724. border-style: none;
  3725. border-width: 0px;
  3726. border-radius: 0 0 0 0px;
  3727. text-align: left
  3728. }
  3729. .tp-caption.Dining-BtnLight,
  3730. .Dining-BtnLight {
  3731. color: rgba(255, 255, 255, 0.50);
  3732. font-size: 15px;
  3733. line-height: 15px;
  3734. font-weight: 700;
  3735. font-style: normal;
  3736. font-family: Lato;
  3737. padding: 17px 73px 17px 50px;
  3738. text-decoration: none;
  3739. background-color: rgba(0, 0, 0, 0);
  3740. border-color: rgba(255, 255, 255, 0.25);
  3741. border-style: solid;
  3742. border-width: 1px;
  3743. border-radius: 0px 0px 0px 0px;
  3744. text-align: left;
  3745. letter-spacing: 2px
  3746. }
  3747. .tp-caption.Dining-BtnLight:hover,
  3748. .Dining-BtnLight:hover {
  3749. color: rgba(255, 255, 255, 1.00);
  3750. text-decoration: none;
  3751. background-color: rgba(0, 0, 0, 0);
  3752. border-color: rgba(255, 255, 255, 1.00);
  3753. border-style: solid;
  3754. border-width: 1px;
  3755. border-radius: 0px 0px 0px 0px
  3756. }
  3757. .tp-caption.Dining-Social,
  3758. .Dining-Social {
  3759. color: rgba(255, 255, 255, 1.00);
  3760. font-size: 25px;
  3761. line-height: 50px;
  3762. font-weight: 400;
  3763. font-style: normal;
  3764. font-family: Georgia, serif;
  3765. padding: 0 0 0 0px;
  3766. text-decoration: none;
  3767. background-color: transparent;
  3768. border-color: rgba(255, 255, 255, 0.25);
  3769. border-style: solid;
  3770. border-width: 1px;
  3771. border-radius: 30px 30px 30px 30px;
  3772. text-align: center
  3773. }
  3774. .tp-caption.Dining-Social:hover,
  3775. .Dining-Social:hover {
  3776. color: rgba(255, 255, 255, 1.00);
  3777. text-decoration: none;
  3778. background-color: transparent;
  3779. border-color: rgba(255, 255, 255, 1.00);
  3780. border-style: solid;
  3781. border-width: 1px;
  3782. border-radius: 30px 30px 30px 30px;
  3783. cursor: pointer
  3784. }
  3785. tp-caption.Team-Thumb,
  3786. .Team-Thumb {
  3787. color: rgba(255, 255, 255, 1.00);
  3788. font-size: 20px;
  3789. line-height: 22px;
  3790. font-weight: 400;
  3791. font-style: normal;
  3792. font-family: Arial;
  3793. padding: 0 0 0 0px;
  3794. text-decoration: none;
  3795. background-color: transparent;
  3796. border-color: transparent;
  3797. border-style: none;
  3798. border-width: 0px;
  3799. border-radius: 0 0 0 0px;
  3800. text-align: left
  3801. }
  3802. .tp-caption.Team-Thumb:hover,
  3803. .Team-Thumb:hover {
  3804. color: rgba(255, 255, 255, 1.00);
  3805. text-decoration: none;
  3806. background-color: transparent;
  3807. border-color: transparent;
  3808. border-style: none;
  3809. border-width: 0px;
  3810. border-radius: 0 0 0 0px;
  3811. cursor: pointer
  3812. }
  3813. .tp-caption.Team-Name,
  3814. .Team-Name {
  3815. color: rgba(255, 255, 255, 1.00);
  3816. font-size: 70px;
  3817. line-height: 70px;
  3818. font-weight: 900;
  3819. font-style: normal;
  3820. font-family: Roboto;
  3821. padding: 0 0 0 0px;
  3822. text-decoration: none;
  3823. background-color: transparent;
  3824. border-color: transparent;
  3825. border-style: none;
  3826. border-width: 0px;
  3827. border-radius: 0 0 0 0px;
  3828. text-align: left
  3829. }
  3830. .tp-caption.Team-Position,
  3831. .Team-Position {
  3832. color: rgba(255, 255, 255, 1.00);
  3833. font-size: 30px;
  3834. line-height: 30px;
  3835. font-weight: 400;
  3836. font-style: normal;
  3837. font-family: Georgia, serif;
  3838. padding: 0 0 0 0px;
  3839. text-decoration: none;
  3840. background-color: transparent;
  3841. border-color: transparent;
  3842. border-style: none;
  3843. border-width: 0px;
  3844. border-radius: 0 0 0 0px;
  3845. text-align: left
  3846. }
  3847. .tp-caption.Team-Description,
  3848. .Team-Description {
  3849. color: rgba(255, 255, 255, 1.00);
  3850. font-size: 18px;
  3851. line-height: 28px;
  3852. font-weight: 400;
  3853. font-style: normal;
  3854. font-family: Roboto;
  3855. padding: 0 0 0 0px;
  3856. text-decoration: none;
  3857. background-color: transparent;
  3858. border-color: transparent;
  3859. border-style: none;
  3860. border-width: 0px;
  3861. border-radius: 0 0 0 0px;
  3862. text-align: left
  3863. }
  3864. .tp-caption.Team-Social,
  3865. .Team-Social {
  3866. color: rgba(255, 255, 255, 1.00);
  3867. font-size: 50px;
  3868. line-height: 50px;
  3869. font-weight: 400;
  3870. font-style: normal;
  3871. font-family: Arial;
  3872. padding: 0 0 0 0px;
  3873. text-decoration: none;
  3874. background-color: transparent;
  3875. border-color: transparent;
  3876. border-style: none;
  3877. border-width: 0px;
  3878. border-radius: 0 0 0 0px;
  3879. text-align: center
  3880. }
  3881. .tp-caption.Team-Social:hover,
  3882. .Team-Social:hover {
  3883. color: rgba(255, 255, 255, 1.00);
  3884. text-decoration: none;
  3885. background-color: transparent;
  3886. border-color: transparent;
  3887. border-style: none;
  3888. border-width: 0px;
  3889. border-radius: 0px 0px 0px 0px;
  3890. cursor: pointer
  3891. }
  3892. .tp-caption.VideoControls-Play,
  3893. .VideoControls-Play {
  3894. color: rgba(0, 0, 0, 1.00);
  3895. font-size: 50px;
  3896. line-height: 120px;
  3897. font-weight: 500;
  3898. font-style: normal;
  3899. font-family: Roboto;
  3900. padding: 0px 0px 0px 7px;
  3901. text-decoration: none;
  3902. background-color: rgba(255, 255, 255, 1.00);
  3903. border-color: rgba(0, 0, 0, 1.00);
  3904. border-style: solid;
  3905. border-width: 0px;
  3906. border-radius: 100px 100px 100px 100px;
  3907. text-align: center
  3908. }
  3909. .tp-caption.VideoControls-Play:hover,
  3910. .VideoControls-Play:hover {
  3911. color: rgba(0, 0, 0, 1.00);
  3912. text-decoration: none;
  3913. background-color: rgba(255, 255, 255, 1.00);
  3914. border-color: rgba(0, 0, 0, 1.00);
  3915. border-style: solid;
  3916. border-width: 0px;
  3917. border-radius: 100px 100px 100px 100px;
  3918. cursor: pointer
  3919. }
  3920. .tp-caption.VideoPlayer-Title,
  3921. .VideoPlayer-Title {
  3922. color: rgba(255, 255, 255, 1.00);
  3923. font-size: 40px;
  3924. line-height: 40px;
  3925. font-weight: 900;
  3926. font-style: normal;
  3927. font-family: Lato;
  3928. padding: 0 0 0 0px;
  3929. text-decoration: none;
  3930. background-color: transparent;
  3931. border-color: transparent;
  3932. border-style: none;
  3933. border-width: 0px;
  3934. border-radius: 0 0 0 0px;
  3935. text-align: left;
  3936. letter-spacing: 10px
  3937. }
  3938. .tp-caption.VideoPlayer-SubTitle,
  3939. .VideoPlayer-SubTitle {
  3940. color: rgba(255, 255, 255, 1.00);
  3941. font-size: 20px;
  3942. line-height: 20px;
  3943. font-weight: 400;
  3944. font-style: italic;
  3945. font-family: Georgia, serif;
  3946. padding: 0 0 0 0px;
  3947. text-decoration: none;
  3948. background-color: transparent;
  3949. border-color: transparent;
  3950. border-style: none;
  3951. border-width: 0px;
  3952. border-radius: 0 0 0 0px;
  3953. text-align: center
  3954. }
  3955. .tp-caption.VideoPlayer-Social,
  3956. .VideoPlayer-Social {
  3957. color: rgba(255, 255, 255, 1.00);
  3958. font-size: 50px;
  3959. line-height: 50px;
  3960. font-weight: 400;
  3961. font-style: normal;
  3962. font-family: Arial;
  3963. padding: 0 0 0 0px;
  3964. text-decoration: none;
  3965. background-color: transparent;
  3966. border-color: transparent;
  3967. border-style: none;
  3968. border-width: 0px;
  3969. border-radius: 0 0 0 0px;
  3970. text-align: center
  3971. }
  3972. .tp-caption.VideoPlayer-Social:hover,
  3973. .VideoPlayer-Social:hover {
  3974. color: rgba(255, 255, 255, 1.00);
  3975. text-decoration: none;
  3976. background-color: transparent;
  3977. border-color: transparent;
  3978. border-style: none;
  3979. border-width: 0px;
  3980. border-radius: 0px 0px 0px 0px;
  3981. cursor: pointer
  3982. }
  3983. .tp-caption.VideoControls-Mute,
  3984. .VideoControls-Mute {
  3985. color: rgba(0, 0, 0, 1.00);
  3986. font-size: 20px;
  3987. line-height: 50px;
  3988. font-weight: 500;
  3989. font-style: normal;
  3990. font-family: Roboto;
  3991. padding: 0px 0px 0px 0px;
  3992. text-decoration: none;
  3993. background-color: rgba(255, 255, 255, 1.00);
  3994. border-color: rgba(0, 0, 0, 1.00);
  3995. border-style: solid;
  3996. border-width: 0px;
  3997. border-radius: 100px 100px 100px 100px;
  3998. text-align: center
  3999. }
  4000. .tp-caption.VideoControls-Mute:hover,
  4001. .VideoControls-Mute:hover {
  4002. color: rgba(0, 0, 0, 1.00);
  4003. text-decoration: none;
  4004. background-color: rgba(255, 255, 255, 1.00);
  4005. border-color: rgba(0, 0, 0, 1.00);
  4006. border-style: solid;
  4007. border-width: 0px;
  4008. border-radius: 100px 100px 100px 100px;
  4009. cursor: pointer
  4010. }
  4011. .tp-caption.VideoControls-Pause,
  4012. .VideoControls-Pause {
  4013. color: rgba(0, 0, 0, 1.00);
  4014. font-size: 20px;
  4015. line-height: 50px;
  4016. font-weight: 500;
  4017. font-style: normal;
  4018. font-family: Roboto;
  4019. padding: 0px 0px 0px 0px;
  4020. text-decoration: none;
  4021. background-color: rgba(255, 255, 255, 1.00);
  4022. border-color: rgba(0, 0, 0, 1.00);
  4023. border-style: solid;
  4024. border-width: 0px;
  4025. border-radius: 100px 100px 100px 100px;
  4026. text-align: center
  4027. }
  4028. .tp-caption.VideoControls-Pause:hover,
  4029. .VideoControls-Pause:hover {
  4030. color: rgba(0, 0, 0, 1.00);
  4031. text-decoration: none;
  4032. background-color: rgba(255, 255, 255, 1.00);
  4033. border-color: rgba(0, 0, 0, 1.00);
  4034. border-style: solid;
  4035. border-width: 0px;
  4036. border-radius: 100px 100px 100px 100px;
  4037. cursor: pointer
  4038. }
  4039. .soundcloudwrapper iframe {
  4040. width: 100% !important
  4041. }
  4042. .tp-caption.SleekLanding-Title,
  4043. .SleekLanding-Title {
  4044. color: rgba(255, 255, 255, 1.00);
  4045. font-size: 35px;
  4046. line-height: 40px;
  4047. font-weight: 400;
  4048. font-style: normal;
  4049. font-family: Lato;
  4050. padding: 0 0 0 0px;
  4051. text-decoration: none;
  4052. text-align: left;
  4053. background-color: transparent;
  4054. border-color: transparent;
  4055. border-style: none;
  4056. border-width: 0px;
  4057. border-radius: 0 0 0 0px;
  4058. text-align: left;
  4059. letter-spacing: 5px
  4060. }
  4061. .tp-caption.SleekLanding-ButtonBG,
  4062. .SleekLanding-ButtonBG {
  4063. color: rgba(0, 0, 0, 1.00);
  4064. font-weight: 700;
  4065. font-style: normal;
  4066. padding: 0 0 0 0px;
  4067. text-decoration: none;
  4068. text-align: left;
  4069. background-color: rgba(255, 255, 255, 0.10);
  4070. border-color: rgba(0, 0, 0, 0);
  4071. border-style: solid;
  4072. border-width: 0px;
  4073. border-radius: 5px 5px 5px 5px;
  4074. text-align: left;
  4075. box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15)
  4076. }
  4077. .tp-caption.SleekLanding-SmallTitle,
  4078. .SleekLanding-SmallTitle {
  4079. color: rgba(255, 255, 255, 1.00);
  4080. font-size: 13px;
  4081. line-height: 50px;
  4082. font-weight: 900;
  4083. font-style: normal;
  4084. font-family: Lato;
  4085. padding: 0 0 0 0px;
  4086. text-decoration: none;
  4087. text-align: left;
  4088. background-color: transparent;
  4089. border-color: transparent;
  4090. border-style: none;
  4091. border-width: 0px;
  4092. border-radius: 0 0 0 0px;
  4093. text-align: left;
  4094. letter-spacing: 2px
  4095. }
  4096. .tp-caption.SleekLanding-BottomText,
  4097. .SleekLanding-BottomText {
  4098. color: rgba(255, 255, 255, 1.00);
  4099. font-size: 15px;
  4100. line-height: 24px;
  4101. font-weight: 400;
  4102. font-style: normal;
  4103. font-family: Lato;
  4104. padding: 0 0 0 0px;
  4105. text-decoration: none;
  4106. text-align: left;
  4107. background-color: transparent;
  4108. border-color: transparent;
  4109. border-style: none;
  4110. border-width: 0px;
  4111. border-radius: 0 0 0 0px;
  4112. text-align: left
  4113. }
  4114. .tp-caption.SleekLanding-Social,
  4115. .SleekLanding-Social {
  4116. color: rgba(255, 255, 255, 1.00);
  4117. font-size: 22px;
  4118. line-height: 30px;
  4119. font-weight: 400;
  4120. font-style: normal;
  4121. font-family: Arial;
  4122. padding: 0 0 0 0px;
  4123. text-decoration: none;
  4124. text-align: center;
  4125. background-color: transparent;
  4126. border-color: transparent;
  4127. border-style: none;
  4128. border-width: 0px;
  4129. border-radius: 0 0 0 0px;
  4130. text-align: center
  4131. }
  4132. .tp-caption.SleekLanding-Social:hover,
  4133. .SleekLanding-Social:hover {
  4134. color: rgba(0, 0, 0, 0.25);
  4135. text-decoration: none;
  4136. background-color: transparent;
  4137. border-color: transparent;
  4138. border-style: none;
  4139. border-width: 0px;
  4140. border-radius: 0 0 0 0px;
  4141. cursor: pointer
  4142. }
  4143. #rev_slider_429_1_wrapper .tp-loader.spinner2 {
  4144. background-color: #555555 !important;
  4145. }
  4146. .tp-fat {
  4147. font-weight: 900 !important;
  4148. }
  4149. .tp-caption.PostSlider-Category,
  4150. .PostSlider-Category {
  4151. color: rgba(0, 0, 0, 1.00);
  4152. font-size: 15px;
  4153. line-height: 15px;
  4154. font-weight: 300;
  4155. font-style: normal;
  4156. font-family: Roboto;
  4157. padding: 0 0 0 0px;
  4158. text-decoration: none;
  4159. background-color: transparent;
  4160. border-color: transparent;
  4161. border-style: none;
  4162. border-width: 0px;
  4163. border-radius: 0 0 0 0px;
  4164. letter-spacing: 3px;
  4165. text-align: left
  4166. }
  4167. .tp-caption.PostSlider-Title,
  4168. .PostSlider-Title {
  4169. color: rgba(0, 0, 0, 1.00);
  4170. font-size: 40px;
  4171. line-height: 40px;
  4172. font-weight: 400;
  4173. font-style: normal;
  4174. font-family: "Playfair Display";
  4175. padding: 0 0 0 0px;
  4176. text-decoration: none;
  4177. background-color: transparent;
  4178. border-color: transparent;
  4179. border-style: none;
  4180. border-width: 0px;
  4181. border-radius: 0 0 0 0px;
  4182. text-align: left
  4183. }
  4184. .tp-caption.PostSlider-Content,
  4185. .PostSlider-Content {
  4186. color: rgba(119, 119, 119, 1.00);
  4187. font-size: 15px;
  4188. line-height: 23px;
  4189. font-weight: 400;
  4190. font-style: normal;
  4191. font-family: Roboto;
  4192. padding: 0 0 0 0px;
  4193. text-decoration: none;
  4194. background-color: transparent;
  4195. border-color: transparent;
  4196. border-style: none;
  4197. border-width: 0px;
  4198. border-radius: 0 0 0 0px;
  4199. text-align: left
  4200. }
  4201. .tp-caption.PostSlider-Button,
  4202. .PostSlider-Button {
  4203. color: rgba(0, 0, 0, 1.00);
  4204. font-size: 15px;
  4205. line-height: 40px;
  4206. font-weight: 500;
  4207. font-style: normal;
  4208. font-family: Roboto;
  4209. padding: 1px 56px 1px 32px;
  4210. text-decoration: none;
  4211. background-color: rgba(255, 255, 255, 1.00);
  4212. border-color: rgba(0, 0, 0, 1.00);
  4213. border-style: solid;
  4214. border-width: 1px;
  4215. border-radius: 0px 0px 0px 0px;
  4216. text-align: left
  4217. }
  4218. .tp-caption.PostSlider-Button:hover,
  4219. .PostSlider-Button:hover {
  4220. color: rgba(0, 0, 0, 1.00);
  4221. text-decoration: none;
  4222. background-color: rgba(238, 238, 238, 1.00);
  4223. border-color: rgba(0, 0, 0, 1.00);
  4224. border-style: solid;
  4225. border-width: 1px;
  4226. border-radius: 0px 0px 0px 0px;
  4227. cursor: pointer
  4228. }
  4229. /* media queries */
  4230. @media only screen and (max-width: 960px) {} @media only screen and (max-width: 768px) {} .tp-caption.LandingPage-Title,
  4231. .LandingPage-Title {
  4232. color:rgba(255,
  4233. 255,
  4234. 255,
  4235. 1.00);
  4236. font-size:70px;
  4237. line-height:80px;
  4238. font-weight:900;
  4239. font-style:normal;
  4240. font-family:Lato;
  4241. padding:0 0 0 0px;
  4242. text-decoration:none;
  4243. background-color:transparent;
  4244. border-color:transparent;
  4245. border-style:none;
  4246. border-width:0px;
  4247. border-radius:0 0 0 0px;
  4248. text-align:left;
  4249. letter-spacing:10px
  4250. }
  4251. .tp-caption.LandingPage-SubTitle,
  4252. .LandingPage-SubTitle {
  4253. color: rgba(255, 255, 255, 1.00);
  4254. font-size: 20px;
  4255. line-height: 30px;
  4256. font-weight: 400;
  4257. font-style: italic;
  4258. font-family: Georgia, serif;
  4259. padding: 0 0 0 0px;
  4260. text-decoration: none;
  4261. background-color: transparent;
  4262. border-color: transparent;
  4263. border-style: none;
  4264. border-width: 0px;
  4265. border-radius: 0 0 0 0px;
  4266. text-align: left
  4267. }
  4268. .tp-caption.LandingPage-Button,
  4269. .LandingPage-Button {
  4270. color: rgba(0, 0, 0, 1.00);
  4271. font-size: 15px;
  4272. line-height: 54px;
  4273. font-weight: 500;
  4274. font-style: normal;
  4275. font-family: Roboto;
  4276. padding: 0px 35px 0px 35px;
  4277. text-decoration: none;
  4278. background-color: rgba(255, 255, 255, 1.00);
  4279. border-color: rgba(0, 0, 0, 1.00);
  4280. border-style: solid;
  4281. border-width: 0px;
  4282. border-radius: 0px 0px 0px 0px;
  4283. text-align: left;
  4284. letter-spacing: 3px
  4285. }
  4286. .tp-caption.LandingPage-Button:hover,
  4287. .LandingPage-Button:hover {
  4288. color: rgba(0, 0, 0, 1.00);
  4289. text-decoration: none;
  4290. background-color: rgba(255, 255, 255, 1.00);
  4291. border-color: rgba(0, 0, 0, 1.00);
  4292. border-style: solid;
  4293. border-width: 0px;
  4294. border-radius: 0px 0px 0px 0px;
  4295. cursor: pointer
  4296. }
  4297. .tp-caption.App-Content a,
  4298. .tp-caption.App-Content a:visited {
  4299. color: #89124e !important;
  4300. border-bottom: 1px solid transparent !important;
  4301. font-weight: bold !important;
  4302. }
  4303. .tp-caption.App-Content a:hover {
  4304. border-bottom: 1px solid #89124e !important;
  4305. }
  4306. .tp-caption.RockBand-LogoText,
  4307. .RockBand-LogoText {
  4308. color: rgba(255, 255, 255, 1.00);
  4309. font-size: 60px;
  4310. line-height: 60px;
  4311. font-weight: 700;
  4312. font-style: normal;
  4313. font-family: Oswald;
  4314. padding: 0 0 0 0px;
  4315. text-decoration: none;
  4316. text-align: left;
  4317. background-color: transparent;
  4318. border-color: transparent;
  4319. border-style: none;
  4320. border-width: 0px;
  4321. border-radius: 0 0 0 0px;
  4322. text-align: left
  4323. }
  4324. .tp-caption.Twitter-Content a,
  4325. .tp-caption.Twitter-Content a:visited {
  4326. color: #fff !important;
  4327. text-decoration: underline !important;
  4328. }
  4329. .tp-caption.Twitter-Content a:hover {
  4330. color: #fff !important;
  4331. text-decoration: none !important;
  4332. }
  4333. .soundcloudwrapper iframe {
  4334. width: 100% !important
  4335. }
  4336. .tp-caption.Agency-LogoText,
  4337. .Agency-LogoText {
  4338. color: rgba(255, 255, 255, 1.00);
  4339. font-size: 12px;
  4340. line-height: 20px;
  4341. font-weight: 400;
  4342. font-style: normal;
  4343. font-family: Lato;
  4344. padding: 0 0 0 0px;
  4345. text-decoration: none;
  4346. text-align: center;
  4347. background-color: transparent;
  4348. border-color: transparent;
  4349. border-style: none;
  4350. border-width: 0px;
  4351. border-radius: 0 0 0 0px;
  4352. text-align: center;
  4353. letter-spacing: 1px
  4354. }
  4355. .tp-caption.ComingSoon-Highlight,
  4356. .ComingSoon-Highlight {
  4357. color: rgba(255, 255, 255, 1.00);
  4358. font-size: 20px;
  4359. line-height: 37px;
  4360. font-weight: 400;
  4361. font-style: normal;
  4362. font-family: Lato;
  4363. padding: 0 20px 3px 20px;
  4364. text-decoration: none;
  4365. text-align: left;
  4366. background-color: rgba(0, 154, 238, 1.00);
  4367. border-color: transparent;
  4368. border-style: none;
  4369. border-width: 0px;
  4370. border-radius: 0 0 0 0px;
  4371. text-align: left
  4372. }
  4373. .tp-caption.ComingSoon-Count,
  4374. .ComingSoon-Count {
  4375. color: rgba(255, 255, 255, 1.00);
  4376. font-size: 50px;
  4377. line-height: 50px;
  4378. font-weight: 900;
  4379. font-style: normal;
  4380. font-family: Lato;
  4381. padding: 0 0 0 0px;
  4382. text-decoration: none;
  4383. text-align: left;
  4384. background-color: transparent;
  4385. border-color: transparent;
  4386. border-style: none;
  4387. border-width: 0px;
  4388. border-radius: 0 0 0 0px;
  4389. text-align: left
  4390. }
  4391. .tp-caption.ComingSoon-CountUnit,
  4392. .ComingSoon-CountUnit {
  4393. color: rgba(255, 255, 255, 1.00);
  4394. font-size: 20px;
  4395. line-height: 20px;
  4396. font-weight: 400;
  4397. font-style: normal;
  4398. font-family: Lato;
  4399. padding: 0 0 0 0px;
  4400. text-decoration: none;
  4401. text-align: center;
  4402. background-color: transparent;
  4403. border-color: transparent;
  4404. border-style: none;
  4405. border-width: 0px;
  4406. border-radius: 0 0 0 0px;
  4407. text-align: center
  4408. }
  4409. .tp-caption.ComingSoon-NotifyMe,
  4410. .ComingSoon-NotifyMe {
  4411. color: rgba(164, 157, 143, 1.00);
  4412. font-size: 27px;
  4413. line-height: 35px;
  4414. font-weight: 600;
  4415. font-style: normal;
  4416. font-family: Lato;
  4417. padding: 0 0 0 0px;
  4418. text-decoration: none;
  4419. text-align: center;
  4420. background-color: transparent;
  4421. border-color: transparent;
  4422. border-style: none;
  4423. border-width: 0px;
  4424. border-radius: 0 0 0 0px;
  4425. text-align: center
  4426. }
  4427. #mc_embed_signup input#mce-EMAIL {
  4428. font-family: "Lato", sans-serif;
  4429. font-size: 15px;
  4430. color: #000;
  4431. background-color: #fff;
  4432. line-height: 46px;
  4433. padding: 0 20px;
  4434. cursor: text;
  4435. border: 1px solid #fff;
  4436. width: 400px;
  4437. margin-bottom: 0px;
  4438. -webkit-transition: background-color 0.5s;
  4439. -moz-transition: background-color 0.5s;
  4440. -o-transition: background-color 0.5s;
  4441. -ms-transition: background-color 0.5s;
  4442. transition: background-color 0.5s;
  4443. border-radius: 0px;
  4444. }
  4445. #mc_embed_signup input#mce-EMAIL[type="email"]:focus {
  4446. background-color: #fff;
  4447. border: 1px solid #666;
  4448. border-right: 0;
  4449. }
  4450. #mc_embed_signup input#mc-embedded-subscribe,
  4451. #mc_embed_signup input#mc-embedded-subscribe:focus {
  4452. font-family: "Lato", sans-serif;
  4453. line-height: 46px;
  4454. letter-spacing: 1px;
  4455. text-transform: uppercase;
  4456. font-size: 13px;
  4457. font-weight: 900;
  4458. padding: 0 20px;
  4459. border: 1px solid #009aee;
  4460. background: #009aee;
  4461. color: #fff;
  4462. border-radius: 0px;
  4463. }
  4464. #mc_embed_signup input#mc-embedded-subscribe:hover {
  4465. background: #0083d4;
  4466. }
  4467. @media only screen and (max-width: 767px) {
  4468. #mc_embed_signup input#mce-EMAIL {
  4469. width: 200px;
  4470. }
  4471. }
  4472. .tp-caption.Agency-SmallTitle,
  4473. .Agency-SmallTitle {
  4474. color: rgba(255, 255, 255, 1.00);
  4475. font-size: 15px;
  4476. line-height: 22px;
  4477. font-weight: 400;
  4478. font-style: normal;
  4479. font-family: lato;
  4480. padding: 0 0 0 0px;
  4481. text-decoration: none;
  4482. text-align: center;
  4483. background-color: transparent;
  4484. border-color: transparent;
  4485. border-style: none;
  4486. border-width: 0px;
  4487. border-radius: 0 0 0 0px;
  4488. text-align: center;
  4489. letter-spacing: 6px
  4490. }
  4491. .tp-caption.Agency-SmallContent,
  4492. .Agency-SmallContent {
  4493. color: rgba(255, 255, 255, 1.00);
  4494. font-size: 15px;
  4495. line-height: 24px;
  4496. font-weight: 400;
  4497. font-style: normal;
  4498. font-family: lato;
  4499. padding: 0 0 0 0px;
  4500. text-decoration: none;
  4501. text-align: center;
  4502. background-color: transparent;
  4503. border-color: transparent;
  4504. border-style: none;
  4505. border-width: 0px;
  4506. border-radius: 0 0 0 0px;
  4507. text-align: center
  4508. }
  4509. .tp-caption.Agency-SmallLink,
  4510. .Agency-SmallLink {
  4511. color: rgba(248, 124, 9, 1.00);
  4512. font-size: 12px;
  4513. line-height: 22px;
  4514. font-weight: 700;
  4515. font-style: normal;
  4516. font-family: lato;
  4517. padding: 0 0 0px 0;
  4518. text-decoration: none;
  4519. text-align: center;
  4520. background-color: transparent;
  4521. border-color: transparent;
  4522. border-style: none;
  4523. border-width: 0px;
  4524. border-radius: 0 0 0 0px;
  4525. text-align: center;
  4526. letter-spacing: 2px;
  4527. border-bottom: 1px solid #f87c09 !important
  4528. }
  4529. .tp-caption.Agency-SmallLink:hover,
  4530. .Agency-SmallLink:hover {
  4531. color: rgba(255, 255, 255, 1.00);
  4532. text-decoration: none;
  4533. background-color: transparent;
  4534. border-color: transparent;
  4535. border-style: none;
  4536. border-width: 0px;
  4537. border-radius: 0 0 0 0px;
  4538. cursor: pointer
  4539. }
  4540. .tp-caption.Agency-NavButton,
  4541. .Agency-NavButton {
  4542. color: rgba(51, 51, 51, 1.00);
  4543. font-size: 17px;
  4544. line-height: 50px;
  4545. font-weight: 500;
  4546. font-style: normal;
  4547. font-family: Roboto;
  4548. padding: 0px 0px 0px 0px;
  4549. text-decoration: none;
  4550. text-align: center;
  4551. background-color: rgba(255, 255, 255, 1.00);
  4552. border-color: rgba(0, 0, 0, 1.00);
  4553. border-style: solid;
  4554. border-width: 0px;
  4555. border-radius: 0px 0px 0px 0px;
  4556. text-align: center
  4557. }
  4558. .tp-caption.Agency-NavButton:hover,
  4559. .Agency-NavButton:hover {
  4560. color: rgba(255, 255, 255, 1.00);
  4561. text-decoration: none;
  4562. background-color: rgba(51, 51, 51, 1.00);
  4563. border-color: rgba(0, 0, 0, 1.00);
  4564. border-style: solid;
  4565. border-width: 0px;
  4566. border-radius: 0px 0px 0px 0px;
  4567. cursor: pointer
  4568. }
  4569. .tp-caption.Agency-SmallLinkGreen,
  4570. .Agency-SmallLinkGreen {
  4571. color: rgba(109, 177, 155, 1.00);
  4572. font-size: 12px;
  4573. line-height: 22px;
  4574. font-weight: 700;
  4575. font-style: normal;
  4576. font-family: lato;
  4577. padding: 0 0 0px 0;
  4578. text-decoration: none;
  4579. text-align: center;
  4580. background-color: transparent;
  4581. border-color: transparent;
  4582. border-style: none;
  4583. border-width: 0px;
  4584. border-radius: 0 0 0 0px;
  4585. text-align: center;
  4586. letter-spacing: 2px;
  4587. border-bottom: 1px solid #6db19b !important
  4588. }
  4589. .tp-caption.Agency-SmallLinkGreen:hover,
  4590. .Agency-SmallLinkGreen:hover {
  4591. color: rgba(255, 255, 255, 1.00);
  4592. text-decoration: none;
  4593. background-color: transparent;
  4594. border-color: transparent;
  4595. border-style: none;
  4596. border-width: 0px;
  4597. border-radius: 0 0 0 0px;
  4598. cursor: pointer
  4599. }
  4600. .tp-caption.Agency-SmallLinkBlue,
  4601. .Agency-SmallLinkBlue {
  4602. color: rgba(153, 153, 153, 1.00);
  4603. font-size: 12px;
  4604. line-height: 22px;
  4605. font-weight: 700;
  4606. font-style: normal;
  4607. font-family: lato;
  4608. padding: 0 0 0px 0;
  4609. text-decoration: none;
  4610. text-align: center;
  4611. background-color: transparent;
  4612. border-color: transparent;
  4613. border-style: none;
  4614. border-width: 0px;
  4615. border-radius: 0 0 0 0px;
  4616. text-align: center;
  4617. letter-spacing: 2px;
  4618. border-bottom: 1px solid #999 !important
  4619. }
  4620. .tp-caption.Agency-SmallLinkBlue:hover,
  4621. .Agency-SmallLinkBlue:hover {
  4622. color: rgba(255, 255, 255, 1.00);
  4623. text-decoration: none;
  4624. background-color: transparent;
  4625. border-color: transparent;
  4626. border-style: none;
  4627. border-width: 0px;
  4628. border-radius: 0 0 0 0px;
  4629. cursor: pointer
  4630. }
  4631. .tp-caption.Agency-LogoText,
  4632. .Agency-LogoText {
  4633. color: rgba(255, 255, 255, 1.00);
  4634. font-size: 12px;
  4635. line-height: 20px;
  4636. font-weight: 400;
  4637. font-style: normal;
  4638. font-family: Lato;
  4639. padding: 0 0 0 0px;
  4640. text-decoration: none;
  4641. text-align: center;
  4642. background-color: transparent;
  4643. border-color: transparent;
  4644. border-style: none;
  4645. border-width: 0px;
  4646. border-radius: 0 0 0 0px;
  4647. text-align: center;
  4648. letter-spacing: 1px
  4649. }
  4650. .tp-caption.Agency-ArrowTooltip,
  4651. .Agency-ArrowTooltip {
  4652. color: rgba(51, 51, 51, 1.00);
  4653. font-size: 15px;
  4654. line-height: 20px;
  4655. font-weight: 400;
  4656. font-style: normal;
  4657. font-family: "Permanent Marker";
  4658. padding: 0 0 0 0px;
  4659. text-decoration: none;
  4660. text-align: left;
  4661. background-color: transparent;
  4662. border-color: transparent;
  4663. border-style: none;
  4664. border-width: 0px;
  4665. border-radius: 0 0 0 0px;
  4666. text-align: left
  4667. }
  4668. .tp-caption.Agency-SmallSocial,
  4669. .Agency-SmallSocial {
  4670. color: rgba(255, 255, 255, 1.00);
  4671. font-size: 30px;
  4672. line-height: 30px;
  4673. font-weight: 400;
  4674. font-style: normal;
  4675. font-family: Arial;
  4676. padding: 0 0 0 0px;
  4677. text-decoration: none;
  4678. text-align: center;
  4679. background-color: transparent;
  4680. border-color: transparent;
  4681. border-style: none;
  4682. border-width: 0px;
  4683. border-radius: 0 0 0 0px;
  4684. text-align: center
  4685. }
  4686. .tp-caption.Agency-SmallSocial:hover,
  4687. .Agency-SmallSocial:hover {
  4688. color: rgba(51, 51, 51, 1.00);
  4689. text-decoration: none;
  4690. background-color: transparent;
  4691. border-color: transparent;
  4692. border-style: none;
  4693. border-width: 0px;
  4694. border-radius: 0px 0px 0px 0px;
  4695. cursor: pointer
  4696. }
  4697. .tp-caption.Twitter-Content a,
  4698. .tp-caption.Twitter-Content a:visited {
  4699. color: #0084B4 !important
  4700. }
  4701. .tp-caption.Twitter-Content a:hover {
  4702. color: #0084B4 !important;
  4703. text-decoration: underline !important
  4704. }
  4705. .tp-caption.CreativeFrontPage-Btn,
  4706. .CreativeFrontPage-Btn {
  4707. color: rgba(255, 255, 255, 1.00);
  4708. font-size: 14px;
  4709. line-height: 60px;
  4710. font-weight: 900;
  4711. font-style: normal;
  4712. font-family: Roboto;
  4713. padding: 0px 50px 0px 50px;
  4714. text-decoration: none;
  4715. text-align: left;
  4716. background-color: rgba(0, 104, 92, 1.00);
  4717. border-color: rgba(0, 0, 0, 1.00);
  4718. border-style: solid;
  4719. border-width: 0px;
  4720. border-radius: 4px 4px 4px 4px;
  4721. letter-spacing: 2px
  4722. }
  4723. .tp-caption.CreativeFrontPage-Btn:hover,
  4724. .CreativeFrontPage-Btn:hover {
  4725. color: rgba(255, 255, 255, 1.00);
  4726. text-decoration: none;
  4727. background-color: rgba(0, 0, 0, 0.25);
  4728. border-color: rgba(0, 0, 0, 1.00);
  4729. border-style: solid;
  4730. border-width: 0px;
  4731. border-radius: 4px 4px 4px 4px;
  4732. cursor: pointer
  4733. }
  4734. .tp-caption.CreativeFrontPage-Menu,
  4735. .CreativeFrontPage-Menu {
  4736. color: rgba(255, 255, 255, 1.00);
  4737. font-size: 14px;
  4738. line-height: 14px;
  4739. font-weight: 500;
  4740. font-style: normal;
  4741. font-family: roboto;
  4742. padding: 0 0 0 0px;
  4743. text-decoration: none;
  4744. text-align: left;
  4745. background-color: transparent;
  4746. border-color: transparent;
  4747. border-style: none;
  4748. border-width: 0px;
  4749. border-radius: 0 0 0 0px;
  4750. letter-spacing: 2px
  4751. }
  4752. .tp-flip-index {
  4753. z-index: 1000 !important;
  4754. }
  4755. .tp-caption.Twitter-Content a,
  4756. .tp-caption.Twitter-Content a:visited {
  4757. color: #0084B4 !important
  4758. }
  4759. .tp-caption.Twitter-Content a:hover {
  4760. color: #0084B4 !important;
  4761. text-decoration: underline !important
  4762. }
  4763. .tp-caption.FullScreenMenu-Category,
  4764. .FullScreenMenu-Category {
  4765. color: rgba(17, 17, 17, 1.00);
  4766. font-size: 20px;
  4767. line-height: 20px;
  4768. font-weight: 700;
  4769. font-style: normal;
  4770. font-family: BenchNine;
  4771. padding: 21px 30px 16px 30px;
  4772. text-decoration: none;
  4773. text-align: left;
  4774. background-color: rgba(255, 255, 255, 0.90);
  4775. border-color: transparent;
  4776. border-style: none;
  4777. border-width: 0px;
  4778. border-radius: 0 0 0 0px;
  4779. letter-spacing: 3px
  4780. }
  4781. .tp-caption.FullScreenMenu-Title,
  4782. .FullScreenMenu-Title {
  4783. color: rgba(255, 255, 255, 1.00);
  4784. font-size: 65px;
  4785. line-height: 70px;
  4786. font-weight: 700;
  4787. font-style: normal;
  4788. font-family: BenchNine;
  4789. padding: 21px 30px 16px 30px;
  4790. text-decoration: none;
  4791. text-align: left;
  4792. background-color: rgba(17, 17, 17, 0.90);
  4793. border-color: transparent;
  4794. border-style: none;
  4795. border-width: 0px;
  4796. border-radius: 0 0 0 0px
  4797. }
  4798. .tp-caption.Twitter-Content a,
  4799. .tp-caption.Twitter-Content a:visited {
  4800. color: #0084B4 !important
  4801. }
  4802. .tp-caption.Twitter-Content a:hover {
  4803. color: #0084B4 !important;
  4804. text-decoration: underline !important
  4805. }
  4806. .tp-caption.TechJournal-Button,
  4807. .TechJournal-Button {
  4808. color: rgba(255, 255, 255, 1.00);
  4809. font-size: 13px;
  4810. line-height: 40px;
  4811. font-weight: 900;
  4812. font-style: normal;
  4813. font-family: Raleway;
  4814. padding: 1px 30px 1px 30px;
  4815. text-decoration: none;
  4816. text-align: left;
  4817. background-color: rgba(138, 0, 255, 1.00);
  4818. border-color: rgba(0, 0, 0, 1.00);
  4819. border-style: solid;
  4820. border-width: 0px;
  4821. border-radius: 0px 0px 0px 0px;
  4822. letter-spacing: 3px
  4823. }
  4824. .tp-caption.TechJournal-Button:hover,
  4825. .TechJournal-Button:hover {
  4826. color: rgba(0, 0, 0, 1.00);
  4827. text-decoration: none;
  4828. background-color: rgba(255, 255, 255, 1.00);
  4829. border-color: rgba(0, 0, 0, 1.00);
  4830. border-style: solid;
  4831. border-width: 0px;
  4832. border-radius: 0px 0px 0px 0px;
  4833. cursor: pointer
  4834. }
  4835. .tp-caption.TechJournal-Big,
  4836. .TechJournal-Big {
  4837. color: rgba(255, 255, 255, 1.00);
  4838. font-size: 120px;
  4839. line-height: 120px;
  4840. font-weight: 900;
  4841. font-style: normal;
  4842. font-family: Raleway;
  4843. padding: 0 0 0 0px;
  4844. text-decoration: none;
  4845. text-align: left;
  4846. background-color: transparent;
  4847. border-color: transparent;
  4848. border-style: none;
  4849. border-width: 0px;
  4850. border-radius: 0 0 0 0px;
  4851. letter-spacing: 0px
  4852. }
  4853. .rev_slider {
  4854. overflow: hidden;
  4855. }
  4856. .effect_layer {
  4857. position: absolute;
  4858. top: 0px;
  4859. left: 0px;
  4860. width: 100%;
  4861. height: 100%;
  4862. }
  4863. .tp-caption.Twitter-Content a,
  4864. .tp-caption.Twitter-Content a:visited {
  4865. color: #0084B4 !important
  4866. }
  4867. .tp-caption.Twitter-Content a:hover {
  4868. color: #0084B4 !important;
  4869. text-decoration: underline !important
  4870. }
  4871. #menu_forcefullwidth {
  4872. z-index: 5000;
  4873. position: fixed !important;
  4874. top: 0px;
  4875. left: 0px;
  4876. width: 100%
  4877. }
  4878. .tp-caption.FullSiteBlock-Title,
  4879. .FullSiteBlock-Title {
  4880. color: rgba(51, 51, 51, 1.00);
  4881. font-size: 55px;
  4882. line-height: 65px;
  4883. font-weight: 300;
  4884. font-style: normal;
  4885. font-family: Lato;
  4886. padding: 0 0 0 0px;
  4887. text-decoration: none;
  4888. text-align: center;
  4889. background-color: transparent;
  4890. border-color: transparent;
  4891. border-style: none;
  4892. border-width: 0px;
  4893. border-radius: 0 0 0 0px;
  4894. text-align: center
  4895. }
  4896. .tp-caption.FullSiteBlock-SubTitle,
  4897. .FullSiteBlock-SubTitle {
  4898. color: rgba(51, 51, 51, 1.00);
  4899. font-size: 25px;
  4900. line-height: 34px;
  4901. font-weight: 300;
  4902. font-style: normal;
  4903. font-family: Lato;
  4904. padding: 0 0 0 0px;
  4905. text-decoration: none;
  4906. text-align: center;
  4907. background-color: transparent;
  4908. border-color: transparent;
  4909. border-style: none;
  4910. border-width: 0px;
  4911. border-radius: 0 0 0 0px;
  4912. text-align: center
  4913. }
  4914. .tp-caption.FullSiteBlock-Link,
  4915. .FullSiteBlock-Link {
  4916. color: rgba(0, 150, 255, 1.00);
  4917. font-size: 25px;
  4918. line-height: 24px;
  4919. font-weight: 300;
  4920. font-style: normal;
  4921. font-family: Lato;
  4922. padding: 0 0 0 0px;
  4923. text-decoration: none;
  4924. text-align: center;
  4925. background-color: transparent;
  4926. border-color: transparent;
  4927. border-style: none;
  4928. border-width: 0px;
  4929. border-radius: 0 0 0 0px;
  4930. text-align: center
  4931. }
  4932. .tp-caption.FullSiteBlock-Link:hover,
  4933. .FullSiteBlock-Link:hover {
  4934. color: rgba(51, 51, 51, 1.00);
  4935. text-decoration: none;
  4936. background-color: transparent;
  4937. border-color: transparent;
  4938. border-style: none;
  4939. border-width: 0px;
  4940. border-radius: 0 0 0 0px;
  4941. cursor: pointer
  4942. }
  4943. .tp-caption.FullSiteBlock-DownButton,
  4944. .FullSiteBlock-DownButton {
  4945. color: rgba(51, 51, 51, 1.00);
  4946. font-size: 25px;
  4947. line-height: 32px;
  4948. font-weight: 500;
  4949. font-style: normal;
  4950. font-family: Roboto;
  4951. padding: 1px 1px 1px 1px;
  4952. text-decoration: none;
  4953. text-align: center;
  4954. background-color: transparent;
  4955. border-color: rgba(51, 51, 51, 1.00);
  4956. border-style: solid;
  4957. border-width: 1px;
  4958. border-radius: 30px 30px 30px 30px;
  4959. text-align: center
  4960. }
  4961. .tp-caption.FullSiteBlock-DownButton:hover,
  4962. .FullSiteBlock-DownButton:hover {
  4963. color: rgba(0, 150, 255, 1.00);
  4964. text-decoration: none;
  4965. background-color: transparent;
  4966. border-color: rgba(0, 150, 255, 1.00);
  4967. border-style: solid;
  4968. border-width: 1px;
  4969. border-radius: 30px 30px 30px 30px;
  4970. cursor: pointer
  4971. }
  4972. .tp-caption.FullSiteBlock-Title,
  4973. .FullSiteBlock-Title {
  4974. color: rgba(51, 51, 51, 1.00);
  4975. font-size: 55px;
  4976. line-height: 65px;
  4977. font-weight: 300;
  4978. font-style: normal;
  4979. font-family: Lato;
  4980. padding: 0 0 0 0px;
  4981. text-decoration: none;
  4982. text-align: center;
  4983. background-color: transparent;
  4984. border-color: transparent;
  4985. border-style: none;
  4986. border-width: 0px;
  4987. border-radius: 0 0 0 0px;
  4988. text-align: center
  4989. }
  4990. .tp-caption.FullSiteBlock-SubTitle,
  4991. .FullSiteBlock-SubTitle {
  4992. color: rgba(51, 51, 51, 1.00);
  4993. font-size: 25px;
  4994. line-height: 34px;
  4995. font-weight: 300;
  4996. font-style: normal;
  4997. font-family: Lato;
  4998. padding: 0 0 0 0px;
  4999. text-decoration: none;
  5000. text-align: center;
  5001. background-color: transparent;
  5002. border-color: transparent;
  5003. border-style: none;
  5004. border-width: 0px;
  5005. border-radius: 0 0 0 0px;
  5006. text-align: center
  5007. }
  5008. .tp-caption.FullSiteBlock-Link,
  5009. .FullSiteBlock-Link {
  5010. color: rgba(0, 150, 255, 1.00);
  5011. font-size: 25px;
  5012. line-height: 24px;
  5013. font-weight: 300;
  5014. font-style: normal;
  5015. font-family: Lato;
  5016. padding: 0 0 0 0px;
  5017. text-decoration: none;
  5018. text-align: center;
  5019. background-color: transparent;
  5020. border-color: transparent;
  5021. border-style: none;
  5022. border-width: 0px;
  5023. border-radius: 0 0 0 0px;
  5024. text-align: center
  5025. }
  5026. .tp-caption.FullSiteBlock-Link:hover,
  5027. .FullSiteBlock-Link:hover {
  5028. color: rgba(51, 51, 51, 1.00);
  5029. text-decoration: none;
  5030. background-color: transparent;
  5031. border-color: transparent;
  5032. border-style: none;
  5033. border-width: 0px;
  5034. border-radius: 0 0 0 0px;
  5035. cursor: pointer
  5036. }
  5037. .tp-caption.FullSiteBlock-DownButton,
  5038. .FullSiteBlock-DownButton {
  5039. color: rgba(51, 51, 51, 1.00);
  5040. font-size: 25px;
  5041. line-height: 32px;
  5042. font-weight: 500;
  5043. font-style: normal;
  5044. font-family: Roboto;
  5045. padding: 1px 1px 1px 1px;
  5046. text-decoration: none;
  5047. text-align: center;
  5048. background-color: transparent;
  5049. border-color: rgba(51, 51, 51, 1.00);
  5050. border-style: solid;
  5051. border-width: 1px;
  5052. border-radius: 30px 30px 30px 30px;
  5053. text-align: center
  5054. }
  5055. .tp-caption.FullSiteBlock-DownButton:hover,
  5056. .FullSiteBlock-DownButton:hover {
  5057. color: rgba(0, 150, 255, 1.00);
  5058. text-decoration: none;
  5059. background-color: transparent;
  5060. border-color: rgba(0, 150, 255, 1.00);
  5061. border-style: solid;
  5062. border-width: 1px;
  5063. border-radius: 30px 30px 30px 30px;
  5064. cursor: pointer
  5065. }
  5066. .tp-caption.FullSiteBlock-Title,
  5067. .FullSiteBlock-Title {
  5068. color: rgba(51, 51, 51, 1.00);
  5069. font-size: 55px;
  5070. line-height: 65px;
  5071. font-weight: 300;
  5072. font-style: normal;
  5073. font-family: Lato;
  5074. padding: 0 0 0 0px;
  5075. text-decoration: none;
  5076. text-align: center;
  5077. background-color: transparent;
  5078. border-color: transparent;
  5079. border-style: none;
  5080. border-width: 0px;
  5081. border-radius: 0 0 0 0px;
  5082. text-align: center
  5083. }
  5084. .tp-caption.FullSiteBlock-SubTitle,
  5085. .FullSiteBlock-SubTitle {
  5086. color: rgba(51, 51, 51, 1.00);
  5087. font-size: 25px;
  5088. line-height: 34px;
  5089. font-weight: 300;
  5090. font-style: normal;
  5091. font-family: Lato;
  5092. padding: 0 0 0 0px;
  5093. text-decoration: none;
  5094. text-align: center;
  5095. background-color: transparent;
  5096. border-color: transparent;
  5097. border-style: none;
  5098. border-width: 0px;
  5099. border-radius: 0 0 0 0px;
  5100. text-align: center
  5101. }
  5102. .tp-caption.FullSiteBlock-DownButton,
  5103. .FullSiteBlock-DownButton {
  5104. color: rgba(51, 51, 51, 1.00);
  5105. font-size: 25px;
  5106. line-height: 32px;
  5107. font-weight: 500;
  5108. font-style: normal;
  5109. font-family: Roboto;
  5110. padding: 1px 1px 1px 1px;
  5111. text-decoration: none;
  5112. text-align: center;
  5113. background-color: transparent;
  5114. border-color: rgba(51, 51, 51, 1.00);
  5115. border-style: solid;
  5116. border-width: 1px;
  5117. border-radius: 30px 30px 30px 30px;
  5118. text-align: center
  5119. }
  5120. .tp-caption.FullSiteBlock-DownButton:hover,
  5121. .FullSiteBlock-DownButton:hover {
  5122. color: rgba(0, 150, 255, 1.00);
  5123. text-decoration: none;
  5124. background-color: transparent;
  5125. border-color: rgba(0, 150, 255, 1.00);
  5126. border-style: solid;
  5127. border-width: 1px;
  5128. border-radius: 30px 30px 30px 30px;
  5129. cursor: pointer
  5130. }
  5131. .tp-caption.FullSiteBlock-Title,
  5132. .FullSiteBlock-Title {
  5133. color: rgba(51, 51, 51, 1.00);
  5134. font-size: 55px;
  5135. line-height: 65px;
  5136. font-weight: 300;
  5137. font-style: normal;
  5138. font-family: Lato;
  5139. padding: 0 0 0 0px;
  5140. text-decoration: none;
  5141. text-align: center;
  5142. background-color: transparent;
  5143. border-color: transparent;
  5144. border-style: none;
  5145. border-width: 0px;
  5146. border-radius: 0 0 0 0px;
  5147. text-align: center
  5148. }
  5149. .tp-caption.FullSiteBlock-SubTitle,
  5150. .FullSiteBlock-SubTitle {
  5151. color: rgba(51, 51, 51, 1.00);
  5152. font-size: 25px;
  5153. line-height: 34px;
  5154. font-weight: 300;
  5155. font-style: normal;
  5156. font-family: Lato;
  5157. padding: 0 0 0 0px;
  5158. text-decoration: none;
  5159. text-align: center;
  5160. background-color: transparent;
  5161. border-color: transparent;
  5162. border-style: none;
  5163. border-width: 0px;
  5164. border-radius: 0 0 0 0px;
  5165. text-align: center
  5166. }
  5167. .tp-caption.FullSiteBlock-Link,
  5168. .FullSiteBlock-Link {
  5169. color: rgba(0, 150, 255, 1.00);
  5170. font-size: 25px;
  5171. line-height: 24px;
  5172. font-weight: 300;
  5173. font-style: normal;
  5174. font-family: Lato;
  5175. padding: 0 0 0 0px;
  5176. text-decoration: none;
  5177. text-align: center;
  5178. background-color: transparent;
  5179. border-color: transparent;
  5180. border-style: none;
  5181. border-width: 0px;
  5182. border-radius: 0 0 0 0px;
  5183. text-align: center
  5184. }
  5185. .tp-caption.FullSiteBlock-Link:hover,
  5186. .FullSiteBlock-Link:hover {
  5187. color: rgba(51, 51, 51, 1.00);
  5188. text-decoration: none;
  5189. background-color: transparent;
  5190. border-color: transparent;
  5191. border-style: none;
  5192. border-width: 0px;
  5193. border-radius: 0 0 0 0px;
  5194. cursor: pointer
  5195. }
  5196. .tp-caption.FullSiteBlock-DownButton,
  5197. .FullSiteBlock-DownButton {
  5198. color: rgba(51, 51, 51, 1.00);
  5199. font-size: 25px;
  5200. line-height: 32px;
  5201. font-weight: 500;
  5202. font-style: normal;
  5203. font-family: Roboto;
  5204. padding: 1px 1px 1px 1px;
  5205. text-decoration: none;
  5206. text-align: center;
  5207. background-color: transparent;
  5208. border-color: rgba(51, 51, 51, 1.00);
  5209. border-style: solid;
  5210. border-width: 1px;
  5211. border-radius: 30px 30px 30px 30px;
  5212. text-align: center
  5213. }
  5214. .tp-caption.FullSiteBlock-DownButton:hover,
  5215. .FullSiteBlock-DownButton:hover {
  5216. color: rgba(0, 150, 255, 1.00);
  5217. text-decoration: none;
  5218. background-color: transparent;
  5219. border-color: rgba(0, 150, 255, 1.00);
  5220. border-style: solid;
  5221. border-width: 1px;
  5222. border-radius: 30px 30px 30px 30px;
  5223. cursor: pointer
  5224. }
  5225. .rev_slider {
  5226. overflow: hidden;
  5227. }
  5228. .effect_layer {
  5229. position: absolute;
  5230. top: 0px;
  5231. left: 0px;
  5232. width: 100%;
  5233. height: 100%;
  5234. }
  5235. .gyges .tp-thumb {
  5236. opacity: 1
  5237. }
  5238. .gyges .tp-thumb-img-wrap {
  5239. padding: 3px;
  5240. background-color: rgba(0, 0, 0, 0.25);
  5241. display: inline-block;
  5242. width: 100%;
  5243. height: 100%;
  5244. position: relative;
  5245. margin: 0px;
  5246. box-sizing: border-box;
  5247. transition: all 0.3s;
  5248. -webkit-transition: all 0.3s;
  5249. }
  5250. .gyges .tp-thumb-image {
  5251. padding: 3px;
  5252. display: block;
  5253. box-sizing: border-box;
  5254. position: relative;
  5255. -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  5256. -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  5257. box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  5258. }
  5259. .gyges .tp-thumb:hover .tp-thumb-img-wrap,
  5260. .gyges .tp-thumb.selected .tp-thumb-img-wrap {
  5261. background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  5262. background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
  5263. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  5264. background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  5265. background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  5266. background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  5267. }
  5268. .tp-caption.FullSiteBlock-Title,
  5269. .FullSiteBlock-Title {
  5270. color: rgba(51, 51, 51, 1.00);
  5271. font-size: 55px;
  5272. line-height: 65px;
  5273. font-weight: 300;
  5274. font-style: normal;
  5275. font-family: Lato;
  5276. padding: 0 0 0 0px;
  5277. text-decoration: none;
  5278. text-align: center;
  5279. background-color: transparent;
  5280. border-color: transparent;
  5281. border-style: none;
  5282. border-width: 0px;
  5283. border-radius: 0 0 0 0px;
  5284. text-align: center
  5285. }
  5286. .tp-caption.FullSiteBlock-SubTitle,
  5287. .FullSiteBlock-SubTitle {
  5288. color: rgba(51, 51, 51, 1.00);
  5289. font-size: 25px;
  5290. line-height: 34px;
  5291. font-weight: 300;
  5292. font-style: normal;
  5293. font-family: Lato;
  5294. padding: 0 0 0 0px;
  5295. text-decoration: none;
  5296. text-align: center;
  5297. background-color: transparent;
  5298. border-color: transparent;
  5299. border-style: none;
  5300. border-width: 0px;
  5301. border-radius: 0 0 0 0px;
  5302. text-align: center
  5303. }
  5304. .tp-caption.FullSiteBlock-Link,
  5305. .FullSiteBlock-Link {
  5306. color: rgba(0, 150, 255, 1.00);
  5307. font-size: 25px;
  5308. line-height: 24px;
  5309. font-weight: 300;
  5310. font-style: normal;
  5311. font-family: Lato;
  5312. padding: 0 0 0 0px;
  5313. text-decoration: none;
  5314. text-align: center;
  5315. background-color: transparent;
  5316. border-color: transparent;
  5317. border-style: none;
  5318. border-width: 0px;
  5319. border-radius: 0 0 0 0px;
  5320. text-align: center
  5321. }
  5322. .tp-caption.FullSiteBlock-Link:hover,
  5323. .FullSiteBlock-Link:hover {
  5324. color: rgba(51, 51, 51, 1.00);
  5325. text-decoration: none;
  5326. background-color: transparent;
  5327. border-color: transparent;
  5328. border-style: none;
  5329. border-width: 0px;
  5330. border-radius: 0 0 0 0px;
  5331. cursor: pointer
  5332. }
  5333. .tp-caption.FullSiteBlock-SubTitle,
  5334. .FullSiteBlock-SubTitle {
  5335. color: rgba(51, 51, 51, 1.00);
  5336. font-size: 25px;
  5337. line-height: 34px;
  5338. font-weight: 300;
  5339. font-style: normal;
  5340. font-family: Lato;
  5341. padding: 0 0 0 0px;
  5342. text-decoration: none;
  5343. text-align: center;
  5344. background-color: transparent;
  5345. border-color: transparent;
  5346. border-style: none;
  5347. border-width: 0px;
  5348. border-radius: 0 0 0 0px;
  5349. text-align: center
  5350. }
  5351. .tp-caption.FullSiteBlock-SubTitle,
  5352. .FullSiteBlock-SubTitle {
  5353. color: rgba(51, 51, 51, 1.00);
  5354. font-size: 25px;
  5355. line-height: 34px;
  5356. font-weight: 300;
  5357. font-style: normal;
  5358. font-family: Lato;
  5359. padding: 0 0 0 0px;
  5360. text-decoration: none;
  5361. text-align: center;
  5362. background-color: transparent;
  5363. border-color: transparent;
  5364. border-style: none;
  5365. border-width: 0px;
  5366. border-radius: 0 0 0 0px;
  5367. text-align: center
  5368. }
  5369. .tp-caption.FullSiteBlock-FooterLink,
  5370. .FullSiteBlock-FooterLink {
  5371. color: rgba(85, 85, 85, 1.00);
  5372. font-size: 15px;
  5373. line-height: 20px;
  5374. font-weight: 300;
  5375. font-style: normal;
  5376. font-family: Lato;
  5377. padding: 0 0 0 0px;
  5378. text-decoration: none;
  5379. text-align: left;
  5380. background-color: transparent;
  5381. border-color: transparent;
  5382. border-style: none;
  5383. border-width: 0px;
  5384. border-radius: 0 0 0 0px;
  5385. text-align: left
  5386. }
  5387. .tp-caption.FullSiteBlock-FooterLink:hover,
  5388. .FullSiteBlock-FooterLink:hover {
  5389. color: rgba(0, 150, 255, 1.00);
  5390. text-decoration: none;
  5391. background-color: transparent;
  5392. border-color: transparent;
  5393. border-style: none;
  5394. border-width: 0px;
  5395. border-radius: 0 0 0 0px;
  5396. cursor: pointer
  5397. }
  5398. .fb-share-button.fb_iframe_widget iframe {
  5399. width: 115px!important;
  5400. }
  5401. #tp-socialwrapper {
  5402. opacity: 0;
  5403. }
  5404. .tp-caption.Twitter-Content a,
  5405. .tp-caption.Twitter-Content a:visited {
  5406. color: #0084B4 !important
  5407. }
  5408. .tp-caption.Twitter-Content a:hover {
  5409. color: #0084B4 !important;
  5410. text-decoration: underline !important
  5411. }
  5412. #menu_forcefullwidth {
  5413. z-index: 5000;
  5414. position: fixed !important;
  5415. top: 0px;
  5416. left: 0px;
  5417. width: 100%
  5418. }
  5419. #tp-menubg {
  5420. background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  5421. /* FF3.6-15 */
  5422. background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  5423. /* Chrome10-25,Safari5.1-6 */
  5424. background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  5425. /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  5426. filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d9000000', endColorstr='#00000000', GradientType=0);
  5427. /* IE6-9 */
  5428. }
  5429. #mc_embed_signup input[type="email"] {
  5430. font-family: "Lato", sans-serif;
  5431. font-size: 16px;
  5432. font-weight: 400;
  5433. background-color: #fff;
  5434. color: #888 !important;
  5435. line-height: 46px;
  5436. padding: 0 20px;
  5437. cursor: text;
  5438. border: 0;
  5439. width: 400px;
  5440. margin-bottom: 0px;
  5441. -webkit-transition: background-color 0.5s;
  5442. -moz-transition: background-color 0.5s;
  5443. -o-transition: background-color 0.5s;
  5444. -ms-transition: background-color 0.5s;
  5445. transition: background-color 0.5s;
  5446. -webkit-border-radius: 3px;
  5447. -moz-border-radius: 3px;
  5448. border-radius: 3px;
  5449. }
  5450. #mc_embed_signup input[type="email"]::-webkit-input-placeholder {
  5451. color: #888 !important;
  5452. }
  5453. #mc_embed_signup input[type="email"]::-moz-placeholder {
  5454. color: #888 !important;
  5455. }
  5456. #mc_embed_signup input[type="email"]:-ms-input-placeholder {
  5457. color: #888 !important;
  5458. }
  5459. #mc_embed_signup input[type="email"]:focus {
  5460. background-color: #f5f5f5;
  5461. color: #454545;
  5462. }
  5463. #mc_embed_signup input#mc-embedded-subscribe,
  5464. #mc_embed_signup input#mc-embedded-subscribe:focus {
  5465. font-family: "Lato", sans-serif;
  5466. line-height: 46px;
  5467. font-size: 16px;
  5468. font-weight: 700;
  5469. padding: 0 30px;
  5470. border: 0;
  5471. background: #f04531;
  5472. text-transform: none;
  5473. color: #fff;
  5474. -webkit-border-radius: 3px;
  5475. -moz-border-radius: 3px;
  5476. border-radius: 3px;
  5477. }
  5478. #mc_embed_signup input#mc-embedded-subscribe:hover {
  5479. background: #e03727;
  5480. }
  5481. @media only screen and (max-width: 767px) {
  5482. #mc_embed_signup input[type="email"] {
  5483. width: 260px;
  5484. }
  5485. }
  5486. @media only screen and (max-width: 480px) {
  5487. #mc_embed_signup input[type="email"] {
  5488. width: 160px;
  5489. }
  5490. }
  5491. #rev_slider_167_6 .uranus.tparrows {
  5492. width: 50px;
  5493. height: 50px;
  5494. background: rgba(255, 255, 255, 0);
  5495. }
  5496. #rev_slider_167_6 .uranus.tparrows:before {
  5497. width: 50px;
  5498. height: 50px;
  5499. line-height: 50px;
  5500. font-size: 40px;
  5501. transition: all 0.3s;
  5502. -webkit-transition: all 0.3s;
  5503. }
  5504. #rev_slider_167_6 .uranus.tparrows:hover:before {
  5505. opacity: 0.75;
  5506. }
  5507. .tp-caption.FullSiteBlock-SubTitle,
  5508. .FullSiteBlock-SubTitle {
  5509. color: rgba(51, 51, 51, 1.00);
  5510. font-size: 25px;
  5511. line-height: 34px;
  5512. font-weight: 300;
  5513. font-style: normal;
  5514. font-family: Lato;
  5515. padding: 0 0 0 0px;
  5516. text-decoration: none;
  5517. text-align: center;
  5518. background-color: transparent;
  5519. border-color: transparent;
  5520. border-style: none;
  5521. border-width: 0px;
  5522. border-radius: 0 0 0 0px;
  5523. text-align: center
  5524. }
  5525. .tp-caption.ParallaxWebsite-FooterItem,
  5526. .ParallaxWebsite-FooterItem {
  5527. color: rgba(255, 255, 255, 0.50);
  5528. font-size: 16px;
  5529. line-height: 24px;
  5530. font-weight: 400;
  5531. font-style: normal;
  5532. font-family: Lato;
  5533. padding: 0 0 0 0px;
  5534. text-decoration: none;
  5535. text-align: left;
  5536. background-color: transparent;
  5537. border-color: transparent;
  5538. border-style: none;
  5539. border-width: 0px;
  5540. border-radius: 0 0 0 0px
  5541. }
  5542. .tp-caption.ParallaxWebsite-FooterItem:hover,
  5543. .ParallaxWebsite-FooterItem:hover {
  5544. color: rgba(255, 255, 255, 1.00);
  5545. text-decoration: none;
  5546. background-color: transparent;
  5547. border-color: transparent;
  5548. border-style: none;
  5549. border-width: 0px;
  5550. border-radius: 0 0 0 0px;
  5551. cursor: pointer
  5552. }
  5553. .fb-share-button.fb_iframe_widget iframe {
  5554. width: 115px!important;
  5555. }
  5556. iframe.twitter-share-button {
  5557. display: none;
  5558. }
  5559. .fb-share-button.fb_iframe_widget iframe {
  5560. display: none;
  5561. }
  5562. .tp-caption.FullSiteBlock-Link,
  5563. .FullSiteBlock-Link {
  5564. color: rgba(0,150,255,1.00);
  5565. font-size: 25px;
  5566. line-height: 24px;
  5567. font-weight: 300;
  5568. font-style: normal;
  5569. font-family: Lato;
  5570. padding: 0 0 0 0px;
  5571. text-decoration: none;
  5572. text-align: center;
  5573. background-color: transparent;
  5574. border-color: transparent;
  5575. border-style: none;
  5576. border-width: 0px;
  5577. border-radius: 0 0 0 0px;
  5578. text-align: center;
  5579. }