
    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_5f72b48c14c89c11229feb2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_b8e56007f3afa75326089f12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_32514887d0fc21c89a5cc063.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_966b634da2e4f14a5f37687c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_6304e71dd11edaf3c5ecdf03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.768555;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_8d86a90459efec7b51d389ed.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b0538fd17fc1b95ada57748e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_8035114c34890a6281463968.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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;}
.m2{transform:matrix(0.245657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245657,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,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;}
.ls1{letter-spacing:68.562610px;}
.ls2{letter-spacing:68.562650px;}
.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;}
}
.ws5{word-spacing:-53.997750px;}
.ws2{word-spacing:-29.917122px;}
.ws6{word-spacing:-29.914878px;}
.ws4{word-spacing:-18.347732px;}
.ws1{word-spacing:-13.506269px;}
.ws3{word-spacing:-13.505252px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-6.524386px;}
._7{margin-left:-4.292763px;}
._5{margin-left:-3.036710px;}
._1{margin-left:-1.837342px;}
._0{width:1.413751px;}
._3{width:2.883689px;}
._d{width:23.723827px;}
._c{width:109.147113px;}
._9{width:1223.157936px;}
._f{width:1267.077945px;}
._4{width:1276.224737px;}
._8{width:1288.753684px;}
._b{width:1290.117923px;}
._a{width:1294.944683px;}
._6{width:1311.497235px;}
._e{width:1317.984764px;}
.fc1{color:rgb(0,111,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:15.119415px;}
.fs9{font-size:33.118695px;}
.fs6{font-size:53.997750px;}
.fs1{font-size:54.002250px;}
.fs4{font-size:59.757750px;}
.fs7{font-size:59.759492px;}
.fs0{font-size:59.762250px;}
.fs5{font-size:66.237300px;}
.fsa{font-size:107.995950px;}
.fs3{font-size:108.004050px;}
.fs2{font-size:144.005409px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.959884px;}
.y33{bottom:3.960022px;}
.y2a{bottom:75.780121px;}
.y30{bottom:76.500000px;}
.y32{bottom:79.019988px;}
.y38{bottom:79.560035px;}
.y6{bottom:259.560036px;}
.y5{bottom:286.380066px;}
.y26{bottom:312.840088px;}
.y25{bottom:340.200096px;}
.yb4{bottom:341.819996px;}
.y67{bottom:355.499999px;}
.y24{bottom:357.480079px;}
.y8f{bottom:358.560000px;}
.y23{bottom:374.760064px;}
.yb3{bottom:376.560000px;}
.yeb{bottom:381.600013px;}
.yfe{bottom:381.780017px;}
.y22{bottom:392.040047px;}
.y8e{bottom:393.300006px;}
.yb2{bottom:393.840018px;}
.yb1{bottom:393.842884px;}
.y66{bottom:397.800006px;}
.y21{bottom:409.140060px;}
.y8d{bottom:410.580024px;}
.y8c{bottom:410.584597px;}
.y65{bottom:415.080024px;}
.y64{bottom:415.084622px;}
.y11a{bottom:415.439998px;}
.yea{bottom:416.340018px;}
.yfd{bottom:416.520023px;}
.yb0{bottom:420.840018px;}
.yaf{bottom:420.842993px;}
.y20{bottom:426.420043px;}
.ye9{bottom:433.620003px;}
.ye8{bottom:433.622667px;}
.yfc{bottom:433.800006px;}
.yfb{bottom:433.805039px;}
.y8b{bottom:437.400021px;}
.y8a{bottom:437.401400px;}
.y63{bottom:443.520023px;}
.y62{bottom:443.521798px;}
.y1f{bottom:443.700096px;}
.y119{bottom:445.860008px;}
.yae{bottom:449.280017px;}
.yad{bottom:449.284755px;}
.ye7{bottom:460.620003px;}
.ye6{bottom:460.620951px;}
.yfa{bottom:460.800006px;}
.yf9{bottom:460.803323px;}
.y1e{bottom:460.980079px;}
.y118{bottom:463.140025px;}
.y89{bottom:465.660015px;}
.y88{bottom:465.661680px;}
.y61{bottom:471.960022px;}
.y60{bottom:471.964450px;}
.yd5{bottom:473.580024px;}
.yac{bottom:477.720016px;}
.yab{bottom:477.720105px;}
.y1d{bottom:478.260064px;}
.y117{bottom:480.420009px;}
.y75{bottom:485.819996px;}
.ye5{bottom:489.060000px;}
.ye4{bottom:489.063603px;}
.ycc{bottom:489.960022px;}
.yd4{bottom:490.860008px;}
.y87{bottom:494.100013px;}
.y86{bottom:494.104377px;}
.y1c{bottom:495.540047px;}
.y5f{bottom:500.040012px;}
.y5e{bottom:500.042359px;}
.y74{bottom:503.100013px;}
.yaa{bottom:505.800006px;}
.ya9{bottom:505.805316px;}
.y1b{bottom:512.640060px;}
.y116{bottom:514.800006px;}
.yd3{bottom:517.140025px;}
.ye3{bottom:517.319996px;}
.ye2{bottom:517.323884px;}
.y73{bottom:520.379997px;}
.y84{bottom:522.539727px;}
.y85{bottom:522.540012px;}
.ybe{bottom:525.780017px;}
.y5d{bottom:528.480010px;}
.y5c{bottom:528.485033px;}
.y1a{bottom:529.920043px;}
.y115{bottom:532.080024px;}
.y114{bottom:532.081394px;}
.ya8{bottom:534.240005px;}
.ya7{bottom:534.240688px;}
.yd2{bottom:534.420009px;}
.ycb{bottom:538.560000px;}
.yca{bottom:538.566535px;}
.y9a{bottom:538.740005px;}
.ybd{bottom:543.060000px;}
.ye1{bottom:545.580024px;}
.ye0{bottom:545.584187px;}
.yf8{bottom:545.759994px;}
.yf7{bottom:545.766558px;}
.y72{bottom:546.480010px;}
.y19{bottom:547.200096px;}
.y83{bottom:550.980010px;}
.y82{bottom:550.982379px;}
.y99{bottom:556.020023px;}
.y5b{bottom:556.920009px;}
.y5a{bottom:556.920405px;}
.yd1{bottom:560.520023px;}
.y113{bottom:560.524068px;}
.y107{bottom:562.140025px;}
.ya6{bottom:562.680004px;}
.ya5{bottom:562.683340px;}
.y71{bottom:563.759994px;}
.y18{bottom:564.480079px;}
.yc8{bottom:566.819536px;}
.yc9{bottom:566.819996px;}
.y43{bottom:569.340018px;}
.yee{bottom:569.700027px;}
.y98{bottom:573.300006px;}
.yde{bottom:574.019559px;}
.ydf{bottom:574.020023px;}
.yf6{bottom:574.200027px;}
.yf5{bottom:574.201930px;}
.y4d{bottom:578.520023px;}
.y81{bottom:579.240005px;}
.y80{bottom:579.242681px;}
.y17{bottom:581.760064px;}
.y59{bottom:585.360008px;}
.y58{bottom:585.363057px;}
.ybc{bottom:586.620003px;}
.yd0{bottom:586.800006px;}
.y42{bottom:588.240005px;}
.y106{bottom:588.420009px;}
.y112{bottom:588.780017px;}
.y111{bottom:588.784348px;}
.y44{bottom:589.680004px;}
.y70{bottom:590.040012px;}
.ya4{bottom:590.939998px;}
.ya3{bottom:590.943621px;}
.yc7{bottom:595.259994px;}
.yc6{bottom:595.262188px;}
.yed{bottom:595.980010px;}
.y16{bottom:598.860077px;}
.y97{bottom:599.580024px;}
.ydc{bottom:602.279839px;}
.ydd{bottom:602.280017px;}
.yf4{bottom:602.640025px;}
.yf3{bottom:602.644582px;}
.ybb{bottom:603.720016px;}
.y4c{bottom:604.980010px;}
.y6f{bottom:607.320013px;}
.y7f{bottom:607.680004px;}
.y7e{bottom:607.685333px;}
.y40{bottom:612.540012px;}
.ycf{bottom:613.080007px;}
.yec{bottom:613.260012px;}
.y57{bottom:613.800006px;}
.y56{bottom:613.805709px;}
.y105{bottom:614.520006px;}
.y15{bottom:616.140060px;}
.y96{bottom:616.860008px;}
.y10f{bottom:617.219721px;}
.y110{bottom:617.220016px;}
.ya1{bottom:619.378993px;}
.ya2{bottom:619.380014px;}
.y4b{bottom:622.260012px;}
.yc5{bottom:623.700009px;}
.yc4{bottom:623.704840px;}
.yba{bottom:630.180004px;}
.y14{bottom:630.180039px;}
.yce{bottom:630.360008px;}
.ydb{bottom:630.720016px;}
.yda{bottom:630.722492px;}
.yf2{bottom:630.900003px;}
.yf1{bottom:630.904863px;}
.y3f{bottom:631.440015px;}
.y6e{bottom:633.600013px;}
.y7d{bottom:635.940015px;}
.y7c{bottom:635.945614px;}
.y41{bottom:637.380014px;}
.y4a{bottom:639.540012px;}
.y104{bottom:640.800006px;}
.y54{bottom:642.058710px;}
.y55{bottom:642.060018px;}
.y95{bottom:643.140008px;}
.y10d{bottom:645.480001px;}
.y10e{bottom:645.480010px;}
.ya0{bottom:647.820013px;}
.y9f{bottom:647.821645px;}
.y6d{bottom:650.700009px;}
.yc3{bottom:651.960005px;}
.yc2{bottom:651.965120px;}
.yb9{bottom:656.280017px;}
.ycd{bottom:656.640008px;}
.y49{bottom:656.820013px;}
.y3e{bottom:658.620003px;}
.yd9{bottom:659.160015px;}
.yd8{bottom:659.165166px;}
.yf0{bottom:659.340018px;}
.yef{bottom:659.340235px;}
.y7b{bottom:664.380014px;}
.y7a{bottom:664.380986px;}
.y103{bottom:667.080007px;}
.y94{bottom:669.420009px;}
.y53{bottom:670.500016px;}
.y52{bottom:670.501362px;}
.y10c{bottom:673.920009px;}
.y9e{bottom:676.260012px;}
.y6c{bottom:676.980010px;}
.y3d{bottom:679.320013px;}
.yc1{bottom:680.400003px;}
.yb8{bottom:682.560018px;}
.y48{bottom:682.920009px;}
.y93{bottom:686.700009px;}
.yd7{bottom:687.600013px;}
.yd6{bottom:687.600516px;}
.y10b{bottom:691.200009px;}
.y79{bottom:692.820013px;}
.y102{bottom:693.360008px;}
.y9c{bottom:693.538543px;}
.y9d{bottom:693.540012px;}
.y9b{bottom:696.960005px;}
.yc0{bottom:697.680004px;}
.ybf{bottom:697.682018px;}
.y51{bottom:698.760012px;}
.yb7{bottom:699.840018px;}
.y3c{bottom:701.820013px;}
.y6b{bottom:703.260012px;}
.y109{bottom:708.478413px;}
.y10a{bottom:708.480010px;}
.y47{bottom:709.200009px;}
.y78{bottom:710.100013px;}
.y77{bottom:710.105163px;}
.y101{bottom:710.640008px;}
.y76{bottom:713.520006px;}
.y50{bottom:716.040012px;}
.y4f{bottom:716.043179px;}
.y4e{bottom:719.460005px;}
.y108{bottom:720.900003px;}
.y92{bottom:722.700009px;}
.y3b{bottom:724.500016px;}
.yb6{bottom:735.840018px;}
.y6a{bottom:736.560018px;}
.y29{bottom:740.160049px;}
.y46{bottom:742.500016px;}
.y100{bottom:743.940015px;}
.y3a{bottom:747.360008px;}
.y91{bottom:758.520014px;}
.y69{bottom:767.160015px;}
.y39{bottom:770.580007px;}
.yb5{bottom:771.840010px;}
.y45{bottom:773.100013px;}
.yff{bottom:774.540012px;}
.y28{bottom:781.740074px;}
.y11b{bottom:782.460013px;}
.y90{bottom:784.260012px;}
.y68{bottom:788.760012px;}
.y37{bottom:827.280008px;}
.y36{bottom:844.560009px;}
.y27{bottom:851.400055px;}
.y35{bottom:861.660010px;}
.y34{bottom:878.940010px;}
.y13{bottom:891.000068px;}
.y12{bottom:914.940067px;}
.y11{bottom:932.220051px;}
.y10{bottom:949.500068px;}
.yf{bottom:966.780053px;}
.ye{bottom:984.060070px;}
.yd{bottom:1001.160067px;}
.yc{bottom:1018.440067px;}
.yb{bottom:1035.720068px;}
.ya{bottom:1053.000068px;}
.y9{bottom:1070.280069px;}
.y8{bottom:1087.560070px;}
.y7{bottom:1104.660067px;}
.y31{bottom:1132.560070px;}
.y4{bottom:1143.180064px;}
.y3{bottom:1160.460065px;}
.y2{bottom:1177.560070px;}
.y1{bottom:1194.840066px;}
.y2f{bottom:1197.180064px;}
.y2e{bottom:1214.460065px;}
.y2d{bottom:1231.560066px;}
.y2c{bottom:1248.840066px;}
.h18{height:11.369091px;}
.h8{height:17.279983px;}
.hd{height:17.280053px;}
.h19{height:24.903706px;}
.h11{height:37.492578px;}
.h4{height:39.473324px;}
.h3{height:40.607161px;}
.h12{height:41.491953px;}
.h5{height:41.495078px;}
.h17{height:43.680348px;}
.h16{height:43.681621px;}
.h14{height:44.088848px;}
.h15{height:44.236030px;}
.h13{height:44.905848px;}
.hf{height:44.935027px;}
.h2{height:44.938411px;}
.h10{height:49.807345px;}
.he{height:59.436786px;}
.h9{height:59.441261px;}
.h1a{height:81.207892px;}
.ha{height:81.213983px;}
.h6{height:99.988131px;}
.h7{height:108.285317px;}
.hb{height:892.980015px;}
.hc{height:893.250000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wd{width:2.340019px;}
.w3{width:2.519997px;}
.w11{width:2.520007px;}
.w13{width:2.699993px;}
.w5{width:2.700010px;}
.w16{width:3.059967px;}
.w9{width:3.060001px;}
.w7{width:3.599997px;}
.w15{width:3.780001px;}
.wb{width:6.480011px;}
.wc{width:7.019989px;}
.w18{width:7.379998px;}
.w19{width:8.820030px;}
.w1a{width:14.579956px;}
.w17{width:29.339950px;}
.wa{width:29.340019px;}
.w10{width:38.519997px;}
.w2{width:38.519998px;}
.w6{width:47.699993px;}
.w14{width:47.700010px;}
.w12{width:61.379997px;}
.w4{width:61.379998px;}
.w8{width:88.740006px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.we{width:1262.880060px;}
.wf{width:1263.000000px;}
.x0{left:0.000000px;}
.x1d{left:21.239999px;}
.x2c{left:39.060001px;}
.x23{left:40.320000px;}
.x34{left:49.680000px;}
.x2d{left:66.060001px;}
.x24{left:67.320000px;}
.x35{left:76.680005px;}
.x2e{left:93.060001px;}
.x25{left:94.319996px;}
.x7{left:103.680005px;}
.x14{left:106.200002px;}
.x22{left:124.920001px;}
.x1{left:127.620002px;}
.x2b{left:129.239997px;}
.x5{left:131.760003px;}
.x3f{left:134.280001px;}
.x8{left:142.200002px;}
.x9{left:144.719999px;}
.x3c{left:146.159998px;}
.x15{left:147.240006px;}
.x1f{left:190.259994px;}
.x1e{left:198.719999px;}
.xa{left:206.099997px;}
.xb{left:208.800007px;}
.x16{left:211.319996px;}
.x6{left:225.360008px;}
.xc{left:256.500000px;}
.x3{left:259.199993px;}
.x36{left:285.659998px;}
.x26{left:287.460005px;}
.x2f{left:297.360008px;}
.x40{left:307.620002px;}
.x33{left:328.860008px;}
.x3d{left:329.939999px;}
.x13{left:343.800007px;}
.x20{left:349.740006px;}
.x2{left:393.660015px;}
.xd{left:468.180005px;}
.x2a{left:511.019989px;}
.x21{left:512.459988px;}
.x41{left:529.019989px;}
.xe{left:556.920010px;}
.x17{left:628.200027px;}
.x18{left:716.940033px;}
.xf{left:756.179970px;}
.x4{left:765.720017px;}
.x10{left:785.519989px;}
.x11{left:792.000000px;}
.x12{left:799.019989px;}
.x30{left:986.214410px;}
.x27{left:987.470549px;}
.x31{left:999.001236px;}
.x28{left:1000.255661px;}
.x32{left:1003.320030px;}
.x29{left:1004.580025px;}
.x37{left:1006.195956px;}
.x38{left:1018.977964px;}
.x3b{left:1023.299973px;}
.x39{left:1031.940033px;}
.x3a{left:1034.460023px;}
.x19{left:1108.440033px;}
.x1a{left:1137.779983px;}
.x1b{left:1144.259994px;}
.x1c{left:1151.639992px;}
.x3e{left:1158.839951px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:60.944542pt;}
.ls2{letter-spacing:60.944578pt;}
.ws5{word-spacing:-47.998000pt;}
.ws2{word-spacing:-26.592997pt;}
.ws6{word-spacing:-26.591003pt;}
.ws4{word-spacing:-16.309095pt;}
.ws1{word-spacing:-12.005572pt;}
.ws3{word-spacing:-12.004668pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-5.799454pt;}
._7{margin-left:-3.815790pt;}
._5{margin-left:-2.699298pt;}
._1{margin-left:-1.633193pt;}
._0{width:1.256667pt;}
._3{width:2.563279pt;}
._d{width:21.087846pt;}
._c{width:97.019656pt;}
._9{width:1087.251499pt;}
._f{width:1126.291507pt;}
._4{width:1134.421988pt;}
._8{width:1145.558830pt;}
._b{width:1146.771487pt;}
._a{width:1151.061940pt;}
._6{width:1165.775320pt;}
._e{width:1171.542012pt;}
.fs8{font-size:13.439480pt;}
.fs9{font-size:29.438840pt;}
.fs6{font-size:47.998000pt;}
.fs1{font-size:48.002000pt;}
.fs4{font-size:53.118000pt;}
.fs7{font-size:53.119548pt;}
.fs0{font-size:53.122000pt;}
.fs5{font-size:58.877600pt;}
.fsa{font-size:95.996400pt;}
.fs3{font-size:96.003600pt;}
.fs2{font-size:128.004808pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.519897pt;}
.y33{bottom:3.520020pt;}
.y2a{bottom:67.360108pt;}
.y30{bottom:68.000000pt;}
.y32{bottom:70.239989pt;}
.y38{bottom:70.720031pt;}
.y6{bottom:230.720032pt;}
.y5{bottom:254.560059pt;}
.y26{bottom:278.080079pt;}
.y25{bottom:302.400086pt;}
.yb4{bottom:303.839996pt;}
.y67{bottom:315.999999pt;}
.y24{bottom:317.760071pt;}
.y8f{bottom:318.720000pt;}
.y23{bottom:333.120057pt;}
.yb3{bottom:334.720000pt;}
.yeb{bottom:339.200011pt;}
.yfe{bottom:339.360015pt;}
.y22{bottom:348.480042pt;}
.y8e{bottom:349.600005pt;}
.yb2{bottom:350.080016pt;}
.yb1{bottom:350.082564pt;}
.y66{bottom:353.600005pt;}
.y21{bottom:363.680054pt;}
.y8d{bottom:364.960021pt;}
.y8c{bottom:364.964086pt;}
.y65{bottom:368.960021pt;}
.y64{bottom:368.964109pt;}
.y11a{bottom:369.279998pt;}
.yea{bottom:370.080016pt;}
.yfd{bottom:370.240020pt;}
.yb0{bottom:374.080016pt;}
.yaf{bottom:374.082661pt;}
.y20{bottom:379.040039pt;}
.ye9{bottom:385.440002pt;}
.ye8{bottom:385.442371pt;}
.yfc{bottom:385.600005pt;}
.yfb{bottom:385.604479pt;}
.y8b{bottom:388.800018pt;}
.y8a{bottom:388.801244pt;}
.y63{bottom:394.240020pt;}
.y62{bottom:394.241598pt;}
.y1f{bottom:394.400086pt;}
.y119{bottom:396.320007pt;}
.yae{bottom:399.360015pt;}
.yad{bottom:399.364227pt;}
.ye7{bottom:409.440002pt;}
.ye6{bottom:409.440846pt;}
.yfa{bottom:409.600005pt;}
.yf9{bottom:409.602954pt;}
.y1e{bottom:409.760071pt;}
.y118{bottom:411.680022pt;}
.y89{bottom:413.920013pt;}
.y88{bottom:413.921493pt;}
.y61{bottom:419.520019pt;}
.y60{bottom:419.523955pt;}
.yd5{bottom:420.960021pt;}
.yac{bottom:424.640014pt;}
.yab{bottom:424.640093pt;}
.y1d{bottom:425.120057pt;}
.y117{bottom:427.040008pt;}
.y75{bottom:431.839996pt;}
.ye5{bottom:434.720000pt;}
.ye4{bottom:434.723203pt;}
.ycc{bottom:435.520019pt;}
.yd4{bottom:436.320007pt;}
.y87{bottom:439.200011pt;}
.y86{bottom:439.203890pt;}
.y1c{bottom:440.480042pt;}
.y5f{bottom:444.480010pt;}
.y5e{bottom:444.482097pt;}
.y74{bottom:447.200011pt;}
.yaa{bottom:449.600005pt;}
.ya9{bottom:449.604725pt;}
.y1b{bottom:455.680054pt;}
.y116{bottom:457.600005pt;}
.yd3{bottom:459.680022pt;}
.ye3{bottom:459.839996pt;}
.ye2{bottom:459.843452pt;}
.y73{bottom:462.559997pt;}
.y84{bottom:464.479757pt;}
.y85{bottom:464.480010pt;}
.ybe{bottom:467.360015pt;}
.y5d{bottom:469.760009pt;}
.y5c{bottom:469.764474pt;}
.y1a{bottom:471.040039pt;}
.y115{bottom:472.960021pt;}
.y114{bottom:472.961239pt;}
.ya8{bottom:474.880004pt;}
.ya7{bottom:474.880612pt;}
.yd2{bottom:475.040008pt;}
.ycb{bottom:478.720000pt;}
.yca{bottom:478.725809pt;}
.y9a{bottom:478.880004pt;}
.ybd{bottom:482.720000pt;}
.ye1{bottom:484.960021pt;}
.ye0{bottom:484.963721pt;}
.yf8{bottom:485.119994pt;}
.yf7{bottom:485.125829pt;}
.y72{bottom:485.760009pt;}
.y19{bottom:486.400086pt;}
.y83{bottom:489.760009pt;}
.y82{bottom:489.762114pt;}
.y99{bottom:494.240020pt;}
.y5b{bottom:495.040008pt;}
.y5a{bottom:495.040360pt;}
.yd1{bottom:498.240020pt;}
.y113{bottom:498.243616pt;}
.y107{bottom:499.680022pt;}
.ya6{bottom:500.160003pt;}
.ya5{bottom:500.162969pt;}
.y71{bottom:501.119994pt;}
.y18{bottom:501.760071pt;}
.yc8{bottom:503.839587pt;}
.yc9{bottom:503.839996pt;}
.y43{bottom:506.080016pt;}
.yee{bottom:506.400024pt;}
.y98{bottom:509.600005pt;}
.yde{bottom:510.239608pt;}
.ydf{bottom:510.240020pt;}
.yf6{bottom:510.400024pt;}
.yf5{bottom:510.401716pt;}
.y4d{bottom:514.240020pt;}
.y81{bottom:514.880004pt;}
.y80{bottom:514.882383pt;}
.y17{bottom:517.120057pt;}
.y59{bottom:520.320007pt;}
.y58{bottom:520.322718pt;}
.ybc{bottom:521.440002pt;}
.yd0{bottom:521.600005pt;}
.y42{bottom:522.880004pt;}
.y106{bottom:523.040008pt;}
.y112{bottom:523.360015pt;}
.y111{bottom:523.363865pt;}
.y44{bottom:524.160003pt;}
.y70{bottom:524.480010pt;}
.ya4{bottom:525.279998pt;}
.ya3{bottom:525.283219pt;}
.yc7{bottom:529.119994pt;}
.yc6{bottom:529.121945pt;}
.yed{bottom:529.760009pt;}
.y16{bottom:532.320069pt;}
.y97{bottom:532.960021pt;}
.ydc{bottom:535.359857pt;}
.ydd{bottom:535.360015pt;}
.yf4{bottom:535.680022pt;}
.yf3{bottom:535.684073pt;}
.ybb{bottom:536.640014pt;}
.y4c{bottom:537.760009pt;}
.y6f{bottom:539.840011pt;}
.y7f{bottom:540.160003pt;}
.y7e{bottom:540.164741pt;}
.y40{bottom:544.480010pt;}
.ycf{bottom:544.960006pt;}
.yec{bottom:545.120010pt;}
.y57{bottom:545.600005pt;}
.y56{bottom:545.605075pt;}
.y105{bottom:546.240005pt;}
.y15{bottom:547.680054pt;}
.y96{bottom:548.320007pt;}
.y10f{bottom:548.639752pt;}
.y110{bottom:548.640014pt;}
.ya1{bottom:550.559105pt;}
.ya2{bottom:550.560012pt;}
.y4b{bottom:553.120010pt;}
.yc5{bottom:554.400008pt;}
.yc4{bottom:554.404302pt;}
.yba{bottom:560.160003pt;}
.y14{bottom:560.160035pt;}
.yce{bottom:560.320007pt;}
.ydb{bottom:560.640014pt;}
.yda{bottom:560.642215pt;}
.yf2{bottom:560.800002pt;}
.yf1{bottom:560.804323pt;}
.y3f{bottom:561.280013pt;}
.y6e{bottom:563.200011pt;}
.y7d{bottom:565.280013pt;}
.y7c{bottom:565.284990pt;}
.y41{bottom:566.560012pt;}
.y4a{bottom:568.480010pt;}
.y104{bottom:569.600005pt;}
.y54{bottom:570.718853pt;}
.y55{bottom:570.720016pt;}
.y95{bottom:571.680007pt;}
.y10d{bottom:573.760001pt;}
.y10e{bottom:573.760009pt;}
.ya0{bottom:575.840011pt;}
.y9f{bottom:575.841462pt;}
.y6d{bottom:578.400008pt;}
.yc3{bottom:579.520004pt;}
.yc2{bottom:579.524551pt;}
.yb9{bottom:583.360015pt;}
.ycd{bottom:583.680007pt;}
.y49{bottom:583.840011pt;}
.y3e{bottom:585.440002pt;}
.yd9{bottom:585.920013pt;}
.yd8{bottom:585.924592pt;}
.yf0{bottom:586.080016pt;}
.yef{bottom:586.080209pt;}
.y7b{bottom:590.560012pt;}
.y7a{bottom:590.560877pt;}
.y103{bottom:592.960006pt;}
.y94{bottom:595.040008pt;}
.y53{bottom:596.000014pt;}
.y52{bottom:596.001211pt;}
.y10c{bottom:599.040008pt;}
.y9e{bottom:601.120010pt;}
.y6c{bottom:601.760009pt;}
.y3d{bottom:603.840011pt;}
.yc1{bottom:604.800002pt;}
.yb8{bottom:606.720016pt;}
.y48{bottom:607.040008pt;}
.y93{bottom:610.400008pt;}
.yd7{bottom:611.200011pt;}
.yd6{bottom:611.200459pt;}
.y10b{bottom:614.400008pt;}
.y79{bottom:615.840011pt;}
.y102{bottom:616.320007pt;}
.y9c{bottom:616.478705pt;}
.y9d{bottom:616.480010pt;}
.y9b{bottom:619.520004pt;}
.yc0{bottom:620.160003pt;}
.ybf{bottom:620.161793pt;}
.y51{bottom:621.120010pt;}
.yb7{bottom:622.080016pt;}
.y3c{bottom:623.840011pt;}
.y6b{bottom:625.120010pt;}
.y109{bottom:629.758589pt;}
.y10a{bottom:629.760009pt;}
.y47{bottom:630.400008pt;}
.y78{bottom:631.200011pt;}
.y77{bottom:631.204590pt;}
.y101{bottom:631.680007pt;}
.y76{bottom:634.240005pt;}
.y50{bottom:636.480010pt;}
.y4f{bottom:636.482826pt;}
.y4e{bottom:639.520004pt;}
.y108{bottom:640.800002pt;}
.y92{bottom:642.400008pt;}
.y3b{bottom:644.000014pt;}
.yb6{bottom:654.080016pt;}
.y6a{bottom:654.720016pt;}
.y29{bottom:657.920044pt;}
.y46{bottom:660.000014pt;}
.y100{bottom:661.280013pt;}
.y3a{bottom:664.320007pt;}
.y91{bottom:674.240012pt;}
.y69{bottom:681.920013pt;}
.y39{bottom:684.960006pt;}
.yb5{bottom:686.080009pt;}
.y45{bottom:687.200011pt;}
.yff{bottom:688.480010pt;}
.y28{bottom:694.880066pt;}
.y11b{bottom:695.520011pt;}
.y90{bottom:697.120010pt;}
.y68{bottom:701.120010pt;}
.y37{bottom:735.360007pt;}
.y36{bottom:750.720008pt;}
.y27{bottom:756.800049pt;}
.y35{bottom:765.920009pt;}
.y34{bottom:781.280009pt;}
.y13{bottom:792.000061pt;}
.y12{bottom:813.280060pt;}
.y11{bottom:828.640046pt;}
.y10{bottom:844.000061pt;}
.yf{bottom:859.360047pt;}
.ye{bottom:874.720063pt;}
.yd{bottom:889.920060pt;}
.yc{bottom:905.280060pt;}
.yb{bottom:920.640061pt;}
.ya{bottom:936.000061pt;}
.y9{bottom:951.360062pt;}
.y8{bottom:966.720063pt;}
.y7{bottom:981.920060pt;}
.y31{bottom:1006.720063pt;}
.y4{bottom:1016.160057pt;}
.y3{bottom:1031.520058pt;}
.y2{bottom:1046.720063pt;}
.y1{bottom:1062.080059pt;}
.y2f{bottom:1064.160057pt;}
.y2e{bottom:1079.520058pt;}
.y2d{bottom:1094.720059pt;}
.y2c{bottom:1110.080059pt;}
.h18{height:10.105859pt;}
.h8{height:15.359985pt;}
.hd{height:15.360047pt;}
.h19{height:22.136628pt;}
.h11{height:33.326736pt;}
.h4{height:35.087399pt;}
.h3{height:36.095254pt;}
.h12{height:36.881736pt;}
.h5{height:36.884514pt;}
.h17{height:38.826976pt;}
.h16{height:38.828107pt;}
.h14{height:39.190087pt;}
.h15{height:39.320916pt;}
.h13{height:39.916310pt;}
.hf{height:39.942246pt;}
.h2{height:39.945254pt;}
.h10{height:44.273195pt;}
.he{height:52.832698pt;}
.h9{height:52.836677pt;}
.h1a{height:72.184793pt;}
.ha{height:72.190207pt;}
.h6{height:88.878338pt;}
.h7{height:96.253615pt;}
.hb{height:793.760013pt;}
.hc{height:794.000000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wd{width:2.080017pt;}
.w3{width:2.239997pt;}
.w11{width:2.240006pt;}
.w13{width:2.399994pt;}
.w5{width:2.400009pt;}
.w16{width:2.719971pt;}
.w9{width:2.720001pt;}
.w7{width:3.199997pt;}
.w15{width:3.360001pt;}
.wb{width:5.760010pt;}
.wc{width:6.239990pt;}
.w18{width:6.559998pt;}
.w19{width:7.840027pt;}
.w1a{width:12.959961pt;}
.w17{width:26.079956pt;}
.wa{width:26.080017pt;}
.w10{width:34.239997pt;}
.w2{width:34.239998pt;}
.w6{width:42.399994pt;}
.w14{width:42.400009pt;}
.w12{width:54.559997pt;}
.w4{width:54.559998pt;}
.w8{width:78.880005pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.we{width:1122.560053pt;}
.wf{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:18.879999pt;}
.x2c{left:34.720001pt;}
.x23{left:35.840000pt;}
.x34{left:44.160000pt;}
.x2d{left:58.720001pt;}
.x24{left:59.840000pt;}
.x35{left:68.160004pt;}
.x2e{left:82.720001pt;}
.x25{left:83.839996pt;}
.x7{left:92.160004pt;}
.x14{left:94.400002pt;}
.x22{left:111.040001pt;}
.x1{left:113.440002pt;}
.x2b{left:114.879997pt;}
.x5{left:117.120003pt;}
.x3f{left:119.360001pt;}
.x8{left:126.400002pt;}
.x9{left:128.639999pt;}
.x3c{left:129.919998pt;}
.x15{left:130.880005pt;}
.x1f{left:169.119995pt;}
.x1e{left:176.639999pt;}
.xa{left:183.199997pt;}
.xb{left:185.600006pt;}
.x16{left:187.839996pt;}
.x6{left:200.320007pt;}
.xc{left:228.000000pt;}
.x3{left:230.399994pt;}
.x36{left:253.919998pt;}
.x26{left:255.520004pt;}
.x2f{left:264.320007pt;}
.x40{left:273.440002pt;}
.x33{left:292.320007pt;}
.x3d{left:293.279999pt;}
.x13{left:305.600006pt;}
.x20{left:310.880005pt;}
.x2{left:349.920013pt;}
.xd{left:416.160004pt;}
.x2a{left:454.239990pt;}
.x21{left:455.519989pt;}
.x41{left:470.239990pt;}
.xe{left:495.040009pt;}
.x17{left:558.400024pt;}
.x18{left:637.280029pt;}
.xf{left:672.159973pt;}
.x4{left:680.640015pt;}
.x10{left:698.239990pt;}
.x11{left:704.000000pt;}
.x12{left:710.239990pt;}
.x30{left:876.635031pt;}
.x27{left:877.751599pt;}
.x31{left:888.001099pt;}
.x28{left:889.116143pt;}
.x32{left:891.840027pt;}
.x29{left:892.960022pt;}
.x37{left:894.396405pt;}
.x38{left:905.758190pt;}
.x3b{left:909.599976pt;}
.x39{left:917.280029pt;}
.x3a{left:919.520020pt;}
.x19{left:985.280029pt;}
.x1a{left:1011.359985pt;}
.x1b{left:1017.119995pt;}
.x1c{left:1023.679993pt;}
.x3e{left:1030.079956pt;}
}




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