
    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_eeb26ccdee4a446da8967c74.woff')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_84715b72ba1cee00306f2415.woff')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_571b6941e160870896dd5c5f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_0872373276ec75988c77df70.woff')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_bf00696b255c7c2c7358ee8a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.193359;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_8291599ec79d089b956e86b7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.819824;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_c24961df89cc2f98fe3b8fb7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.004395;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_f31399cedeb510fa95545df6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_5a8414b3b5e6787ba42dd6ba.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000488;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_ba67bb33090535dffb384254.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c24961df89cc2f98fe3b8fb7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.004395;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_734f86f30071eb23baeb5586.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_f9750c43247ab4c9fee17f4f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.004395;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_2099f1d14d15dc1bae9f8719.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;}
@font-face{font-family:fff;src:url('chunks/assets/font_4dd89e7db595f483958c3689.woff')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m3{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);}
.v1{vertical-align:-8.232000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.912400px;}
.ls1{letter-spacing:-1.620000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.381600px;}
.ls4{letter-spacing:1.626600px;}
.ls5{letter-spacing:3.240000px;}
.ls3{letter-spacing:3.888000px;}
.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;}
}
.ws1{word-spacing:-21.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws14{word-spacing:-15.000000px;}
.ws3{word-spacing:-10.494000px;}
.ws7{word-spacing:-7.200000px;}
.wse{word-spacing:-5.400000px;}
.ws9{word-spacing:-3.312000px;}
.ws16{word-spacing:-3.240000px;}
.wsa{word-spacing:-0.504000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.648000px;}
.ws6{word-spacing:2.736000px;}
.ws8{word-spacing:3.960000px;}
.ws10{word-spacing:4.026000px;}
.ws11{word-spacing:5.148000px;}
.wsf{word-spacing:6.402000px;}
.ws4{word-spacing:7.560000px;}
.wsd{word-spacing:7.632000px;}
.ws5{word-spacing:9.072000px;}
.ws12{word-spacing:10.656000px;}
.wsc{word-spacing:13.140000px;}
.ws13{word-spacing:22.752000px;}
.wsb{word-spacing:24.120000px;}
._20{margin-left:-10.389600px;}
._1e{margin-left:-9.201600px;}
._1c{margin-left:-7.207200px;}
._3{margin-left:-5.760000px;}
._2{margin-left:-4.473000px;}
._1{margin-left:-3.222000px;}
._14{margin-left:-2.158800px;}
._0{margin-left:-1.141800px;}
._c{width:1.267200px;}
._d{width:2.270400px;}
._16{width:3.313200px;}
._f{width:4.342800px;}
._17{width:5.498400px;}
._e{width:7.260000px;}
._11{width:8.487600px;}
._a{width:9.517200px;}
._18{width:10.591200px;}
._13{width:11.649600px;}
._12{width:13.516800px;}
._10{width:14.645400px;}
._19{width:16.466400px;}
._8{width:18.724200px;}
._6{width:19.767000px;}
._5{width:21.087000px;}
._9{width:22.222200px;}
._b{width:23.661000px;}
._1d{width:24.825600px;}
._1a{width:25.876800px;}
._15{width:27.520200px;}
._4{width:29.165400px;}
._21{width:31.113000px;}
._22{width:32.423400px;}
._1f{width:36.446400px;}
._7{width:40.009200px;}
._1b{width:85.980000px;}
.fc4{color:rgb(100,99,99);}
.fc3{color:rgb(96,124,180);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.976000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:46.489950px;}
.y5a{bottom:56.625900px;}
.y32{bottom:59.803050px;}
.y1{bottom:60.865950px;}
.y33{bottom:62.689950px;}
.y59{bottom:72.825900px;}
.y4{bottom:106.299150px;}
.y58{bottom:106.299300px;}
.ya4{bottom:108.601650px;}
.y78{bottom:122.002950px;}
.y91{bottom:124.299150px;}
.y57{bottom:124.299300px;}
.ya3{bottom:135.601650px;}
.y21{bottom:137.645550px;}
.y90{bottom:142.299150px;}
.y77{bottom:149.002950px;}
.yd6{bottom:157.346250px;}
.y20{bottom:157.445550px;}
.ya2{bottom:162.601650px;}
.y76{bottom:176.002950px;}
.yd5{bottom:177.146250px;}
.y8f{bottom:181.641600px;}
.y1f{bottom:185.743050px;}
.yd4{bottom:196.946250px;}
.y75{bottom:203.002950px;}
.ybc{bottom:205.651650px;}
.y8e{bottom:208.641600px;}
.y56{bottom:213.409200px;}
.yd3{bottom:216.746250px;}
.y31{bottom:219.650550px;}
.y107{bottom:222.874050px;}
.y74{bottom:230.002950px;}
.y1e{bottom:231.052050px;}
.ybb{bottom:232.651650px;}
.yd2{bottom:236.546250px;}
.y30{bottom:239.450550px;}
.y55{bottom:240.409200px;}
.y106{bottom:249.874050px;}
.y1d{bottom:250.852050px;}
.yd1{bottom:256.346250px;}
.y73{bottom:257.002950px;}
.ya1{bottom:257.113350px;}
.y8d{bottom:258.950400px;}
.yf3{bottom:260.571450px;}
.y54{bottom:267.409200px;}
.y2f{bottom:267.748050px;}
.y1c{bottom:270.652050px;}
.yd0{bottom:276.146250px;}
.ya0{bottom:276.913350px;}
.yf2{bottom:280.371450px;}
.y105{bottom:281.122050px;}
.y72{bottom:284.002950px;}
.y1b{bottom:290.452050px;}
.ycf{bottom:295.946250px;}
.y9f{bottom:296.713350px;}
.yf1{bottom:300.171450px;}
.y53{bottom:302.905200px;}
.y104{bottom:308.122050px;}
.y1a{bottom:310.252050px;}
.yce{bottom:315.746250px;}
.y9e{bottom:316.513350px;}
.yf0{bottom:319.971450px;}
.y8c{bottom:320.368800px;}
.yba{bottom:324.913500px;}
.y52{bottom:329.905200px;}
.y19{bottom:330.052050px;}
.ycd{bottom:335.546250px;}
.y103{bottom:339.370050px;}
.y2e{bottom:341.371050px;}
.y8b{bottom:341.967300px;}
.yb9{bottom:344.713500px;}
.y18{bottom:349.852050px;}
.y51{bottom:356.905200px;}
.y2d{bottom:361.171050px;}
.y8a{bottom:361.767300px;}
.yb8{bottom:364.513500px;}
.y102{bottom:366.370050px;}
.y17{bottom:369.652050px;}
.y71{bottom:378.513150px;}
.y2c{bottom:380.971050px;}
.y89{bottom:381.567300px;}
.y50{bottom:383.905200px;}
.yb7{bottom:384.313500px;}
.y16{bottom:389.452050px;}
.y101{bottom:393.370050px;}
.y70{bottom:398.313150px;}
.y2b{bottom:400.771050px;}
.y9d{bottom:403.825200px;}
.yef{bottom:407.283300px;}
.y15{bottom:409.252050px;}
.y4f{bottom:410.905200px;}
.ycc{bottom:414.841050px;}
.y2a{bottom:420.571050px;}
.y100{bottom:424.618050px;}
.y14{bottom:429.052050px;}
.y9c{bottom:430.825200px;}
.yee{bottom:434.283300px;}
.y4e{bottom:437.905200px;}
.y29{bottom:440.371050px;}
.ycb{bottom:441.841050px;}
.y13{bottom:448.852050px;}
.yff{bottom:451.618050px;}
.y9b{bottom:457.825200px;}
.y6f{bottom:460.633650px;}
.yed{bottom:461.283300px;}
.y4d{bottom:464.905200px;}
.y12{bottom:468.652050px;}
.y28{bottom:468.668550px;}
.y88{bottom:468.879150px;}
.yb6{bottom:471.633300px;}
.yca{bottom:477.337050px;}
.y6e{bottom:480.433650px;}
.yfe{bottom:482.866050px;}
.y9a{bottom:484.825200px;}
.yec{bottom:488.283300px;}
.y11{bottom:488.452050px;}
.y27{bottom:488.468550px;}
.y4c{bottom:491.905200px;}
.y87{bottom:495.879150px;}
.yb5{bottom:498.633300px;}
.yc9{bottom:504.337050px;}
.y10{bottom:508.252050px;}
.y26{bottom:508.268550px;}
.yfd{bottom:509.866050px;}
.y99{bottom:511.825200px;}
.y86{bottom:522.879150px;}
.yeb{bottom:523.819050px;}
.yb4{bottom:525.633300px;}
.y4b{bottom:527.401200px;}
.yf{bottom:528.052050px;}
.y25{bottom:528.068550px;}
.yc8{bottom:531.337050px;}
.y98{bottom:538.825200px;}
.yfc{bottom:541.114050px;}
.y6d{bottom:542.754150px;}
.ye{bottom:547.852050px;}
.y24{bottom:547.868550px;}
.yea{bottom:550.819050px;}
.yb3{bottom:552.633300px;}
.y4a{bottom:554.401200px;}
.yc7{bottom:558.337050px;}
.y6c{bottom:562.554150px;}
.yd{bottom:567.652050px;}
.y23{bottom:567.668550px;}
.yfb{bottom:568.114050px;}
.yb2{bottom:579.633300px;}
.y49{bottom:581.401200px;}
.yc6{bottom:585.337050px;}
.ye9{bottom:586.315050px;}
.y118{bottom:592.128600px;}
.yfa{bottom:599.362050px;}
.yc{bottom:600.206550px;}
.y22{bottom:600.223050px;}
.yb1{bottom:606.633300px;}
.y48{bottom:608.401200px;}
.yc5{bottom:612.337050px;}
.ye8{bottom:613.315050px;}
.y85{bottom:615.141000px;}
.y117{bottom:619.128600px;}
.yf9{bottom:626.362050px;}
.y97{bottom:633.338550px;}
.y84{bottom:634.941000px;}
.y47{bottom:635.401200px;}
.y6b{bottom:641.854650px;}
.yb0{bottom:642.129300px;}
.ye7{bottom:648.811050px;}
.y116{bottom:650.376600px;}
.y83{bottom:654.741000px;}
.y96{bottom:654.937050px;}
.y46{bottom:662.401200px;}
.y6a{bottom:668.854650px;}
.yaf{bottom:669.129300px;}
.y82{bottom:674.541000px;}
.yf8{bottom:674.621850px;}
.y95{bottom:674.737050px;}
.ye6{bottom:675.811050px;}
.y115{bottom:677.376600px;}
.y81{bottom:694.341000px;}
.y94{bottom:694.537050px;}
.y69{bottom:695.854650px;}
.yae{bottom:696.129300px;}
.y45{bottom:697.897200px;}
.ye5{bottom:702.811050px;}
.yc4{bottom:706.848750px;}
.y114{bottom:708.624600px;}
.y68{bottom:722.854650px;}
.y44{bottom:724.897200px;}
.yc3{bottom:726.648750px;}
.ye4{bottom:729.811050px;}
.y113{bottom:735.624600px;}
.yc2{bottom:746.448750px;}
.y43{bottom:751.897200px;}
.yf7{bottom:756.864600px;}
.y112{bottom:762.624600px;}
.ye3{bottom:765.307050px;}
.yc1{bottom:766.248750px;}
.y80{bottom:775.368600px;}
.y42{bottom:778.897200px;}
.yf6{bottom:783.864600px;}
.yc0{bottom:786.048750px;}
.y111{bottom:789.624600px;}
.yad{bottom:790.641000px;}
.ye2{bottom:792.307050px;}
.y67{bottom:793.864650px;}
.y7f{bottom:802.368600px;}
.y7{bottom:805.107600px;}
.y41{bottom:805.912950px;}
.yac{bottom:810.441000px;}
.yf5{bottom:810.864600px;}
.ye1{bottom:819.307050px;}
.y66{bottom:820.864650px;}
.y110{bottom:820.872600px;}
.y7e{bottom:829.368600px;}
.yab{bottom:830.241000px;}
.y40{bottom:832.912950px;}
.y6{bottom:833.405100px;}
.yf4{bottom:837.864600px;}
.ye0{bottom:846.307050px;}
.y10f{bottom:847.872600px;}
.yaa{bottom:850.041000px;}
.y65{bottom:856.360650px;}
.y7d{bottom:856.368600px;}
.y3f{bottom:859.912950px;}
.y5{bottom:861.702600px;}
.ybf{bottom:873.360600px;}
.y10e{bottom:879.120600px;}
.ydf{bottom:881.803050px;}
.y64{bottom:883.360650px;}
.y93{bottom:883.368600px;}
.y7c{bottom:891.864600px;}
.y3e{bottom:895.408950px;}
.ybe{bottom:900.360600px;}
.yde{bottom:908.803050px;}
.y63{bottom:910.360650px;}
.y10d{bottom:910.368600px;}
.y7b{bottom:918.864600px;}
.y3d{bottom:922.408950px;}
.ybd{bottom:927.360600px;}
.ydd{bottom:935.803050px;}
.ya9{bottom:937.360650px;}
.y10c{bottom:937.368600px;}
.y62{bottom:945.864600px;}
.y3c{bottom:949.408950px;}
.yb{bottom:949.748850px;}
.y7a{bottom:954.360600px;}
.ydc{bottom:962.803050px;}
.ya8{bottom:964.360650px;}
.y10b{bottom:968.616600px;}
.ya{bottom:971.348850px;}
.y61{bottom:972.864600px;}
.y3b{bottom:976.408950px;}
.y79{bottom:981.360600px;}
.ydb{bottom:989.803050px;}
.y10a{bottom:995.616600px;}
.y92{bottom:999.864600px;}
.y3a{bottom:1003.408950px;}
.y9{bottom:1005.704700px;}
.y60{bottom:1008.360600px;}
.yda{bottom:1016.803050px;}
.ya7{bottom:1026.864600px;}
.y8{bottom:1032.704700px;}
.y5f{bottom:1035.360600px;}
.y39{bottom:1038.904950px;}
.yd9{bottom:1043.803050px;}
.ya6{bottom:1053.864600px;}
.y109{bottom:1058.112600px;}
.y5e{bottom:1062.360600px;}
.y38{bottom:1065.904950px;}
.yd8{bottom:1070.803050px;}
.ya5{bottom:1080.864600px;}
.y108{bottom:1085.112600px;}
.y5d{bottom:1089.360600px;}
.y37{bottom:1092.904950px;}
.yd7{bottom:1097.803050px;}
.y5c{bottom:1116.360600px;}
.y36{bottom:1143.215550px;}
.y5b{bottom:1143.360600px;}
.y3{bottom:1171.698450px;}
.y2{bottom:1187.898450px;}
.y35{bottom:1204.375350px;}
.h3{height:39.049805px;}
.hb{height:41.660156px;}
.hc{height:43.183594px;}
.h10{height:45.826172px;}
.h8{height:46.664062px;}
.h2{height:48.656250px;}
.hd{height:49.992188px;}
.he{height:52.066406px;}
.h4{height:55.488281px;}
.h12{height:59.390625px;}
.hf{height:60.231445px;}
.h5{height:61.037109px;}
.h7{height:65.707031px;}
.ha{height:66.585938px;}
.h11{height:69.294075px;}
.h9{height:69.902766px;}
.h6{height:83.715820px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:73.338150px;}
.x4{left:74.401050px;}
.x1{left:86.527500px;}
.x8{left:106.299150px;}
.xd{left:127.559100px;}
.x11{left:131.805150px;}
.x10{left:148.818900px;}
.x9{left:455.455650px;}
.xe{left:492.632700px;}
.x2{left:551.814900px;}
.x6{left:601.080300px;}
.x7{left:620.946300px;}
.x5{left:647.725800px;}
.xc{left:660.351900px;}
.x3{left:706.047000px;}
.xa{left:793.488150px;}
.xb{left:838.695600px;}
@media print{
.v1{vertical-align:-7.317333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.255467pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.339200pt;}
.ls4{letter-spacing:1.445867pt;}
.ls5{letter-spacing:2.880000pt;}
.ls3{letter-spacing:3.456000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws14{word-spacing:-13.333333pt;}
.ws3{word-spacing:-9.328000pt;}
.ws7{word-spacing:-6.400000pt;}
.wse{word-spacing:-4.800000pt;}
.ws9{word-spacing:-2.944000pt;}
.ws16{word-spacing:-2.880000pt;}
.wsa{word-spacing:-0.448000pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.576000pt;}
.ws6{word-spacing:2.432000pt;}
.ws8{word-spacing:3.520000pt;}
.ws10{word-spacing:3.578667pt;}
.ws11{word-spacing:4.576000pt;}
.wsf{word-spacing:5.690667pt;}
.ws4{word-spacing:6.720000pt;}
.wsd{word-spacing:6.784000pt;}
.ws5{word-spacing:8.064000pt;}
.ws12{word-spacing:9.472000pt;}
.wsc{word-spacing:11.680000pt;}
.ws13{word-spacing:20.224000pt;}
.wsb{word-spacing:21.440000pt;}
._20{margin-left:-9.235200pt;}
._1e{margin-left:-8.179200pt;}
._1c{margin-left:-6.406400pt;}
._3{margin-left:-5.120000pt;}
._2{margin-left:-3.976000pt;}
._1{margin-left:-2.864000pt;}
._14{margin-left:-1.918933pt;}
._0{margin-left:-1.014933pt;}
._c{width:1.126400pt;}
._d{width:2.018133pt;}
._16{width:2.945067pt;}
._f{width:3.860267pt;}
._17{width:4.887467pt;}
._e{width:6.453333pt;}
._11{width:7.544533pt;}
._a{width:8.459733pt;}
._18{width:9.414400pt;}
._13{width:10.355200pt;}
._12{width:12.014933pt;}
._10{width:13.018133pt;}
._19{width:14.636800pt;}
._8{width:16.643733pt;}
._6{width:17.570667pt;}
._5{width:18.744000pt;}
._9{width:19.753067pt;}
._b{width:21.032000pt;}
._1d{width:22.067200pt;}
._1a{width:23.001600pt;}
._15{width:24.462400pt;}
._4{width:25.924800pt;}
._21{width:27.656000pt;}
._22{width:28.820800pt;}
._1f{width:32.396800pt;}
._7{width:35.563733pt;}
._1b{width:76.426667pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:41.324400pt;}
.y5a{bottom:50.334133pt;}
.y32{bottom:53.158267pt;}
.y1{bottom:54.103067pt;}
.y33{bottom:55.724400pt;}
.y59{bottom:64.734133pt;}
.y4{bottom:94.488133pt;}
.y58{bottom:94.488267pt;}
.ya4{bottom:96.534800pt;}
.y78{bottom:108.447067pt;}
.y91{bottom:110.488133pt;}
.y57{bottom:110.488267pt;}
.ya3{bottom:120.534800pt;}
.y21{bottom:122.351600pt;}
.y90{bottom:126.488133pt;}
.y77{bottom:132.447067pt;}
.yd6{bottom:139.863333pt;}
.y20{bottom:139.951600pt;}
.ya2{bottom:144.534800pt;}
.y76{bottom:156.447067pt;}
.yd5{bottom:157.463333pt;}
.y8f{bottom:161.459200pt;}
.y1f{bottom:165.104933pt;}
.yd4{bottom:175.063333pt;}
.y75{bottom:180.447067pt;}
.ybc{bottom:182.801467pt;}
.y8e{bottom:185.459200pt;}
.y56{bottom:189.697067pt;}
.yd3{bottom:192.663333pt;}
.y31{bottom:195.244933pt;}
.y107{bottom:198.110267pt;}
.y74{bottom:204.447067pt;}
.y1e{bottom:205.379600pt;}
.ybb{bottom:206.801467pt;}
.yd2{bottom:210.263333pt;}
.y30{bottom:212.844933pt;}
.y55{bottom:213.697067pt;}
.y106{bottom:222.110267pt;}
.y1d{bottom:222.979600pt;}
.yd1{bottom:227.863333pt;}
.y73{bottom:228.447067pt;}
.ya1{bottom:228.545200pt;}
.y8d{bottom:230.178133pt;}
.yf3{bottom:231.619067pt;}
.y54{bottom:237.697067pt;}
.y2f{bottom:237.998267pt;}
.y1c{bottom:240.579600pt;}
.yd0{bottom:245.463333pt;}
.ya0{bottom:246.145200pt;}
.yf2{bottom:249.219067pt;}
.y105{bottom:249.886267pt;}
.y72{bottom:252.447067pt;}
.y1b{bottom:258.179600pt;}
.ycf{bottom:263.063333pt;}
.y9f{bottom:263.745200pt;}
.yf1{bottom:266.819067pt;}
.y53{bottom:269.249067pt;}
.y104{bottom:273.886267pt;}
.y1a{bottom:275.779600pt;}
.yce{bottom:280.663333pt;}
.y9e{bottom:281.345200pt;}
.yf0{bottom:284.419067pt;}
.y8c{bottom:284.772267pt;}
.yba{bottom:288.812000pt;}
.y52{bottom:293.249067pt;}
.y19{bottom:293.379600pt;}
.ycd{bottom:298.263333pt;}
.y103{bottom:301.662267pt;}
.y2e{bottom:303.440933pt;}
.y8b{bottom:303.970933pt;}
.yb9{bottom:306.412000pt;}
.y18{bottom:310.979600pt;}
.y51{bottom:317.249067pt;}
.y2d{bottom:321.040933pt;}
.y8a{bottom:321.570933pt;}
.yb8{bottom:324.012000pt;}
.y102{bottom:325.662267pt;}
.y17{bottom:328.579600pt;}
.y71{bottom:336.456133pt;}
.y2c{bottom:338.640933pt;}
.y89{bottom:339.170933pt;}
.y50{bottom:341.249067pt;}
.yb7{bottom:341.612000pt;}
.y16{bottom:346.179600pt;}
.y101{bottom:349.662267pt;}
.y70{bottom:354.056133pt;}
.y2b{bottom:356.240933pt;}
.y9d{bottom:358.955733pt;}
.yef{bottom:362.029600pt;}
.y15{bottom:363.779600pt;}
.y4f{bottom:365.249067pt;}
.ycc{bottom:368.747600pt;}
.y2a{bottom:373.840933pt;}
.y100{bottom:377.438267pt;}
.y14{bottom:381.379600pt;}
.y9c{bottom:382.955733pt;}
.yee{bottom:386.029600pt;}
.y4e{bottom:389.249067pt;}
.y29{bottom:391.440933pt;}
.ycb{bottom:392.747600pt;}
.y13{bottom:398.979600pt;}
.yff{bottom:401.438267pt;}
.y9b{bottom:406.955733pt;}
.y6f{bottom:409.452133pt;}
.yed{bottom:410.029600pt;}
.y4d{bottom:413.249067pt;}
.y12{bottom:416.579600pt;}
.y28{bottom:416.594267pt;}
.y88{bottom:416.781467pt;}
.yb6{bottom:419.229600pt;}
.yca{bottom:424.299600pt;}
.y6e{bottom:427.052133pt;}
.yfe{bottom:429.214267pt;}
.y9a{bottom:430.955733pt;}
.yec{bottom:434.029600pt;}
.y11{bottom:434.179600pt;}
.y27{bottom:434.194267pt;}
.y4c{bottom:437.249067pt;}
.y87{bottom:440.781467pt;}
.yb5{bottom:443.229600pt;}
.yc9{bottom:448.299600pt;}
.y10{bottom:451.779600pt;}
.y26{bottom:451.794267pt;}
.yfd{bottom:453.214267pt;}
.y99{bottom:454.955733pt;}
.y86{bottom:464.781467pt;}
.yeb{bottom:465.616933pt;}
.yb4{bottom:467.229600pt;}
.y4b{bottom:468.801067pt;}
.yf{bottom:469.379600pt;}
.y25{bottom:469.394267pt;}
.yc8{bottom:472.299600pt;}
.y98{bottom:478.955733pt;}
.yfc{bottom:480.990267pt;}
.y6d{bottom:482.448133pt;}
.ye{bottom:486.979600pt;}
.y24{bottom:486.994267pt;}
.yea{bottom:489.616933pt;}
.yb3{bottom:491.229600pt;}
.y4a{bottom:492.801067pt;}
.yc7{bottom:496.299600pt;}
.y6c{bottom:500.048133pt;}
.yd{bottom:504.579600pt;}
.y23{bottom:504.594267pt;}
.yfb{bottom:504.990267pt;}
.yb2{bottom:515.229600pt;}
.y49{bottom:516.801067pt;}
.yc6{bottom:520.299600pt;}
.ye9{bottom:521.168933pt;}
.y118{bottom:526.336533pt;}
.yfa{bottom:532.766267pt;}
.yc{bottom:533.516933pt;}
.y22{bottom:533.531600pt;}
.yb1{bottom:539.229600pt;}
.y48{bottom:540.801067pt;}
.yc5{bottom:544.299600pt;}
.ye8{bottom:545.168933pt;}
.y85{bottom:546.792000pt;}
.y117{bottom:550.336533pt;}
.yf9{bottom:556.766267pt;}
.y97{bottom:562.967600pt;}
.y84{bottom:564.392000pt;}
.y47{bottom:564.801067pt;}
.y6b{bottom:570.537467pt;}
.yb0{bottom:570.781600pt;}
.ye7{bottom:576.720933pt;}
.y116{bottom:578.112533pt;}
.y83{bottom:581.992000pt;}
.y96{bottom:582.166267pt;}
.y46{bottom:588.801067pt;}
.y6a{bottom:594.537467pt;}
.yaf{bottom:594.781600pt;}
.y82{bottom:599.592000pt;}
.yf8{bottom:599.663867pt;}
.y95{bottom:599.766267pt;}
.ye6{bottom:600.720933pt;}
.y115{bottom:602.112533pt;}
.y81{bottom:617.192000pt;}
.y94{bottom:617.366267pt;}
.y69{bottom:618.537467pt;}
.yae{bottom:618.781600pt;}
.y45{bottom:620.353067pt;}
.ye5{bottom:624.720933pt;}
.yc4{bottom:628.310000pt;}
.y114{bottom:629.888533pt;}
.y68{bottom:642.537467pt;}
.y44{bottom:644.353067pt;}
.yc3{bottom:645.910000pt;}
.ye4{bottom:648.720933pt;}
.y113{bottom:653.888533pt;}
.yc2{bottom:663.510000pt;}
.y43{bottom:668.353067pt;}
.yf7{bottom:672.768533pt;}
.y112{bottom:677.888533pt;}
.ye3{bottom:680.272933pt;}
.yc1{bottom:681.110000pt;}
.y80{bottom:689.216533pt;}
.y42{bottom:692.353067pt;}
.yf6{bottom:696.768533pt;}
.yc0{bottom:698.710000pt;}
.y111{bottom:701.888533pt;}
.yad{bottom:702.792000pt;}
.ye2{bottom:704.272933pt;}
.y67{bottom:705.657467pt;}
.y7f{bottom:713.216533pt;}
.y7{bottom:715.651200pt;}
.y41{bottom:716.367067pt;}
.yac{bottom:720.392000pt;}
.yf5{bottom:720.768533pt;}
.ye1{bottom:728.272933pt;}
.y66{bottom:729.657467pt;}
.y110{bottom:729.664533pt;}
.y7e{bottom:737.216533pt;}
.yab{bottom:737.992000pt;}
.y40{bottom:740.367067pt;}
.y6{bottom:740.804533pt;}
.yf4{bottom:744.768533pt;}
.ye0{bottom:752.272933pt;}
.y10f{bottom:753.664533pt;}
.yaa{bottom:755.592000pt;}
.y65{bottom:761.209467pt;}
.y7d{bottom:761.216533pt;}
.y3f{bottom:764.367067pt;}
.y5{bottom:765.957867pt;}
.ybf{bottom:776.320533pt;}
.y10e{bottom:781.440533pt;}
.ydf{bottom:783.824933pt;}
.y64{bottom:785.209467pt;}
.y93{bottom:785.216533pt;}
.y7c{bottom:792.768533pt;}
.y3e{bottom:795.919067pt;}
.ybe{bottom:800.320533pt;}
.yde{bottom:807.824933pt;}
.y63{bottom:809.209467pt;}
.y10d{bottom:809.216533pt;}
.y7b{bottom:816.768533pt;}
.y3d{bottom:819.919067pt;}
.ybd{bottom:824.320533pt;}
.ydd{bottom:831.824933pt;}
.ya9{bottom:833.209467pt;}
.y10c{bottom:833.216533pt;}
.y62{bottom:840.768533pt;}
.y3c{bottom:843.919067pt;}
.yb{bottom:844.221200pt;}
.y7a{bottom:848.320533pt;}
.ydc{bottom:855.824933pt;}
.ya8{bottom:857.209467pt;}
.y10b{bottom:860.992533pt;}
.ya{bottom:863.421200pt;}
.y61{bottom:864.768533pt;}
.y3b{bottom:867.919067pt;}
.y79{bottom:872.320533pt;}
.ydb{bottom:879.824933pt;}
.y10a{bottom:884.992533pt;}
.y92{bottom:888.768533pt;}
.y3a{bottom:891.919067pt;}
.y9{bottom:893.959733pt;}
.y60{bottom:896.320533pt;}
.yda{bottom:903.824933pt;}
.ya7{bottom:912.768533pt;}
.y8{bottom:917.959733pt;}
.y5f{bottom:920.320533pt;}
.y39{bottom:923.471067pt;}
.yd9{bottom:927.824933pt;}
.ya6{bottom:936.768533pt;}
.y109{bottom:940.544533pt;}
.y5e{bottom:944.320533pt;}
.y38{bottom:947.471067pt;}
.yd8{bottom:951.824933pt;}
.ya5{bottom:960.768533pt;}
.y108{bottom:964.544533pt;}
.y5d{bottom:968.320533pt;}
.y37{bottom:971.471067pt;}
.yd7{bottom:975.824933pt;}
.y5c{bottom:992.320533pt;}
.y36{bottom:1016.191600pt;}
.y5b{bottom:1016.320533pt;}
.y3{bottom:1041.509733pt;}
.y2{bottom:1055.909733pt;}
.y35{bottom:1070.555867pt;}
.h3{height:34.710938pt;}
.hb{height:37.031250pt;}
.hc{height:38.385417pt;}
.h10{height:40.734375pt;}
.h8{height:41.479167pt;}
.h2{height:43.250000pt;}
.hd{height:44.437500pt;}
.he{height:46.281250pt;}
.h4{height:49.322917pt;}
.h12{height:52.791667pt;}
.hf{height:53.539062pt;}
.h5{height:54.255208pt;}
.h7{height:58.406250pt;}
.ha{height:59.187500pt;}
.h11{height:61.594733pt;}
.h9{height:62.135792pt;}
.h6{height:74.414062pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:65.189467pt;}
.x4{left:66.134267pt;}
.x1{left:76.913333pt;}
.x8{left:94.488133pt;}
.xd{left:113.385867pt;}
.x11{left:117.160133pt;}
.x10{left:132.283467pt;}
.x9{left:404.849467pt;}
.xe{left:437.895733pt;}
.x2{left:490.502133pt;}
.x6{left:534.293600pt;}
.x7{left:551.952267pt;}
.x5{left:575.756267pt;}
.xc{left:586.979467pt;}
.x3{left:627.597333pt;}
.xa{left:705.322800pt;}
.xb{left:745.507200pt;}
}




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