
    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_1df721d419ac881144942065.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_109620cdd00214316e5fb40e.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_634f716ba9b9700fac3d93ef.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bc111fdecc6487220cb93615.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_8d658e48faa332672be2f713.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_78073ba2867e214a720e3e87.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_95e7ff555afa3c3d6e4dabb6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0c8395ef2376f03766353f23.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7e793efaccfa515ea17c751b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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;}
.ls20{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.498000px;}
.ls6{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.326400px;}
.ls1c{letter-spacing:-0.240600px;}
.ls1e{letter-spacing:-0.234600px;}
.ls1f{letter-spacing:-0.186600px;}
.ls1d{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.115800px;}
.ls12{letter-spacing:-0.109200px;}
.ls29{letter-spacing:-0.069600px;}
.ls28{letter-spacing:-0.058320px;}
.ls11{letter-spacing:-0.041040px;}
.ls13{letter-spacing:-0.038160px;}
.ls23{letter-spacing:-0.032400px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls1b{letter-spacing:0.175200px;}
.ls16{letter-spacing:0.186600px;}
.ls10{letter-spacing:0.288600px;}
.lsa{letter-spacing:0.306000px;}
.ls7{letter-spacing:0.352200px;}
.ls15{letter-spacing:0.479400px;}
.ls26{letter-spacing:0.479520px;}
.ls14{letter-spacing:0.492000px;}
.ls21{letter-spacing:0.493200px;}
.ls4{letter-spacing:0.894240px;}
.ls22{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.lsf{letter-spacing:2.106720px;}
.ls1a{letter-spacing:8.586720px;}
.ls18{letter-spacing:10.026720px;}
.ls19{letter-spacing:11.466720px;}
.ls27{letter-spacing:12.186720px;}
.ls17{letter-spacing:12.906720px;}
.lse{letter-spacing:17.946720px;}
.lsc{letter-spacing:20.106720px;}
.lsd{letter-spacing:22.266720px;}
.ls25{letter-spacing:42.426720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-21.993960px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsf{word-spacing:-13.811760px;}
.wsd{word-spacing:-13.692360px;}
.wse{word-spacing:-13.680960px;}
.ws9{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.473360px;}
.wsc{word-spacing:-13.467600px;}
.wsa{word-spacing:-13.464720px;}
.ws12{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.436160px;}
.wsb{word-spacing:-13.396560px;}
.ws6{word-spacing:-13.389960px;}
.ws10{word-spacing:-13.271160px;}
.ws7{word-spacing:-13.179360px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1447.868880px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1005.647520px;}
._5{margin-left:-578.729760px;}
._18{margin-left:-4.791600px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._b{width:2.628960px;}
._a{width:3.823200px;}
._c{width:4.960080px;}
._d{width:6.486720px;}
._e{width:8.127360px;}
._12{width:9.681120px;}
._13{width:11.414160px;}
._f{width:12.430080px;}
._15{width:14.940000px;}
._16{width:16.075440px;}
._11{width:18.023280px;}
._10{width:19.242720px;}
._1c{width:20.396400px;}
._1b{width:21.463440px;}
._1a{width:22.547520px;}
._19{width:24.238320px;}
._8{width:26.455200px;}
._7{width:27.756480px;}
._9{width:28.840560px;}
._17{width:31.075200px;}
._14{width:55.101600px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,1,4);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:6.660000px;}
.yb7{bottom:7.020000px;}
.y81{bottom:8.820000px;}
.y85{bottom:9.000000px;}
.y7f{bottom:9.180000px;}
.y76{bottom:10.620000px;}
.y78{bottom:10.800000px;}
.y90{bottom:12.060000px;}
.ya5{bottom:14.220000px;}
.y84{bottom:15.480000px;}
.ya1{bottom:16.920000px;}
.y94{bottom:21.780000px;}
.y68{bottom:22.320000px;}
.y6a{bottom:22.500000px;}
.y9e{bottom:27.720000px;}
.yb6{bottom:28.080000px;}
.ya4{bottom:28.620000px;}
.yb3{bottom:35.460000px;}
.y83{bottom:36.540000px;}
.y93{bottom:42.840000px;}
.y9d{bottom:48.780000px;}
.yb5{bottom:49.500000px;}
.ya3{bottom:49.680000px;}
.y6{bottom:61.380000px;}
.yb4{bottom:70.554000px;}
.y66{bottom:92.196000px;}
.yb2{bottom:98.496000px;}
.y7d{bottom:101.916000px;}
.y31{bottom:103.356000px;}
.y65{bottom:113.256000px;}
.yb1{bottom:119.016000px;}
.y7c{bottom:122.976000px;}
.y30{bottom:124.416000px;}
.y64{bottom:134.316000px;}
.yb0{bottom:140.076000px;}
.y7b{bottom:144.036000px;}
.y2f{bottom:145.476000px;}
.y63{bottom:155.370000px;}
.yaf{bottom:161.130000px;}
.y7a{bottom:165.090000px;}
.y2e{bottom:166.530000px;}
.y62{bottom:176.430000px;}
.y79{bottom:180.210000px;}
.yae{bottom:182.190000px;}
.y2d{bottom:187.590000px;}
.y61{bottom:197.490000px;}
.yad{bottom:203.250000px;}
.y2c{bottom:208.650000px;}
.y77{bottom:209.550000px;}
.y60{bottom:218.550000px;}
.yac{bottom:224.310000px;}
.y2b{bottom:229.710000px;}
.y75{bottom:239.070000px;}
.y5f{bottom:239.610000px;}
.yab{bottom:245.370000px;}
.y2a{bottom:250.770000px;}
.y5e{bottom:260.670000px;}
.yaa{bottom:266.250000px;}
.y29{bottom:271.830000px;}
.y74{bottom:275.070000px;}
.y5d{bottom:281.730000px;}
.ya9{bottom:287.310000px;}
.y28{bottom:292.890000px;}
.y73{bottom:296.130000px;}
.y5c{bottom:302.790000px;}
.ya8{bottom:308.370000px;}
.y27{bottom:313.950000px;}
.y72{bottom:317.190000px;}
.y5b{bottom:323.850000px;}
.ya7{bottom:329.430000px;}
.y26{bottom:335.010000px;}
.y5a{bottom:344.955000px;}
.y71{bottom:347.295000px;}
.ya6{bottom:350.535000px;}
.y25{bottom:356.115000px;}
.ya2{bottom:365.835000px;}
.y59{bottom:366.015000px;}
.y70{bottom:368.355000px;}
.y24{bottom:377.175000px;}
.y58{bottom:387.075000px;}
.y6f{bottom:389.415000px;}
.y23{bottom:398.055000px;}
.ya0{bottom:398.595000px;}
.y57{bottom:408.135000px;}
.y6e{bottom:410.475000px;}
.y22{bottom:419.115000px;}
.y56{bottom:429.195000px;}
.y6d{bottom:431.535000px;}
.y9c{bottom:434.055000px;}
.y21{bottom:440.175000px;}
.y55{bottom:450.255000px;}
.y6c{bottom:452.595000px;}
.y20{bottom:461.235000px;}
.y6b{bottom:467.715000px;}
.y54{bottom:471.315000px;}
.y1f{bottom:482.295000px;}
.y53{bottom:492.375000px;}
.y1e{bottom:503.355000px;}
.y9b{bottom:508.035000px;}
.y69{bottom:508.755000px;}
.y52{bottom:513.435000px;}
.y1d{bottom:524.415000px;}
.y9a{bottom:529.095000px;}
.y51{bottom:534.495000px;}
.y1c{bottom:545.475000px;}
.y67{bottom:549.975000px;}
.y99{bottom:550.155000px;}
.y50{bottom:555.555000px;}
.y1b{bottom:566.535000px;}
.y4f{bottom:576.615000px;}
.y98{bottom:580.215000px;}
.y1a{bottom:587.595000px;}
.y4e{bottom:597.675000px;}
.y97{bottom:601.275000px;}
.y19{bottom:608.685000px;}
.y4d{bottom:618.765000px;}
.y96{bottom:622.365000px;}
.y18{bottom:632.265000px;}
.y4c{bottom:639.825000px;}
.y95{bottom:643.425000px;}
.y92{bottom:658.545000px;}
.y4b{bottom:660.885000px;}
.y17{bottom:662.145000px;}
.y4a{bottom:681.945000px;}
.y16{bottom:683.205000px;}
.y91{bottom:689.325000px;}
.y49{bottom:703.005000px;}
.y15{bottom:704.265000px;}
.y8f{bottom:720.105000px;}
.y48{bottom:724.065000px;}
.y14{bottom:725.325000px;}
.y47{bottom:745.125000px;}
.y13{bottom:746.385000px;}
.y8e{bottom:757.545000px;}
.y46{bottom:766.005000px;}
.y12{bottom:767.445000px;}
.y8d{bottom:778.605000px;}
.y45{bottom:787.065000px;}
.y11{bottom:788.505000px;}
.y8c{bottom:799.665000px;}
.y44{bottom:808.125000px;}
.y10{bottom:809.565000px;}
.y8b{bottom:820.725000px;}
.y43{bottom:829.185000px;}
.yf{bottom:830.625000px;}
.y42{bottom:850.245000px;}
.y8a{bottom:850.785000px;}
.ye{bottom:851.685000px;}
.y41{bottom:871.350000px;}
.y89{bottom:871.890000px;}
.yd{bottom:872.790000px;}
.y40{bottom:892.410000px;}
.y88{bottom:892.770000px;}
.yc{bottom:896.010000px;}
.y3f{bottom:913.470000px;}
.y87{bottom:913.830000px;}
.yb{bottom:922.290000px;}
.y3e{bottom:934.530000px;}
.y86{bottom:934.890000px;}
.ya{bottom:939.030000px;}
.y82{bottom:950.190000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:961.350000px;}
.y3c{bottom:976.650000px;}
.y80{bottom:977.910000px;}
.y8{bottom:986.550000px;}
.y3b{bottom:997.710000px;}
.y7e{bottom:1005.450000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.y39{bottom:1039.830000px;}
.y5{bottom:1060.350000px;}
.y38{bottom:1060.890000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1103.010000px;}
.y35{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h1c{height:2.864531px;}
.h12{height:23.220000px;}
.h14{height:23.400000px;}
.h11{height:23.580000px;}
.hf{height:25.020000px;}
.h10{height:25.200000px;}
.h15{height:26.460000px;}
.h1a{height:28.620000px;}
.h18{height:31.320000px;}
.hd{height:36.720000px;}
.he{height:36.900000px;}
.h7{height:38.671172px;}
.hb{height:45.637031px;}
.h13{height:50.940000px;}
.h2{height:56.146289px;}
.h16{height:57.240000px;}
.h8{height:59.439023px;}
.h9{height:59.614102px;}
.h5{height:61.189805px;}
.hc{height:61.423863px;}
.ha{height:62.211094px;}
.h17{height:63.180000px;}
.h19{height:64.080000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h1b{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:80.100000px;}
.w7{width:94.896000px;}
.wd{width:96.300000px;}
.wb{width:100.116000px;}
.w10{width:102.816000px;}
.w4{width:104.580000px;}
.w5{width:106.416000px;}
.w8{width:106.560000px;}
.we{width:115.056000px;}
.w6{width:136.836000px;}
.w3{width:141.516000px;}
.wa{width:142.416000px;}
.wc{width:162.720000px;}
.w12{width:164.910000px;}
.w9{width:173.010000px;}
.w11{width:206.310000px;}
.w13{width:210.810000px;}
.w14{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.280000px;}
.x16{left:32.039987px;}
.x1{left:53.999987px;}
.x2{left:75.239987px;}
.x14{left:80.999987px;}
.x15{left:108.035987px;}
.x17{left:191.370000px;}
.x3{left:200.730000px;}
.x11{left:208.830000px;}
.xb{left:243.210000px;}
.x8{left:258.510000px;}
.x18{left:264.810000px;}
.xe{left:299.955000px;}
.x12{left:312.375000px;}
.x5{left:343.155000px;}
.x9{left:354.135000px;}
.xc{left:386.355000px;}
.xf{left:397.155000px;}
.x6{left:448.455000px;}
.xa{left:461.595000px;}
.xd{left:487.185000px;}
.x10{left:512.925000px;}
.x13{left:519.405000px;}
.x7{left:555.585000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls20{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.442667pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.290133pt;}
.ls1c{letter-spacing:-0.213867pt;}
.ls1e{letter-spacing:-0.208533pt;}
.ls1f{letter-spacing:-0.165867pt;}
.ls1d{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.102933pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls29{letter-spacing:-0.061867pt;}
.ls28{letter-spacing:-0.051840pt;}
.ls11{letter-spacing:-0.036480pt;}
.ls13{letter-spacing:-0.033920pt;}
.ls23{letter-spacing:-0.028800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls1b{letter-spacing:0.155733pt;}
.ls16{letter-spacing:0.165867pt;}
.ls10{letter-spacing:0.256533pt;}
.lsa{letter-spacing:0.272000pt;}
.ls7{letter-spacing:0.313067pt;}
.ls15{letter-spacing:0.426133pt;}
.ls26{letter-spacing:0.426240pt;}
.ls14{letter-spacing:0.437333pt;}
.ls21{letter-spacing:0.438400pt;}
.ls4{letter-spacing:0.794880pt;}
.ls22{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.lsf{letter-spacing:1.872640pt;}
.ls1a{letter-spacing:7.632640pt;}
.ls18{letter-spacing:8.912640pt;}
.ls19{letter-spacing:10.192640pt;}
.ls27{letter-spacing:10.832640pt;}
.ls17{letter-spacing:11.472640pt;}
.lse{letter-spacing:15.952640pt;}
.lsc{letter-spacing:17.872640pt;}
.lsd{letter-spacing:19.792640pt;}
.ls25{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.550187pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.277120pt;}
.wsd{word-spacing:-12.170987pt;}
.wse{word-spacing:-12.160853pt;}
.ws9{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.976320pt;}
.wsc{word-spacing:-11.971200pt;}
.wsa{word-spacing:-11.968640pt;}
.ws12{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.943253pt;}
.wsb{word-spacing:-11.908053pt;}
.ws6{word-spacing:-11.902187pt;}
.ws10{word-spacing:-11.796587pt;}
.ws7{word-spacing:-11.714987pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1286.994560pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-893.908907pt;}
._5{margin-left:-514.426453pt;}
._18{margin-left:-4.259200pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._b{width:2.336853pt;}
._a{width:3.398400pt;}
._c{width:4.408960pt;}
._d{width:5.765973pt;}
._e{width:7.224320pt;}
._12{width:8.605440pt;}
._13{width:10.145920pt;}
._f{width:11.048960pt;}
._15{width:13.280000pt;}
._16{width:14.289280pt;}
._11{width:16.020693pt;}
._10{width:17.104640pt;}
._1c{width:18.130133pt;}
._1b{width:19.078613pt;}
._1a{width:20.042240pt;}
._19{width:21.545173pt;}
._8{width:23.515733pt;}
._7{width:24.672427pt;}
._9{width:25.636053pt;}
._17{width:27.622400pt;}
._14{width:48.979200pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:5.920000pt;}
.yb7{bottom:6.240000pt;}
.y81{bottom:7.840000pt;}
.y85{bottom:8.000000pt;}
.y7f{bottom:8.160000pt;}
.y76{bottom:9.440000pt;}
.y78{bottom:9.600000pt;}
.y90{bottom:10.720000pt;}
.ya5{bottom:12.640000pt;}
.y84{bottom:13.760000pt;}
.ya1{bottom:15.040000pt;}
.y94{bottom:19.360000pt;}
.y68{bottom:19.840000pt;}
.y6a{bottom:20.000000pt;}
.y9e{bottom:24.640000pt;}
.yb6{bottom:24.960000pt;}
.ya4{bottom:25.440000pt;}
.yb3{bottom:31.520000pt;}
.y83{bottom:32.480000pt;}
.y93{bottom:38.080000pt;}
.y9d{bottom:43.360000pt;}
.yb5{bottom:44.000000pt;}
.ya3{bottom:44.160000pt;}
.y6{bottom:54.560000pt;}
.yb4{bottom:62.714667pt;}
.y66{bottom:81.952000pt;}
.yb2{bottom:87.552000pt;}
.y7d{bottom:90.592000pt;}
.y31{bottom:91.872000pt;}
.y65{bottom:100.672000pt;}
.yb1{bottom:105.792000pt;}
.y7c{bottom:109.312000pt;}
.y30{bottom:110.592000pt;}
.y64{bottom:119.392000pt;}
.yb0{bottom:124.512000pt;}
.y7b{bottom:128.032000pt;}
.y2f{bottom:129.312000pt;}
.y63{bottom:138.106667pt;}
.yaf{bottom:143.226667pt;}
.y7a{bottom:146.746667pt;}
.y2e{bottom:148.026667pt;}
.y62{bottom:156.826667pt;}
.y79{bottom:160.186667pt;}
.yae{bottom:161.946667pt;}
.y2d{bottom:166.746667pt;}
.y61{bottom:175.546667pt;}
.yad{bottom:180.666667pt;}
.y2c{bottom:185.466667pt;}
.y77{bottom:186.266667pt;}
.y60{bottom:194.266667pt;}
.yac{bottom:199.386667pt;}
.y2b{bottom:204.186667pt;}
.y75{bottom:212.506667pt;}
.y5f{bottom:212.986667pt;}
.yab{bottom:218.106667pt;}
.y2a{bottom:222.906667pt;}
.y5e{bottom:231.706667pt;}
.yaa{bottom:236.666667pt;}
.y29{bottom:241.626667pt;}
.y74{bottom:244.506667pt;}
.y5d{bottom:250.426667pt;}
.ya9{bottom:255.386667pt;}
.y28{bottom:260.346667pt;}
.y73{bottom:263.226667pt;}
.y5c{bottom:269.146667pt;}
.ya8{bottom:274.106667pt;}
.y27{bottom:279.066667pt;}
.y72{bottom:281.946667pt;}
.y5b{bottom:287.866667pt;}
.ya7{bottom:292.826667pt;}
.y26{bottom:297.786667pt;}
.y5a{bottom:306.626667pt;}
.y71{bottom:308.706667pt;}
.ya6{bottom:311.586667pt;}
.y25{bottom:316.546667pt;}
.ya2{bottom:325.186667pt;}
.y59{bottom:325.346667pt;}
.y70{bottom:327.426667pt;}
.y24{bottom:335.266667pt;}
.y58{bottom:344.066667pt;}
.y6f{bottom:346.146667pt;}
.y23{bottom:353.826667pt;}
.ya0{bottom:354.306667pt;}
.y57{bottom:362.786667pt;}
.y6e{bottom:364.866667pt;}
.y22{bottom:372.546667pt;}
.y56{bottom:381.506667pt;}
.y6d{bottom:383.586667pt;}
.y9c{bottom:385.826667pt;}
.y21{bottom:391.266667pt;}
.y55{bottom:400.226667pt;}
.y6c{bottom:402.306667pt;}
.y20{bottom:409.986667pt;}
.y6b{bottom:415.746667pt;}
.y54{bottom:418.946667pt;}
.y1f{bottom:428.706667pt;}
.y53{bottom:437.666667pt;}
.y1e{bottom:447.426667pt;}
.y9b{bottom:451.586667pt;}
.y69{bottom:452.226667pt;}
.y52{bottom:456.386667pt;}
.y1d{bottom:466.146667pt;}
.y9a{bottom:470.306667pt;}
.y51{bottom:475.106667pt;}
.y1c{bottom:484.866667pt;}
.y67{bottom:488.866667pt;}
.y99{bottom:489.026667pt;}
.y50{bottom:493.826667pt;}
.y1b{bottom:503.586667pt;}
.y4f{bottom:512.546667pt;}
.y98{bottom:515.746667pt;}
.y1a{bottom:522.306667pt;}
.y4e{bottom:531.266667pt;}
.y97{bottom:534.466667pt;}
.y19{bottom:541.053333pt;}
.y4d{bottom:550.013333pt;}
.y96{bottom:553.213333pt;}
.y18{bottom:562.013333pt;}
.y4c{bottom:568.733333pt;}
.y95{bottom:571.933333pt;}
.y92{bottom:585.373333pt;}
.y4b{bottom:587.453333pt;}
.y17{bottom:588.573333pt;}
.y4a{bottom:606.173333pt;}
.y16{bottom:607.293333pt;}
.y91{bottom:612.733333pt;}
.y49{bottom:624.893333pt;}
.y15{bottom:626.013333pt;}
.y8f{bottom:640.093333pt;}
.y48{bottom:643.613333pt;}
.y14{bottom:644.733333pt;}
.y47{bottom:662.333333pt;}
.y13{bottom:663.453333pt;}
.y8e{bottom:673.373333pt;}
.y46{bottom:680.893333pt;}
.y12{bottom:682.173333pt;}
.y8d{bottom:692.093333pt;}
.y45{bottom:699.613333pt;}
.y11{bottom:700.893333pt;}
.y8c{bottom:710.813333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:719.613333pt;}
.y8b{bottom:729.533333pt;}
.y43{bottom:737.053333pt;}
.yf{bottom:738.333333pt;}
.y42{bottom:755.773333pt;}
.y8a{bottom:756.253333pt;}
.ye{bottom:757.053333pt;}
.y41{bottom:774.533333pt;}
.y89{bottom:775.013333pt;}
.yd{bottom:775.813333pt;}
.y40{bottom:793.253333pt;}
.y88{bottom:793.573333pt;}
.yc{bottom:796.453333pt;}
.y3f{bottom:811.973333pt;}
.y87{bottom:812.293333pt;}
.yb{bottom:819.813333pt;}
.y3e{bottom:830.693333pt;}
.y86{bottom:831.013333pt;}
.ya{bottom:834.693333pt;}
.y82{bottom:844.613333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:854.533333pt;}
.y3c{bottom:868.133333pt;}
.y80{bottom:869.253333pt;}
.y8{bottom:876.933333pt;}
.y3b{bottom:886.853333pt;}
.y7e{bottom:893.733333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.y39{bottom:924.293333pt;}
.y5{bottom:942.533333pt;}
.y38{bottom:943.013333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:980.453333pt;}
.y35{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h1c{height:2.546250pt;}
.h12{height:20.640000pt;}
.h14{height:20.800000pt;}
.h11{height:20.960000pt;}
.hf{height:22.240000pt;}
.h10{height:22.400000pt;}
.h15{height:23.520000pt;}
.h1a{height:25.440000pt;}
.h18{height:27.840000pt;}
.hd{height:32.640000pt;}
.he{height:32.800000pt;}
.h7{height:34.374375pt;}
.hb{height:40.566250pt;}
.h13{height:45.280000pt;}
.h2{height:49.907812pt;}
.h16{height:50.880000pt;}
.h8{height:52.834688pt;}
.h9{height:52.990313pt;}
.h5{height:54.390938pt;}
.hc{height:54.598989pt;}
.ha{height:55.298750pt;}
.h17{height:56.160000pt;}
.h19{height:56.960000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h1b{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:71.200000pt;}
.w7{width:84.352000pt;}
.wd{width:85.600000pt;}
.wb{width:88.992000pt;}
.w10{width:91.392000pt;}
.w4{width:92.960000pt;}
.w5{width:94.592000pt;}
.w8{width:94.720000pt;}
.we{width:102.272000pt;}
.w6{width:121.632000pt;}
.w3{width:125.792000pt;}
.wa{width:126.592000pt;}
.wc{width:144.640000pt;}
.w12{width:146.586667pt;}
.w9{width:153.786667pt;}
.w11{width:183.386667pt;}
.w13{width:187.386667pt;}
.w14{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.360000pt;}
.x16{left:28.479988pt;}
.x1{left:47.999988pt;}
.x2{left:66.879988pt;}
.x14{left:71.999988pt;}
.x15{left:96.031988pt;}
.x17{left:170.106667pt;}
.x3{left:178.426667pt;}
.x11{left:185.626667pt;}
.xb{left:216.186667pt;}
.x8{left:229.786667pt;}
.x18{left:235.386667pt;}
.xe{left:266.626667pt;}
.x12{left:277.666667pt;}
.x5{left:305.026667pt;}
.x9{left:314.786667pt;}
.xc{left:343.426667pt;}
.xf{left:353.026667pt;}
.x6{left:398.626667pt;}
.xa{left:410.306667pt;}
.xd{left:433.053333pt;}
.x10{left:455.933333pt;}
.x13{left:461.693333pt;}
.x7{left:493.853333pt;}
}




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