
    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_d77d44089a67c30f27a14539.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_634b7bf7ad860e12466465a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_b55013823b7aa90f8417a3b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_c7936422e3f3c283c5eba662.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.721000;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_b941f36de89c072c91d56827.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_01db3d79cdad384c81169e85.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_158a137303047ff3dfdbc120.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_4ba0fdb3ca6db2ed92320cd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926270;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_5339a85b0dda27dca38c750f.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m4{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);}
.m3{transform:matrix(0.227876,-0.082938,0.085506,0.234923,0,0);-ms-transform:matrix(0.227876,-0.082938,0.085506,0.234923,0,0);-webkit-transform:matrix(0.227876,-0.082938,0.085506,0.234923,0,0);}
.m1{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242502,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;}
.ls3{letter-spacing:-0.792000px;}
.ls1{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.378000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-15.953086px;}
.ws1{word-spacing:-13.797000px;}
.ws0{word-spacing:-10.512000px;}
.ws2{word-spacing:-0.060347px;}
.ws6{word-spacing:-0.047096px;}
.ws7{word-spacing:-0.040953px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.378000px;}
.ws4{word-spacing:0.540000px;}
.ws8{word-spacing:0.792000px;}
.ws9{word-spacing:1347.320437px;}
._21{margin-left:-13.797000px;}
._11{margin-left:-4.284900px;}
._3{margin-left:-2.635200px;}
._1{margin-left:-1.069200px;}
._2{width:1.458000px;}
._8{width:3.129300px;}
._e{width:4.668300px;}
._0{width:6.010200px;}
._6{width:7.893900px;}
._5{width:9.160200px;}
._4{width:10.558800px;}
._7{width:11.573100px;}
._10{width:12.751200px;}
._a{width:14.943600px;}
._f{width:16.480800px;}
._14{width:17.681400px;}
._9{width:19.169100px;}
._12{width:20.338200px;}
._c{width:21.552300px;}
._b{width:22.788900px;}
._13{width:24.517800px;}
._16{width:26.145000px;}
._15{width:28.350000px;}
._d{width:30.069900px;}
._1d{width:31.380300px;}
._19{width:32.474700px;}
._1c{width:34.302600px;}
._17{width:36.338400px;}
._22{width:38.152800px;}
._18{width:41.050800px;}
._20{width:43.016400px;}
._1f{width:44.370900px;}
._1e{width:46.314900px;}
._1a{width:47.489400px;}
._1b{width:50.190300px;}
.fc3{color:transparent;}
.fc2{color:rgb(2,2,3);}
.fc4{color:rgb(124,123,123);}
.fc1{color:rgb(175,47,95);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.953000px;}
.fs9{font-size:40.953243px;}
.fsd{font-size:44.142600px;}
.fsa{font-size:45.048600px;}
.fs7{font-size:47.096400px;}
.fs3{font-size:48.000000px;}
.fsc{font-size:48.556800px;}
.fsb{font-size:52.971000px;}
.fs1{font-size:54.000000px;}
.fse{font-size:57.385200px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:60.347400px;}
.fs4{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.647600px;}
.yb5{bottom:61.460400px;}
.yf3{bottom:61.499850px;}
.ye0{bottom:62.988300px;}
.y4{bottom:67.752150px;}
.y53{bottom:69.856800px;}
.y90{bottom:76.159950px;}
.ydf{bottom:77.986800px;}
.yb4{bottom:82.455150px;}
.yf2{bottom:82.494600px;}
.y3{bottom:82.750650px;}
.y52{bottom:90.851550px;}
.yde{bottom:92.985300px;}
.y8f{bottom:97.154700px;}
.y2{bottom:97.749150px;}
.yb3{bottom:103.449900px;}
.yf1{bottom:103.489350px;}
.y56{bottom:106.780893px;}
.y54{bottom:107.874000px;}
.y51{bottom:111.846300px;}
.y11e{bottom:117.785400px;}
.y8e{bottom:118.149450px;}
.yb2{bottom:124.444650px;}
.yf0{bottom:124.484100px;}
.y55{bottom:124.613550px;}
.y11d{bottom:131.242500px;}
.y50{bottom:132.841050px;}
.y8d{bottom:139.144200px;}
.y118{bottom:140.716500px;}
.yb1{bottom:145.439400px;}
.yef{bottom:145.478850px;}
.y4f{bottom:153.835800px;}
.y8c{bottom:160.138950px;}
.yb0{bottom:166.434150px;}
.yee{bottom:166.473600px;}
.y4e{bottom:174.830550px;}
.y5a{bottom:179.439163px;}
.y8b{bottom:181.133700px;}
.yaf{bottom:187.428900px;}
.yed{bottom:187.468350px;}
.y4d{bottom:195.825300px;}
.y10e{bottom:199.712850px;}
.y8a{bottom:202.128450px;}
.y113{bottom:205.420475px;}
.yae{bottom:208.423650px;}
.yec{bottom:208.463100px;}
.y4c{bottom:216.820050px;}
.y89{bottom:223.123200px;}
.yad{bottom:229.418400px;}
.yeb{bottom:229.457850px;}
.y4b{bottom:237.814800px;}
.y88{bottom:244.117950px;}
.y59{bottom:248.612370px;}
.yac{bottom:250.413150px;}
.yea{bottom:250.452600px;}
.y119{bottom:252.712759px;}
.y4a{bottom:258.809550px;}
.y10f{bottom:260.377888px;}
.y87{bottom:265.112700px;}
.yab{bottom:271.407900px;}
.ye9{bottom:271.447350px;}
.y49{bottom:279.804300px;}
.y114{bottom:285.552355px;}
.y86{bottom:286.107450px;}
.yaa{bottom:292.402650px;}
.ye8{bottom:292.442100px;}
.y110{bottom:296.808693px;}
.y48{bottom:300.799050px;}
.y58{bottom:301.687908px;}
.y85{bottom:307.102200px;}
.y11f{bottom:309.452550px;}
.ya9{bottom:313.397400px;}
.ye7{bottom:313.436850px;}
.y115{bottom:316.235807px;}
.y47{bottom:321.793800px;}
.y84{bottom:328.096950px;}
.ya8{bottom:334.392150px;}
.ye6{bottom:334.431600px;}
.y46{bottom:342.788550px;}
.y5c{bottom:354.567318px;}
.ya7{bottom:355.386900px;}
.ye5{bottom:355.426350px;}
.y83{bottom:359.717850px;}
.y45{bottom:363.783300px;}
.y11a{bottom:364.709018px;}
.ya6{bottom:376.381650px;}
.ye4{bottom:376.421100px;}
.y82{bottom:379.220850px;}
.y44{bottom:384.778050px;}
.ya5{bottom:397.376400px;}
.ye3{bottom:397.415850px;}
.y81{bottom:398.723850px;}
.y43{bottom:405.772800px;}
.y5b{bottom:406.979035px;}
.y80{bottom:418.226850px;}
.ya4{bottom:418.371150px;}
.ye2{bottom:418.410600px;}
.y42{bottom:426.767550px;}
.y111{bottom:438.996100px;}
.ya3{bottom:439.365900px;}
.ye1{bottom:439.405350px;}
.y116{bottom:440.227676px;}
.y41{bottom:447.762300px;}
.y57{bottom:457.399287px;}
.ya2{bottom:460.360650px;}
.y7f{bottom:460.400100px;}
.y40{bottom:468.757050px;}
.y11b{bottom:476.693138px;}
.ya1{bottom:481.355400px;}
.y7e{bottom:481.394850px;}
.y3f{bottom:489.751800px;}
.ya0{bottom:502.350150px;}
.y7d{bottom:502.389600px;}
.y3e{bottom:510.746550px;}
.y9f{bottom:523.344900px;}
.y7c{bottom:523.384350px;}
.y3d{bottom:531.741300px;}
.y9e{bottom:544.339650px;}
.y7b{bottom:544.379100px;}
.y3c{bottom:552.736050px;}
.y9d{bottom:565.334400px;}
.y7a{bottom:565.373850px;}
.y112{bottom:566.921065px;}
.y117{bottom:570.695249px;}
.y3b{bottom:573.730800px;}
.y9c{bottom:586.329150px;}
.y79{bottom:586.368600px;}
.y11c{bottom:588.677258px;}
.y3a{bottom:594.725550px;}
.y9b{bottom:607.323900px;}
.y78{bottom:607.363350px;}
.y39{bottom:615.720300px;}
.y9a{bottom:628.318650px;}
.y77{bottom:628.358100px;}
.y10d{bottom:628.625850px;}
.y1f{bottom:635.770050px;}
.y38{bottom:636.715050px;}
.y99{bottom:649.313400px;}
.y76{bottom:649.352850px;}
.y10c{bottom:649.620600px;}
.y1e{bottom:656.764800px;}
.y37{bottom:657.709800px;}
.y98{bottom:670.308150px;}
.y75{bottom:670.347600px;}
.y10b{bottom:670.615350px;}
.y1d{bottom:677.759550px;}
.y36{bottom:678.704550px;}
.y97{bottom:691.302900px;}
.y74{bottom:691.342350px;}
.y10a{bottom:691.610100px;}
.y1c{bottom:698.754300px;}
.y35{bottom:699.699300px;}
.y96{bottom:712.297650px;}
.y73{bottom:712.337100px;}
.y109{bottom:712.604850px;}
.y1b{bottom:719.749050px;}
.y34{bottom:720.694050px;}
.y72{bottom:733.331850px;}
.y108{bottom:733.599600px;}
.y1a{bottom:740.743800px;}
.y33{bottom:741.688800px;}
.y95{bottom:748.384950px;}
.y71{bottom:754.326600px;}
.y107{bottom:754.594350px;}
.y19{bottom:761.738550px;}
.y32{bottom:762.683550px;}
.y94{bottom:763.383450px;}
.y70{bottom:775.321350px;}
.y106{bottom:775.589100px;}
.y93{bottom:778.381950px;}
.y18{bottom:782.733300px;}
.y31{bottom:783.678300px;}
.y92{bottom:793.380450px;}
.y6f{bottom:796.316100px;}
.y105{bottom:796.583850px;}
.y17{bottom:803.728050px;}
.y30{bottom:804.673050px;}
.y91{bottom:808.378950px;}
.y6e{bottom:817.310850px;}
.y104{bottom:817.578600px;}
.y16{bottom:824.722800px;}
.y2f{bottom:825.667800px;}
.yb9{bottom:833.090550px;}
.y6d{bottom:838.305600px;}
.y103{bottom:838.573350px;}
.y15{bottom:845.717550px;}
.y2e{bottom:846.662550px;}
.ycc{bottom:855.965214px;}
.y6c{bottom:859.300350px;}
.y102{bottom:859.568100px;}
.ydb{bottom:862.719600px;}
.y14{bottom:866.712300px;}
.y2d{bottom:867.657300px;}
.ycb{bottom:868.245600px;}
.ycf{bottom:875.999064px;}
.y6b{bottom:880.295100px;}
.y101{bottom:880.562850px;}
.y13{bottom:887.707050px;}
.yce{bottom:888.279450px;}
.y2c{bottom:888.652050px;}
.yca{bottom:891.245514px;}
.yda{bottom:896.446050px;}
.y6a{bottom:901.289850px;}
.y100{bottom:901.557600px;}
.yc9{bottom:903.525900px;}
.yd3{bottom:903.815850px;}
.y12{bottom:908.701800px;}
.y2b{bottom:909.646800px;}
.y69{bottom:922.284600px;}
.yff{bottom:922.552350px;}
.y11{bottom:929.696550px;}
.y2a{bottom:930.641550px;}
.yc8{bottom:939.212664px;}
.y68{bottom:943.279350px;}
.yfe{bottom:943.547100px;}
.yd9{bottom:945.097050px;}
.ycd{bottom:945.350100px;}
.yd2{bottom:950.430150px;}
.y10{bottom:950.691300px;}
.yc7{bottom:951.493050px;}
.y29{bottom:951.636300px;}
.y67{bottom:964.274100px;}
.yfd{bottom:964.541850px;}
.yb6{bottom:967.610400px;}
.yf{bottom:971.686050px;}
.y28{bottom:972.631050px;}
.yd1{bottom:980.997300px;}
.yc4{bottom:981.103764px;}
.y66{bottom:985.268850px;}
.yfc{bottom:985.536600px;}
.yd8{bottom:987.424200px;}
.yc2{bottom:987.677100px;}
.ye{bottom:992.680800px;}
.yc3{bottom:993.384150px;}
.y27{bottom:993.625800px;}
.y65{bottom:1006.263600px;}
.yfb{bottom:1006.531350px;}
.yd{bottom:1013.675550px;}
.y26{bottom:1014.620550px;}
.yc6{bottom:1023.966864px;}
.y64{bottom:1027.258350px;}
.yfa{bottom:1027.526100px;}
.ybf{bottom:1031.277000px;}
.yd7{bottom:1031.894850px;}
.yc{bottom:1034.670300px;}
.y25{bottom:1035.615300px;}
.yd0{bottom:1035.906300px;}
.yc5{bottom:1036.247250px;}
.yd5{bottom:1046.566500px;}
.y63{bottom:1048.253100px;}
.yf9{bottom:1048.520850px;}
.yb{bottom:1055.665050px;}
.y24{bottom:1056.610050px;}
.yb8{bottom:1057.945164px;}
.y62{bottom:1069.247850px;}
.yf8{bottom:1069.515600px;}
.yb7{bottom:1070.225550px;}
.yc1{bottom:1072.509150px;}
.ya{bottom:1076.659800px;}
.y23{bottom:1077.604800px;}
.ydd{bottom:1079.682000px;}
.yd4{bottom:1086.603900px;}
.y61{bottom:1090.242600px;}
.yf7{bottom:1090.510350px;}
.y9{bottom:1097.654550px;}
.y22{bottom:1098.599550px;}
.yc0{bottom:1099.776600px;}
.ydc{bottom:1100.716500px;}
.ybe{bottom:1102.136250px;}
.y60{bottom:1111.237350px;}
.yf6{bottom:1111.505100px;}
.y21{bottom:1119.594300px;}
.yd6{bottom:1121.752050px;}
.ybd{bottom:1126.609200px;}
.y8{bottom:1127.158500px;}
.y5f{bottom:1132.232100px;}
.yf5{bottom:1132.499850px;}
.y20{bottom:1140.589050px;}
.y7{bottom:1142.158500px;}
.ybb{bottom:1150.631250px;}
.ybc{bottom:1151.006400px;}
.yba{bottom:1151.008689px;}
.y5e{bottom:1153.226850px;}
.yf4{bottom:1153.494600px;}
.y6{bottom:1170.928500px;}
.y5{bottom:1194.936000px;}
.y5d{bottom:1200.561000px;}
.he{height:29.527113px;}
.hf{height:29.527288px;}
.h10{height:31.984506px;}
.h13{height:32.158574px;}
.hd{height:33.956504px;}
.h12{height:35.374388px;}
.h11{height:37.917718px;}
.h5{height:38.340000px;}
.h6{height:38.640000px;}
.h3{height:38.934000px;}
.h14{height:41.806015px;}
.hb{height:43.260000px;}
.ha{height:43.510475px;}
.h8{height:45.423000px;}
.hc{height:47.586000px;}
.h2{height:48.300000px;}
.h7{height:50.715000px;}
.h4{height:64.890000px;}
.h9{height:508.593000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:572.776500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:36.142500px;}
.x9{left:54.000000px;}
.x2{left:59.527500px;}
.x26{left:164.790150px;}
.x8{left:213.049442px;}
.xa{left:280.125600px;}
.xc{left:298.322250px;}
.x27{left:320.173200px;}
.x30{left:331.426650px;}
.x2e{left:332.901760px;}
.x2d{left:339.651155px;}
.x2c{left:346.400550px;}
.x23{left:401.433450px;}
.xf{left:407.812800px;}
.x10{left:409.153512px;}
.x28{left:411.252600px;}
.x6{left:413.930850px;}
.x1a{left:432.492175px;}
.x22{left:433.845348px;}
.xe{left:436.911644px;}
.x19{left:439.192200px;}
.xd{left:443.511000px;}
.x7{left:446.518446px;}
.xb{left:452.692950px;}
.x3{left:458.223000px;}
.x24{left:537.518550px;}
.x2f{left:567.969000px;}
.x15{left:572.680800px;}
.x14{left:593.429850px;}
.x4{left:625.929000px;}
.x11{left:629.795850px;}
.x12{left:633.567750px;}
.x25{left:689.513100px;}
.x1d{left:715.860150px;}
.x1c{left:727.520745px;}
.x20{left:731.636610px;}
.x13{left:733.616850px;}
.x1f{left:735.462000px;}
.x16{left:736.983900px;}
.x21{left:738.168855px;}
.x1e{left:739.259902px;}
.x18{left:741.524550px;}
.x1b{left:746.681250px;}
.x17{left:750.914400px;}
.x2a{left:768.091741px;}
.x2b{left:769.932484px;}
.x29{left:772.144023px;}
.x1{left:824.273550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.704000pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.336000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsa{word-spacing:-14.180521pt;}
.ws1{word-spacing:-12.264000pt;}
.ws0{word-spacing:-9.344000pt;}
.ws2{word-spacing:-0.053642pt;}
.ws6{word-spacing:-0.041863pt;}
.ws7{word-spacing:-0.036403pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.336000pt;}
.ws4{word-spacing:0.480000pt;}
.ws8{word-spacing:0.704000pt;}
.ws9{word-spacing:1197.618166pt;}
._21{margin-left:-12.264000pt;}
._11{margin-left:-3.808800pt;}
._3{margin-left:-2.342400pt;}
._1{margin-left:-0.950400pt;}
._2{width:1.296000pt;}
._8{width:2.781600pt;}
._e{width:4.149600pt;}
._0{width:5.342400pt;}
._6{width:7.016800pt;}
._5{width:8.142400pt;}
._4{width:9.385600pt;}
._7{width:10.287200pt;}
._10{width:11.334400pt;}
._a{width:13.283200pt;}
._f{width:14.649600pt;}
._14{width:15.716800pt;}
._9{width:17.039200pt;}
._12{width:18.078400pt;}
._c{width:19.157600pt;}
._b{width:20.256800pt;}
._13{width:21.793600pt;}
._16{width:23.240000pt;}
._15{width:25.200000pt;}
._d{width:26.728800pt;}
._1d{width:27.893600pt;}
._19{width:28.866400pt;}
._1c{width:30.491200pt;}
._17{width:32.300800pt;}
._22{width:33.913600pt;}
._18{width:36.489600pt;}
._20{width:38.236800pt;}
._1f{width:39.440800pt;}
._1e{width:41.168800pt;}
._1a{width:42.212800pt;}
._1b{width:44.613600pt;}
.fs8{font-size:36.402667pt;}
.fs9{font-size:36.402883pt;}
.fsd{font-size:39.237867pt;}
.fsa{font-size:40.043200pt;}
.fs7{font-size:41.863467pt;}
.fs3{font-size:42.666667pt;}
.fsc{font-size:43.161600pt;}
.fsb{font-size:47.085333pt;}
.fs1{font-size:48.000000pt;}
.fse{font-size:51.009067pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:53.642133pt;}
.fs4{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.464533pt;}
.yb5{bottom:54.631467pt;}
.yf3{bottom:54.666533pt;}
.ye0{bottom:55.989600pt;}
.y4{bottom:60.224133pt;}
.y53{bottom:62.094933pt;}
.y90{bottom:67.697733pt;}
.ydf{bottom:69.321600pt;}
.yb4{bottom:73.293467pt;}
.yf2{bottom:73.328533pt;}
.y3{bottom:73.556133pt;}
.y52{bottom:80.756933pt;}
.yde{bottom:82.653600pt;}
.y8f{bottom:86.359733pt;}
.y2{bottom:86.888133pt;}
.yb3{bottom:91.955467pt;}
.yf1{bottom:91.990533pt;}
.y56{bottom:94.916350pt;}
.y54{bottom:95.888000pt;}
.y51{bottom:99.418933pt;}
.y11e{bottom:104.698133pt;}
.y8e{bottom:105.021733pt;}
.yb2{bottom:110.617467pt;}
.yf0{bottom:110.652533pt;}
.y55{bottom:110.767600pt;}
.y11d{bottom:116.660000pt;}
.y50{bottom:118.080933pt;}
.y8d{bottom:123.683733pt;}
.y118{bottom:125.081333pt;}
.yb1{bottom:129.279467pt;}
.yef{bottom:129.314533pt;}
.y4f{bottom:136.742933pt;}
.y8c{bottom:142.345733pt;}
.yb0{bottom:147.941467pt;}
.yee{bottom:147.976533pt;}
.y4e{bottom:155.404933pt;}
.y5a{bottom:159.501478pt;}
.y8b{bottom:161.007733pt;}
.yaf{bottom:166.603467pt;}
.yed{bottom:166.638533pt;}
.y4d{bottom:174.066933pt;}
.y10e{bottom:177.522533pt;}
.y8a{bottom:179.669733pt;}
.y113{bottom:182.595978pt;}
.yae{bottom:185.265467pt;}
.yec{bottom:185.300533pt;}
.y4c{bottom:192.728933pt;}
.y89{bottom:198.331733pt;}
.yad{bottom:203.927467pt;}
.yeb{bottom:203.962533pt;}
.y4b{bottom:211.390933pt;}
.y88{bottom:216.993733pt;}
.y59{bottom:220.988773pt;}
.yac{bottom:222.589467pt;}
.yea{bottom:222.624533pt;}
.y119{bottom:224.633564pt;}
.y4a{bottom:230.052933pt;}
.y10f{bottom:231.447011pt;}
.y87{bottom:235.655733pt;}
.yab{bottom:241.251467pt;}
.ye9{bottom:241.286533pt;}
.y49{bottom:248.714933pt;}
.y114{bottom:253.824316pt;}
.y86{bottom:254.317733pt;}
.yaa{bottom:259.913467pt;}
.ye8{bottom:259.948533pt;}
.y110{bottom:263.829949pt;}
.y48{bottom:267.376933pt;}
.y58{bottom:268.167030pt;}
.y85{bottom:272.979733pt;}
.y11f{bottom:275.068933pt;}
.ya9{bottom:278.575467pt;}
.ye7{bottom:278.610533pt;}
.y115{bottom:281.098495pt;}
.y47{bottom:286.038933pt;}
.y84{bottom:291.641733pt;}
.ya8{bottom:297.237467pt;}
.ye6{bottom:297.272533pt;}
.y46{bottom:304.700933pt;}
.y5c{bottom:315.170949pt;}
.ya7{bottom:315.899467pt;}
.ye5{bottom:315.934533pt;}
.y83{bottom:319.749200pt;}
.y45{bottom:323.362933pt;}
.y11a{bottom:324.185794pt;}
.ya6{bottom:334.561467pt;}
.ye4{bottom:334.596533pt;}
.y82{bottom:337.085200pt;}
.y44{bottom:342.024933pt;}
.ya5{bottom:353.223467pt;}
.ye3{bottom:353.258533pt;}
.y81{bottom:354.421200pt;}
.y43{bottom:360.686933pt;}
.y5b{bottom:361.759142pt;}
.y80{bottom:371.757200pt;}
.ya4{bottom:371.885467pt;}
.ye2{bottom:371.920533pt;}
.y42{bottom:379.348933pt;}
.y111{bottom:390.218755pt;}
.ya3{bottom:390.547467pt;}
.ye1{bottom:390.582533pt;}
.y116{bottom:391.313489pt;}
.y41{bottom:398.010933pt;}
.y57{bottom:406.577144pt;}
.ya2{bottom:409.209467pt;}
.y7f{bottom:409.244533pt;}
.y40{bottom:416.672933pt;}
.y11b{bottom:423.727234pt;}
.ya1{bottom:427.871467pt;}
.y7e{bottom:427.906533pt;}
.y3f{bottom:435.334933pt;}
.ya0{bottom:446.533467pt;}
.y7d{bottom:446.568533pt;}
.y3e{bottom:453.996933pt;}
.y9f{bottom:465.195467pt;}
.y7c{bottom:465.230533pt;}
.y3d{bottom:472.658933pt;}
.y9e{bottom:483.857467pt;}
.y7b{bottom:483.892533pt;}
.y3c{bottom:491.320933pt;}
.y9d{bottom:502.519467pt;}
.y7a{bottom:502.554533pt;}
.y112{bottom:503.929835pt;}
.y117{bottom:507.284665pt;}
.y3b{bottom:509.982933pt;}
.y9c{bottom:521.181467pt;}
.y79{bottom:521.216533pt;}
.y11c{bottom:523.268674pt;}
.y3a{bottom:528.644933pt;}
.y9b{bottom:539.843467pt;}
.y78{bottom:539.878533pt;}
.y39{bottom:547.306933pt;}
.y9a{bottom:558.505467pt;}
.y77{bottom:558.540533pt;}
.y10d{bottom:558.778533pt;}
.y1f{bottom:565.128933pt;}
.y38{bottom:565.968933pt;}
.y99{bottom:577.167467pt;}
.y76{bottom:577.202533pt;}
.y10c{bottom:577.440533pt;}
.y1e{bottom:583.790933pt;}
.y37{bottom:584.630933pt;}
.y98{bottom:595.829467pt;}
.y75{bottom:595.864533pt;}
.y10b{bottom:596.102533pt;}
.y1d{bottom:602.452933pt;}
.y36{bottom:603.292933pt;}
.y97{bottom:614.491467pt;}
.y74{bottom:614.526533pt;}
.y10a{bottom:614.764533pt;}
.y1c{bottom:621.114933pt;}
.y35{bottom:621.954933pt;}
.y96{bottom:633.153467pt;}
.y73{bottom:633.188533pt;}
.y109{bottom:633.426533pt;}
.y1b{bottom:639.776933pt;}
.y34{bottom:640.616933pt;}
.y72{bottom:651.850533pt;}
.y108{bottom:652.088533pt;}
.y1a{bottom:658.438933pt;}
.y33{bottom:659.278933pt;}
.y95{bottom:665.231067pt;}
.y71{bottom:670.512533pt;}
.y107{bottom:670.750533pt;}
.y19{bottom:677.100933pt;}
.y32{bottom:677.940933pt;}
.y94{bottom:678.563067pt;}
.y70{bottom:689.174533pt;}
.y106{bottom:689.412533pt;}
.y93{bottom:691.895067pt;}
.y18{bottom:695.762933pt;}
.y31{bottom:696.602933pt;}
.y92{bottom:705.227067pt;}
.y6f{bottom:707.836533pt;}
.y105{bottom:708.074533pt;}
.y17{bottom:714.424933pt;}
.y30{bottom:715.264933pt;}
.y91{bottom:718.559067pt;}
.y6e{bottom:726.498533pt;}
.y104{bottom:726.736533pt;}
.y16{bottom:733.086933pt;}
.y2f{bottom:733.926933pt;}
.yb9{bottom:740.524933pt;}
.y6d{bottom:745.160533pt;}
.y103{bottom:745.398533pt;}
.y15{bottom:751.748933pt;}
.y2e{bottom:752.588933pt;}
.ycc{bottom:760.857968pt;}
.y6c{bottom:763.822533pt;}
.y102{bottom:764.060533pt;}
.ydb{bottom:766.861867pt;}
.y14{bottom:770.410933pt;}
.y2d{bottom:771.250933pt;}
.ycb{bottom:771.773867pt;}
.ycf{bottom:778.665834pt;}
.y6b{bottom:782.484533pt;}
.y101{bottom:782.722533pt;}
.y13{bottom:789.072933pt;}
.yce{bottom:789.581733pt;}
.y2c{bottom:789.912933pt;}
.yca{bottom:792.218234pt;}
.yda{bottom:796.840933pt;}
.y6a{bottom:801.146533pt;}
.y100{bottom:801.384533pt;}
.yc9{bottom:803.134133pt;}
.yd3{bottom:803.391867pt;}
.y12{bottom:807.734933pt;}
.y2b{bottom:808.574933pt;}
.y69{bottom:819.808533pt;}
.yff{bottom:820.046533pt;}
.y11{bottom:826.396933pt;}
.y2a{bottom:827.236933pt;}
.yc8{bottom:834.855701pt;}
.y68{bottom:838.470533pt;}
.yfe{bottom:838.708533pt;}
.yd9{bottom:840.086267pt;}
.ycd{bottom:840.311200pt;}
.yd2{bottom:844.826800pt;}
.y10{bottom:845.058933pt;}
.yc7{bottom:845.771600pt;}
.y29{bottom:845.898933pt;}
.y67{bottom:857.132533pt;}
.yfd{bottom:857.370533pt;}
.yb6{bottom:860.098133pt;}
.yf{bottom:863.720933pt;}
.y28{bottom:864.560933pt;}
.yd1{bottom:871.997600pt;}
.yc4{bottom:872.092234pt;}
.y66{bottom:875.794533pt;}
.yfc{bottom:876.032533pt;}
.yd8{bottom:877.710400pt;}
.yc2{bottom:877.935200pt;}
.ye{bottom:882.382933pt;}
.yc3{bottom:883.008133pt;}
.y27{bottom:883.222933pt;}
.y65{bottom:894.456533pt;}
.yfb{bottom:894.694533pt;}
.yd{bottom:901.044933pt;}
.y26{bottom:901.884933pt;}
.yc6{bottom:910.192768pt;}
.y64{bottom:913.118533pt;}
.yfa{bottom:913.356533pt;}
.ybf{bottom:916.690667pt;}
.yd7{bottom:917.239867pt;}
.yc{bottom:919.706933pt;}
.y25{bottom:920.546933pt;}
.yd0{bottom:920.805600pt;}
.yc5{bottom:921.108667pt;}
.yd5{bottom:930.281333pt;}
.y63{bottom:931.780533pt;}
.yf9{bottom:932.018533pt;}
.yb{bottom:938.368933pt;}
.y24{bottom:939.208933pt;}
.yb8{bottom:940.395701pt;}
.y62{bottom:950.442533pt;}
.yf8{bottom:950.680533pt;}
.yb7{bottom:951.311600pt;}
.yc1{bottom:953.341467pt;}
.ya{bottom:957.030933pt;}
.y23{bottom:957.870933pt;}
.ydd{bottom:959.717333pt;}
.yd4{bottom:965.870133pt;}
.y61{bottom:969.104533pt;}
.yf7{bottom:969.342533pt;}
.y9{bottom:975.692933pt;}
.y22{bottom:976.532933pt;}
.yc0{bottom:977.579200pt;}
.ydc{bottom:978.414667pt;}
.ybe{bottom:979.676667pt;}
.y60{bottom:987.766533pt;}
.yf6{bottom:988.004533pt;}
.y21{bottom:995.194933pt;}
.yd6{bottom:997.112933pt;}
.ybd{bottom:1001.430400pt;}
.y8{bottom:1001.918667pt;}
.y5f{bottom:1006.428533pt;}
.yf5{bottom:1006.666533pt;}
.y20{bottom:1013.856933pt;}
.y7{bottom:1015.252000pt;}
.ybb{bottom:1022.783333pt;}
.ybc{bottom:1023.116800pt;}
.yba{bottom:1023.118835pt;}
.y5e{bottom:1025.090533pt;}
.yf4{bottom:1025.328533pt;}
.y6{bottom:1040.825333pt;}
.y5{bottom:1062.165333pt;}
.y5d{bottom:1067.165333pt;}
.he{height:26.246323pt;}
.hf{height:26.246478pt;}
.h10{height:28.430672pt;}
.h13{height:28.585399pt;}
.hd{height:30.183559pt;}
.h12{height:31.443900pt;}
.h11{height:33.704638pt;}
.h5{height:34.080000pt;}
.h6{height:34.346667pt;}
.h3{height:34.608000pt;}
.h14{height:37.160902pt;}
.hb{height:38.453333pt;}
.ha{height:38.675978pt;}
.h8{height:40.376000pt;}
.hc{height:42.298667pt;}
.h2{height:42.933333pt;}
.h7{height:45.080000pt;}
.h4{height:57.680000pt;}
.h9{height:452.082667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:509.134667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:32.126667pt;}
.x9{left:48.000000pt;}
.x2{left:52.913333pt;}
.x26{left:146.480133pt;}
.x8{left:189.377282pt;}
.xa{left:249.000533pt;}
.xc{left:265.175333pt;}
.x27{left:284.598400pt;}
.x30{left:294.601467pt;}
.x2e{left:295.912675pt;}
.x2d{left:301.912138pt;}
.x2c{left:307.911600pt;}
.x23{left:356.829733pt;}
.xf{left:362.500267pt;}
.x10{left:363.692011pt;}
.x28{left:365.557867pt;}
.x6{left:367.938533pt;}
.x1a{left:384.437489pt;}
.x22{left:385.640309pt;}
.xe{left:388.365905pt;}
.x19{left:390.393067pt;}
.xd{left:394.232000pt;}
.x7{left:396.905285pt;}
.xb{left:402.393733pt;}
.x3{left:407.309333pt;}
.x24{left:477.794267pt;}
.x2f{left:504.861333pt;}
.x15{left:509.049600pt;}
.x14{left:527.493200pt;}
.x4{left:556.381333pt;}
.x11{left:559.818533pt;}
.x12{left:563.171333pt;}
.x25{left:612.900533pt;}
.x1d{left:636.320133pt;}
.x1c{left:646.685107pt;}
.x20{left:650.343654pt;}
.x13{left:652.103867pt;}
.x1f{left:653.744000pt;}
.x16{left:655.096800pt;}
.x21{left:656.150093pt;}
.x1e{left:657.119913pt;}
.x18{left:659.132933pt;}
.x1b{left:663.716667pt;}
.x17{left:667.479467pt;}
.x2a{left:682.748215pt;}
.x2b{left:684.384430pt;}
.x29{left:686.350243pt;}
.x1{left:732.687600pt;}
}




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