
    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_1ef53171dc3f1b5b86d4e41a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_32d68c0974c79e0eefc4b9b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_b1ddb78810ee0be6ccbd995c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_dcfaae46653549f9593f30d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_4966d695a2b164f98f607a6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_30fad3258e0584845a0e4fe1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_94607d837f6c7a7195fce556.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_00c27b962b15b0f80f2c90d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_e859ee4c73f1081323930c72.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v1{vertical-align:-87.840000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.702000px;}
.ls15{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.738000px;}
.ls10{letter-spacing:1.080000px;}
.ls12{letter-spacing:25.308000px;}
.ls8{letter-spacing:52.668000px;}
.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;}
}
.ws4{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.824000px;}
.ws9{word-spacing:-13.716000px;}
.ws8{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.284000px;}
.wse{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.798000px;}
.wsa{word-spacing:-12.672000px;}
.ws5{word-spacing:0.000000px;}
._28{margin-left:-2.298000px;}
._0{margin-left:-1.026000px;}
._1{width:1.866000px;}
._6{width:3.688320px;}
._7{width:5.197200px;}
._8{width:6.872400px;}
._9{width:8.173680px;}
._16{width:9.182640px;}
._a{width:10.265280px;}
._4{width:11.593440px;}
._5{width:12.628800px;}
._b{width:13.922160px;}
._f{width:15.768000px;}
._10{width:17.604000px;}
._15{width:19.278000px;}
._14{width:20.304000px;}
._12{width:21.816000px;}
._13{width:22.974000px;}
._11{width:24.354000px;}
._2a{width:25.512000px;}
._17{width:26.568000px;}
._18{width:27.726000px;}
._22{width:29.268000px;}
._21{width:30.780000px;}
._1e{width:32.454000px;}
._e{width:33.534000px;}
._19{width:35.370000px;}
._1d{width:36.720000px;}
._27{width:38.502000px;}
._26{width:39.582000px;}
._29{width:41.310000px;}
._2d{width:42.606000px;}
._2e{width:43.848000px;}
._d{width:44.874000px;}
._c{width:45.954000px;}
._25{width:47.166000px;}
._2c{width:50.076000px;}
._30{width:51.384000px;}
._2f{width:52.704000px;}
._32{width:54.486000px;}
._33{width:55.782000px;}
._1c{width:57.510000px;}
._31{width:59.076000px;}
._20{width:60.588000px;}
._1f{width:61.776000px;}
._3{width:63.828480px;}
._2b{width:65.015520px;}
._23{width:70.470000px;}
._24{width:71.550000px;}
._36{width:74.142000px;}
._34{width:93.960000px;}
._1a{width:97.524000px;}
._1b{width:98.766000px;}
._3c{width:105.054000px;}
._3b{width:106.326000px;}
._39{width:115.236000px;}
._3d{width:126.468000px;}
._3e{width:127.656000px;}
._3f{width:131.220000px;}
._40{width:132.300000px;}
._38{width:136.242000px;}
._37{width:138.024000px;}
._3a{width:147.366000px;}
._35{width:323.028000px;}
._2{width:1169.580000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.060000px;}
.y136{bottom:9.705000px;}
.y117{bottom:9.720000px;}
.yfd{bottom:10.065000px;}
.yea{bottom:10.080000px;}
.y131{bottom:10.245000px;}
.yed{bottom:10.260000px;}
.yef{bottom:10.290000px;}
.yfa{bottom:10.425000px;}
.yf6{bottom:10.440000px;}
.y10a{bottom:10.470000px;}
.y110{bottom:11.340000px;}
.y5{bottom:15.660000px;}
.y3{bottom:18.900000px;}
.y135{bottom:27.705000px;}
.y116{bottom:27.720000px;}
.yf2{bottom:27.900000px;}
.y130{bottom:28.065000px;}
.y108{bottom:28.080000px;}
.y6{bottom:39.780000px;}
.y12c{bottom:45.525000px;}
.y128{bottom:45.540000px;}
.y120{bottom:45.720000px;}
.y12f{bottom:45.885000px;}
.y125{bottom:45.900000px;}
.y2{bottom:60.660000px;}
.y134{bottom:63.345000px;}
.y127{bottom:63.360000px;}
.y12b{bottom:63.390000px;}
.y11f{bottom:63.540000px;}
.y138{bottom:63.705000px;}
.y124{bottom:63.720000px;}
.y12e{bottom:63.750000px;}
.y3e{bottom:69.690000px;}
.y133{bottom:81.165000px;}
.y122{bottom:81.180000px;}
.y12a{bottom:81.210000px;}
.y11e{bottom:81.360000px;}
.y137{bottom:81.525000px;}
.y123{bottom:81.540000px;}
.y12d{bottom:81.570000px;}
.y3d{bottom:89.490000px;}
.y11b{bottom:99.000000px;}
.y11d{bottom:99.360000px;}
.y142{bottom:101.880000px;}
.y106{bottom:105.660000px;}
.y18c{bottom:107.280000px;}
.y1f5{bottom:107.460000px;}
.yb1{bottom:108.000000px;}
.y7c{bottom:108.180000px;}
.y3c{bottom:109.290000px;}
.y11a{bottom:116.820000px;}
.y166{bottom:117.000000px;}
.y11c{bottom:117.180000px;}
.y1cd{bottom:117.360000px;}
.y141{bottom:119.700000px;}
.y31{bottom:123.660000px;}
.y18b{bottom:125.100000px;}
.y1f4{bottom:125.280000px;}
.y7b{bottom:126.000000px;}
.y3b{bottom:129.090000px;}
.y105{bottom:133.200000px;}
.y119{bottom:134.640000px;}
.ye7{bottom:135.000000px;}
.y1cc{bottom:135.180000px;}
.y18a{bottom:143.100000px;}
.y1a0{bottom:143.640000px;}
.yb0{bottom:143.820000px;}
.y7a{bottom:144.000000px;}
.y140{bottom:146.520000px;}
.y3a{bottom:148.890000px;}
.y30{bottom:150.480000px;}
.ye6{bottom:152.820000px;}
.y1cb{bottom:153.000000px;}
.y189{bottom:160.920000px;}
.y104{bottom:161.100000px;}
.yaf{bottom:161.640000px;}
.y79{bottom:161.820000px;}
.y13f{bottom:164.340000px;}
.y39{bottom:168.690000px;}
.ye5{bottom:170.640000px;}
.y19f{bottom:170.820000px;}
.y1ca{bottom:171.000000px;}
.y2f{bottom:177.300000px;}
.y188{bottom:178.740000px;}
.y1f3{bottom:178.920000px;}
.yae{bottom:179.460000px;}
.y78{bottom:179.640000px;}
.y13e{bottom:182.160000px;}
.ye4{bottom:188.460000px;}
.y19e{bottom:188.640000px;}
.y38{bottom:188.670000px;}
.y1c9{bottom:188.820000px;}
.y103{bottom:189.000000px;}
.y187{bottom:196.560000px;}
.y1f2{bottom:196.740000px;}
.yad{bottom:197.280000px;}
.y77{bottom:197.460000px;}
.y13d{bottom:199.980000px;}
.y2e{bottom:204.300000px;}
.ye3{bottom:206.310000px;}
.y19d{bottom:206.490000px;}
.y1c8{bottom:206.670000px;}
.y37{bottom:208.470000px;}
.y32{bottom:214.380000px;}
.y186{bottom:214.410000px;}
.y1f1{bottom:214.590000px;}
.y76{bottom:215.310000px;}
.y102{bottom:216.765000px;}
.y13c{bottom:218.010000px;}
.ye2{bottom:224.310000px;}
.y1c7{bottom:224.490000px;}
.y36{bottom:228.270000px;}
.y2d{bottom:231.150000px;}
.y185{bottom:232.230000px;}
.y1f0{bottom:232.410000px;}
.yac{bottom:233.130000px;}
.y75{bottom:233.310000px;}
.y40{bottom:234.750000px;}
.y13b{bottom:235.830000px;}
.ye1{bottom:241.770000px;}
.y165{bottom:242.130000px;}
.y19c{bottom:242.310000px;}
.y101{bottom:244.665000px;}
.y35{bottom:248.115000px;}
.y184{bottom:250.230000px;}
.yab{bottom:250.950000px;}
.y74{bottom:251.130000px;}
.y13a{bottom:253.650000px;}
.y2c{bottom:257.970000px;}
.y164{bottom:259.950000px;}
.y19b{bottom:260.130000px;}
.y1c6{bottom:260.310000px;}
.ye0{bottom:261.930000px;}
.y3f{bottom:264.090000px;}
.y34{bottom:267.915000px;}
.y183{bottom:268.050000px;}
.y1ef{bottom:268.230000px;}
.yaa{bottom:268.770000px;}
.y73{bottom:268.950000px;}
.y139{bottom:271.110000px;}
.y100{bottom:272.565000px;}
.y163{bottom:277.770000px;}
.y19a{bottom:277.950000px;}
.y1c5{bottom:278.130000px;}
.y2b{bottom:284.790000px;}
.y182{bottom:285.870000px;}
.y1ee{bottom:286.050000px;}
.ya9{bottom:286.590000px;}
.y72{bottom:286.770000px;}
.y132{bottom:293.445000px;}
.ydf{bottom:294.690000px;}
.y162{bottom:295.590000px;}
.y199{bottom:295.770000px;}
.y1c4{bottom:295.950000px;}
.y33{bottom:298.335000px;}
.yff{bottom:300.105000px;}
.y181{bottom:303.690000px;}
.y1ed{bottom:303.870000px;}
.ya8{bottom:304.410000px;}
.y71{bottom:304.590000px;}
.y2a{bottom:311.610000px;}
.yde{bottom:312.510000px;}
.y161{bottom:313.410000px;}
.y1c3{bottom:313.770000px;}
.y198{bottom:315.570000px;}
.y180{bottom:321.510000px;}
.y1ec{bottom:321.690000px;}
.y70{bottom:322.410000px;}
.yfe{bottom:328.005000px;}
.ydd{bottom:330.510000px;}
.y160{bottom:331.410000px;}
.y1c2{bottom:331.590000px;}
.y25{bottom:338.610000px;}
.y17f{bottom:339.510000px;}
.y6f{bottom:340.410000px;}
.y29{bottom:347.430000px;}
.ydc{bottom:348.330000px;}
.y197{bottom:348.510000px;}
.ya7{bottom:349.230000px;}
.y1c1{bottom:349.410000px;}
.yfc{bottom:355.905000px;}
.y17e{bottom:357.330000px;}
.y1eb{bottom:357.510000px;}
.y6e{bottom:358.230000px;}
.y24{bottom:365.430000px;}
.ydb{bottom:366.150000px;}
.y196{bottom:366.330000px;}
.ya6{bottom:367.050000px;}
.y1c0{bottom:367.410000px;}
.y28{bottom:374.250000px;}
.y17d{bottom:375.150000px;}
.y1ea{bottom:375.330000px;}
.y6d{bottom:376.050000px;}
.yfb{bottom:383.445000px;}
.yda{bottom:383.970000px;}
.y195{bottom:384.150000px;}
.ya5{bottom:384.870000px;}
.y1bf{bottom:385.230000px;}
.y23{bottom:392.250000px;}
.y129{bottom:392.445000px;}
.y1a5{bottom:392.610000px;}
.y17c{bottom:392.970000px;}
.y1e9{bottom:393.150000px;}
.y6c{bottom:393.870000px;}
.y27{bottom:401.070000px;}
.yd9{bottom:401.790000px;}
.y194{bottom:401.970000px;}
.ya4{bottom:402.690000px;}
.y1be{bottom:403.050000px;}
.y17b{bottom:410.790000px;}
.y1e8{bottom:410.970000px;}
.yf9{bottom:411.345000px;}
.y22{bottom:419.430000px;}
.yd8{bottom:419.610000px;}
.y193{bottom:419.790000px;}
.y6b{bottom:420.690000px;}
.y1bd{bottom:420.870000px;}
.y26{bottom:427.890000px;}
.y17a{bottom:428.610000px;}
.y1e7{bottom:428.790000px;}
.y21{bottom:437.250000px;}
.yd7{bottom:437.610000px;}
.ya3{bottom:438.510000px;}
.y6a{bottom:438.690000px;}
.yf8{bottom:439.245000px;}
.y179{bottom:446.655000px;}
.y20{bottom:454.755000px;}
.yd6{bottom:455.475000px;}
.y192{bottom:455.655000px;}
.ya2{bottom:456.375000px;}
.y69{bottom:456.555000px;}
.y1bc{bottom:456.735000px;}
.y178{bottom:464.475000px;}
.y1e6{bottom:464.655000px;}
.yf7{bottom:466.995000px;}
.yd5{bottom:473.295000px;}
.y191{bottom:473.475000px;}
.ya1{bottom:474.195000px;}
.y68{bottom:474.375000px;}
.y1bb{bottom:474.555000px;}
.y177{bottom:482.295000px;}
.y1e5{bottom:482.475000px;}
.y1f{bottom:490.575000px;}
.y1f6{bottom:490.935000px;}
.yd4{bottom:491.115000px;}
.y190{bottom:491.295000px;}
.y126{bottom:491.475000px;}
.ya0{bottom:492.015000px;}
.y67{bottom:492.195000px;}
.y1ba{bottom:492.375000px;}
.y176{bottom:500.115000px;}
.y1e4{bottom:500.295000px;}
.y1e{bottom:508.395000px;}
.yd3{bottom:508.935000px;}
.y18f{bottom:509.115000px;}
.y15f{bottom:509.475000px;}
.y9f{bottom:509.835000px;}
.y66{bottom:510.015000px;}
.y1b9{bottom:510.195000px;}
.yf5{bottom:512.355000px;}
.y175{bottom:517.935000px;}
.y1e3{bottom:518.115000px;}
.yd2{bottom:526.935000px;}
.y65{bottom:527.835000px;}
.y1d{bottom:528.015000px;}
.y174{bottom:535.575000px;}
.y1e2{bottom:535.935000px;}
.y15e{bottom:536.835000px;}
.yf4{bottom:540.255000px;}
.yd1{bottom:544.755000px;}
.y18e{bottom:544.935000px;}
.y9e{bottom:545.655000px;}
.y64{bottom:545.835000px;}
.y1c{bottom:551.775000px;}
.y1e1{bottom:553.935000px;}
.y15d{bottom:554.655000px;}
.yd0{bottom:562.575000px;}
.y173{bottom:562.755000px;}
.y9d{bottom:563.475000px;}
.y63{bottom:563.655000px;}
.y1b8{bottom:563.835000px;}
.yf3{bottom:567.975000px;}
.y1e0{bottom:571.755000px;}
.y15c{bottom:572.475000px;}
.y121{bottom:572.655000px;}
.y1b{bottom:575.535000px;}
.ycf{bottom:580.395000px;}
.y172{bottom:580.575000px;}
.y9c{bottom:581.295000px;}
.y62{bottom:581.475000px;}
.y1b7{bottom:581.655000px;}
.y1df{bottom:589.575000px;}
.y15b{bottom:590.295000px;}
.yf1{bottom:595.875000px;}
.y171{bottom:598.395000px;}
.y9b{bottom:599.115000px;}
.y61{bottom:599.295000px;}
.y1b6{bottom:599.475000px;}
.y1a{bottom:601.815000px;}
.yce{bottom:607.215000px;}
.y1de{bottom:607.395000px;}
.y15a{bottom:608.115000px;}
.y170{bottom:616.215000px;}
.y60{bottom:617.115000px;}
.y1b5{bottom:617.295000px;}
.ycd{bottom:625.035000px;}
.y1dd{bottom:625.215000px;}
.y159{bottom:626.115000px;}
.y19{bottom:632.595000px;}
.y16f{bottom:634.035000px;}
.y9a{bottom:634.935000px;}
.y5f{bottom:635.115000px;}
.yf0{bottom:641.235000px;}
.ycc{bottom:643.035000px;}
.y158{bottom:643.935000px;}
.y16e{bottom:652.035000px;}
.y99{bottom:652.395000px;}
.y1b4{bottom:653.115000px;}
.ycb{bottom:660.855000px;}
.y1dc{bottom:661.035000px;}
.y157{bottom:661.755000px;}
.y5e{bottom:661.935000px;}
.yee{bottom:668.955000px;}
.y16d{bottom:669.855000px;}
.y98{bottom:670.215000px;}
.y1b3{bottom:670.935000px;}
.yca{bottom:678.705000px;}
.y1db{bottom:678.885000px;}
.y156{bottom:679.605000px;}
.y5d{bottom:679.785000px;}
.y18{bottom:681.405000px;}
.y16c{bottom:687.705000px;}
.y97{bottom:688.065000px;}
.y1b2{bottom:688.785000px;}
.y118{bottom:689.685000px;}
.yc9{bottom:696.525000px;}
.y1da{bottom:696.705000px;}
.yec{bottom:696.885000px;}
.y155{bottom:697.425000px;}
.y5c{bottom:697.605000px;}
.y16b{bottom:705.525000px;}
.y1b1{bottom:706.605000px;}
.y96{bottom:708.225000px;}
.yc8{bottom:714.345000px;}
.y1d9{bottom:714.525000px;}
.y154{bottom:715.245000px;}
.y5b{bottom:715.425000px;}
.y16a{bottom:723.345000px;}
.y1b0{bottom:724.425000px;}
.yeb{bottom:724.785000px;}
.y17{bottom:730.005000px;}
.yc7{bottom:732.165000px;}
.y1d8{bottom:732.345000px;}
.y5a{bottom:733.245000px;}
.y95{bottom:741.165000px;}
.y1af{bottom:742.245000px;}
.yc6{bottom:750.165000px;}
.y153{bottom:751.065000px;}
.y59{bottom:751.245000px;}
.ye9{bottom:752.325000px;}
.y94{bottom:758.985000px;}
.y169{bottom:759.165000px;}
.y1ae{bottom:760.245000px;}
.yc5{bottom:767.985000px;}
.y1d7{bottom:768.165000px;}
.y152{bottom:768.885000px;}
.y58{bottom:769.065000px;}
.y93{bottom:776.805000px;}
.y168{bottom:776.985000px;}
.y1ad{bottom:778.065000px;}
.y16{bottom:781.305000px;}
.ye8{bottom:785.445000px;}
.y1d6{bottom:785.985000px;}
.y151{bottom:786.705000px;}
.y57{bottom:786.885000px;}
.y92{bottom:794.625000px;}
.yc4{bottom:794.805000px;}
.y1ac{bottom:795.885000px;}
.y1d5{bottom:803.805000px;}
.y150{bottom:804.525000px;}
.y56{bottom:804.705000px;}
.y15{bottom:809.205000px;}
.y91{bottom:812.445000px;}
.yc3{bottom:812.625000px;}
.y1ab{bottom:813.705000px;}
.y1d4{bottom:821.625000px;}
.y14f{bottom:822.345000px;}
.y55{bottom:822.525000px;}
.y90{bottom:830.445000px;}
.y1aa{bottom:831.525000px;}
.y1d3{bottom:839.445000px;}
.y54{bottom:840.345000px;}
.y115{bottom:842.145000px;}
.y8f{bottom:848.265000px;}
.yc2{bottom:848.445000px;}
.y1a9{bottom:849.345000px;}
.y14{bottom:855.285000px;}
.y1d2{bottom:857.445000px;}
.y14e{bottom:858.165000px;}
.y53{bottom:858.345000px;}
.yc1{bottom:866.265000px;}
.y1a8{bottom:867.345000px;}
.y8e{bottom:875.085000px;}
.y1d1{bottom:875.265000px;}
.y14d{bottom:875.985000px;}
.y52{bottom:876.165000px;}
.y13{bottom:878.145000px;}
.yc0{bottom:884.085000px;}
.y1a7{bottom:885.165000px;}
.y8d{bottom:892.905000px;}
.y1d0{bottom:893.085000px;}
.y14c{bottom:893.805000px;}
.y51{bottom:893.985000px;}
.y12{bottom:899.745000px;}
.ybf{bottom:901.905000px;}
.y1a6{bottom:902.985000px;}
.y8c{bottom:910.770000px;}
.y1cf{bottom:910.950000px;}
.y14b{bottom:911.670000px;}
.y1a4{bottom:919.410000px;}
.ybe{bottom:919.770000px;}
.y114{bottom:920.130000px;}
.y50{bottom:920.850000px;}
.y11{bottom:921.930000px;}
.y8b{bottom:928.590000px;}
.y1ce{bottom:928.770000px;}
.y14a{bottom:929.670000px;}
.ybd{bottom:937.590000px;}
.y113{bottom:937.950000px;}
.y4f{bottom:938.670000px;}
.y10{bottom:944.790000px;}
.y8a{bottom:946.590000px;}
.y149{bottom:947.490000px;}
.ybc{bottom:955.590000px;}
.y112{bottom:955.770000px;}
.y4e{bottom:956.670000px;}
.y1a3{bottom:964.590000px;}
.y148{bottom:965.310000px;}
.yf{bottom:966.930000px;}
.y89{bottom:973.410000px;}
.y111{bottom:973.770000px;}
.y4d{bottom:974.490000px;}
.y1a2{bottom:982.410000px;}
.ybb{bottom:990.870000px;}
.y88{bottom:991.230000px;}
.y147{bottom:992.130000px;}
.y4c{bottom:992.310000px;}
.y10f{bottom:995.730000px;}
.y1a1{bottom:1000.230000px;}
.yba{bottom:1008.690000px;}
.y87{bottom:1009.050000px;}
.y4b{bottom:1010.130000px;}
.ye{bottom:1011.570000px;}
.y18d{bottom:1018.050000px;}
.y146{bottom:1018.950000px;}
.yd{bottom:1023.630000px;}
.y10e{bottom:1024.530000px;}
.y86{bottom:1026.870000px;}
.y4a{bottom:1027.950000px;}
.yc{bottom:1035.690000px;}
.yb9{bottom:1035.870000px;}
.y145{bottom:1036.770000px;}
.y85{bottom:1044.870000px;}
.y49{bottom:1045.770000px;}
.yb{bottom:1047.750000px;}
.y10d{bottom:1052.070000px;}
.yb8{bottom:1053.870000px;}
.y144{bottom:1054.770000px;}
.ya{bottom:1061.970000px;}
.y84{bottom:1062.690000px;}
.y48{bottom:1063.770000px;}
.yb7{bottom:1071.690000px;}
.y143{bottom:1074.570000px;}
.y10c{bottom:1079.970000px;}
.y83{bottom:1080.510000px;}
.y47{bottom:1081.590000px;}
.y9{bottom:1087.170000px;}
.yb6{bottom:1089.510000px;}
.y82{bottom:1098.330000px;}
.y46{bottom:1099.410000px;}
.yb5{bottom:1107.330000px;}
.y10b{bottom:1107.870000px;}
.y81{bottom:1116.150000px;}
.y8{bottom:1116.870000px;}
.y45{bottom:1117.230000px;}
.yb4{bottom:1125.150000px;}
.y167{bottom:1133.610000px;}
.y80{bottom:1133.970000px;}
.y44{bottom:1135.050000px;}
.y109{bottom:1135.410000px;}
.yb3{bottom:1142.970000px;}
.y7f{bottom:1152.000000px;}
.y43{bottom:1153.080000px;}
.yb2{bottom:1161.000000px;}
.y107{bottom:1163.340000px;}
.y7{bottom:1165.860000px;}
.y42{bottom:1170.900000px;}
.y7e{bottom:1178.820000px;}
.y41{bottom:1190.700000px;}
.y7d{bottom:1196.640000px;}
.y1{bottom:1215.000000px;}
.h19{height:26.805000px;}
.h20{height:26.815500px;}
.h16{height:26.820000px;}
.h1b{height:26.985000px;}
.h17{height:27.000000px;}
.h1d{height:27.021000px;}
.h18{height:27.030000px;}
.h1e{height:27.036000px;}
.h1c{height:27.165000px;}
.h1f{height:27.175500px;}
.h15{height:27.180000px;}
.h22{height:27.202500px;}
.h23{height:28.080000px;}
.h3{height:31.135500px;}
.h8{height:40.985156px;}
.h2a{height:44.507812px;}
.h1a{height:44.625000px;}
.h21{height:44.820000px;}
.h13{height:48.410156px;}
.h29{height:52.971680px;}
.h4{height:52.998047px;}
.hf{height:54.421875px;}
.h2b{height:55.503491px;}
.h14{height:56.214844px;}
.h12{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.hd{height:66.757500px;}
.he{height:72.562500px;}
.h11{height:78.367500px;}
.h26{height:80.445000px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h28{height:98.265000px;}
.h27{height:98.301000px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h25{height:116.130000px;}
.h24{height:151.740000px;}
.h10{height:325.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:46.425000px;}
.wb{width:46.476000px;}
.wa{width:66.600000px;}
.w6{width:66.801000px;}
.w3{width:80.310000px;}
.wd{width:92.362500px;}
.we{width:94.851000px;}
.w9{width:112.162500px;}
.w5{width:112.305000px;}
.wc{width:133.380000px;}
.w8{width:133.590000px;}
.wf{width:173.190000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.560000px;}
.x6{left:8.640000px;}
.x14{left:10.800000px;}
.x1d{left:11.880000px;}
.x26{left:13.854000px;}
.x2a{left:16.014000px;}
.x36{left:17.094000px;}
.x2c{left:18.354000px;}
.x2e{left:20.334000px;}
.x2d{left:23.754000px;}
.x30{left:25.014000px;}
.x34{left:26.634000px;}
.x35{left:29.565000px;}
.x2f{left:31.185000px;}
.x33{left:32.265000px;}
.x1f{left:33.300000px;}
.x2b{left:35.634000px;}
.x32{left:36.895500px;}
.x13{left:39.240000px;}
.x29{left:41.035500px;}
.x2{left:45.364500px;}
.x15{left:50.040000px;}
.x1{left:54.000000px;}
.x20{left:56.164500px;}
.x31{left:58.545000px;}
.x28{left:61.605000px;}
.x18{left:81.000000px;}
.xd{left:89.676000px;}
.x19{left:108.036000px;}
.x25{left:139.536000px;}
.x10{left:160.050000px;}
.x21{left:169.230000px;}
.xe{left:195.330000px;}
.x3{left:222.370500px;}
.x27{left:235.110000px;}
.x23{left:236.730000px;}
.xa{left:268.815000px;}
.x4{left:271.330500px;}
.x24{left:283.935000px;}
.xb{left:287.175000px;}
.x8{left:305.175000px;}
.x11{left:314.355000px;}
.x9{left:364.395000px;}
.xc{left:378.795000px;}
.xf{left:389.055000px;}
.x7{left:446.505000px;}
.x12{left:473.505000px;}
.x1a{left:475.680000px;}
.x16{left:500.505000px;}
.x17{left:527.505000px;}
.x1b{left:588.720000px;}
.x1c{left:656.250000px;}
.x1e{left:703.410000px;}
.x5{left:767.490000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.624000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.656000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls12{letter-spacing:22.496000pt;}
.ls8{letter-spacing:46.816000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.288000pt;}
.ws9{word-spacing:-12.192000pt;}
.ws8{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.808000pt;}
.wse{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.376000pt;}
.wsa{word-spacing:-11.264000pt;}
.ws5{word-spacing:0.000000pt;}
._28{margin-left:-2.042667pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.658667pt;}
._6{width:3.278507pt;}
._7{width:4.619733pt;}
._8{width:6.108800pt;}
._9{width:7.265493pt;}
._16{width:8.162347pt;}
._a{width:9.124693pt;}
._4{width:10.305280pt;}
._5{width:11.225600pt;}
._b{width:12.375253pt;}
._f{width:14.016000pt;}
._10{width:15.648000pt;}
._15{width:17.136000pt;}
._14{width:18.048000pt;}
._12{width:19.392000pt;}
._13{width:20.421333pt;}
._11{width:21.648000pt;}
._2a{width:22.677333pt;}
._17{width:23.616000pt;}
._18{width:24.645333pt;}
._22{width:26.016000pt;}
._21{width:27.360000pt;}
._1e{width:28.848000pt;}
._e{width:29.808000pt;}
._19{width:31.440000pt;}
._1d{width:32.640000pt;}
._27{width:34.224000pt;}
._26{width:35.184000pt;}
._29{width:36.720000pt;}
._2d{width:37.872000pt;}
._2e{width:38.976000pt;}
._d{width:39.888000pt;}
._c{width:40.848000pt;}
._25{width:41.925333pt;}
._2c{width:44.512000pt;}
._30{width:45.674667pt;}
._2f{width:46.848000pt;}
._32{width:48.432000pt;}
._33{width:49.584000pt;}
._1c{width:51.120000pt;}
._31{width:52.512000pt;}
._20{width:53.856000pt;}
._1f{width:54.912000pt;}
._3{width:56.736427pt;}
._2b{width:57.791573pt;}
._23{width:62.640000pt;}
._24{width:63.600000pt;}
._36{width:65.904000pt;}
._34{width:83.520000pt;}
._1a{width:86.688000pt;}
._1b{width:87.792000pt;}
._3c{width:93.381333pt;}
._3b{width:94.512000pt;}
._39{width:102.432000pt;}
._3d{width:112.416000pt;}
._3e{width:113.472000pt;}
._3f{width:116.640000pt;}
._40{width:117.600000pt;}
._38{width:121.104000pt;}
._37{width:122.688000pt;}
._3a{width:130.992000pt;}
._35{width:287.136000pt;}
._2{width:1039.626667pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.720000pt;}
.y136{bottom:8.626667pt;}
.y117{bottom:8.640000pt;}
.yfd{bottom:8.946667pt;}
.yea{bottom:8.960000pt;}
.y131{bottom:9.106667pt;}
.yed{bottom:9.120000pt;}
.yef{bottom:9.146667pt;}
.yfa{bottom:9.266667pt;}
.yf6{bottom:9.280000pt;}
.y10a{bottom:9.306667pt;}
.y110{bottom:10.080000pt;}
.y5{bottom:13.920000pt;}
.y3{bottom:16.800000pt;}
.y135{bottom:24.626667pt;}
.y116{bottom:24.640000pt;}
.yf2{bottom:24.800000pt;}
.y130{bottom:24.946667pt;}
.y108{bottom:24.960000pt;}
.y6{bottom:35.360000pt;}
.y12c{bottom:40.466667pt;}
.y128{bottom:40.480000pt;}
.y120{bottom:40.640000pt;}
.y12f{bottom:40.786667pt;}
.y125{bottom:40.800000pt;}
.y2{bottom:53.920000pt;}
.y134{bottom:56.306667pt;}
.y127{bottom:56.320000pt;}
.y12b{bottom:56.346667pt;}
.y11f{bottom:56.480000pt;}
.y138{bottom:56.626667pt;}
.y124{bottom:56.640000pt;}
.y12e{bottom:56.666667pt;}
.y3e{bottom:61.946667pt;}
.y133{bottom:72.146667pt;}
.y122{bottom:72.160000pt;}
.y12a{bottom:72.186667pt;}
.y11e{bottom:72.320000pt;}
.y137{bottom:72.466667pt;}
.y123{bottom:72.480000pt;}
.y12d{bottom:72.506667pt;}
.y3d{bottom:79.546667pt;}
.y11b{bottom:88.000000pt;}
.y11d{bottom:88.320000pt;}
.y142{bottom:90.560000pt;}
.y106{bottom:93.920000pt;}
.y18c{bottom:95.360000pt;}
.y1f5{bottom:95.520000pt;}
.yb1{bottom:96.000000pt;}
.y7c{bottom:96.160000pt;}
.y3c{bottom:97.146667pt;}
.y11a{bottom:103.840000pt;}
.y166{bottom:104.000000pt;}
.y11c{bottom:104.160000pt;}
.y1cd{bottom:104.320000pt;}
.y141{bottom:106.400000pt;}
.y31{bottom:109.920000pt;}
.y18b{bottom:111.200000pt;}
.y1f4{bottom:111.360000pt;}
.y7b{bottom:112.000000pt;}
.y3b{bottom:114.746667pt;}
.y105{bottom:118.400000pt;}
.y119{bottom:119.680000pt;}
.ye7{bottom:120.000000pt;}
.y1cc{bottom:120.160000pt;}
.y18a{bottom:127.200000pt;}
.y1a0{bottom:127.680000pt;}
.yb0{bottom:127.840000pt;}
.y7a{bottom:128.000000pt;}
.y140{bottom:130.240000pt;}
.y3a{bottom:132.346667pt;}
.y30{bottom:133.760000pt;}
.ye6{bottom:135.840000pt;}
.y1cb{bottom:136.000000pt;}
.y189{bottom:143.040000pt;}
.y104{bottom:143.200000pt;}
.yaf{bottom:143.680000pt;}
.y79{bottom:143.840000pt;}
.y13f{bottom:146.080000pt;}
.y39{bottom:149.946667pt;}
.ye5{bottom:151.680000pt;}
.y19f{bottom:151.840000pt;}
.y1ca{bottom:152.000000pt;}
.y2f{bottom:157.600000pt;}
.y188{bottom:158.880000pt;}
.y1f3{bottom:159.040000pt;}
.yae{bottom:159.520000pt;}
.y78{bottom:159.680000pt;}
.y13e{bottom:161.920000pt;}
.ye4{bottom:167.520000pt;}
.y19e{bottom:167.680000pt;}
.y38{bottom:167.706667pt;}
.y1c9{bottom:167.840000pt;}
.y103{bottom:168.000000pt;}
.y187{bottom:174.720000pt;}
.y1f2{bottom:174.880000pt;}
.yad{bottom:175.360000pt;}
.y77{bottom:175.520000pt;}
.y13d{bottom:177.760000pt;}
.y2e{bottom:181.600000pt;}
.ye3{bottom:183.386667pt;}
.y19d{bottom:183.546667pt;}
.y1c8{bottom:183.706667pt;}
.y37{bottom:185.306667pt;}
.y32{bottom:190.560000pt;}
.y186{bottom:190.586667pt;}
.y1f1{bottom:190.746667pt;}
.y76{bottom:191.386667pt;}
.y102{bottom:192.680000pt;}
.y13c{bottom:193.786667pt;}
.ye2{bottom:199.386667pt;}
.y1c7{bottom:199.546667pt;}
.y36{bottom:202.906667pt;}
.y2d{bottom:205.466667pt;}
.y185{bottom:206.426667pt;}
.y1f0{bottom:206.586667pt;}
.yac{bottom:207.226667pt;}
.y75{bottom:207.386667pt;}
.y40{bottom:208.666667pt;}
.y13b{bottom:209.626667pt;}
.ye1{bottom:214.906667pt;}
.y165{bottom:215.226667pt;}
.y19c{bottom:215.386667pt;}
.y101{bottom:217.480000pt;}
.y35{bottom:220.546667pt;}
.y184{bottom:222.426667pt;}
.yab{bottom:223.066667pt;}
.y74{bottom:223.226667pt;}
.y13a{bottom:225.466667pt;}
.y2c{bottom:229.306667pt;}
.y164{bottom:231.066667pt;}
.y19b{bottom:231.226667pt;}
.y1c6{bottom:231.386667pt;}
.ye0{bottom:232.826667pt;}
.y3f{bottom:234.746667pt;}
.y34{bottom:238.146667pt;}
.y183{bottom:238.266667pt;}
.y1ef{bottom:238.426667pt;}
.yaa{bottom:238.906667pt;}
.y73{bottom:239.066667pt;}
.y139{bottom:240.986667pt;}
.y100{bottom:242.280000pt;}
.y163{bottom:246.906667pt;}
.y19a{bottom:247.066667pt;}
.y1c5{bottom:247.226667pt;}
.y2b{bottom:253.146667pt;}
.y182{bottom:254.106667pt;}
.y1ee{bottom:254.266667pt;}
.ya9{bottom:254.746667pt;}
.y72{bottom:254.906667pt;}
.y132{bottom:260.840000pt;}
.ydf{bottom:261.946667pt;}
.y162{bottom:262.746667pt;}
.y199{bottom:262.906667pt;}
.y1c4{bottom:263.066667pt;}
.y33{bottom:265.186667pt;}
.yff{bottom:266.760000pt;}
.y181{bottom:269.946667pt;}
.y1ed{bottom:270.106667pt;}
.ya8{bottom:270.586667pt;}
.y71{bottom:270.746667pt;}
.y2a{bottom:276.986667pt;}
.yde{bottom:277.786667pt;}
.y161{bottom:278.586667pt;}
.y1c3{bottom:278.906667pt;}
.y198{bottom:280.506667pt;}
.y180{bottom:285.786667pt;}
.y1ec{bottom:285.946667pt;}
.y70{bottom:286.586667pt;}
.yfe{bottom:291.560000pt;}
.ydd{bottom:293.786667pt;}
.y160{bottom:294.586667pt;}
.y1c2{bottom:294.746667pt;}
.y25{bottom:300.986667pt;}
.y17f{bottom:301.786667pt;}
.y6f{bottom:302.586667pt;}
.y29{bottom:308.826667pt;}
.ydc{bottom:309.626667pt;}
.y197{bottom:309.786667pt;}
.ya7{bottom:310.426667pt;}
.y1c1{bottom:310.586667pt;}
.yfc{bottom:316.360000pt;}
.y17e{bottom:317.626667pt;}
.y1eb{bottom:317.786667pt;}
.y6e{bottom:318.426667pt;}
.y24{bottom:324.826667pt;}
.ydb{bottom:325.466667pt;}
.y196{bottom:325.626667pt;}
.ya6{bottom:326.266667pt;}
.y1c0{bottom:326.586667pt;}
.y28{bottom:332.666667pt;}
.y17d{bottom:333.466667pt;}
.y1ea{bottom:333.626667pt;}
.y6d{bottom:334.266667pt;}
.yfb{bottom:340.840000pt;}
.yda{bottom:341.306667pt;}
.y195{bottom:341.466667pt;}
.ya5{bottom:342.106667pt;}
.y1bf{bottom:342.426667pt;}
.y23{bottom:348.666667pt;}
.y129{bottom:348.840000pt;}
.y1a5{bottom:348.986667pt;}
.y17c{bottom:349.306667pt;}
.y1e9{bottom:349.466667pt;}
.y6c{bottom:350.106667pt;}
.y27{bottom:356.506667pt;}
.yd9{bottom:357.146667pt;}
.y194{bottom:357.306667pt;}
.ya4{bottom:357.946667pt;}
.y1be{bottom:358.266667pt;}
.y17b{bottom:365.146667pt;}
.y1e8{bottom:365.306667pt;}
.yf9{bottom:365.640000pt;}
.y22{bottom:372.826667pt;}
.yd8{bottom:372.986667pt;}
.y193{bottom:373.146667pt;}
.y6b{bottom:373.946667pt;}
.y1bd{bottom:374.106667pt;}
.y26{bottom:380.346667pt;}
.y17a{bottom:380.986667pt;}
.y1e7{bottom:381.146667pt;}
.y21{bottom:388.666667pt;}
.yd7{bottom:388.986667pt;}
.ya3{bottom:389.786667pt;}
.y6a{bottom:389.946667pt;}
.yf8{bottom:390.440000pt;}
.y179{bottom:397.026667pt;}
.y20{bottom:404.226667pt;}
.yd6{bottom:404.866667pt;}
.y192{bottom:405.026667pt;}
.ya2{bottom:405.666667pt;}
.y69{bottom:405.826667pt;}
.y1bc{bottom:405.986667pt;}
.y178{bottom:412.866667pt;}
.y1e6{bottom:413.026667pt;}
.yf7{bottom:415.106667pt;}
.yd5{bottom:420.706667pt;}
.y191{bottom:420.866667pt;}
.ya1{bottom:421.506667pt;}
.y68{bottom:421.666667pt;}
.y1bb{bottom:421.826667pt;}
.y177{bottom:428.706667pt;}
.y1e5{bottom:428.866667pt;}
.y1f{bottom:436.066667pt;}
.y1f6{bottom:436.386667pt;}
.yd4{bottom:436.546667pt;}
.y190{bottom:436.706667pt;}
.y126{bottom:436.866667pt;}
.ya0{bottom:437.346667pt;}
.y67{bottom:437.506667pt;}
.y1ba{bottom:437.666667pt;}
.y176{bottom:444.546667pt;}
.y1e4{bottom:444.706667pt;}
.y1e{bottom:451.906667pt;}
.yd3{bottom:452.386667pt;}
.y18f{bottom:452.546667pt;}
.y15f{bottom:452.866667pt;}
.y9f{bottom:453.186667pt;}
.y66{bottom:453.346667pt;}
.y1b9{bottom:453.506667pt;}
.yf5{bottom:455.426667pt;}
.y175{bottom:460.386667pt;}
.y1e3{bottom:460.546667pt;}
.yd2{bottom:468.386667pt;}
.y65{bottom:469.186667pt;}
.y1d{bottom:469.346667pt;}
.y174{bottom:476.066667pt;}
.y1e2{bottom:476.386667pt;}
.y15e{bottom:477.186667pt;}
.yf4{bottom:480.226667pt;}
.yd1{bottom:484.226667pt;}
.y18e{bottom:484.386667pt;}
.y9e{bottom:485.026667pt;}
.y64{bottom:485.186667pt;}
.y1c{bottom:490.466667pt;}
.y1e1{bottom:492.386667pt;}
.y15d{bottom:493.026667pt;}
.yd0{bottom:500.066667pt;}
.y173{bottom:500.226667pt;}
.y9d{bottom:500.866667pt;}
.y63{bottom:501.026667pt;}
.y1b8{bottom:501.186667pt;}
.yf3{bottom:504.866667pt;}
.y1e0{bottom:508.226667pt;}
.y15c{bottom:508.866667pt;}
.y121{bottom:509.026667pt;}
.y1b{bottom:511.586667pt;}
.ycf{bottom:515.906667pt;}
.y172{bottom:516.066667pt;}
.y9c{bottom:516.706667pt;}
.y62{bottom:516.866667pt;}
.y1b7{bottom:517.026667pt;}
.y1df{bottom:524.066667pt;}
.y15b{bottom:524.706667pt;}
.yf1{bottom:529.666667pt;}
.y171{bottom:531.906667pt;}
.y9b{bottom:532.546667pt;}
.y61{bottom:532.706667pt;}
.y1b6{bottom:532.866667pt;}
.y1a{bottom:534.946667pt;}
.yce{bottom:539.746667pt;}
.y1de{bottom:539.906667pt;}
.y15a{bottom:540.546667pt;}
.y170{bottom:547.746667pt;}
.y60{bottom:548.546667pt;}
.y1b5{bottom:548.706667pt;}
.ycd{bottom:555.586667pt;}
.y1dd{bottom:555.746667pt;}
.y159{bottom:556.546667pt;}
.y19{bottom:562.306667pt;}
.y16f{bottom:563.586667pt;}
.y9a{bottom:564.386667pt;}
.y5f{bottom:564.546667pt;}
.yf0{bottom:569.986667pt;}
.ycc{bottom:571.586667pt;}
.y158{bottom:572.386667pt;}
.y16e{bottom:579.586667pt;}
.y99{bottom:579.906667pt;}
.y1b4{bottom:580.546667pt;}
.ycb{bottom:587.426667pt;}
.y1dc{bottom:587.586667pt;}
.y157{bottom:588.226667pt;}
.y5e{bottom:588.386667pt;}
.yee{bottom:594.626667pt;}
.y16d{bottom:595.426667pt;}
.y98{bottom:595.746667pt;}
.y1b3{bottom:596.386667pt;}
.yca{bottom:603.293333pt;}
.y1db{bottom:603.453333pt;}
.y156{bottom:604.093333pt;}
.y5d{bottom:604.253333pt;}
.y18{bottom:605.693333pt;}
.y16c{bottom:611.293333pt;}
.y97{bottom:611.613333pt;}
.y1b2{bottom:612.253333pt;}
.y118{bottom:613.053333pt;}
.yc9{bottom:619.133333pt;}
.y1da{bottom:619.293333pt;}
.yec{bottom:619.453333pt;}
.y155{bottom:619.933333pt;}
.y5c{bottom:620.093333pt;}
.y16b{bottom:627.133333pt;}
.y1b1{bottom:628.093333pt;}
.y96{bottom:629.533333pt;}
.yc8{bottom:634.973333pt;}
.y1d9{bottom:635.133333pt;}
.y154{bottom:635.773333pt;}
.y5b{bottom:635.933333pt;}
.y16a{bottom:642.973333pt;}
.y1b0{bottom:643.933333pt;}
.yeb{bottom:644.253333pt;}
.y17{bottom:648.893333pt;}
.yc7{bottom:650.813333pt;}
.y1d8{bottom:650.973333pt;}
.y5a{bottom:651.773333pt;}
.y95{bottom:658.813333pt;}
.y1af{bottom:659.773333pt;}
.yc6{bottom:666.813333pt;}
.y153{bottom:667.613333pt;}
.y59{bottom:667.773333pt;}
.ye9{bottom:668.733333pt;}
.y94{bottom:674.653333pt;}
.y169{bottom:674.813333pt;}
.y1ae{bottom:675.773333pt;}
.yc5{bottom:682.653333pt;}
.y1d7{bottom:682.813333pt;}
.y152{bottom:683.453333pt;}
.y58{bottom:683.613333pt;}
.y93{bottom:690.493333pt;}
.y168{bottom:690.653333pt;}
.y1ad{bottom:691.613333pt;}
.y16{bottom:694.493333pt;}
.ye8{bottom:698.173333pt;}
.y1d6{bottom:698.653333pt;}
.y151{bottom:699.293333pt;}
.y57{bottom:699.453333pt;}
.y92{bottom:706.333333pt;}
.yc4{bottom:706.493333pt;}
.y1ac{bottom:707.453333pt;}
.y1d5{bottom:714.493333pt;}
.y150{bottom:715.133333pt;}
.y56{bottom:715.293333pt;}
.y15{bottom:719.293333pt;}
.y91{bottom:722.173333pt;}
.yc3{bottom:722.333333pt;}
.y1ab{bottom:723.293333pt;}
.y1d4{bottom:730.333333pt;}
.y14f{bottom:730.973333pt;}
.y55{bottom:731.133333pt;}
.y90{bottom:738.173333pt;}
.y1aa{bottom:739.133333pt;}
.y1d3{bottom:746.173333pt;}
.y54{bottom:746.973333pt;}
.y115{bottom:748.573333pt;}
.y8f{bottom:754.013333pt;}
.yc2{bottom:754.173333pt;}
.y1a9{bottom:754.973333pt;}
.y14{bottom:760.253333pt;}
.y1d2{bottom:762.173333pt;}
.y14e{bottom:762.813333pt;}
.y53{bottom:762.973333pt;}
.yc1{bottom:770.013333pt;}
.y1a8{bottom:770.973333pt;}
.y8e{bottom:777.853333pt;}
.y1d1{bottom:778.013333pt;}
.y14d{bottom:778.653333pt;}
.y52{bottom:778.813333pt;}
.y13{bottom:780.573333pt;}
.yc0{bottom:785.853333pt;}
.y1a7{bottom:786.813333pt;}
.y8d{bottom:793.693333pt;}
.y1d0{bottom:793.853333pt;}
.y14c{bottom:794.493333pt;}
.y51{bottom:794.653333pt;}
.y12{bottom:799.773333pt;}
.ybf{bottom:801.693333pt;}
.y1a6{bottom:802.653333pt;}
.y8c{bottom:809.573333pt;}
.y1cf{bottom:809.733333pt;}
.y14b{bottom:810.373333pt;}
.y1a4{bottom:817.253333pt;}
.ybe{bottom:817.573333pt;}
.y114{bottom:817.893333pt;}
.y50{bottom:818.533333pt;}
.y11{bottom:819.493333pt;}
.y8b{bottom:825.413333pt;}
.y1ce{bottom:825.573333pt;}
.y14a{bottom:826.373333pt;}
.ybd{bottom:833.413333pt;}
.y113{bottom:833.733333pt;}
.y4f{bottom:834.373333pt;}
.y10{bottom:839.813333pt;}
.y8a{bottom:841.413333pt;}
.y149{bottom:842.213333pt;}
.ybc{bottom:849.413333pt;}
.y112{bottom:849.573333pt;}
.y4e{bottom:850.373333pt;}
.y1a3{bottom:857.413333pt;}
.y148{bottom:858.053333pt;}
.yf{bottom:859.493333pt;}
.y89{bottom:865.253333pt;}
.y111{bottom:865.573333pt;}
.y4d{bottom:866.213333pt;}
.y1a2{bottom:873.253333pt;}
.ybb{bottom:880.773333pt;}
.y88{bottom:881.093333pt;}
.y147{bottom:881.893333pt;}
.y4c{bottom:882.053333pt;}
.y10f{bottom:885.093333pt;}
.y1a1{bottom:889.093333pt;}
.yba{bottom:896.613333pt;}
.y87{bottom:896.933333pt;}
.y4b{bottom:897.893333pt;}
.ye{bottom:899.173333pt;}
.y18d{bottom:904.933333pt;}
.y146{bottom:905.733333pt;}
.yd{bottom:909.893333pt;}
.y10e{bottom:910.693333pt;}
.y86{bottom:912.773333pt;}
.y4a{bottom:913.733333pt;}
.yc{bottom:920.613333pt;}
.yb9{bottom:920.773333pt;}
.y145{bottom:921.573333pt;}
.y85{bottom:928.773333pt;}
.y49{bottom:929.573333pt;}
.yb{bottom:931.333333pt;}
.y10d{bottom:935.173333pt;}
.yb8{bottom:936.773333pt;}
.y144{bottom:937.573333pt;}
.ya{bottom:943.973333pt;}
.y84{bottom:944.613333pt;}
.y48{bottom:945.573333pt;}
.yb7{bottom:952.613333pt;}
.y143{bottom:955.173333pt;}
.y10c{bottom:959.973333pt;}
.y83{bottom:960.453333pt;}
.y47{bottom:961.413333pt;}
.y9{bottom:966.373333pt;}
.yb6{bottom:968.453333pt;}
.y82{bottom:976.293333pt;}
.y46{bottom:977.253333pt;}
.yb5{bottom:984.293333pt;}
.y10b{bottom:984.773333pt;}
.y81{bottom:992.133333pt;}
.y8{bottom:992.773333pt;}
.y45{bottom:993.093333pt;}
.yb4{bottom:1000.133333pt;}
.y167{bottom:1007.653333pt;}
.y80{bottom:1007.973333pt;}
.y44{bottom:1008.933333pt;}
.y109{bottom:1009.253333pt;}
.yb3{bottom:1015.973333pt;}
.y7f{bottom:1024.000000pt;}
.y43{bottom:1024.960000pt;}
.yb2{bottom:1032.000000pt;}
.y107{bottom:1034.080000pt;}
.y7{bottom:1036.320000pt;}
.y42{bottom:1040.800000pt;}
.y7e{bottom:1047.840000pt;}
.y41{bottom:1058.400000pt;}
.y7d{bottom:1063.680000pt;}
.y1{bottom:1080.000000pt;}
.h19{height:23.826667pt;}
.h20{height:23.836000pt;}
.h16{height:23.840000pt;}
.h1b{height:23.986667pt;}
.h17{height:24.000000pt;}
.h1d{height:24.018667pt;}
.h18{height:24.026667pt;}
.h1e{height:24.032000pt;}
.h1c{height:24.146667pt;}
.h1f{height:24.156000pt;}
.h15{height:24.160000pt;}
.h22{height:24.180000pt;}
.h23{height:24.960000pt;}
.h3{height:27.676000pt;}
.h8{height:36.431250pt;}
.h2a{height:39.562500pt;}
.h1a{height:39.666667pt;}
.h21{height:39.840000pt;}
.h13{height:43.031250pt;}
.h29{height:47.085938pt;}
.h4{height:47.109375pt;}
.hf{height:48.375000pt;}
.h2b{height:49.336436pt;}
.h14{height:49.968750pt;}
.h12{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.hd{height:59.340000pt;}
.he{height:64.500000pt;}
.h11{height:69.660000pt;}
.h26{height:71.506667pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h28{height:87.346667pt;}
.h27{height:87.378667pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h25{height:103.226667pt;}
.h24{height:134.880000pt;}
.h10{height:289.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:41.266667pt;}
.wb{width:41.312000pt;}
.wa{width:59.200000pt;}
.w6{width:59.378667pt;}
.w3{width:71.386667pt;}
.wd{width:82.100000pt;}
.we{width:84.312000pt;}
.w9{width:99.700000pt;}
.w5{width:99.826667pt;}
.wc{width:118.560000pt;}
.w8{width:118.746667pt;}
.wf{width:153.946667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.720000pt;}
.x6{left:7.680000pt;}
.x14{left:9.600000pt;}
.x1d{left:10.560000pt;}
.x26{left:12.314667pt;}
.x2a{left:14.234667pt;}
.x36{left:15.194667pt;}
.x2c{left:16.314667pt;}
.x2e{left:18.074667pt;}
.x2d{left:21.114667pt;}
.x30{left:22.234667pt;}
.x34{left:23.674667pt;}
.x35{left:26.280000pt;}
.x2f{left:27.720000pt;}
.x33{left:28.680000pt;}
.x1f{left:29.600000pt;}
.x2b{left:31.674667pt;}
.x32{left:32.796000pt;}
.x13{left:34.880000pt;}
.x29{left:36.476000pt;}
.x2{left:40.324000pt;}
.x15{left:44.480000pt;}
.x1{left:48.000000pt;}
.x20{left:49.924000pt;}
.x31{left:52.040000pt;}
.x28{left:54.760000pt;}
.x18{left:72.000000pt;}
.xd{left:79.712000pt;}
.x19{left:96.032000pt;}
.x25{left:124.032000pt;}
.x10{left:142.266667pt;}
.x21{left:150.426667pt;}
.xe{left:173.626667pt;}
.x3{left:197.662667pt;}
.x27{left:208.986667pt;}
.x23{left:210.426667pt;}
.xa{left:238.946667pt;}
.x4{left:241.182667pt;}
.x24{left:252.386667pt;}
.xb{left:255.266667pt;}
.x8{left:271.266667pt;}
.x11{left:279.426667pt;}
.x9{left:323.906667pt;}
.xc{left:336.706667pt;}
.xf{left:345.826667pt;}
.x7{left:396.893333pt;}
.x12{left:420.893333pt;}
.x1a{left:422.826667pt;}
.x16{left:444.893333pt;}
.x17{left:468.893333pt;}
.x1b{left:523.306667pt;}
.x1c{left:583.333333pt;}
.x1e{left:625.253333pt;}
.x5{left:682.213333pt;}
}




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