
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_bfc8e4e9e058ca9d9d776d79.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_e794dcc4603c3c4e4602c469.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_2bacd6440379b58562c4401c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_c6d24dc1639d426fdd0af891.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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_c4dcf1a507dbca136f6d28ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_ec2ea2168d6ad308f70bda7c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112000;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_930be203e1316c2d6a941d01.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_19ee8e69b38572a86aae28d4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.061000;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_e9239062685f55c71fc0034c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.112000;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.009000;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_eaa4557b3fee70652b2afad3.woff')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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(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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.325200px;}
.ls3{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.276600px;}
.ls9{letter-spacing:-0.241800px;}
.ls12{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.121200px;}
.lsc{letter-spacing:-0.103800px;}
.ls17{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.013680px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.233400px;}
.ls11{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.648000px;}
.lsd{letter-spacing:14.616000px;}
.ls10{letter-spacing:26.784000px;}
.ls14{letter-spacing:30.384000px;}
.ls15{letter-spacing:31.824000px;}
.lsf{letter-spacing:33.264000px;}
.ls0{letter-spacing:35.616000px;}
.lse{letter-spacing:48.384000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.872000px;}
.ws5{word-spacing:-19.051200px;}
.wsf{word-spacing:-18.864000px;}
.wse{word-spacing:-18.648000px;}
.ws4{word-spacing:-18.504000px;}
.ws13{word-spacing:-18.432000px;}
.ws12{word-spacing:-18.360000px;}
.ws10{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.wsc{word-spacing:-17.257080px;}
.ws3{word-spacing:-17.023680px;}
.wsd{word-spacing:-16.919880px;}
.wsb{word-spacing:-16.902480px;}
.wsa{word-spacing:-16.781880px;}
.ws8{word-spacing:-16.747080px;}
.ws9{word-spacing:-16.698480px;}
.ws2{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.156240px;}
.ws7{word-spacing:-0.142560px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-3.723840px;}
._9{margin-left:-2.396160px;}
._1{margin-left:-1.157760px;}
._2{width:1.044000px;}
._3{width:2.121600px;}
._10{width:3.240000px;}
._25{width:4.248000px;}
._14{width:5.400000px;}
._15{width:6.768000px;}
._1e{width:8.172000px;}
._24{width:9.480000px;}
._1d{width:10.944000px;}
._1a{width:12.456000px;}
._1b{width:13.704000px;}
._1c{width:14.856000px;}
._22{width:16.632000px;}
._16{width:20.309760px;}
._b{width:22.431360px;}
._c{width:23.482560px;}
._23{width:24.539040px;}
._19{width:25.992000px;}
._13{width:27.354240px;}
._6{width:28.514880px;}
._7{width:29.545920px;}
._28{width:31.608000px;}
._27{width:33.192000px;}
._12{width:35.384160px;}
._11{width:36.576000px;}
._17{width:37.728000px;}
._18{width:38.736000px;}
._a{width:43.387200px;}
._d{width:44.409600px;}
._1f{width:47.088000px;}
._20{width:48.912000px;}
._8{width:51.269760px;}
._e{width:53.064000px;}
._f{width:54.161760px;}
._29{width:56.160000px;}
._4{width:75.049920px;}
._5{width:77.169600px;}
._26{width:116.208000px;}
._0{width:1481.489760px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fsa{font-size:75.893905px;}
.fs9{font-size:77.760000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y42{bottom:6.660000px;}
.y4c{bottom:7.020000px;}
.y4f{bottom:7.200000px;}
.y51{bottom:10.080000px;}
.yb{bottom:16.740000px;}
.y6{bottom:19.650000px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.y41{bottom:30.450000px;}
.y43{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.y40{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.156000px;}
.y2{bottom:98.676000px;}
.y75{bottom:116.496000px;}
.y99{bottom:123.696000px;}
.y5{bottom:131.220000px;}
.y74{bottom:140.256000px;}
.y3e{bottom:143.316000px;}
.y98{bottom:145.476000px;}
.y73{bottom:164.190000px;}
.y3d{bottom:165.270000px;}
.y97{bottom:167.430000px;}
.y3c{bottom:187.230000px;}
.y72{bottom:188.130000px;}
.y96{bottom:189.390000px;}
.y3b{bottom:209.190000px;}
.y95{bottom:211.350000px;}
.y71{bottom:216.390000px;}
.y3a{bottom:231.150000px;}
.y94{bottom:233.310000px;}
.y70{bottom:238.350000px;}
.y39{bottom:253.110000px;}
.y93{bottom:255.270000px;}
.y6f{bottom:260.310000px;}
.y38{bottom:275.070000px;}
.y92{bottom:277.230000px;}
.y6e{bottom:282.270000px;}
.y37{bottom:297.030000px;}
.y91{bottom:299.190000px;}
.y6d{bottom:304.230000px;}
.y36{bottom:318.990000px;}
.y90{bottom:321.150000px;}
.y6c{bottom:326.190000px;}
.y35{bottom:340.815000px;}
.y8f{bottom:343.155000px;}
.y6b{bottom:348.195000px;}
.y34{bottom:362.775000px;}
.y8e{bottom:364.935000px;}
.y6a{bottom:370.155000px;}
.y33{bottom:384.735000px;}
.y8d{bottom:386.895000px;}
.y69{bottom:392.115000px;}
.y32{bottom:406.695000px;}
.y8c{bottom:408.855000px;}
.y68{bottom:413.895000px;}
.y31{bottom:428.655000px;}
.y8b{bottom:430.815000px;}
.y67{bottom:435.855000px;}
.y30{bottom:450.615000px;}
.y8a{bottom:452.775000px;}
.y66{bottom:457.815000px;}
.y2f{bottom:472.575000px;}
.y89{bottom:474.735000px;}
.y65{bottom:479.775000px;}
.y2e{bottom:494.535000px;}
.y88{bottom:496.695000px;}
.y64{bottom:501.735000px;}
.y2d{bottom:516.495000px;}
.y87{bottom:518.655000px;}
.y63{bottom:523.695000px;}
.y2c{bottom:538.455000px;}
.y86{bottom:540.615000px;}
.y62{bottom:545.655000px;}
.y2b{bottom:560.235000px;}
.y85{bottom:562.575000px;}
.y61{bottom:567.615000px;}
.y2a{bottom:582.195000px;}
.y84{bottom:584.355000px;}
.y60{bottom:589.575000px;}
.y29{bottom:603.825000px;}
.y83{bottom:606.345000px;}
.y5f{bottom:611.565000px;}
.y82{bottom:623.805000px;}
.y28{bottom:625.425000px;}
.y5e{bottom:633.345000px;}
.y27{bottom:636.945000px;}
.y5d{bottom:655.305000px;}
.y26{bottom:656.925000px;}
.y25{bottom:674.205000px;}
.y5c{bottom:677.265000px;}
.y24{bottom:682.665000px;}
.y5b{bottom:699.225000px;}
.y23{bottom:702.645000px;}
.y5a{bottom:721.185000px;}
.y22{bottom:722.805000px;}
.y21{bottom:742.965000px;}
.y59{bottom:743.145000px;}
.y20{bottom:762.945000px;}
.y58{bottom:765.105000px;}
.y1f{bottom:783.105000px;}
.y57{bottom:787.065000px;}
.y1e{bottom:803.265000px;}
.y56{bottom:809.025000px;}
.y1d{bottom:823.425000px;}
.y55{bottom:827.205000px;}
.y1c{bottom:843.405000px;}
.y54{bottom:850.965000px;}
.y1b{bottom:860.685000px;}
.y1a{bottom:869.505000px;}
.y53{bottom:874.950000px;}
.y19{bottom:888.810000px;}
.y52{bottom:898.890000px;}
.y18{bottom:901.590000px;}
.y17{bottom:913.470000px;}
.y81{bottom:914.370000px;}
.y50{bottom:922.650000px;}
.y16{bottom:935.430000px;}
.y80{bottom:936.330000px;}
.y4e{bottom:952.530000px;}
.y15{bottom:957.390000px;}
.y7f{bottom:958.290000px;}
.y4d{bottom:976.470000px;}
.y14{bottom:979.350000px;}
.y7e{bottom:980.250000px;}
.y4b{bottom:1000.410000px;}
.y7d{bottom:1002.210000px;}
.y9a{bottom:1006.710000px;}
.y13{bottom:1022.370000px;}
.y7c{bottom:1024.170000px;}
.y4a{bottom:1028.670000px;}
.y12{bottom:1045.230000px;}
.y7b{bottom:1045.950000px;}
.y49{bottom:1050.630000px;}
.y7a{bottom:1067.910000px;}
.y11{bottom:1068.090000px;}
.y48{bottom:1072.590000px;}
.y79{bottom:1089.870000px;}
.y47{bottom:1094.550000px;}
.y78{bottom:1111.830000px;}
.y3f{bottom:1114.710000px;}
.y46{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y77{bottom:1130.010000px;}
.y45{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y76{bottom:1153.980000px;}
.y44{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h10{height:16.398000px;}
.h6{height:17.280000px;}
.h18{height:23.040000px;}
.h19{height:23.220000px;}
.h1b{height:23.256000px;}
.h13{height:26.097120px;}
.hf{height:27.548640px;}
.h1a{height:29.160000px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h9{height:36.228240px;}
.h7{height:39.315600px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h11{height:57.165120px;}
.h12{height:60.344640px;}
.h14{height:62.136000px;}
.h16{height:63.374400px;}
.h17{height:65.496440px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h15{height:73.116000px;}
.h1c{height:74.004654px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.wc{width:254.010000px;}
.wb{width:254.415000px;}
.w9{width:265.530000px;}
.wa{width:276.150000px;}
.w4{width:317.415000px;}
.w8{width:360.795000px;}
.w6{width:438.195000px;}
.w5{width:445.965000px;}
.w7{width:626.685000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x14{left:7.740000px;}
.xf{left:17.640000px;}
.x10{left:28.080000px;}
.x16{left:35.820000px;}
.x9{left:46.110000px;}
.x1{left:80.999987px;}
.x20{left:91.835987px;}
.x5{left:105.165000px;}
.x1c{left:116.670000px;}
.x1d{left:117.930000px;}
.x18{left:122.040000px;}
.x17{left:123.300000px;}
.xd{left:127.475987px;}
.x13{left:141.876000px;}
.x11{left:146.880000px;}
.xa{left:176.969987px;}
.x1a{left:189.750000px;}
.xb{left:206.129987px;}
.xe{left:285.735000px;}
.xc{left:337.754987px;}
.x7{left:374.475000px;}
.x6{left:422.175000px;}
.x8{left:435.165000px;}
.x1f{left:448.994987px;}
.x1b{left:466.275000px;}
.x15{left:503.025000px;}
.x4{left:554.145000px;}
.x1e{left:680.369987px;}
.x19{left:760.109987px;}
.x12{left:763.889987px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.289067pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.245867pt;}
.ls9{letter-spacing:-0.214933pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.107733pt;}
.lsc{letter-spacing:-0.092267pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.012160pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.207467pt;}
.ls11{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.576000pt;}
.lsd{letter-spacing:12.992000pt;}
.ls10{letter-spacing:23.808000pt;}
.ls14{letter-spacing:27.008000pt;}
.ls15{letter-spacing:28.288000pt;}
.lsf{letter-spacing:29.568000pt;}
.ls0{letter-spacing:31.658667pt;}
.lse{letter-spacing:43.008000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws5{word-spacing:-16.934400pt;}
.wsf{word-spacing:-16.768000pt;}
.wse{word-spacing:-16.576000pt;}
.ws4{word-spacing:-16.448000pt;}
.ws13{word-spacing:-16.384000pt;}
.ws12{word-spacing:-16.320000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.wsc{word-spacing:-15.339627pt;}
.ws3{word-spacing:-15.132160pt;}
.wsd{word-spacing:-15.039893pt;}
.wsb{word-spacing:-15.024427pt;}
.wsa{word-spacing:-14.917227pt;}
.ws8{word-spacing:-14.886293pt;}
.ws9{word-spacing:-14.843093pt;}
.ws2{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.138880pt;}
.ws7{word-spacing:-0.126720pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-3.310080pt;}
._9{margin-left:-2.129920pt;}
._1{margin-left:-1.029120pt;}
._2{width:0.928000pt;}
._3{width:1.885867pt;}
._10{width:2.880000pt;}
._25{width:3.776000pt;}
._14{width:4.800000pt;}
._15{width:6.016000pt;}
._1e{width:7.264000pt;}
._24{width:8.426667pt;}
._1d{width:9.728000pt;}
._1a{width:11.072000pt;}
._1b{width:12.181333pt;}
._1c{width:13.205333pt;}
._22{width:14.784000pt;}
._16{width:18.053120pt;}
._b{width:19.938987pt;}
._c{width:20.873387pt;}
._23{width:21.812480pt;}
._19{width:23.104000pt;}
._13{width:24.314880pt;}
._6{width:25.346560pt;}
._7{width:26.263040pt;}
._28{width:28.096000pt;}
._27{width:29.504000pt;}
._12{width:31.452587pt;}
._11{width:32.512000pt;}
._17{width:33.536000pt;}
._18{width:34.432000pt;}
._a{width:38.566400pt;}
._d{width:39.475200pt;}
._1f{width:41.856000pt;}
._20{width:43.477333pt;}
._8{width:45.573120pt;}
._e{width:47.168000pt;}
._f{width:48.143787pt;}
._29{width:49.920000pt;}
._4{width:66.711040pt;}
._5{width:68.595200pt;}
._26{width:103.296000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fsa{font-size:67.461249pt;}
.fs9{font-size:69.120000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y42{bottom:5.920000pt;}
.y4c{bottom:6.240000pt;}
.y4f{bottom:6.400000pt;}
.y51{bottom:8.960000pt;}
.yb{bottom:14.880000pt;}
.y6{bottom:17.466667pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.y41{bottom:27.066667pt;}
.y43{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.y40{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.472000pt;}
.y2{bottom:87.712000pt;}
.y75{bottom:103.552000pt;}
.y99{bottom:109.952000pt;}
.y5{bottom:116.640000pt;}
.y74{bottom:124.672000pt;}
.y3e{bottom:127.392000pt;}
.y98{bottom:129.312000pt;}
.y73{bottom:145.946667pt;}
.y3d{bottom:146.906667pt;}
.y97{bottom:148.826667pt;}
.y3c{bottom:166.426667pt;}
.y72{bottom:167.226667pt;}
.y96{bottom:168.346667pt;}
.y3b{bottom:185.946667pt;}
.y95{bottom:187.866667pt;}
.y71{bottom:192.346667pt;}
.y3a{bottom:205.466667pt;}
.y94{bottom:207.386667pt;}
.y70{bottom:211.866667pt;}
.y39{bottom:224.986667pt;}
.y93{bottom:226.906667pt;}
.y6f{bottom:231.386667pt;}
.y38{bottom:244.506667pt;}
.y92{bottom:246.426667pt;}
.y6e{bottom:250.906667pt;}
.y37{bottom:264.026667pt;}
.y91{bottom:265.946667pt;}
.y6d{bottom:270.426667pt;}
.y36{bottom:283.546667pt;}
.y90{bottom:285.466667pt;}
.y6c{bottom:289.946667pt;}
.y35{bottom:302.946667pt;}
.y8f{bottom:305.026667pt;}
.y6b{bottom:309.506667pt;}
.y34{bottom:322.466667pt;}
.y8e{bottom:324.386667pt;}
.y6a{bottom:329.026667pt;}
.y33{bottom:341.986667pt;}
.y8d{bottom:343.906667pt;}
.y69{bottom:348.546667pt;}
.y32{bottom:361.506667pt;}
.y8c{bottom:363.426667pt;}
.y68{bottom:367.906667pt;}
.y31{bottom:381.026667pt;}
.y8b{bottom:382.946667pt;}
.y67{bottom:387.426667pt;}
.y30{bottom:400.546667pt;}
.y8a{bottom:402.466667pt;}
.y66{bottom:406.946667pt;}
.y2f{bottom:420.066667pt;}
.y89{bottom:421.986667pt;}
.y65{bottom:426.466667pt;}
.y2e{bottom:439.586667pt;}
.y88{bottom:441.506667pt;}
.y64{bottom:445.986667pt;}
.y2d{bottom:459.106667pt;}
.y87{bottom:461.026667pt;}
.y63{bottom:465.506667pt;}
.y2c{bottom:478.626667pt;}
.y86{bottom:480.546667pt;}
.y62{bottom:485.026667pt;}
.y2b{bottom:497.986667pt;}
.y85{bottom:500.066667pt;}
.y61{bottom:504.546667pt;}
.y2a{bottom:517.506667pt;}
.y84{bottom:519.426667pt;}
.y60{bottom:524.066667pt;}
.y29{bottom:536.733333pt;}
.y83{bottom:538.973333pt;}
.y5f{bottom:543.613333pt;}
.y82{bottom:554.493333pt;}
.y28{bottom:555.933333pt;}
.y5e{bottom:562.973333pt;}
.y27{bottom:566.173333pt;}
.y5d{bottom:582.493333pt;}
.y26{bottom:583.933333pt;}
.y25{bottom:599.293333pt;}
.y5c{bottom:602.013333pt;}
.y24{bottom:606.813333pt;}
.y5b{bottom:621.533333pt;}
.y23{bottom:624.573333pt;}
.y5a{bottom:641.053333pt;}
.y22{bottom:642.493333pt;}
.y21{bottom:660.413333pt;}
.y59{bottom:660.573333pt;}
.y20{bottom:678.173333pt;}
.y58{bottom:680.093333pt;}
.y1f{bottom:696.093333pt;}
.y57{bottom:699.613333pt;}
.y1e{bottom:714.013333pt;}
.y56{bottom:719.133333pt;}
.y1d{bottom:731.933333pt;}
.y55{bottom:735.293333pt;}
.y1c{bottom:749.693333pt;}
.y54{bottom:756.413333pt;}
.y1b{bottom:765.053333pt;}
.y1a{bottom:772.893333pt;}
.y53{bottom:777.733333pt;}
.y19{bottom:790.053333pt;}
.y52{bottom:799.013333pt;}
.y18{bottom:801.413333pt;}
.y17{bottom:811.973333pt;}
.y81{bottom:812.773333pt;}
.y50{bottom:820.133333pt;}
.y16{bottom:831.493333pt;}
.y80{bottom:832.293333pt;}
.y4e{bottom:846.693333pt;}
.y15{bottom:851.013333pt;}
.y7f{bottom:851.813333pt;}
.y4d{bottom:867.973333pt;}
.y14{bottom:870.533333pt;}
.y7e{bottom:871.333333pt;}
.y4b{bottom:889.253333pt;}
.y7d{bottom:890.853333pt;}
.y9a{bottom:894.853333pt;}
.y13{bottom:908.773333pt;}
.y7c{bottom:910.373333pt;}
.y4a{bottom:914.373333pt;}
.y12{bottom:929.093333pt;}
.y7b{bottom:929.733333pt;}
.y49{bottom:933.893333pt;}
.y7a{bottom:949.253333pt;}
.y11{bottom:949.413333pt;}
.y48{bottom:953.413333pt;}
.y79{bottom:968.773333pt;}
.y47{bottom:972.933333pt;}
.y78{bottom:988.293333pt;}
.y3f{bottom:990.853333pt;}
.y46{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y77{bottom:1004.453333pt;}
.y45{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y76{bottom:1025.760000pt;}
.y44{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h10{height:14.576000pt;}
.h6{height:15.360000pt;}
.h18{height:20.480000pt;}
.h19{height:20.640000pt;}
.h1b{height:20.672000pt;}
.h13{height:23.197440pt;}
.hf{height:24.487680pt;}
.h1a{height:25.920000pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h9{height:32.202880pt;}
.h7{height:34.947200pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h11{height:50.813440pt;}
.h12{height:53.639680pt;}
.h14{height:55.232000pt;}
.h16{height:56.332800pt;}
.h17{height:58.219058pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h15{height:64.992000pt;}
.h1c{height:65.781915pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.wc{width:225.786667pt;}
.wb{width:226.146667pt;}
.w9{width:236.026667pt;}
.wa{width:245.466667pt;}
.w4{width:282.146667pt;}
.w8{width:320.706667pt;}
.w6{width:389.506667pt;}
.w5{width:396.413333pt;}
.w7{width:557.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x14{left:6.880000pt;}
.xf{left:15.680000pt;}
.x10{left:24.960000pt;}
.x16{left:31.840000pt;}
.x9{left:40.986667pt;}
.x1{left:71.999988pt;}
.x20{left:81.631988pt;}
.x5{left:93.480000pt;}
.x1c{left:103.706667pt;}
.x1d{left:104.826667pt;}
.x18{left:108.480000pt;}
.x17{left:109.600000pt;}
.xd{left:113.311988pt;}
.x13{left:126.112000pt;}
.x11{left:130.560000pt;}
.xa{left:157.306655pt;}
.x1a{left:168.666667pt;}
.xb{left:183.226655pt;}
.xe{left:253.986667pt;}
.xc{left:300.226655pt;}
.x7{left:332.866667pt;}
.x6{left:375.266667pt;}
.x8{left:386.813333pt;}
.x1f{left:399.106655pt;}
.x1b{left:414.466667pt;}
.x15{left:447.133333pt;}
.x4{left:492.573333pt;}
.x1e{left:604.773322pt;}
.x19{left:675.653322pt;}
.x12{left:679.013322pt;}
.x2{left:737.120000pt;}
}




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