
    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_8c588f97c6b13f98fc9f001f.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_d76553fa2a4a7a0761b7a699.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_78f59c4d19fbe12e27cb56f1.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_91eef09c9e09fb00f363b82d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_de49b7467a998370d25ca67c.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_f6df02e0e38e308c52977c4c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4d344c5c842716f0ccd3e9a3.woff2')format("woff");}.ff7{font-family:ff7;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;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls7{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.702000px;}
.lsb{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.334080px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:25.308000px;}
.lsd{letter-spacing:52.668000px;}
.lse{letter-spacing:55.548000px;}
.lsf{letter-spacing:61.308000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-19.457280px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.716000px;}
.wse{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.482000px;}
.wsb{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.906000px;}
.wsc{word-spacing:-12.798000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-2.070240px;}
._0{margin-left:-1.026000px;}
._1{width:1.866000px;}
._9{width:3.666000px;}
._6{width:5.004000px;}
._e{width:6.481680px;}
._d{width:7.812240px;}
._8{width:8.856000px;}
._7{width:9.936000px;}
._f{width:11.175120px;}
._5{width:12.336000px;}
._14{width:14.562000px;}
._3{width:15.570000px;}
._4{width:16.758000px;}
._c{width:18.036000px;}
._a{width:19.332000px;}
._b{width:20.514000px;}
._13{width:22.284000px;}
._19{width:23.328000px;}
._15{width:24.678000px;}
._16{width:26.082000px;}
._1a{width:27.678000px;}
._10{width:28.728000px;}
._11{width:29.778000px;}
._1e{width:30.840000px;}
._12{width:32.724000px;}
._17{width:34.182000px;}
._18{width:35.424000px;}
._1b{width:37.152000px;}
._22{width:38.220240px;}
._20{width:39.528000px;}
._1f{width:40.662000px;}
._32{width:41.958000px;}
._31{width:44.058720px;}
._30{width:45.288000px;}
._45{width:47.610000px;}
._1d{width:49.788000px;}
._1c{width:50.976000px;}
._33{width:52.158240px;}
._38{width:60.696000px;}
._37{width:74.358000px;}
._24{width:84.024000px;}
._23{width:85.212000px;}
._40{width:97.686000px;}
._41{width:99.228000px;}
._28{width:103.410000px;}
._27{width:104.490000px;}
._25{width:119.892000px;}
._47{width:123.444000px;}
._3c{width:135.042240px;}
._3d{width:136.404000px;}
._3e{width:154.008000px;}
._26{width:164.700000px;}
._46{width:171.198000px;}
._36{width:178.740000px;}
._3f{width:188.568000px;}
._2c{width:294.990240px;}
._34{width:296.136000px;}
._2b{width:313.254000px;}
._2a{width:314.280000px;}
._35{width:323.064000px;}
._2e{width:336.546000px;}
._42{width:339.756240px;}
._44{width:345.816000px;}
._3a{width:347.058000px;}
._39{width:348.192000px;}
._2f{width:349.218000px;}
._3b{width:365.850000px;}
._43{width:382.050000px;}
._29{width:925.020000px;}
._2d{width:949.320000px;}
._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;}
.fs9{font-size:59.904000px;}
.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;}
.y13a{bottom:9.705000px;}
.y115{bottom:9.720000px;}
.y13c{bottom:10.065000px;}
.y11b{bottom:10.080000px;}
.y130{bottom:10.110000px;}
.y119{bottom:10.125000px;}
.y125{bottom:10.260000px;}
.y5{bottom:15.660000px;}
.y138{bottom:18.705000px;}
.y113{bottom:18.720000px;}
.y3{bottom:18.900000px;}
.y139{bottom:27.705000px;}
.y114{bottom:27.720000px;}
.y127{bottom:28.440000px;}
.y11e{bottom:37.260000px;}
.y122{bottom:37.440000px;}
.y6{bottom:39.780000px;}
.y12c{bottom:42.330000px;}
.y126{bottom:46.440000px;}
.y12b{bottom:60.150000px;}
.y2{bottom:60.660000px;}
.y117{bottom:64.800000px;}
.y3d{bottom:70.770000px;}
.y3c{bottom:90.570000px;}
.yea{bottom:106.200000px;}
.y140{bottom:106.920000px;}
.y79{bottom:107.100000px;}
.y1f8{bottom:107.460000px;}
.ya6{bottom:108.000000px;}
.y16c{bottom:108.360000px;}
.y10a{bottom:108.540000px;}
.y3b{bottom:110.370000px;}
.y197{bottom:112.860000px;}
.y34{bottom:117.360000px;}
.ybc{bottom:118.620000px;}
.ye9{bottom:124.200000px;}
.y78{bottom:124.920000px;}
.y1a4{bottom:125.100000px;}
.y1f7{bottom:125.280000px;}
.ya5{bottom:126.000000px;}
.y16b{bottom:126.180000px;}
.y109{bottom:126.360000px;}
.y3a{bottom:130.170000px;}
.y196{bottom:130.680000px;}
.y13f{bottom:134.460000px;}
.y33{bottom:135.180000px;}
.ybb{bottom:136.440000px;}
.ye8{bottom:142.020000px;}
.y77{bottom:142.740000px;}
.y1a3{bottom:142.920000px;}
.y1f6{bottom:143.100000px;}
.ya4{bottom:143.820000px;}
.y16a{bottom:144.000000px;}
.y195{bottom:148.680000px;}
.y39{bottom:150.015000px;}
.y32{bottom:153.000000px;}
.yba{bottom:154.440000px;}
.ye7{bottom:159.840000px;}
.y76{bottom:160.560000px;}
.y1a2{bottom:160.740000px;}
.y1f5{bottom:161.100000px;}
.ya3{bottom:161.640000px;}
.y13e{bottom:162.000000px;}
.y108{bottom:164.160000px;}
.y194{bottom:166.500000px;}
.y38{bottom:169.995000px;}
.y1b7{bottom:170.640000px;}
.y31{bottom:170.820000px;}
.yb9{bottom:172.260000px;}
.ye6{bottom:177.660000px;}
.y75{bottom:178.380000px;}
.y1a1{bottom:178.560000px;}
.y1f4{bottom:178.920000px;}
.ya2{bottom:179.460000px;}
.y169{bottom:179.820000px;}
.y193{bottom:184.320000px;}
.y1b6{bottom:188.460000px;}
.y30{bottom:188.820000px;}
.y13d{bottom:189.720000px;}
.y37{bottom:189.795000px;}
.yb8{bottom:190.080000px;}
.ye5{bottom:195.480000px;}
.y74{bottom:196.200000px;}
.y1a0{bottom:196.380000px;}
.y1f3{bottom:196.740000px;}
.y107{bottom:196.920000px;}
.ya1{bottom:197.280000px;}
.y168{bottom:197.640000px;}
.y192{bottom:202.140000px;}
.y1b5{bottom:206.310000px;}
.y2f{bottom:206.670000px;}
.ye4{bottom:213.510000px;}
.y73{bottom:214.230000px;}
.y1f2{bottom:214.590000px;}
.y106{bottom:214.770000px;}
.ya0{bottom:214.950000px;}
.y167{bottom:215.490000px;}
.yb7{bottom:216.930000px;}
.y13b{bottom:217.305000px;}
.y191{bottom:219.990000px;}
.y36{bottom:220.035000px;}
.y1b4{bottom:224.310000px;}
.y2e{bottom:224.490000px;}
.ye3{bottom:231.330000px;}
.y72{bottom:232.050000px;}
.y1f1{bottom:232.410000px;}
.y105{bottom:232.590000px;}
.y166{bottom:233.310000px;}
.y9f{bottom:235.110000px;}
.y190{bottom:237.810000px;}
.y19f{bottom:241.230000px;}
.y1b3{bottom:242.130000px;}
.yb6{bottom:243.390000px;}
.y2d{bottom:244.290000px;}
.y137{bottom:244.845000px;}
.ye2{bottom:249.150000px;}
.y71{bottom:249.870000px;}
.y1f0{bottom:250.230000px;}
.y104{bottom:250.410000px;}
.y165{bottom:251.310000px;}
.y18f{bottom:255.810000px;}
.y19e{bottom:259.050000px;}
.y1b2{bottom:259.950000px;}
.y70{bottom:267.690000px;}
.y9e{bottom:267.870000px;}
.y1ef{bottom:268.230000px;}
.y103{bottom:268.410000px;}
.y164{bottom:269.130000px;}
.yb5{bottom:270.750000px;}
.y18e{bottom:273.630000px;}
.ye1{bottom:275.970000px;}
.y2c{bottom:276.690000px;}
.y19d{bottom:276.870000px;}
.y1b1{bottom:277.770000px;}
.y6f{bottom:285.510000px;}
.y9d{bottom:285.690000px;}
.y1ee{bottom:286.050000px;}
.y102{bottom:286.230000px;}
.y163{bottom:286.950000px;}
.yb4{bottom:288.570000px;}
.y18d{bottom:291.450000px;}
.y2b{bottom:294.690000px;}
.y136{bottom:295.590000px;}
.y35{bottom:297.720000px;}
.ye0{bottom:302.790000px;}
.yb3{bottom:303.150000px;}
.y6e{bottom:303.510000px;}
.y1ed{bottom:303.870000px;}
.y101{bottom:304.050000px;}
.y162{bottom:304.770000px;}
.y18c{bottom:309.270000px;}
.y2a{bottom:312.510000px;}
.y1b0{bottom:313.410000px;}
.y3f{bottom:319.350000px;}
.ydf{bottom:320.610000px;}
.y9c{bottom:321.510000px;}
.y1ec{bottom:321.690000px;}
.y100{bottom:321.870000px;}
.y135{bottom:322.410000px;}
.y161{bottom:322.590000px;}
.y18b{bottom:329.070000px;}
.y6d{bottom:330.330000px;}
.y19c{bottom:330.510000px;}
.y1af{bottom:331.410000px;}
.y25{bottom:339.330000px;}
.y1eb{bottom:339.510000px;}
.yff{bottom:339.690000px;}
.y160{bottom:340.410000px;}
.yde{bottom:347.610000px;}
.y29{bottom:348.150000px;}
.y19b{bottom:348.330000px;}
.y3e{bottom:348.510000px;}
.y1ae{bottom:349.230000px;}
.y134{bottom:349.590000px;}
.y9b{bottom:357.150000px;}
.y1ea{bottom:357.510000px;}
.yfe{bottom:357.690000px;}
.y15f{bottom:358.410000px;}
.y18a{bottom:362.010000px;}
.ydd{bottom:365.430000px;}
.y6c{bottom:365.970000px;}
.y24{bottom:366.150000px;}
.y1ad{bottom:367.050000px;}
.y133{bottom:367.590000px;}
.y28{bottom:374.970000px;}
.y1e9{bottom:375.330000px;}
.yfd{bottom:375.510000px;}
.y15e{bottom:376.230000px;}
.y189{bottom:379.830000px;}
.y6b{bottom:383.790000px;}
.y19a{bottom:383.970000px;}
.y1ac{bottom:384.870000px;}
.y132{bottom:385.410000px;}
.ydc{bottom:392.250000px;}
.y23{bottom:392.970000px;}
.y1e8{bottom:393.150000px;}
.yfc{bottom:393.330000px;}
.y15d{bottom:394.050000px;}
.y188{bottom:397.650000px;}
.y6a{bottom:401.610000px;}
.y27{bottom:401.790000px;}
.y1ab{bottom:402.690000px;}
.ydb{bottom:410.070000px;}
.y1e7{bottom:410.970000px;}
.yfb{bottom:411.150000px;}
.y15c{bottom:411.870000px;}
.y131{bottom:412.230000px;}
.y187{bottom:415.470000px;}
.y69{bottom:419.610000px;}
.y22{bottom:420.150000px;}
.y1aa{bottom:422.670000px;}
.yda{bottom:427.890000px;}
.y26{bottom:428.790000px;}
.y15b{bottom:429.690000px;}
.yfa{bottom:430.950000px;}
.y186{bottom:433.290000px;}
.y12a{bottom:434.205000px;}
.y68{bottom:437.430000px;}
.y9a{bottom:437.610000px;}
.y21{bottom:438.150000px;}
.yd9{bottom:445.935000px;}
.y1e6{bottom:446.655000px;}
.y15a{bottom:447.735000px;}
.y185{bottom:451.335000px;}
.y67{bottom:455.295000px;}
.y99{bottom:455.475000px;}
.y20{bottom:455.655000px;}
.y12f{bottom:461.775000px;}
.yd8{bottom:463.755000px;}
.yf9{bottom:463.935000px;}
.y1e5{bottom:464.655000px;}
.y159{bottom:465.555000px;}
.y184{bottom:469.155000px;}
.y66{bottom:473.115000px;}
.y98{bottom:473.295000px;}
.yd7{bottom:481.575000px;}
.yf8{bottom:481.755000px;}
.y1e4{bottom:482.475000px;}
.y158{bottom:483.375000px;}
.y183{bottom:486.975000px;}
.y12e{bottom:489.495000px;}
.y65{bottom:490.935000px;}
.y97{bottom:491.115000px;}
.y1f{bottom:491.295000px;}
.yd6{bottom:499.395000px;}
.y1e3{bottom:500.295000px;}
.y157{bottom:501.195000px;}
.y182{bottom:504.795000px;}
.yf7{bottom:508.575000px;}
.y64{bottom:508.935000px;}
.y1e{bottom:509.115000px;}
.y12d{bottom:517.035000px;}
.y1e2{bottom:518.115000px;}
.y156{bottom:519.015000px;}
.y181{bottom:522.615000px;}
.yd5{bottom:526.215000px;}
.yf6{bottom:526.395000px;}
.y63{bottom:526.755000px;}
.y96{bottom:526.935000px;}
.y1d{bottom:528.915000px;}
.y1e1{bottom:535.935000px;}
.y155{bottom:536.835000px;}
.y180{bottom:540.435000px;}
.y62{bottom:544.575000px;}
.y95{bottom:544.755000px;}
.y1c{bottom:552.675000px;}
.yd4{bottom:553.035000px;}
.yf5{bottom:553.215000px;}
.y1e0{bottom:553.935000px;}
.y154{bottom:554.835000px;}
.y17f{bottom:558.435000px;}
.yb2{bottom:562.395000px;}
.y1a9{bottom:562.575000px;}
.yd3{bottom:571.035000px;}
.y61{bottom:571.395000px;}
.y94{bottom:571.575000px;}
.y1df{bottom:571.755000px;}
.y129{bottom:572.295000px;}
.y153{bottom:572.655000px;}
.y1b{bottom:576.255000px;}
.yb1{bottom:580.215000px;}
.y1a8{bottom:580.395000px;}
.yf4{bottom:589.035000px;}
.y60{bottom:589.215000px;}
.y93{bottom:589.395000px;}
.y1de{bottom:589.575000px;}
.y152{bottom:590.475000px;}
.y17e{bottom:594.075000px;}
.yd2{bottom:597.855000px;}
.yb0{bottom:598.035000px;}
.y1a7{bottom:598.215000px;}
.y128{bottom:599.835000px;}
.y1a{bottom:602.535000px;}
.yf3{bottom:606.855000px;}
.y5f{bottom:607.035000px;}
.y92{bottom:607.215000px;}
.y1dd{bottom:607.395000px;}
.y1ce{bottom:608.295000px;}
.y17d{bottom:611.895000px;}
.yd1{bottom:615.675000px;}
.yaf{bottom:616.035000px;}
.y151{bottom:617.295000px;}
.yf2{bottom:624.675000px;}
.y5e{bottom:625.035000px;}
.y1dc{bottom:625.215000px;}
.y1cd{bottom:626.115000px;}
.y121{bottom:627.375000px;}
.y17c{bottom:629.715000px;}
.y19{bottom:633.495000px;}
.yae{bottom:633.855000px;}
.y1a6{bottom:634.035000px;}
.y150{bottom:635.115000px;}
.yd0{bottom:642.495000px;}
.y5d{bottom:642.855000px;}
.y91{bottom:643.035000px;}
.y1cc{bottom:644.115000px;}
.y17b{bottom:647.535000px;}
.yad{bottom:651.675000px;}
.y1a5{bottom:651.855000px;}
.y124{bottom:655.095000px;}
.ycf{bottom:660.315000px;}
.y5c{bottom:660.675000px;}
.y90{bottom:660.855000px;}
.y1db{bottom:661.035000px;}
.y1cb{bottom:661.935000px;}
.y14f{bottom:662.115000px;}
.y17a{bottom:674.535000px;}
.yac{bottom:678.165000px;}
.y5b{bottom:678.525000px;}
.y8f{bottom:678.705000px;}
.y1da{bottom:678.885000px;}
.y1ca{bottom:679.785000px;}
.y123{bottom:682.665000px;}
.y14e{bottom:684.105000px;}
.y18{bottom:689.865000px;}
.y179{bottom:692.385000px;}
.yce{bottom:696.165000px;}
.y5a{bottom:696.345000px;}
.y8e{bottom:696.525000px;}
.y1d9{bottom:696.705000px;}
.y1c9{bottom:697.605000px;}
.yab{bottom:705.345000px;}
.y11d{bottom:710.385000px;}
.y14d{bottom:711.645000px;}
.ycd{bottom:713.985000px;}
.y8d{bottom:714.345000px;}
.y1d8{bottom:714.525000px;}
.y1c8{bottom:715.425000px;}
.y178{bottom:719.205000px;}
.y203{bottom:722.805000px;}
.y59{bottom:723.165000px;}
.y17{bottom:730.725000px;}
.ycc{bottom:731.805000px;}
.y8c{bottom:732.165000px;}
.y1d7{bottom:732.345000px;}
.y1c7{bottom:733.245000px;}
.y120{bottom:737.925000px;}
.y14c{bottom:739.185000px;}
.y58{bottom:741.165000px;}
.ycb{bottom:749.625000px;}
.y8b{bottom:750.165000px;}
.y1c6{bottom:751.245000px;}
.yf1{bottom:758.625000px;}
.y57{bottom:758.985000px;}
.y11f{bottom:765.465000px;}
.y14b{bottom:766.905000px;}
.yca{bottom:767.445000px;}
.y8a{bottom:767.985000px;}
.y1d6{bottom:768.165000px;}
.y177{bottom:768.885000px;}
.y1c5{bottom:769.065000px;}
.y202{bottom:776.445000px;}
.y56{bottom:776.805000px;}
.y16{bottom:781.305000px;}
.yf0{bottom:785.445000px;}
.y89{bottom:785.805000px;}
.y1d5{bottom:785.985000px;}
.y1c4{bottom:786.885000px;}
.y116{bottom:793.185000px;}
.yc9{bottom:794.445000px;}
.y55{bottom:794.625000px;}
.y176{bottom:796.425000px;}
.y201{bottom:803.265000px;}
.yef{bottom:803.445000px;}
.y88{bottom:803.625000px;}
.y1d4{bottom:803.805000px;}
.y1c3{bottom:804.705000px;}
.y15{bottom:809.205000px;}
.y54{bottom:812.445000px;}
.y11c{bottom:820.725000px;}
.yc8{bottom:821.265000px;}
.y87{bottom:821.445000px;}
.y1d3{bottom:821.625000px;}
.y14a{bottom:821.985000px;}
.y1c2{bottom:822.525000px;}
.y175{bottom:823.965000px;}
.yaa{bottom:830.085000px;}
.yee{bottom:830.265000px;}
.y53{bottom:830.445000px;}
.yc7{bottom:839.085000px;}
.y86{bottom:839.445000px;}
.y1c1{bottom:840.345000px;}
.yed{bottom:848.085000px;}
.y52{bottom:848.265000px;}
.y199{bottom:848.445000px;}
.y149{bottom:849.705000px;}
.y14{bottom:855.285000px;}
.y174{bottom:856.905000px;}
.y85{bottom:857.265000px;}
.y1d2{bottom:857.445000px;}
.y1c0{bottom:858.345000px;}
.yc6{bottom:865.905000px;}
.y51{bottom:866.085000px;}
.y198{bottom:866.265000px;}
.yec{bottom:874.905000px;}
.y84{bottom:875.085000px;}
.y1d1{bottom:875.265000px;}
.y11a{bottom:875.985000px;}
.y1bf{bottom:876.165000px;}
.y148{bottom:877.245000px;}
.y13{bottom:878.145000px;}
.y200{bottom:883.005000px;}
.yc5{bottom:883.725000px;}
.y173{bottom:884.085000px;}
.yeb{bottom:892.725000px;}
.y50{bottom:892.905000px;}
.y1d0{bottom:893.085000px;}
.y1be{bottom:893.985000px;}
.y12{bottom:899.745000px;}
.y1ff{bottom:900.825000px;}
.y172{bottom:901.905000px;}
.y118{bottom:903.525000px;}
.y147{bottom:910.185000px;}
.yc4{bottom:910.590000px;}
.y4f{bottom:910.770000px;}
.y1cf{bottom:910.950000px;}
.y1bd{bottom:911.850000px;}
.y83{bottom:919.770000px;}
.y11{bottom:921.930000px;}
.y1fe{bottom:927.690000px;}
.y4e{bottom:928.590000px;}
.y171{bottom:928.770000px;}
.y1bc{bottom:929.670000px;}
.y112{bottom:931.110000px;}
.y146{bottom:937.410000px;}
.y82{bottom:937.590000px;}
.y10{bottom:944.790000px;}
.yc3{bottom:946.410000px;}
.y4d{bottom:946.590000px;}
.y1bb{bottom:947.670000px;}
.y1fd{bottom:954.510000px;}
.y145{bottom:955.230000px;}
.y81{bottom:955.590000px;}
.yc2{bottom:964.230000px;}
.y4c{bottom:964.410000px;}
.y170{bottom:964.590000px;}
.y1ba{bottom:965.490000px;}
.yf{bottom:966.930000px;}
.y80{bottom:973.410000px;}
.y111{bottom:981.870000px;}
.yc1{bottom:982.050000px;}
.y4b{bottom:982.230000px;}
.y16f{bottom:982.410000px;}
.y1b9{bottom:983.310000px;}
.y7f{bottom:991.230000px;}
.ya9{bottom:999.690000px;}
.yc0{bottom:999.870000px;}
.y4a{bottom:1000.050000px;}
.y16e{bottom:1000.230000px;}
.y1b8{bottom:1003.110000px;}
.y110{bottom:1008.690000px;}
.y144{bottom:1008.870000px;}
.y7e{bottom:1009.050000px;}
.ye{bottom:1011.570000px;}
.y49{bottom:1017.870000px;}
.y16d{bottom:1018.050000px;}
.yd{bottom:1023.630000px;}
.y7d{bottom:1026.870000px;}
.y1fc{bottom:1035.510000px;}
.yc{bottom:1035.690000px;}
.y48{bottom:1035.870000px;}
.y143{bottom:1044.690000px;}
.y7c{bottom:1044.870000px;}
.yb{bottom:1047.750000px;}
.y47{bottom:1053.690000px;}
.y10f{bottom:1053.870000px;}
.ya{bottom:1061.970000px;}
.y1fb{bottom:1062.330000px;}
.ybf{bottom:1062.510000px;}
.y7b{bottom:1062.690000px;}
.y10e{bottom:1071.690000px;}
.y46{bottom:1080.510000px;}
.y9{bottom:1087.170000px;}
.y142{bottom:1088.970000px;}
.y1fa{bottom:1089.150000px;}
.ybe{bottom:1089.330000px;}
.y10d{bottom:1089.510000px;}
.y45{bottom:1098.330000px;}
.ybd{bottom:1107.150000px;}
.y10c{bottom:1107.330000px;}
.ya8{bottom:1115.790000px;}
.y1f9{bottom:1115.970000px;}
.y44{bottom:1116.150000px;}
.y8{bottom:1116.870000px;}
.y10b{bottom:1125.150000px;}
.y43{bottom:1133.970000px;}
.ya7{bottom:1142.970000px;}
.y42{bottom:1152.000000px;}
.y7a{bottom:1161.000000px;}
.y7{bottom:1165.860000px;}
.y141{bottom:1169.820000px;}
.y41{bottom:1178.820000px;}
.y40{bottom:1196.640000px;}
.y1{bottom:1215.000000px;}
.h1f{height:26.805000px;}
.h23{height:26.815500px;}
.h19{height:26.820000px;}
.h21{height:26.841000px;}
.h1c{height:26.850000px;}
.h18{height:26.856000px;}
.h1d{height:26.985000px;}
.h26{height:27.000000px;}
.h3{height:31.135500px;}
.h24{height:39.049805px;}
.h8{height:40.985156px;}
.h22{height:44.805000px;}
.h15{height:44.820000px;}
.h16{height:52.971680px;}
.h4{height:52.998047px;}
.h10{height:54.421875px;}
.h25{height:55.503491px;}
.h13{height:58.621992px;}
.h9{height:58.651172px;}
.h14{height:58.763250px;}
.ha{height:60.226875px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.hf{height:72.562500px;}
.h11{height:78.367500px;}
.h1a{height:81.900000px;}
.h1e{height:82.065000px;}
.h1b{height:82.110000px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h20{height:109.641000px;}
.h17{height:137.196000px;}
.h12{height:247.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:57.441000px;}
.w3{width:80.310000px;}
.w7{width:84.225000px;}
.wa{width:98.661000px;}
.w8{width:110.010000px;}
.w5{width:120.045000px;}
.we{width:122.940000px;}
.wc{width:122.962500px;}
.wd{width:123.156000px;}
.wf{width:123.645000px;}
.w10{width:123.681000px;}
.w11{width:123.690000px;}
.wb{width:128.730000px;}
.w9{width:142.725000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.560000px;}
.x6{left:8.640000px;}
.x14{left:10.800000px;}
.x1c{left:15.825000px;}
.x1f{left:18.900000px;}
.x21{left:20.880000px;}
.x1e{left:25.920000px;}
.x1a{left:34.725000px;}
.x2e{left:37.080000px;}
.x13{left:39.240000px;}
.x2{left:45.364500px;}
.x15{left:50.040000px;}
.x27{left:51.484500px;}
.x1{left:54.000000px;}
.xd{left:59.400000px;}
.x2f{left:61.770000px;}
.x2b{left:62.985000px;}
.x26{left:81.000000px;}
.x18{left:108.036000px;}
.x28{left:175.170000px;}
.x10{left:203.790000px;}
.xe{left:207.030000px;}
.xf{left:211.350000px;}
.x3{left:222.370500px;}
.xa{left:268.815000px;}
.x4{left:271.330500px;}
.xb{left:287.175000px;}
.x29{left:299.055000px;}
.x8{left:305.175000px;}
.x11{left:314.355000px;}
.x9{left:364.395000px;}
.xc{left:378.795000px;}
.x16{left:411.735000px;}
.x7{left:446.505000px;}
.x19{left:469.380000px;}
.x22{left:470.460000px;}
.x12{left:473.505000px;}
.x2a{left:500.505000px;}
.x17{left:527.505000px;}
.x1b{left:590.160000px;}
.x2c{left:594.480000px;}
.x23{left:613.920000px;}
.x1d{left:648.330000px;}
.x24{left:713.490000px;}
.x2d{left:718.890000px;}
.x20{left:733.290000px;}
.x5{left:767.490000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.624000pt;}
.lsb{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.296960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:22.496000pt;}
.lsd{letter-spacing:46.816000pt;}
.lse{letter-spacing:49.376000pt;}
.lsf{letter-spacing:54.496000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.472000pt;}
.wsc{word-spacing:-11.376000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-1.840213pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.658667pt;}
._9{width:3.258667pt;}
._6{width:4.448000pt;}
._e{width:5.761493pt;}
._d{width:6.944213pt;}
._8{width:7.872000pt;}
._7{width:8.832000pt;}
._f{width:9.933440pt;}
._5{width:10.965333pt;}
._14{width:12.944000pt;}
._3{width:13.840000pt;}
._4{width:14.896000pt;}
._c{width:16.032000pt;}
._a{width:17.184000pt;}
._b{width:18.234667pt;}
._13{width:19.808000pt;}
._19{width:20.736000pt;}
._15{width:21.936000pt;}
._16{width:23.184000pt;}
._1a{width:24.602667pt;}
._10{width:25.536000pt;}
._11{width:26.469333pt;}
._1e{width:27.413333pt;}
._12{width:29.088000pt;}
._17{width:30.384000pt;}
._18{width:31.488000pt;}
._1b{width:33.024000pt;}
._22{width:33.973547pt;}
._20{width:35.136000pt;}
._1f{width:36.144000pt;}
._32{width:37.296000pt;}
._31{width:39.163307pt;}
._30{width:40.256000pt;}
._45{width:42.320000pt;}
._1d{width:44.256000pt;}
._1c{width:45.312000pt;}
._33{width:46.362880pt;}
._38{width:53.952000pt;}
._37{width:66.096000pt;}
._24{width:74.688000pt;}
._23{width:75.744000pt;}
._40{width:86.832000pt;}
._41{width:88.202667pt;}
._28{width:91.920000pt;}
._27{width:92.880000pt;}
._25{width:106.570667pt;}
._47{width:109.728000pt;}
._3c{width:120.037547pt;}
._3d{width:121.248000pt;}
._3e{width:136.896000pt;}
._26{width:146.400000pt;}
._46{width:152.176000pt;}
._36{width:158.880000pt;}
._3f{width:167.616000pt;}
._2c{width:262.213547pt;}
._34{width:263.232000pt;}
._2b{width:278.448000pt;}
._2a{width:279.360000pt;}
._35{width:287.168000pt;}
._2e{width:299.152000pt;}
._42{width:302.005547pt;}
._44{width:307.392000pt;}
._3a{width:308.496000pt;}
._39{width:309.504000pt;}
._2f{width:310.416000pt;}
._3b{width:325.200000pt;}
._43{width:339.600000pt;}
._29{width:822.240000pt;}
._2d{width:843.840000pt;}
._2{width:1039.626667pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.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;}
.y13a{bottom:8.626667pt;}
.y115{bottom:8.640000pt;}
.y13c{bottom:8.946667pt;}
.y11b{bottom:8.960000pt;}
.y130{bottom:8.986667pt;}
.y119{bottom:9.000000pt;}
.y125{bottom:9.120000pt;}
.y5{bottom:13.920000pt;}
.y138{bottom:16.626667pt;}
.y113{bottom:16.640000pt;}
.y3{bottom:16.800000pt;}
.y139{bottom:24.626667pt;}
.y114{bottom:24.640000pt;}
.y127{bottom:25.280000pt;}
.y11e{bottom:33.120000pt;}
.y122{bottom:33.280000pt;}
.y6{bottom:35.360000pt;}
.y12c{bottom:37.626667pt;}
.y126{bottom:41.280000pt;}
.y12b{bottom:53.466667pt;}
.y2{bottom:53.920000pt;}
.y117{bottom:57.600000pt;}
.y3d{bottom:62.906667pt;}
.y3c{bottom:80.506667pt;}
.yea{bottom:94.400000pt;}
.y140{bottom:95.040000pt;}
.y79{bottom:95.200000pt;}
.y1f8{bottom:95.520000pt;}
.ya6{bottom:96.000000pt;}
.y16c{bottom:96.320000pt;}
.y10a{bottom:96.480000pt;}
.y3b{bottom:98.106667pt;}
.y197{bottom:100.320000pt;}
.y34{bottom:104.320000pt;}
.ybc{bottom:105.440000pt;}
.ye9{bottom:110.400000pt;}
.y78{bottom:111.040000pt;}
.y1a4{bottom:111.200000pt;}
.y1f7{bottom:111.360000pt;}
.ya5{bottom:112.000000pt;}
.y16b{bottom:112.160000pt;}
.y109{bottom:112.320000pt;}
.y3a{bottom:115.706667pt;}
.y196{bottom:116.160000pt;}
.y13f{bottom:119.520000pt;}
.y33{bottom:120.160000pt;}
.ybb{bottom:121.280000pt;}
.ye8{bottom:126.240000pt;}
.y77{bottom:126.880000pt;}
.y1a3{bottom:127.040000pt;}
.y1f6{bottom:127.200000pt;}
.ya4{bottom:127.840000pt;}
.y16a{bottom:128.000000pt;}
.y195{bottom:132.160000pt;}
.y39{bottom:133.346667pt;}
.y32{bottom:136.000000pt;}
.yba{bottom:137.280000pt;}
.ye7{bottom:142.080000pt;}
.y76{bottom:142.720000pt;}
.y1a2{bottom:142.880000pt;}
.y1f5{bottom:143.200000pt;}
.ya3{bottom:143.680000pt;}
.y13e{bottom:144.000000pt;}
.y108{bottom:145.920000pt;}
.y194{bottom:148.000000pt;}
.y38{bottom:151.106667pt;}
.y1b7{bottom:151.680000pt;}
.y31{bottom:151.840000pt;}
.yb9{bottom:153.120000pt;}
.ye6{bottom:157.920000pt;}
.y75{bottom:158.560000pt;}
.y1a1{bottom:158.720000pt;}
.y1f4{bottom:159.040000pt;}
.ya2{bottom:159.520000pt;}
.y169{bottom:159.840000pt;}
.y193{bottom:163.840000pt;}
.y1b6{bottom:167.520000pt;}
.y30{bottom:167.840000pt;}
.y13d{bottom:168.640000pt;}
.y37{bottom:168.706667pt;}
.yb8{bottom:168.960000pt;}
.ye5{bottom:173.760000pt;}
.y74{bottom:174.400000pt;}
.y1a0{bottom:174.560000pt;}
.y1f3{bottom:174.880000pt;}
.y107{bottom:175.040000pt;}
.ya1{bottom:175.360000pt;}
.y168{bottom:175.680000pt;}
.y192{bottom:179.680000pt;}
.y1b5{bottom:183.386667pt;}
.y2f{bottom:183.706667pt;}
.ye4{bottom:189.786667pt;}
.y73{bottom:190.426667pt;}
.y1f2{bottom:190.746667pt;}
.y106{bottom:190.906667pt;}
.ya0{bottom:191.066667pt;}
.y167{bottom:191.546667pt;}
.yb7{bottom:192.826667pt;}
.y13b{bottom:193.160000pt;}
.y191{bottom:195.546667pt;}
.y36{bottom:195.586667pt;}
.y1b4{bottom:199.386667pt;}
.y2e{bottom:199.546667pt;}
.ye3{bottom:205.626667pt;}
.y72{bottom:206.266667pt;}
.y1f1{bottom:206.586667pt;}
.y105{bottom:206.746667pt;}
.y166{bottom:207.386667pt;}
.y9f{bottom:208.986667pt;}
.y190{bottom:211.386667pt;}
.y19f{bottom:214.426667pt;}
.y1b3{bottom:215.226667pt;}
.yb6{bottom:216.346667pt;}
.y2d{bottom:217.146667pt;}
.y137{bottom:217.640000pt;}
.ye2{bottom:221.466667pt;}
.y71{bottom:222.106667pt;}
.y1f0{bottom:222.426667pt;}
.y104{bottom:222.586667pt;}
.y165{bottom:223.386667pt;}
.y18f{bottom:227.386667pt;}
.y19e{bottom:230.266667pt;}
.y1b2{bottom:231.066667pt;}
.y70{bottom:237.946667pt;}
.y9e{bottom:238.106667pt;}
.y1ef{bottom:238.426667pt;}
.y103{bottom:238.586667pt;}
.y164{bottom:239.226667pt;}
.yb5{bottom:240.666667pt;}
.y18e{bottom:243.226667pt;}
.ye1{bottom:245.306667pt;}
.y2c{bottom:245.946667pt;}
.y19d{bottom:246.106667pt;}
.y1b1{bottom:246.906667pt;}
.y6f{bottom:253.786667pt;}
.y9d{bottom:253.946667pt;}
.y1ee{bottom:254.266667pt;}
.y102{bottom:254.426667pt;}
.y163{bottom:255.066667pt;}
.yb4{bottom:256.506667pt;}
.y18d{bottom:259.066667pt;}
.y2b{bottom:261.946667pt;}
.y136{bottom:262.746667pt;}
.y35{bottom:264.640000pt;}
.ye0{bottom:269.146667pt;}
.yb3{bottom:269.466667pt;}
.y6e{bottom:269.786667pt;}
.y1ed{bottom:270.106667pt;}
.y101{bottom:270.266667pt;}
.y162{bottom:270.906667pt;}
.y18c{bottom:274.906667pt;}
.y2a{bottom:277.786667pt;}
.y1b0{bottom:278.586667pt;}
.y3f{bottom:283.866667pt;}
.ydf{bottom:284.986667pt;}
.y9c{bottom:285.786667pt;}
.y1ec{bottom:285.946667pt;}
.y100{bottom:286.106667pt;}
.y135{bottom:286.586667pt;}
.y161{bottom:286.746667pt;}
.y18b{bottom:292.506667pt;}
.y6d{bottom:293.626667pt;}
.y19c{bottom:293.786667pt;}
.y1af{bottom:294.586667pt;}
.y25{bottom:301.626667pt;}
.y1eb{bottom:301.786667pt;}
.yff{bottom:301.946667pt;}
.y160{bottom:302.586667pt;}
.yde{bottom:308.986667pt;}
.y29{bottom:309.466667pt;}
.y19b{bottom:309.626667pt;}
.y3e{bottom:309.786667pt;}
.y1ae{bottom:310.426667pt;}
.y134{bottom:310.746667pt;}
.y9b{bottom:317.466667pt;}
.y1ea{bottom:317.786667pt;}
.yfe{bottom:317.946667pt;}
.y15f{bottom:318.586667pt;}
.y18a{bottom:321.786667pt;}
.ydd{bottom:324.826667pt;}
.y6c{bottom:325.306667pt;}
.y24{bottom:325.466667pt;}
.y1ad{bottom:326.266667pt;}
.y133{bottom:326.746667pt;}
.y28{bottom:333.306667pt;}
.y1e9{bottom:333.626667pt;}
.yfd{bottom:333.786667pt;}
.y15e{bottom:334.426667pt;}
.y189{bottom:337.626667pt;}
.y6b{bottom:341.146667pt;}
.y19a{bottom:341.306667pt;}
.y1ac{bottom:342.106667pt;}
.y132{bottom:342.586667pt;}
.ydc{bottom:348.666667pt;}
.y23{bottom:349.306667pt;}
.y1e8{bottom:349.466667pt;}
.yfc{bottom:349.626667pt;}
.y15d{bottom:350.266667pt;}
.y188{bottom:353.466667pt;}
.y6a{bottom:356.986667pt;}
.y27{bottom:357.146667pt;}
.y1ab{bottom:357.946667pt;}
.ydb{bottom:364.506667pt;}
.y1e7{bottom:365.306667pt;}
.yfb{bottom:365.466667pt;}
.y15c{bottom:366.106667pt;}
.y131{bottom:366.426667pt;}
.y187{bottom:369.306667pt;}
.y69{bottom:372.986667pt;}
.y22{bottom:373.466667pt;}
.y1aa{bottom:375.706667pt;}
.yda{bottom:380.346667pt;}
.y26{bottom:381.146667pt;}
.y15b{bottom:381.946667pt;}
.yfa{bottom:383.066667pt;}
.y186{bottom:385.146667pt;}
.y12a{bottom:385.960000pt;}
.y68{bottom:388.826667pt;}
.y9a{bottom:388.986667pt;}
.y21{bottom:389.466667pt;}
.yd9{bottom:396.386667pt;}
.y1e6{bottom:397.026667pt;}
.y15a{bottom:397.986667pt;}
.y185{bottom:401.186667pt;}
.y67{bottom:404.706667pt;}
.y99{bottom:404.866667pt;}
.y20{bottom:405.026667pt;}
.y12f{bottom:410.466667pt;}
.yd8{bottom:412.226667pt;}
.yf9{bottom:412.386667pt;}
.y1e5{bottom:413.026667pt;}
.y159{bottom:413.826667pt;}
.y184{bottom:417.026667pt;}
.y66{bottom:420.546667pt;}
.y98{bottom:420.706667pt;}
.yd7{bottom:428.066667pt;}
.yf8{bottom:428.226667pt;}
.y1e4{bottom:428.866667pt;}
.y158{bottom:429.666667pt;}
.y183{bottom:432.866667pt;}
.y12e{bottom:435.106667pt;}
.y65{bottom:436.386667pt;}
.y97{bottom:436.546667pt;}
.y1f{bottom:436.706667pt;}
.yd6{bottom:443.906667pt;}
.y1e3{bottom:444.706667pt;}
.y157{bottom:445.506667pt;}
.y182{bottom:448.706667pt;}
.yf7{bottom:452.066667pt;}
.y64{bottom:452.386667pt;}
.y1e{bottom:452.546667pt;}
.y12d{bottom:459.586667pt;}
.y1e2{bottom:460.546667pt;}
.y156{bottom:461.346667pt;}
.y181{bottom:464.546667pt;}
.yd5{bottom:467.746667pt;}
.yf6{bottom:467.906667pt;}
.y63{bottom:468.226667pt;}
.y96{bottom:468.386667pt;}
.y1d{bottom:470.146667pt;}
.y1e1{bottom:476.386667pt;}
.y155{bottom:477.186667pt;}
.y180{bottom:480.386667pt;}
.y62{bottom:484.066667pt;}
.y95{bottom:484.226667pt;}
.y1c{bottom:491.266667pt;}
.yd4{bottom:491.586667pt;}
.yf5{bottom:491.746667pt;}
.y1e0{bottom:492.386667pt;}
.y154{bottom:493.186667pt;}
.y17f{bottom:496.386667pt;}
.yb2{bottom:499.906667pt;}
.y1a9{bottom:500.066667pt;}
.yd3{bottom:507.586667pt;}
.y61{bottom:507.906667pt;}
.y94{bottom:508.066667pt;}
.y1df{bottom:508.226667pt;}
.y129{bottom:508.706667pt;}
.y153{bottom:509.026667pt;}
.y1b{bottom:512.226667pt;}
.yb1{bottom:515.746667pt;}
.y1a8{bottom:515.906667pt;}
.yf4{bottom:523.586667pt;}
.y60{bottom:523.746667pt;}
.y93{bottom:523.906667pt;}
.y1de{bottom:524.066667pt;}
.y152{bottom:524.866667pt;}
.y17e{bottom:528.066667pt;}
.yd2{bottom:531.426667pt;}
.yb0{bottom:531.586667pt;}
.y1a7{bottom:531.746667pt;}
.y128{bottom:533.186667pt;}
.y1a{bottom:535.586667pt;}
.yf3{bottom:539.426667pt;}
.y5f{bottom:539.586667pt;}
.y92{bottom:539.746667pt;}
.y1dd{bottom:539.906667pt;}
.y1ce{bottom:540.706667pt;}
.y17d{bottom:543.906667pt;}
.yd1{bottom:547.266667pt;}
.yaf{bottom:547.586667pt;}
.y151{bottom:548.706667pt;}
.yf2{bottom:555.266667pt;}
.y5e{bottom:555.586667pt;}
.y1dc{bottom:555.746667pt;}
.y1cd{bottom:556.546667pt;}
.y121{bottom:557.666667pt;}
.y17c{bottom:559.746667pt;}
.y19{bottom:563.106667pt;}
.yae{bottom:563.426667pt;}
.y1a6{bottom:563.586667pt;}
.y150{bottom:564.546667pt;}
.yd0{bottom:571.106667pt;}
.y5d{bottom:571.426667pt;}
.y91{bottom:571.586667pt;}
.y1cc{bottom:572.546667pt;}
.y17b{bottom:575.586667pt;}
.yad{bottom:579.266667pt;}
.y1a5{bottom:579.426667pt;}
.y124{bottom:582.306667pt;}
.ycf{bottom:586.946667pt;}
.y5c{bottom:587.266667pt;}
.y90{bottom:587.426667pt;}
.y1db{bottom:587.586667pt;}
.y1cb{bottom:588.386667pt;}
.y14f{bottom:588.546667pt;}
.y17a{bottom:599.586667pt;}
.yac{bottom:602.813333pt;}
.y5b{bottom:603.133333pt;}
.y8f{bottom:603.293333pt;}
.y1da{bottom:603.453333pt;}
.y1ca{bottom:604.253333pt;}
.y123{bottom:606.813333pt;}
.y14e{bottom:608.093333pt;}
.y18{bottom:613.213333pt;}
.y179{bottom:615.453333pt;}
.yce{bottom:618.813333pt;}
.y5a{bottom:618.973333pt;}
.y8e{bottom:619.133333pt;}
.y1d9{bottom:619.293333pt;}
.y1c9{bottom:620.093333pt;}
.yab{bottom:626.973333pt;}
.y11d{bottom:631.453333pt;}
.y14d{bottom:632.573333pt;}
.ycd{bottom:634.653333pt;}
.y8d{bottom:634.973333pt;}
.y1d8{bottom:635.133333pt;}
.y1c8{bottom:635.933333pt;}
.y178{bottom:639.293333pt;}
.y203{bottom:642.493333pt;}
.y59{bottom:642.813333pt;}
.y17{bottom:649.533333pt;}
.ycc{bottom:650.493333pt;}
.y8c{bottom:650.813333pt;}
.y1d7{bottom:650.973333pt;}
.y1c7{bottom:651.773333pt;}
.y120{bottom:655.933333pt;}
.y14c{bottom:657.053333pt;}
.y58{bottom:658.813333pt;}
.ycb{bottom:666.333333pt;}
.y8b{bottom:666.813333pt;}
.y1c6{bottom:667.773333pt;}
.yf1{bottom:674.333333pt;}
.y57{bottom:674.653333pt;}
.y11f{bottom:680.413333pt;}
.y14b{bottom:681.693333pt;}
.yca{bottom:682.173333pt;}
.y8a{bottom:682.653333pt;}
.y1d6{bottom:682.813333pt;}
.y177{bottom:683.453333pt;}
.y1c5{bottom:683.613333pt;}
.y202{bottom:690.173333pt;}
.y56{bottom:690.493333pt;}
.y16{bottom:694.493333pt;}
.yf0{bottom:698.173333pt;}
.y89{bottom:698.493333pt;}
.y1d5{bottom:698.653333pt;}
.y1c4{bottom:699.453333pt;}
.y116{bottom:705.053333pt;}
.yc9{bottom:706.173333pt;}
.y55{bottom:706.333333pt;}
.y176{bottom:707.933333pt;}
.y201{bottom:714.013333pt;}
.yef{bottom:714.173333pt;}
.y88{bottom:714.333333pt;}
.y1d4{bottom:714.493333pt;}
.y1c3{bottom:715.293333pt;}
.y15{bottom:719.293333pt;}
.y54{bottom:722.173333pt;}
.y11c{bottom:729.533333pt;}
.yc8{bottom:730.013333pt;}
.y87{bottom:730.173333pt;}
.y1d3{bottom:730.333333pt;}
.y14a{bottom:730.653333pt;}
.y1c2{bottom:731.133333pt;}
.y175{bottom:732.413333pt;}
.yaa{bottom:737.853333pt;}
.yee{bottom:738.013333pt;}
.y53{bottom:738.173333pt;}
.yc7{bottom:745.853333pt;}
.y86{bottom:746.173333pt;}
.y1c1{bottom:746.973333pt;}
.yed{bottom:753.853333pt;}
.y52{bottom:754.013333pt;}
.y199{bottom:754.173333pt;}
.y149{bottom:755.293333pt;}
.y14{bottom:760.253333pt;}
.y174{bottom:761.693333pt;}
.y85{bottom:762.013333pt;}
.y1d2{bottom:762.173333pt;}
.y1c0{bottom:762.973333pt;}
.yc6{bottom:769.693333pt;}
.y51{bottom:769.853333pt;}
.y198{bottom:770.013333pt;}
.yec{bottom:777.693333pt;}
.y84{bottom:777.853333pt;}
.y1d1{bottom:778.013333pt;}
.y11a{bottom:778.653333pt;}
.y1bf{bottom:778.813333pt;}
.y148{bottom:779.773333pt;}
.y13{bottom:780.573333pt;}
.y200{bottom:784.893333pt;}
.yc5{bottom:785.533333pt;}
.y173{bottom:785.853333pt;}
.yeb{bottom:793.533333pt;}
.y50{bottom:793.693333pt;}
.y1d0{bottom:793.853333pt;}
.y1be{bottom:794.653333pt;}
.y12{bottom:799.773333pt;}
.y1ff{bottom:800.733333pt;}
.y172{bottom:801.693333pt;}
.y118{bottom:803.133333pt;}
.y147{bottom:809.053333pt;}
.yc4{bottom:809.413333pt;}
.y4f{bottom:809.573333pt;}
.y1cf{bottom:809.733333pt;}
.y1bd{bottom:810.533333pt;}
.y83{bottom:817.573333pt;}
.y11{bottom:819.493333pt;}
.y1fe{bottom:824.613333pt;}
.y4e{bottom:825.413333pt;}
.y171{bottom:825.573333pt;}
.y1bc{bottom:826.373333pt;}
.y112{bottom:827.653333pt;}
.y146{bottom:833.253333pt;}
.y82{bottom:833.413333pt;}
.y10{bottom:839.813333pt;}
.yc3{bottom:841.253333pt;}
.y4d{bottom:841.413333pt;}
.y1bb{bottom:842.373333pt;}
.y1fd{bottom:848.453333pt;}
.y145{bottom:849.093333pt;}
.y81{bottom:849.413333pt;}
.yc2{bottom:857.093333pt;}
.y4c{bottom:857.253333pt;}
.y170{bottom:857.413333pt;}
.y1ba{bottom:858.213333pt;}
.yf{bottom:859.493333pt;}
.y80{bottom:865.253333pt;}
.y111{bottom:872.773333pt;}
.yc1{bottom:872.933333pt;}
.y4b{bottom:873.093333pt;}
.y16f{bottom:873.253333pt;}
.y1b9{bottom:874.053333pt;}
.y7f{bottom:881.093333pt;}
.ya9{bottom:888.613333pt;}
.yc0{bottom:888.773333pt;}
.y4a{bottom:888.933333pt;}
.y16e{bottom:889.093333pt;}
.y1b8{bottom:891.653333pt;}
.y110{bottom:896.613333pt;}
.y144{bottom:896.773333pt;}
.y7e{bottom:896.933333pt;}
.ye{bottom:899.173333pt;}
.y49{bottom:904.773333pt;}
.y16d{bottom:904.933333pt;}
.yd{bottom:909.893333pt;}
.y7d{bottom:912.773333pt;}
.y1fc{bottom:920.453333pt;}
.yc{bottom:920.613333pt;}
.y48{bottom:920.773333pt;}
.y143{bottom:928.613333pt;}
.y7c{bottom:928.773333pt;}
.yb{bottom:931.333333pt;}
.y47{bottom:936.613333pt;}
.y10f{bottom:936.773333pt;}
.ya{bottom:943.973333pt;}
.y1fb{bottom:944.293333pt;}
.ybf{bottom:944.453333pt;}
.y7b{bottom:944.613333pt;}
.y10e{bottom:952.613333pt;}
.y46{bottom:960.453333pt;}
.y9{bottom:966.373333pt;}
.y142{bottom:967.973333pt;}
.y1fa{bottom:968.133333pt;}
.ybe{bottom:968.293333pt;}
.y10d{bottom:968.453333pt;}
.y45{bottom:976.293333pt;}
.ybd{bottom:984.133333pt;}
.y10c{bottom:984.293333pt;}
.ya8{bottom:991.813333pt;}
.y1f9{bottom:991.973333pt;}
.y44{bottom:992.133333pt;}
.y8{bottom:992.773333pt;}
.y10b{bottom:1000.133333pt;}
.y43{bottom:1007.973333pt;}
.ya7{bottom:1015.973333pt;}
.y42{bottom:1024.000000pt;}
.y7a{bottom:1032.000000pt;}
.y7{bottom:1036.320000pt;}
.y141{bottom:1039.840000pt;}
.y41{bottom:1047.840000pt;}
.y40{bottom:1063.680000pt;}
.y1{bottom:1080.000000pt;}
.h1f{height:23.826667pt;}
.h23{height:23.836000pt;}
.h19{height:23.840000pt;}
.h21{height:23.858667pt;}
.h1c{height:23.866667pt;}
.h18{height:23.872000pt;}
.h1d{height:23.986667pt;}
.h26{height:24.000000pt;}
.h3{height:27.676000pt;}
.h24{height:34.710938pt;}
.h8{height:36.431250pt;}
.h22{height:39.826667pt;}
.h15{height:39.840000pt;}
.h16{height:47.085938pt;}
.h4{height:47.109375pt;}
.h10{height:48.375000pt;}
.h25{height:49.336436pt;}
.h13{height:52.108438pt;}
.h9{height:52.134375pt;}
.h14{height:52.234000pt;}
.ha{height:53.535000pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.hf{height:64.500000pt;}
.h11{height:69.660000pt;}
.h1a{height:72.800000pt;}
.h1e{height:72.946667pt;}
.h1b{height:72.986667pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h20{height:97.458667pt;}
.h17{height:121.952000pt;}
.h12{height:219.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:51.058667pt;}
.w3{width:71.386667pt;}
.w7{width:74.866667pt;}
.wa{width:87.698667pt;}
.w8{width:97.786667pt;}
.w5{width:106.706667pt;}
.we{width:109.280000pt;}
.wc{width:109.300000pt;}
.wd{width:109.472000pt;}
.wf{width:109.906667pt;}
.w10{width:109.938667pt;}
.w11{width:109.946667pt;}
.wb{width:114.426667pt;}
.w9{width:126.866667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.720000pt;}
.x6{left:7.680000pt;}
.x14{left:9.600000pt;}
.x1c{left:14.066667pt;}
.x1f{left:16.800000pt;}
.x21{left:18.560000pt;}
.x1e{left:23.040000pt;}
.x1a{left:30.866667pt;}
.x2e{left:32.960000pt;}
.x13{left:34.880000pt;}
.x2{left:40.324000pt;}
.x15{left:44.480000pt;}
.x27{left:45.764000pt;}
.x1{left:48.000000pt;}
.xd{left:52.800000pt;}
.x2f{left:54.906667pt;}
.x2b{left:55.986667pt;}
.x26{left:72.000000pt;}
.x18{left:96.032000pt;}
.x28{left:155.706667pt;}
.x10{left:181.146667pt;}
.xe{left:184.026667pt;}
.xf{left:187.866667pt;}
.x3{left:197.662667pt;}
.xa{left:238.946667pt;}
.x4{left:241.182667pt;}
.xb{left:255.266667pt;}
.x29{left:265.826667pt;}
.x8{left:271.266667pt;}
.x11{left:279.426667pt;}
.x9{left:323.906667pt;}
.xc{left:336.706667pt;}
.x16{left:365.986667pt;}
.x7{left:396.893333pt;}
.x19{left:417.226667pt;}
.x22{left:418.186667pt;}
.x12{left:420.893333pt;}
.x2a{left:444.893333pt;}
.x17{left:468.893333pt;}
.x1b{left:524.586667pt;}
.x2c{left:528.426667pt;}
.x23{left:545.706667pt;}
.x1d{left:576.293333pt;}
.x24{left:634.213333pt;}
.x2d{left:639.013333pt;}
.x20{left:651.813333pt;}
.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; }
  