
    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_31d7c203493009a67493e39b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4ab15f17c8469bfd6433fff6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4cd3d1e546f8a08a4bd96878.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aa51d3b0f4cb6d7d84fc1412.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_ef6d220997bf06e35c90264a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_bce1806c24a635bc8de0abc0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_861cb079d880a46302d43920.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fbf2935c1bab77706772120b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.701660;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_4052230a799ef2311bbefa27.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bacbd6598f920e9ccfe97b84.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e1d65e205ffb26f0733c733b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_712888ea888431b2b9162c80.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2f87bb06e54bf6929ef9cbba.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_628905ac1401d1f257979676.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.897461;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;}
.m3{transform:matrix(0.231976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231976,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,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:-69.120000px;}
.v3{vertical-align:-23.514883px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.330720px;}
.v6{vertical-align:20.880000px;}
.v2{vertical-align:23.514883px;}
.v5{vertical-align:26.645759px;}
.lse{letter-spacing:-1.424262px;}
.ls20{letter-spacing:-1.386000px;}
.lsf{letter-spacing:-1.274654px;}
.ls22{letter-spacing:-1.236000px;}
.ls21{letter-spacing:-1.182000px;}
.ls23{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.666000px;}
.lsd{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.531600px;}
.ls3{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.358385px;}
.ls6{letter-spacing:-0.342600px;}
.ls13{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.220800px;}
.ls8{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.192516px;}
.ls1c{letter-spacing:-0.083268px;}
.ls18{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.070560px;}
.ls1b{letter-spacing:0.083268px;}
.lsa{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.900000px;}
.ls25{letter-spacing:11.700000px;}
.ls24{letter-spacing:18.000000px;}
.ls19{letter-spacing:21.136915px;}
.lsc{letter-spacing:43.866720px;}
.ls1a{letter-spacing:502.708390px;}
.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;}
}
.ws19{word-spacing:-60.120000px;}
.ws10{word-spacing:-59.760000px;}
.ws11{word-spacing:-16.695234px;}
.wsd{word-spacing:-16.494207px;}
.ws6{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.046800px;}
.wsc{word-spacing:-15.035536px;}
.wsb{word-spacing:-14.998134px;}
.wse{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.680200px;}
.ws18{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.ws15{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.758000px;}
.ws14{word-spacing:-13.704000px;}
.ws12{word-spacing:-13.554000px;}
.ws9{word-spacing:-13.502061px;}
.ws5{word-spacing:-12.780000px;}
.ws4{word-spacing:-12.437400px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.wsa{word-spacing:-12.005988px;}
.ws16{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-4.793101px;}
._9{margin-left:-3.525840px;}
._8{margin-left:-2.509920px;}
._2{margin-left:-1.015440px;}
._0{width:1.135440px;}
._3{width:2.637120px;}
._b{width:4.482000px;}
._a{width:5.497920px;}
._d{width:6.912000px;}
._c{width:8.007840px;}
._1c{width:9.023760px;}
._6{width:10.159200px;}
._7{width:11.832480px;}
._e{width:13.804560px;}
._16{width:16.075440px;}
._11{width:17.629200px;}
._5{width:18.704880px;}
._4{width:19.959840px;}
._15{width:21.095280px;}
._14{width:22.111200px;}
._1e{width:23.341680px;}
._f{width:24.860160px;}
._1b{width:25.876080px;}
._10{width:27.189840px;}
._13{width:28.744560px;}
._12{width:29.984400px;}
._18{width:31.134480px;}
._17{width:32.449680px;}
._1f{width:33.585120px;}
._1d{width:35.497440px;}
._1a{width:45.835920px;}
._19{width:46.911600px;}
._21{width:60.656400px;}
._22{width:155.495520px;}
._23{width:406.905840px;}
._24{width:408.045360px;}
._1{width:482.162160px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs15{font-size:43.465895px;}
.fsb{font-size:48.023951px;}
.fs8{font-size:48.240000px;}
.fs14{font-size:50.127335px;}
.fs9{font-size:51.120000px;}
.fs10{font-size:54.000000px;}
.fsa{font-size:54.008244px;}
.fsf{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs12{font-size:59.952959px;}
.fsc{font-size:59.992537px;}
.fs3{font-size:60.000000px;}
.fs13{font-size:60.119495px;}
.fsd{font-size:60.142144px;}
.fs1{font-size:63.000000px;}
.fse{font-size:65.976830px;}
.fs11{font-size:66.780935px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:90.000000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:3.240000px;}
.y166{bottom:3.420000px;}
.y15d{bottom:7.560000px;}
.y161{bottom:7.740000px;}
.y3b{bottom:10.080000px;}
.y155{bottom:10.193668px;}
.y3c{bottom:10.620000px;}
.y148{bottom:10.776544px;}
.ye3{bottom:11.145746px;}
.y125{bottom:11.700000px;}
.y128{bottom:11.880000px;}
.y171{bottom:12.600000px;}
.y160{bottom:15.300000px;}
.y38{bottom:17.460000px;}
.y36{bottom:18.360000px;}
.yfd{bottom:20.340000px;}
.yf3{bottom:20.520000px;}
.y39{bottom:24.300000px;}
.y163{bottom:27.180000px;}
.y15f{bottom:27.360000px;}
.y37{bottom:30.060000px;}
.y15b{bottom:32.625000px;}
.yf6{bottom:37.620000px;}
.yf2{bottom:37.800000px;}
.y170{bottom:38.340000px;}
.y151{bottom:42.849712px;}
.ye1{bottom:50.109477px;}
.y6{bottom:50.595005px;}
.y14b{bottom:52.134094px;}
.y14f{bottom:53.118321px;}
.yf5{bottom:54.900000px;}
.yf1{bottom:55.080000px;}
.y15a{bottom:56.745000px;}
.y150{bottom:60.377626px;}
.y14a{bottom:71.369001px;}
.yf0{bottom:72.180000px;}
.y5{bottom:75.795004px;}
.ydd{bottom:77.375412px;}
.yd8{bottom:83.733723px;}
.yef{bottom:89.460000px;}
.ydf{bottom:91.326295px;}
.ydc{bottom:91.625510px;}
.yd7{bottom:98.731857px;}
.y4{bottom:100.995005px;}
.ydb{bottom:105.127571px;}
.yee{bottom:106.740000px;}
.y153{bottom:120.746924px;}
.yfc{bottom:123.840000px;}
.y22{bottom:139.264499px;}
.ye0{bottom:140.846319px;}
.yfb{bottom:141.120000px;}
.yde{bottom:141.594356px;}
.yfa{bottom:158.400000px;}
.yf9{bottom:175.680000px;}
.y5a{bottom:187.410000px;}
.yf8{bottom:193.005000px;}
.y19{bottom:196.933500px;}
.yda{bottom:204.124233px;}
.y14d{bottom:207.836924px;}
.y59{bottom:208.110000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yd9{bottom:219.877884px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y14c{bottom:224.540484px;}
.y58{bottom:228.810000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y52{bottom:243.030000px;}
.y57{bottom:249.510000px;}
.y152{bottom:255.133147px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y51{bottom:261.030000px;}
.y56{bottom:270.210000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y50{bottom:279.030000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y55{bottom:290.910000px;}
.y4f{bottom:297.030000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5b{bottom:311.115000px;}
.y54{bottom:311.655000px;}
.y4e{bottom:315.075000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y86{bottom:331.815000px;}
.y85{bottom:332.355000px;}
.y4d{bottom:333.075000px;}
.y84{bottom:333.435000px;}
.y146{bottom:336.495000px;}
.yd5{bottom:337.215000px;}
.y178{bottom:339.555000px;}
.y177{bottom:342.795000px;}
.y10a{bottom:344.235000px;}
.yb5{bottom:345.495000px;}
.y10{bottom:348.133500px;}
.y4c{bottom:351.075000px;}
.y83{bottom:351.435000px;}
.y145{bottom:354.495000px;}
.yd4{bottom:355.215000px;}
.yea{bottom:355.575000px;}
.ycb{bottom:357.555000px;}
.y176{bottom:359.535000px;}
.yb4{bottom:363.495000px;}
.y109{bottom:368.175000px;}
.y4b{bottom:369.075000px;}
.y82{bottom:369.435000px;}
.ye9{bottom:372.855000px;}
.yd3{bottom:373.215000px;}
.yca{bottom:375.555000px;}
.y175{bottom:377.535000px;}
.y144{bottom:378.435000px;}
.yaa{bottom:381.495000px;}
.y12c{bottom:382.935000px;}
.yf{bottom:386.785499px;}
.y4a{bottom:387.075000px;}
.y81{bottom:387.435000px;}
.ye8{bottom:390.135000px;}
.y108{bottom:392.115000px;}
.yc9{bottom:393.555000px;}
.y143{bottom:396.435000px;}
.yd2{bottom:397.155000px;}
.ya9{bottom:399.495000px;}
.y174{bottom:404.175000px;}
.y49{bottom:405.075000px;}
.y80{bottom:405.435000px;}
.y12b{bottom:407.055000px;}
.ye7{bottom:407.415000px;}
.ye{bottom:408.044999px;}
.yc8{bottom:411.555000px;}
.y142{bottom:414.435000px;}
.y107{bottom:416.235000px;}
.ya8{bottom:417.495000px;}
.yd1{bottom:421.275000px;}
.y48{bottom:423.075000px;}
.y7f{bottom:423.435000px;}
.ye6{bottom:424.695000px;}
.yc7{bottom:429.555000px;}
.y173{bottom:430.815000px;}
.y12a{bottom:430.995000px;}
.y141{bottom:432.435000px;}
.y106{bottom:434.235000px;}
.ya7{bottom:435.495000px;}
.y47{bottom:441.075000px;}
.y7e{bottom:441.435000px;}
.ye5{bottom:441.975000px;}
.yd0{bottom:445.215000px;}
.yc6{bottom:447.555000px;}
.y129{bottom:449.175000px;}
.y140{bottom:450.435000px;}
.y105{bottom:452.235000px;}
.ya6{bottom:453.495000px;}
.y16f{bottom:457.455000px;}
.y46{bottom:459.075000px;}
.yb3{bottom:459.435000px;}
.y7d{bottom:465.555000px;}
.yd6{bottom:468.000000px;}
.y13f{bottom:468.435000px;}
.y104{bottom:470.235000px;}
.ya5{bottom:471.495000px;}
.ye2{bottom:471.693954px;}
.y127{bottom:475.815000px;}
.y45{bottom:477.075000px;}
.yb2{bottom:477.435000px;}
.y7c{bottom:483.555000px;}
.y172{bottom:484.095000px;}
.y13e{bottom:486.435000px;}
.y103{bottom:488.235000px;}
.ya4{bottom:489.495000px;}
.y44{bottom:495.075000px;}
.yb1{bottom:495.435000px;}
.y7b{bottom:501.555000px;}
.y126{bottom:502.455000px;}
.yd{bottom:502.864502px;}
.y13d{bottom:504.435000px;}
.y102{bottom:506.235000px;}
.ya3{bottom:507.495000px;}
.y43{bottom:513.075000px;}
.yb0{bottom:513.435000px;}
.y7a{bottom:519.555000px;}
.y16e{bottom:520.275000px;}
.yc{bottom:520.864502px;}
.y13c{bottom:522.435000px;}
.ya2{bottom:525.495000px;}
.y124{bottom:529.095000px;}
.y101{bottom:530.175000px;}
.y42{bottom:531.075000px;}
.yaf{bottom:531.435000px;}
.y79{bottom:537.555000px;}
.yb{bottom:538.864499px;}
.y13b{bottom:540.435000px;}
.ya1{bottom:543.495000px;}
.y16d{bottom:544.215000px;}
.y41{bottom:549.075000px;}
.yc4{bottom:549.435000px;}
.y100{bottom:554.115000px;}
.y78{bottom:555.555000px;}
.ya{bottom:556.864499px;}
.y13a{bottom:558.435000px;}
.ya0{bottom:561.525000px;}
.y16c{bottom:562.245000px;}
.y123{bottom:565.305000px;}
.y40{bottom:567.105000px;}
.yc3{bottom:567.465000px;}
.yff{bottom:572.145000px;}
.y77{bottom:573.585000px;}
.y139{bottom:576.465000px;}
.y9f{bottom:579.525000px;}
.y16b{bottom:580.245000px;}
.y3f{bottom:585.105000px;}
.yc2{bottom:585.465000px;}
.y122{bottom:589.245000px;}
.y76{bottom:591.585000px;}
.y138{bottom:594.465000px;}
.yfe{bottom:596.265000px;}
.y9e{bottom:597.525000px;}
.y16a{bottom:598.245000px;}
.yc1{bottom:603.465000px;}
.y121{bottom:607.245000px;}
.y3e{bottom:609.045000px;}
.y75{bottom:609.585000px;}
.y137{bottom:612.465000px;}
.y9d{bottom:615.525000px;}
.y169{bottom:616.245000px;}
.yf7{bottom:620.385000px;}
.yc5{bottom:621.465000px;}
.y120{bottom:625.245000px;}
.y3d{bottom:626.685000px;}
.y74{bottom:627.585000px;}
.y136{bottom:630.465000px;}
.ye4{bottom:633.525000px;}
.y9c{bottom:639.465000px;}
.y168{bottom:640.185000px;}
.y3a{bottom:640.725000px;}
.y11f{bottom:643.245000px;}
.y9{bottom:645.510000px;}
.ybf{bottom:645.585000px;}
.y135{bottom:648.465000px;}
.y73{bottom:651.525000px;}
.y9b{bottom:657.465000px;}
.y167{bottom:658.185000px;}
.y11e{bottom:661.245000px;}
.y35{bottom:662.685000px;}
.ybe{bottom:663.585000px;}
.y134{bottom:666.465000px;}
.y8{bottom:666.771000px;}
.y72{bottom:669.525000px;}
.y9a{bottom:675.465000px;}
.y165{bottom:676.365000px;}
.y11d{bottom:679.245000px;}
.ybd{bottom:681.585000px;}
.y133{bottom:684.465000px;}
.y71{bottom:687.525000px;}
.y99{bottom:693.465000px;}
.y11c{bottom:697.245000px;}
.ybc{bottom:699.585000px;}
.y164{bottom:701.205000px;}
.y34{bottom:701.565000px;}
.y132{bottom:702.465000px;}
.y70{bottom:705.525000px;}
.y98{bottom:711.465000px;}
.ybb{bottom:717.585000px;}
.y33{bottom:718.845000px;}
.y131{bottom:720.465000px;}
.y11b{bottom:721.365000px;}
.y6f{bottom:723.525000px;}
.y7{bottom:726.298500px;}
.y97{bottom:729.465000px;}
.yc0{bottom:735.585000px;}
.y32{bottom:736.125000px;}
.y130{bottom:738.465000px;}
.y6e{bottom:741.525000px;}
.y11a{bottom:745.305000px;}
.y96{bottom:747.465000px;}
.y162{bottom:749.985000px;}
.y3{bottom:752.599495px;}
.y31{bottom:753.405000px;}
.y158{bottom:753.585000px;}
.y12f{bottom:756.465000px;}
.y6d{bottom:759.525000px;}
.y119{bottom:763.305000px;}
.y95{bottom:765.465000px;}
.y30{bottom:770.505000px;}
.y157{bottom:771.585000px;}
.y6c{bottom:777.525000px;}
.y12e{bottom:780.585000px;}
.y118{bottom:781.305000px;}
.y94{bottom:783.465000px;}
.y2f{bottom:787.785000px;}
.y156{bottom:789.585000px;}
.y6b{bottom:795.525000px;}
.y159{bottom:798.585000px;}
.y12d{bottom:800.925000px;}
.yae{bottom:801.465000px;}
.y149{bottom:803.250000px;}
.y2e{bottom:805.065000px;}
.y117{bottom:805.245000px;}
.y93{bottom:807.585000px;}
.y6a{bottom:813.570000px;}
.yba{bottom:819.510000px;}
.y2d{bottom:822.390000px;}
.y147{bottom:823.041138px;}
.y116{bottom:823.290000px;}
.y92{bottom:825.630000px;}
.y14e{bottom:827.204538px;}
.y15e{bottom:827.970000px;}
.yf4{bottom:828.150000px;}
.y69{bottom:831.570000px;}
.yb9{bottom:837.510000px;}
.y2c{bottom:839.670000px;}
.y115{bottom:841.290000px;}
.y91{bottom:843.630000px;}
.y68{bottom:849.570000px;}
.yb8{bottom:855.510000px;}
.y2b{bottom:856.950000px;}
.y114{bottom:859.290000px;}
.y90{bottom:861.630000px;}
.y67{bottom:867.570000px;}
.yb7{bottom:873.510000px;}
.y2a{bottom:876.210000px;}
.y15c{bottom:876.750000px;}
.y113{bottom:877.290000px;}
.y2{bottom:879.369000px;}
.y8f{bottom:879.630000px;}
.ycf{bottom:885.570000px;}
.y66{bottom:891.510000px;}
.y112{bottom:895.290000px;}
.y8e{bottom:897.630000px;}
.y29{bottom:903.390000px;}
.yce{bottom:903.570000px;}
.y65{bottom:909.510000px;}
.y111{bottom:913.290000px;}
.y154{bottom:913.803256px;}
.yed{bottom:915.090000px;}
.y8d{bottom:915.630000px;}
.ycd{bottom:921.570000px;}
.y64{bottom:927.510000px;}
.y28{bottom:929.130000px;}
.y8c{bottom:933.630000px;}
.y110{bottom:937.410000px;}
.yad{bottom:939.570000px;}
.y63{bottom:945.510000px;}
.y8b{bottom:951.630000px;}
.y27{bottom:955.050000px;}
.yac{bottom:957.570000px;}
.y10f{bottom:961.350000px;}
.y62{bottom:963.510000px;}
.y1{bottom:966.726000px;}
.y8a{bottom:969.630000px;}
.yab{bottom:975.570000px;}
.y10e{bottom:979.350000px;}
.y26{bottom:980.970000px;}
.y61{bottom:981.510000px;}
.y89{bottom:987.630000px;}
.ycc{bottom:993.570000px;}
.y10d{bottom:997.350000px;}
.y60{bottom:999.510000px;}
.y88{bottom:1005.630000px;}
.yb6{bottom:1011.570000px;}
.y10c{bottom:1015.350000px;}
.y5f{bottom:1023.630000px;}
.y87{bottom:1029.570000px;}
.y25{bottom:1031.550000px;}
.yec{bottom:1036.590000px;}
.y10b{bottom:1039.290000px;}
.y5e{bottom:1047.570000px;}
.y24{bottom:1048.650000px;}
.y5d{bottom:1065.600000px;}
.y23{bottom:1065.960000px;}
.yeb{bottom:1066.680000px;}
.y53{bottom:1119.960000px;}
.h13{height:17.280000px;}
.h10{height:21.960000px;}
.h35{height:24.120000px;}
.h23{height:25.740000px;}
.h24{height:25.920000px;}
.h31{height:28.440000px;}
.h33{height:28.656000px;}
.h2e{height:31.641839px;}
.h7{height:32.130000px;}
.h1c{height:32.913611px;}
.h26{height:33.307199px;}
.hd{height:35.640000px;}
.h6{height:45.900000px;}
.h19{height:47.132882px;}
.hf{height:47.344922px;}
.h34{height:47.880000px;}
.h32{height:48.060000px;}
.h3{height:48.195000px;}
.he{height:48.616875px;}
.h11{height:50.171484px;}
.h36{height:52.380000px;}
.h15{height:52.435898px;}
.h25{height:52.998047px;}
.h18{height:53.006138px;}
.h2{height:55.080000px;}
.h1e{height:57.324375px;}
.h14{height:58.621992px;}
.h9{height:58.651172px;}
.h29{height:58.840550px;}
.h1a{height:58.879394px;}
.h2a{height:59.003996px;}
.h1b{height:59.026226px;}
.h2d{height:59.946941px;}
.ha{height:60.226875px;}
.h16{height:61.423863px;}
.h1f{height:62.211094px;}
.h5{height:64.260000px;}
.h1d{height:64.752650px;}
.h27{height:65.541835px;}
.h2c{height:65.760869px;}
.h2f{height:68.891746px;}
.h12{height:70.664062px;}
.h2b{height:74.108518px;}
.h21{height:86.220000px;}
.hb{height:90.703125px;}
.hc{height:93.983203px;}
.h30{height:106.596000px;}
.h4{height:119.055004px;}
.h20{height:120.780000px;}
.h22{height:207.030000px;}
.h17{height:267.002695px;}
.h28{height:274.500000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:22.716000px;}
.w1e{width:40.536000px;}
.w28{width:49.320000px;}
.wf{width:53.460000px;}
.w20{width:54.900000px;}
.w22{width:54.936000px;}
.w21{width:55.080000px;}
.w26{width:56.700000px;}
.w10{width:57.096000px;}
.wd{width:58.356000px;}
.w1d{width:62.100000px;}
.w1f{width:62.280000px;}
.w29{width:69.660000px;}
.w27{width:73.296000px;}
.w13{width:73.440000px;}
.we{width:74.700000px;}
.w15{width:81.128016px;}
.w18{width:86.536550px;}
.wb{width:101.112300px;}
.w17{width:105.852744px;}
.w14{width:114.156000px;}
.w25{width:119.700000px;}
.w12{width:127.296000px;}
.w5{width:130.716000px;}
.w24{width:130.896000px;}
.w23{width:132.120000px;}
.w6{width:133.200000px;}
.w8{width:134.676000px;}
.w19{width:138.816000px;}
.w11{width:140.796000px;}
.w7{width:141.516000px;}
.wc{width:151.050000px;}
.w1c{width:166.350000px;}
.w1b{width:166.530000px;}
.w1a{width:333.615000px;}
.wa{width:512.251005px;}
.w16{width:528.442337px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x38{left:9.900000px;}
.x2a{left:11.129843px;}
.x33{left:12.780000px;}
.x3f{left:14.220000px;}
.x31{left:15.840000px;}
.x59{left:17.820000px;}
.x56{left:21.420000px;}
.x35{left:24.120000px;}
.x41{left:26.100000px;}
.x42{left:27.360000px;}
.x5c{left:28.800000px;}
.x50{left:30.600000px;}
.x36{left:31.905000px;}
.x3b{left:33.660000px;}
.x34{left:36.405000px;}
.x22{left:38.535006px;}
.x53{left:39.600000px;}
.x37{left:41.265000px;}
.x24{left:42.279906px;}
.x2d{left:43.425000px;}
.x3e{left:47.700000px;}
.x54{left:48.960000px;}
.x40{left:50.220000px;}
.x23{left:56.547975px;}
.x5d{left:61.605000px;}
.x60{left:65.880000px;}
.x1{left:102.045000px;}
.x52{left:105.150000px;}
.x2{left:106.297500px;}
.x4d{left:175.190139px;}
.x25{left:177.313510px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x46{left:222.397663px;}
.x6{left:223.949986px;}
.x16{left:227.189986px;}
.x21{left:231.285009px;}
.x1e{left:232.498995px;}
.x8{left:235.829986px;}
.x10{left:238.169986px;}
.x1a{left:243.029986px;}
.x49{left:244.804433px;}
.x4f{left:249.510000px;}
.x7{left:253.289986px;}
.x26{left:254.578287px;}
.x3a{left:257.070000px;}
.x1b{left:270.029986px;}
.x28{left:274.081726px;}
.xc{left:278.489986px;}
.xd{left:281.009986px;}
.x2c{left:287.310000px;}
.x5f{left:294.015000px;}
.x27{left:314.571585px;}
.x65{left:324.074986px;}
.x4a{left:342.329305px;}
.x17{left:345.314986px;}
.x12{left:346.755000px;}
.x5e{left:359.174986px;}
.xf{left:362.954986px;}
.x4e{left:370.334986px;}
.x44{left:380.414986px;}
.x1d{left:385.454986px;}
.x51{left:389.055000px;}
.xe{left:390.314986px;}
.x39{left:395.894986px;}
.x2b{left:397.154986px;}
.x11{left:399.314986px;}
.x20{left:405.303022px;}
.x48{left:412.717516px;}
.x19{left:415.154986px;}
.xb{left:416.954986px;}
.x1f{left:419.578581px;}
.x9{left:420.734986px;}
.x61{left:426.855000px;}
.x47{left:430.519321px;}
.x4b{left:435.927855px;}
.x2e{left:439.095000px;}
.x45{left:441.056966px;}
.x29{left:442.213380px;}
.x57{left:452.055000px;}
.x3{left:454.959000px;}
.x18{left:474.735000px;}
.x14{left:479.955000px;}
.x63{left:484.455000px;}
.xa{left:486.104986px;}
.x58{left:493.305000px;}
.x2f{left:498.165000px;}
.x3c{left:526.785000px;}
.x55{left:556.305000px;}
.x62{left:558.465000px;}
.x30{left:573.585000px;}
.x3d{left:600.945000px;}
.x64{left:608.505000px;}
.x5a{left:611.925000px;}
.x15{left:621.465000px;}
.x32{left:627.765000px;}
.x4c{left:646.581272px;}
.x5b{left:667.725000px;}
.x1c{left:747.149986px;}
.x43{left:752.729986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-20.902118pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.960640pt;}
.v6{vertical-align:18.560000pt;}
.v2{vertical-align:20.902118pt;}
.v5{vertical-align:23.685120pt;}
.lse{letter-spacing:-1.266010pt;}
.ls20{letter-spacing:-1.232000pt;}
.lsf{letter-spacing:-1.133026pt;}
.ls22{letter-spacing:-1.098667pt;}
.ls21{letter-spacing:-1.050667pt;}
.ls23{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.592000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.472533pt;}
.ls3{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.318565pt;}
.ls6{letter-spacing:-0.304533pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.196267pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.171125pt;}
.ls1c{letter-spacing:-0.074016pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.062720pt;}
.ls1b{letter-spacing:0.074016pt;}
.lsa{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.800000pt;}
.ls25{letter-spacing:10.400000pt;}
.ls24{letter-spacing:16.000000pt;}
.ls19{letter-spacing:18.788369pt;}
.lsc{letter-spacing:38.992640pt;}
.ls1a{letter-spacing:446.851902pt;}
.ws19{word-spacing:-53.440000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws11{word-spacing:-14.840208pt;}
.wsd{word-spacing:-14.661518pt;}
.ws6{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.364921pt;}
.wsb{word-spacing:-13.331675pt;}
.wse{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.049067pt;}
.ws18{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.ws15{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.229333pt;}
.ws14{word-spacing:-12.181333pt;}
.ws12{word-spacing:-12.048000pt;}
.ws9{word-spacing:-12.001832pt;}
.ws5{word-spacing:-11.360000pt;}
.ws4{word-spacing:-11.055467pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.671989pt;}
.ws16{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-4.260534pt;}
._9{margin-left:-3.134080pt;}
._8{margin-left:-2.231040pt;}
._2{margin-left:-0.902613pt;}
._0{width:1.009280pt;}
._3{width:2.344107pt;}
._b{width:3.984000pt;}
._a{width:4.887040pt;}
._d{width:6.144000pt;}
._c{width:7.118080pt;}
._1c{width:8.021120pt;}
._6{width:9.030400pt;}
._7{width:10.517760pt;}
._e{width:12.270720pt;}
._16{width:14.289280pt;}
._11{width:15.670400pt;}
._5{width:16.626560pt;}
._4{width:17.742080pt;}
._15{width:18.751360pt;}
._14{width:19.654400pt;}
._1e{width:20.748160pt;}
._f{width:22.097920pt;}
._1b{width:23.000960pt;}
._10{width:24.168747pt;}
._13{width:25.550720pt;}
._12{width:26.652800pt;}
._18{width:27.675093pt;}
._17{width:28.844160pt;}
._1f{width:29.853440pt;}
._1d{width:31.553280pt;}
._1a{width:40.743040pt;}
._19{width:41.699200pt;}
._21{width:53.916800pt;}
._22{width:138.218240pt;}
._23{width:361.694080pt;}
._24{width:362.706987pt;}
._1{width:428.588587pt;}
.fs16{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs15{font-size:38.636351pt;}
.fsb{font-size:42.687956pt;}
.fs8{font-size:42.880000pt;}
.fs14{font-size:44.557631pt;}
.fs9{font-size:45.440000pt;}
.fs10{font-size:48.000000pt;}
.fsa{font-size:48.007328pt;}
.fsf{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs12{font-size:53.291519pt;}
.fsc{font-size:53.326699pt;}
.fs3{font-size:53.333333pt;}
.fs13{font-size:53.439551pt;}
.fsd{font-size:53.459684pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.646071pt;}
.fs11{font-size:59.360831pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:80.000000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.880000pt;}
.y166{bottom:3.040000pt;}
.y15d{bottom:6.720000pt;}
.y161{bottom:6.880000pt;}
.y3b{bottom:8.960000pt;}
.y155{bottom:9.061039pt;}
.y3c{bottom:9.440000pt;}
.y148{bottom:9.579151pt;}
.ye3{bottom:9.907329pt;}
.y125{bottom:10.400000pt;}
.y128{bottom:10.560000pt;}
.y171{bottom:11.200000pt;}
.y160{bottom:13.600000pt;}
.y38{bottom:15.520000pt;}
.y36{bottom:16.320000pt;}
.yfd{bottom:18.080000pt;}
.yf3{bottom:18.240000pt;}
.y39{bottom:21.600000pt;}
.y163{bottom:24.160000pt;}
.y15f{bottom:24.320000pt;}
.y37{bottom:26.720000pt;}
.y15b{bottom:29.000000pt;}
.yf6{bottom:33.440000pt;}
.yf2{bottom:33.600000pt;}
.y170{bottom:34.080000pt;}
.y151{bottom:38.088633pt;}
.ye1{bottom:44.541757pt;}
.y6{bottom:44.973338pt;}
.y14b{bottom:46.341417pt;}
.y14f{bottom:47.216286pt;}
.yf5{bottom:48.800000pt;}
.yf1{bottom:48.960000pt;}
.y15a{bottom:50.440000pt;}
.y150{bottom:53.669000pt;}
.y14a{bottom:63.439112pt;}
.yf0{bottom:64.160000pt;}
.y5{bottom:67.373337pt;}
.ydd{bottom:68.778144pt;}
.yd8{bottom:74.429976pt;}
.yef{bottom:79.520000pt;}
.ydf{bottom:81.178929pt;}
.ydc{bottom:81.444897pt;}
.yd7{bottom:87.761651pt;}
.y4{bottom:89.773337pt;}
.ydb{bottom:93.446729pt;}
.yee{bottom:94.880000pt;}
.y153{bottom:107.330599pt;}
.yfc{bottom:110.080000pt;}
.y22{bottom:123.790666pt;}
.ye0{bottom:125.196728pt;}
.yfb{bottom:125.440000pt;}
.yde{bottom:125.861650pt;}
.yfa{bottom:140.800000pt;}
.yf9{bottom:156.160000pt;}
.y5a{bottom:166.586667pt;}
.yf8{bottom:171.560000pt;}
.y19{bottom:175.052000pt;}
.yda{bottom:181.443763pt;}
.y14d{bottom:184.743932pt;}
.y59{bottom:184.986667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yd9{bottom:195.447008pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y14c{bottom:199.591541pt;}
.y58{bottom:203.386667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y52{bottom:216.026667pt;}
.y57{bottom:221.786667pt;}
.y152{bottom:226.785019pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y51{bottom:232.026667pt;}
.y56{bottom:240.186667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y50{bottom:248.026667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y55{bottom:258.586667pt;}
.y4f{bottom:264.026667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5b{bottom:276.546667pt;}
.y54{bottom:277.026667pt;}
.y4e{bottom:280.066667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y86{bottom:294.946667pt;}
.y85{bottom:295.426667pt;}
.y4d{bottom:296.066667pt;}
.y84{bottom:296.386667pt;}
.y146{bottom:299.106667pt;}
.yd5{bottom:299.746667pt;}
.y178{bottom:301.826667pt;}
.y177{bottom:304.706667pt;}
.y10a{bottom:305.986667pt;}
.yb5{bottom:307.106667pt;}
.y10{bottom:309.452000pt;}
.y4c{bottom:312.066667pt;}
.y83{bottom:312.386667pt;}
.y145{bottom:315.106667pt;}
.yd4{bottom:315.746667pt;}
.yea{bottom:316.066667pt;}
.ycb{bottom:317.826667pt;}
.y176{bottom:319.586667pt;}
.yb4{bottom:323.106667pt;}
.y109{bottom:327.266667pt;}
.y4b{bottom:328.066667pt;}
.y82{bottom:328.386667pt;}
.ye9{bottom:331.426667pt;}
.yd3{bottom:331.746667pt;}
.yca{bottom:333.826667pt;}
.y175{bottom:335.586667pt;}
.y144{bottom:336.386667pt;}
.yaa{bottom:339.106667pt;}
.y12c{bottom:340.386667pt;}
.yf{bottom:343.809333pt;}
.y4a{bottom:344.066667pt;}
.y81{bottom:344.386667pt;}
.ye8{bottom:346.786667pt;}
.y108{bottom:348.546667pt;}
.yc9{bottom:349.826667pt;}
.y143{bottom:352.386667pt;}
.yd2{bottom:353.026667pt;}
.ya9{bottom:355.106667pt;}
.y174{bottom:359.266667pt;}
.y49{bottom:360.066667pt;}
.y80{bottom:360.386667pt;}
.y12b{bottom:361.826667pt;}
.ye7{bottom:362.146667pt;}
.ye{bottom:362.706666pt;}
.yc8{bottom:365.826667pt;}
.y142{bottom:368.386667pt;}
.y107{bottom:369.986667pt;}
.ya8{bottom:371.106667pt;}
.yd1{bottom:374.466667pt;}
.y48{bottom:376.066667pt;}
.y7f{bottom:376.386667pt;}
.ye6{bottom:377.506667pt;}
.yc7{bottom:381.826667pt;}
.y173{bottom:382.946667pt;}
.y12a{bottom:383.106667pt;}
.y141{bottom:384.386667pt;}
.y106{bottom:385.986667pt;}
.ya7{bottom:387.106667pt;}
.y47{bottom:392.066667pt;}
.y7e{bottom:392.386667pt;}
.ye5{bottom:392.866667pt;}
.yd0{bottom:395.746667pt;}
.yc6{bottom:397.826667pt;}
.y129{bottom:399.266667pt;}
.y140{bottom:400.386667pt;}
.y105{bottom:401.986667pt;}
.ya6{bottom:403.106667pt;}
.y16f{bottom:406.626667pt;}
.y46{bottom:408.066667pt;}
.yb3{bottom:408.386667pt;}
.y7d{bottom:413.826667pt;}
.yd6{bottom:416.000000pt;}
.y13f{bottom:416.386667pt;}
.y104{bottom:417.986667pt;}
.ya5{bottom:419.106667pt;}
.ye2{bottom:419.283515pt;}
.y127{bottom:422.946667pt;}
.y45{bottom:424.066667pt;}
.yb2{bottom:424.386667pt;}
.y7c{bottom:429.826667pt;}
.y172{bottom:430.306667pt;}
.y13e{bottom:432.386667pt;}
.y103{bottom:433.986667pt;}
.ya4{bottom:435.106667pt;}
.y44{bottom:440.066667pt;}
.yb1{bottom:440.386667pt;}
.y7b{bottom:445.826667pt;}
.y126{bottom:446.626667pt;}
.yd{bottom:446.990669pt;}
.y13d{bottom:448.386667pt;}
.y102{bottom:449.986667pt;}
.ya3{bottom:451.106667pt;}
.y43{bottom:456.066667pt;}
.yb0{bottom:456.386667pt;}
.y7a{bottom:461.826667pt;}
.y16e{bottom:462.466667pt;}
.yc{bottom:462.990669pt;}
.y13c{bottom:464.386667pt;}
.ya2{bottom:467.106667pt;}
.y124{bottom:470.306667pt;}
.y101{bottom:471.266667pt;}
.y42{bottom:472.066667pt;}
.yaf{bottom:472.386667pt;}
.y79{bottom:477.826667pt;}
.yb{bottom:478.990666pt;}
.y13b{bottom:480.386667pt;}
.ya1{bottom:483.106667pt;}
.y16d{bottom:483.746667pt;}
.y41{bottom:488.066667pt;}
.yc4{bottom:488.386667pt;}
.y100{bottom:492.546667pt;}
.y78{bottom:493.826667pt;}
.ya{bottom:494.990666pt;}
.y13a{bottom:496.386667pt;}
.ya0{bottom:499.133333pt;}
.y16c{bottom:499.773333pt;}
.y123{bottom:502.493333pt;}
.y40{bottom:504.093333pt;}
.yc3{bottom:504.413333pt;}
.yff{bottom:508.573333pt;}
.y77{bottom:509.853333pt;}
.y139{bottom:512.413333pt;}
.y9f{bottom:515.133333pt;}
.y16b{bottom:515.773333pt;}
.y3f{bottom:520.093333pt;}
.yc2{bottom:520.413333pt;}
.y122{bottom:523.773333pt;}
.y76{bottom:525.853333pt;}
.y138{bottom:528.413333pt;}
.yfe{bottom:530.013333pt;}
.y9e{bottom:531.133333pt;}
.y16a{bottom:531.773333pt;}
.yc1{bottom:536.413333pt;}
.y121{bottom:539.773333pt;}
.y3e{bottom:541.373333pt;}
.y75{bottom:541.853333pt;}
.y137{bottom:544.413333pt;}
.y9d{bottom:547.133333pt;}
.y169{bottom:547.773333pt;}
.yf7{bottom:551.453333pt;}
.yc5{bottom:552.413333pt;}
.y120{bottom:555.773333pt;}
.y3d{bottom:557.053333pt;}
.y74{bottom:557.853333pt;}
.y136{bottom:560.413333pt;}
.ye4{bottom:563.133333pt;}
.y9c{bottom:568.413333pt;}
.y168{bottom:569.053333pt;}
.y3a{bottom:569.533333pt;}
.y11f{bottom:571.773333pt;}
.y9{bottom:573.786667pt;}
.ybf{bottom:573.853333pt;}
.y135{bottom:576.413333pt;}
.y73{bottom:579.133333pt;}
.y9b{bottom:584.413333pt;}
.y167{bottom:585.053333pt;}
.y11e{bottom:587.773333pt;}
.y35{bottom:589.053333pt;}
.ybe{bottom:589.853333pt;}
.y134{bottom:592.413333pt;}
.y8{bottom:592.685334pt;}
.y72{bottom:595.133333pt;}
.y9a{bottom:600.413333pt;}
.y165{bottom:601.213333pt;}
.y11d{bottom:603.773333pt;}
.ybd{bottom:605.853333pt;}
.y133{bottom:608.413333pt;}
.y71{bottom:611.133333pt;}
.y99{bottom:616.413333pt;}
.y11c{bottom:619.773333pt;}
.ybc{bottom:621.853333pt;}
.y164{bottom:623.293333pt;}
.y34{bottom:623.613333pt;}
.y132{bottom:624.413333pt;}
.y70{bottom:627.133333pt;}
.y98{bottom:632.413333pt;}
.ybb{bottom:637.853333pt;}
.y33{bottom:638.973333pt;}
.y131{bottom:640.413333pt;}
.y11b{bottom:641.213333pt;}
.y6f{bottom:643.133333pt;}
.y7{bottom:645.598667pt;}
.y97{bottom:648.413333pt;}
.yc0{bottom:653.853333pt;}
.y32{bottom:654.333333pt;}
.y130{bottom:656.413333pt;}
.y6e{bottom:659.133333pt;}
.y11a{bottom:662.493333pt;}
.y96{bottom:664.413333pt;}
.y162{bottom:666.653333pt;}
.y3{bottom:668.977329pt;}
.y31{bottom:669.693333pt;}
.y158{bottom:669.853333pt;}
.y12f{bottom:672.413333pt;}
.y6d{bottom:675.133333pt;}
.y119{bottom:678.493333pt;}
.y95{bottom:680.413333pt;}
.y30{bottom:684.893333pt;}
.y157{bottom:685.853333pt;}
.y6c{bottom:691.133333pt;}
.y12e{bottom:693.853333pt;}
.y118{bottom:694.493333pt;}
.y94{bottom:696.413333pt;}
.y2f{bottom:700.253333pt;}
.y156{bottom:701.853333pt;}
.y6b{bottom:707.133333pt;}
.y159{bottom:709.853333pt;}
.y12d{bottom:711.933333pt;}
.yae{bottom:712.413333pt;}
.y149{bottom:714.000000pt;}
.y2e{bottom:715.613333pt;}
.y117{bottom:715.773333pt;}
.y93{bottom:717.853333pt;}
.y6a{bottom:723.173333pt;}
.yba{bottom:728.453333pt;}
.y2d{bottom:731.013333pt;}
.y147{bottom:731.592123pt;}
.y116{bottom:731.813333pt;}
.y92{bottom:733.893333pt;}
.y14e{bottom:735.292922pt;}
.y15e{bottom:735.973333pt;}
.yf4{bottom:736.133333pt;}
.y69{bottom:739.173333pt;}
.yb9{bottom:744.453333pt;}
.y2c{bottom:746.373333pt;}
.y115{bottom:747.813333pt;}
.y91{bottom:749.893333pt;}
.y68{bottom:755.173333pt;}
.yb8{bottom:760.453333pt;}
.y2b{bottom:761.733333pt;}
.y114{bottom:763.813333pt;}
.y90{bottom:765.893333pt;}
.y67{bottom:771.173333pt;}
.yb7{bottom:776.453333pt;}
.y2a{bottom:778.853333pt;}
.y15c{bottom:779.333333pt;}
.y113{bottom:779.813333pt;}
.y2{bottom:781.661334pt;}
.y8f{bottom:781.893333pt;}
.ycf{bottom:787.173333pt;}
.y66{bottom:792.453333pt;}
.y112{bottom:795.813333pt;}
.y8e{bottom:797.893333pt;}
.y29{bottom:803.013333pt;}
.yce{bottom:803.173333pt;}
.y65{bottom:808.453333pt;}
.y111{bottom:811.813333pt;}
.y154{bottom:812.269561pt;}
.yed{bottom:813.413333pt;}
.y8d{bottom:813.893333pt;}
.ycd{bottom:819.173333pt;}
.y64{bottom:824.453333pt;}
.y28{bottom:825.893333pt;}
.y8c{bottom:829.893333pt;}
.y110{bottom:833.253333pt;}
.yad{bottom:835.173333pt;}
.y63{bottom:840.453333pt;}
.y8b{bottom:845.893333pt;}
.y27{bottom:848.933333pt;}
.yac{bottom:851.173333pt;}
.y10f{bottom:854.533333pt;}
.y62{bottom:856.453333pt;}
.y1{bottom:859.312000pt;}
.y8a{bottom:861.893333pt;}
.yab{bottom:867.173333pt;}
.y10e{bottom:870.533333pt;}
.y26{bottom:871.973333pt;}
.y61{bottom:872.453333pt;}
.y89{bottom:877.893333pt;}
.ycc{bottom:883.173333pt;}
.y10d{bottom:886.533333pt;}
.y60{bottom:888.453333pt;}
.y88{bottom:893.893333pt;}
.yb6{bottom:899.173333pt;}
.y10c{bottom:902.533333pt;}
.y5f{bottom:909.893333pt;}
.y87{bottom:915.173333pt;}
.y25{bottom:916.933333pt;}
.yec{bottom:921.413333pt;}
.y10b{bottom:923.813333pt;}
.y5e{bottom:931.173333pt;}
.y24{bottom:932.133333pt;}
.y5d{bottom:947.200000pt;}
.y23{bottom:947.520000pt;}
.yeb{bottom:948.160000pt;}
.y53{bottom:995.520000pt;}
.h13{height:15.360000pt;}
.h10{height:19.520000pt;}
.h35{height:21.440000pt;}
.h23{height:22.880000pt;}
.h24{height:23.040000pt;}
.h31{height:25.280000pt;}
.h33{height:25.472000pt;}
.h2e{height:28.126079pt;}
.h7{height:28.560000pt;}
.h1c{height:29.256543pt;}
.h26{height:29.606399pt;}
.hd{height:31.680000pt;}
.h6{height:40.800000pt;}
.h19{height:41.895895pt;}
.hf{height:42.084375pt;}
.h34{height:42.560000pt;}
.h32{height:42.720000pt;}
.h3{height:42.840000pt;}
.he{height:43.215000pt;}
.h11{height:44.596875pt;}
.h36{height:46.560000pt;}
.h15{height:46.609688pt;}
.h25{height:47.109375pt;}
.h18{height:47.116567pt;}
.h2{height:48.960000pt;}
.h1e{height:50.955000pt;}
.h14{height:52.108438pt;}
.h9{height:52.134375pt;}
.h29{height:52.302711pt;}
.h1a{height:52.337239pt;}
.h2a{height:52.447997pt;}
.h1b{height:52.467756pt;}
.h2d{height:53.286170pt;}
.ha{height:53.535000pt;}
.h16{height:54.598989pt;}
.h1f{height:55.298750pt;}
.h5{height:57.120000pt;}
.h1d{height:57.557911pt;}
.h27{height:58.259409pt;}
.h2c{height:58.454106pt;}
.h2f{height:61.237107pt;}
.h12{height:62.812500pt;}
.h2b{height:65.874239pt;}
.h21{height:76.640000pt;}
.hb{height:80.625000pt;}
.hc{height:83.540625pt;}
.h30{height:94.752000pt;}
.h4{height:105.826671pt;}
.h20{height:107.360000pt;}
.h22{height:184.026667pt;}
.h17{height:237.335729pt;}
.h28{height:244.000000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:20.192000pt;}
.w1e{width:36.032000pt;}
.w28{width:43.840000pt;}
.wf{width:47.520000pt;}
.w20{width:48.800000pt;}
.w22{width:48.832000pt;}
.w21{width:48.960000pt;}
.w26{width:50.400000pt;}
.w10{width:50.752000pt;}
.wd{width:51.872000pt;}
.w1d{width:55.200000pt;}
.w1f{width:55.360000pt;}
.w29{width:61.920000pt;}
.w27{width:65.152000pt;}
.w13{width:65.280000pt;}
.we{width:66.400000pt;}
.w15{width:72.113792pt;}
.w18{width:76.921378pt;}
.wb{width:89.877600pt;}
.w17{width:94.091328pt;}
.w14{width:101.472000pt;}
.w25{width:106.400000pt;}
.w12{width:113.152000pt;}
.w5{width:116.192000pt;}
.w24{width:116.352000pt;}
.w23{width:117.440000pt;}
.w6{width:118.400000pt;}
.w8{width:119.712000pt;}
.w19{width:123.392000pt;}
.w11{width:125.152000pt;}
.w7{width:125.792000pt;}
.wc{width:134.266667pt;}
.w1c{width:147.866667pt;}
.w1b{width:148.026667pt;}
.w1a{width:296.546667pt;}
.wa{width:455.334227pt;}
.w16{width:469.726522pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x38{left:8.800000pt;}
.x2a{left:9.893194pt;}
.x33{left:11.360000pt;}
.x3f{left:12.640000pt;}
.x31{left:14.080000pt;}
.x59{left:15.840000pt;}
.x56{left:19.040000pt;}
.x35{left:21.440000pt;}
.x41{left:23.200000pt;}
.x42{left:24.320000pt;}
.x5c{left:25.600000pt;}
.x50{left:27.200000pt;}
.x36{left:28.360000pt;}
.x3b{left:29.920000pt;}
.x34{left:32.360000pt;}
.x22{left:34.253339pt;}
.x53{left:35.200000pt;}
.x37{left:36.680000pt;}
.x24{left:37.582139pt;}
.x2d{left:38.600000pt;}
.x3e{left:42.400000pt;}
.x54{left:43.520000pt;}
.x40{left:44.640000pt;}
.x23{left:50.264867pt;}
.x5d{left:54.760000pt;}
.x60{left:58.560000pt;}
.x1{left:90.706667pt;}
.x52{left:93.466667pt;}
.x2{left:94.486667pt;}
.x4d{left:155.724568pt;}
.x25{left:157.612009pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x46{left:197.686812pt;}
.x6{left:199.066655pt;}
.x16{left:201.946655pt;}
.x21{left:205.586675pt;}
.x1e{left:206.665773pt;}
.x8{left:209.626655pt;}
.x10{left:211.706655pt;}
.x1a{left:216.026655pt;}
.x49{left:217.603940pt;}
.x4f{left:221.786667pt;}
.x7{left:225.146655pt;}
.x26{left:226.291811pt;}
.x3a{left:228.506667pt;}
.x1b{left:240.026655pt;}
.x28{left:243.628201pt;}
.xc{left:247.546655pt;}
.xd{left:249.786655pt;}
.x2c{left:255.386667pt;}
.x5f{left:261.346667pt;}
.x27{left:279.619187pt;}
.x65{left:288.066655pt;}
.x4a{left:304.292715pt;}
.x17{left:306.946655pt;}
.x12{left:308.226667pt;}
.x5e{left:319.266655pt;}
.xf{left:322.626655pt;}
.x4e{left:329.186655pt;}
.x44{left:338.146655pt;}
.x1d{left:342.626655pt;}
.x51{left:345.826667pt;}
.xe{left:346.946655pt;}
.x39{left:351.906655pt;}
.x2b{left:353.026655pt;}
.x11{left:354.946655pt;}
.x20{left:360.269353pt;}
.x48{left:366.860014pt;}
.x19{left:369.026655pt;}
.xb{left:370.626655pt;}
.x1f{left:372.958739pt;}
.x9{left:373.986655pt;}
.x61{left:379.426667pt;}
.x47{left:382.683841pt;}
.x4b{left:387.491427pt;}
.x2e{left:390.306667pt;}
.x45{left:392.050637pt;}
.x29{left:393.078560pt;}
.x57{left:401.826667pt;}
.x3{left:404.408000pt;}
.x18{left:421.986667pt;}
.x14{left:426.626667pt;}
.x63{left:430.626667pt;}
.xa{left:432.093321pt;}
.x58{left:438.493333pt;}
.x2f{left:442.813333pt;}
.x3c{left:468.253333pt;}
.x55{left:494.493333pt;}
.x62{left:496.413333pt;}
.x30{left:509.853333pt;}
.x3d{left:534.173333pt;}
.x64{left:540.893333pt;}
.x5a{left:543.933333pt;}
.x15{left:552.413333pt;}
.x32{left:558.013333pt;}
.x4c{left:574.738909pt;}
.x5b{left:593.533333pt;}
.x1c{left:664.133321pt;}
.x43{left:669.093321pt;}
}




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