
    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_872bbb67245b1ba18bb70818.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060000;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_9aa7a2fecfb9454eb759e039.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_2d621f08d2fee059acee878e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.075000;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_b9805fc9d63e9b9d27498fa4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060000;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_a4ca713a309db552a8c8746c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_349f321de3ce442da9b771e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.060000;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:ff7;src:url('chunks/assets/font_8a078496349ffbb7b0fc5a04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.060000;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:ff8;src:url('chunks/assets/font_202854b031cfa2ad1d377837.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.020000;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:ff9;src:url('chunks/assets/font_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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:ffa;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;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:ffb;src:url('chunks/assets/font_d8ebcf6d76d41918c46a7156.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.075000;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:ffc;src:url('chunks/assets/font_58f3a7b1b7a8c25bbac1bc26.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws7{word-spacing:-22.472467px;}
.ws1{word-spacing:-21.000412px;}
.ws0{word-spacing:-16.498716px;}
.ws5{word-spacing:-15.001902px;}
.ws8{word-spacing:-12.004672px;}
.ws6{word-spacing:-10.504682px;}
.ws3{word-spacing:-6.996050px;}
.ws4{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-1.009556px;}
._1{width:1.425625px;}
._5{width:3.205141px;}
._f{width:4.508711px;}
._17{width:6.320434px;}
._3{width:7.715490px;}
._1c{width:8.884991px;}
._4{width:10.552734px;}
._7{width:12.257411px;}
._9{width:13.740184px;}
._16{width:14.752061px;}
._2{width:17.641596px;}
._0{width:19.537193px;}
._10{width:20.932265px;}
._23{width:22.601398px;}
._21{width:23.680042px;}
._13{width:25.646611px;}
._27{width:26.783874px;}
._d{width:27.978916px;}
._14{width:29.459389px;}
._11{width:31.274523px;}
._24{width:32.598823px;}
._c{width:34.222539px;}
._15{width:35.477754px;}
._1b{width:36.576233px;}
._6{width:38.109021px;}
._8{width:39.286066px;}
._26{width:40.535989px;}
._12{width:41.787827px;}
._22{width:43.341512px;}
._1e{width:49.725465px;}
._a{width:50.822199px;}
._1a{width:52.477991px;}
._1f{width:53.647732px;}
._2a{width:54.753396px;}
._19{width:55.768043px;}
._2d{width:57.528293px;}
._25{width:59.912373px;}
._1d{width:61.185023px;}
._2b{width:62.743361px;}
._28{width:64.557368px;}
._2c{width:65.857277px;}
._2f{width:68.129913px;}
._30{width:69.145394px;}
._29{width:70.857917px;}
._33{width:74.125269px;}
._32{width:79.113075px;}
._b{width:87.960063px;}
._31{width:93.330234px;}
._20{width:101.546096px;}
._18{width:102.774418px;}
._2e{width:129.167769px;}
._34{width:339.677589px;}
.fc3{color:rgb(1,52,44);}
.fc2{color:transparent;}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.675507px;}
.fs5{font-size:27.984200px;}
.fs7{font-size:29.750527px;}
.fs4{font-size:39.614927px;}
.fs8{font-size:42.018727px;}
.fs9{font-size:48.018688px;}
.fs1{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs2{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y113{bottom:3.835382px;}
.y10d{bottom:4.980735px;}
.y10f{bottom:5.122414px;}
.y111{bottom:5.126369px;}
.y11a{bottom:5.603879px;}
.y11c{bottom:8.007016px;}
.y12a{bottom:9.104876px;}
.y12c{bottom:9.262961px;}
.y119{bottom:15.520721px;}
.y129{bottom:25.111105px;}
.y118{bottom:25.437564px;}
.y117{bottom:35.354406px;}
.y128{bottom:41.117335px;}
.y116{bottom:45.271249px;}
.y99{bottom:49.699318px;}
.ybd{bottom:56.105618px;}
.y115{bottom:63.495018px;}
.y110{bottom:64.215018px;}
.y98{bottom:72.207798px;}
.y43{bottom:77.384792px;}
.ybc{bottom:78.614099px;}
.y10e{bottom:82.575017px;}
.yef{bottom:83.793577px;}
.y112{bottom:84.735017px;}
.y10b{bottom:86.084048px;}
.y97{bottom:94.716279px;}
.y10c{bottom:99.855017px;}
.ybb{bottom:101.122580px;}
.yee{bottom:106.302058px;}
.y10a{bottom:108.592529px;}
.y27{bottom:113.642609px;}
.y96{bottom:117.224760px;}
.yba{bottom:123.631060px;}
.yed{bottom:128.810538px;}
.y109{bottom:131.101009px;}
.y26{bottom:136.151089px;}
.y95{bottom:139.733240px;}
.yb9{bottom:146.139541px;}
.yec{bottom:151.319019px;}
.y108{bottom:153.609490px;}
.y25{bottom:158.659570px;}
.y94{bottom:162.241721px;}
.y87{bottom:162.872700px;}
.y11b{bottom:169.695014px;}
.yeb{bottom:173.827500px;}
.y107{bottom:176.117971px;}
.y24{bottom:181.168051px;}
.y93{bottom:184.750202px;}
.y86{bottom:185.381181px;}
.ya1{bottom:191.231555px;}
.yd0{bottom:194.954567px;}
.yea{bottom:196.335980px;}
.y106{bottom:198.626451px;}
.y23{bottom:203.676531px;}
.y92{bottom:207.258682px;}
.y85{bottom:207.889661px;}
.ycf{bottom:217.463047px;}
.ye9{bottom:218.844461px;}
.y105{bottom:221.134932px;}
.y22{bottom:226.185012px;}
.y91{bottom:229.767163px;}
.y84{bottom:230.398142px;}
.y12b{bottom:234.855011px;}
.yb8{bottom:236.323540px;}
.yce{bottom:239.971528px;}
.ye8{bottom:241.352942px;}
.y104{bottom:243.643413px;}
.y21{bottom:248.693493px;}
.y90{bottom:252.275644px;}
.y83{bottom:252.906623px;}
.yb7{bottom:258.832021px;}
.ycd{bottom:262.480009px;}
.ye7{bottom:263.861422px;}
.y103{bottom:266.151893px;}
.y114{bottom:268.878324px;}
.y8f{bottom:274.784124px;}
.y82{bottom:275.415103px;}
.yb6{bottom:281.340502px;}
.y9a{bottom:281.536669px;}
.ycc{bottom:284.988489px;}
.ye6{bottom:286.369903px;}
.y102{bottom:288.660374px;}
.y4c{bottom:293.641725px;}
.y127{bottom:295.695008px;}
.y8e{bottom:297.292605px;}
.y81{bottom:297.923584px;}
.yb5{bottom:303.848982px;}
.ycb{bottom:307.496970px;}
.ye5{bottom:308.878384px;}
.y101{bottom:311.168855px;}
.y4b{bottom:318.401054px;}
.y8d{bottom:319.801086px;}
.y80{bottom:320.432065px;}
.y20{bottom:326.210453px;}
.ye4{bottom:331.386864px;}
.y100{bottom:333.677335px;}
.y8c{bottom:342.309566px;}
.y7f{bottom:342.940545px;}
.yd2{bottom:347.959159px;}
.y1f{bottom:348.718934px;}
.ye3{bottom:353.895345px;}
.yff{bottom:356.185816px;}
.y11d{bottom:362.599280px;}
.y42{bottom:363.343033px;}
.y8b{bottom:364.818047px;}
.y7e{bottom:365.449026px;}
.yd1{bottom:368.216792px;}
.y1e{bottom:371.227415px;}
.ye2{bottom:376.403826px;}
.yfe{bottom:378.694297px;}
.y41{bottom:385.851514px;}
.y8a{bottom:387.326528px;}
.y7d{bottom:387.957507px;}
.y1d{bottom:393.735895px;}
.ye1{bottom:398.912306px;}
.yfd{bottom:401.202777px;}
.y40{bottom:408.359995px;}
.y89{bottom:409.835008px;}
.y7c{bottom:410.465987px;}
.y1c{bottom:416.244376px;}
.ye0{bottom:421.420787px;}
.yfc{bottom:423.711258px;}
.y3f{bottom:430.868475px;}
.y88{bottom:432.343489px;}
.y7b{bottom:432.974468px;}
.y1b{bottom:438.752857px;}
.ydf{bottom:443.929268px;}
.yfb{bottom:446.219739px;}
.y3e{bottom:453.376956px;}
.y7a{bottom:455.482949px;}
.y1a{bottom:461.261337px;}
.yde{bottom:466.437748px;}
.yfa{bottom:468.728219px;}
.y3d{bottom:475.885437px;}
.y51{bottom:477.435431px;}
.y79{bottom:477.991429px;}
.y19{bottom:483.769818px;}
.ydd{bottom:488.946229px;}
.yf9{bottom:491.236700px;}
.y3c{bottom:498.393917px;}
.y78{bottom:500.499910px;}
.y18{bottom:506.278299px;}
.ydc{bottom:511.454710px;}
.yf8{bottom:513.745181px;}
.y3b{bottom:520.902398px;}
.y9c{bottom:521.545608px;}
.y77{bottom:523.008391px;}
.y17{bottom:528.786779px;}
.ydb{bottom:533.963190px;}
.yf7{bottom:536.253661px;}
.y9b{bottom:541.803240px;}
.y3a{bottom:543.410879px;}
.y76{bottom:545.516871px;}
.y16{bottom:551.295260px;}
.yda{bottom:556.471671px;}
.yf6{bottom:558.762142px;}
.y39{bottom:565.919359px;}
.y75{bottom:568.025352px;}
.y15{bottom:573.803741px;}
.yd9{bottom:578.980152px;}
.yf5{bottom:581.270623px;}
.y38{bottom:588.427840px;}
.y74{bottom:590.533833px;}
.y14{bottom:596.312221px;}
.yd8{bottom:601.488632px;}
.yf4{bottom:603.779103px;}
.y37{bottom:610.936321px;}
.y73{bottom:613.042313px;}
.y13{bottom:618.820702px;}
.yd7{bottom:623.997113px;}
.yf3{bottom:626.287584px;}
.y36{bottom:633.444801px;}
.y72{bottom:635.550794px;}
.y12{bottom:641.329183px;}
.yd6{bottom:646.505594px;}
.yf2{bottom:648.796065px;}
.y35{bottom:655.953282px;}
.y71{bottom:658.059275px;}
.y11{bottom:663.837663px;}
.yb4{bottom:664.177582px;}
.yf1{bottom:671.304545px;}
.y34{bottom:678.461763px;}
.y70{bottom:680.567755px;}
.y10{bottom:686.346144px;}
.yb3{bottom:686.686063px;}
.yd5{bottom:692.837675px;}
.yf0{bottom:693.813026px;}
.y33{bottom:700.970243px;}
.y6f{bottom:703.076236px;}
.yf{bottom:708.854625px;}
.yb2{bottom:709.194544px;}
.y32{bottom:723.478724px;}
.y6e{bottom:725.584717px;}
.yca{bottom:725.671441px;}
.ye{bottom:731.363105px;}
.yb1{bottom:731.703024px;}
.yd4{bottom:733.917821px;}
.y31{bottom:745.987205px;}
.y6d{bottom:748.093197px;}
.yc9{bottom:748.179921px;}
.yd{bottom:753.871586px;}
.yd3{bottom:754.175454px;}
.yb0{bottom:754.211505px;}
.y30{bottom:768.495685px;}
.y6c{bottom:770.601678px;}
.yc8{bottom:770.688402px;}
.yc{bottom:776.380067px;}
.yaf{bottom:776.719986px;}
.y2f{bottom:791.004166px;}
.y6b{bottom:793.110159px;}
.yc7{bottom:793.196883px;}
.yb{bottom:798.888547px;}
.yae{bottom:799.228466px;}
.y64{bottom:802.713756px;}
.y2e{bottom:813.512647px;}
.y6a{bottom:815.618639px;}
.yc6{bottom:815.705363px;}
.ya{bottom:821.397028px;}
.yad{bottom:821.736947px;}
.y63{bottom:825.222237px;}
.y2d{bottom:836.021127px;}
.y69{bottom:838.127120px;}
.yc5{bottom:838.213844px;}
.y9{bottom:843.905509px;}
.yac{bottom:844.245428px;}
.y62{bottom:847.730717px;}
.y2c{bottom:858.529608px;}
.y68{bottom:860.635601px;}
.yc4{bottom:860.722325px;}
.y8{bottom:866.413989px;}
.y61{bottom:870.239198px;}
.y2b{bottom:881.038089px;}
.y67{bottom:883.144081px;}
.yc3{bottom:883.230805px;}
.y7{bottom:888.922470px;}
.ya0{bottom:890.324659px;}
.y60{bottom:892.747679px;}
.y2a{bottom:903.546569px;}
.y66{bottom:905.652562px;}
.yc2{bottom:905.739286px;}
.y6{bottom:911.430951px;}
.y5f{bottom:915.256159px;}
.y29{bottom:926.055050px;}
.y65{bottom:928.161043px;}
.yc1{bottom:928.247767px;}
.y5{bottom:933.939431px;}
.yab{bottom:935.416634px;}
.y5e{bottom:937.764640px;}
.y28{bottom:948.563531px;}
.yc0{bottom:950.756247px;}
.y4{bottom:956.447912px;}
.y126{bottom:957.186448px;}
.yaa{bottom:957.925114px;}
.y5d{bottom:960.273121px;}
.y4e{bottom:969.733087px;}
.ybf{bottom:973.264728px;}
.y3{bottom:978.956393px;}
.y125{bottom:979.694929px;}
.ya9{bottom:980.433595px;}
.y5c{bottom:982.781601px;}
.y4a{bottom:987.891154px;}
.y4d{bottom:994.492416px;}
.ybe{bottom:995.773209px;}
.y2{bottom:1001.464873px;}
.y124{bottom:1002.203410px;}
.ya8{bottom:1002.942076px;}
.y5b{bottom:1005.290082px;}
.y49{bottom:1012.650483px;}
.y123{bottom:1024.711890px;}
.ya7{bottom:1025.450556px;}
.y5a{bottom:1027.798563px;}
.y57{bottom:1035.558395px;}
.y48{bottom:1037.409812px;}
.ya4{bottom:1046.351857px;}
.y122{bottom:1047.220371px;}
.ya6{bottom:1047.959037px;}
.y59{bottom:1050.307043px;}
.y56{bottom:1058.066875px;}
.y47{bottom:1062.169141px;}
.y121{bottom:1069.728852px;}
.ya5{bottom:1070.467518px;}
.ya3{bottom:1071.111185px;}
.y58{bottom:1072.815524px;}
.y55{bottom:1080.575356px;}
.y120{bottom:1092.237332px;}
.ya2{bottom:1095.870514px;}
.y54{bottom:1103.083837px;}
.y46{bottom:1106.614810px;}
.y11f{bottom:1114.745813px;}
.y9f{bottom:1116.053102px;}
.y50{bottom:1122.366097px;}
.y53{bottom:1125.592317px;}
.y9e{bottom:1138.561583px;}
.y4f{bottom:1147.125425px;}
.y52{bottom:1148.100798px;}
.y11e{bottom:1155.841126px;}
.y45{bottom:1158.101480px;}
.y9d{bottom:1161.070064px;}
.y44{bottom:1187.362505px;}
.hd{height:9.000000px;}
.ha{height:12.959999px;}
.hc{height:13.319999px;}
.he{height:15.033783px;}
.h12{height:19.439999px;}
.h17{height:22.319999px;}
.hb{height:22.751155px;}
.h11{height:24.187179px;}
.h8{height:32.246550px;}
.h13{height:34.161225px;}
.h16{height:39.039194px;}
.hf{height:48.786186px;}
.h4{height:48.846194px;}
.h10{height:53.639998px;}
.h14{height:53.653825px;}
.h3{height:53.719820px;}
.h15{height:54.359998px;}
.h7{height:54.643748px;}
.h9{height:59.062253px;}
.h6{height:59.638470px;}
.h5{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:30.959999px;}
.w7{width:46.079998px;}
.w4{width:62.279997px;}
.w3{width:65.879997px;}
.w2{width:66.239997px;}
.w6{width:200.519992px;}
.w9{width:287.279988px;}
.w8{width:716.759970px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:16.550339px;}
.x5{left:43.552352px;}
.xb{left:44.661012px;}
.x1{left:45.939796px;}
.x6{left:48.001294px;}
.x13{left:53.279998px;}
.x11{left:57.239998px;}
.xf{left:119.519995px;}
.x10{left:127.079995px;}
.x7{left:396.355207px;}
.x8{left:467.018286px;}
.x2{left:469.235590px;}
.xa{left:470.328334px;}
.x3{left:481.966950px;}
.xe{left:496.079979px;}
.x4{left:497.283268px;}
.xd{left:618.479974px;}
.xc{left:620.279974px;}
.x9{left:801.780813px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-19.975526pt;}
.ws1{word-spacing:-18.667033pt;}
.ws0{word-spacing:-14.665525pt;}
.ws5{word-spacing:-13.335024pt;}
.ws8{word-spacing:-10.670820pt;}
.ws6{word-spacing:-9.337495pt;}
.ws3{word-spacing:-6.218711pt;}
.ws4{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-0.897383pt;}
._1{width:1.267222pt;}
._5{width:2.849014pt;}
._f{width:4.007743pt;}
._17{width:5.618164pt;}
._3{width:6.858213pt;}
._1c{width:7.897770pt;}
._4{width:9.380208pt;}
._7{width:10.895476pt;}
._9{width:12.213497pt;}
._16{width:13.112943pt;}
._2{width:15.681419pt;}
._0{width:17.366394pt;}
._10{width:18.606458pt;}
._23{width:20.090131pt;}
._21{width:21.048926pt;}
._13{width:22.796988pt;}
._27{width:23.807888pt;}
._d{width:24.870147pt;}
._14{width:26.186124pt;}
._11{width:27.799576pt;}
._24{width:28.976732pt;}
._c{width:30.420035pt;}
._15{width:31.535781pt;}
._1b{width:32.512207pt;}
._6{width:33.874685pt;}
._8{width:34.920947pt;}
._26{width:36.031990pt;}
._12{width:37.144735pt;}
._22{width:38.525789pt;}
._1e{width:44.200414pt;}
._a{width:45.175288pt;}
._1a{width:46.647103pt;}
._1f{width:47.686873pt;}
._2a{width:48.669685pt;}
._19{width:49.571594pt;}
._2d{width:51.136260pt;}
._25{width:53.255443pt;}
._1d{width:54.386687pt;}
._2b{width:55.771877pt;}
._28{width:57.384327pt;}
._2c{width:58.539802pt;}
._2f{width:60.559923pt;}
._30{width:61.462572pt;}
._29{width:62.984815pt;}
._33{width:65.889128pt;}
._32{width:70.322733pt;}
._b{width:78.186723pt;}
._31{width:82.960208pt;}
._20{width:90.263197pt;}
._18{width:91.355038pt;}
._2e{width:114.815795pt;}
._34{width:301.935635pt;}
.fs6{font-size:16.600451pt;}
.fs5{font-size:24.874844pt;}
.fs7{font-size:26.444913pt;}
.fs4{font-size:35.213268pt;}
.fs8{font-size:37.349980pt;}
.fs9{font-size:42.683279pt;}
.fs1{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs2{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y113{bottom:3.409229pt;}
.y10d{bottom:4.427320pt;}
.y10f{bottom:4.553257pt;}
.y111{bottom:4.556773pt;}
.y11a{bottom:4.981226pt;}
.y11c{bottom:7.117347pt;}
.y12a{bottom:8.093223pt;}
.y12c{bottom:8.233743pt;}
.y119{bottom:13.796197pt;}
.y129{bottom:22.320983pt;}
.y118{bottom:22.611168pt;}
.y117{bottom:31.426139pt;}
.y128{bottom:36.548742pt;}
.y116{bottom:40.241110pt;}
.y99{bottom:44.177171pt;}
.ybd{bottom:49.871661pt;}
.y115{bottom:56.440016pt;}
.y110{bottom:57.080016pt;}
.y98{bottom:64.184710pt;}
.y43{bottom:68.786482pt;}
.ybc{bottom:69.879199pt;}
.y10e{bottom:73.400015pt;}
.yef{bottom:74.483180pt;}
.y112{bottom:75.320015pt;}
.y10b{bottom:76.519154pt;}
.y97{bottom:84.192248pt;}
.y10c{bottom:88.760015pt;}
.ybb{bottom:89.886737pt;}
.yee{bottom:94.490718pt;}
.y10a{bottom:96.526692pt;}
.y27{bottom:101.015652pt;}
.y96{bottom:104.199786pt;}
.yba{bottom:109.894276pt;}
.yed{bottom:114.498256pt;}
.y109{bottom:116.534231pt;}
.y26{bottom:121.023190pt;}
.y95{bottom:124.207325pt;}
.yb9{bottom:129.901814pt;}
.yec{bottom:134.505795pt;}
.y108{bottom:136.541769pt;}
.y25{bottom:141.030729pt;}
.y94{bottom:144.214863pt;}
.y87{bottom:144.775733pt;}
.y11b{bottom:150.840012pt;}
.yeb{bottom:154.513333pt;}
.y107{bottom:156.549307pt;}
.y24{bottom:161.038267pt;}
.y93{bottom:164.222401pt;}
.y86{bottom:164.783272pt;}
.ya1{bottom:169.983604pt;}
.yd0{bottom:173.292948pt;}
.yea{bottom:174.520871pt;}
.y106{bottom:176.556846pt;}
.y23{bottom:181.045806pt;}
.y92{bottom:184.229940pt;}
.y85{bottom:184.790810pt;}
.ycf{bottom:193.300487pt;}
.ye9{bottom:194.528410pt;}
.y105{bottom:196.564384pt;}
.y22{bottom:201.053344pt;}
.y91{bottom:204.237478pt;}
.y84{bottom:204.798349pt;}
.y12b{bottom:208.760010pt;}
.yb8{bottom:210.065369pt;}
.yce{bottom:213.308025pt;}
.ye8{bottom:214.535948pt;}
.y104{bottom:216.571922pt;}
.y21{bottom:221.060882pt;}
.y90{bottom:224.245017pt;}
.y83{bottom:224.805887pt;}
.yb7{bottom:230.072908pt;}
.ycd{bottom:233.315563pt;}
.ye7{bottom:234.543487pt;}
.y103{bottom:236.579461pt;}
.y114{bottom:239.002955pt;}
.y8f{bottom:244.252555pt;}
.y82{bottom:244.813425pt;}
.yb6{bottom:250.080446pt;}
.y9a{bottom:250.254816pt;}
.ycc{bottom:253.323102pt;}
.ye6{bottom:254.551025pt;}
.y102{bottom:256.586999pt;}
.y4c{bottom:261.014867pt;}
.y127{bottom:262.840007pt;}
.y8e{bottom:264.260093pt;}
.y81{bottom:264.820964pt;}
.yb5{bottom:270.087984pt;}
.ycb{bottom:273.330640pt;}
.ye5{bottom:274.558563pt;}
.y101{bottom:276.594538pt;}
.y4b{bottom:283.023159pt;}
.y8d{bottom:284.267632pt;}
.y80{bottom:284.828502pt;}
.y20{bottom:289.964847pt;}
.ye4{bottom:294.566102pt;}
.y100{bottom:296.602076pt;}
.y8c{bottom:304.275170pt;}
.y7f{bottom:304.836040pt;}
.yd2{bottom:309.297030pt;}
.y1f{bottom:309.972386pt;}
.ye3{bottom:314.573640pt;}
.yff{bottom:316.609614pt;}
.y11d{bottom:322.310471pt;}
.y42{bottom:322.971585pt;}
.y8b{bottom:324.282708pt;}
.y7e{bottom:324.843579pt;}
.yd1{bottom:327.303815pt;}
.y1e{bottom:329.979924pt;}
.ye2{bottom:334.581178pt;}
.yfe{bottom:336.617153pt;}
.y41{bottom:342.979124pt;}
.y8a{bottom:344.290247pt;}
.y7d{bottom:344.851117pt;}
.y1d{bottom:349.987463pt;}
.ye1{bottom:354.588717pt;}
.yfd{bottom:356.624691pt;}
.y40{bottom:362.986662pt;}
.y89{bottom:364.297785pt;}
.y7c{bottom:364.858656pt;}
.y1c{bottom:369.995001pt;}
.ye0{bottom:374.596255pt;}
.yfc{bottom:376.632229pt;}
.y3f{bottom:382.994200pt;}
.y88{bottom:384.305324pt;}
.y7b{bottom:384.866194pt;}
.y1b{bottom:390.002539pt;}
.ydf{bottom:394.603793pt;}
.yfb{bottom:396.639768pt;}
.y3e{bottom:403.001739pt;}
.y7a{bottom:404.873732pt;}
.y1a{bottom:410.010078pt;}
.yde{bottom:414.611332pt;}
.yfa{bottom:416.647306pt;}
.y3d{bottom:423.009277pt;}
.y51{bottom:424.387050pt;}
.y79{bottom:424.881271pt;}
.y19{bottom:430.017616pt;}
.ydd{bottom:434.618870pt;}
.yf9{bottom:436.654845pt;}
.y3c{bottom:443.016815pt;}
.y78{bottom:444.888809pt;}
.y18{bottom:450.025154pt;}
.ydc{bottom:454.626409pt;}
.yf8{bottom:456.662383pt;}
.y3b{bottom:463.024354pt;}
.y9c{bottom:463.596096pt;}
.y77{bottom:464.896347pt;}
.y17{bottom:470.032693pt;}
.ydb{bottom:474.633947pt;}
.yf7{bottom:476.669921pt;}
.y9b{bottom:481.602880pt;}
.y3a{bottom:483.031892pt;}
.y76{bottom:484.903886pt;}
.y16{bottom:490.040231pt;}
.yda{bottom:494.641485pt;}
.yf6{bottom:496.677460pt;}
.y39{bottom:503.039431pt;}
.y75{bottom:504.911424pt;}
.y15{bottom:510.047769pt;}
.yd9{bottom:514.649024pt;}
.yf5{bottom:516.684998pt;}
.y38{bottom:523.046969pt;}
.y74{bottom:524.918962pt;}
.y14{bottom:530.055308pt;}
.yd8{bottom:534.656562pt;}
.yf4{bottom:536.692536pt;}
.y37{bottom:543.054507pt;}
.y73{bottom:544.926501pt;}
.y13{bottom:550.062846pt;}
.yd7{bottom:554.664100pt;}
.yf3{bottom:556.700075pt;}
.y36{bottom:563.062046pt;}
.y72{bottom:564.934039pt;}
.y12{bottom:570.070385pt;}
.yd6{bottom:574.671639pt;}
.yf2{bottom:576.707613pt;}
.y35{bottom:583.069584pt;}
.y71{bottom:584.941578pt;}
.y11{bottom:590.077923pt;}
.yb4{bottom:590.380073pt;}
.yf1{bottom:596.715151pt;}
.y34{bottom:603.077122pt;}
.y70{bottom:604.949116pt;}
.y10{bottom:610.085461pt;}
.yb3{bottom:610.387612pt;}
.yd5{bottom:615.855711pt;}
.yf0{bottom:616.722690pt;}
.y33{bottom:623.084661pt;}
.y6f{bottom:624.956654pt;}
.yf{bottom:630.093000pt;}
.yb2{bottom:630.395150pt;}
.y32{bottom:643.092199pt;}
.y6e{bottom:644.964193pt;}
.yca{bottom:645.041281pt;}
.ye{bottom:650.100538pt;}
.yb1{bottom:650.402688pt;}
.yd4{bottom:652.371397pt;}
.y31{bottom:663.099737pt;}
.y6d{bottom:664.971731pt;}
.yc9{bottom:665.048819pt;}
.yd{bottom:670.108076pt;}
.yd3{bottom:670.378181pt;}
.yb0{bottom:670.410227pt;}
.y30{bottom:683.107276pt;}
.y6c{bottom:684.979269pt;}
.yc8{bottom:685.056357pt;}
.yc{bottom:690.115615pt;}
.yaf{bottom:690.417765pt;}
.y2f{bottom:703.114814pt;}
.y6b{bottom:704.986808pt;}
.yc7{bottom:705.063896pt;}
.yb{bottom:710.123153pt;}
.yae{bottom:710.425304pt;}
.y64{bottom:713.523339pt;}
.y2e{bottom:723.122353pt;}
.y6a{bottom:724.994346pt;}
.yc6{bottom:725.071434pt;}
.ya{bottom:730.130691pt;}
.yad{bottom:730.432842pt;}
.y63{bottom:733.530877pt;}
.y2d{bottom:743.129891pt;}
.y69{bottom:745.001884pt;}
.yc5{bottom:745.078972pt;}
.y9{bottom:750.138230pt;}
.yac{bottom:750.440380pt;}
.y62{bottom:753.538415pt;}
.y2c{bottom:763.137429pt;}
.y68{bottom:765.009423pt;}
.yc4{bottom:765.086511pt;}
.y8{bottom:770.145768pt;}
.y61{bottom:773.545954pt;}
.y2b{bottom:783.144968pt;}
.y67{bottom:785.016961pt;}
.yc3{bottom:785.094049pt;}
.y7{bottom:790.153307pt;}
.ya0{bottom:791.399697pt;}
.y60{bottom:793.553492pt;}
.y2a{bottom:803.152506pt;}
.y66{bottom:805.024500pt;}
.yc2{bottom:805.101588pt;}
.y6{bottom:810.160845pt;}
.y5f{bottom:813.561030pt;}
.y29{bottom:823.160044pt;}
.y65{bottom:825.032038pt;}
.yc1{bottom:825.109126pt;}
.y5{bottom:830.168383pt;}
.yab{bottom:831.481452pt;}
.y5e{bottom:833.568569pt;}
.y28{bottom:843.167583pt;}
.yc0{bottom:845.116664pt;}
.y4{bottom:850.175922pt;}
.y126{bottom:850.832398pt;}
.yaa{bottom:851.488990pt;}
.y5d{bottom:853.576107pt;}
.y4e{bottom:861.984966pt;}
.ybf{bottom:865.124203pt;}
.y3{bottom:870.183460pt;}
.y125{bottom:870.839937pt;}
.ya9{bottom:871.496529pt;}
.y5c{bottom:873.583646pt;}
.y4a{bottom:878.125471pt;}
.y4d{bottom:883.993259pt;}
.ybe{bottom:885.131741pt;}
.y2{bottom:890.190998pt;}
.y124{bottom:890.847475pt;}
.ya8{bottom:891.504067pt;}
.y5b{bottom:893.591184pt;}
.y49{bottom:900.133763pt;}
.y123{bottom:910.855014pt;}
.ya7{bottom:911.511606pt;}
.y5a{bottom:913.598722pt;}
.y57{bottom:920.496351pt;}
.y48{bottom:922.142055pt;}
.ya4{bottom:930.090539pt;}
.y122{bottom:930.862552pt;}
.ya6{bottom:931.519144pt;}
.y59{bottom:933.606261pt;}
.y56{bottom:940.503889pt;}
.y47{bottom:944.150347pt;}
.y121{bottom:950.870090pt;}
.ya5{bottom:951.526682pt;}
.ya3{bottom:952.098831pt;}
.y58{bottom:953.613799pt;}
.y55{bottom:960.511427pt;}
.y120{bottom:970.877629pt;}
.ya2{bottom:974.107124pt;}
.y54{bottom:980.518966pt;}
.y46{bottom:983.657609pt;}
.y11f{bottom:990.885167pt;}
.y9f{bottom:992.047202pt;}
.y50{bottom:997.658753pt;}
.y53{bottom:1000.526504pt;}
.y9e{bottom:1012.054741pt;}
.y4f{bottom:1019.667045pt;}
.y52{bottom:1020.534043pt;}
.y11e{bottom:1027.414334pt;}
.y45{bottom:1029.423538pt;}
.y9d{bottom:1032.062279pt;}
.y44{bottom:1055.433338pt;}
.hd{height:8.000000pt;}
.ha{height:11.520000pt;}
.hc{height:11.840000pt;}
.he{height:13.363363pt;}
.h12{height:17.279999pt;}
.h17{height:19.839999pt;}
.hb{height:20.223249pt;}
.h11{height:21.499714pt;}
.h8{height:28.663600pt;}
.h13{height:30.365533pt;}
.h16{height:34.701506pt;}
.hf{height:43.365499pt;}
.h4{height:43.418839pt;}
.h10{height:47.679998pt;}
.h14{height:47.692289pt;}
.h3{height:47.750951pt;}
.h15{height:48.319998pt;}
.h7{height:48.572220pt;}
.h9{height:52.499781pt;}
.h6{height:53.011974pt;}
.h5{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:27.519999pt;}
.w7{width:40.959998pt;}
.w4{width:55.359998pt;}
.w3{width:58.559998pt;}
.w2{width:58.879998pt;}
.w6{width:178.239993pt;}
.w9{width:255.359989pt;}
.w8{width:637.119973pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:14.711412pt;}
.x5{left:38.713202pt;}
.xb{left:39.698677pt;}
.x1{left:40.835374pt;}
.x6{left:42.667817pt;}
.x13{left:47.359998pt;}
.x11{left:50.879998pt;}
.xf{left:106.239996pt;}
.x10{left:112.959995pt;}
.x7{left:352.315740pt;}
.x8{left:415.127365pt;}
.x2{left:417.098303pt;}
.xa{left:418.069631pt;}
.x3{left:428.415067pt;}
.xe{left:440.959982pt;}
.x4{left:442.029571pt;}
.xd{left:549.759977pt;}
.xc{left:551.359977pt;}
.x9{left:712.694056pt;}
}




    .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; }
  