
    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_1607229f7fc6e35bcc45c9fe.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_075a328b4ab5b05721d07ae9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1f3e576ec36ab681c2cef00f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d6ec7a1187eeca9fe2d89624.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_581ff2393571b09e87c713d3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d63c9666edc7576d39b036b1.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_596a2a2cf49ff0d14b0568d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_c0f8f11796a0d0e72323c944.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_5156656c1a778302d4de8b48.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d1d122a0ffb80d87eccca791.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0e7d3592cebb340aed12a9f1.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4569122a8e453f59c48aa0cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.970703;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:-77.040000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls6{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.017280px;}
.lse{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:7.236000px;}
.ls13{letter-spacing:13.140000px;}
.ls11{letter-spacing:24.696000px;}
.lsa{letter-spacing:25.308000px;}
.ls3{letter-spacing:28.062720px;}
.ls15{letter-spacing:52.668000px;}
.lsb{letter-spacing:63.468000px;}
.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;}
}
.wsb{word-spacing:-54.000000px;}
.wse{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.482000px;}
.wsd{word-spacing:-13.374000px;}
.wsf{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.888000px;}
.ws2{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._f{width:2.436000px;}
._10{width:3.618000px;}
._15{width:4.625040px;}
._13{width:5.796720px;}
._14{width:6.974160px;}
._a{width:8.262000px;}
._9{width:9.558000px;}
._8{width:10.908000px;}
._6{width:12.386880px;}
._7{width:13.699680px;}
._17{width:14.796000px;}
._16{width:16.200000px;}
._1c{width:17.604000px;}
._d{width:18.630000px;}
._e{width:19.980000px;}
._12{width:21.006000px;}
._11{width:22.302000px;}
._1f{width:24.084000px;}
._21{width:25.326000px;}
._24{width:26.784000px;}
._25{width:27.918000px;}
._22{width:29.124000px;}
._27{width:30.402000px;}
._2c{width:31.668000px;}
._20{width:32.670000px;}
._b{width:33.696000px;}
._c{width:35.136000px;}
._18{width:36.882000px;}
._23{width:38.340000px;}
._2a{width:39.456000px;}
._1e{width:41.778000px;}
._1d{width:42.822000px;}
._28{width:44.172000px;}
._29{width:45.936000px;}
._26{width:52.488000px;}
._1a{width:53.622000px;}
._1b{width:54.834000px;}
._30{width:56.808000px;}
._2f{width:58.050000px;}
._32{width:59.346000px;}
._33{width:60.486000px;}
._19{width:69.894720px;}
._3{width:78.192000px;}
._35{width:87.966000px;}
._2b{width:140.562000px;}
._4{width:157.860000px;}
._2e{width:170.316000px;}
._2d{width:171.720000px;}
._31{width:266.112000px;}
._34{width:343.440000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs8{font-size:77.904000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y36{bottom:-3.030000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y13a{bottom:5.580000px;}
.y136{bottom:9.720000px;}
.y13d{bottom:10.260000px;}
.ya0{bottom:10.410000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y139{bottom:23.580000px;}
.y145{bottom:24.480000px;}
.y14a{bottom:26.280000px;}
.y13c{bottom:28.980000px;}
.y5{bottom:39.780000px;}
.y138{bottom:42.480000px;}
.y144{bottom:43.200000px;}
.y149{bottom:44.280000px;}
.y13b{bottom:46.980000px;}
.y1{bottom:60.660000px;}
.y143{bottom:61.200000px;}
.y148{bottom:63.000000px;}
.y33{bottom:73.470000px;}
.y142{bottom:79.920000px;}
.y147{bottom:81.900000px;}
.y32{bottom:93.270000px;}
.y141{bottom:98.850000px;}
.y146{bottom:99.750000px;}
.y137{bottom:104.400000px;}
.yd1{bottom:106.920000px;}
.y1c4{bottom:108.000000px;}
.yfa{bottom:109.980000px;}
.y31{bottom:113.070000px;}
.y2b{bottom:113.760000px;}
.y1e1{bottom:117.000000px;}
.y9d{bottom:117.540000px;}
.y140{bottom:117.570000px;}
.yd0{bottom:124.740000px;}
.y210{bottom:125.280000px;}
.y1c3{bottom:126.000000px;}
.yf9{bottom:127.980000px;}
.y2a{bottom:131.580000px;}
.y30{bottom:132.870000px;}
.y1e0{bottom:135.000000px;}
.y9c{bottom:135.360000px;}
.y13f{bottom:136.470000px;}
.y20f{bottom:143.100000px;}
.y1a2{bottom:143.460000px;}
.y1c2{bottom:143.820000px;}
.yf8{bottom:145.800000px;}
.y178{bottom:146.160000px;}
.y29{bottom:149.400000px;}
.ycf{bottom:151.560000px;}
.y1df{bottom:152.820000px;}
.y2f{bottom:152.850000px;}
.y9b{bottom:153.180000px;}
.y6e{bottom:153.720000px;}
.y20e{bottom:161.100000px;}
.y1a1{bottom:161.280000px;}
.y1c1{bottom:161.640000px;}
.yf7{bottom:163.620000px;}
.y177{bottom:163.980000px;}
.y135{bottom:165.240000px;}
.y28{bottom:167.220000px;}
.yce{bottom:169.380000px;}
.y1de{bottom:170.640000px;}
.y9a{bottom:171.000000px;}
.y6d{bottom:171.540000px;}
.y2e{bottom:172.650000px;}
.y20d{bottom:178.920000px;}
.y1a0{bottom:179.100000px;}
.y1c0{bottom:179.460000px;}
.y27{bottom:185.040000px;}
.ycd{bottom:187.200000px;}
.y99{bottom:188.460000px;}
.y6c{bottom:189.360000px;}
.yf6{bottom:190.620000px;}
.y176{bottom:190.800000px;}
.y20c{bottom:196.740000px;}
.y19f{bottom:196.920000px;}
.y1bf{bottom:197.280000px;}
.y106{bottom:198.360000px;}
.y2d{bottom:202.935000px;}
.y26{bottom:205.020000px;}
.y1dd{bottom:206.310000px;}
.y6b{bottom:207.210000px;}
.y175{bottom:208.830000px;}
.yf5{bottom:209.370000px;}
.ycc{bottom:214.230000px;}
.y20b{bottom:214.590000px;}
.y19e{bottom:214.950000px;}
.y98{bottom:215.850000px;}
.y105{bottom:216.210000px;}
.y1be{bottom:224.310000px;}
.y134{bottom:225.030000px;}
.yf4{bottom:227.190000px;}
.y174{bottom:227.550000px;}
.ycb{bottom:232.050000px;}
.y20a{bottom:232.410000px;}
.y19d{bottom:232.770000px;}
.y97{bottom:233.670000px;}
.y6a{bottom:234.210000px;}
.y1bd{bottom:242.130000px;}
.y133{bottom:242.850000px;}
.y173{bottom:245.550000px;}
.yf3{bottom:245.910000px;}
.y209{bottom:250.230000px;}
.y96{bottom:251.490000px;}
.y69{bottom:252.030000px;}
.y2c{bottom:255.420000px;}
.y25{bottom:257.790000px;}
.yca{bottom:258.870000px;}
.y1bc{bottom:259.950000px;}
.y132{bottom:260.850000px;}
.yf2{bottom:263.910000px;}
.y172{bottom:264.270000px;}
.y208{bottom:268.230000px;}
.y95{bottom:269.310000px;}
.y68{bottom:269.850000px;}
.yc9{bottom:276.690000px;}
.y1bb{bottom:277.770000px;}
.y131{bottom:278.670000px;}
.y35{bottom:280.110000px;}
.yf1{bottom:281.730000px;}
.y171{bottom:282.270000px;}
.y207{bottom:286.050000px;}
.y94{bottom:287.130000px;}
.y19c{bottom:287.310000px;}
.y67{bottom:287.670000px;}
.y24{bottom:292.530000px;}
.y1ba{bottom:295.590000px;}
.y130{bottom:296.490000px;}
.yc8{bottom:303.510000px;}
.y206{bottom:303.870000px;}
.y93{bottom:305.130000px;}
.y66{bottom:305.490000px;}
.y34{bottom:309.090000px;}
.yf0{bottom:309.450000px;}
.y170{bottom:309.990000px;}
.y1b9{bottom:313.410000px;}
.y12f{bottom:314.310000px;}
.y19b{bottom:315.030000px;}
.yc7{bottom:321.510000px;}
.y205{bottom:321.690000px;}
.y92{bottom:322.950000px;}
.y65{bottom:323.490000px;}
.y23{bottom:327.270000px;}
.yef{bottom:327.450000px;}
.y16f{bottom:327.810000px;}
.y1b8{bottom:331.410000px;}
.y12e{bottom:332.130000px;}
.y19a{bottom:332.850000px;}
.yc6{bottom:339.330000px;}
.y204{bottom:339.510000px;}
.y91{bottom:340.770000px;}
.y64{bottom:341.310000px;}
.yee{bottom:345.270000px;}
.y1b7{bottom:349.230000px;}
.y12d{bottom:350.130000px;}
.y199{bottom:350.850000px;}
.y16e{bottom:354.630000px;}
.yc5{bottom:357.150000px;}
.y203{bottom:357.510000px;}
.y63{bottom:359.130000px;}
.y21{bottom:360.030000px;}
.y1dc{bottom:367.050000px;}
.y90{bottom:367.590000px;}
.y12c{bottom:367.950000px;}
.y1b6{bottom:369.030000px;}
.yed{bottom:372.090000px;}
.y16d{bottom:372.450000px;}
.yc4{bottom:374.970000px;}
.y202{bottom:375.330000px;}
.y62{bottom:376.950000px;}
.y198{bottom:377.670000px;}
.y1db{bottom:384.870000px;}
.y8f{bottom:385.410000px;}
.y12b{bottom:385.770000px;}
.y20{bottom:387.030000px;}
.yec{bottom:389.910000px;}
.y16c{bottom:390.270000px;}
.yc3{bottom:392.790000px;}
.y201{bottom:393.150000px;}
.y61{bottom:394.770000px;}
.y197{bottom:396.390000px;}
.y1b5{bottom:401.790000px;}
.y1da{bottom:402.690000px;}
.y8e{bottom:403.230000px;}
.y12a{bottom:403.590000px;}
.yeb{bottom:407.730000px;}
.y16b{bottom:408.270000px;}
.yc2{bottom:410.610000px;}
.y200{bottom:410.970000px;}
.y60{bottom:412.590000px;}
.y1f{bottom:413.850000px;}
.y196{bottom:414.390000px;}
.y1b4{bottom:419.610000px;}
.y1d9{bottom:420.690000px;}
.y8d{bottom:421.230000px;}
.y129{bottom:421.410000px;}
.yea{bottom:425.550000px;}
.y16a{bottom:426.090000px;}
.yc1{bottom:428.610000px;}
.y1ff{bottom:428.790000px;}
.y5f{bottom:430.590000px;}
.y1b3{bottom:437.610000px;}
.y1d8{bottom:438.510000px;}
.y8c{bottom:439.050000px;}
.y128{bottom:439.230000px;}
.y1e{bottom:440.715000px;}
.y195{bottom:442.155000px;}
.ye9{bottom:443.595000px;}
.y169{bottom:443.955000px;}
.yc0{bottom:446.115000px;}
.y1fe{bottom:446.655000px;}
.y5e{bottom:448.455000px;}
.y104{bottom:450.435000px;}
.y1b2{bottom:455.475000px;}
.y1d7{bottom:456.375000px;}
.y8b{bottom:456.915000px;}
.y127{bottom:457.275000px;}
.y194{bottom:459.975000px;}
.ye8{bottom:461.415000px;}
.y168{bottom:461.775000px;}
.ybf{bottom:463.935000px;}
.y1fd{bottom:464.655000px;}
.y5d{bottom:466.275000px;}
.y1d{bottom:467.535000px;}
.y1b1{bottom:473.295000px;}
.y1d6{bottom:474.195000px;}
.y8a{bottom:474.735000px;}
.y126{bottom:475.095000px;}
.y103{bottom:476.175000px;}
.ye7{bottom:479.235000px;}
.y167{bottom:479.595000px;}
.y1fc{bottom:482.475000px;}
.y5c{bottom:484.095000px;}
.y193{bottom:486.795000px;}
.ybe{bottom:491.115000px;}
.y1d5{bottom:492.015000px;}
.y1c{bottom:493.995000px;}
.y22{bottom:494.355000px;}
.ye6{bottom:497.055000px;}
.y166{bottom:497.595000px;}
.y1fb{bottom:500.295000px;}
.y89{bottom:501.555000px;}
.y5b{bottom:501.915000px;}
.y192{bottom:504.795000px;}
.ybd{bottom:508.935000px;}
.y1d4{bottom:509.835000px;}
.ye5{bottom:514.515000px;}
.y165{bottom:515.415000px;}
.y1fa{bottom:518.115000px;}
.y88{bottom:519.375000px;}
.y5a{bottom:519.915000px;}
.y125{bottom:520.815000px;}
.y1b{bottom:522.615000px;}
.ybc{bottom:526.935000px;}
.y1d3{bottom:527.835000px;}
.ye4{bottom:532.515000px;}
.y164{bottom:533.235000px;}
.y1f9{bottom:535.935000px;}
.y87{bottom:537.375000px;}
.y124{bottom:538.635000px;}
.y191{bottom:540.435000px;}
.y1a{bottom:544.395000px;}
.ybb{bottom:544.755000px;}
.y1d2{bottom:545.655000px;}
.y59{bottom:546.735000px;}
.y163{bottom:551.055000px;}
.y1f8{bottom:553.935000px;}
.y86{bottom:555.195000px;}
.y123{bottom:557.535000px;}
.y190{bottom:558.255000px;}
.ye3{bottom:559.695000px;}
.yba{bottom:562.575000px;}
.y1d1{bottom:563.475000px;}
.y58{bottom:564.555000px;}
.y162{bottom:568.875000px;}
.y19{bottom:570.675000px;}
.y1f7{bottom:571.755000px;}
.y85{bottom:573.015000px;}
.ye2{bottom:577.515000px;}
.yb9{bottom:580.395000px;}
.y1d0{bottom:581.295000px;}
.y57{bottom:582.375000px;}
.y18f{bottom:585.075000px;}
.y122{bottom:585.255000px;}
.y161{bottom:586.695000px;}
.y1f6{bottom:589.575000px;}
.y84{bottom:590.835000px;}
.ye1{bottom:595.335000px;}
.yb8{bottom:598.215000px;}
.y1cf{bottom:599.115000px;}
.y56{bottom:600.195000px;}
.y18{bottom:601.455000px;}
.y18e{bottom:602.895000px;}
.y121{bottom:603.075000px;}
.y160{bottom:604.695000px;}
.y1f5{bottom:607.395000px;}
.y83{bottom:608.655000px;}
.ye0{bottom:613.155000px;}
.yb7{bottom:616.035000px;}
.y1ce{bottom:617.115000px;}
.y55{bottom:618.015000px;}
.y120{bottom:620.895000px;}
.y15f{bottom:622.515000px;}
.y1f4{bottom:625.215000px;}
.y82{bottom:626.655000px;}
.ydf{bottom:630.975000px;}
.yb6{bottom:634.035000px;}
.y1cd{bottom:634.935000px;}
.y54{bottom:636.015000px;}
.y18d{bottom:638.715000px;}
.y15e{bottom:640.335000px;}
.y1f3{bottom:643.035000px;}
.y81{bottom:644.475000px;}
.y11f{bottom:647.715000px;}
.yde{bottom:648.975000px;}
.yb5{bottom:651.855000px;}
.y1cc{bottom:652.755000px;}
.y53{bottom:653.835000px;}
.y17{bottom:657.795000px;}
.y102{bottom:660.855000px;}
.y1f2{bottom:661.035000px;}
.y18c{bottom:665.535000px;}
.y11e{bottom:665.715000px;}
.ydd{bottom:666.795000px;}
.y15d{bottom:667.335000px;}
.y1b0{bottom:669.675000px;}
.y1cb{bottom:670.575000px;}
.y80{bottom:671.295000px;}
.yb4{bottom:678.705000px;}
.y1f1{bottom:678.885000px;}
.y52{bottom:680.685000px;}
.y18b{bottom:683.385000px;}
.y11d{bottom:683.565000px;}
.y15c{bottom:686.085000px;}
.y1af{bottom:687.525000px;}
.y16{bottom:688.785000px;}
.y7f{bottom:689.145000px;}
.y1ca{bottom:690.405000px;}
.ydc{bottom:693.645000px;}
.yb3{bottom:696.525000px;}
.y1f0{bottom:696.705000px;}
.y51{bottom:698.505000px;}
.y18a{bottom:701.205000px;}
.y11c{bottom:701.385000px;}
.y15b{bottom:704.985000px;}
.y1ae{bottom:705.345000px;}
.y7e{bottom:706.965000px;}
.ydb{bottom:711.465000px;}
.y15{bottom:712.005000px;}
.yb2{bottom:714.345000px;}
.y1ef{bottom:714.525000px;}
.y50{bottom:716.325000px;}
.y189{bottom:719.205000px;}
.y212{bottom:720.825000px;}
.y1ad{bottom:723.165000px;}
.y7d{bottom:724.785000px;}
.y11b{bottom:728.205000px;}
.yda{bottom:729.465000px;}
.yb1{bottom:732.165000px;}
.y1ee{bottom:732.345000px;}
.y15a{bottom:732.705000px;}
.y14{bottom:733.785000px;}
.y4f{bottom:734.325000px;}
.y188{bottom:737.025000px;}
.y1ac{bottom:741.165000px;}
.y7c{bottom:742.785000px;}
.y11a{bottom:746.025000px;}
.y211{bottom:746.925000px;}
.yd9{bottom:748.185000px;}
.yb0{bottom:750.165000px;}
.y159{bottom:750.525000px;}
.y4e{bottom:752.145000px;}
.y187{bottom:754.845000px;}
.y1ab{bottom:758.985000px;}
.y101{bottom:759.165000px;}
.y7b{bottom:760.605000px;}
.y119{bottom:763.665000px;}
.yd8{bottom:766.005000px;}
.yaf{bottom:767.985000px;}
.y1ed{bottom:768.165000px;}
.y4d{bottom:769.965000px;}
.y186{bottom:772.665000px;}
.y1aa{bottom:776.805000px;}
.y100{bottom:776.985000px;}
.y158{bottom:777.345000px;}
.y13{bottom:777.705000px;}
.y7a{bottom:778.065000px;}
.y118{bottom:781.485000px;}
.yd7{bottom:783.825000px;}
.yae{bottom:785.805000px;}
.y1ec{bottom:785.985000px;}
.y4c{bottom:787.785000px;}
.y185{bottom:790.485000px;}
.y1a9{bottom:794.625000px;}
.yff{bottom:794.805000px;}
.y157{bottom:795.165000px;}
.yd6{bottom:801.825000px;}
.yad{bottom:803.625000px;}
.y1eb{bottom:803.805000px;}
.y79{bottom:805.245000px;}
.y4b{bottom:805.605000px;}
.y184{bottom:808.305000px;}
.y117{bottom:808.665000px;}
.y1c9{bottom:812.445000px;}
.yfe{bottom:812.625000px;}
.y156{bottom:813.165000px;}
.yd5{bottom:820.545000px;}
.yac{bottom:821.445000px;}
.y1ea{bottom:821.625000px;}
.y78{bottom:823.065000px;}
.y4a{bottom:825.405000px;}
.y183{bottom:826.305000px;}
.y116{bottom:826.485000px;}
.y12{bottom:828.465000px;}
.yfd{bottom:830.445000px;}
.y155{bottom:830.985000px;}
.yd4{bottom:838.365000px;}
.yab{bottom:839.445000px;}
.y77{bottom:841.065000px;}
.y182{bottom:844.125000px;}
.y115{bottom:844.305000px;}
.y1c8{bottom:848.265000px;}
.yfc{bottom:848.445000px;}
.y154{bottom:848.805000px;}
.y49{bottom:851.325000px;}
.yd3{bottom:856.365000px;}
.yaa{bottom:857.265000px;}
.y1e9{bottom:857.445000px;}
.y76{bottom:858.885000px;}
.y181{bottom:861.945000px;}
.y114{bottom:862.125000px;}
.yfb{bottom:866.265000px;}
.y153{bottom:866.625000px;}
.y11{bottom:874.545000px;}
.ya9{bottom:875.085000px;}
.y1e8{bottom:875.265000px;}
.y75{bottom:876.705000px;}
.y113{bottom:880.125000px;}
.y48{bottom:884.085000px;}
.y180{bottom:888.765000px;}
.y1a8{bottom:892.905000px;}
.y1e7{bottom:893.085000px;}
.y152{bottom:893.445000px;}
.y74{bottom:894.525000px;}
.y112{bottom:897.945000px;}
.y10{bottom:899.745000px;}
.y47{bottom:901.905000px;}
.y17f{bottom:906.765000px;}
.y1a7{bottom:910.770000px;}
.y1e6{bottom:910.950000px;}
.y151{bottom:911.310000px;}
.y111{bottom:915.810000px;}
.yf{bottom:919.590000px;}
.y46{bottom:919.770000px;}
.y73{bottom:921.390000px;}
.y17e{bottom:925.530000px;}
.y1a6{bottom:928.590000px;}
.y1e5{bottom:928.770000px;}
.y150{bottom:929.310000px;}
.y110{bottom:933.630000px;}
.y45{bottom:937.590000px;}
.ye{bottom:939.570000px;}
.y17d{bottom:944.430000px;}
.y1a5{bottom:946.590000px;}
.y14f{bottom:947.130000px;}
.y72{bottom:948.210000px;}
.y10f{bottom:951.450000px;}
.y44{bottom:955.590000px;}
.yd{bottom:959.010000px;}
.y17c{bottom:963.150000px;}
.y1a4{bottom:964.410000px;}
.y1e4{bottom:964.590000px;}
.y14e{bottom:964.950000px;}
.y71{bottom:966.210000px;}
.y10e{bottom:969.270000px;}
.y43{bottom:973.410000px;}
.yc{bottom:979.170000px;}
.y17b{bottom:981.150000px;}
.y1a3{bottom:981.870000px;}
.y1c7{bottom:982.230000px;}
.y1e3{bottom:982.410000px;}
.y70{bottom:984.030000px;}
.y10d{bottom:987.270000px;}
.y42{bottom:991.230000px;}
.y14d{bottom:991.770000px;}
.y17a{bottom:999.870000px;}
.y1c6{bottom:1000.050000px;}
.y1e2{bottom:1000.230000px;}
.y41{bottom:1009.050000px;}
.y10c{bottom:1014.090000px;}
.y6f{bottom:1017.690000px;}
.y1c5{bottom:1017.870000px;}
.ya8{bottom:1018.050000px;}
.y14c{bottom:1018.590000px;}
.ya1{bottom:1018.770000px;}
.yb{bottom:1019.130000px;}
.y40{bottom:1026.870000px;}
.ya{bottom:1031.190000px;}
.y10b{bottom:1031.910000px;}
.y179{bottom:1035.690000px;}
.ya7{bottom:1035.870000px;}
.y14b{bottom:1036.590000px;}
.y9{bottom:1043.250000px;}
.y3f{bottom:1044.870000px;}
.y10a{bottom:1050.810000px;}
.ya6{bottom:1053.870000px;}
.y8{bottom:1055.310000px;}
.y13e{bottom:1058.550000px;}
.y3e{bottom:1062.690000px;}
.y109{bottom:1069.710000px;}
.y7{bottom:1069.890000px;}
.ya5{bottom:1071.690000px;}
.y3d{bottom:1080.510000px;}
.y9f{bottom:1086.840000px;}
.y108{bottom:1088.430000px;}
.ya4{bottom:1089.510000px;}
.y6{bottom:1095.450000px;}
.y3c{bottom:1098.330000px;}
.ya3{bottom:1107.330000px;}
.y3b{bottom:1116.150000px;}
.ya2{bottom:1125.150000px;}
.yd2{bottom:1133.970000px;}
.y3a{bottom:1142.970000px;}
.y107{bottom:1152.000000px;}
.y39{bottom:1161.000000px;}
.y9e{bottom:1166.580000px;}
.y38{bottom:1178.820000px;}
.y37{bottom:1196.640000px;}
.h1b{height:26.820000px;}
.h18{height:28.980000px;}
.h2{height:31.135500px;}
.h17{height:37.705078px;}
.h7{height:40.985156px;}
.h15{height:45.461953px;}
.h19{height:48.616875px;}
.h16{height:52.971680px;}
.h3{height:52.998047px;}
.h1e{height:53.709961px;}
.hf{height:54.421875px;}
.h1a{height:55.503491px;}
.h14{height:58.621992px;}
.h8{height:58.651172px;}
.h1c{height:60.115500px;}
.h9{height:60.226875px;}
.hd{height:65.010937px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.hc{height:71.225156px;}
.hb{height:72.326250px;}
.h10{height:78.367500px;}
.h13{height:78.512625px;}
.h11{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h1d{height:149.602500px;}
.h12{height:230.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w5{width:354.600000px;}
.w7{width:389.040000px;}
.w6{width:392.320500px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x14{left:10.800000px;}
.x1b{left:11.805000px;}
.x21{left:34.771500px;}
.x13{left:38.340000px;}
.x1{left:45.364500px;}
.x15{left:49.140000px;}
.x1f{left:51.871500px;}
.x5{left:54.000000px;}
.x1e{left:55.444500px;}
.x22{left:61.771500px;}
.xd{left:65.520000px;}
.x12{left:81.000000px;}
.x16{left:108.036000px;}
.xf{left:195.150000px;}
.x2{left:222.370500px;}
.xb{left:239.070000px;}
.xc{left:256.170000px;}
.xe{left:261.930000px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x9{left:297.795000px;}
.x10{left:314.355000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x20{left:448.500000px;}
.x11{left:473.505000px;}
.x1a{left:487.440000px;}
.x1c{left:495.105000px;}
.x18{left:500.505000px;}
.x1d{left:527.505000px;}
.x19{left:552.885000px;}
.x4{left:767.490000px;}
.x17{left:844.740000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:6.432000pt;}
.ls13{letter-spacing:11.680000pt;}
.ls11{letter-spacing:21.952000pt;}
.lsa{letter-spacing:22.496000pt;}
.ls3{letter-spacing:24.944640pt;}
.ls15{letter-spacing:46.816000pt;}
.lsb{letter-spacing:56.416000pt;}
.wsb{word-spacing:-48.000000pt;}
.wse{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.984000pt;}
.wsd{word-spacing:-11.888000pt;}
.wsf{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.456000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._f{width:2.165333pt;}
._10{width:3.216000pt;}
._15{width:4.111147pt;}
._13{width:5.152640pt;}
._14{width:6.199253pt;}
._a{width:7.344000pt;}
._9{width:8.496000pt;}
._8{width:9.696000pt;}
._6{width:11.010560pt;}
._7{width:12.177493pt;}
._17{width:13.152000pt;}
._16{width:14.400000pt;}
._1c{width:15.648000pt;}
._d{width:16.560000pt;}
._e{width:17.760000pt;}
._12{width:18.672000pt;}
._11{width:19.824000pt;}
._1f{width:21.408000pt;}
._21{width:22.512000pt;}
._24{width:23.808000pt;}
._25{width:24.816000pt;}
._22{width:25.888000pt;}
._27{width:27.024000pt;}
._2c{width:28.149333pt;}
._20{width:29.040000pt;}
._b{width:29.952000pt;}
._c{width:31.232000pt;}
._18{width:32.784000pt;}
._23{width:34.080000pt;}
._2a{width:35.072000pt;}
._1e{width:37.136000pt;}
._1d{width:38.064000pt;}
._28{width:39.264000pt;}
._29{width:40.832000pt;}
._26{width:46.656000pt;}
._1a{width:47.664000pt;}
._1b{width:48.741333pt;}
._30{width:50.496000pt;}
._2f{width:51.600000pt;}
._32{width:52.752000pt;}
._33{width:53.765333pt;}
._19{width:62.128640pt;}
._3{width:69.504000pt;}
._35{width:78.192000pt;}
._2b{width:124.944000pt;}
._4{width:140.320000pt;}
._2e{width:151.392000pt;}
._2d{width:152.640000pt;}
._31{width:236.544000pt;}
._34{width:305.280000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs8{font-size:69.248000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y36{bottom:-2.693333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y13a{bottom:4.960000pt;}
.y136{bottom:8.640000pt;}
.y13d{bottom:9.120000pt;}
.ya0{bottom:9.253333pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y139{bottom:20.960000pt;}
.y145{bottom:21.760000pt;}
.y14a{bottom:23.360000pt;}
.y13c{bottom:25.760000pt;}
.y5{bottom:35.360000pt;}
.y138{bottom:37.760000pt;}
.y144{bottom:38.400000pt;}
.y149{bottom:39.360000pt;}
.y13b{bottom:41.760000pt;}
.y1{bottom:53.920000pt;}
.y143{bottom:54.400000pt;}
.y148{bottom:56.000000pt;}
.y33{bottom:65.306667pt;}
.y142{bottom:71.040000pt;}
.y147{bottom:72.800000pt;}
.y32{bottom:82.906667pt;}
.y141{bottom:87.866667pt;}
.y146{bottom:88.666667pt;}
.y137{bottom:92.800000pt;}
.yd1{bottom:95.040000pt;}
.y1c4{bottom:96.000000pt;}
.yfa{bottom:97.760000pt;}
.y31{bottom:100.506667pt;}
.y2b{bottom:101.120000pt;}
.y1e1{bottom:104.000000pt;}
.y9d{bottom:104.480000pt;}
.y140{bottom:104.506667pt;}
.yd0{bottom:110.880000pt;}
.y210{bottom:111.360000pt;}
.y1c3{bottom:112.000000pt;}
.yf9{bottom:113.760000pt;}
.y2a{bottom:116.960000pt;}
.y30{bottom:118.106667pt;}
.y1e0{bottom:120.000000pt;}
.y9c{bottom:120.320000pt;}
.y13f{bottom:121.306667pt;}
.y20f{bottom:127.200000pt;}
.y1a2{bottom:127.520000pt;}
.y1c2{bottom:127.840000pt;}
.yf8{bottom:129.600000pt;}
.y178{bottom:129.920000pt;}
.y29{bottom:132.800000pt;}
.ycf{bottom:134.720000pt;}
.y1df{bottom:135.840000pt;}
.y2f{bottom:135.866667pt;}
.y9b{bottom:136.160000pt;}
.y6e{bottom:136.640000pt;}
.y20e{bottom:143.200000pt;}
.y1a1{bottom:143.360000pt;}
.y1c1{bottom:143.680000pt;}
.yf7{bottom:145.440000pt;}
.y177{bottom:145.760000pt;}
.y135{bottom:146.880000pt;}
.y28{bottom:148.640000pt;}
.yce{bottom:150.560000pt;}
.y1de{bottom:151.680000pt;}
.y9a{bottom:152.000000pt;}
.y6d{bottom:152.480000pt;}
.y2e{bottom:153.466667pt;}
.y20d{bottom:159.040000pt;}
.y1a0{bottom:159.200000pt;}
.y1c0{bottom:159.520000pt;}
.y27{bottom:164.480000pt;}
.ycd{bottom:166.400000pt;}
.y99{bottom:167.520000pt;}
.y6c{bottom:168.320000pt;}
.yf6{bottom:169.440000pt;}
.y176{bottom:169.600000pt;}
.y20c{bottom:174.880000pt;}
.y19f{bottom:175.040000pt;}
.y1bf{bottom:175.360000pt;}
.y106{bottom:176.320000pt;}
.y2d{bottom:180.386667pt;}
.y26{bottom:182.240000pt;}
.y1dd{bottom:183.386667pt;}
.y6b{bottom:184.186667pt;}
.y175{bottom:185.626667pt;}
.yf5{bottom:186.106667pt;}
.ycc{bottom:190.426667pt;}
.y20b{bottom:190.746667pt;}
.y19e{bottom:191.066667pt;}
.y98{bottom:191.866667pt;}
.y105{bottom:192.186667pt;}
.y1be{bottom:199.386667pt;}
.y134{bottom:200.026667pt;}
.yf4{bottom:201.946667pt;}
.y174{bottom:202.266667pt;}
.ycb{bottom:206.266667pt;}
.y20a{bottom:206.586667pt;}
.y19d{bottom:206.906667pt;}
.y97{bottom:207.706667pt;}
.y6a{bottom:208.186667pt;}
.y1bd{bottom:215.226667pt;}
.y133{bottom:215.866667pt;}
.y173{bottom:218.266667pt;}
.yf3{bottom:218.586667pt;}
.y209{bottom:222.426667pt;}
.y96{bottom:223.546667pt;}
.y69{bottom:224.026667pt;}
.y2c{bottom:227.040000pt;}
.y25{bottom:229.146667pt;}
.yca{bottom:230.106667pt;}
.y1bc{bottom:231.066667pt;}
.y132{bottom:231.866667pt;}
.yf2{bottom:234.586667pt;}
.y172{bottom:234.906667pt;}
.y208{bottom:238.426667pt;}
.y95{bottom:239.386667pt;}
.y68{bottom:239.866667pt;}
.yc9{bottom:245.946667pt;}
.y1bb{bottom:246.906667pt;}
.y131{bottom:247.706667pt;}
.y35{bottom:248.986667pt;}
.yf1{bottom:250.426667pt;}
.y171{bottom:250.906667pt;}
.y207{bottom:254.266667pt;}
.y94{bottom:255.226667pt;}
.y19c{bottom:255.386667pt;}
.y67{bottom:255.706667pt;}
.y24{bottom:260.026667pt;}
.y1ba{bottom:262.746667pt;}
.y130{bottom:263.546667pt;}
.yc8{bottom:269.786667pt;}
.y206{bottom:270.106667pt;}
.y93{bottom:271.226667pt;}
.y66{bottom:271.546667pt;}
.y34{bottom:274.746667pt;}
.yf0{bottom:275.066667pt;}
.y170{bottom:275.546667pt;}
.y1b9{bottom:278.586667pt;}
.y12f{bottom:279.386667pt;}
.y19b{bottom:280.026667pt;}
.yc7{bottom:285.786667pt;}
.y205{bottom:285.946667pt;}
.y92{bottom:287.066667pt;}
.y65{bottom:287.546667pt;}
.y23{bottom:290.906667pt;}
.yef{bottom:291.066667pt;}
.y16f{bottom:291.386667pt;}
.y1b8{bottom:294.586667pt;}
.y12e{bottom:295.226667pt;}
.y19a{bottom:295.866667pt;}
.yc6{bottom:301.626667pt;}
.y204{bottom:301.786667pt;}
.y91{bottom:302.906667pt;}
.y64{bottom:303.386667pt;}
.yee{bottom:306.906667pt;}
.y1b7{bottom:310.426667pt;}
.y12d{bottom:311.226667pt;}
.y199{bottom:311.866667pt;}
.y16e{bottom:315.226667pt;}
.yc5{bottom:317.466667pt;}
.y203{bottom:317.786667pt;}
.y63{bottom:319.226667pt;}
.y21{bottom:320.026667pt;}
.y1dc{bottom:326.266667pt;}
.y90{bottom:326.746667pt;}
.y12c{bottom:327.066667pt;}
.y1b6{bottom:328.026667pt;}
.yed{bottom:330.746667pt;}
.y16d{bottom:331.066667pt;}
.yc4{bottom:333.306667pt;}
.y202{bottom:333.626667pt;}
.y62{bottom:335.066667pt;}
.y198{bottom:335.706667pt;}
.y1db{bottom:342.106667pt;}
.y8f{bottom:342.586667pt;}
.y12b{bottom:342.906667pt;}
.y20{bottom:344.026667pt;}
.yec{bottom:346.586667pt;}
.y16c{bottom:346.906667pt;}
.yc3{bottom:349.146667pt;}
.y201{bottom:349.466667pt;}
.y61{bottom:350.906667pt;}
.y197{bottom:352.346667pt;}
.y1b5{bottom:357.146667pt;}
.y1da{bottom:357.946667pt;}
.y8e{bottom:358.426667pt;}
.y12a{bottom:358.746667pt;}
.yeb{bottom:362.426667pt;}
.y16b{bottom:362.906667pt;}
.yc2{bottom:364.986667pt;}
.y200{bottom:365.306667pt;}
.y60{bottom:366.746667pt;}
.y1f{bottom:367.866667pt;}
.y196{bottom:368.346667pt;}
.y1b4{bottom:372.986667pt;}
.y1d9{bottom:373.946667pt;}
.y8d{bottom:374.426667pt;}
.y129{bottom:374.586667pt;}
.yea{bottom:378.266667pt;}
.y16a{bottom:378.746667pt;}
.yc1{bottom:380.986667pt;}
.y1ff{bottom:381.146667pt;}
.y5f{bottom:382.746667pt;}
.y1b3{bottom:388.986667pt;}
.y1d8{bottom:389.786667pt;}
.y8c{bottom:390.266667pt;}
.y128{bottom:390.426667pt;}
.y1e{bottom:391.746667pt;}
.y195{bottom:393.026667pt;}
.ye9{bottom:394.306667pt;}
.y169{bottom:394.626667pt;}
.yc0{bottom:396.546667pt;}
.y1fe{bottom:397.026667pt;}
.y5e{bottom:398.626667pt;}
.y104{bottom:400.386667pt;}
.y1b2{bottom:404.866667pt;}
.y1d7{bottom:405.666667pt;}
.y8b{bottom:406.146667pt;}
.y127{bottom:406.466667pt;}
.y194{bottom:408.866667pt;}
.ye8{bottom:410.146667pt;}
.y168{bottom:410.466667pt;}
.ybf{bottom:412.386667pt;}
.y1fd{bottom:413.026667pt;}
.y5d{bottom:414.466667pt;}
.y1d{bottom:415.586667pt;}
.y1b1{bottom:420.706667pt;}
.y1d6{bottom:421.506667pt;}
.y8a{bottom:421.986667pt;}
.y126{bottom:422.306667pt;}
.y103{bottom:423.266667pt;}
.ye7{bottom:425.986667pt;}
.y167{bottom:426.306667pt;}
.y1fc{bottom:428.866667pt;}
.y5c{bottom:430.306667pt;}
.y193{bottom:432.706667pt;}
.ybe{bottom:436.546667pt;}
.y1d5{bottom:437.346667pt;}
.y1c{bottom:439.106667pt;}
.y22{bottom:439.426667pt;}
.ye6{bottom:441.826667pt;}
.y166{bottom:442.306667pt;}
.y1fb{bottom:444.706667pt;}
.y89{bottom:445.826667pt;}
.y5b{bottom:446.146667pt;}
.y192{bottom:448.706667pt;}
.ybd{bottom:452.386667pt;}
.y1d4{bottom:453.186667pt;}
.ye5{bottom:457.346667pt;}
.y165{bottom:458.146667pt;}
.y1fa{bottom:460.546667pt;}
.y88{bottom:461.666667pt;}
.y5a{bottom:462.146667pt;}
.y125{bottom:462.946667pt;}
.y1b{bottom:464.546667pt;}
.ybc{bottom:468.386667pt;}
.y1d3{bottom:469.186667pt;}
.ye4{bottom:473.346667pt;}
.y164{bottom:473.986667pt;}
.y1f9{bottom:476.386667pt;}
.y87{bottom:477.666667pt;}
.y124{bottom:478.786667pt;}
.y191{bottom:480.386667pt;}
.y1a{bottom:483.906667pt;}
.ybb{bottom:484.226667pt;}
.y1d2{bottom:485.026667pt;}
.y59{bottom:485.986667pt;}
.y163{bottom:489.826667pt;}
.y1f8{bottom:492.386667pt;}
.y86{bottom:493.506667pt;}
.y123{bottom:495.586667pt;}
.y190{bottom:496.226667pt;}
.ye3{bottom:497.506667pt;}
.yba{bottom:500.066667pt;}
.y1d1{bottom:500.866667pt;}
.y58{bottom:501.826667pt;}
.y162{bottom:505.666667pt;}
.y19{bottom:507.266667pt;}
.y1f7{bottom:508.226667pt;}
.y85{bottom:509.346667pt;}
.ye2{bottom:513.346667pt;}
.yb9{bottom:515.906667pt;}
.y1d0{bottom:516.706667pt;}
.y57{bottom:517.666667pt;}
.y18f{bottom:520.066667pt;}
.y122{bottom:520.226667pt;}
.y161{bottom:521.506667pt;}
.y1f6{bottom:524.066667pt;}
.y84{bottom:525.186667pt;}
.ye1{bottom:529.186667pt;}
.yb8{bottom:531.746667pt;}
.y1cf{bottom:532.546667pt;}
.y56{bottom:533.506667pt;}
.y18{bottom:534.626667pt;}
.y18e{bottom:535.906667pt;}
.y121{bottom:536.066667pt;}
.y160{bottom:537.506667pt;}
.y1f5{bottom:539.906667pt;}
.y83{bottom:541.026667pt;}
.ye0{bottom:545.026667pt;}
.yb7{bottom:547.586667pt;}
.y1ce{bottom:548.546667pt;}
.y55{bottom:549.346667pt;}
.y120{bottom:551.906667pt;}
.y15f{bottom:553.346667pt;}
.y1f4{bottom:555.746667pt;}
.y82{bottom:557.026667pt;}
.ydf{bottom:560.866667pt;}
.yb6{bottom:563.586667pt;}
.y1cd{bottom:564.386667pt;}
.y54{bottom:565.346667pt;}
.y18d{bottom:567.746667pt;}
.y15e{bottom:569.186667pt;}
.y1f3{bottom:571.586667pt;}
.y81{bottom:572.866667pt;}
.y11f{bottom:575.746667pt;}
.yde{bottom:576.866667pt;}
.yb5{bottom:579.426667pt;}
.y1cc{bottom:580.226667pt;}
.y53{bottom:581.186667pt;}
.y17{bottom:584.706667pt;}
.y102{bottom:587.426667pt;}
.y1f2{bottom:587.586667pt;}
.y18c{bottom:591.586667pt;}
.y11e{bottom:591.746667pt;}
.ydd{bottom:592.706667pt;}
.y15d{bottom:593.186667pt;}
.y1b0{bottom:595.266667pt;}
.y1cb{bottom:596.066667pt;}
.y80{bottom:596.706667pt;}
.yb4{bottom:603.293333pt;}
.y1f1{bottom:603.453333pt;}
.y52{bottom:605.053333pt;}
.y18b{bottom:607.453333pt;}
.y11d{bottom:607.613333pt;}
.y15c{bottom:609.853333pt;}
.y1af{bottom:611.133333pt;}
.y16{bottom:612.253333pt;}
.y7f{bottom:612.573333pt;}
.y1ca{bottom:613.693333pt;}
.ydc{bottom:616.573333pt;}
.yb3{bottom:619.133333pt;}
.y1f0{bottom:619.293333pt;}
.y51{bottom:620.893333pt;}
.y18a{bottom:623.293333pt;}
.y11c{bottom:623.453333pt;}
.y15b{bottom:626.653333pt;}
.y1ae{bottom:626.973333pt;}
.y7e{bottom:628.413333pt;}
.ydb{bottom:632.413333pt;}
.y15{bottom:632.893333pt;}
.yb2{bottom:634.973333pt;}
.y1ef{bottom:635.133333pt;}
.y50{bottom:636.733333pt;}
.y189{bottom:639.293333pt;}
.y212{bottom:640.733333pt;}
.y1ad{bottom:642.813333pt;}
.y7d{bottom:644.253333pt;}
.y11b{bottom:647.293333pt;}
.yda{bottom:648.413333pt;}
.yb1{bottom:650.813333pt;}
.y1ee{bottom:650.973333pt;}
.y15a{bottom:651.293333pt;}
.y14{bottom:652.253333pt;}
.y4f{bottom:652.733333pt;}
.y188{bottom:655.133333pt;}
.y1ac{bottom:658.813333pt;}
.y7c{bottom:660.253333pt;}
.y11a{bottom:663.133333pt;}
.y211{bottom:663.933333pt;}
.yd9{bottom:665.053333pt;}
.yb0{bottom:666.813333pt;}
.y159{bottom:667.133333pt;}
.y4e{bottom:668.573333pt;}
.y187{bottom:670.973333pt;}
.y1ab{bottom:674.653333pt;}
.y101{bottom:674.813333pt;}
.y7b{bottom:676.093333pt;}
.y119{bottom:678.813333pt;}
.yd8{bottom:680.893333pt;}
.yaf{bottom:682.653333pt;}
.y1ed{bottom:682.813333pt;}
.y4d{bottom:684.413333pt;}
.y186{bottom:686.813333pt;}
.y1aa{bottom:690.493333pt;}
.y100{bottom:690.653333pt;}
.y158{bottom:690.973333pt;}
.y13{bottom:691.293333pt;}
.y7a{bottom:691.613333pt;}
.y118{bottom:694.653333pt;}
.yd7{bottom:696.733333pt;}
.yae{bottom:698.493333pt;}
.y1ec{bottom:698.653333pt;}
.y4c{bottom:700.253333pt;}
.y185{bottom:702.653333pt;}
.y1a9{bottom:706.333333pt;}
.yff{bottom:706.493333pt;}
.y157{bottom:706.813333pt;}
.yd6{bottom:712.733333pt;}
.yad{bottom:714.333333pt;}
.y1eb{bottom:714.493333pt;}
.y79{bottom:715.773333pt;}
.y4b{bottom:716.093333pt;}
.y184{bottom:718.493333pt;}
.y117{bottom:718.813333pt;}
.y1c9{bottom:722.173333pt;}
.yfe{bottom:722.333333pt;}
.y156{bottom:722.813333pt;}
.yd5{bottom:729.373333pt;}
.yac{bottom:730.173333pt;}
.y1ea{bottom:730.333333pt;}
.y78{bottom:731.613333pt;}
.y4a{bottom:733.693333pt;}
.y183{bottom:734.493333pt;}
.y116{bottom:734.653333pt;}
.y12{bottom:736.413333pt;}
.yfd{bottom:738.173333pt;}
.y155{bottom:738.653333pt;}
.yd4{bottom:745.213333pt;}
.yab{bottom:746.173333pt;}
.y77{bottom:747.613333pt;}
.y182{bottom:750.333333pt;}
.y115{bottom:750.493333pt;}
.y1c8{bottom:754.013333pt;}
.yfc{bottom:754.173333pt;}
.y154{bottom:754.493333pt;}
.y49{bottom:756.733333pt;}
.yd3{bottom:761.213333pt;}
.yaa{bottom:762.013333pt;}
.y1e9{bottom:762.173333pt;}
.y76{bottom:763.453333pt;}
.y181{bottom:766.173333pt;}
.y114{bottom:766.333333pt;}
.yfb{bottom:770.013333pt;}
.y153{bottom:770.333333pt;}
.y11{bottom:777.373333pt;}
.ya9{bottom:777.853333pt;}
.y1e8{bottom:778.013333pt;}
.y75{bottom:779.293333pt;}
.y113{bottom:782.333333pt;}
.y48{bottom:785.853333pt;}
.y180{bottom:790.013333pt;}
.y1a8{bottom:793.693333pt;}
.y1e7{bottom:793.853333pt;}
.y152{bottom:794.173333pt;}
.y74{bottom:795.133333pt;}
.y112{bottom:798.173333pt;}
.y10{bottom:799.773333pt;}
.y47{bottom:801.693333pt;}
.y17f{bottom:806.013333pt;}
.y1a7{bottom:809.573333pt;}
.y1e6{bottom:809.733333pt;}
.y151{bottom:810.053333pt;}
.y111{bottom:814.053333pt;}
.yf{bottom:817.413333pt;}
.y46{bottom:817.573333pt;}
.y73{bottom:819.013333pt;}
.y17e{bottom:822.693333pt;}
.y1a6{bottom:825.413333pt;}
.y1e5{bottom:825.573333pt;}
.y150{bottom:826.053333pt;}
.y110{bottom:829.893333pt;}
.y45{bottom:833.413333pt;}
.ye{bottom:835.173333pt;}
.y17d{bottom:839.493333pt;}
.y1a5{bottom:841.413333pt;}
.y14f{bottom:841.893333pt;}
.y72{bottom:842.853333pt;}
.y10f{bottom:845.733333pt;}
.y44{bottom:849.413333pt;}
.yd{bottom:852.453333pt;}
.y17c{bottom:856.133333pt;}
.y1a4{bottom:857.253333pt;}
.y1e4{bottom:857.413333pt;}
.y14e{bottom:857.733333pt;}
.y71{bottom:858.853333pt;}
.y10e{bottom:861.573333pt;}
.y43{bottom:865.253333pt;}
.yc{bottom:870.373333pt;}
.y17b{bottom:872.133333pt;}
.y1a3{bottom:872.773333pt;}
.y1c7{bottom:873.093333pt;}
.y1e3{bottom:873.253333pt;}
.y70{bottom:874.693333pt;}
.y10d{bottom:877.573333pt;}
.y42{bottom:881.093333pt;}
.y14d{bottom:881.573333pt;}
.y17a{bottom:888.773333pt;}
.y1c6{bottom:888.933333pt;}
.y1e2{bottom:889.093333pt;}
.y41{bottom:896.933333pt;}
.y10c{bottom:901.413333pt;}
.y6f{bottom:904.613333pt;}
.y1c5{bottom:904.773333pt;}
.ya8{bottom:904.933333pt;}
.y14c{bottom:905.413333pt;}
.ya1{bottom:905.573333pt;}
.yb{bottom:905.893333pt;}
.y40{bottom:912.773333pt;}
.ya{bottom:916.613333pt;}
.y10b{bottom:917.253333pt;}
.y179{bottom:920.613333pt;}
.ya7{bottom:920.773333pt;}
.y14b{bottom:921.413333pt;}
.y9{bottom:927.333333pt;}
.y3f{bottom:928.773333pt;}
.y10a{bottom:934.053333pt;}
.ya6{bottom:936.773333pt;}
.y8{bottom:938.053333pt;}
.y13e{bottom:940.933333pt;}
.y3e{bottom:944.613333pt;}
.y109{bottom:950.853333pt;}
.y7{bottom:951.013333pt;}
.ya5{bottom:952.613333pt;}
.y3d{bottom:960.453333pt;}
.y9f{bottom:966.080000pt;}
.y108{bottom:967.493333pt;}
.ya4{bottom:968.453333pt;}
.y6{bottom:973.733333pt;}
.y3c{bottom:976.293333pt;}
.ya3{bottom:984.293333pt;}
.y3b{bottom:992.133333pt;}
.ya2{bottom:1000.133333pt;}
.yd2{bottom:1007.973333pt;}
.y3a{bottom:1015.973333pt;}
.y107{bottom:1024.000000pt;}
.y39{bottom:1032.000000pt;}
.y9e{bottom:1036.960000pt;}
.y38{bottom:1047.840000pt;}
.y37{bottom:1063.680000pt;}
.h1b{height:23.840000pt;}
.h18{height:25.760000pt;}
.h2{height:27.676000pt;}
.h17{height:33.515625pt;}
.h7{height:36.431250pt;}
.h15{height:40.410625pt;}
.h19{height:43.215000pt;}
.h16{height:47.085938pt;}
.h3{height:47.109375pt;}
.h1e{height:47.742188pt;}
.hf{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h14{height:52.108438pt;}
.h8{height:52.134375pt;}
.h1c{height:53.436000pt;}
.h9{height:53.535000pt;}
.hd{height:57.787500pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.hc{height:63.311250pt;}
.hb{height:64.290000pt;}
.h10{height:69.660000pt;}
.h13{height:69.789000pt;}
.h11{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h1d{height:132.980000pt;}
.h12{height:204.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w5{width:315.200000pt;}
.w7{width:345.813333pt;}
.w6{width:348.729333pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x14{left:9.600000pt;}
.x1b{left:10.493333pt;}
.x21{left:30.908000pt;}
.x13{left:34.080000pt;}
.x1{left:40.324000pt;}
.x15{left:43.680000pt;}
.x1f{left:46.108000pt;}
.x5{left:48.000000pt;}
.x1e{left:49.284000pt;}
.x22{left:54.908000pt;}
.xd{left:58.240000pt;}
.x12{left:72.000000pt;}
.x16{left:96.032000pt;}
.xf{left:173.466667pt;}
.x2{left:197.662667pt;}
.xb{left:212.506667pt;}
.xc{left:227.706667pt;}
.xe{left:232.826667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x9{left:264.706667pt;}
.x10{left:279.426667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x20{left:398.666667pt;}
.x11{left:420.893333pt;}
.x1a{left:433.280000pt;}
.x1c{left:440.093333pt;}
.x18{left:444.893333pt;}
.x1d{left:468.893333pt;}
.x19{left:491.453333pt;}
.x4{left:682.213333pt;}
.x17{left:750.880000pt;}
}




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