
    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_8362c0d41a9c3f9f51e5b533.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_8a9ad57399ced5e141f2f412.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f5723db355a73269d5adb965.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f0053d5b5013f3f7345d470a.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_9f7fc6c362962ff2c2adff3b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_d43c30807abd2bb40dacd9c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ecdb60cb0518567f4fa142e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_bf7c66fc39e9a9c50ba328d7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:39.905280px;}
.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;}
}
.ws8{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-4.816800px;}
._e{margin-left:-3.515040px;}
._f{margin-left:-2.509920px;}
._0{margin-left:-1.258560px;}
._2{width:1.374480px;}
._3{width:2.926320px;}
._7{width:4.780800px;}
._6{width:6.095520px;}
._8{width:7.290720px;}
._d{width:8.446320px;}
._c{width:9.867600px;}
._5{width:11.115360px;}
._4{width:12.250800px;}
._10{width:13.326480px;}
._17{width:15.168960px;}
._9{width:16.254720px;}
._a{width:17.390160px;}
._b{width:18.714000px;}
._1f{width:19.887360px;}
._19{width:21.048960px;}
._16{width:22.322880px;}
._24{width:23.465520px;}
._22{width:24.508800px;}
._14{width:25.634880px;}
._15{width:26.760960px;}
._18{width:28.814400px;}
._12{width:30.801600px;}
._13{width:32.010480px;}
._1b{width:33.186240px;}
._23{width:34.279200px;}
._27{width:35.703360px;}
._26{width:36.763200px;}
._20{width:38.544480px;}
._1d{width:39.684960px;}
._1e{width:40.862880px;}
._1c{width:41.922720px;}
._25{width:43.616880px;}
._28{width:54.184320px;}
._29{width:55.805280px;}
._11{width:106.993920px;}
._21{width:153.336000px;}
._1{width:964.053120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.500000px;}
.y4{bottom:72.576000px;}
.y86{bottom:112.356000px;}
.y6e{bottom:113.796000px;}
.y3f{bottom:124.236000px;}
.y85{bottom:134.136000px;}
.y6d{bottom:135.576000px;}
.y3e{bottom:142.056000px;}
.y3d{bottom:155.730000px;}
.y84{bottom:156.090000px;}
.y6c{bottom:157.350000px;}
.y3c{bottom:170.670000px;}
.y83{bottom:177.870000px;}
.y6b{bottom:179.130000px;}
.y3b{bottom:189.210000px;}
.y82{bottom:199.650000px;}
.y6a{bottom:201.090000px;}
.y3a{bottom:206.490000px;}
.y81{bottom:221.430000px;}
.y69{bottom:222.870000px;}
.y39{bottom:223.770000px;}
.y38{bottom:241.050000px;}
.y80{bottom:243.390000px;}
.y68{bottom:244.650000px;}
.y37{bottom:258.330000px;}
.y7f{bottom:265.170000px;}
.y67{bottom:266.430000px;}
.y36{bottom:275.430000px;}
.y7e{bottom:286.950000px;}
.y66{bottom:288.210000px;}
.y35{bottom:292.710000px;}
.y7d{bottom:308.730000px;}
.y34{bottom:309.990000px;}
.y65{bottom:310.170000px;}
.y33{bottom:327.270000px;}
.y7c{bottom:330.510000px;}
.y64{bottom:331.950000px;}
.y32{bottom:344.595000px;}
.y7b{bottom:352.515000px;}
.y63{bottom:353.775000px;}
.y31{bottom:361.875000px;}
.y7a{bottom:374.295000px;}
.y62{bottom:375.555000px;}
.y30{bottom:378.975000px;}
.y79{bottom:396.075000px;}
.y2f{bottom:396.255000px;}
.y61{bottom:397.515000px;}
.y2e{bottom:413.535000px;}
.y78{bottom:417.855000px;}
.y60{bottom:419.295000px;}
.y2d{bottom:430.815000px;}
.y77{bottom:439.815000px;}
.y5f{bottom:441.075000px;}
.y2c{bottom:448.095000px;}
.y76{bottom:461.595000px;}
.y5e{bottom:462.855000px;}
.y2b{bottom:465.375000px;}
.y2a{bottom:482.475000px;}
.y75{bottom:483.375000px;}
.y5d{bottom:484.635000px;}
.y29{bottom:499.755000px;}
.y74{bottom:505.155000px;}
.y5c{bottom:506.595000px;}
.y28{bottom:517.035000px;}
.y73{bottom:526.935000px;}
.y5b{bottom:528.375000px;}
.y27{bottom:534.315000px;}
.y72{bottom:548.895000px;}
.y5a{bottom:550.155000px;}
.y26{bottom:551.595000px;}
.y25{bottom:568.695000px;}
.y71{bottom:570.675000px;}
.y59{bottom:571.935000px;}
.y24{bottom:585.975000px;}
.y70{bottom:592.455000px;}
.y58{bottom:593.895000px;}
.y23{bottom:603.255000px;}
.y6f{bottom:610.845000px;}
.y57{bottom:615.705000px;}
.y22{bottom:620.565000px;}
.y56{bottom:637.485000px;}
.y21{bottom:637.845000px;}
.y20{bottom:655.125000px;}
.y55{bottom:659.265000px;}
.y1f{bottom:672.225000px;}
.y54{bottom:681.045000px;}
.y1e{bottom:689.505000px;}
.y53{bottom:703.005000px;}
.y1d{bottom:706.785000px;}
.y1c{bottom:724.065000px;}
.y52{bottom:724.785000px;}
.y1b{bottom:741.345000px;}
.y51{bottom:746.565000px;}
.y1a{bottom:758.625000px;}
.y50{bottom:768.345000px;}
.y19{bottom:775.725000px;}
.y4f{bottom:790.125000px;}
.y18{bottom:793.005000px;}
.y17{bottom:810.285000px;}
.y4e{bottom:812.085000px;}
.y16{bottom:827.565000px;}
.y4d{bottom:833.865000px;}
.y15{bottom:844.845000px;}
.y4c{bottom:855.645000px;}
.y14{bottom:861.945000px;}
.y4b{bottom:877.470000px;}
.y13{bottom:879.270000px;}
.y12{bottom:896.550000px;}
.y4a{bottom:899.430000px;}
.y11{bottom:919.050000px;}
.y49{bottom:921.210000px;}
.y10{bottom:931.470000px;}
.y48{bottom:942.990000px;}
.yf{bottom:950.550000px;}
.y47{bottom:964.770000px;}
.ye{bottom:969.450000px;}
.y46{bottom:986.550000px;}
.yd{bottom:988.350000px;}
.yc{bottom:1007.790000px;}
.y45{bottom:1008.510000px;}
.yb{bottom:1030.290000px;}
.y44{bottom:1052.070000px;}
.ya{bottom:1052.250000px;}
.y9{bottom:1071.510000px;}
.y43{bottom:1073.850000px;}
.y8{bottom:1089.150000px;}
.y42{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.y41{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.y40{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1189.620000px;}
.h2{height:20.160000px;}
.hc{height:27.147656px;}
.h10{height:34.837383px;}
.h5{height:39.760312px;}
.hd{height:41.726953px;}
.h6{height:42.164648px;}
.hf{height:46.251562px;}
.h8{height:46.736719px;}
.h11{height:48.224531px;}
.he{height:49.255313px;}
.h3{height:50.068125px;}
.hb{height:53.224453px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h7{height:59.439023px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:61.200000px;}
.w3{width:619.485000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.xa{left:113.255987px;}
.x7{left:118.115987px;}
.x5{left:129.995987px;}
.x13{left:140.075987px;}
.xf{left:150.509987px;}
.x3{left:169.230000px;}
.x6{left:248.609987px;}
.x9{left:274.709987px;}
.x11{left:304.274987px;}
.xc{left:308.774987px;}
.x8{left:377.354987px;}
.xb{left:385.634987px;}
.xe{left:418.574987px;}
.xd{left:420.194987px;}
.x4{left:446.474987px;}
.x10{left:467.744987px;}
.x12{left:557.204987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:35.471360pt;}
.ws8{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-4.281600pt;}
._e{margin-left:-3.124480pt;}
._f{margin-left:-2.231040pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.221760pt;}
._3{width:2.601173pt;}
._7{width:4.249600pt;}
._6{width:5.418240pt;}
._8{width:6.480640pt;}
._d{width:7.507840pt;}
._c{width:8.771200pt;}
._5{width:9.880320pt;}
._4{width:10.889600pt;}
._10{width:11.845760pt;}
._17{width:13.483520pt;}
._9{width:14.448640pt;}
._a{width:15.457920pt;}
._b{width:16.634667pt;}
._1f{width:17.677653pt;}
._19{width:18.710187pt;}
._16{width:19.842560pt;}
._24{width:20.858240pt;}
._22{width:21.785600pt;}
._14{width:22.786560pt;}
._15{width:23.787520pt;}
._18{width:25.612800pt;}
._12{width:27.379200pt;}
._13{width:28.453760pt;}
._1b{width:29.498880pt;}
._23{width:30.470400pt;}
._27{width:31.736320pt;}
._26{width:32.678400pt;}
._20{width:34.261760pt;}
._1d{width:35.275520pt;}
._1e{width:36.322560pt;}
._1c{width:37.264640pt;}
._25{width:38.770560pt;}
._28{width:48.163840pt;}
._29{width:49.604693pt;}
._11{width:95.105707pt;}
._21{width:136.298667pt;}
._1{width:856.936107pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.000000pt;}
.y4{bottom:64.512000pt;}
.y86{bottom:99.872000pt;}
.y6e{bottom:101.152000pt;}
.y3f{bottom:110.432000pt;}
.y85{bottom:119.232000pt;}
.y6d{bottom:120.512000pt;}
.y3e{bottom:126.272000pt;}
.y3d{bottom:138.426667pt;}
.y84{bottom:138.746667pt;}
.y6c{bottom:139.866667pt;}
.y3c{bottom:151.706667pt;}
.y83{bottom:158.106667pt;}
.y6b{bottom:159.226667pt;}
.y3b{bottom:168.186667pt;}
.y82{bottom:177.466667pt;}
.y6a{bottom:178.746667pt;}
.y3a{bottom:183.546667pt;}
.y81{bottom:196.826667pt;}
.y69{bottom:198.106667pt;}
.y39{bottom:198.906667pt;}
.y38{bottom:214.266667pt;}
.y80{bottom:216.346667pt;}
.y68{bottom:217.466667pt;}
.y37{bottom:229.626667pt;}
.y7f{bottom:235.706667pt;}
.y67{bottom:236.826667pt;}
.y36{bottom:244.826667pt;}
.y7e{bottom:255.066667pt;}
.y66{bottom:256.186667pt;}
.y35{bottom:260.186667pt;}
.y7d{bottom:274.426667pt;}
.y34{bottom:275.546667pt;}
.y65{bottom:275.706667pt;}
.y33{bottom:290.906667pt;}
.y7c{bottom:293.786667pt;}
.y64{bottom:295.066667pt;}
.y32{bottom:306.306667pt;}
.y7b{bottom:313.346667pt;}
.y63{bottom:314.466667pt;}
.y31{bottom:321.666667pt;}
.y7a{bottom:332.706667pt;}
.y62{bottom:333.826667pt;}
.y30{bottom:336.866667pt;}
.y79{bottom:352.066667pt;}
.y2f{bottom:352.226667pt;}
.y61{bottom:353.346667pt;}
.y2e{bottom:367.586667pt;}
.y78{bottom:371.426667pt;}
.y60{bottom:372.706667pt;}
.y2d{bottom:382.946667pt;}
.y77{bottom:390.946667pt;}
.y5f{bottom:392.066667pt;}
.y2c{bottom:398.306667pt;}
.y76{bottom:410.306667pt;}
.y5e{bottom:411.426667pt;}
.y2b{bottom:413.666667pt;}
.y2a{bottom:428.866667pt;}
.y75{bottom:429.666667pt;}
.y5d{bottom:430.786667pt;}
.y29{bottom:444.226667pt;}
.y74{bottom:449.026667pt;}
.y5c{bottom:450.306667pt;}
.y28{bottom:459.586667pt;}
.y73{bottom:468.386667pt;}
.y5b{bottom:469.666667pt;}
.y27{bottom:474.946667pt;}
.y72{bottom:487.906667pt;}
.y5a{bottom:489.026667pt;}
.y26{bottom:490.306667pt;}
.y25{bottom:505.506667pt;}
.y71{bottom:507.266667pt;}
.y59{bottom:508.386667pt;}
.y24{bottom:520.866667pt;}
.y70{bottom:526.626667pt;}
.y58{bottom:527.906667pt;}
.y23{bottom:536.226667pt;}
.y6f{bottom:542.973333pt;}
.y57{bottom:547.293333pt;}
.y22{bottom:551.613333pt;}
.y56{bottom:566.653333pt;}
.y21{bottom:566.973333pt;}
.y20{bottom:582.333333pt;}
.y55{bottom:586.013333pt;}
.y1f{bottom:597.533333pt;}
.y54{bottom:605.373333pt;}
.y1e{bottom:612.893333pt;}
.y53{bottom:624.893333pt;}
.y1d{bottom:628.253333pt;}
.y1c{bottom:643.613333pt;}
.y52{bottom:644.253333pt;}
.y1b{bottom:658.973333pt;}
.y51{bottom:663.613333pt;}
.y1a{bottom:674.333333pt;}
.y50{bottom:682.973333pt;}
.y19{bottom:689.533333pt;}
.y4f{bottom:702.333333pt;}
.y18{bottom:704.893333pt;}
.y17{bottom:720.253333pt;}
.y4e{bottom:721.853333pt;}
.y16{bottom:735.613333pt;}
.y4d{bottom:741.213333pt;}
.y15{bottom:750.973333pt;}
.y4c{bottom:760.573333pt;}
.y14{bottom:766.173333pt;}
.y4b{bottom:779.973333pt;}
.y13{bottom:781.573333pt;}
.y12{bottom:796.933333pt;}
.y4a{bottom:799.493333pt;}
.y11{bottom:816.933333pt;}
.y49{bottom:818.853333pt;}
.y10{bottom:827.973333pt;}
.y48{bottom:838.213333pt;}
.yf{bottom:844.933333pt;}
.y47{bottom:857.573333pt;}
.ye{bottom:861.733333pt;}
.y46{bottom:876.933333pt;}
.yd{bottom:878.533333pt;}
.yc{bottom:895.813333pt;}
.y45{bottom:896.453333pt;}
.yb{bottom:915.813333pt;}
.y44{bottom:935.173333pt;}
.ya{bottom:935.333333pt;}
.y9{bottom:952.453333pt;}
.y43{bottom:954.533333pt;}
.y8{bottom:968.133333pt;}
.y42{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.y41{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.y40{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1057.440000pt;}
.h2{height:17.920000pt;}
.hc{height:24.131250pt;}
.h10{height:30.966562pt;}
.h5{height:35.342500pt;}
.hd{height:37.090625pt;}
.h6{height:37.479688pt;}
.hf{height:41.112500pt;}
.h8{height:41.543750pt;}
.h11{height:42.866250pt;}
.he{height:43.782500pt;}
.h3{height:44.505000pt;}
.hb{height:47.310625pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h7{height:52.834688pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:54.400000pt;}
.w3{width:550.653333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.xa{left:100.671988pt;}
.x7{left:104.991988pt;}
.x5{left:115.551988pt;}
.x13{left:124.511988pt;}
.xf{left:133.786655pt;}
.x3{left:150.426667pt;}
.x6{left:220.986655pt;}
.x9{left:244.186655pt;}
.x11{left:270.466655pt;}
.xc{left:274.466655pt;}
.x8{left:335.426655pt;}
.xb{left:342.786655pt;}
.xe{left:372.066655pt;}
.xd{left:373.506655pt;}
.x4{left:396.866655pt;}
.x10{left:415.773322pt;}
.x12{left:495.293322pt;}
}




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