
    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_b1b439ea30dc425353ef8228.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_103446e36b1d280c79405dcc.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bfd434d7d8c13ef76d6fa992.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_a9d8f7483fba2b371cddefc5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_44607240b4ee5ad6167f9aa3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_855ead777a9c7878740a57ae.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_22da1cb39c4ac485b5299127.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_deac415ac98c1de2d1df9e5c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_7675a5c2880e0355413fe131.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_f9bc4b3bf2b0aa78e90e4503.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a355e06ae4bd2cccfd45ebe6.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8625393581226ae68aaba7a3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:ff11;src:url('chunks/assets/font_4d9ea4d7835af5f290764fc3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_32587e764135dfa32d642f15.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls11{letter-spacing:-2.520000px;}
.lsa{letter-spacing:-2.076000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.087600px;}
.ls6{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls12{letter-spacing:1.080000px;}
.ls13{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-21.511200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.wsd{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._13{margin-left:-7.888320px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.390800px;}
._2{margin-left:-2.825040px;}
._0{margin-left:-1.050000px;}
._1{width:1.116000px;}
._b{width:2.982720px;}
._5{width:4.501440px;}
._12{width:5.617440px;}
._7{width:7.529760px;}
._6{width:8.784720px;}
._c{width:10.118880px;}
._8{width:11.354400px;}
._15{width:12.389760px;}
._10{width:13.677120px;}
._d{width:16.759680px;}
._f{width:18.884160px;}
._e{width:20.437920px;}
._11{width:21.592800px;}
._a{width:23.453280px;}
._9{width:24.680880px;}
._14{width:201.204000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y4f{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.yba{bottom:20.340000px;}
.y48{bottom:20.520000px;}
.y4e{bottom:22.320000px;}
.y18{bottom:23.940000px;}
.y4c{bottom:28.980000px;}
.yb{bottom:30.240000px;}
.y47{bottom:37.845000px;}
.y17{bottom:40.320000px;}
.y4d{bottom:40.680000px;}
.y4b{bottom:43.560000px;}
.ya{bottom:46.650000px;}
.y46{bottom:55.125000px;}
.y16{bottom:56.880000px;}
.y5{bottom:58.680000px;}
.y15{bottom:69.840000px;}
.y45{bottom:72.405000px;}
.y9{bottom:73.470000px;}
.y1{bottom:81.216000px;}
.y14{bottom:88.200000px;}
.y44{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y13{bottom:106.560000px;}
.y43{bottom:106.785000px;}
.y7{bottom:111.450000px;}
.y42{bottom:124.065000px;}
.y12{bottom:125.460000px;}
.y94{bottom:132.156000px;}
.y41{bottom:141.345000px;}
.y93{bottom:149.256000px;}
.y11{bottom:151.200000px;}
.yd0{bottom:154.470000px;}
.y55{bottom:157.350000px;}
.y40{bottom:158.625000px;}
.y92{bottom:166.530000px;}
.ycf{bottom:171.750000px;}
.y54{bottom:174.630000px;}
.y10{bottom:175.680000px;}
.y3f{bottom:175.905000px;}
.y91{bottom:183.810000px;}
.yce{bottom:189.030000px;}
.y53{bottom:191.910000px;}
.y3e{bottom:193.005000px;}
.y90{bottom:201.090000px;}
.ycd{bottom:206.310000px;}
.y52{bottom:209.190000px;}
.y3d{bottom:210.285000px;}
.y8f{bottom:218.370000px;}
.ycc{bottom:223.410000px;}
.y51{bottom:226.470000px;}
.y3c{bottom:227.565000px;}
.y8e{bottom:235.470000px;}
.ycb{bottom:240.690000px;}
.yc1{bottom:240.870000px;}
.y50{bottom:244.290000px;}
.y3b{bottom:244.845000px;}
.y8d{bottom:252.750000px;}
.yc0{bottom:257.970000px;}
.y4a{bottom:258.690000px;}
.y3a{bottom:262.125000px;}
.y8c{bottom:270.030000px;}
.y2a{bottom:271.125000px;}
.ybf{bottom:272.010000px;}
.y39{bottom:279.225000px;}
.y29{bottom:286.425000px;}
.y8b{bottom:287.310000px;}
.y38{bottom:296.535000px;}
.y28{bottom:304.095000px;}
.y8a{bottom:304.590000px;}
.y1b{bottom:313.590000px;}
.y37{bottom:313.815000px;}
.y27{bottom:321.375000px;}
.y89{bottom:321.870000px;}
.y36{bottom:331.095000px;}
.y26{bottom:338.655000px;}
.y88{bottom:339.015000px;}
.y35{bottom:348.375000px;}
.y87{bottom:356.295000px;}
.y25{bottom:356.475000px;}
.y34{bottom:365.655000px;}
.y86{bottom:373.575000px;}
.y24{bottom:373.755000px;}
.y33{bottom:382.755000px;}
.y85{bottom:390.855000px;}
.y23{bottom:391.215000px;}
.y32{bottom:400.035000px;}
.y84{bottom:408.135000px;}
.y22{bottom:408.675000px;}
.y31{bottom:417.315000px;}
.y83{bottom:425.415000px;}
.y21{bottom:425.955000px;}
.y30{bottom:434.595000px;}
.y82{bottom:442.515000px;}
.y20{bottom:443.415000px;}
.ybe{bottom:448.635000px;}
.y2f{bottom:451.875000px;}
.y81{bottom:459.795000px;}
.y1f{bottom:460.875000px;}
.ybd{bottom:463.395000px;}
.y2e{bottom:469.155000px;}
.y80{bottom:477.075000px;}
.y1e{bottom:478.335000px;}
.ybc{bottom:481.395000px;}
.y2d{bottom:486.255000px;}
.y7f{bottom:494.355000px;}
.ybb{bottom:499.395000px;}
.y2c{bottom:503.535000px;}
.y1d{bottom:505.695000px;}
.y7e{bottom:511.635000px;}
.yca{bottom:517.035000px;}
.yb9{bottom:517.395000px;}
.y2b{bottom:520.815000px;}
.y1c{bottom:523.515000px;}
.y7d{bottom:528.735000px;}
.yc9{bottom:531.075000px;}
.y7c{bottom:546.015000px;}
.yb8{bottom:555.735000px;}
.y7b{bottom:563.295000px;}
.yb7{bottom:573.015000px;}
.y7a{bottom:580.575000px;}
.yb6{bottom:587.775000px;}
.y79{bottom:597.855000px;}
.yb5{bottom:605.805000px;}
.y78{bottom:615.165000px;}
.yb4{bottom:623.805000px;}
.y77{bottom:632.265000px;}
.yb3{bottom:641.805000px;}
.y76{bottom:649.545000px;}
.yb2{bottom:659.805000px;}
.y75{bottom:666.825000px;}
.yb1{bottom:677.805000px;}
.y74{bottom:684.105000px;}
.yb0{bottom:695.805000px;}
.y73{bottom:701.385000px;}
.yaf{bottom:713.805000px;}
.y72{bottom:718.665000px;}
.yae{bottom:731.805000px;}
.y71{bottom:735.765000px;}
.yc8{bottom:746.385000px;}
.yad{bottom:749.805000px;}
.y70{bottom:753.045000px;}
.yc7{bottom:763.485000px;}
.yac{bottom:767.805000px;}
.y6f{bottom:770.325000px;}
.yab{bottom:785.805000px;}
.y6e{bottom:787.605000px;}
.yaa{bottom:803.805000px;}
.y6d{bottom:804.885000px;}
.y6c{bottom:822.165000px;}
.ya9{bottom:825.045000px;}
.y6b{bottom:839.265000px;}
.ya8{bottom:842.325000px;}
.y19{bottom:848.445000px;}
.y6a{bottom:856.545000px;}
.ya7{bottom:857.085000px;}
.y69{bottom:873.870000px;}
.ya6{bottom:875.130000px;}
.yf{bottom:878.010000px;}
.y68{bottom:891.150000px;}
.ya5{bottom:893.130000px;}
.y67{bottom:908.430000px;}
.ya4{bottom:911.130000px;}
.y66{bottom:925.530000px;}
.ya3{bottom:929.130000px;}
.y65{bottom:942.810000px;}
.ya2{bottom:947.130000px;}
.y64{bottom:960.090000px;}
.ya1{bottom:968.370000px;}
.y63{bottom:977.370000px;}
.yc6{bottom:984.930000px;}
.ya0{bottom:985.650000px;}
.y62{bottom:994.650000px;}
.y9f{bottom:1000.410000px;}
.yc5{bottom:1002.030000px;}
.y61{bottom:1011.930000px;}
.y9e{bottom:1018.410000px;}
.yc4{bottom:1019.310000px;}
.y60{bottom:1029.030000px;}
.y9d{bottom:1036.410000px;}
.yc3{bottom:1036.590000px;}
.y5f{bottom:1046.310000px;}
.yc2{bottom:1050.630000px;}
.y9c{bottom:1054.410000px;}
.y5e{bottom:1063.590000px;}
.yd{bottom:1068.810000px;}
.y9b{bottom:1072.410000px;}
.y5d{bottom:1080.870000px;}
.y9a{bottom:1090.410000px;}
.y6{bottom:1094.010000px;}
.y5c{bottom:1098.150000px;}
.y99{bottom:1108.410000px;}
.y5b{bottom:1115.430000px;}
.y98{bottom:1126.410000px;}
.y5a{bottom:1132.530000px;}
.y97{bottom:1144.440000px;}
.y59{bottom:1149.840000px;}
.y96{bottom:1162.440000px;}
.y58{bottom:1167.120000px;}
.y95{bottom:1180.440000px;}
.y57{bottom:1184.400000px;}
.y56{bottom:1201.680000px;}
.h22{height:17.100000px;}
.h1f{height:17.280000px;}
.h20{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h12{height:29.556000px;}
.h2{height:32.940000px;}
.h21{height:34.380000px;}
.h8{height:36.180000px;}
.h19{height:38.818125px;}
.h1d{height:42.164648px;}
.h18{height:42.281367px;}
.h1a{height:43.215117px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1b{height:54.900000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:190.800000px;}
.h14{height:534.855000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:72.180000px;}
.w19{width:72.900000px;}
.w3{width:73.080000px;}
.w11{width:77.580000px;}
.w13{width:113.616000px;}
.w17{width:118.836000px;}
.wc{width:136.800000px;}
.w14{width:146.520000px;}
.w16{width:149.796000px;}
.w5{width:151.950000px;}
.wb{width:162.570000px;}
.wd{width:179.670000px;}
.wf{width:186.150000px;}
.w15{width:192.450000px;}
.w1a{width:193.350000px;}
.w10{width:197.670000px;}
.w8{width:223.455000px;}
.wa{width:248.295000px;}
.we{width:266.115000px;}
.w12{width:274.755000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.560000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xb{left:28.116000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x14{left:108.035987px;}
.xf{left:117.390000px;}
.x10{left:119.550000px;}
.xc{left:127.470000px;}
.xe{left:129.090000px;}
.x2a{left:135.035987px;}
.xd{left:178.590000px;}
.x22{left:199.469987px;}
.x11{left:215.175000px;}
.x29{left:222.329987px;}
.x5{left:232.950000px;}
.x19{left:267.509987px;}
.x8{left:272.235000px;}
.x15{left:284.114987px;}
.x27{left:287.354987px;}
.x25{left:290.054987px;}
.x12{left:304.455000px;}
.x1d{left:316.514987px;}
.x16{left:330.735000px;}
.x6{left:331.995000px;}
.x1a{left:348.555000px;}
.x7{left:351.255000px;}
.x1e{left:357.375000px;}
.xa{left:365.475000px;}
.x9{left:439.500000px;}
.x26{left:446.474987px;}
.x20{left:471.705000px;}
.x17{left:494.205000px;}
.x1b{left:535.425000px;}
.x23{left:544.425000px;}
.x28{left:601.304987px;}
.x24{left:617.504987px;}
.x21{left:618.945000px;}
.x18{left:631.725000px;}
.x1c{left:733.830000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls11{letter-spacing:-2.240000pt;}
.lsa{letter-spacing:-1.845333pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.077867pt;}
.ls6{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls12{letter-spacing:0.960000pt;}
.ls13{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ws3{word-spacing:-19.121067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._13{margin-left:-7.011840pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.902933pt;}
._2{margin-left:-2.511147pt;}
._0{margin-left:-0.933333pt;}
._1{width:0.992000pt;}
._b{width:2.651307pt;}
._5{width:4.001280pt;}
._12{width:4.993280pt;}
._7{width:6.693120pt;}
._6{width:7.808640pt;}
._c{width:8.994560pt;}
._8{width:10.092800pt;}
._15{width:11.013120pt;}
._10{width:12.157440pt;}
._d{width:14.897493pt;}
._f{width:16.785920pt;}
._e{width:18.167040pt;}
._11{width:19.193600pt;}
._a{width:20.847360pt;}
._9{width:21.938560pt;}
._14{width:178.848000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y4f{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.yba{bottom:18.080000pt;}
.y48{bottom:18.240000pt;}
.y4e{bottom:19.840000pt;}
.y18{bottom:21.280000pt;}
.y4c{bottom:25.760000pt;}
.yb{bottom:26.880000pt;}
.y47{bottom:33.640000pt;}
.y17{bottom:35.840000pt;}
.y4d{bottom:36.160000pt;}
.y4b{bottom:38.720000pt;}
.ya{bottom:41.466667pt;}
.y46{bottom:49.000000pt;}
.y16{bottom:50.560000pt;}
.y5{bottom:52.160000pt;}
.y15{bottom:62.080000pt;}
.y45{bottom:64.360000pt;}
.y9{bottom:65.306667pt;}
.y1{bottom:72.192000pt;}
.y14{bottom:78.400000pt;}
.y44{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:94.720000pt;}
.y43{bottom:94.920000pt;}
.y7{bottom:99.066667pt;}
.y42{bottom:110.280000pt;}
.y12{bottom:111.520000pt;}
.y94{bottom:117.472000pt;}
.y41{bottom:125.640000pt;}
.y93{bottom:132.672000pt;}
.y11{bottom:134.400000pt;}
.yd0{bottom:137.306667pt;}
.y55{bottom:139.866667pt;}
.y40{bottom:141.000000pt;}
.y92{bottom:148.026667pt;}
.ycf{bottom:152.666667pt;}
.y54{bottom:155.226667pt;}
.y10{bottom:156.160000pt;}
.y3f{bottom:156.360000pt;}
.y91{bottom:163.386667pt;}
.yce{bottom:168.026667pt;}
.y53{bottom:170.586667pt;}
.y3e{bottom:171.560000pt;}
.y90{bottom:178.746667pt;}
.ycd{bottom:183.386667pt;}
.y52{bottom:185.946667pt;}
.y3d{bottom:186.920000pt;}
.y8f{bottom:194.106667pt;}
.ycc{bottom:198.586667pt;}
.y51{bottom:201.306667pt;}
.y3c{bottom:202.280000pt;}
.y8e{bottom:209.306667pt;}
.ycb{bottom:213.946667pt;}
.yc1{bottom:214.106667pt;}
.y50{bottom:217.146667pt;}
.y3b{bottom:217.640000pt;}
.y8d{bottom:224.666667pt;}
.yc0{bottom:229.306667pt;}
.y4a{bottom:229.946667pt;}
.y3a{bottom:233.000000pt;}
.y8c{bottom:240.026667pt;}
.y2a{bottom:241.000000pt;}
.ybf{bottom:241.786667pt;}
.y39{bottom:248.200000pt;}
.y29{bottom:254.600000pt;}
.y8b{bottom:255.386667pt;}
.y38{bottom:263.586667pt;}
.y28{bottom:270.306667pt;}
.y8a{bottom:270.746667pt;}
.y1b{bottom:278.746667pt;}
.y37{bottom:278.946667pt;}
.y27{bottom:285.666667pt;}
.y89{bottom:286.106667pt;}
.y36{bottom:294.306667pt;}
.y26{bottom:301.026667pt;}
.y88{bottom:301.346667pt;}
.y35{bottom:309.666667pt;}
.y87{bottom:316.706667pt;}
.y25{bottom:316.866667pt;}
.y34{bottom:325.026667pt;}
.y86{bottom:332.066667pt;}
.y24{bottom:332.226667pt;}
.y33{bottom:340.226667pt;}
.y85{bottom:347.426667pt;}
.y23{bottom:347.746667pt;}
.y32{bottom:355.586667pt;}
.y84{bottom:362.786667pt;}
.y22{bottom:363.266667pt;}
.y31{bottom:370.946667pt;}
.y83{bottom:378.146667pt;}
.y21{bottom:378.626667pt;}
.y30{bottom:386.306667pt;}
.y82{bottom:393.346667pt;}
.y20{bottom:394.146667pt;}
.ybe{bottom:398.786667pt;}
.y2f{bottom:401.666667pt;}
.y81{bottom:408.706667pt;}
.y1f{bottom:409.666667pt;}
.ybd{bottom:411.906667pt;}
.y2e{bottom:417.026667pt;}
.y80{bottom:424.066667pt;}
.y1e{bottom:425.186667pt;}
.ybc{bottom:427.906667pt;}
.y2d{bottom:432.226667pt;}
.y7f{bottom:439.426667pt;}
.ybb{bottom:443.906667pt;}
.y2c{bottom:447.586667pt;}
.y1d{bottom:449.506667pt;}
.y7e{bottom:454.786667pt;}
.yca{bottom:459.586667pt;}
.yb9{bottom:459.906667pt;}
.y2b{bottom:462.946667pt;}
.y1c{bottom:465.346667pt;}
.y7d{bottom:469.986667pt;}
.yc9{bottom:472.066667pt;}
.y7c{bottom:485.346667pt;}
.yb8{bottom:493.986667pt;}
.y7b{bottom:500.706667pt;}
.yb7{bottom:509.346667pt;}
.y7a{bottom:516.066667pt;}
.yb6{bottom:522.466667pt;}
.y79{bottom:531.426667pt;}
.yb5{bottom:538.493333pt;}
.y78{bottom:546.813333pt;}
.yb4{bottom:554.493333pt;}
.y77{bottom:562.013333pt;}
.yb3{bottom:570.493333pt;}
.y76{bottom:577.373333pt;}
.yb2{bottom:586.493333pt;}
.y75{bottom:592.733333pt;}
.yb1{bottom:602.493333pt;}
.y74{bottom:608.093333pt;}
.yb0{bottom:618.493333pt;}
.y73{bottom:623.453333pt;}
.yaf{bottom:634.493333pt;}
.y72{bottom:638.813333pt;}
.yae{bottom:650.493333pt;}
.y71{bottom:654.013333pt;}
.yc8{bottom:663.453333pt;}
.yad{bottom:666.493333pt;}
.y70{bottom:669.373333pt;}
.yc7{bottom:678.653333pt;}
.yac{bottom:682.493333pt;}
.y6f{bottom:684.733333pt;}
.yab{bottom:698.493333pt;}
.y6e{bottom:700.093333pt;}
.yaa{bottom:714.493333pt;}
.y6d{bottom:715.453333pt;}
.y6c{bottom:730.813333pt;}
.ya9{bottom:733.373333pt;}
.y6b{bottom:746.013333pt;}
.ya8{bottom:748.733333pt;}
.y19{bottom:754.173333pt;}
.y6a{bottom:761.373333pt;}
.ya7{bottom:761.853333pt;}
.y69{bottom:776.773333pt;}
.ya6{bottom:777.893333pt;}
.yf{bottom:780.453333pt;}
.y68{bottom:792.133333pt;}
.ya5{bottom:793.893333pt;}
.y67{bottom:807.493333pt;}
.ya4{bottom:809.893333pt;}
.y66{bottom:822.693333pt;}
.ya3{bottom:825.893333pt;}
.y65{bottom:838.053333pt;}
.ya2{bottom:841.893333pt;}
.y64{bottom:853.413333pt;}
.ya1{bottom:860.773333pt;}
.y63{bottom:868.773333pt;}
.yc6{bottom:875.493333pt;}
.ya0{bottom:876.133333pt;}
.y62{bottom:884.133333pt;}
.y9f{bottom:889.253333pt;}
.yc5{bottom:890.693333pt;}
.y61{bottom:899.493333pt;}
.y9e{bottom:905.253333pt;}
.yc4{bottom:906.053333pt;}
.y60{bottom:914.693333pt;}
.y9d{bottom:921.253333pt;}
.yc3{bottom:921.413333pt;}
.y5f{bottom:930.053333pt;}
.yc2{bottom:933.893333pt;}
.y9c{bottom:937.253333pt;}
.y5e{bottom:945.413333pt;}
.yd{bottom:950.053333pt;}
.y9b{bottom:953.253333pt;}
.y5d{bottom:960.773333pt;}
.y9a{bottom:969.253333pt;}
.y6{bottom:972.453333pt;}
.y5c{bottom:976.133333pt;}
.y99{bottom:985.253333pt;}
.y5b{bottom:991.493333pt;}
.y98{bottom:1001.253333pt;}
.y5a{bottom:1006.693333pt;}
.y97{bottom:1017.280000pt;}
.y59{bottom:1022.080000pt;}
.y96{bottom:1033.280000pt;}
.y58{bottom:1037.440000pt;}
.y95{bottom:1049.280000pt;}
.y57{bottom:1052.800000pt;}
.y56{bottom:1068.160000pt;}
.h22{height:15.200000pt;}
.h1f{height:15.360000pt;}
.h20{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h12{height:26.272000pt;}
.h2{height:29.280000pt;}
.h21{height:30.560000pt;}
.h8{height:32.160000pt;}
.h19{height:34.505000pt;}
.h1d{height:37.479688pt;}
.h18{height:37.583438pt;}
.h1a{height:38.413438pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1b{height:48.800000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:169.600000pt;}
.h14{height:475.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:64.160000pt;}
.w19{width:64.800000pt;}
.w3{width:64.960000pt;}
.w11{width:68.960000pt;}
.w13{width:100.992000pt;}
.w17{width:105.632000pt;}
.wc{width:121.600000pt;}
.w14{width:130.240000pt;}
.w16{width:133.152000pt;}
.w5{width:135.066667pt;}
.wb{width:144.506667pt;}
.wd{width:159.706667pt;}
.wf{width:165.466667pt;}
.w15{width:171.066667pt;}
.w1a{width:171.866667pt;}
.w10{width:175.706667pt;}
.w8{width:198.626667pt;}
.wa{width:220.706667pt;}
.we{width:236.546667pt;}
.w12{width:244.226667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.720000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xb{left:24.992000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x14{left:96.031988pt;}
.xf{left:104.346667pt;}
.x10{left:106.266667pt;}
.xc{left:113.306667pt;}
.xe{left:114.746667pt;}
.x2a{left:120.031988pt;}
.xd{left:158.746667pt;}
.x22{left:177.306655pt;}
.x11{left:191.266667pt;}
.x29{left:197.626655pt;}
.x5{left:207.066667pt;}
.x19{left:237.786655pt;}
.x8{left:241.986667pt;}
.x15{left:252.546655pt;}
.x27{left:255.426655pt;}
.x25{left:257.826655pt;}
.x12{left:270.626667pt;}
.x1d{left:281.346655pt;}
.x16{left:293.986667pt;}
.x6{left:295.106667pt;}
.x1a{left:309.826667pt;}
.x7{left:312.226667pt;}
.x1e{left:317.666667pt;}
.xa{left:324.866667pt;}
.x9{left:390.666667pt;}
.x26{left:396.866655pt;}
.x20{left:419.293333pt;}
.x17{left:439.293333pt;}
.x1b{left:475.933333pt;}
.x23{left:483.933333pt;}
.x28{left:534.493322pt;}
.x24{left:548.893322pt;}
.x21{left:550.173333pt;}
.x18{left:561.533333pt;}
.x1c{left:652.293333pt;}
.x3{left:656.933333pt;}
}




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