layers.css 137 KB

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