
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_3a2fa3963627de9b64041954.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.193000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4ba6383cbbca795e767a1db1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.186000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8affa83e846033cf94d823ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775167;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e7b796cd6d7424c50f29e39f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_03ab3aa38dd24b75c727115b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8a084b054fc1e999fdf81158.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.977000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.387970px;}
.v1{vertical-align:-2.970062px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.970062px;}
.v3{vertical-align:21.708252px;}
.ls1a{letter-spacing:-1.796867px;}
.ls1b{letter-spacing:-0.028692px;}
.ls1c{letter-spacing:-0.023910px;}
.ls18{letter-spacing:-0.021519px;}
.ls1e{letter-spacing:-0.020921px;}
.ls9{letter-spacing:-0.012553px;}
.ls8{letter-spacing:-0.010760px;}
.ls1d{letter-spacing:-0.009564px;}
.ls16{letter-spacing:-0.009086px;}
.ls23{letter-spacing:-0.008369px;}
.ls6{letter-spacing:-0.007173px;}
.ls13{letter-spacing:-0.005978px;}
.ls7{letter-spacing:-0.005380px;}
.lsd{letter-spacing:-0.004782px;}
.ls1f{letter-spacing:-0.004184px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000356px;}
.lsc{letter-spacing:0.004782px;}
.ls3{letter-spacing:0.005380px;}
.ls17{letter-spacing:0.005587px;}
.ls19{letter-spacing:0.005677px;}
.ls2{letter-spacing:0.005978px;}
.lsb{letter-spacing:0.007173px;}
.ls25{letter-spacing:0.009564px;}
.ls20{letter-spacing:0.010760px;}
.ls10{letter-spacing:0.011955px;}
.ls29{letter-spacing:0.016140px;}
.lsf{letter-spacing:0.017933px;}
.ls4{letter-spacing:0.021519px;}
.ls11{letter-spacing:0.023910px;}
.ls15{letter-spacing:0.024389px;}
.ls27{letter-spacing:2.049719px;}
.ls0{letter-spacing:4.153236px;}
.ls21{letter-spacing:15.093339px;}
.ls24{letter-spacing:19.008640px;}
.lse{letter-spacing:19.864677px;}
.ls22{letter-spacing:21.023078px;}
.ls26{letter-spacing:21.513238px;}
.ls28{letter-spacing:28.889741px;}
.ls12{letter-spacing:96.068796px;}
.ls1{letter-spacing:96.119004px;}
.lsa{letter-spacing:96.126175px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-0.078007px;}
.ws1{word-spacing:-0.075318px;}
.ws7{word-spacing:-0.065753px;}
.wse{word-spacing:-0.064558px;}
.ws10{word-spacing:-0.059178px;}
.ws8{word-spacing:-0.053798px;}
.ws6{word-spacing:-0.052603px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:14.703560px;}
.ws4{word-spacing:19.046842px;}
.ws3{word-spacing:71.649594px;}
.wsf{word-spacing:144.566837px;}
.wsb{word-spacing:152.781573px;}
.wsa{word-spacing:252.501863px;}
.wsd{word-spacing:345.578126px;}
.wsc{word-spacing:372.362107px;}
.ws9{word-spacing:396.311000px;}
._35{margin-left:-29.507649px;}
._34{margin-left:-28.271832px;}
._1d{margin-left:-20.816439px;}
._1c{margin-left:-19.551994px;}
._30{margin-left:-18.351874px;}
._31{margin-left:-17.251238px;}
._29{margin-left:-15.940551px;}
._28{margin-left:-14.920309px;}
._d{margin-left:-7.486010px;}
._15{margin-left:-5.612932px;}
._14{margin-left:-4.148367px;}
._2{margin-left:-3.108356px;}
._5{margin-left:-1.118997px;}
._3{width:1.769377px;}
._4{width:3.156179px;}
._1e{width:4.172079px;}
._33{width:5.560287px;}
._0{width:10.947974px;}
._1b{width:13.766137px;}
._17{width:14.866252px;}
._b{width:16.031755px;}
._a{width:17.065934px;}
._13{width:18.076181px;}
._6{width:19.080340px;}
._e{width:20.253229px;}
._12{width:22.105016px;}
._f{width:23.891113px;}
._8{width:25.369958px;}
._9{width:26.893042px;}
._11{width:28.004849px;}
._c{width:29.582943px;}
._10{width:30.784433px;}
._16{width:31.836467px;}
._1{width:33.503321px;}
._1a{width:35.088275px;}
._1f{width:36.987283px;}
._32{width:38.556163px;}
._2f{width:40.400961px;}
._2e{width:41.715242px;}
._36{width:43.232432px;}
._18{width:46.671460px;}
._27{width:54.691534px;}
._20{width:58.067132px;}
._19{width:72.645564px;}
._7{width:77.845616px;}
._2a{width:82.752570px;}
._22{width:147.158104px;}
._2d{width:152.764734px;}
._25{width:179.546456px;}
._21{width:246.949869px;}
._24{width:252.554850px;}
._23{width:279.338806px;}
._2c{width:296.510106px;}
._2b{width:319.030744px;}
._26{width:402.972410px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,51);}
.fs7{font-size:40.647600px;}
.fs5{font-size:41.842800px;}
.fs6{font-size:45.429600px;}
.fs8{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs3{font-size:59.775599px;}
.fs2{font-size:71.730600px;}
.fs4{font-size:78.007198px;}
.fs1{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.y17{bottom:39.514816px;}
.y16{bottom:55.950227px;}
.y15{bottom:72.386220px;}
.y14{bottom:88.821631px;}
.y18{bottom:88.834499px;}
.y167{bottom:103.725002px;}
.y6e{bottom:103.725472px;}
.y8a{bottom:103.725611px;}
.y60{bottom:103.726080px;}
.yca{bottom:103.726208px;}
.y40{bottom:106.707280px;}
.y187{bottom:106.708161px;}
.y89{bottom:117.927133px;}
.y5f{bottom:117.927603px;}
.yc9{bottom:117.927730px;}
.y6d{bottom:122.260506px;}
.y3f{bottom:124.648926px;}
.y186{bottom:124.649807px;}
.y1d0{bottom:130.615510px;}
.y1e8{bottom:130.616519px;}
.y5e{bottom:132.115975px;}
.yc8{bottom:132.116102px;}
.yff{bottom:136.434845px;}
.y88{bottom:136.462498px;}
.y132{bottom:139.256712px;}
.y13{bottom:142.566232px;}
.y3e{bottom:142.577122px;}
.y185{bottom:142.578003px;}
.yc7{bottom:146.317625px;}
.y1cf{bottom:147.058991px;}
.y1e7{bottom:147.060000px;}
.y1ab{bottom:150.055992px;}
.y5d{bottom:150.650997px;}
.y87{bottom:151.326131px;}
.y166{bottom:151.327221px;}
.y1fc{bottom:151.660993px;}
.y131{bottom:152.716495px;}
.yfe{bottom:154.376491px;}
.y12{bottom:159.005755px;}
.y184{bottom:160.504914px;}
.y3d{bottom:160.505318px;}
.y148{bottom:160.505997px;}
.y1e6{bottom:163.501504px;}
.y1ce{bottom:163.502472px;}
.yc6{bottom:164.853000px;}
.y5c{bottom:165.514973px;}
.y151{bottom:165.515111px;}
.y165{bottom:165.515593px;}
.y86{bottom:165.516659px;}
.y1aa{bottom:166.486024px;}
.y1fb{bottom:168.091011px;}
.yfd{bottom:172.304688px;}
.y11{bottom:175.441167px;}
.yea{bottom:177.731129px;}
.yb2{bottom:178.445881px;}
.y160{bottom:178.446433px;}
.y183{bottom:178.446560px;}
.y3c{bottom:178.446964px;}
.y178{bottom:178.447314px;}
.y6c{bottom:178.447494px;}
.y130{bottom:179.608497px;}
.y5b{bottom:179.716634px;}
.y164{bottom:179.717116px;}
.y85{bottom:179.718182px;}
.y1e5{bottom:179.931535px;}
.y1cd{bottom:179.932503px;}
.y1a9{bottom:182.929505px;}
.ya7{bottom:184.049995px;}
.y1fa{bottom:184.534506px;}
.yfc{bottom:190.232884px;}
.y13e{bottom:190.394863px;}
.y10{bottom:191.890027px;}
.y5a{bottom:193.905488px;}
.y84{bottom:193.906554px;}
.y12f{bottom:194.552993px;}
.ye9{bottom:195.672775px;}
.y6b{bottom:196.374077px;}
.y147{bottom:196.374427px;}
.y1cc{bottom:196.374488px;}
.y15f{bottom:196.374630px;}
.y182{bottom:196.374756px;}
.y119{bottom:196.374958px;}
.y1e4{bottom:196.375016px;}
.y3b{bottom:196.375161px;}
.y177{bottom:196.375511px;}
.y150{bottom:198.251999px;}
.y1a8{bottom:199.358041px;}
.y1f9{bottom:200.964551px;}
.y83{bottom:208.108077px;}
.yfb{bottom:208.174530px;}
.y13d{bottom:208.335754px;}
.y12e{bottom:209.497489px;}
.yc5{bottom:211.318775px;}
.y59{bottom:212.454003px;}
.y1cb{bottom:212.817969px;}
.y1e3{bottom:212.818497px;}
.ye8{bottom:213.600971px;}
.y6a{bottom:214.302274px;}
.y146{bottom:214.302624px;}
.y15e{bottom:214.302826px;}
.y181{bottom:214.302952px;}
.y118{bottom:214.303155px;}
.y3a{bottom:214.303357px;}
.y176{bottom:214.303504px;}
.y1a7{bottom:215.801522px;}
.yf{bottom:217.296322px;}
.y1f8{bottom:217.408019px;}
.y82{bottom:222.309599px;}
.y12d{bottom:224.442008px;}
.yfa{bottom:226.100863px;}
.y13c{bottom:226.263951px;}
.ya6{bottom:229.246769px;}
.yc4{bottom:229.246972px;}
.y1e2{bottom:229.247528px;}
.y1ca{bottom:229.248000px;}
.ye7{bottom:231.542617px;}
.y175{bottom:232.243366px;}
.y69{bottom:232.243920px;}
.y145{bottom:232.244269px;}
.y15d{bottom:232.244472px;}
.y180{bottom:232.244598px;}
.y117{bottom:232.244801px;}
.y39{bottom:232.245003px;}
.ye{bottom:233.718283px;}
.y1f7{bottom:233.851500px;}
.y81{bottom:236.497971px;}
.y12c{bottom:239.386505px;}
.yf9{bottom:244.029059px;}
.y13b{bottom:244.192147px;}
.y1c9{bottom:245.689987px;}
.y1e1{bottom:245.691009px;}
.ya5{bottom:247.188415px;}
.yc3{bottom:247.188618px;}
.y1a6{bottom:248.673538px;}
.ye6{bottom:249.470813px;}
.yd{bottom:250.161237px;}
.y18d{bottom:250.171405px;}
.y174{bottom:250.171562px;}
.y38{bottom:250.172116px;}
.y14f{bottom:250.172318px;}
.y144{bottom:250.172466px;}
.y15c{bottom:250.172668px;}
.y17f{bottom:250.172795px;}
.y116{bottom:250.172997px;}
.y1f6{bottom:250.279510px;}
.y12b{bottom:254.330999px;}
.y80{bottom:255.033005px;}
.y129{bottom:258.514992px;}
.yf8{bottom:261.970705px;}
.y1e0{bottom:262.132995px;}
.y1c8{bottom:262.133468px;}
.y13a{bottom:262.133793px;}
.y58{bottom:265.115731px;}
.ya4{bottom:265.116612px;}
.yc2{bottom:265.116814px;}
.y1a5{bottom:265.117019px;}
.yc{bottom:266.610098px;}
.y1f5{bottom:266.722978px;}
.ye5{bottom:267.399010px;}
.y18c{bottom:268.099601px;}
.y173{bottom:268.099759px;}
.y115{bottom:268.099984px;}
.y37{bottom:268.100312px;}
.y14e{bottom:268.100515px;}
.y143{bottom:268.100662px;}
.y15b{bottom:268.100865px;}
.y17e{bottom:268.100991px;}
.y7f{bottom:269.896980px;}
.y128{bottom:274.945024px;}
.y1df{bottom:278.563027px;}
.y1c7{bottom:278.563499px;}
.yf7{bottom:279.898902px;}
.y139{bottom:280.061989px;}
.y12a{bottom:281.533492px;}
.y1a4{bottom:281.560500px;}
.y57{bottom:283.043927px;}
.ya3{bottom:283.044808px;}
.yc1{bottom:283.045010px;}
.yb{bottom:283.045509px;}
.y1f4{bottom:283.166473px;}
.ye4{bottom:285.340102px;}
.y18b{bottom:286.041247px;}
.y172{bottom:286.041405px;}
.y114{bottom:286.041630px;}
.y36{bottom:286.041958px;}
.y14d{bottom:286.042161px;}
.y142{bottom:286.042308px;}
.y15a{bottom:286.042510px;}
.y7e{bottom:288.431991px;}
.y127{bottom:291.388504px;}
.y1c6{bottom:295.005486px;}
.y1de{bottom:295.006507px;}
.yf6{bottom:297.827098px;}
.y1a3{bottom:297.990006px;}
.y1f3{bottom:299.596504px;}
.y56{bottom:300.985573px;}
.ya2{bottom:300.986454px;}
.yc0{bottom:300.986656px;}
.ye3{bottom:303.268298px;}
.y7d{bottom:303.296449px;}
.y159{bottom:303.969296px;}
.y18a{bottom:303.969444px;}
.y171{bottom:303.969601px;}
.y113{bottom:303.969826px;}
.y35{bottom:303.970155px;}
.y14c{bottom:303.970357px;}
.y141{bottom:303.970504px;}
.y138{bottom:306.967120px;}
.y1c5{bottom:311.448967px;}
.y1a2{bottom:314.432991px;}
.yf5{bottom:315.768744px;}
.y1f2{bottom:316.039003px;}
.y7c{bottom:317.497971px;}
.y55{bottom:318.913769px;}
.ya1{bottom:318.914650px;}
.ybf{bottom:318.914853px;}
.ye2{bottom:321.195263px;}
.y140{bottom:321.909984px;}
.y158{bottom:321.910942px;}
.y189{bottom:321.911090px;}
.y170{bottom:321.911247px;}
.y112{bottom:321.911472px;}
.y34{bottom:321.911801px;}
.y14b{bottom:321.912003px;}
.y137{bottom:327.878383px;}
.y1c4{bottom:327.878999px;}
.y1a1{bottom:330.875999px;}
.y1f1{bottom:332.482499px;}
.yf4{bottom:333.696940px;}
.y7b{bottom:336.033005px;}
.y54{bottom:336.855415px;}
.ya0{bottom:336.856296px;}
.ye1{bottom:339.136909px;}
.y13f{bottom:339.838180px;}
.y157{bottom:339.839139px;}
.y126{bottom:339.839286px;}
.y163{bottom:339.839443px;}
.y111{bottom:339.839668px;}
.y33{bottom:339.839997px;}
.y1dd{bottom:344.320489px;}
.y1c3{bottom:344.321512px;}
.y1a0{bottom:347.304537px;}
.y136{bottom:348.803992px;}
.yf3{bottom:351.638586px;}
.y9f{bottom:354.783058px;}
.y53{bottom:354.783612px;}
.ybe{bottom:354.784492px;}
.ye0{bottom:357.065105px;}
.yb1{bottom:357.766376px;}
.y32{bottom:357.766579px;}
.y68{bottom:357.766781px;}
.y156{bottom:357.767335px;}
.y125{bottom:357.767482px;}
.y162{bottom:357.767640px;}
.y110{bottom:357.767865px;}
.y1dc{bottom:360.763970px;}
.y1c2{bottom:360.764992px;}
.y19f{bottom:363.748018px;}
.yf2{bottom:369.566783px;}
.ya{bottom:370.051001px;}
.y9e{bottom:372.711254px;}
.y52{bottom:372.711808px;}
.ybd{bottom:372.711955px;}
.ydf{bottom:374.993301px;}
.yb0{bottom:375.708022px;}
.y31{bottom:375.708225px;}
.y67{bottom:375.708427px;}
.y155{bottom:375.708981px;}
.y124{bottom:375.709128px;}
.y161{bottom:375.709286px;}
.y10f{bottom:375.709510px;}
.y1c1{bottom:377.194001px;}
.y19e{bottom:380.191499px;}
.yf1{bottom:387.494979px;}
.y9{bottom:387.983680px;}
.y9d{bottom:390.652900px;}
.y51{bottom:390.653454px;}
.ybc{bottom:390.653601px;}
.yde{bottom:392.934947px;}
.yaf{bottom:393.636219px;}
.y30{bottom:393.636421px;}
.y66{bottom:393.636624px;}
.y154{bottom:393.637177px;}
.y123{bottom:393.637325px;}
.y10e{bottom:393.637482px;}
.y19d{bottom:396.620058px;}
.yf0{bottom:405.435970px;}
.y8{bottom:405.916360px;}
.y9c{bottom:408.581097px;}
.y50{bottom:408.581650px;}
.ybb{bottom:408.581798px;}
.y1db{bottom:410.079019px;}
.y1c0{bottom:410.079963px;}
.ydd{bottom:410.863144px;}
.y10d{bottom:411.564064px;}
.yae{bottom:411.564415px;}
.y2f{bottom:411.564618px;}
.y65{bottom:411.564820px;}
.y16f{bottom:411.564967px;}
.y153{bottom:411.565374px;}
.y122{bottom:411.565521px;}
.y19c{bottom:413.063539px;}
.yef{bottom:423.364167px;}
.y7{bottom:423.863983px;}
.y1da{bottom:426.509050px;}
.y9b{bottom:426.509293px;}
.y4f{bottom:426.509847px;}
.yba{bottom:426.509994px;}
.ydc{bottom:428.791340px;}
.y10c{bottom:429.505710px;}
.yad{bottom:429.506061px;}
.y2e{bottom:429.506263px;}
.y64{bottom:429.506466px;}
.y121{bottom:429.506613px;}
.y152{bottom:429.506817px;}
.y19b{bottom:429.507019px;}
.yee{bottom:441.292363px;}
.y1bf{bottom:442.952531px;}
.y9a{bottom:444.450939px;}
.y4e{bottom:444.451492px;}
.ydb{bottom:446.732986px;}
.y10b{bottom:447.433906px;}
.yac{bottom:447.434257px;}
.y2d{bottom:447.434460px;}
.y63{bottom:447.434662px;}
.y120{bottom:447.434810px;}
.y6{bottom:450.755997px;}
.yb9{bottom:453.414875px;}
.y19a{bottom:456.398986px;}
.yed{bottom:459.234009px;}
.y1be{bottom:459.396012px;}
.y99{bottom:462.379135px;}
.yda{bottom:464.660122px;}
.y10a{bottom:465.362103px;}
.yab{bottom:465.362454px;}
.y2c{bottom:465.362656px;}
.y62{bottom:465.362859px;}
.y16e{bottom:465.363006px;}
.y4d{bottom:471.342870px;}
.yb8{bottom:474.340485px;}
.y1bd{bottom:475.823998px;}
.y1d9{bottom:475.824998px;}
.y98{bottom:480.307332px;}
.yd9{bottom:482.588318px;}
.y16d{bottom:483.302688px;}
.y109{bottom:483.303748px;}
.yaa{bottom:483.304100px;}
.y2b{bottom:483.304302px;}
.y7a{bottom:483.304504px;}
.y1bc{bottom:492.267479px;}
.y4c{bottom:492.268479px;}
.y97{bottom:498.248978px;}
.yd8{bottom:500.529964px;}
.y199{bottom:501.230533px;}
.y16c{bottom:501.230884px;}
.y108{bottom:501.231945px;}
.y79{bottom:501.232296px;}
.y2a{bottom:501.232499px;}
.yec{bottom:507.320457px;}
.y1bb{bottom:508.710960px;}
.y17d{bottom:510.196518px;}
.y96{bottom:516.175708px;}
.yd7{bottom:518.458161px;}
.y198{bottom:519.158729px;}
.y61{bottom:519.159080px;}
.y17c{bottom:519.159485px;}
.y78{bottom:519.159634px;}
.y29{bottom:519.159836px;}
.y107{bottom:519.160141px;}
.y11f{bottom:519.160344px;}
.ya9{bottom:519.160492px;}
.yeb{bottom:523.750488px;}
.y1ba{bottom:525.140991px;}
.y95{bottom:534.103905px;}
.yd6{bottom:536.399807px;}
.y197{bottom:537.100375px;}
.y4b{bottom:537.100726px;}
.y17b{bottom:537.101131px;}
.y77{bottom:537.101280px;}
.y28{bottom:537.101482px;}
.y106{bottom:537.101787px;}
.y11e{bottom:537.101989px;}
.y1d8{bottom:541.583000px;}
.y1b9{bottom:541.583527px;}
.y5{bottom:545.728500px;}
.y94{bottom:552.045551px;}
.yd5{bottom:554.328003px;}
.y11d{bottom:555.028222px;}
.y196{bottom:555.028571px;}
.y4a{bottom:555.028923px;}
.y17a{bottom:555.029327px;}
.y76{bottom:555.029476px;}
.y27{bottom:555.029679px;}
.y105{bottom:555.029984px;}
.y1d7{bottom:558.026481px;}
.y1b8{bottom:558.027007px;}
.y93{bottom:569.973747px;}
.y11c{bottom:572.956418px;}
.y195{bottom:572.956768px;}
.y49{bottom:572.957119px;}
.y104{bottom:572.957524px;}
.y75{bottom:572.957672px;}
.y26{bottom:572.957875px;}
.y14a{bottom:572.957977px;}
.y1b7{bottom:574.456040px;}
.y1d6{bottom:574.456512px;}
.y92{bottom:587.901943px;}
.y11b{bottom:590.898064px;}
.y194{bottom:590.898414px;}
.y1d5{bottom:590.898476px;}
.y48{bottom:590.898765px;}
.y103{bottom:590.899170px;}
.y74{bottom:590.899318px;}
.y25{bottom:590.899521px;}
.yd4{bottom:601.685989px;}
.y91{bottom:605.843589px;}
.y1b6{bottom:607.328507px;}
.y1f0{bottom:607.328520px;}
.y149{bottom:608.825707px;}
.y11a{bottom:608.826260px;}
.y24{bottom:608.826408px;}
.y193{bottom:608.826610px;}
.yb7{bottom:608.826814px;}
.y47{bottom:608.826961px;}
.y102{bottom:608.827366px;}
.y73{bottom:608.827515px;}
.y90{bottom:623.771786px;}
.y1b5{bottom:623.771988px;}
.y4{bottom:626.517274px;}
.y135{bottom:626.767352px;}
.y101{bottom:626.767906px;}
.y23{bottom:626.768054px;}
.y192{bottom:626.768256px;}
.yb6{bottom:626.768460px;}
.y46{bottom:626.768607px;}
.y179{bottom:626.768810px;}
.y188{bottom:626.769012px;}
.yd3{bottom:628.591507px;}
.y1b4{bottom:640.213997px;}
.y1d4{bottom:640.214469px;}
.y1ef{bottom:640.214997px;}
.y8f{bottom:641.699982px;}
.yd2{bottom:643.535980px;}
.y134{bottom:644.695549px;}
.y100{bottom:644.696103px;}
.y22{bottom:644.696250px;}
.y191{bottom:644.696452px;}
.yb5{bottom:644.696656px;}
.y45{bottom:644.696804px;}
.y1b3{bottom:656.644028px;}
.y1ee{bottom:656.644041px;}
.y1d3{bottom:656.644500px;}
.yd1{bottom:658.480499px;}
.y3{bottom:659.394143px;}
.y133{bottom:662.623745px;}
.y72{bottom:662.624299px;}
.y21{bottom:662.624447px;}
.y190{bottom:662.624649px;}
.yb4{bottom:662.624853px;}
.y44{bottom:662.625000px;}
.y8e{bottom:668.604909px;}
.y1d2{bottom:673.087037px;}
.y1b2{bottom:673.087509px;}
.yd0{bottom:673.425018px;}
.y43{bottom:680.565391px;}
.y16b{bottom:680.565539px;}
.y71{bottom:680.565945px;}
.y20{bottom:680.566093px;}
.y18f{bottom:680.566295px;}
.yb3{bottom:680.566498px;}
.ycf{bottom:688.369492px;}
.y1ed{bottom:689.529965px;}
.y1b1{bottom:689.529991px;}
.y8d{bottom:689.530518px;}
.y2{bottom:692.271011px;}
.y42{bottom:698.493588px;}
.y16a{bottom:698.493736px;}
.y70{bottom:698.494141px;}
.y1f{bottom:698.494289px;}
.y18e{bottom:698.494491px;}
.yce{bottom:703.314011px;}
.y1d1{bottom:705.959031px;}
.y1b0{bottom:705.960023px;}
.y41{bottom:716.421784px;}
.y169{bottom:716.421932px;}
.y6f{bottom:716.422338px;}
.y1e{bottom:716.422485px;}
.ycd{bottom:718.258484px;}
.y1ec{bottom:722.401971px;}
.y1af{bottom:722.402512px;}
.ycc{bottom:733.203003px;}
.y1d{bottom:734.363430px;}
.y168{bottom:734.363578px;}
.y8c{bottom:734.363826px;}
.ya8{bottom:734.363984px;}
.y1eb{bottom:738.845439px;}
.y1ae{bottom:738.845992px;}
.y1c{bottom:752.291626px;}
.y8b{bottom:752.291774px;}
.y1{bottom:752.345993px;}
.y1ad{bottom:755.274507px;}
.y1ea{bottom:755.275497px;}
.ycb{bottom:760.392014px;}
.y1b{bottom:770.219823px;}
.y1e9{bottom:771.717961px;}
.y1ac{bottom:771.717988px;}
.y1a{bottom:788.161468px;}
.y19{bottom:829.039489px;}
.hf{height:37.964858px;}
.h2b{height:39.081175px;}
.h23{height:39.332232px;}
.h10{height:44.664440px;}
.h22{height:44.951364px;}
.h2{height:50.247706px;}
.h43{height:50.249650px;}
.h42{height:50.251577px;}
.h8{height:50.271333px;}
.h9{height:50.285057px;}
.hb{height:50.570496px;}
.ha{height:50.621971px;}
.hd{height:53.008913px;}
.h6{height:55.830409px;}
.h19{height:55.831001px;}
.h29{height:55.831005px;}
.h17{height:55.831219px;}
.h1a{height:55.831402px;}
.h36{height:55.831814px;}
.h1d{height:55.831994px;}
.h27{height:55.832224px;}
.h3a{height:55.832314px;}
.h2a{height:55.832618px;}
.h2d{height:55.832624px;}
.h21{height:55.833212px;}
.h38{height:55.833249px;}
.h3e{height:55.833253px;}
.h2e{height:55.833427px;}
.h24{height:55.833841px;}
.h16{height:55.833844px;}
.h3f{height:55.833933px;}
.h30{height:55.834241px;}
.h35{height:55.834243px;}
.h41{height:55.834652px;}
.h32{height:55.834742px;}
.h12{height:55.835242px;}
.h40{height:55.835428px;}
.h39{height:55.835462px;}
.h3c{height:55.836238px;}
.h1f{height:55.836861px;}
.h28{height:55.837457px;}
.h31{height:55.838486px;}
.h2f{height:56.189063px;}
.h15{height:64.086739px;}
.h13{height:64.087515px;}
.h18{height:64.089538px;}
.h26{height:64.089544px;}
.h37{height:64.091758px;}
.h33{height:64.139270px;}
.h1b{height:64.139312px;}
.hc{height:64.139498px;}
.h11{height:64.140122px;}
.h20{height:64.140127px;}
.h2c{height:64.140532px;}
.h34{height:64.140718px;}
.h1e{height:64.141526px;}
.h14{height:64.142117px;}
.h3d{height:64.143342px;}
.h25{height:64.144151px;}
.h1c{height:64.145051px;}
.h3b{height:64.145770px;}
.he{height:64.146366px;}
.h5{height:66.996380px;}
.h7{height:67.158409px;}
.h4{height:67.426764px;}
.h3{height:89.329441px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x7{left:80.365499px;}
.x12{left:84.617998px;}
.x5{left:88.181997px;}
.xc{left:92.313000px;}
.x9{left:98.293499px;}
.x2{left:100.007996px;}
.x3{left:107.874534px;}
.xf{left:147.149998px;}
.x10{left:154.574115px;}
.x17{left:163.578408px;}
.x18{left:171.678586px;}
.x4{left:174.441226px;}
.xb{left:176.457570px;}
.xd{left:181.007995px;}
.x16{left:190.606498px;}
.x11{left:200.907011px;}
.xe{left:204.754411px;}
.xa{left:221.859009px;}
.x6{left:236.060989px;}
.x15{left:237.680993px;}
.x19{left:240.489006px;}
.x14{left:241.933503px;}
.x1a{left:263.736008px;}
.x1{left:271.714508px;}
.x13{left:313.362008px;}
.x8{left:525.493464px;}
@media print{
.v4{vertical-align:-15.455973pt;}
.v1{vertical-align:-2.640055pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.640055pt;}
.v3{vertical-align:19.296224pt;}
.ls1a{letter-spacing:-1.597215pt;}
.ls1b{letter-spacing:-0.025504pt;}
.ls1c{letter-spacing:-0.021254pt;}
.ls18{letter-spacing:-0.019128pt;}
.ls1e{letter-spacing:-0.018597pt;}
.ls9{letter-spacing:-0.011158pt;}
.ls8{letter-spacing:-0.009564pt;}
.ls1d{letter-spacing:-0.008501pt;}
.ls16{letter-spacing:-0.008076pt;}
.ls23{letter-spacing:-0.007439pt;}
.ls6{letter-spacing:-0.006376pt;}
.ls13{letter-spacing:-0.005313pt;}
.ls7{letter-spacing:-0.004782pt;}
.lsd{letter-spacing:-0.004251pt;}
.ls1f{letter-spacing:-0.003719pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000316pt;}
.lsc{letter-spacing:0.004251pt;}
.ls3{letter-spacing:0.004782pt;}
.ls17{letter-spacing:0.004966pt;}
.ls19{letter-spacing:0.005046pt;}
.ls2{letter-spacing:0.005313pt;}
.lsb{letter-spacing:0.006376pt;}
.ls25{letter-spacing:0.008501pt;}
.ls20{letter-spacing:0.009564pt;}
.ls10{letter-spacing:0.010627pt;}
.ls29{letter-spacing:0.014346pt;}
.lsf{letter-spacing:0.015940pt;}
.ls4{letter-spacing:0.019128pt;}
.ls11{letter-spacing:0.021254pt;}
.ls15{letter-spacing:0.021679pt;}
.ls27{letter-spacing:1.821972pt;}
.ls0{letter-spacing:3.691766pt;}
.ls21{letter-spacing:13.416301pt;}
.ls24{letter-spacing:16.896569pt;}
.lse{letter-spacing:17.657491pt;}
.ls22{letter-spacing:18.687180pt;}
.ls26{letter-spacing:19.122878pt;}
.ls28{letter-spacing:25.679770pt;}
.ls12{letter-spacing:85.394485pt;}
.ls1{letter-spacing:85.439115pt;}
.lsa{letter-spacing:85.445489pt;}
.ws0{word-spacing:-0.069340pt;}
.ws1{word-spacing:-0.066949pt;}
.ws7{word-spacing:-0.058447pt;}
.wse{word-spacing:-0.057385pt;}
.ws10{word-spacing:-0.052603pt;}
.ws8{word-spacing:-0.047820pt;}
.ws6{word-spacing:-0.046758pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:13.069831pt;}
.ws4{word-spacing:16.930526pt;}
.ws3{word-spacing:63.688528pt;}
.wsf{word-spacing:128.503855pt;}
.wsb{word-spacing:135.805842pt;}
.wsa{word-spacing:224.446101pt;}
.wsd{word-spacing:307.180556pt;}
.wsc{word-spacing:330.988540pt;}
.ws9{word-spacing:352.276445pt;}
._35{margin-left:-26.229022pt;}
._34{margin-left:-25.130518pt;}
._1d{margin-left:-18.503501pt;}
._1c{margin-left:-17.379550pt;}
._30{margin-left:-16.312777pt;}
._31{margin-left:-15.334434pt;}
._29{margin-left:-14.169379pt;}
._28{margin-left:-13.262497pt;}
._d{margin-left:-6.654231pt;}
._15{margin-left:-4.989272pt;}
._14{margin-left:-3.687438pt;}
._2{margin-left:-2.762983pt;}
._5{margin-left:-0.994664pt;}
._3{width:1.572780pt;}
._4{width:2.805493pt;}
._1e{width:3.708515pt;}
._33{width:4.942477pt;}
._0{width:9.731533pt;}
._1b{width:12.236566pt;}
._17{width:13.214447pt;}
._b{width:14.250449pt;}
._a{width:15.169719pt;}
._13{width:16.067716pt;}
._6{width:16.960302pt;}
._e{width:18.002870pt;}
._12{width:19.648903pt;}
._f{width:21.236545pt;}
._8{width:22.551074pt;}
._9{width:23.904926pt;}
._11{width:24.893199pt;}
._c{width:26.295950pt;}
._10{width:27.363941pt;}
._16{width:28.299082pt;}
._1{width:29.780730pt;}
._1a{width:31.189578pt;}
._1f{width:32.877585pt;}
._32{width:34.272145pt;}
._2f{width:35.911966pt;}
._2e{width:37.080215pt;}
._36{width:38.428829pt;}
._18{width:41.485742pt;}
._27{width:48.614697pt;}
._20{width:51.615228pt;}
._19{width:64.573835pt;}
._7{width:69.196103pt;}
._2a{width:73.557840pt;}
._22{width:130.807203pt;}
._2d{width:135.790875pt;}
._25{width:159.596850pt;}
._21{width:219.510995pt;}
._24{width:224.493200pt;}
._23{width:248.301161pt;}
._2c{width:263.564538pt;}
._2b{width:283.582884pt;}
._26{width:358.197698pt;}
.fs7{font-size:36.131200pt;}
.fs5{font-size:37.193600pt;}
.fs6{font-size:40.381867pt;}
.fs8{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs3{font-size:53.133865pt;}
.fs2{font-size:63.760533pt;}
.fs4{font-size:69.339732pt;}
.fs1{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:35.124281pt;}
.y16{bottom:49.733535pt;}
.y15{bottom:64.343306pt;}
.y14{bottom:78.952561pt;}
.y18{bottom:78.963999pt;}
.y167{bottom:92.200002pt;}
.y6e{bottom:92.200419pt;}
.y8a{bottom:92.200543pt;}
.y60{bottom:92.200960pt;}
.yca{bottom:92.201073pt;}
.y40{bottom:94.850915pt;}
.y187{bottom:94.851698pt;}
.y89{bottom:104.824118pt;}
.y5f{bottom:104.824536pt;}
.yc9{bottom:104.824649pt;}
.y6d{bottom:108.676005pt;}
.y3f{bottom:110.799045pt;}
.y186{bottom:110.799828pt;}
.y1d0{bottom:116.102675pt;}
.y1e8{bottom:116.103572pt;}
.y5e{bottom:117.436422pt;}
.yc8{bottom:117.436535pt;}
.yff{bottom:121.275418pt;}
.y88{bottom:121.299998pt;}
.y132{bottom:123.783744pt;}
.y13{bottom:126.725540pt;}
.y3e{bottom:126.735220pt;}
.y185{bottom:126.736003pt;}
.yc7{bottom:130.060111pt;}
.y1cf{bottom:130.719103pt;}
.y1e7{bottom:130.720000pt;}
.y1ab{bottom:133.383104pt;}
.y5d{bottom:133.911997pt;}
.y87{bottom:134.512116pt;}
.y166{bottom:134.513085pt;}
.y1fc{bottom:134.809772pt;}
.y131{bottom:135.747995pt;}
.yfe{bottom:137.223548pt;}
.y12{bottom:141.338449pt;}
.y184{bottom:142.671034pt;}
.y3d{bottom:142.671394pt;}
.y148{bottom:142.671997pt;}
.y1e6{bottom:145.334670pt;}
.y1ce{bottom:145.335530pt;}
.yc6{bottom:146.536000pt;}
.y5c{bottom:147.124420pt;}
.y151{bottom:147.124543pt;}
.y165{bottom:147.124972pt;}
.y86{bottom:147.125919pt;}
.y1aa{bottom:147.987576pt;}
.y1fb{bottom:149.414232pt;}
.yfd{bottom:153.159722pt;}
.y11{bottom:155.947704pt;}
.yea{bottom:157.983226pt;}
.yb2{bottom:158.618561pt;}
.y160{bottom:158.619052pt;}
.y183{bottom:158.619164pt;}
.y3c{bottom:158.619524pt;}
.y178{bottom:158.619835pt;}
.y6c{bottom:158.619995pt;}
.y130{bottom:159.651997pt;}
.y5b{bottom:159.748119pt;}
.y164{bottom:159.748547pt;}
.y85{bottom:159.749495pt;}
.y1e5{bottom:159.939142pt;}
.y1cd{bottom:159.940003pt;}
.y1a9{bottom:162.604004pt;}
.ya7{bottom:163.599996pt;}
.y1fa{bottom:164.030672pt;}
.yfc{bottom:169.095897pt;}
.y13e{bottom:169.239878pt;}
.y10{bottom:170.568913pt;}
.y5a{bottom:172.360434pt;}
.y84{bottom:172.361381pt;}
.y12f{bottom:172.935994pt;}
.ye9{bottom:173.931355pt;}
.y6b{bottom:174.554735pt;}
.y147{bottom:174.555046pt;}
.y1cc{bottom:174.555100pt;}
.y15f{bottom:174.555226pt;}
.y182{bottom:174.555339pt;}
.y119{bottom:174.555519pt;}
.y1e4{bottom:174.555570pt;}
.y3b{bottom:174.555698pt;}
.y177{bottom:174.556009pt;}
.y150{bottom:176.223999pt;}
.y1a8{bottom:177.207148pt;}
.y1f9{bottom:178.635157pt;}
.y83{bottom:184.984957pt;}
.yfb{bottom:185.044027pt;}
.y13d{bottom:185.187337pt;}
.y12e{bottom:186.219991pt;}
.yc5{bottom:187.838911pt;}
.y59{bottom:188.848003pt;}
.y1cb{bottom:189.171528pt;}
.y1e3{bottom:189.171997pt;}
.ye8{bottom:189.867530pt;}
.y6a{bottom:190.490910pt;}
.y146{bottom:190.491221pt;}
.y15e{bottom:190.491401pt;}
.y181{bottom:190.491513pt;}
.y118{bottom:190.491693pt;}
.y3a{bottom:190.491873pt;}
.y176{bottom:190.492004pt;}
.y1a7{bottom:191.823575pt;}
.yf{bottom:193.152286pt;}
.y1f8{bottom:193.251572pt;}
.y82{bottom:197.608533pt;}
.y12d{bottom:199.504007pt;}
.yfa{bottom:200.978545pt;}
.y13c{bottom:201.123512pt;}
.ya6{bottom:203.774906pt;}
.yc4{bottom:203.775086pt;}
.y1e2{bottom:203.775580pt;}
.y1ca{bottom:203.776000pt;}
.ye7{bottom:205.815659pt;}
.y175{bottom:206.438548pt;}
.y69{bottom:206.439040pt;}
.y145{bottom:206.439351pt;}
.y15d{bottom:206.439531pt;}
.y180{bottom:206.439643pt;}
.y117{bottom:206.439823pt;}
.y39{bottom:206.440003pt;}
.ye{bottom:207.749585pt;}
.y1f7{bottom:207.868000pt;}
.y81{bottom:210.220419pt;}
.y12c{bottom:212.788004pt;}
.yf9{bottom:216.914719pt;}
.y13b{bottom:217.059686pt;}
.y1c9{bottom:218.391100pt;}
.y1e1{bottom:218.392008pt;}
.ya5{bottom:219.723036pt;}
.yc3{bottom:219.723216pt;}
.y1a6{bottom:221.043145pt;}
.ye6{bottom:221.751834pt;}
.yd{bottom:222.365544pt;}
.y18d{bottom:222.374582pt;}
.y174{bottom:222.374722pt;}
.y38{bottom:222.375214pt;}
.y14f{bottom:222.375394pt;}
.y144{bottom:222.375525pt;}
.y15c{bottom:222.375705pt;}
.y17f{bottom:222.375817pt;}
.y116{bottom:222.375997pt;}
.y1f6{bottom:222.470676pt;}
.y12b{bottom:226.071999pt;}
.y80{bottom:226.696004pt;}
.y129{bottom:229.791104pt;}
.yf8{bottom:232.862849pt;}
.y1e0{bottom:233.007107pt;}
.y1c8{bottom:233.007527pt;}
.y13a{bottom:233.007816pt;}
.y58{bottom:235.658427pt;}
.ya4{bottom:235.659210pt;}
.yc2{bottom:235.659390pt;}
.y1a5{bottom:235.659572pt;}
.yc{bottom:236.986754pt;}
.y1f5{bottom:237.087092pt;}
.ye5{bottom:237.688009pt;}
.y18c{bottom:238.310757pt;}
.y173{bottom:238.310897pt;}
.y115{bottom:238.311097pt;}
.y37{bottom:238.311389pt;}
.y14e{bottom:238.311569pt;}
.y143{bottom:238.311700pt;}
.y15b{bottom:238.311880pt;}
.y17e{bottom:238.311992pt;}
.y7f{bottom:239.908427pt;}
.y128{bottom:244.395576pt;}
.y1df{bottom:247.611579pt;}
.y1c7{bottom:247.612000pt;}
.yf7{bottom:248.799024pt;}
.y139{bottom:248.943991pt;}
.y12a{bottom:250.251993pt;}
.y1a4{bottom:250.276000pt;}
.y57{bottom:251.594602pt;}
.ya3{bottom:251.595385pt;}
.yc1{bottom:251.595565pt;}
.yb{bottom:251.596008pt;}
.y1f4{bottom:251.703532pt;}
.ye4{bottom:253.635646pt;}
.y18b{bottom:254.258886pt;}
.y172{bottom:254.259026pt;}
.y114{bottom:254.259226pt;}
.y36{bottom:254.259519pt;}
.y14d{bottom:254.259698pt;}
.y142{bottom:254.259829pt;}
.y15a{bottom:254.260009pt;}
.y7e{bottom:256.383992pt;}
.y127{bottom:259.012004pt;}
.y1c6{bottom:262.227099pt;}
.y1de{bottom:262.228007pt;}
.yf6{bottom:264.735198pt;}
.y1a3{bottom:264.880005pt;}
.y1f3{bottom:266.308004pt;}
.y56{bottom:267.542731pt;}
.ya2{bottom:267.543515pt;}
.yc0{bottom:267.543694pt;}
.ye3{bottom:269.571821pt;}
.y7d{bottom:269.596843pt;}
.y159{bottom:270.194930pt;}
.y18a{bottom:270.195061pt;}
.y171{bottom:270.195201pt;}
.y113{bottom:270.195401pt;}
.y35{bottom:270.195693pt;}
.y14c{bottom:270.195873pt;}
.y141{bottom:270.196004pt;}
.y138{bottom:272.859662pt;}
.y1c5{bottom:276.843526pt;}
.y1a2{bottom:279.495992pt;}
.yf5{bottom:280.683328pt;}
.y1f2{bottom:280.923559pt;}
.y7c{bottom:282.220419pt;}
.y55{bottom:283.478906pt;}
.ya1{bottom:283.479689pt;}
.ybf{bottom:283.479869pt;}
.ye2{bottom:285.506900pt;}
.y140{bottom:286.142208pt;}
.y158{bottom:286.143060pt;}
.y189{bottom:286.143191pt;}
.y170{bottom:286.143331pt;}
.y112{bottom:286.143531pt;}
.y34{bottom:286.143823pt;}
.y14b{bottom:286.144003pt;}
.y137{bottom:291.447452pt;}
.y1c4{bottom:291.447999pt;}
.y1a1{bottom:294.112000pt;}
.y1f1{bottom:295.539999pt;}
.yf4{bottom:296.619503pt;}
.y7b{bottom:298.696004pt;}
.y54{bottom:299.427036pt;}
.ya0{bottom:299.427819pt;}
.ye1{bottom:301.455030pt;}
.y13f{bottom:302.078382pt;}
.y157{bottom:302.079234pt;}
.y126{bottom:302.079365pt;}
.y163{bottom:302.079505pt;}
.y111{bottom:302.079705pt;}
.y33{bottom:302.079997pt;}
.y1dd{bottom:306.062657pt;}
.y1c3{bottom:306.063566pt;}
.y1a0{bottom:308.715144pt;}
.y136{bottom:310.047993pt;}
.yf3{bottom:312.567632pt;}
.y9f{bottom:315.362718pt;}
.y53{bottom:315.363210pt;}
.ybe{bottom:315.363993pt;}
.ye0{bottom:317.391204pt;}
.yb1{bottom:318.014557pt;}
.y32{bottom:318.014737pt;}
.y68{bottom:318.014917pt;}
.y156{bottom:318.015409pt;}
.y125{bottom:318.015540pt;}
.y162{bottom:318.015680pt;}
.y110{bottom:318.015880pt;}
.y1dc{bottom:320.679084pt;}
.y1c2{bottom:320.679993pt;}
.y19f{bottom:323.331571pt;}
.yf2{bottom:328.503807pt;}
.ya{bottom:328.934223pt;}
.y9e{bottom:331.298893pt;}
.y52{bottom:331.299385pt;}
.ybd{bottom:331.299516pt;}
.ydf{bottom:333.327379pt;}
.yb0{bottom:333.962687pt;}
.y31{bottom:333.962866pt;}
.y67{bottom:333.963046pt;}
.y155{bottom:333.963539pt;}
.y124{bottom:333.963670pt;}
.y161{bottom:333.963809pt;}
.y10f{bottom:333.964009pt;}
.y1c1{bottom:335.283556pt;}
.y19e{bottom:337.947999pt;}
.yf1{bottom:344.439981pt;}
.y9{bottom:344.874382pt;}
.y9d{bottom:347.247022pt;}
.y51{bottom:347.247515pt;}
.ybc{bottom:347.247646pt;}
.yde{bottom:349.275509pt;}
.yaf{bottom:349.898861pt;}
.y30{bottom:349.899041pt;}
.y66{bottom:349.899221pt;}
.y154{bottom:349.899713pt;}
.y123{bottom:349.899844pt;}
.y10e{bottom:349.899984pt;}
.y19d{bottom:352.551162pt;}
.yf0{bottom:360.387529pt;}
.y8{bottom:360.814542pt;}
.y9c{bottom:363.183197pt;}
.y50{bottom:363.183689pt;}
.ybb{bottom:363.183820pt;}
.y1db{bottom:364.514683pt;}
.y1c0{bottom:364.515522pt;}
.ydd{bottom:365.211683pt;}
.y10d{bottom:365.834723pt;}
.yae{bottom:365.835036pt;}
.y2f{bottom:365.835216pt;}
.y65{bottom:365.835395pt;}
.y16f{bottom:365.835527pt;}
.y153{bottom:365.835888pt;}
.y122{bottom:365.836019pt;}
.y19c{bottom:367.167590pt;}
.yef{bottom:376.323704pt;}
.y7{bottom:376.767985pt;}
.y1da{bottom:379.119156pt;}
.y9b{bottom:379.119371pt;}
.y4f{bottom:379.119864pt;}
.yba{bottom:379.119995pt;}
.ydc{bottom:381.147858pt;}
.y10c{bottom:381.782853pt;}
.yad{bottom:381.783165pt;}
.y2e{bottom:381.783345pt;}
.y64{bottom:381.783525pt;}
.y121{bottom:381.783656pt;}
.y152{bottom:381.783837pt;}
.y19b{bottom:381.784017pt;}
.yee{bottom:392.259878pt;}
.y1bf{bottom:393.735583pt;}
.y9a{bottom:395.067501pt;}
.y4e{bottom:395.067993pt;}
.ydb{bottom:397.095987pt;}
.y10b{bottom:397.719028pt;}
.yac{bottom:397.719340pt;}
.y2d{bottom:397.719520pt;}
.y63{bottom:397.719700pt;}
.y120{bottom:397.719831pt;}
.y6{bottom:400.671997pt;}
.yb9{bottom:403.035445pt;}
.y19a{bottom:405.687988pt;}
.yed{bottom:408.208008pt;}
.y1be{bottom:408.352011pt;}
.y99{bottom:411.003676pt;}
.yda{bottom:413.031220pt;}
.y10a{bottom:413.655202pt;}
.yab{bottom:413.655515pt;}
.y2c{bottom:413.655694pt;}
.y62{bottom:413.655874pt;}
.y16e{bottom:413.656005pt;}
.y4d{bottom:418.971440pt;}
.yb8{bottom:421.635986pt;}
.y1bd{bottom:422.954665pt;}
.y1d9{bottom:422.955554pt;}
.y98{bottom:426.939850pt;}
.yd9{bottom:428.967394pt;}
.y16d{bottom:429.602389pt;}
.y109{bottom:429.603332pt;}
.yaa{bottom:429.603644pt;}
.y2b{bottom:429.603824pt;}
.y7a{bottom:429.604004pt;}
.y1bc{bottom:437.571092pt;}
.y4c{bottom:437.571981pt;}
.y97{bottom:442.887980pt;}
.yd8{bottom:444.915524pt;}
.y199{bottom:445.538251pt;}
.y16c{bottom:445.538564pt;}
.y108{bottom:445.539507pt;}
.y79{bottom:445.539819pt;}
.y2a{bottom:445.539999pt;}
.yec{bottom:450.951517pt;}
.y1bb{bottom:452.187520pt;}
.y17d{bottom:453.508016pt;}
.y96{bottom:458.822852pt;}
.yd7{bottom:460.851698pt;}
.y198{bottom:461.474426pt;}
.y61{bottom:461.474738pt;}
.y17c{bottom:461.475098pt;}
.y78{bottom:461.475230pt;}
.y29{bottom:461.475410pt;}
.y107{bottom:461.475681pt;}
.y11f{bottom:461.475861pt;}
.ya9{bottom:461.475993pt;}
.yeb{bottom:465.555989pt;}
.y1ba{bottom:466.791992pt;}
.y95{bottom:474.759026pt;}
.yd6{bottom:476.799828pt;}
.y197{bottom:477.422556pt;}
.y4b{bottom:477.422868pt;}
.y17b{bottom:477.423228pt;}
.y77{bottom:477.423360pt;}
.y28{bottom:477.423540pt;}
.y106{bottom:477.423811pt;}
.y11e{bottom:477.423991pt;}
.y1d8{bottom:481.407111pt;}
.y1b9{bottom:481.407579pt;}
.y5{bottom:485.092000pt;}
.y94{bottom:490.707156pt;}
.yd5{bottom:492.736003pt;}
.y11d{bottom:493.358419pt;}
.y196{bottom:493.358730pt;}
.y4a{bottom:493.359042pt;}
.y17a{bottom:493.359402pt;}
.y76{bottom:493.359534pt;}
.y27{bottom:493.359714pt;}
.y105{bottom:493.359985pt;}
.y1d7{bottom:496.023538pt;}
.y1b8{bottom:496.024007pt;}
.y93{bottom:506.643331pt;}
.y11c{bottom:509.294594pt;}
.y195{bottom:509.294905pt;}
.y49{bottom:509.295217pt;}
.y104{bottom:509.295577pt;}
.y75{bottom:509.295709pt;}
.y26{bottom:509.295889pt;}
.y14a{bottom:509.295980pt;}
.y1b7{bottom:510.627591pt;}
.y1d6{bottom:510.628011pt;}
.y92{bottom:522.579505pt;}
.y11b{bottom:525.242723pt;}
.y194{bottom:525.243034pt;}
.y1d5{bottom:525.243089pt;}
.y48{bottom:525.243347pt;}
.y103{bottom:525.243706pt;}
.y74{bottom:525.243838pt;}
.y25{bottom:525.244019pt;}
.yd4{bottom:534.831991pt;}
.y91{bottom:538.527635pt;}
.y1b6{bottom:539.847562pt;}
.y1f0{bottom:539.847573pt;}
.y149{bottom:541.178406pt;}
.y11a{bottom:541.178898pt;}
.y24{bottom:541.179029pt;}
.y193{bottom:541.179209pt;}
.yb7{bottom:541.179390pt;}
.y47{bottom:541.179521pt;}
.y102{bottom:541.179881pt;}
.y73{bottom:541.180013pt;}
.y90{bottom:554.463809pt;}
.y1b5{bottom:554.463989pt;}
.y4{bottom:556.904243pt;}
.y135{bottom:557.126536pt;}
.y101{bottom:557.127028pt;}
.y23{bottom:557.127159pt;}
.y192{bottom:557.127339pt;}
.yb6{bottom:557.127520pt;}
.y46{bottom:557.127651pt;}
.y179{bottom:557.127831pt;}
.y188{bottom:557.128011pt;}
.yd3{bottom:558.748006pt;}
.y1b4{bottom:569.079108pt;}
.y1d4{bottom:569.079528pt;}
.y1ef{bottom:569.079997pt;}
.y8f{bottom:570.399984pt;}
.yd2{bottom:572.031982pt;}
.y134{bottom:573.062710pt;}
.y100{bottom:573.063202pt;}
.y22{bottom:573.063334pt;}
.y191{bottom:573.063513pt;}
.yb5{bottom:573.063694pt;}
.y45{bottom:573.063825pt;}
.y1b3{bottom:583.683580pt;}
.y1ee{bottom:583.683592pt;}
.y1d3{bottom:583.684000pt;}
.yd1{bottom:585.315999pt;}
.y3{bottom:586.128127pt;}
.y133{bottom:588.998885pt;}
.y72{bottom:588.999377pt;}
.y21{bottom:588.999508pt;}
.y190{bottom:588.999688pt;}
.yb4{bottom:588.999869pt;}
.y44{bottom:589.000000pt;}
.y8e{bottom:594.315474pt;}
.y1d2{bottom:598.299588pt;}
.y1b2{bottom:598.300008pt;}
.yd0{bottom:598.600016pt;}
.y43{bottom:604.947014pt;}
.y16b{bottom:604.947146pt;}
.y71{bottom:604.947507pt;}
.y20{bottom:604.947638pt;}
.y18f{bottom:604.947817pt;}
.yb3{bottom:604.947999pt;}
.ycf{bottom:611.883993pt;}
.y1ed{bottom:612.915524pt;}
.y1b1{bottom:612.915548pt;}
.y8d{bottom:612.916016pt;}
.y2{bottom:615.352010pt;}
.y42{bottom:620.883189pt;}
.y16a{bottom:620.883321pt;}
.y70{bottom:620.883681pt;}
.y1f{bottom:620.883812pt;}
.y18e{bottom:620.883992pt;}
.yce{bottom:625.168009pt;}
.y1d1{bottom:627.519138pt;}
.y1b0{bottom:627.520020pt;}
.y41{bottom:636.819363pt;}
.y169{bottom:636.819495pt;}
.y6f{bottom:636.819856pt;}
.y1e{bottom:636.819987pt;}
.ycd{bottom:638.451986pt;}
.y1ec{bottom:642.135086pt;}
.y1af{bottom:642.135566pt;}
.ycc{bottom:651.736003pt;}
.y1d{bottom:652.767493pt;}
.y168{bottom:652.767625pt;}
.y8c{bottom:652.767845pt;}
.ya8{bottom:652.767985pt;}
.y1eb{bottom:656.751502pt;}
.y1ae{bottom:656.751993pt;}
.y1c{bottom:668.703668pt;}
.y8b{bottom:668.703799pt;}
.y1{bottom:668.751994pt;}
.y1ad{bottom:671.355117pt;}
.y1ea{bottom:671.355997pt;}
.ycb{bottom:675.904012pt;}
.y1b{bottom:684.639842pt;}
.y1e9{bottom:685.971521pt;}
.y1ac{bottom:685.971544pt;}
.y1a{bottom:700.587972pt;}
.y19{bottom:736.923991pt;}
.hf{height:33.746541pt;}
.h2b{height:34.738822pt;}
.h23{height:34.961984pt;}
.h10{height:39.701725pt;}
.h22{height:39.956768pt;}
.h2{height:44.664627pt;}
.h43{height:44.666356pt;}
.h42{height:44.668069pt;}
.h8{height:44.685629pt;}
.h9{height:44.697828pt;}
.hb{height:44.951552pt;}
.ha{height:44.997307pt;}
.hd{height:47.119034pt;}
.h6{height:49.627030pt;}
.h19{height:49.627557pt;}
.h29{height:49.627560pt;}
.h17{height:49.627750pt;}
.h1a{height:49.627913pt;}
.h36{height:49.628279pt;}
.h1d{height:49.628439pt;}
.h27{height:49.628643pt;}
.h3a{height:49.628723pt;}
.h2a{height:49.628994pt;}
.h2d{height:49.628999pt;}
.h21{height:49.629522pt;}
.h38{height:49.629554pt;}
.h3e{height:49.629558pt;}
.h2e{height:49.629713pt;}
.h24{height:49.630080pt;}
.h16{height:49.630084pt;}
.h3f{height:49.630163pt;}
.h30{height:49.630437pt;}
.h35{height:49.630438pt;}
.h41{height:49.630802pt;}
.h32{height:49.630882pt;}
.h12{height:49.631326pt;}
.h40{height:49.631492pt;}
.h39{height:49.631522pt;}
.h3c{height:49.632211pt;}
.h1f{height:49.632765pt;}
.h28{height:49.633295pt;}
.h31{height:49.634210pt;}
.h2f{height:49.945833pt;}
.h15{height:56.965991pt;}
.h13{height:56.966680pt;}
.h18{height:56.968478pt;}
.h26{height:56.968483pt;}
.h37{height:56.970452pt;}
.h33{height:57.012685pt;}
.h1b{height:57.012722pt;}
.hc{height:57.012887pt;}
.h11{height:57.013442pt;}
.h20{height:57.013446pt;}
.h2c{height:57.013806pt;}
.h34{height:57.013971pt;}
.h1e{height:57.014689pt;}
.h14{height:57.015215pt;}
.h3d{height:57.016304pt;}
.h25{height:57.017023pt;}
.h1c{height:57.017823pt;}
.h3b{height:57.018463pt;}
.he{height:57.018992pt;}
.h5{height:59.552338pt;}
.h7{height:59.696364pt;}
.h4{height:59.934901pt;}
.h3{height:79.403948pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x7{left:71.436000pt;}
.x12{left:75.215998pt;}
.x5{left:78.383998pt;}
.xc{left:82.056000pt;}
.x9{left:87.371999pt;}
.x2{left:88.895996pt;}
.x3{left:95.888474pt;}
.xf{left:130.799998pt;}
.x10{left:137.399213pt;}
.x17{left:145.403030pt;}
.x18{left:152.603188pt;}
.x4{left:155.058868pt;}
.xb{left:156.851174pt;}
.xd{left:160.895996pt;}
.x16{left:169.427999pt;}
.x11{left:178.584010pt;}
.xe{left:182.003921pt;}
.xa{left:197.208008pt;}
.x6{left:209.831991pt;}
.x15{left:211.271993pt;}
.x19{left:213.768005pt;}
.x14{left:215.052003pt;}
.x1a{left:234.432007pt;}
.x1{left:241.524007pt;}
.x13{left:278.544007pt;}
.x8{left:467.105302pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  