style.css 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008
  1. /*
  2. Theme Name: Twenty Sixteen
  3. Theme URI: https://wordpress.org/themes/twentysixteen/
  4. Author: the WordPress team
  5. Author URI: https://wordpress.org/
  6. Description: Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
  7. Version: 1.5
  8. License: GNU General Public License v2 or later
  9. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  10. Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
  11. Text Domain: twentysixteen
  12. This theme, like WordPress, is licensed under the GPL.
  13. Use it to make something cool, have fun, and share what you've learned with others.
  14. */
  15. /**
  16. * Table of Contents
  17. *
  18. * 1.0 - Normalize
  19. * 2.0 - Genericons
  20. * 3.0 - Typography
  21. * 4.0 - Elements
  22. * 5.0 - Forms
  23. * 6.0 - Navigation
  24. * 6.1 - Links
  25. * 6.2 - Menus
  26. * 7.0 - Accessibility
  27. * 8.0 - Alignments
  28. * 9.0 - Clearings
  29. * 10.0 - Widgets
  30. * 11.0 - Content
  31. * 11.1 - Header
  32. * 11.2 - Posts and pages
  33. * 11.3 - Post Formats
  34. * 11.4 - Comments
  35. * 11.5 - Sidebar
  36. * 11.6 - Footer
  37. * 12.0 - Media
  38. * 12.1 - Captions
  39. * 12.2 - Galleries
  40. * 13.0 - Multisite
  41. * 14.0 - Media Queries
  42. * 14.1 - >= 710px
  43. * 14.2 - >= 783px
  44. * 14.3 - >= 910px
  45. * 14.4 - >= 985px
  46. * 14.5 - >= 1200px
  47. * 15.0 - Print
  48. */
  49. /**
  50. * 1.0 - Normalize
  51. *
  52. * Normalizing styles have been helped along thanks to the fine work of
  53. * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
  54. */
  55. html {
  56. font-family: sans-serif;
  57. -webkit-text-size-adjust: 100%;
  58. -ms-text-size-adjust: 100%;
  59. }
  60. body {
  61. margin: 0;
  62. }
  63. article,
  64. aside,
  65. details,
  66. figcaption,
  67. figure,
  68. footer,
  69. header,
  70. main,
  71. menu,
  72. nav,
  73. section,
  74. summary {
  75. display: block;
  76. }
  77. audio,
  78. canvas,
  79. progress,
  80. video {
  81. display: inline-block;
  82. vertical-align: baseline;
  83. }
  84. audio:not([controls]) {
  85. display: none;
  86. height: 0;
  87. }
  88. [hidden],
  89. template {
  90. display: none;
  91. }
  92. a {
  93. background-color: transparent;
  94. }
  95. abbr[title] {
  96. border-bottom: 1px dotted;
  97. }
  98. b,
  99. strong {
  100. font-weight: 700;
  101. }
  102. small {
  103. font-size: 80%;
  104. }
  105. sub,
  106. sup {
  107. font-size: 75%;
  108. line-height: 0;
  109. position: relative;
  110. vertical-align: baseline;
  111. }
  112. sup {
  113. top: -0.5em;
  114. }
  115. sub {
  116. bottom: -0.25em;
  117. }
  118. img {
  119. border: 0;
  120. }
  121. svg:not(:root) {
  122. overflow: hidden;
  123. }
  124. figure {
  125. margin: 0;
  126. }
  127. hr {
  128. -webkit-box-sizing: content-box;
  129. -moz-box-sizing: content-box;
  130. box-sizing: content-box;
  131. }
  132. code,
  133. kbd,
  134. pre,
  135. samp {
  136. font-size: 1em;
  137. }
  138. button,
  139. input,
  140. optgroup,
  141. select,
  142. textarea {
  143. color: inherit;
  144. font: inherit;
  145. margin: 0;
  146. }
  147. select {
  148. text-transform: none;
  149. }
  150. button {
  151. overflow: visible;
  152. }
  153. button,
  154. input,
  155. select,
  156. textarea {
  157. max-width: 100%;
  158. }
  159. button,
  160. html input[type="button"],
  161. input[type="reset"],
  162. input[type="submit"] {
  163. -webkit-appearance: button;
  164. cursor: pointer;
  165. }
  166. button[disabled],
  167. html input[disabled] {
  168. cursor: default;
  169. opacity: .5;
  170. }
  171. button::-moz-focus-inner,
  172. input::-moz-focus-inner {
  173. border: 0;
  174. padding: 0;
  175. }
  176. input[type="checkbox"],
  177. input[type="radio"] {
  178. -webkit-box-sizing: border-box;
  179. -moz-box-sizing: border-box;
  180. box-sizing: border-box;
  181. margin-right: 0.4375em;
  182. padding: 0;
  183. }
  184. input[type="date"]::-webkit-inner-spin-button,
  185. input[type="date"]::-webkit-outer-spin-button,
  186. input[type="time"]::-webkit-inner-spin-button,
  187. input[type="time"]::-webkit-outer-spin-button,
  188. input[type="datetime-local"]::-webkit-inner-spin-button,
  189. input[type="datetime-local"]::-webkit-outer-spin-button,
  190. input[type="week"]::-webkit-inner-spin-button,
  191. input[type="week"]::-webkit-outer-spin-button,
  192. input[type="month"]::-webkit-inner-spin-button,
  193. input[type="month"]::-webkit-outer-spin-button,
  194. input[type="number"]::-webkit-inner-spin-button,
  195. input[type="number"]::-webkit-outer-spin-button {
  196. height: auto;
  197. }
  198. input[type="search"] {
  199. -webkit-appearance: textfield;
  200. }
  201. input[type="search"]::-webkit-search-cancel-button,
  202. input[type="search"]::-webkit-search-decoration {
  203. -webkit-appearance: none;
  204. }
  205. fieldset {
  206. border: 1px solid #d1d1d1;
  207. margin: 0 0 1.75em;
  208. min-width: inherit;
  209. padding: 0.875em;
  210. }
  211. fieldset > :last-child {
  212. margin-bottom: 0;
  213. }
  214. legend {
  215. border: 0;
  216. padding: 0;
  217. }
  218. textarea {
  219. overflow: auto;
  220. vertical-align: top;
  221. }
  222. optgroup {
  223. font-weight: bold;
  224. }
  225. /**
  226. * 2.0 - Genericons
  227. */
  228. .menu-item-has-children a:after,
  229. .social-navigation a:before,
  230. .dropdown-toggle:after,
  231. .bypostauthor > article .fn:after,
  232. .comment-reply-title small a:before,
  233. .pagination .prev:before,
  234. .pagination .next:before,
  235. .pagination .nav-links:before,
  236. .pagination .nav-links:after,
  237. .search-submit:before {
  238. -moz-osx-font-smoothing: grayscale;
  239. -webkit-font-smoothing: antialiased;
  240. display: inline-block;
  241. font-family: "Genericons";
  242. font-size: 16px;
  243. font-style: normal;
  244. font-variant: normal;
  245. font-weight: normal;
  246. line-height: 1;
  247. speak: none;
  248. text-align: center;
  249. text-decoration: inherit;
  250. text-transform: none;
  251. vertical-align: top;
  252. }
  253. /**
  254. * 3.0 - Typography
  255. */
  256. body,
  257. button,
  258. input,
  259. select,
  260. textarea {
  261. color: #1a1a1a;
  262. font-family: Merriweather, Georgia, serif;
  263. font-size: 16px;
  264. font-size: 1rem;
  265. line-height: 1.75;
  266. }
  267. h1,
  268. h2,
  269. h3,
  270. h4,
  271. h5,
  272. h6 {
  273. clear: both;
  274. font-weight: 700;
  275. margin: 0;
  276. text-rendering: optimizeLegibility;
  277. }
  278. p {
  279. margin: 0 0 1.75em;
  280. }
  281. dfn,
  282. cite,
  283. em,
  284. i {
  285. font-style: italic;
  286. }
  287. blockquote {
  288. border: 0 solid #1a1a1a;
  289. border-left-width: 4px;
  290. color: #686868;
  291. font-size: 19px;
  292. font-size: 1.1875rem;
  293. font-style: italic;
  294. line-height: 1.4736842105;
  295. margin: 0 0 1.4736842105em;
  296. overflow: hidden;
  297. padding: 0 0 0 1.263157895em;
  298. }
  299. blockquote,
  300. q {
  301. quotes: none;
  302. }
  303. blockquote:before,
  304. blockquote:after,
  305. q:before,
  306. q:after {
  307. content: "";
  308. }
  309. blockquote p {
  310. margin-bottom: 1.4736842105em;
  311. }
  312. blockquote cite,
  313. blockquote small {
  314. color: #1a1a1a;
  315. display: block;
  316. font-size: 16px;
  317. font-size: 1rem;
  318. line-height: 1.75;
  319. }
  320. blockquote cite:before,
  321. blockquote small:before {
  322. content: "\2014\00a0";
  323. }
  324. blockquote em,
  325. blockquote i,
  326. blockquote cite {
  327. font-style: normal;
  328. }
  329. blockquote strong,
  330. blockquote b {
  331. font-weight: 400;
  332. }
  333. blockquote > :last-child {
  334. margin-bottom: 0;
  335. }
  336. address {
  337. font-style: italic;
  338. margin: 0 0 1.75em;
  339. }
  340. code,
  341. kbd,
  342. tt,
  343. var,
  344. samp,
  345. pre {
  346. font-family: Inconsolata, monospace;
  347. }
  348. pre {
  349. border: 1px solid #d1d1d1;
  350. font-size: 16px;
  351. font-size: 1rem;
  352. line-height: 1.3125;
  353. margin: 0 0 1.75em;
  354. max-width: 100%;
  355. overflow: auto;
  356. padding: 1.75em;
  357. white-space: pre;
  358. white-space: pre-wrap;
  359. word-wrap: break-word;
  360. }
  361. code {
  362. background-color: #d1d1d1;
  363. padding: 0.125em 0.25em;
  364. }
  365. abbr,
  366. acronym {
  367. border-bottom: 1px dotted #d1d1d1;
  368. cursor: help;
  369. }
  370. mark,
  371. ins {
  372. background: #007acc;
  373. color: #fff;
  374. padding: 0.125em 0.25em;
  375. text-decoration: none;
  376. }
  377. big {
  378. font-size: 125%;
  379. }
  380. /**
  381. * 4.0 - Elements
  382. */
  383. html {
  384. -webkit-box-sizing: border-box;
  385. -moz-box-sizing: border-box;
  386. box-sizing: border-box;
  387. }
  388. *,
  389. *:before,
  390. *:after {
  391. /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  392. -webkit-box-sizing: inherit;
  393. -moz-box-sizing: inherit;
  394. box-sizing: inherit;
  395. }
  396. body {
  397. background: #1a1a1a;
  398. /* Fallback for when there is no custom background color defined. */
  399. }
  400. hr {
  401. background-color: #d1d1d1;
  402. border: 0;
  403. height: 1px;
  404. margin: 0 0 1.75em;
  405. }
  406. ul,
  407. ol {
  408. margin: 0 0 1.75em 1.25em;
  409. padding: 0;
  410. }
  411. ul {
  412. list-style: disc;
  413. }
  414. ol {
  415. list-style: decimal;
  416. margin-left: 1.5em;
  417. }
  418. li > ul,
  419. li > ol {
  420. margin-bottom: 0;
  421. }
  422. dl {
  423. margin: 0 0 1.75em;
  424. }
  425. dt {
  426. font-weight: 700;
  427. }
  428. dd {
  429. margin: 0 0 1.75em;
  430. }
  431. img {
  432. height: auto;
  433. /* Make sure images are scaled correctly. */
  434. max-width: 100%;
  435. /* Adhere to container width. */
  436. vertical-align: middle;
  437. }
  438. del {
  439. opacity: 0.8;
  440. }
  441. table,
  442. th,
  443. td {
  444. border: 1px solid #d1d1d1;
  445. }
  446. table {
  447. border-collapse: separate;
  448. border-spacing: 0;
  449. border-width: 1px 0 0 1px;
  450. margin: 0 0 1.75em;
  451. table-layout: fixed;
  452. /* Prevents HTML tables from becoming too wide */
  453. width: 100%;
  454. }
  455. caption,
  456. th,
  457. td {
  458. font-weight: normal;
  459. text-align: left;
  460. }
  461. th {
  462. border-width: 0 1px 1px 0;
  463. font-weight: 700;
  464. }
  465. td {
  466. border-width: 0 1px 1px 0;
  467. }
  468. th,
  469. td {
  470. padding: 0.4375em;
  471. }
  472. /* Placeholder text color -- selectors need to be separate to work. */
  473. ::-webkit-input-placeholder {
  474. color: #686868;
  475. font-family: Montserrat, "Helvetica Neue", sans-serif;
  476. }
  477. :-moz-placeholder {
  478. color: #686868;
  479. font-family: Montserrat, "Helvetica Neue", sans-serif;
  480. }
  481. ::-moz-placeholder {
  482. color: #686868;
  483. font-family: Montserrat, "Helvetica Neue", sans-serif;
  484. opacity: 1;
  485. /* Since FF19 lowers the opacity of the placeholder by default */
  486. }
  487. :-ms-input-placeholder {
  488. color: #686868;
  489. font-family: Montserrat, "Helvetica Neue", sans-serif;
  490. }
  491. /**
  492. * 5.0 - Forms
  493. */
  494. input {
  495. line-height: normal;
  496. }
  497. button,
  498. button[disabled]:hover,
  499. button[disabled]:focus,
  500. input[type="button"],
  501. input[type="button"][disabled]:hover,
  502. input[type="button"][disabled]:focus,
  503. input[type="reset"],
  504. input[type="reset"][disabled]:hover,
  505. input[type="reset"][disabled]:focus,
  506. input[type="submit"],
  507. input[type="submit"][disabled]:hover,
  508. input[type="submit"][disabled]:focus {
  509. background: #1a1a1a;
  510. border: 0;
  511. border-radius: 2px;
  512. color: #fff;
  513. font-family: Montserrat, "Helvetica Neue", sans-serif;
  514. font-weight: 700;
  515. letter-spacing: 0.046875em;
  516. line-height: 1;
  517. padding: 0.84375em 0.875em 0.78125em;
  518. text-transform: uppercase;
  519. }
  520. button:hover,
  521. button:focus,
  522. input[type="button"]:hover,
  523. input[type="button"]:focus,
  524. input[type="reset"]:hover,
  525. input[type="reset"]:focus,
  526. input[type="submit"]:hover,
  527. input[type="submit"]:focus {
  528. background: #007acc;
  529. }
  530. button:focus,
  531. input[type="button"]:focus,
  532. input[type="reset"]:focus,
  533. input[type="submit"]:focus {
  534. outline: thin dotted;
  535. outline-offset: -4px;
  536. }
  537. input[type="date"],
  538. input[type="time"],
  539. input[type="datetime-local"],
  540. input[type="week"],
  541. input[type="month"],
  542. input[type="text"],
  543. input[type="email"],
  544. input[type="url"],
  545. input[type="password"],
  546. input[type="search"],
  547. input[type="tel"],
  548. input[type="number"],
  549. textarea {
  550. background: #f7f7f7;
  551. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  552. border: 1px solid #d1d1d1;
  553. border-radius: 2px;
  554. color: #686868;
  555. padding: 0.625em 0.4375em;
  556. width: 100%;
  557. }
  558. input[type="date"]:focus,
  559. input[type="time"]:focus,
  560. input[type="datetime-local"]:focus,
  561. input[type="week"]:focus,
  562. input[type="month"]:focus,
  563. input[type="text"]:focus,
  564. input[type="email"]:focus,
  565. input[type="url"]:focus,
  566. input[type="password"]:focus,
  567. input[type="search"]:focus,
  568. input[type="tel"]:focus,
  569. input[type="number"]:focus,
  570. textarea:focus {
  571. background-color: #fff;
  572. border-color: #007acc;
  573. color: #1a1a1a;
  574. outline: 0;
  575. }
  576. .post-password-form {
  577. margin-bottom: 1.75em;
  578. }
  579. .post-password-form label {
  580. color: #686868;
  581. display: block;
  582. font-family: Montserrat, "Helvetica Neue", sans-serif;
  583. font-size: 13px;
  584. font-size: 0.8125rem;
  585. letter-spacing: 0.076923077em;
  586. line-height: 1.6153846154;
  587. margin-bottom: 1.75em;
  588. text-transform: uppercase;
  589. }
  590. .post-password-form input[type="password"] {
  591. margin-top: 0.4375em;
  592. }
  593. .post-password-form > :last-child {
  594. margin-bottom: 0;
  595. }
  596. .search-form {
  597. position: relative;
  598. }
  599. input[type="search"].search-field {
  600. border-radius: 2px 0 0 2px;
  601. width: -webkit-calc(100% - 42px);
  602. width: calc(100% - 42px);
  603. }
  604. .search-submit:before {
  605. content: "\f400";
  606. font-size: 24px;
  607. left: 2px;
  608. line-height: 42px;
  609. position: relative;
  610. width: 40px;
  611. }
  612. .search-submit {
  613. border-radius: 0 2px 2px 0;
  614. bottom: 0;
  615. overflow: hidden;
  616. padding: 0;
  617. position: absolute;
  618. right: 0;
  619. top: 0;
  620. width: 42px;
  621. }
  622. /**
  623. * 6.0 - Navigation
  624. */
  625. /**
  626. * 6.1 - Links
  627. */
  628. a {
  629. color: #007acc;
  630. text-decoration: none;
  631. }
  632. a:hover,
  633. a:focus,
  634. a:active {
  635. color: #686868;
  636. }
  637. a:focus {
  638. outline: thin dotted;
  639. }
  640. a:hover,
  641. a:active {
  642. outline: 0;
  643. }
  644. .entry-content a,
  645. .entry-summary a,
  646. .taxonomy-description a,
  647. .logged-in-as a,
  648. .comment-content a,
  649. .pingback .comment-body > a,
  650. .textwidget a,
  651. .entry-footer a:hover,
  652. .site-info a:hover {
  653. box-shadow: 0 1px 0 0 currentColor;
  654. }
  655. .entry-content a:hover,
  656. .entry-content a:focus,
  657. .entry-summary a:hover,
  658. .entry-summary a:focus,
  659. .taxonomy-description a:hover,
  660. .taxonomy-description a:focus,
  661. .logged-in-as a:hover,
  662. .logged-in-as a:focus,
  663. .comment-content a:hover,
  664. .comment-content a:focus,
  665. .pingback .comment-body > a:hover,
  666. .pingback .comment-body > a:focus,
  667. .textwidget a:hover,
  668. .textwidget a:focus {
  669. box-shadow: none;
  670. }
  671. /**
  672. * 6.2 - Menus
  673. */
  674. .site-header-menu {
  675. display: none;
  676. -webkit-flex: 0 1 100%;
  677. -ms-flex: 0 1 100%;
  678. flex: 0 1 100%;
  679. margin: 0.875em 0;
  680. }
  681. .site-header-menu.toggled-on,
  682. .no-js .site-header-menu {
  683. display: block;
  684. }
  685. .main-navigation {
  686. font-family: Montserrat, "Helvetica Neue", sans-serif;
  687. }
  688. .site-footer .main-navigation {
  689. margin-bottom: 1.75em;
  690. }
  691. .main-navigation ul {
  692. list-style: none;
  693. margin: 0;
  694. }
  695. .main-navigation li {
  696. border-top: 1px solid #d1d1d1;
  697. position: relative;
  698. }
  699. .main-navigation a {
  700. color: #1a1a1a;
  701. display: block;
  702. line-height: 1.3125;
  703. outline-offset: -1px;
  704. padding: 0.84375em 0;
  705. }
  706. .main-navigation a:hover,
  707. .main-navigation a:focus {
  708. color: #007acc;
  709. }
  710. .main-navigation .current-menu-item > a,
  711. .main-navigation .current-menu-ancestor > a {
  712. font-weight: 700;
  713. }
  714. .main-navigation ul ul {
  715. display: none;
  716. margin-left: 0.875em;
  717. }
  718. .no-js .main-navigation ul ul {
  719. display: block;
  720. }
  721. .main-navigation ul .toggled-on {
  722. display: block;
  723. }
  724. .main-navigation .primary-menu {
  725. border-bottom: 1px solid #d1d1d1;
  726. }
  727. .main-navigation .menu-item-has-children > a {
  728. margin-right: 56px;
  729. }
  730. .dropdown-toggle {
  731. background-color: transparent;
  732. border: 0;
  733. border-radius: 0;
  734. color: #1a1a1a;
  735. content: "";
  736. height: 48px;
  737. padding: 0;
  738. position: absolute;
  739. right: 0;
  740. text-transform: none;
  741. top: 0;
  742. width: 48px;
  743. }
  744. .dropdown-toggle:after {
  745. border: 0 solid #d1d1d1;
  746. border-left-width: 1px;
  747. content: "\f431";
  748. font-size: 24px;
  749. left: 1px;
  750. position: relative;
  751. width: 48px;
  752. }
  753. .dropdown-toggle:hover,
  754. .dropdown-toggle:focus {
  755. background-color: transparent;
  756. color: #007acc;
  757. }
  758. .dropdown-toggle:focus {
  759. outline: thin dotted;
  760. outline-offset: -1px;
  761. }
  762. .dropdown-toggle:focus:after {
  763. border-color: transparent;
  764. }
  765. .dropdown-toggle.toggled-on:after {
  766. content: "\f432";
  767. }
  768. .site-header .main-navigation + .social-navigation {
  769. margin-top: 1.75em;
  770. }
  771. .site-footer .social-navigation {
  772. margin-bottom: 1.75em;
  773. }
  774. .social-navigation ul {
  775. list-style: none;
  776. margin: 0 0 -0.4375em;
  777. }
  778. .social-navigation li {
  779. float: left;
  780. margin: 0 0.4375em 0.4375em 0;
  781. }
  782. .social-navigation a {
  783. border: 1px solid #d1d1d1;
  784. border-radius: 50%;
  785. color: #1a1a1a;
  786. display: block;
  787. height: 35px;
  788. position: relative;
  789. width: 35px;
  790. }
  791. .social-navigation a:before {
  792. content: "\f415";
  793. height: 33px;
  794. line-height: 33px;
  795. text-align: center;
  796. width: 33px;
  797. }
  798. .social-navigation a:hover:before,
  799. .social-navigation a:focus:before {
  800. color: #007acc;
  801. }
  802. .social-navigation a[href*="codepen.io"]:before {
  803. content: "\f216";
  804. }
  805. .social-navigation a[href*="digg.com"]:before {
  806. content: "\f221";
  807. }
  808. .social-navigation a[href*="dribbble.com"]:before {
  809. content: "\f201";
  810. }
  811. .social-navigation a[href*="dropbox.com"]:before {
  812. content: "\f225";
  813. }
  814. .social-navigation a[href*="facebook.com"]:before {
  815. content: "\f203";
  816. }
  817. .social-navigation a[href*="flickr.com"]:before {
  818. content: "\f211";
  819. }
  820. .social-navigation a[href*="foursquare.com"]:before {
  821. content: "\f226";
  822. }
  823. .social-navigation a[href*="plus.google.com"]:before {
  824. content: "\f206";
  825. }
  826. .social-navigation a[href*="github.com"]:before {
  827. content: "\f200";
  828. }
  829. .social-navigation a[href*="instagram.com"]:before {
  830. content: "\f215";
  831. }
  832. .social-navigation a[href*="linkedin.com"]:before {
  833. content: "\f208";
  834. }
  835. .social-navigation a[href*="path.com"]:before {
  836. content: "\f219";
  837. }
  838. .social-navigation a[href*="pinterest.com"]:before {
  839. content: "\f210";
  840. }
  841. .social-navigation a[href*="getpocket.com"]:before {
  842. content: "\f224";
  843. }
  844. .social-navigation a[href*="polldaddy.com"]:before {
  845. content: "\f217";
  846. }
  847. .social-navigation a[href*="reddit.com"]:before {
  848. content: "\f222";
  849. }
  850. .social-navigation a[href*="skype.com"]:before {
  851. content: "\f220";
  852. }
  853. .social-navigation a[href*="stumbleupon.com"]:before {
  854. content: "\f223";
  855. }
  856. .social-navigation a[href*="tumblr.com"]:before {
  857. content: "\f214";
  858. }
  859. .social-navigation a[href*="twitter.com"]:before {
  860. content: "\f202";
  861. }
  862. .social-navigation a[href*="vimeo.com"]:before {
  863. content: "\f212";
  864. }
  865. .social-navigation a[href*="wordpress.com"]:before,
  866. .social-navigation a[href*="wordpress.org"]:before {
  867. content: "\f205";
  868. }
  869. .social-navigation a[href*="youtube.com"]:before {
  870. content: "\f213";
  871. }
  872. .social-navigation a[href^="mailto:"]:before {
  873. content: "\f410";
  874. }
  875. .social-navigation a[href*="spotify.com"]:before {
  876. content: "\f515";
  877. }
  878. .social-navigation a[href*="twitch.tv"]:before {
  879. content: "\f516";
  880. }
  881. .social-navigation a[href$="/feed/"]:before {
  882. content: "\f413";
  883. }
  884. .post-navigation {
  885. border-top: 4px solid #1a1a1a;
  886. border-bottom: 4px solid #1a1a1a;
  887. clear: both;
  888. font-family: Montserrat, "Helvetica Neue", sans-serif;
  889. margin: 0 7.6923% 3.5em;
  890. }
  891. .post-navigation a {
  892. color: #1a1a1a;
  893. display: block;
  894. padding: 1.75em 0;
  895. }
  896. .post-navigation span {
  897. display: block;
  898. }
  899. .post-navigation .meta-nav {
  900. color: #686868;
  901. font-size: 13px;
  902. font-size: 0.8125rem;
  903. letter-spacing: 0.076923077em;
  904. line-height: 1.6153846154;
  905. margin-bottom: 0.5384615385em;
  906. text-transform: uppercase;
  907. }
  908. .post-navigation .post-title {
  909. display: inline;
  910. font-family: Montserrat, "Helvetica Neue", sans-serif;
  911. font-size: 23px;
  912. font-size: 1.4375rem;
  913. font-weight: 700;
  914. line-height: 1.2173913043;
  915. text-rendering: optimizeLegibility;
  916. }
  917. .post-navigation a:hover .post-title,
  918. .post-navigation a:focus .post-title {
  919. color: #007acc;
  920. }
  921. .post-navigation div + div {
  922. border-top: 4px solid #1a1a1a;
  923. }
  924. .pagination {
  925. border-top: 4px solid #1a1a1a;
  926. font-family: Montserrat, "Helvetica Neue", sans-serif;
  927. font-size: 19px;
  928. font-size: 1.1875rem;
  929. margin: 0 7.6923% 2.947368421em;
  930. min-height: 56px;
  931. position: relative;
  932. }
  933. .pagination:before,
  934. .pagination:after {
  935. background-color: #1a1a1a;
  936. content: "";
  937. height: 52px;
  938. position: absolute;
  939. top:0;
  940. width: 52px;
  941. z-index: 0;
  942. }
  943. .pagination:before {
  944. right: 0;
  945. }
  946. .pagination:after {
  947. right: 54px;
  948. }
  949. .pagination a:hover,
  950. .pagination a:focus {
  951. color: #1a1a1a;
  952. }
  953. .pagination .nav-links {
  954. padding-right: 106px;
  955. position: relative;
  956. }
  957. .pagination .nav-links:before,
  958. .pagination .nav-links:after {
  959. color: #fff;
  960. font-size: 32px;
  961. line-height: 51px;
  962. opacity: 0.3;
  963. position: absolute;
  964. width: 52px;
  965. z-index: 1;
  966. }
  967. .pagination .nav-links:before {
  968. content: "\f429";
  969. right: -1px;
  970. }
  971. .pagination .nav-links:after {
  972. content: "\f430";
  973. right: 55px;
  974. }
  975. /* reset screen-reader-text */
  976. .pagination .current .screen-reader-text {
  977. position: static !important;
  978. }
  979. .pagination .page-numbers {
  980. display: none;
  981. letter-spacing: 0.013157895em;
  982. line-height: 1;
  983. margin: 0 0.7368421053em 0 -0.7368421053em;
  984. padding: 0.8157894737em 0.7368421053em 0.3947368421em;
  985. text-transform: uppercase;
  986. }
  987. .pagination .current {
  988. display: inline-block;
  989. font-weight: 700;
  990. }
  991. .pagination .prev,
  992. .pagination .next {
  993. background-color: #1a1a1a;
  994. color: #fff;
  995. display: inline-block;
  996. height: 52px;
  997. margin: 0;
  998. overflow: hidden;
  999. padding: 0;
  1000. position: absolute;
  1001. top: 0;
  1002. width: 52px;
  1003. z-index: 2;
  1004. }
  1005. .pagination .prev:before,
  1006. .pagination .next:before {
  1007. font-size: 32px;
  1008. height: 53px;
  1009. line-height: 52px;
  1010. position: relative;
  1011. width: 53px;
  1012. }
  1013. .pagination .prev:hover,
  1014. .pagination .prev:focus,
  1015. .pagination .next:hover,
  1016. .pagination .next:focus {
  1017. background-color: #007acc;
  1018. color: #fff;
  1019. }
  1020. .pagination .prev:focus,
  1021. .pagination .next:focus {
  1022. outline: 0;
  1023. }
  1024. .pagination .prev {
  1025. right: 54px;
  1026. }
  1027. .pagination .prev:before {
  1028. content: "\f430";
  1029. left: -1px;
  1030. top: -1px;
  1031. }
  1032. .pagination .next {
  1033. right: 0;
  1034. }
  1035. .pagination .next:before {
  1036. content: "\f429";
  1037. right: -1px;
  1038. top: -1px;
  1039. }
  1040. .image-navigation,
  1041. .comment-navigation {
  1042. border-top: 1px solid #d1d1d1;
  1043. border-bottom: 1px solid #d1d1d1;
  1044. color: #686868;
  1045. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1046. font-size: 13px;
  1047. font-size: 0.8125rem;
  1048. line-height: 1.6153846154;
  1049. margin: 0 7.6923% 2.1538461538em;
  1050. padding: 1.0769230769em 0;
  1051. }
  1052. .comment-navigation {
  1053. margin-right: 0;
  1054. margin-left: 0;
  1055. }
  1056. .comments-title + .comment-navigation {
  1057. border-bottom: 0;
  1058. margin-bottom: 0;
  1059. }
  1060. .image-navigation .nav-previous:not(:empty),
  1061. .image-navigation .nav-next:not(:empty),
  1062. .comment-navigation .nav-previous:not(:empty),
  1063. .comment-navigation .nav-next:not(:empty) {
  1064. display: inline-block;
  1065. }
  1066. .image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
  1067. .comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
  1068. content: "\002f";
  1069. display: inline-block;
  1070. opacity: 0.7;
  1071. padding: 0 0.538461538em;
  1072. }
  1073. /**
  1074. * 7.0 - Accessibility
  1075. */
  1076. /* Text meant only for screen readers */
  1077. .says,
  1078. .screen-reader-text {
  1079. clip: rect(1px, 1px, 1px, 1px);
  1080. height: 1px;
  1081. overflow: hidden;
  1082. position: absolute !important;
  1083. width: 1px;
  1084. /* many screen reader and browser combinations announce broken words as they would appear visually */
  1085. word-wrap: normal !important;
  1086. }
  1087. /* must have higher specificity than alternative color schemes inline styles */
  1088. .site .skip-link {
  1089. background-color: #f1f1f1;
  1090. box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
  1091. color: #21759b;
  1092. display: block;
  1093. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1094. font-size: 14px;
  1095. font-weight: 700;
  1096. left: -9999em;
  1097. outline: none;
  1098. padding: 15px 23px 14px;
  1099. text-decoration: none;
  1100. text-transform: none;
  1101. top: -9999em;
  1102. }
  1103. .logged-in .site .skip-link {
  1104. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
  1105. font-family: "Open Sans", sans-serif;
  1106. }
  1107. .site .skip-link:focus {
  1108. clip: auto;
  1109. height: auto;
  1110. left: 6px;
  1111. top: 7px;
  1112. width: auto;
  1113. z-index: 100000;
  1114. }
  1115. /**
  1116. * 8.0 - Alignments
  1117. */
  1118. .alignleft {
  1119. float: left;
  1120. margin: 0.375em 1.75em 1.75em 0;
  1121. }
  1122. .alignright {
  1123. float: right;
  1124. margin: 0.375em 0 1.75em 1.75em;
  1125. }
  1126. .aligncenter {
  1127. clear: both;
  1128. display: block;
  1129. margin: 0 auto 1.75em;
  1130. }
  1131. blockquote.alignleft {
  1132. margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
  1133. }
  1134. blockquote.alignright {
  1135. margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
  1136. }
  1137. blockquote.aligncenter {
  1138. margin-bottom: 1.473684211em;
  1139. }
  1140. /**
  1141. * 9.0 - Clearings
  1142. */
  1143. .clear:before,
  1144. .clear:after,
  1145. blockquote:before,
  1146. blockquote:after,
  1147. .entry-content:before,
  1148. .entry-content:after,
  1149. .entry-summary:before,
  1150. .entry-summary:after,
  1151. .comment-content:before,
  1152. .comment-content:after,
  1153. .site-content:before,
  1154. .site-content:after,
  1155. .site-main > article:before,
  1156. .site-main > article:after,
  1157. .primary-menu:before,
  1158. .primary-menu:after,
  1159. .social-links-menu:before,
  1160. .social-links-menu:after,
  1161. .textwidget:before,
  1162. .textwidget:after,
  1163. .content-bottom-widgets:before,
  1164. .content-bottom-widgets:after {
  1165. content: "";
  1166. display: table;
  1167. }
  1168. .clear:after,
  1169. blockquote:after,
  1170. .entry-content:after,
  1171. .entry-summary:after,
  1172. .comment-content:after,
  1173. .site-content:after,
  1174. .site-main > article:after,
  1175. .primary-menu:after,
  1176. .social-links-menu:after,
  1177. .textwidget:after,
  1178. .content-bottom-widgets:after {
  1179. clear: both;
  1180. }
  1181. /**
  1182. * 10.0 - Widgets
  1183. */
  1184. .widget {
  1185. border-top: 4px solid #1a1a1a;
  1186. margin-bottom: 3.5em;
  1187. padding-top: 1.75em;
  1188. }
  1189. .widget-area > :last-child,
  1190. .widget > :last-child {
  1191. margin-bottom: 0;
  1192. }
  1193. .widget .widget-title {
  1194. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1195. font-size: 16px;
  1196. font-size: 1rem;
  1197. letter-spacing: 0.046875em;
  1198. line-height: 1.3125;
  1199. margin: 0 0 1.75em;
  1200. text-transform: uppercase;
  1201. }
  1202. .widget .widget-title:empty {
  1203. margin-bottom: 0;
  1204. }
  1205. .widget-title a {
  1206. color: #1a1a1a;
  1207. }
  1208. /* Calendar widget */
  1209. .widget.widget_calendar table {
  1210. margin: 0;
  1211. }
  1212. .widget_calendar td,
  1213. .widget_calendar th {
  1214. line-height: 2.5625;
  1215. padding: 0;
  1216. text-align: center;
  1217. }
  1218. .widget_calendar caption {
  1219. font-weight: 900;
  1220. margin-bottom: 1.75em;
  1221. }
  1222. .widget_calendar tbody a {
  1223. background-color: #007acc;
  1224. color: #fff;
  1225. display: block;
  1226. font-weight: 700;
  1227. }
  1228. .widget_calendar tbody a:hover,
  1229. .widget_calendar tbody a:focus {
  1230. background-color: #686868;
  1231. color: #fff;
  1232. }
  1233. /* Recent Posts widget */
  1234. .widget_recent_entries .post-date {
  1235. color: #686868;
  1236. display: block;
  1237. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1238. font-size: 13px;
  1239. font-size: 0.8125rem;
  1240. line-height: 1.615384615;
  1241. margin-bottom: 0.538461538em;
  1242. }
  1243. .widget_recent_entries li:last-child .post-date {
  1244. margin-bottom: 0;
  1245. }
  1246. /* RSS widget */
  1247. .widget_rss .rsswidget img {
  1248. margin-top: -0.375em;
  1249. }
  1250. .widget_rss .rss-date,
  1251. .widget_rss cite {
  1252. color: #686868;
  1253. display: block;
  1254. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1255. font-size: 13px;
  1256. font-size: 0.8125rem;
  1257. font-style: normal;
  1258. line-height: 1.615384615;
  1259. margin-bottom: 0.538461538em;
  1260. }
  1261. .widget_rss .rssSummary:last-child {
  1262. margin-bottom: 2.1538461538em;
  1263. }
  1264. .widget_rss li:last-child :last-child {
  1265. margin-bottom: 0;
  1266. }
  1267. /* Tag Cloud widget */
  1268. .tagcloud a {
  1269. border: 1px solid #d1d1d1;
  1270. border-radius: 2px;
  1271. display: inline-block;
  1272. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1273. line-height: 1;
  1274. margin: 0 0.1875em 0.4375em 0;
  1275. padding: 0.5625em 0.4375em 0.5em;
  1276. }
  1277. .tagcloud ul {
  1278. list-style-type: none;
  1279. margin-left: 0;
  1280. }
  1281. .tagcloud ul li {
  1282. display: inline-block;
  1283. }
  1284. .tagcloud a:hover,
  1285. .tagcloud a:focus {
  1286. border-color: #007acc;
  1287. color: #007acc;
  1288. outline: 0;
  1289. }
  1290. /**
  1291. * 11.0 - Content
  1292. */
  1293. .site {
  1294. background-color: #fff;
  1295. }
  1296. .site-inner {
  1297. margin: 0 auto;
  1298. max-width: 1320px;
  1299. position: relative;
  1300. }
  1301. .site-content {
  1302. word-wrap: break-word;
  1303. }
  1304. /* Do not show the outline on the skip link target. */
  1305. #content[tabindex="-1"]:focus {
  1306. outline: 0;
  1307. }
  1308. .site-main {
  1309. margin-bottom: 3.5em;
  1310. }
  1311. .site-main > :last-child {
  1312. margin-bottom: 0;
  1313. }
  1314. /**
  1315. * 11.1 - Header
  1316. */
  1317. .site-header {
  1318. padding: 2.625em 7.6923%;
  1319. }
  1320. .site-header-main {
  1321. -webkit-align-items: center;
  1322. -ms-flex-align: center;
  1323. align-items: center;
  1324. display: -webkit-flex;
  1325. display: -ms-flexbox;
  1326. display: flex;
  1327. -webkit-flex-wrap: wrap;
  1328. -ms-flex-wrap: wrap;
  1329. flex-wrap: wrap;
  1330. }
  1331. .site-branding {
  1332. margin: 0.875em auto 0.875em 0;
  1333. /* Avoid overflowing wide custom logo in small screens in Firefox and IEs */
  1334. max-width: 100%;
  1335. min-width: 0;
  1336. overflow: hidden;
  1337. }
  1338. .custom-logo-link {
  1339. display: block;
  1340. }
  1341. .custom-logo {
  1342. max-width: 180px;
  1343. }
  1344. .site-title {
  1345. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1346. font-size: 23px;
  1347. font-size: 1.4375rem;
  1348. font-weight: 700;
  1349. line-height: 1.2173913043;
  1350. margin: 0;
  1351. }
  1352. .site-branding .site-title a {
  1353. color: #1a1a1a;
  1354. }
  1355. .site-branding .site-title a:hover,
  1356. .site-branding .site-title a:focus {
  1357. color: #007acc;
  1358. }
  1359. .wp-custom-logo .site-title {
  1360. margin-top: 0.608695652em;
  1361. }
  1362. .site-description {
  1363. color: #686868;
  1364. display: none;
  1365. font-size: 13px;
  1366. font-size: 0.8125rem;
  1367. font-weight: 400;
  1368. line-height: 1.0769230769;
  1369. margin: 0.538461538em 0 0;
  1370. }
  1371. .menu-toggle {
  1372. background-color: transparent;
  1373. border: 1px solid #d1d1d1;
  1374. color: #1a1a1a;
  1375. font-size: 13px;
  1376. font-size: 0.8125rem;
  1377. margin: 1.076923077em 0;
  1378. padding: 0.769230769em;
  1379. }
  1380. .no-js .menu-toggle {
  1381. display: none;
  1382. }
  1383. .menu-toggle:hover,
  1384. .menu-toggle:focus {
  1385. background-color: transparent;
  1386. border-color: #007acc;
  1387. color: #007acc;
  1388. }
  1389. .menu-toggle.toggled-on,
  1390. .menu-toggle.toggled-on:hover,
  1391. .menu-toggle.toggled-on:focus {
  1392. background-color: #1a1a1a;
  1393. border-color: #1a1a1a;
  1394. color: #fff;
  1395. }
  1396. .menu-toggle:focus {
  1397. outline: 0;
  1398. }
  1399. .menu-toggle.toggled-on:focus {
  1400. outline: thin dotted;
  1401. }
  1402. .header-image {
  1403. clear: both;
  1404. margin: 0.875em 0;
  1405. }
  1406. .header-image a {
  1407. display: block;
  1408. }
  1409. .header-image a:hover img,
  1410. .header-image a:focus img {
  1411. opacity: 0.85;
  1412. }
  1413. /**
  1414. * 11.2 - Posts and pages
  1415. */
  1416. .site-main > article {
  1417. margin-bottom: 3.5em;
  1418. position: relative;
  1419. }
  1420. .entry-header,
  1421. .entry-summary,
  1422. .entry-content,
  1423. .entry-footer,
  1424. .page-content {
  1425. margin-right: 7.6923%;
  1426. margin-left: 7.6923%;
  1427. }
  1428. .entry-title {
  1429. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1430. font-size: 28px;
  1431. font-size: 1.75rem;
  1432. font-weight: 700;
  1433. line-height: 1.25;
  1434. margin-bottom: 1em;
  1435. }
  1436. .entry-title a {
  1437. color: #1a1a1a;
  1438. }
  1439. .entry-title a:hover,
  1440. .entry-title a:focus {
  1441. color: #007acc;
  1442. }
  1443. .post-thumbnail {
  1444. display: block;
  1445. margin: 0 7.6923% 1.75em;
  1446. }
  1447. .post-thumbnail img {
  1448. display: block;
  1449. }
  1450. .no-sidebar .post-thumbnail img {
  1451. margin: 0 auto;
  1452. }
  1453. a.post-thumbnail:hover,
  1454. a.post-thumbnail:focus {
  1455. opacity: 0.85;
  1456. }
  1457. .entry-content,
  1458. .entry-summary {
  1459. border-color: #d1d1d1;
  1460. }
  1461. .entry-content h1,
  1462. .entry-summary h1,
  1463. .comment-content h1,
  1464. .textwidget h1 {
  1465. font-size: 28px;
  1466. font-size: 1.75rem;
  1467. line-height: 1.25;
  1468. margin-top: 2em;
  1469. margin-bottom: 1em;
  1470. }
  1471. .entry-content h2,
  1472. .entry-summary h2,
  1473. .comment-content h2,
  1474. .textwidget h2 {
  1475. font-size: 23px;
  1476. font-size: 1.4375rem;
  1477. line-height: 1.2173913043;
  1478. margin-top: 2.4347826087em;
  1479. margin-bottom: 1.2173913043em;
  1480. }
  1481. .entry-content h3,
  1482. .entry-summary h3,
  1483. .comment-content h3,
  1484. .textwidget h3 {
  1485. font-size: 19px;
  1486. font-size: 1.1875rem;
  1487. line-height: 1.1052631579;
  1488. margin-top: 2.9473684211em;
  1489. margin-bottom: 1.4736842105em;
  1490. }
  1491. .entry-content h4,
  1492. .entry-content h5,
  1493. .entry-content h6,
  1494. .entry-summary h4,
  1495. .entry-summary h5,
  1496. .entry-summary h6,
  1497. .comment-content h4,
  1498. .comment-content h5,
  1499. .comment-content h6,
  1500. .textwidget h4,
  1501. .textwidget h5,
  1502. .textwidget h6 {
  1503. font-size: 16px;
  1504. font-size: 1rem;
  1505. line-height: 1.3125;
  1506. margin-top: 3.5em;
  1507. margin-bottom: 1.75em;
  1508. }
  1509. .entry-content h4,
  1510. .entry-summary h4,
  1511. .comment-content h4,
  1512. .textwidget h4 {
  1513. letter-spacing: 0.140625em;
  1514. text-transform: uppercase;
  1515. }
  1516. .entry-content h6,
  1517. .entry-summary h6,
  1518. .comment-content h6,
  1519. .textwidget h6 {
  1520. font-style: italic;
  1521. }
  1522. .entry-content h1,
  1523. .entry-content h2,
  1524. .entry-content h3,
  1525. .entry-content h4,
  1526. .entry-content h5,
  1527. .entry-content h6,
  1528. .entry-summary h1,
  1529. .entry-summary h2,
  1530. .entry-summary h3,
  1531. .entry-summary h4,
  1532. .entry-summary h5,
  1533. .entry-summary h6,
  1534. .comment-content h1,
  1535. .comment-content h2,
  1536. .comment-content h3,
  1537. .comment-content h4,
  1538. .comment-content h5,
  1539. .comment-content h6,
  1540. .textwidget h1,
  1541. .textwidget h2,
  1542. .textwidget h3,
  1543. .textwidget h4,
  1544. .textwidget h5,
  1545. .textwidget h6 {
  1546. font-weight: 900;
  1547. }
  1548. .entry-content h1:first-child,
  1549. .entry-content h2:first-child,
  1550. .entry-content h3:first-child,
  1551. .entry-content h4:first-child,
  1552. .entry-content h5:first-child,
  1553. .entry-content h6:first-child,
  1554. .entry-summary h1:first-child,
  1555. .entry-summary h2:first-child,
  1556. .entry-summary h3:first-child,
  1557. .entry-summary h4:first-child,
  1558. .entry-summary h5:first-child,
  1559. .entry-summary h6:first-child,
  1560. .comment-content h1:first-child,
  1561. .comment-content h2:first-child,
  1562. .comment-content h3:first-child,
  1563. .comment-content h4:first-child,
  1564. .comment-content h5:first-child,
  1565. .comment-content h6:first-child,
  1566. .textwidget h1:first-child,
  1567. .textwidget h2:first-child,
  1568. .textwidget h3:first-child,
  1569. .textwidget h4:first-child,
  1570. .textwidget h5:first-child,
  1571. .textwidget h6:first-child {
  1572. margin-top: 0;
  1573. }
  1574. .post-navigation .post-title,
  1575. .entry-title,
  1576. .comments-title {
  1577. -webkit-hyphens: auto;
  1578. -moz-hyphens: auto;
  1579. -ms-hyphens: auto;
  1580. hyphens: auto;
  1581. }
  1582. body:not(.search-results) .entry-summary {
  1583. color: #686868;
  1584. font-size: 19px;
  1585. font-size: 1.1875rem;
  1586. line-height: 1.4736842105;
  1587. margin-bottom: 1.4736842105em;
  1588. }
  1589. body:not(.search-results) .entry-header + .entry-summary {
  1590. margin-top: -0.736842105em;
  1591. }
  1592. body:not(.search-results) .entry-summary p,
  1593. body:not(.search-results) .entry-summary address,
  1594. body:not(.search-results) .entry-summary hr,
  1595. body:not(.search-results) .entry-summary ul,
  1596. body:not(.search-results) .entry-summary ol,
  1597. body:not(.search-results) .entry-summary dl,
  1598. body:not(.search-results) .entry-summary dd,
  1599. body:not(.search-results) .entry-summary table {
  1600. margin-bottom: 1.4736842105em;
  1601. }
  1602. body:not(.search-results) .entry-summary li > ul,
  1603. body:not(.search-results) .entry-summary li > ol {
  1604. margin-bottom: 0;
  1605. }
  1606. body:not(.search-results) .entry-summary th,
  1607. body:not(.search-results) .entry-summary td {
  1608. padding: 0.3684210526em;
  1609. }
  1610. body:not(.search-results) .entry-summary fieldset {
  1611. margin-bottom: 1.4736842105em;
  1612. padding: 0.3684210526em;
  1613. }
  1614. body:not(.search-results) .entry-summary blockquote {
  1615. border-color: currentColor;
  1616. }
  1617. body:not(.search-results) .entry-summary blockquote > :last-child {
  1618. margin-bottom: 0;
  1619. }
  1620. body:not(.search-results) .entry-summary .alignleft {
  1621. margin: 0.2631578947em 1.4736842105em 1.4736842105em 0;
  1622. }
  1623. body:not(.search-results) .entry-summary .alignright {
  1624. margin: 0.2631578947em 0 1.4736842105em 1.4736842105em;
  1625. }
  1626. body:not(.search-results) .entry-summary .aligncenter {
  1627. margin-bottom: 1.4736842105em;
  1628. }
  1629. .entry-content > :last-child,
  1630. .entry-summary > :last-child,
  1631. body:not(.search-results) .entry-summary > :last-child,
  1632. .page-content > :last-child,
  1633. .comment-content > :last-child,
  1634. .textwidget > :last-child {
  1635. margin-bottom: 0;
  1636. }
  1637. .more-link {
  1638. white-space: nowrap;
  1639. }
  1640. .author-info {
  1641. border-color: inherit;
  1642. border-style: solid;
  1643. border-width: 1px 0 1px 0;
  1644. clear: both;
  1645. padding-top: 1.75em;
  1646. padding-bottom: 1.75em;
  1647. }
  1648. .author-avatar .avatar {
  1649. float: left;
  1650. height: 42px;
  1651. margin: 0 1.75em 1.75em 0;
  1652. width: 42px;
  1653. }
  1654. .author-description > :last-child {
  1655. margin-bottom: 0;
  1656. }
  1657. .entry-content .author-title {
  1658. clear: none;
  1659. font-size: 16px;
  1660. font-size: 1rem;
  1661. font-weight: 900;
  1662. line-height: 1.75;
  1663. margin: 0;
  1664. }
  1665. .author-bio {
  1666. color: #686868;
  1667. font-size: 13px;
  1668. font-size: 0.8125rem;
  1669. line-height: 1.6153846154;
  1670. margin-bottom: 1.6153846154em;
  1671. overflow: hidden;
  1672. }
  1673. .author-link {
  1674. white-space: nowrap;
  1675. }
  1676. .entry-footer {
  1677. color: #686868;
  1678. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1679. font-size: 13px;
  1680. font-size: 0.8125rem;
  1681. line-height: 1.6153846154;
  1682. margin-top: 2.1538461538em;
  1683. }
  1684. .entry-footer:empty {
  1685. margin: 0;
  1686. }
  1687. .entry-footer a {
  1688. color: #686868;
  1689. }
  1690. .entry-footer a:hover,
  1691. .entry-footer a:focus {
  1692. color: #007acc;
  1693. }
  1694. .entry-footer > span:not(:last-child):after {
  1695. content: "\002f";
  1696. display: inline-block;
  1697. opacity: 0.7;
  1698. padding: 0 0.538461538em;
  1699. }
  1700. .entry-footer .avatar {
  1701. height: 21px;
  1702. margin: -0.1538461538em 0.5384615385em 0 0;
  1703. width: 21px;
  1704. }
  1705. .sticky-post {
  1706. color: #686868;
  1707. display: block;
  1708. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1709. font-size: 13px;
  1710. font-size: 0.8125rem;
  1711. letter-spacing: 0.076923077em;
  1712. line-height: 1.6153846154;
  1713. margin-bottom: 0.5384615385em;
  1714. text-transform: uppercase;
  1715. }
  1716. /**
  1717. * IE8 and earlier will drop any block with CSS3 selectors.
  1718. * Do not combine these styles with the next block.
  1719. */
  1720. .updated:not(.published) {
  1721. display: none;
  1722. }
  1723. .sticky .posted-on,
  1724. .byline {
  1725. display: none;
  1726. }
  1727. .single .byline,
  1728. .group-blog .byline {
  1729. display: inline;
  1730. }
  1731. .page-header {
  1732. border-top: 4px solid #1a1a1a;
  1733. margin: 0 7.6923% 3.5em;
  1734. padding-top: 1.75em;
  1735. }
  1736. body.error404 .page-header,
  1737. body.search-no-results .page-header {
  1738. border-top: 0;
  1739. padding-top: 0;
  1740. }
  1741. .page-title {
  1742. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1743. font-size: 23px;
  1744. font-size: 1.4375rem;
  1745. line-height: 1.2173913043;
  1746. }
  1747. .taxonomy-description {
  1748. color: #686868;
  1749. font-size: 13px;
  1750. font-size: 0.8125rem;
  1751. line-height: 1.6153846154;
  1752. }
  1753. .taxonomy-description p {
  1754. margin: 0.5384615385em 0 1.6153846154em;
  1755. }
  1756. .taxonomy-description > :last-child {
  1757. margin-bottom: 0;
  1758. }
  1759. .page-links {
  1760. clear: both;
  1761. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1762. margin: 0 0 1.75em;
  1763. }
  1764. .page-links a,
  1765. .page-links > span {
  1766. border: 1px solid #d1d1d1;
  1767. border-radius: 2px;
  1768. display: inline-block;
  1769. font-size: 13px;
  1770. font-size: 0.8125rem;
  1771. height: 1.8461538462em;
  1772. line-height: 1.6923076923em;
  1773. margin-right: 0.3076923077em;
  1774. text-align: center;
  1775. width: 1.8461538462em;
  1776. }
  1777. .page-links a {
  1778. background-color: #1a1a1a;
  1779. border-color: #1a1a1a;
  1780. color: #fff;
  1781. }
  1782. .page-links a:hover,
  1783. .page-links a:focus {
  1784. background-color: #007acc;
  1785. border-color: transparent;
  1786. color: #fff;
  1787. }
  1788. .page-links > .page-links-title {
  1789. border: 0;
  1790. color: #1a1a1a;
  1791. height: auto;
  1792. margin: 0;
  1793. padding-right: 0.6153846154em;
  1794. width: auto;
  1795. }
  1796. .entry-attachment {
  1797. margin-bottom: 1.75em;
  1798. }
  1799. .entry-caption {
  1800. color: #686868;
  1801. font-size: 13px;
  1802. font-size: 0.8125rem;
  1803. font-style: italic;
  1804. line-height: 1.6153846154;
  1805. padding-top: 1.0769230769em;
  1806. }
  1807. .entry-caption > :last-child {
  1808. margin-bottom: 0;
  1809. }
  1810. .content-bottom-widgets {
  1811. margin: 0 7.6923%;
  1812. }
  1813. .content-bottom-widgets .widget-area {
  1814. margin-bottom: 3.5em;
  1815. }
  1816. /**
  1817. * 11.3 - Post Formats
  1818. */
  1819. .format-aside .entry-title,
  1820. .format-image .entry-title,
  1821. .format-video .entry-title,
  1822. .format-quote .entry-title,
  1823. .format-gallery .entry-title,
  1824. .format-status .entry-title,
  1825. .format-link .entry-title,
  1826. .format-audio .entry-title,
  1827. .format-chat .entry-title {
  1828. font-size: 19px;
  1829. font-size: 1.1875rem;
  1830. line-height: 1.473684211;
  1831. margin-bottom: 1.473684211em;
  1832. }
  1833. .blog .format-status .entry-title,
  1834. .archive .format-status .entry-title {
  1835. display: none;
  1836. }
  1837. /**
  1838. * 11.4 - Comments
  1839. */
  1840. .comments-area {
  1841. margin: 0 7.6923% 3.5em;
  1842. }
  1843. .comment-list + .comment-respond,
  1844. .comment-navigation + .comment-respond {
  1845. padding-top: 1.75em;
  1846. }
  1847. .comments-title,
  1848. .comment-reply-title {
  1849. border-top: 4px solid #1a1a1a;
  1850. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1851. font-size: 23px;
  1852. font-size: 1.4375rem;
  1853. font-weight: 700;
  1854. line-height: 1.3125;
  1855. padding-top: 1.217391304em;
  1856. }
  1857. .comments-title {
  1858. margin-bottom: 1.217391304em;
  1859. }
  1860. .comment-list {
  1861. list-style: none;
  1862. margin: 0;
  1863. }
  1864. .comment-list article,
  1865. .comment-list .pingback,
  1866. .comment-list .trackback {
  1867. border-top: 1px solid #d1d1d1;
  1868. padding: 1.75em 0;
  1869. }
  1870. .comment-list .children {
  1871. list-style: none;
  1872. margin: 0;
  1873. }
  1874. .comment-list .children > li {
  1875. padding-left: 0.875em;
  1876. }
  1877. .comment-author {
  1878. color: #1a1a1a;
  1879. margin-bottom: 0.4375em;
  1880. }
  1881. .comment-author .avatar {
  1882. float: left;
  1883. height: 28px;
  1884. margin-right: 0.875em;
  1885. position: relative;
  1886. width: 28px;
  1887. }
  1888. .bypostauthor > article .fn:after {
  1889. content: "\f304";
  1890. left: 3px;
  1891. position: relative;
  1892. top: 5px;
  1893. }
  1894. .comment-metadata,
  1895. .pingback .edit-link {
  1896. color: #686868;
  1897. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1898. font-size: 13px;
  1899. font-size: 0.8125rem;
  1900. line-height: 1.6153846154;
  1901. }
  1902. .comment-metadata {
  1903. margin-bottom: 2.1538461538em;
  1904. }
  1905. .comment-metadata a,
  1906. .pingback .comment-edit-link {
  1907. color: #686868;
  1908. }
  1909. .comment-metadata a:hover,
  1910. .comment-metadata a:focus,
  1911. .pingback .comment-edit-link:hover,
  1912. .pingback .comment-edit-link:focus {
  1913. color: #007acc;
  1914. }
  1915. .comment-metadata .edit-link,
  1916. .pingback .edit-link {
  1917. display: inline-block;
  1918. }
  1919. .comment-metadata .edit-link:before,
  1920. .pingback .edit-link:before {
  1921. content: "\002f";
  1922. display: inline-block;
  1923. opacity: 0.7;
  1924. padding: 0 0.538461538em;
  1925. }
  1926. .comment-content ul,
  1927. .comment-content ol {
  1928. margin: 0 0 1.5em 1.25em;
  1929. }
  1930. .comment-content li > ul,
  1931. .comment-content li > ol {
  1932. margin-bottom: 0;
  1933. }
  1934. .comment-reply-link {
  1935. border: 1px solid #d1d1d1;
  1936. border-radius: 2px;
  1937. color: #007acc;
  1938. display: inline-block;
  1939. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1940. font-size: 13px;
  1941. font-size: 0.8125rem;
  1942. line-height: 1;
  1943. margin-top: 2.1538461538em;
  1944. padding: 0.5384615385em 0.5384615385em 0.4615384615em;
  1945. }
  1946. .comment-reply-link:hover,
  1947. .comment-reply-link:focus {
  1948. border-color: currentColor;
  1949. color: #007acc;
  1950. outline: 0;
  1951. }
  1952. .comment-form {
  1953. padding-top: 1.75em;
  1954. }
  1955. .comment-form label {
  1956. color: #686868;
  1957. display: block;
  1958. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1959. font-size: 13px;
  1960. font-size: 0.8125rem;
  1961. letter-spacing: 0.076923077em;
  1962. line-height: 1.6153846154;
  1963. margin-bottom: 0.5384615385em;
  1964. text-transform: uppercase;
  1965. }
  1966. .comment-list .comment-form {
  1967. padding-bottom: 1.75em;
  1968. }
  1969. .comment-notes,
  1970. .comment-awaiting-moderation,
  1971. .logged-in-as,
  1972. .form-allowed-tags {
  1973. color: #686868;
  1974. font-size: 13px;
  1975. font-size: 0.8125rem;
  1976. line-height: 1.6153846154;
  1977. margin-bottom: 2.1538461538em;
  1978. }
  1979. .no-comments {
  1980. border-top: 1px solid #d1d1d1;
  1981. font-family: Montserrat, "Helvetica Neue", sans-serif;
  1982. font-weight: 700;
  1983. margin: 0;
  1984. padding-top: 1.75em;
  1985. }
  1986. .comment-navigation + .no-comments {
  1987. border-top: 0;
  1988. padding-top: 0;
  1989. }
  1990. .form-allowed-tags code {
  1991. font-family: Inconsolata, monospace;
  1992. }
  1993. .form-submit {
  1994. margin-bottom: 0;
  1995. }
  1996. .required {
  1997. color: #007acc;
  1998. font-family: Merriweather, Georgia, serif;
  1999. }
  2000. .comment-reply-title small {
  2001. font-size: 100%;
  2002. }
  2003. .comment-reply-title small a {
  2004. border: 0;
  2005. float: right;
  2006. height: 32px;
  2007. overflow: hidden;
  2008. width: 26px;
  2009. }
  2010. .comment-reply-title small a:hover,
  2011. .comment-reply-title small a:focus {
  2012. color: #1a1a1a;
  2013. }
  2014. .comment-reply-title small a:before {
  2015. content: "\f405";
  2016. font-size: 32px;
  2017. position: relative;
  2018. top: -5px;
  2019. }
  2020. .comment-form #wp-comment-cookies-consent {
  2021. margin: 0 10px 0 0;
  2022. }
  2023. .comment-form .comment-form-cookies-consent label {
  2024. display: inline;
  2025. font-family: Merriweather, Georgia, serif;
  2026. letter-spacing: 0;
  2027. text-transform: none;
  2028. }
  2029. /**
  2030. * 11.5 - Sidebar
  2031. */
  2032. .sidebar {
  2033. margin-bottom: 3.5em;
  2034. padding: 0 7.6923%;
  2035. }
  2036. /**
  2037. * 11.6 - Footer
  2038. */
  2039. .site-footer {
  2040. padding: 0 7.6923% 1.75em;
  2041. }
  2042. .site-info {
  2043. color: #686868;
  2044. font-size: 13px;
  2045. font-size: 0.8125rem;
  2046. line-height: 1.6153846154;
  2047. }
  2048. .site-info a {
  2049. color: #686868;
  2050. }
  2051. .site-info a:hover,
  2052. .site-info a:focus {
  2053. color: #007acc;
  2054. }
  2055. .site-footer .site-title {
  2056. font-family: inherit;
  2057. font-size: inherit;
  2058. font-weight: 400;
  2059. }
  2060. .site-footer .site-title:after {
  2061. content: "\002f";
  2062. display: inline-block;
  2063. font-family: Montserrat, sans-serif;
  2064. opacity: 0.7;
  2065. padding: 0 0.307692308em 0 0.538461538em;
  2066. }
  2067. .site-footer span[role=separator] {
  2068. font-family: Montserrat, sans-serif;
  2069. opacity: 0.7;
  2070. padding: 0 0.307692308em 0 0.538461538em;
  2071. }
  2072. .site-footer span[role=separator]::before {
  2073. content: '\002f';
  2074. }
  2075. /**
  2076. * 12.0 - Media
  2077. */
  2078. .site .avatar {
  2079. border-radius: 50%;
  2080. }
  2081. .entry-content .wp-smiley,
  2082. .entry-summary .wp-smiley,
  2083. .comment-content .wp-smiley,
  2084. .textwidget .wp-smiley {
  2085. border: none;
  2086. margin-top: 0;
  2087. margin-bottom: 0;
  2088. padding: 0;
  2089. }
  2090. .entry-content a img,
  2091. .entry-summary a img,
  2092. .comment-content a img,
  2093. .textwidget a img {
  2094. display: block;
  2095. }
  2096. /* Make sure embeds and iframes fit their containers. */
  2097. embed,
  2098. iframe,
  2099. object,
  2100. video {
  2101. margin-bottom: 1.75em;
  2102. max-width: 100%;
  2103. vertical-align: middle;
  2104. }
  2105. p > embed,
  2106. p > iframe,
  2107. p > object,
  2108. p > video {
  2109. margin-bottom: 0;
  2110. }
  2111. .entry-content .wp-audio-shortcode a,
  2112. .entry-content .wp-playlist a {
  2113. box-shadow: none;
  2114. }
  2115. .wp-audio-shortcode,
  2116. .wp-video,
  2117. .wp-playlist.wp-audio-playlist {
  2118. margin-top: 0;
  2119. margin-bottom: 1.75em;
  2120. }
  2121. .wp-playlist.wp-audio-playlist {
  2122. padding-bottom: 0;
  2123. }
  2124. .wp-playlist .wp-playlist-tracks {
  2125. margin-top: 0;
  2126. }
  2127. .wp-playlist-item .wp-playlist-caption {
  2128. border-bottom: 0;
  2129. padding: 0.7142857143em 0;
  2130. }
  2131. .wp-playlist-item .wp-playlist-item-length {
  2132. top: 0.7142857143em;
  2133. }
  2134. /**
  2135. * 12.1 - Captions
  2136. */
  2137. .wp-caption {
  2138. margin-bottom: 1.75em;
  2139. max-width: 100%;
  2140. }
  2141. .wp-caption img[class*="wp-image-"] {
  2142. display: block;
  2143. margin: 0;
  2144. }
  2145. .wp-caption .wp-caption-text {
  2146. color: #686868;
  2147. font-size: 13px;
  2148. font-size: 0.8125rem;
  2149. font-style: italic;
  2150. line-height: 1.6153846154;
  2151. padding-top: 0.5384615385em;
  2152. }
  2153. /**
  2154. * 12.2 - Galleries
  2155. */
  2156. .gallery {
  2157. margin: 0 -1.1666667% 1.75em;
  2158. }
  2159. .gallery-item {
  2160. display: inline-block;
  2161. max-width: 33.33%;
  2162. padding: 0 1.1400652% 2.2801304%;
  2163. text-align: center;
  2164. vertical-align: top;
  2165. width: 100%;
  2166. }
  2167. .gallery-columns-1 .gallery-item {
  2168. max-width: 100%;
  2169. }
  2170. .gallery-columns-2 .gallery-item {
  2171. max-width: 50%;
  2172. }
  2173. .gallery-columns-4 .gallery-item {
  2174. max-width: 25%;
  2175. }
  2176. .gallery-columns-5 .gallery-item {
  2177. max-width: 20%;
  2178. }
  2179. .gallery-columns-6 .gallery-item {
  2180. max-width: 16.66%;
  2181. }
  2182. .gallery-columns-7 .gallery-item {
  2183. max-width: 14.28%;
  2184. }
  2185. .gallery-columns-8 .gallery-item {
  2186. max-width: 12.5%;
  2187. }
  2188. .gallery-columns-9 .gallery-item {
  2189. max-width: 11.11%;
  2190. }
  2191. .gallery-icon img {
  2192. margin: 0 auto;
  2193. }
  2194. .gallery-caption {
  2195. color: #686868;
  2196. display: block;
  2197. font-size: 13px;
  2198. font-size: 0.8125rem;
  2199. font-style: italic;
  2200. line-height: 1.6153846154;
  2201. padding-top: 0.5384615385em;
  2202. }
  2203. .gallery-columns-6 .gallery-caption,
  2204. .gallery-columns-7 .gallery-caption,
  2205. .gallery-columns-8 .gallery-caption,
  2206. .gallery-columns-9 .gallery-caption {
  2207. display: none;
  2208. }
  2209. /**
  2210. * 13.0 - Multisites
  2211. */
  2212. .widecolumn {
  2213. margin-bottom: 3.5em;
  2214. padding: 0 7.6923%;
  2215. }
  2216. .widecolumn .mu_register {
  2217. width: auto;
  2218. }
  2219. .widecolumn .mu_register .mu_alert {
  2220. background: transparent;
  2221. border-color: #d1d1d1;
  2222. color: inherit;
  2223. margin-bottom: 3.5em;
  2224. padding: 1.75em;
  2225. }
  2226. .widecolumn form,
  2227. .widecolumn .mu_register form {
  2228. margin-top: 0;
  2229. }
  2230. .widecolumn h2 {
  2231. font-size: 23px;
  2232. font-size: 1.4375rem;
  2233. font-weight: 900;
  2234. line-height: 1.2173913043;
  2235. margin-bottom: 1.2173913043em;
  2236. }
  2237. .widecolumn p {
  2238. margin: 1.75em 0;
  2239. }
  2240. .widecolumn p + h2 {
  2241. margin-top: 2.4347826087em;
  2242. }
  2243. .widecolumn label,
  2244. .widecolumn .mu_register label {
  2245. color: #686868;
  2246. font-family: Montserrat, "Helvetica Neue", sans-serif;
  2247. font-size: 13px;
  2248. font-size: 0.8125rem;
  2249. font-weight: 400;
  2250. letter-spacing: 0.076923077em;
  2251. line-height: 1.6153846154;
  2252. text-transform: uppercase;
  2253. }
  2254. .widecolumn .mu_register label {
  2255. margin: 2.1538461538em 0.7692307692em 0.5384615385em 0;
  2256. }
  2257. .widecolumn .mu_register label strong {
  2258. font-weight: 400;
  2259. }
  2260. .widecolumn #key,
  2261. .widecolumn .mu_register #blog_title,
  2262. .widecolumn .mu_register #user_email,
  2263. .widecolumn .mu_register #blogname,
  2264. .widecolumn .mu_register #user_name {
  2265. font-size: 16px;
  2266. font-size: 1rem;
  2267. width: 100%;
  2268. }
  2269. .widecolumn .mu_register #blogname {
  2270. margin: 0;
  2271. }
  2272. .widecolumn .mu_register #blog_title,
  2273. .widecolumn .mu_register #user_email,
  2274. .widecolumn .mu_register #user_name {
  2275. margin: 0 0 0.375em;
  2276. }
  2277. .widecolumn #submit,
  2278. .widecolumn .mu_register input[type="submit"] {
  2279. font-size: 16px;
  2280. font-size: 1rem;
  2281. margin: 0;
  2282. width: auto;
  2283. }
  2284. .widecolumn .mu_register .prefix_address,
  2285. .widecolumn .mu_register .suffix_address {
  2286. font-size: inherit;
  2287. }
  2288. .widecolumn .mu_register > :last-child,
  2289. .widecolumn form > :last-child {
  2290. margin-bottom: 0;
  2291. }
  2292. /**
  2293. * 14.0 - Media Queries
  2294. */
  2295. /**
  2296. * Does the same thing as <meta name="viewport" content="width=device-width">,
  2297. * but in the future W3C standard way. -ms- prefix is required for IE10+ to
  2298. * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
  2299. * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
  2300. */
  2301. @-ms-viewport {
  2302. width: device-width;
  2303. }
  2304. @viewport {
  2305. width: device-width;
  2306. }
  2307. /**
  2308. * 14.1 - >= 710px
  2309. */
  2310. @media screen and (min-width: 44.375em) {
  2311. body:not(.custom-background-image):before,
  2312. body:not(.custom-background-image):after {
  2313. background: inherit;
  2314. content: "";
  2315. display: block;
  2316. height: 21px;
  2317. left: 0;
  2318. position: fixed;
  2319. width: 100%;
  2320. z-index: 99;
  2321. }
  2322. body:not(.custom-background-image):before {
  2323. top: 0;
  2324. }
  2325. body:not(.custom-background-image).admin-bar:before {
  2326. top: 46px;
  2327. }
  2328. body:not(.custom-background-image):after {
  2329. bottom: 0;
  2330. }
  2331. .site {
  2332. margin: 21px;
  2333. }
  2334. .site-main {
  2335. margin-bottom: 5.25em;
  2336. }
  2337. .site-header {
  2338. padding: 3.9375em 7.6923%;
  2339. }
  2340. .site-branding {
  2341. margin-top: 1.3125em;
  2342. margin-bottom: 1.3125em;
  2343. }
  2344. .custom-logo {
  2345. max-width: 210px;
  2346. }
  2347. .site-title {
  2348. font-size: 28px;
  2349. font-size: 1.75rem;
  2350. line-height: 1.25;
  2351. }
  2352. .wp-custom-logo .site-title {
  2353. margin-top: 0.5em;
  2354. }
  2355. .site-description {
  2356. display: block;
  2357. }
  2358. .menu-toggle {
  2359. font-size: 16px;
  2360. font-size: 1.0rem;
  2361. margin: 1.3125em 0;
  2362. padding: 0.8125em 0.875em 0.6875em;
  2363. }
  2364. .site-header-menu {
  2365. margin: 1.3125em 0;
  2366. }
  2367. .site-header .main-navigation + .social-navigation {
  2368. margin-top: 2.625em;
  2369. }
  2370. .header-image {
  2371. margin: 1.3125em 0;
  2372. }
  2373. .pagination {
  2374. margin: 0 23.0769% 4.421052632em 7.6923%
  2375. }
  2376. .post-navigation {
  2377. margin-bottom: 5.25em;
  2378. }
  2379. .post-navigation .post-title {
  2380. font-size: 28px;
  2381. font-size: 1.75rem;
  2382. line-height: 1.25;
  2383. }
  2384. /* restore screen-reader-text */
  2385. .pagination .current .screen-reader-text {
  2386. position: absolute !important;
  2387. }
  2388. .pagination .page-numbers {
  2389. display: inline-block;
  2390. }
  2391. .site-main > article {
  2392. margin-bottom: 5.25em;
  2393. }
  2394. .entry-header,
  2395. .post-thumbnail,
  2396. .entry-content,
  2397. .entry-summary,
  2398. .entry-footer,
  2399. .comments-area,
  2400. .image-navigation,
  2401. .post-navigation,
  2402. .page-header,
  2403. .page-content,
  2404. .content-bottom-widgets {
  2405. margin-right: 23.0769%;
  2406. }
  2407. .entry-title {
  2408. font-size: 33px;
  2409. font-size: 2.0625rem;
  2410. line-height: 1.2727272727;
  2411. margin-bottom: 0.8484848485em;
  2412. }
  2413. .entry-content blockquote.alignleft,
  2414. .entry-content blockquote.alignright {
  2415. border-width: 4px 0 0 0;
  2416. padding: 0.9473684211em 0 0;
  2417. width: -webkit-calc(50% - 0.736842105em);
  2418. width: calc(50% - 0.736842105em);
  2419. }
  2420. .entry-content blockquote:not(.alignleft):not(.alignright),
  2421. .entry-summary blockquote,
  2422. .comment-content blockquote {
  2423. margin-left: -1.473684211em;
  2424. }
  2425. .entry-content blockquote blockquote:not(.alignleft):not(.alignright),
  2426. .entry-summary blockquote blockquote,
  2427. .comment-content blockquote blockquote {
  2428. margin-left: 0;
  2429. }
  2430. .entry-content ul,
  2431. .entry-summary ul,
  2432. .comment-content ul,
  2433. .entry-content ol,
  2434. .entry-summary ol,
  2435. .comment-content ol {
  2436. margin-left: 0;
  2437. }
  2438. .entry-content li > ul,
  2439. .entry-summary li > ul,
  2440. .comment-content li > ul,
  2441. .entry-content blockquote > ul,
  2442. .entry-summary blockquote > ul,
  2443. .comment-content blockquote > ul {
  2444. margin-left: 1.25em;
  2445. }
  2446. .entry-content li > ol,
  2447. .entry-summary li > ol,
  2448. .comment-content li > ol,
  2449. .entry-content blockquote > ol,
  2450. .entry-summary blockquote > ol,
  2451. .comment-content blockquote > ol {
  2452. margin-left: 1.5em;
  2453. }
  2454. .comment-author {
  2455. margin-bottom: 0;
  2456. }
  2457. .comment-author .avatar {
  2458. height: 42px;
  2459. position: relative;
  2460. top: 0.25em;
  2461. width: 42px;
  2462. }
  2463. .comment-list .children > li {
  2464. padding-left: 1.75em;
  2465. }
  2466. .comment-list + .comment-respond,
  2467. .comment-navigation + .comment-respond {
  2468. padding-top: 3.5em;
  2469. }
  2470. .comments-area,
  2471. .widget,
  2472. .content-bottom-widgets .widget-area {
  2473. margin-bottom: 5.25em;
  2474. }
  2475. .sidebar,
  2476. .widecolumn {
  2477. margin-bottom: 5.25em;
  2478. padding-right: 23.0769%;
  2479. }
  2480. body:not(.search-results) .entry-summary li > ul,
  2481. body:not(.search-results) .entry-summary blockquote > ul {
  2482. margin-left: 1.157894737em;
  2483. }
  2484. body:not(.search-results) .entry-summary li > ol,
  2485. body:not(.search-results) .entry-summary blockquote > ol {
  2486. margin-left: 1.473684211em;
  2487. }
  2488. }
  2489. /**
  2490. * 14.2 - >= 783px
  2491. */
  2492. @media screen and (min-width: 48.9375em) {
  2493. body:not(.custom-background-image).admin-bar:before {
  2494. top: 32px;
  2495. }
  2496. }
  2497. /**
  2498. * 14.3 - >= 910px
  2499. */
  2500. @media screen and (min-width: 56.875em) {
  2501. .site-header {
  2502. padding-right: 4.5455%;
  2503. padding-left: 4.5455%;
  2504. }
  2505. .site-header-main {
  2506. -webkit-align-items: flex-start;
  2507. -ms-flex-align: start;
  2508. align-items: flex-start;
  2509. }
  2510. .wp-custom-logo .site-header-main {
  2511. -webkit-align-items: center;
  2512. -ms-flex-align: center;
  2513. align-items: center;
  2514. }
  2515. .site-header-menu {
  2516. display: block;
  2517. -webkit-flex: 0 1 auto;
  2518. -ms-flex: 0 1 auto;
  2519. flex: 0 1 auto;
  2520. }
  2521. .main-navigation {
  2522. margin: 0 -0.875em;
  2523. }
  2524. .main-navigation .primary-menu,
  2525. .main-navigation .primary-menu > li {
  2526. border: 0;
  2527. }
  2528. .main-navigation .primary-menu > li {
  2529. float: left;
  2530. }
  2531. .main-navigation a {
  2532. outline-offset: -8px;
  2533. padding: 0.65625em 0.875em;
  2534. white-space: nowrap;
  2535. }
  2536. .main-navigation li:hover > a,
  2537. .main-navigation li.focus > a {
  2538. color: #007acc;
  2539. }
  2540. .main-navigation ul ul {
  2541. border-bottom: 1px solid #d1d1d1;
  2542. display: block;
  2543. left: -999em;
  2544. margin: 0;
  2545. position: absolute;
  2546. z-index: 99999;
  2547. }
  2548. .main-navigation ul ul ul {
  2549. top: -1px;
  2550. }
  2551. .main-navigation ul ul ul:before,
  2552. .main-navigation ul ul ul:after {
  2553. border: 0;
  2554. }
  2555. .main-navigation ul ul li {
  2556. background-color: #fff;
  2557. border: 1px solid #d1d1d1;
  2558. border-bottom-width: 0;
  2559. }
  2560. .main-navigation ul ul a {
  2561. white-space: normal;
  2562. width: 12.6875em;
  2563. }
  2564. .main-navigation ul ul:before,
  2565. .main-navigation ul ul:after {
  2566. border-style: solid;
  2567. content: "";
  2568. position: absolute;
  2569. }
  2570. .main-navigation ul ul:before {
  2571. border-color: #d1d1d1 transparent;
  2572. border-width: 0 10px 10px;
  2573. right: 9px;
  2574. top: -9px;
  2575. }
  2576. .main-navigation ul ul:after {
  2577. border-color: #fff transparent;
  2578. border-width: 0 8px 8px;
  2579. right: 11px;
  2580. top: -7px;
  2581. }
  2582. .main-navigation li:hover > ul,
  2583. .main-navigation li.focus > ul {
  2584. left: auto;
  2585. right: 0;
  2586. }
  2587. .main-navigation ul ul li:hover > ul,
  2588. .main-navigation ul ul li.focus > ul {
  2589. left: auto;
  2590. right: 100%;
  2591. }
  2592. .main-navigation .menu-item-has-children > a {
  2593. margin: 0;
  2594. padding-right: 2.25em;
  2595. }
  2596. .main-navigation .menu-item-has-children > a:after {
  2597. content: "\f431";
  2598. position: absolute;
  2599. right: 0.625em;
  2600. top: 0.8125em;
  2601. }
  2602. .main-navigation ul ul .menu-item-has-children > a {
  2603. padding-right: 2.0625em;
  2604. }
  2605. .main-navigation ul ul .menu-item-has-children > a:after {
  2606. right: 0.5625em;
  2607. top: 0.875em;
  2608. -webkit-transform: rotate(90deg);
  2609. -moz-transform: rotate(90deg);
  2610. -ms-transform: rotate(90deg);
  2611. transform: rotate(90deg);
  2612. }
  2613. .dropdown-toggle,
  2614. .main-navigation ul .dropdown-toggle.toggled-on,
  2615. .menu-toggle,
  2616. .site-header .social-navigation,
  2617. .site-footer .main-navigation {
  2618. display: none;
  2619. }
  2620. .site-content {
  2621. padding: 0 4.5455%;
  2622. }
  2623. .content-area {
  2624. float: left;
  2625. margin-right: -100%;
  2626. width: 70%;
  2627. }
  2628. .entry-header,
  2629. .post-thumbnail,
  2630. .entry-content,
  2631. .entry-summary,
  2632. .entry-footer,
  2633. .comments-area,
  2634. .image-navigation,
  2635. .post-navigation,
  2636. .pagination,
  2637. .page-header,
  2638. .page-content,
  2639. .content-bottom-widgets {
  2640. margin-right: 0;
  2641. margin-left: 0;
  2642. }
  2643. .sidebar {
  2644. float: left;
  2645. margin-left: 75%;
  2646. padding: 0;
  2647. width: 25%;
  2648. }
  2649. .widget {
  2650. font-size: 13px;
  2651. font-size: 0.8125rem;
  2652. line-height: 1.6153846154;
  2653. margin-bottom: 3.230769231em;
  2654. padding-top: 1.615384615em;
  2655. }
  2656. .widget .widget-title {
  2657. margin-bottom: 1.3125em;
  2658. }
  2659. .widget p,
  2660. .widget address,
  2661. .widget hr,
  2662. .widget ul,
  2663. .widget ol,
  2664. .widget dl,
  2665. .widget dd,
  2666. .widget table {
  2667. margin-bottom: 1.6153846154em;
  2668. }
  2669. .widget li > ul,
  2670. .widget li > ol {
  2671. margin-bottom: 0;
  2672. }
  2673. .widget blockquote {
  2674. font-size: 16px;
  2675. font-size: 1rem;
  2676. line-height: 1.3125;
  2677. margin-bottom: 1.3125em;
  2678. padding-left: 1.0625em;
  2679. }
  2680. .widget blockquote cite,
  2681. .widget blockquote small {
  2682. font-size: 13px;
  2683. font-size: 0.8125rem;
  2684. line-height: 1.6153846154;
  2685. }
  2686. .widget th,
  2687. .widget td {
  2688. padding: 0.5384615385em;
  2689. }
  2690. .widget pre {
  2691. font-size: 13px;
  2692. font-size: 0.8125rem;
  2693. line-height: 1.6153846154;
  2694. margin-bottom: 1.6153846154em;
  2695. padding: 0.5384615385em;
  2696. }
  2697. .widget fieldset {
  2698. margin-bottom: 1.6153846154em;
  2699. padding: 0.5384615385em;
  2700. }
  2701. .widget button,
  2702. .widget input,
  2703. .widget select,
  2704. .widget textarea {
  2705. font-size: 13px;
  2706. font-size: 0.8125rem;
  2707. line-height: 1.6153846154;
  2708. }
  2709. .widget button,
  2710. .widget input[type="button"],
  2711. .widget input[type="reset"],
  2712. .widget input[type="submit"] {
  2713. line-height: 1;
  2714. padding: 0.846153846em;
  2715. }
  2716. .widget input[type="date"],
  2717. .widget input[type="time"],
  2718. .widget input[type="datetime-local"],
  2719. .widget input[type="week"],
  2720. .widget input[type="month"],
  2721. .widget input[type="text"],
  2722. .widget input[type="email"],
  2723. .widget input[type="url"],
  2724. .widget input[type="password"],
  2725. .widget input[type="search"],
  2726. .widget input[type="tel"],
  2727. .widget input[type="number"],
  2728. .widget textarea {
  2729. padding: 0.4615384615em 0.5384615385em;
  2730. }
  2731. .widget h1 {
  2732. font-size: 23px;
  2733. font-size: 1.4375rem;
  2734. line-height: 1.2173913043;
  2735. margin-bottom: 0.9130434783em;
  2736. }
  2737. .widget h2 {
  2738. font-size: 19px;
  2739. font-size: 1.1875rem;
  2740. line-height: 1.1052631579;
  2741. margin-bottom: 1.1052631579em;
  2742. }
  2743. .widget h3 {
  2744. font-size: 16px;
  2745. font-size: 1rem;
  2746. line-height: 1.3125;
  2747. margin-bottom: 1.3125em;
  2748. }
  2749. .widget h4,
  2750. .widget h5,
  2751. .widget h6 {
  2752. font-size: 13px;
  2753. font-size: 0.8125rem;
  2754. line-height: 1.6153846154;
  2755. margin-bottom: 0.9130434783em;
  2756. }
  2757. .widget .alignleft {
  2758. margin: 0.2307692308em 1.6153846154em 1.6153846154em 0;
  2759. }
  2760. .widget .alignright {
  2761. margin: 0.2307692308em 0 1.6153846154em 1.6153846154em;
  2762. }
  2763. .widget .aligncenter {
  2764. margin-bottom: 1.6153846154em;
  2765. }
  2766. .widget_calendar td,
  2767. .widget_calendar th {
  2768. line-height: 2.6923076923;
  2769. padding: 0;
  2770. }
  2771. .widget_rss .rssSummary:last-child {
  2772. margin-bottom: 1.615384615em;
  2773. }
  2774. .widget input[type="search"].search-field {
  2775. width: -webkit-calc(100% - 35px);
  2776. width: calc(100% - 35px);
  2777. }
  2778. .widget .search-submit:before {
  2779. font-size: 16px;
  2780. left: 1px;
  2781. line-height: 35px;
  2782. width: 34px;
  2783. }
  2784. .widget button.search-submit {
  2785. padding: 0;
  2786. width: 35px;
  2787. }
  2788. .tagcloud a {
  2789. margin: 0 0.2307692308em 0.5384615385em 0;
  2790. padding: 0.5384615385em 0.4615384615em 0.4615384615em;
  2791. }
  2792. .textwidget h1 {
  2793. margin-top: 1.8260869565em;
  2794. }
  2795. .textwidget h2 {
  2796. margin-top: 2.2105263158em;
  2797. }
  2798. .textwidget h3 {
  2799. margin-top: 2.625em;
  2800. }
  2801. .textwidget h4 {
  2802. letter-spacing: 0.153846154em;
  2803. }
  2804. .textwidget h4,
  2805. .textwidget h5,
  2806. .textwidget h6 {
  2807. margin-top: 3.2307692308em;
  2808. }
  2809. .content-bottom-widgets .widget-area:nth-child(1):nth-last-child(2),
  2810. .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1) {
  2811. float: left;
  2812. margin-right: 7.1428571%;
  2813. width: 46.42857145%;
  2814. }
  2815. .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1):last-of-type {
  2816. margin-right: 0;
  2817. }
  2818. .site-footer {
  2819. -webkit-align-items: center;
  2820. -ms-flex-align: center;
  2821. align-items: center;
  2822. display: -webkit-flex;
  2823. display: -ms-flexbox;
  2824. display: flex;
  2825. -webkit-flex-wrap: wrap;
  2826. -ms-flex-wrap: wrap;
  2827. flex-wrap: wrap;
  2828. padding: 0 4.5455% 3.5em;
  2829. }
  2830. .site-footer .social-navigation {
  2831. margin: 0;
  2832. -webkit-order: 2;
  2833. -ms-flex-order: 2;
  2834. order: 2;
  2835. }
  2836. .site-info {
  2837. margin: 0.538461538em auto 0.538461538em 0;
  2838. -webkit-order: 1;
  2839. -ms-flex-order: 1;
  2840. order: 1;
  2841. }
  2842. .no-sidebar .content-area {
  2843. float: none;
  2844. margin: 0;
  2845. width: 100%;
  2846. }
  2847. .no-sidebar .entry-header,
  2848. .no-sidebar .entry-content,
  2849. .no-sidebar .entry-summary,
  2850. .no-sidebar .entry-footer,
  2851. .no-sidebar .comments-area,
  2852. .no-sidebar .image-navigation,
  2853. .no-sidebar .post-navigation,
  2854. .no-sidebar .pagination,
  2855. .no-sidebar .page-header,
  2856. .no-sidebar .page-content,
  2857. .no-sidebar .content-bottom-widgets {
  2858. margin-right: 15%;
  2859. margin-left: 15%;
  2860. }
  2861. .widecolumn {
  2862. padding-right: 15%;
  2863. padding-left: 15%;
  2864. }
  2865. }
  2866. /**
  2867. * 14.4 - >= 985px
  2868. */
  2869. @media screen and (min-width: 61.5625em) {
  2870. .site-main {
  2871. margin-bottom: 7.0em;
  2872. }
  2873. .site-header {
  2874. padding: 5.25em 4.5455%;
  2875. }
  2876. .site-branding,
  2877. .site-header-menu,
  2878. .header-image {
  2879. margin-top: 1.75em;
  2880. margin-bottom: 1.75em;
  2881. }
  2882. .custom-logo {
  2883. max-width: 240px;
  2884. }
  2885. .image-navigation {
  2886. margin-bottom: 3.230769231em;
  2887. }
  2888. .post-navigation {
  2889. margin-bottom: 7.0em;
  2890. }
  2891. .pagination {
  2892. margin-bottom: 5.894736842em;
  2893. }
  2894. .widget {
  2895. margin-bottom: 4.307692308em;
  2896. }
  2897. .site-main > article {
  2898. margin-bottom: 7.0em;
  2899. }
  2900. .entry-title {
  2901. font-size: 40px;
  2902. font-size: 2.5rem;
  2903. line-height: 1.225;
  2904. margin-bottom: 1.05em;
  2905. }
  2906. .format-aside .entry-title,
  2907. .format-image .entry-title,
  2908. .format-video .entry-title,
  2909. .format-quote .entry-title,
  2910. .format-gallery .entry-title,
  2911. .format-status .entry-title,
  2912. .format-link .entry-title,
  2913. .format-audio .entry-title,
  2914. .format-chat .entry-title {
  2915. font-size: 23px;
  2916. font-size: 1.4375em;
  2917. line-height: 1.304347826;
  2918. margin-bottom: 1.826086957em;
  2919. }
  2920. .post-thumbnail {
  2921. margin-bottom: 2.625em;
  2922. }
  2923. .entry-content h1,
  2924. .entry-summary h1,
  2925. .comment-content h1 {
  2926. font-size: 33px;
  2927. font-size: 2.0625rem;
  2928. line-height: 1.2727272727;
  2929. margin-top: 1.696969697em;
  2930. margin-bottom: 0.8484848485em;
  2931. }
  2932. .entry-content h2,
  2933. .entry-summary h2,
  2934. .comment-content h2 {
  2935. font-size: 28px;
  2936. font-size: 1.75rem;
  2937. line-height: 1.25;
  2938. margin-top: 2em;
  2939. margin-bottom: 1em;
  2940. }
  2941. .entry-content h3,
  2942. .entry-summary h3,
  2943. .comment-content h3 {
  2944. font-size: 23px;
  2945. font-size: 1.4375rem;
  2946. line-height: 1.2173913043;
  2947. margin-top: 2.4347826087em;
  2948. margin-bottom: 1.2173913043em;
  2949. }
  2950. .entry-content h4,
  2951. .entry-summary h4,
  2952. .entry-intro h4,
  2953. .comment-content h4 {
  2954. letter-spacing: 0.131578947em;
  2955. }
  2956. .entry-content h4,
  2957. .entry-content h5,
  2958. .entry-content h6,
  2959. .entry-summary h4,
  2960. .entry-summary h5,
  2961. .entry-summary h6,
  2962. .comment-content h4,
  2963. .comment-content h5,
  2964. .comment-content h6 {
  2965. font-size: 19px;
  2966. font-size: 1.1875rem;
  2967. line-height: 1.1052631579;
  2968. margin-top: 2.9473684211em;
  2969. margin-bottom: 1.473684211em;
  2970. }
  2971. .author-info {
  2972. border-bottom-width: 0;
  2973. padding-bottom: 0;
  2974. }
  2975. .comment-list + .comment-respond,
  2976. .comment-navigation + .comment-respond {
  2977. padding-top: 5.25em;
  2978. }
  2979. .comments-area,
  2980. .sidebar,
  2981. .content-bottom-widgets .widget-area,
  2982. .widecolumn {
  2983. margin-bottom: 7.0em;
  2984. }
  2985. body:not(.search-results) .entry-summary {
  2986. margin-bottom: 2.210526316em;
  2987. }
  2988. body:not(.search-results) .entry-header + .entry-summary {
  2989. margin-top: -1.105263158em;
  2990. }
  2991. body:not(.search-results) article:not(.type-page) .entry-content {
  2992. float: right;
  2993. width: 71.42857144%;
  2994. }
  2995. body:not(.search-results) article:not(.type-page) .entry-content > blockquote.alignleft.below-entry-meta {
  2996. margin-left: -40%;
  2997. width: -webkit-calc(60% - 1.4736842105em);
  2998. width: calc(60% - 1.4736842105em);
  2999. }
  3000. body:not(.search-results) article:not(.type-page) img.below-entry-meta,
  3001. body:not(.search-results) article:not(.type-page) figure.below-entry-meta {
  3002. clear: both;
  3003. display: block;
  3004. float: none;
  3005. margin-right: 0;
  3006. margin-left: -40%;
  3007. max-width: 140%;
  3008. }
  3009. body:not(.search-results) article:not(.type-page) figure.below-entry-meta img.below-entry-meta,
  3010. body:not(.search-results) article:not(.type-page) table figure.below-entry-meta,
  3011. body:not(.search-results) article:not(.type-page) table img.below-entry-meta {
  3012. margin: 0;
  3013. max-width: 100%;
  3014. }
  3015. body:not(.search-results) article:not(.type-page) .entry-footer {
  3016. float: left;
  3017. margin-top: 0.1538461538em;
  3018. width: 21.42857143%;
  3019. }
  3020. body:not(.search-results) article:not(.type-page) .entry-footer > span:not(:last-child):after {
  3021. display: none;
  3022. }
  3023. .single .byline,
  3024. .full-size-link,
  3025. body:not(.search-results).group-blog .byline,
  3026. body:not(.search-results) .entry-format,
  3027. body:not(.search-results) .cat-links,
  3028. body:not(.search-results) .tags-links,
  3029. body:not(.search-results) article:not(.sticky) .posted-on,
  3030. body:not(.search-results) article:not(.type-page) .comments-link,
  3031. body:not(.search-results) article:not(.type-page) .entry-footer .edit-link {
  3032. display: block;
  3033. margin-bottom: 0.5384615385em;
  3034. }
  3035. body:not(.search-results) article:not(.type-page) .entry-footer > span:last-child {
  3036. margin-bottom: 0;
  3037. }
  3038. body:not(.search-results) article:not(.type-page) .entry-footer .avatar {
  3039. display: block;
  3040. height: auto;
  3041. margin: 0 0 0.5384615385em;
  3042. width: 49px;
  3043. }
  3044. body.no-sidebar:not(.search-results) article:not(.type-page) .entry-content {
  3045. float: left;
  3046. margin-right: -100%;
  3047. margin-left: 34.99999999%;
  3048. width: 50.00000001%;
  3049. }
  3050. body.no-sidebar:not(.search-results) article:not(.type-page) .entry-footer {
  3051. margin-right: -100%;
  3052. margin-left: 15%;
  3053. width: 15%;
  3054. }
  3055. }
  3056. /**
  3057. * 14.5 - >= 1200px
  3058. */
  3059. @media screen and (min-width: 75em) {
  3060. body:not(.search-results) .entry-summary {
  3061. font-size: 23px;
  3062. font-size: 1.4375rem;
  3063. line-height: 1.5217391304;
  3064. margin-bottom: 1.826086957em;
  3065. }
  3066. body:not(.search-results) .entry-header + .entry-summary {
  3067. margin-top: -0.913043478em;
  3068. }
  3069. body:not(.search-results) .entry-summary p,
  3070. body:not(.search-results) .entry-summary address,
  3071. body:not(.search-results) .entry-summary hr,
  3072. body:not(.search-results) .entry-summary ul,
  3073. body:not(.search-results) .entry-summary ol,
  3074. body:not(.search-results) .entry-summary dl,
  3075. body:not(.search-results) .entry-summary dd,
  3076. body:not(.search-results) .entry-summary table {
  3077. margin-bottom: 1.5217391304em;
  3078. }
  3079. body:not(.search-results) .entry-summary li > ul,
  3080. body:not(.search-results) .entry-summary blockquote > ul {
  3081. margin-left: 0.956521739em;
  3082. }
  3083. body:not(.search-results) .entry-summary li > ol,
  3084. body:not(.search-results) .entry-summary blockquote > ol {
  3085. margin-left: 1.52173913em;
  3086. }
  3087. body:not(.search-results) .entry-summary blockquote {
  3088. font-size: 23px;
  3089. font-size: 1.4375rem;
  3090. line-height: 1.5217391304;
  3091. margin: 0 0 1.5217391304em;
  3092. padding-left: 1.347826087em;
  3093. }
  3094. body:not(.search-results) .entry-summary blockquote:not(.alignleft):not(.alignright) {
  3095. margin-left: -1.52173913em;
  3096. }
  3097. body:not(.search-results) .entry-summary blockquote blockquote:not(.alignleft):not(.alignright) {
  3098. margin-left: 0;
  3099. }
  3100. body:not(.search-results) .entry-summary blockquote cite,
  3101. body:not(.search-results) .entry-summary blockquote small {
  3102. font-size: 19px;
  3103. font-size: 1.1875rem;
  3104. line-height: 1.8421052632;
  3105. }
  3106. body:not(.search-results) .entry-summary th,
  3107. body:not(.search-results) .entry-summary td {
  3108. padding: 0.3043478261em;
  3109. }
  3110. body:not(.search-results) .entry-summary pre {
  3111. font-size: 16px;
  3112. font-size: 1rem;
  3113. line-height: 1.75;
  3114. margin-bottom: 1.75em;
  3115. padding: 1.75em;
  3116. }
  3117. body:not(.search-results) .entry-summary fieldset {
  3118. margin-bottom: 1.5217391304em;
  3119. padding: 0.3043478261em;
  3120. }
  3121. body:not(.search-results) .entry-summary h1 {
  3122. margin-top: 2.121212121em;
  3123. margin-bottom: 1.060606061em;
  3124. }
  3125. body:not(.search-results) .entry-summary h2 {
  3126. margin-top: 2.5em;
  3127. margin-bottom: 1.25em;
  3128. }
  3129. body:not(.search-results) .entry-summary h3 {
  3130. margin-top: 3.043478261em;
  3131. margin-bottom: 1.52173913em;
  3132. }
  3133. body:not(.search-results) .entry-summary h4,
  3134. body:not(.search-results) .entry-summary h5,
  3135. body:not(.search-results) .entry-summary h6 {
  3136. margin-top: 3.684210526em;
  3137. margin-bottom: 1.842105263em;
  3138. }
  3139. body:not(.search-results) .entry-summary h1:first-child,
  3140. body:not(.search-results) .entry-summary h2:first-child,
  3141. body:not(.search-results) .entry-summary h3:first-child,
  3142. body:not(.search-results) .entry-summary h4:first-child,
  3143. body:not(.search-results) .entry-summary h5:first-child,
  3144. body:not(.search-results) .entry-summary h6:first-child {
  3145. margin-top: 0;
  3146. }
  3147. body:not(.search-results) .entry-summary .alignleft {
  3148. margin: 0.2608695652em 1.5217391304em 1.5217391304em 0;
  3149. }
  3150. body:not(.search-results) .entry-summary .alignright {
  3151. margin: 0.2608695652em 0 1.5217391304em 1.5217391304em;
  3152. }
  3153. body:not(.search-results) .entry-summary .aligncenter {
  3154. margin-bottom: 1.5217391304em;
  3155. }
  3156. }
  3157. /**
  3158. * 15.0 - Print
  3159. */
  3160. @media print {
  3161. form,
  3162. button,
  3163. input,
  3164. select,
  3165. textarea,
  3166. .navigation,
  3167. .main-navigation,
  3168. .social-navigation,
  3169. .sidebar,
  3170. .content-bottom-widgets,
  3171. .header-image,
  3172. .page-links,
  3173. .edit-link,
  3174. .comment-respond,
  3175. .comment-edit-link,
  3176. .comment-reply-link,
  3177. .comment-metadata .edit-link,
  3178. .pingback .edit-link {
  3179. display: none;
  3180. }
  3181. body,
  3182. blockquote cite,
  3183. blockquote small,
  3184. pre,
  3185. .entry-content h4,
  3186. .entry-content h5,
  3187. .entry-content h6,
  3188. .entry-summary h4,
  3189. .entry-summary h5,
  3190. .entry-summary h6,
  3191. .comment-content h4,
  3192. .comment-content h5,
  3193. .comment-content h6,
  3194. .entry-content .author-title {
  3195. font-size: 12pt;
  3196. }
  3197. blockquote {
  3198. font-size: 14.25pt;
  3199. }
  3200. .site-title,
  3201. .page-title,
  3202. .comments-title,
  3203. .entry-content h2,
  3204. .entry-summary h2,
  3205. .comment-content h2,
  3206. .widecolumn h2 {
  3207. font-size: 17.25pt;
  3208. }
  3209. .site-description {
  3210. display: block;
  3211. }
  3212. .entry-title {
  3213. font-size: 24.75pt;
  3214. line-height: 1.2727272727;
  3215. margin-bottom: 1.696969697em;
  3216. }
  3217. .format-aside .entry-title,
  3218. .format-image .entry-title,
  3219. .format-video .entry-title,
  3220. .format-quote .entry-title,
  3221. .format-gallery .entry-title,
  3222. .format-status .entry-title,
  3223. .format-link .entry-title,
  3224. .format-audio .entry-title,
  3225. .format-chat .entry-title {
  3226. font-size: 17.25pt;
  3227. line-height: 1.304347826;
  3228. margin-bottom: 1.826086957em;
  3229. }
  3230. .entry-content h1,
  3231. .entry-summary h1,
  3232. .comment-content h1 {
  3233. font-size: 21pt;
  3234. }
  3235. .entry-content h3,
  3236. .entry-summary h3,
  3237. .comment-content h3,
  3238. body:not(.search-results) .entry-summary {
  3239. font-size: 14.25pt;
  3240. }
  3241. .site-description,
  3242. .author-bio,
  3243. .entry-footer,
  3244. .sticky-post,
  3245. .taxonomy-description,
  3246. .entry-caption,
  3247. .comment-metadata,
  3248. .comment-notes,
  3249. .comment-awaiting-moderation,
  3250. .site-info,
  3251. .wp-caption .wp-caption-text,
  3252. .gallery-caption {
  3253. font-size: 9.75pt;
  3254. }
  3255. body,
  3256. .site {
  3257. background: none !important; /* Brute force since user agents all print differently. */
  3258. }
  3259. body,
  3260. blockquote cite,
  3261. blockquote small,
  3262. .site-branding .site-title a,
  3263. .entry-title a,
  3264. .comment-author {
  3265. color: #1a1a1a !important; /* Make sure color schemes don't affect to print */
  3266. }
  3267. blockquote,
  3268. .page-header,
  3269. .comments-title {
  3270. border-color: #1a1a1a !important; /* Make sure color schemes don't affect to print */
  3271. }
  3272. blockquote,
  3273. .site-description,
  3274. body:not(.search-results) .entry-summary,
  3275. body:not(.search-results) .entry-summary blockquote,
  3276. .author-bio,
  3277. .entry-footer,
  3278. .entry-footer a,
  3279. .sticky-post,
  3280. .taxonomy-description,
  3281. .entry-caption,
  3282. .comment-author,
  3283. .comment-metadata a,
  3284. .comment-notes,
  3285. .comment-awaiting-moderation,
  3286. .site-info,
  3287. .site-info a,
  3288. .wp-caption .wp-caption-text,
  3289. .gallery-caption {
  3290. color: #686868 !important; /* Make sure color schemes don't affect to print */
  3291. }
  3292. code,
  3293. hr {
  3294. background-color: #d1d1d1 !important; /* Make sure color schemes don't affect to print */
  3295. }
  3296. pre,
  3297. abbr,
  3298. acronym,
  3299. table,
  3300. th,
  3301. td,
  3302. .author-info,
  3303. .comment-list article,
  3304. .comment-list .pingback,
  3305. .comment-list .trackback,
  3306. .no-comments {
  3307. border-color: #d1d1d1 !important; /* Make sure color schemes don't affect to print */
  3308. }
  3309. a {
  3310. color: #007acc !important; /* Make sure color schemes don't affect to print */
  3311. }
  3312. .entry-content a,
  3313. .entry-summary a,
  3314. .taxonomy-description a,
  3315. .comment-content a,
  3316. .pingback .comment-body > a {
  3317. box-shadow: none;
  3318. border-bottom: 1px solid #007acc !important; /* Make sure color schemes don't affect to print */
  3319. }
  3320. .site {
  3321. margin: 5%;
  3322. }
  3323. .site-inner {
  3324. max-width: none;
  3325. }
  3326. .site-header {
  3327. padding: 0 0 1.75em;
  3328. }
  3329. .site-branding {
  3330. margin-top: 0;
  3331. margin-bottom: 1.75em;
  3332. }
  3333. .site-main {
  3334. margin-bottom: 3.5em;
  3335. }
  3336. .entry-header,
  3337. .entry-footer,
  3338. .page-header,
  3339. .page-content,
  3340. .entry-content,
  3341. .entry-summary,
  3342. .post-thumbnail,
  3343. .comments-area {
  3344. margin-right: 0;
  3345. margin-left: 0;
  3346. }
  3347. .post-thumbnail,
  3348. .site-main > article {
  3349. margin-bottom: 3.5em;
  3350. }
  3351. .entry-content blockquote.alignleft,
  3352. .entry-content blockquote.alignright {
  3353. border-width: 4px 0 0 0;
  3354. padding: 0.9473684211em 0 0;
  3355. width: -webkit-calc(50% - 0.736842105em);
  3356. width: calc(50% - 0.736842105em);
  3357. }
  3358. body:not(.search-results) .entry-header + .entry-summary {
  3359. margin-top: -1.473684211em;
  3360. }
  3361. .site-footer,
  3362. .widecolumn {
  3363. padding: 0;
  3364. }
  3365. }