
    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_a1063e0819e926ae72272dfd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_77e9c7f022000c1898518e5c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_38d0612603c9a1d92f2c739e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_a13feebf5caaf6e52b9d4c7e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_008e05e20c57cbc4ecf767ec.woff')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_b9da60cb356f07877983a02f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_62e1a32d34fc55797670be48.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_6e77c562e59474e7b4873634.woff')format("woff");}.ff8{font-family:ff8;line-height:0.866699;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_265a4b4f158c94c25de53af9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_dcf2c360736dfbb15f2b5f29.woff')format("woff");}.ffa{font-family:ffa;line-height:0.774414;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_4af6ce552d3d8236e7ccfff4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.126953;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_29d9b4b366023ba91e7fcaae.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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:ffd;src:url('chunks/assets/font_82ef9337f05e36097e5018b5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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:ffe;src:url('chunks/assets/font_91f343d344fc9f6b5067db57.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.009657px;}
.ls6{letter-spacing:0.009894px;}
.lsc{letter-spacing:0.010620px;}
.ls5{letter-spacing:0.018556px;}
.ls10{letter-spacing:0.021238px;}
.lsf{letter-spacing:0.021282px;}
.ls2{letter-spacing:0.182640px;}
.ls1{letter-spacing:0.237796px;}
.ls8{letter-spacing:0.288000px;}
.ls9{letter-spacing:4.505278px;}
.lse{letter-spacing:28.252489px;}
.lsd{letter-spacing:31.854587px;}
.lsb{letter-spacing:34.015846px;}
.ls4{letter-spacing:70.178978px;}
.ls3{letter-spacing:127.812959px;}
.ls0{letter-spacing:1142.891450px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(5,99,193),0 0.015em rgb(5,99,193),0.015em 0 rgb(5,99,193),0 -0.015em  rgb(5,99,193);}
.sc3{text-shadow:-0.015em 0 rgb(68,113,196),0 0.015em rgb(68,113,196),0.015em 0 rgb(68,113,196),0 -0.015em  rgb(68,113,196);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(5,99,193);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(68,113,196);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-55.943978px;}
.ws6{word-spacing:-42.724783px;}
.ws4{word-spacing:-32.418543px;}
.ws5{word-spacing:-32.399987px;}
.wsd{word-spacing:-18.021231px;}
.wsb{word-spacing:-17.999993px;}
.ws9{word-spacing:-16.613273px;}
.ws7{word-spacing:-16.559993px;}
.ws0{word-spacing:-16.509790px;}
.ws2{word-spacing:-16.271993px;}
.ws8{word-spacing:-15.238794px;}
.ws3{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-91.545384px;}
._10{margin-left:-90.349584px;}
._22{margin-left:-10.307971px;}
._2{margin-left:-8.210321px;}
._3{margin-left:-6.674480px;}
._4{margin-left:-4.718334px;}
._5{margin-left:-3.386343px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._7{width:2.706146px;}
._c{width:4.258987px;}
._a{width:5.592136px;}
._1a{width:6.621139px;}
._b{width:7.639753px;}
._12{width:9.252924px;}
._9{width:11.236748px;}
._6{width:12.772277px;}
._8{width:13.818338px;}
._11{width:14.819408px;}
._e{width:15.967528px;}
._1b{width:16.977217px;}
._1d{width:19.050497px;}
._1c{width:20.090408px;}
._d{width:21.919121px;}
._20{width:23.991480px;}
._16{width:25.911069px;}
._17{width:28.026134px;}
._26{width:31.665445px;}
._28{width:34.925385px;}
._27{width:36.151122px;}
._1e{width:39.410842px;}
._1f{width:42.298534px;}
._21{width:45.266281px;}
._19{width:51.688027px;}
._18{width:52.759293px;}
._15{width:64.070117px;}
._13{width:68.184488px;}
._14{width:69.638172px;}
._25{width:113.362126px;}
._23{width:118.458908px;}
._24{width:119.619926px;}
.fc12{color:rgb(0,101,204);}
.fc10{color:rgb(0,176,80);}
.fce{color:rgb(153,142,164);}
.fcd{color:rgb(225,216,236);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(83,129,53);}
.fc13{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fc11{color:rgb(68,113,196);}
.fca{color:rgb(5,99,193);}
.fcf{color:rgb(243,238,248);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcb{color:rgb(180,172,188);}
.fc5{color:rgb(0,112,192);}
.fcc{color:rgb(205,196,214);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y6{bottom:-11.339990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y3b{bottom:4.858985px;}
.yb{bottom:4.860038px;}
.yc{bottom:32.880287px;}
.ya{bottom:49.260240px;}
.y8{bottom:54.120278px;}
.y9{bottom:55.560278px;}
.y90{bottom:134.939946px;}
.yde{bottom:138.899944px;}
.y39{bottom:139.079944px;}
.y6c{bottom:146.819941px;}
.yc4{bottom:146.999941px;}
.y82{bottom:158.699937px;}
.y8f{bottom:158.879936px;}
.ydd{bottom:162.839935px;}
.y38{bottom:163.199935px;}
.ye0{bottom:170.759932px;}
.y6b{bottom:170.939932px;}
.yc3{bottom:171.119932px;}
.y81{bottom:182.819927px;}
.y37{bottom:187.139925px;}
.yc6{bottom:194.699922px;}
.y6a{bottom:194.879922px;}
.yc2{bottom:195.059922px;}
.ydc{bottom:198.839920px;}
.y80{bottom:206.759917px;}
.y69{bottom:218.819912px;}
.ydb{bottom:222.779911px;}
.y36{bottom:223.139911px;}
.y7f{bottom:230.699908px;}
.yc1{bottom:231.059908px;}
.y68{bottom:242.759903px;}
.yda{bottom:246.719901px;}
.y8e{bottom:254.819898px;}
.y35{bottom:259.499896px;}
.y67{bottom:266.699893px;}
.yc0{bottom:267.059893px;}
.y97{bottom:278.759888px;}
.yd9{bottom:282.719887px;}
.y8d{bottom:290.639884px;}
.y66{bottom:290.819884px;}
.ybf{bottom:299.639880px;}
.y7e{bottom:302.699879px;}
.y34{bottom:306.119878px;}
.yd8{bottom:306.659877px;}
.y65{bottom:314.759874px;}
.ybe{bottom:320.339872px;}
.y7d{bottom:326.639869px;}
.y96{bottom:338.699865px;}
.y33{bottom:340.499864px;}
.ybd{bottom:341.039864px;}
.yd7{bottom:342.659863px;}
.y23{bottom:349.139860px;}
.y9c{bottom:350.579860px;}
.y64{bottom:350.759860px;}
.y7c{bottom:362.639855px;}
.yd6{bottom:366.599853px;}
.ybc{bottom:373.799850px;}
.y95{bottom:374.699850px;}
.y47{bottom:376.859849px;}
.y8c{bottom:386.579845px;}
.y63{bottom:386.759845px;}
.yd5{bottom:390.719844px;}
.ybb{bottom:394.499842px;}
.y46{bottom:396.839841px;}
.y7b{bottom:398.639841px;}
.ydf{bottom:410.519836px;}
.y62{bottom:410.699836px;}
.y45{bottom:416.819833px;}
.y7a{bottom:422.579831px;}
.yba{bottom:427.079829px;}
.yd4{bottom:427.799829px;}
.y61{bottom:434.639826px;}
.y44{bottom:436.799825px;}
.y79{bottom:446.519821px;}
.yb9{bottom:447.779821px;}
.y43{bottom:456.779817px;}
.y60{bottom:458.579817px;}
.yd3{bottom:466.679813px;}
.y94{bottom:470.639812px;}
.y22{bottom:476.939809px;}
.y42{bottom:477.659809px;}
.yb8{bottom:480.539808px;}
.y5f{bottom:482.519807px;}
.yd2{bottom:490.619804px;}
.y8b{bottom:494.579802px;}
.yb7{bottom:501.239800px;}
.y93{bottom:506.459797px;}
.yd1{bottom:514.559794px;}
.y5e{bottom:518.519793px;}
.y32{bottom:521.759791px;}
.y8a{bottom:530.579788px;}
.yb6{bottom:533.999786px;}
.yd0{bottom:538.499785px;}
.y31{bottom:539.039784px;}
.y5d{bottom:542.459783px;}
.y21{bottom:552.179779px;}
.y89{bottom:554.519778px;}
.yb5{bottom:554.699778px;}
.ycf{bottom:562.439775px;}
.y78{bottom:566.399773px;}
.y5c{bottom:566.579773px;}
.y30{bottom:568.199773px;}
.y9b{bottom:578.459769px;}
.y20{bottom:580.439768px;}
.y2f{bottom:585.479766px;}
.yce{bottom:586.559765px;}
.yb4{bottom:587.279765px;}
.y77{bottom:590.339764px;}
.y88{bottom:590.519764px;}
.y1f{bottom:598.079761px;}
.y5b{bottom:602.399759px;}
.y2e{bottom:602.759759px;}
.yb3{bottom:607.979757px;}
.ycd{bottom:610.499756px;}
.y87{bottom:614.459754px;}
.y1e{bottom:615.899754px;}
.y2d{bottom:620.039752px;}
.y76{bottom:626.339749px;}
.y5a{bottom:626.519749px;}
.y1d{bottom:632.279747px;}
.ycc{bottom:634.439746px;}
.y2c{bottom:637.319745px;}
.y86{bottom:638.399745px;}
.yb2{bottom:640.739744px;}
.y59{bottom:650.459740px;}
.y2b{bottom:654.419738px;}
.ycb{bottom:658.379737px;}
.y1c{bottom:659.279736px;}
.y75{bottom:662.339735px;}
.y2a{bottom:671.699731px;}
.yb1{bottom:673.499731px;}
.yca{bottom:682.319727px;}
.y1b{bottom:686.279725px;}
.y58{bottom:686.459725px;}
.y29{bottom:688.979724px;}
.yb0{bottom:694.199722px;}
.y9f{bottom:698.339721px;}
.y28{bottom:706.259717px;}
.y57{bottom:710.399716px;}
.y1a{bottom:713.279715px;}
.yaf{bottom:714.899714px;}
.yc9{bottom:719.399712px;}
.y74{bottom:722.279711px;}
.y27{bottom:723.539711px;}
.y19{bottom:731.279707px;}
.y56{bottom:734.339706px;}
.y26{bottom:740.639704px;}
.y92{bottom:746.399701px;}
.yae{bottom:747.479701px;}
.y24{bottom:754.859698px;}
.y25{bottom:757.919697px;}
.y55{bottom:758.279697px;}
.y18{bottom:758.999696px;}
.y9a{bottom:770.339692px;}
.yad{bottom:780.239688px;}
.y54{bottom:782.399687px;}
.y17{bottom:792.299683px;}
.y73{bottom:794.279682px;}
.y85{bottom:806.339677px;}
.yac{bottom:812.999675px;}
.y53{bottom:818.219673px;}
.y72{bottom:830.279668px;}
.yab{bottom:833.699667px;}
.y16{bottom:834.059666px;}
.yc8{bottom:842.339663px;}
.y15{bottom:854.039658px;}
.y52{bottom:854.219658px;}
.yaa{bottom:854.399658px;}
.y71{bottom:866.279653px;}
.y14{bottom:874.019650px;}
.ya9{bottom:875.099650px;}
.y51{bottom:878.159649px;}
.y99{bottom:890.219644px;}
.y13{bottom:893.999642px;}
.y70{bottom:902.099639px;}
.y50{bottom:902.279639px;}
.ya8{bottom:907.679637px;}
.y12{bottom:913.979634px;}
.y98{bottom:914.159634px;}
.y4f{bottom:926.219630px;}
.ya7{bottom:928.379629px;}
.yc5{bottom:938.099625px;}
.y10{bottom:947.279621px;}
.ya6{bottom:949.079620px;}
.y4e{bottom:950.159620px;}
.y11{bottom:953.219619px;}
.y6f{bottom:962.219615px;}
.ya5{bottom:969.779612px;}
.ye{bottom:971.219612px;}
.y4d{bottom:974.099610px;}
.yf{bottom:977.159609px;}
.y91{bottom:986.159606px;}
.y4c{bottom:998.039601px;}
.yc7{bottom:998.219601px;}
.ya4{bottom:1002.539599px;}
.yd{bottom:1008.299597px;}
.y84{bottom:1010.099596px;}
.y6e{bottom:1022.159591px;}
.ya3{bottom:1023.239591px;}
.y3a{bottom:1031.700600px;}
.y4b{bottom:1034.039586px;}
.ya2{bottom:1043.939582px;}
.y83{bottom:1046.099582px;}
.y3f{bottom:1049.519580px;}
.y40{bottom:1049.699580px;}
.y6d{bottom:1057.979577px;}
.y4a{bottom:1070.039572px;}
.y3e{bottom:1071.479571px;}
.ya1{bottom:1076.699569px;}
.y9e{bottom:1082.099567px;}
.y3d{bottom:1092.359563px;}
.y49{bottom:1093.979562px;}
.ya0{bottom:1097.399561px;}
.y9d{bottom:1106.039558px;}
.y41{bottom:1110.359556px;}
.y3c{bottom:1112.879555px;}
.y48{bottom:1129.979548px;}
.y4{bottom:1151.579539px;}
.y7{bottom:1180.739528px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.760000px;}
.h6{height:21.960000px;}
.h9{height:32.693893px;}
.hc{height:36.624009px;}
.h4{height:36.703110px;}
.ha{height:36.914048px;}
.hb{height:39.339828px;}
.he{height:39.830258px;}
.h5{height:40.851546px;}
.h1{height:41.522679px;}
.h13{height:43.506897px;}
.h12{height:43.536076px;}
.h8{height:48.796855px;}
.hd{height:48.937480px;}
.hf{height:49.000762px;}
.h2{height:49.218730px;}
.h10{height:50.027324px;}
.h11{height:50.305761px;}
.h14{height:52.453104px;}
.h15{height:57.092321px;}
.h7{height:58.531969px;}
.h0{height:1263.000000px;}
.w3{width:3.240000px;}
.w2{width:10.620000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x21{left:110.699956px;}
.x2b{left:112.496750px;}
.x7{left:118.799952px;}
.x1b{left:120.599952px;}
.x16{left:127.799907px;}
.x15{left:129.418911px;}
.x4{left:132.659947px;}
.x2c{left:134.999946px;}
.x1a{left:136.079946px;}
.x17{left:138.779944px;}
.x13{left:142.379943px;}
.x1d{left:156.599937px;}
.x14{left:161.460213px;}
.x1c{left:174.779930px;}
.x2a{left:189.001155px;}
.x22{left:221.760000px;}
.x18{left:239.039904px;}
.x19{left:242.099903px;}
.x25{left:253.072399px;}
.x1e{left:258.659906px;}
.x1f{left:259.739896px;}
.x20{left:278.099889px;}
.x8{left:290.339884px;}
.x9{left:296.459881px;}
.x29{left:299.339880px;}
.xe{left:300.960196px;}
.x2{left:302.579879px;}
.x26{left:332.459867px;}
.x23{left:339.839864px;}
.x24{left:381.779847px;}
.xf{left:409.499836px;}
.x10{left:415.619834px;}
.x5{left:464.399814px;}
.xa{left:517.139793px;}
.xb{left:523.259791px;}
.x11{left:581.579767px;}
.x12{left:587.699765px;}
.x27{left:617.039753px;}
.x3{left:666.179734px;}
.x28{left:683.819753px;}
.xc{left:712.079715px;}
.xd{left:718.199713px;}
.x6{left:781.380000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.008584pt;}
.ls6{letter-spacing:0.008794pt;}
.lsc{letter-spacing:0.009440pt;}
.ls5{letter-spacing:0.016494pt;}
.ls10{letter-spacing:0.018878pt;}
.lsf{letter-spacing:0.018917pt;}
.ls2{letter-spacing:0.162347pt;}
.ls1{letter-spacing:0.211375pt;}
.ls8{letter-spacing:0.256000pt;}
.ls9{letter-spacing:4.004692pt;}
.lse{letter-spacing:25.113323pt;}
.lsd{letter-spacing:28.315189pt;}
.lsb{letter-spacing:30.236308pt;}
.ls4{letter-spacing:62.381314pt;}
.ls3{letter-spacing:113.611519pt;}
.ls0{letter-spacing:1015.903511pt;}
.wsc{word-spacing:-49.727980pt;}
.ws6{word-spacing:-37.977585pt;}
.ws4{word-spacing:-28.816482pt;}
.ws5{word-spacing:-28.799988pt;}
.wsd{word-spacing:-16.018872pt;}
.wsb{word-spacing:-15.999994pt;}
.ws9{word-spacing:-14.767354pt;}
.ws7{word-spacing:-14.719994pt;}
.ws0{word-spacing:-14.675369pt;}
.ws2{word-spacing:-14.463994pt;}
.ws8{word-spacing:-13.545595pt;}
.ws3{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-81.373674pt;}
._10{margin-left:-80.310741pt;}
._22{margin-left:-9.162641pt;}
._2{margin-left:-7.298063pt;}
._3{margin-left:-5.932871pt;}
._4{margin-left:-4.194075pt;}
._5{margin-left:-3.010083pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._7{width:2.405463pt;}
._c{width:3.785766pt;}
._a{width:4.970788pt;}
._1a{width:5.885457pt;}
._b{width:6.790891pt;}
._12{width:8.224821pt;}
._9{width:9.988220pt;}
._6{width:11.353135pt;}
._8{width:12.282967pt;}
._11{width:13.172807pt;}
._e{width:14.193358pt;}
._1b{width:15.090860pt;}
._1d{width:16.933775pt;}
._1c{width:17.858140pt;}
._d{width:19.483663pt;}
._20{width:21.325760pt;}
._16{width:23.032062pt;}
._17{width:24.912119pt;}
._26{width:28.147062pt;}
._28{width:31.044787pt;}
._27{width:32.134330pt;}
._1e{width:35.031860pt;}
._1f{width:37.598697pt;}
._21{width:40.236694pt;}
._19{width:45.944913pt;}
._18{width:46.897150pt;}
._15{width:56.951215pt;}
._13{width:60.608433pt;}
._14{width:61.900597pt;}
._25{width:100.766334pt;}
._23{width:105.296807pt;}
._24{width:106.328823pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y6{bottom:-10.079991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y3b{bottom:4.319098pt;}
.yb{bottom:4.320034pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:43.786880pt;}
.y8{bottom:48.106914pt;}
.y9{bottom:49.386914pt;}
.y90{bottom:119.946619pt;}
.yde{bottom:123.466617pt;}
.y39{bottom:123.626617pt;}
.y6c{bottom:130.506614pt;}
.yc4{bottom:130.666614pt;}
.y82{bottom:141.066610pt;}
.y8f{bottom:141.226610pt;}
.ydd{bottom:144.746609pt;}
.y38{bottom:145.066609pt;}
.ye0{bottom:151.786606pt;}
.y6b{bottom:151.946606pt;}
.yc3{bottom:152.106606pt;}
.y81{bottom:162.506602pt;}
.y37{bottom:166.346600pt;}
.yc6{bottom:173.066597pt;}
.y6a{bottom:173.226597pt;}
.yc2{bottom:173.386597pt;}
.ydc{bottom:176.746596pt;}
.y80{bottom:183.786593pt;}
.y69{bottom:194.506589pt;}
.ydb{bottom:198.026587pt;}
.y36{bottom:198.346587pt;}
.y7f{bottom:205.066585pt;}
.yc1{bottom:205.386585pt;}
.y68{bottom:215.786580pt;}
.yda{bottom:219.306579pt;}
.y8e{bottom:226.506576pt;}
.y35{bottom:230.666574pt;}
.y67{bottom:237.066572pt;}
.yc0{bottom:237.386572pt;}
.y97{bottom:247.786568pt;}
.yd9{bottom:251.306566pt;}
.y8d{bottom:258.346563pt;}
.y66{bottom:258.506563pt;}
.ybf{bottom:266.346560pt;}
.y7e{bottom:269.066559pt;}
.y34{bottom:272.106558pt;}
.yd8{bottom:272.586558pt;}
.y65{bottom:279.786555pt;}
.ybe{bottom:284.746553pt;}
.y7d{bottom:290.346551pt;}
.y96{bottom:301.066546pt;}
.y33{bottom:302.666546pt;}
.ybd{bottom:303.146545pt;}
.yd7{bottom:304.586545pt;}
.y23{bottom:310.346543pt;}
.y9c{bottom:311.626542pt;}
.y64{bottom:311.786542pt;}
.y7c{bottom:322.346538pt;}
.yd6{bottom:325.866536pt;}
.ybc{bottom:332.266534pt;}
.y95{bottom:333.066533pt;}
.y47{bottom:334.986533pt;}
.y8c{bottom:343.626529pt;}
.y63{bottom:343.786529pt;}
.yd5{bottom:347.306528pt;}
.ybb{bottom:350.666526pt;}
.y46{bottom:352.746526pt;}
.y7b{bottom:354.346525pt;}
.ydf{bottom:364.906521pt;}
.y62{bottom:365.066521pt;}
.y45{bottom:370.506518pt;}
.y7a{bottom:375.626516pt;}
.yba{bottom:379.626515pt;}
.yd4{bottom:380.266515pt;}
.y61{bottom:386.346512pt;}
.y44{bottom:388.266511pt;}
.y79{bottom:396.906508pt;}
.yb9{bottom:398.026507pt;}
.y43{bottom:406.026504pt;}
.y60{bottom:407.626504pt;}
.yd3{bottom:414.826501pt;}
.y94{bottom:418.346499pt;}
.y22{bottom:423.946497pt;}
.y42{bottom:424.586497pt;}
.yb8{bottom:427.146496pt;}
.y5f{bottom:428.906495pt;}
.yd2{bottom:436.106492pt;}
.y8b{bottom:439.626491pt;}
.yb7{bottom:445.546488pt;}
.y93{bottom:450.186487pt;}
.yd1{bottom:457.386484pt;}
.y5e{bottom:460.906482pt;}
.y32{bottom:463.786481pt;}
.y8a{bottom:471.626478pt;}
.yb6{bottom:474.666477pt;}
.yd0{bottom:478.666475pt;}
.y31{bottom:479.146475pt;}
.y5d{bottom:482.186474pt;}
.y21{bottom:490.826470pt;}
.y89{bottom:492.906470pt;}
.yb5{bottom:493.066469pt;}
.ycf{bottom:499.946467pt;}
.y78{bottom:503.466465pt;}
.y5c{bottom:503.626465pt;}
.y30{bottom:505.066465pt;}
.y9b{bottom:514.186461pt;}
.y20{bottom:515.946460pt;}
.y2f{bottom:520.426458pt;}
.yce{bottom:521.386458pt;}
.yb4{bottom:522.026458pt;}
.y77{bottom:524.746457pt;}
.y88{bottom:524.906457pt;}
.y1f{bottom:531.626454pt;}
.y5b{bottom:535.466452pt;}
.y2e{bottom:535.786452pt;}
.yb3{bottom:540.426450pt;}
.ycd{bottom:542.666450pt;}
.y87{bottom:546.186448pt;}
.y1e{bottom:547.466448pt;}
.y2d{bottom:551.146446pt;}
.y76{bottom:556.746444pt;}
.y5a{bottom:556.906444pt;}
.y1d{bottom:562.026442pt;}
.ycc{bottom:563.946441pt;}
.y2c{bottom:566.506440pt;}
.y86{bottom:567.466440pt;}
.yb2{bottom:569.546439pt;}
.y59{bottom:578.186435pt;}
.y2b{bottom:581.706434pt;}
.ycb{bottom:585.226433pt;}
.y1c{bottom:586.026432pt;}
.y75{bottom:588.746431pt;}
.y2a{bottom:597.066428pt;}
.yb1{bottom:598.666427pt;}
.yca{bottom:606.506424pt;}
.y1b{bottom:610.026423pt;}
.y58{bottom:610.186423pt;}
.y29{bottom:612.426422pt;}
.yb0{bottom:617.066420pt;}
.y9f{bottom:620.746418pt;}
.y28{bottom:627.786416pt;}
.y57{bottom:631.466414pt;}
.y1a{bottom:634.026413pt;}
.yaf{bottom:635.466412pt;}
.yc9{bottom:639.466411pt;}
.y74{bottom:642.026410pt;}
.y27{bottom:643.146409pt;}
.y19{bottom:650.026407pt;}
.y56{bottom:652.746406pt;}
.y26{bottom:658.346403pt;}
.y92{bottom:663.466401pt;}
.yae{bottom:664.426401pt;}
.y24{bottom:670.986398pt;}
.y25{bottom:673.706397pt;}
.y55{bottom:674.026397pt;}
.y18{bottom:674.666397pt;}
.y9a{bottom:684.746393pt;}
.yad{bottom:693.546389pt;}
.y54{bottom:695.466388pt;}
.y17{bottom:704.266385pt;}
.y73{bottom:706.026384pt;}
.y85{bottom:716.746380pt;}
.yac{bottom:722.666378pt;}
.y53{bottom:727.306376pt;}
.y72{bottom:738.026371pt;}
.yab{bottom:741.066370pt;}
.y16{bottom:741.386370pt;}
.yc8{bottom:748.746367pt;}
.y15{bottom:759.146363pt;}
.y52{bottom:759.306363pt;}
.yaa{bottom:759.466363pt;}
.y71{bottom:770.026359pt;}
.y14{bottom:776.906356pt;}
.ya9{bottom:777.866356pt;}
.y51{bottom:780.586354pt;}
.y99{bottom:791.306350pt;}
.y13{bottom:794.666349pt;}
.y70{bottom:801.866346pt;}
.y50{bottom:802.026346pt;}
.ya8{bottom:806.826344pt;}
.y12{bottom:812.426342pt;}
.y98{bottom:812.586342pt;}
.y4f{bottom:823.306337pt;}
.ya7{bottom:825.226337pt;}
.yc5{bottom:833.866333pt;}
.y10{bottom:842.026330pt;}
.ya6{bottom:843.626329pt;}
.y4e{bottom:844.586329pt;}
.y11{bottom:847.306328pt;}
.y6f{bottom:855.306325pt;}
.ya5{bottom:862.026322pt;}
.ye{bottom:863.306321pt;}
.y4d{bottom:865.866320pt;}
.yf{bottom:868.586319pt;}
.y91{bottom:876.586316pt;}
.y4c{bottom:887.146312pt;}
.yc7{bottom:887.306312pt;}
.ya4{bottom:891.146310pt;}
.yd{bottom:896.266308pt;}
.y84{bottom:897.866308pt;}
.y6e{bottom:908.586303pt;}
.ya3{bottom:909.546303pt;}
.y3a{bottom:917.067200pt;}
.y4b{bottom:919.146299pt;}
.ya2{bottom:927.946295pt;}
.y83{bottom:929.866295pt;}
.y3f{bottom:932.906294pt;}
.y40{bottom:933.066293pt;}
.y6d{bottom:940.426290pt;}
.y4a{bottom:951.146286pt;}
.y3e{bottom:952.426286pt;}
.ya1{bottom:957.066284pt;}
.y9e{bottom:961.866282pt;}
.y3d{bottom:970.986278pt;}
.y49{bottom:972.426278pt;}
.ya0{bottom:975.466276pt;}
.y9d{bottom:983.146273pt;}
.y41{bottom:986.986272pt;}
.y3c{bottom:989.226271pt;}
.y48{bottom:1004.426265pt;}
.y4{bottom:1023.626257pt;}
.y7{bottom:1049.546247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.120000pt;}
.h6{height:19.520000pt;}
.h9{height:29.061238pt;}
.hc{height:32.554674pt;}
.h4{height:32.624987pt;}
.ha{height:32.812487pt;}
.hb{height:34.968736pt;}
.he{height:35.404673pt;}
.h5{height:36.312485pt;}
.h1{height:36.909048pt;}
.h13{height:38.672797pt;}
.h12{height:38.698735pt;}
.h8{height:43.374983pt;}
.hd{height:43.499983pt;}
.hf{height:43.556233pt;}
.h2{height:43.749982pt;}
.h10{height:44.468732pt;}
.h11{height:44.716232pt;}
.h14{height:46.624981pt;}
.h15{height:50.748730pt;}
.h7{height:52.028417pt;}
.h0{height:1122.666667pt;}
.w3{width:2.880000pt;}
.w2{width:9.440000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x21{left:98.399961pt;}
.x2b{left:99.997111pt;}
.x7{left:105.599958pt;}
.x1b{left:107.199957pt;}
.x16{left:113.599917pt;}
.x15{left:115.039032pt;}
.x4{left:117.919953pt;}
.x2c{left:119.999952pt;}
.x1a{left:120.959952pt;}
.x17{left:123.359951pt;}
.x13{left:126.559949pt;}
.x1d{left:139.199944pt;}
.x14{left:143.520189pt;}
.x1c{left:155.359938pt;}
.x2a{left:168.001027pt;}
.x22{left:197.120000pt;}
.x18{left:212.479915pt;}
.x19{left:215.199914pt;}
.x25{left:224.953243pt;}
.x1e{left:229.919917pt;}
.x1f{left:230.879908pt;}
.x20{left:247.199901pt;}
.x8{left:258.079897pt;}
.x9{left:263.519895pt;}
.x29{left:266.079894pt;}
.xe{left:267.520175pt;}
.x2{left:268.959892pt;}
.x26{left:295.519882pt;}
.x23{left:302.079879pt;}
.x24{left:339.359864pt;}
.xf{left:363.999854pt;}
.x10{left:369.439852pt;}
.x5{left:412.799835pt;}
.xa{left:459.679816pt;}
.xb{left:465.119814pt;}
.x11{left:516.959793pt;}
.x12{left:522.399791pt;}
.x27{left:548.479781pt;}
.x3{left:592.159763pt;}
.x28{left:607.839780pt;}
.xc{left:632.959747pt;}
.xd{left:638.399745pt;}
.x6{left:694.560000pt;}
}




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