
    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_c7d0a89711bcf680a0c812d7.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_ad69665fa945cf8178fecade.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_74f24ed7f0748de20f9ed71d.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_03b135a009d3bddb5ded1958.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_1bd4a47800ac177bbcf0148e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_07313d6bcb41ad64d1b9641a.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_4f321551dfbfb3bdaee646ce.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3497149b4402093d5d61c939.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_32805fbca47ee36a49f02660.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls13{letter-spacing:-0.960000px;}
.ls1c{letter-spacing:-0.544800px;}
.ls4{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.414000px;}
.lsb{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.240600px;}
.ls11{letter-spacing:-0.228000px;}
.lsc{letter-spacing:-0.175800px;}
.lsd{letter-spacing:-0.115800px;}
.ls15{letter-spacing:-0.112200px;}
.ls1a{letter-spacing:-0.067200px;}
.lsa{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.190200px;}
.ls20{letter-spacing:0.195000px;}
.ls18{letter-spacing:0.274800px;}
.ls17{letter-spacing:0.306000px;}
.ls8{letter-spacing:0.352200px;}
.ls6{letter-spacing:0.417000px;}
.ls1f{letter-spacing:0.479520px;}
.ls16{letter-spacing:0.606000px;}
.ls12{letter-spacing:0.654000px;}
.ls5{letter-spacing:0.702000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1e{letter-spacing:12.186720px;}
.ls1d{letter-spacing:42.426720px;}
.lsf{letter-spacing:45.306720px;}
.ls10{letter-spacing:45.450720px;}
.lse{letter-spacing:64.170720px;}
.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;}
}
.wse{word-spacing:-60.366000px;}
.wsb{word-spacing:-59.760000px;}
.wsd{word-spacing:-59.647800px;}
.ws0{word-spacing:-41.040000px;}
.ws4{word-spacing:-21.993960px;}
.ws3{word-spacing:-21.641760px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws11{word-spacing:-13.811760px;}
.wsf{word-spacing:-13.780560px;}
.ws13{word-spacing:-13.700760px;}
.ws9{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.393560px;}
.ws10{word-spacing:-13.265160px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws8{word-spacing:-8.426880px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1449.054480px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1005.647520px;}
._5{margin-left:-578.729760px;}
._a{margin-left:-20.502960px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._11{width:3.027840px;}
._e{width:4.392960px;}
._10{width:6.334560px;}
._f{width:7.649280px;}
._14{width:8.884320px;}
._15{width:9.999840px;}
._d{width:11.091840px;}
._c{width:12.128400px;}
._12{width:15.657120px;}
._16{width:16.770960px;}
._8{width:18.031440px;}
._7{width:19.152000px;}
._9{width:20.331120px;}
._b{width:97.138080px;}
._13{width:162.040320px;}
.fc2{color:rgb(0,0,255);}
.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;}
.y89{bottom:6.654000px;}
.y86{bottom:6.660000px;}
.y8f{bottom:6.690000px;}
.yed{bottom:7.020000px;}
.y93{bottom:12.600000px;}
.y91{bottom:23.580000px;}
.yec{bottom:28.080000px;}
.ye9{bottom:35.460000px;}
.yeb{bottom:49.500000px;}
.y6{bottom:61.200000px;}
.yea{bottom:70.554000px;}
.y8c{bottom:85.356000px;}
.ye8{bottom:92.376000px;}
.yca{bottom:94.356000px;}
.y30{bottom:106.056000px;}
.y8b{bottom:107.316000px;}
.ybf{bottom:109.296000px;}
.yc9{bottom:115.416000px;}
.y2f{bottom:127.116000px;}
.y8a{bottom:128.376000px;}
.ybe{bottom:130.356000px;}
.yc8{bottom:136.476000px;}
.y61{bottom:146.196000px;}
.y2e{bottom:148.176000px;}
.y88{bottom:149.436000px;}
.ybd{bottom:151.410000px;}
.yc7{bottom:157.530000px;}
.y60{bottom:167.250000px;}
.y2d{bottom:169.230000px;}
.y87{bottom:170.490000px;}
.ybc{bottom:172.470000px;}
.yc6{bottom:178.590000px;}
.y5f{bottom:188.310000px;}
.y2c{bottom:190.290000px;}
.y85{bottom:192.270000px;}
.ybb{bottom:193.530000px;}
.ye7{bottom:196.590000px;}
.yc5{bottom:199.650000px;}
.y5e{bottom:209.190000px;}
.y2b{bottom:211.350000px;}
.yba{bottom:214.590000px;}
.ye6{bottom:217.650000px;}
.y84{bottom:220.710000px;}
.y5d{bottom:230.250000px;}
.y2a{bottom:232.410000px;}
.yb9{bottom:235.650000px;}
.ye5{bottom:238.710000px;}
.y83{bottom:241.770000px;}
.y5c{bottom:251.310000px;}
.y29{bottom:253.290000px;}
.yb8{bottom:256.710000px;}
.ye4{bottom:259.770000px;}
.y82{bottom:262.830000px;}
.y5b{bottom:272.370000px;}
.y28{bottom:274.350000px;}
.ye3{bottom:280.830000px;}
.y81{bottom:283.890000px;}
.yb7{bottom:286.770000px;}
.y5a{bottom:293.430000px;}
.y27{bottom:295.410000px;}
.ye2{bottom:301.890000px;}
.y80{bottom:304.950000px;}
.yb6{bottom:307.830000px;}
.y59{bottom:314.490000px;}
.y26{bottom:316.470000px;}
.ye1{bottom:322.950000px;}
.y7f{bottom:326.010000px;}
.yb5{bottom:328.890000px;}
.y58{bottom:335.550000px;}
.y25{bottom:337.575000px;}
.ye0{bottom:344.055000px;}
.y7e{bottom:347.115000px;}
.yb4{bottom:349.995000px;}
.y57{bottom:356.655000px;}
.y24{bottom:358.635000px;}
.ydf{bottom:365.115000px;}
.y7d{bottom:368.175000px;}
.yb3{bottom:371.055000px;}
.y56{bottom:377.715000px;}
.y23{bottom:379.695000px;}
.yde{bottom:386.175000px;}
.y7c{bottom:389.235000px;}
.yb2{bottom:392.115000px;}
.y55{bottom:398.775000px;}
.y22{bottom:400.755000px;}
.ydd{bottom:407.235000px;}
.y7b{bottom:410.295000px;}
.yb1{bottom:413.175000px;}
.y54{bottom:419.835000px;}
.y21{bottom:421.815000px;}
.ydc{bottom:428.295000px;}
.y7a{bottom:431.355000px;}
.yb0{bottom:434.235000px;}
.y53{bottom:440.895000px;}
.y20{bottom:442.875000px;}
.ydb{bottom:449.355000px;}
.y79{bottom:452.415000px;}
.yaf{bottom:455.295000px;}
.y52{bottom:461.955000px;}
.y1f{bottom:463.935000px;}
.yda{bottom:470.415000px;}
.y78{bottom:473.475000px;}
.yae{bottom:476.355000px;}
.y1e{bottom:484.995000px;}
.yd9{bottom:491.475000px;}
.y51{bottom:492.015000px;}
.y77{bottom:494.535000px;}
.yad{bottom:497.415000px;}
.y1d{bottom:506.055000px;}
.yd8{bottom:512.535000px;}
.y50{bottom:513.075000px;}
.y76{bottom:515.595000px;}
.yac{bottom:518.475000px;}
.y1c{bottom:527.115000px;}
.yd7{bottom:533.595000px;}
.y4f{bottom:534.135000px;}
.y75{bottom:536.655000px;}
.yab{bottom:539.535000px;}
.yd6{bottom:554.655000px;}
.y4e{bottom:555.195000px;}
.y74{bottom:557.715000px;}
.yaa{bottom:560.595000px;}
.yc4{bottom:566.715000px;}
.y1b{bottom:568.695000px;}
.yd5{bottom:575.715000px;}
.y73{bottom:578.775000px;}
.ya9{bottom:581.655000px;}
.y4d{bottom:585.255000px;}
.yc3{bottom:587.775000px;}
.yd4{bottom:596.775000px;}
.y1a{bottom:598.575000px;}
.y72{bottom:599.835000px;}
.ya8{bottom:602.715000px;}
.y4c{bottom:606.345000px;}
.yc2{bottom:608.865000px;}
.yd3{bottom:617.865000px;}
.y19{bottom:619.665000px;}
.y71{bottom:620.925000px;}
.ya7{bottom:623.805000px;}
.y4b{bottom:627.405000px;}
.yc1{bottom:629.925000px;}
.yd2{bottom:638.925000px;}
.y18{bottom:640.725000px;}
.y70{bottom:641.805000px;}
.ya6{bottom:644.865000px;}
.y4a{bottom:648.465000px;}
.yc0{bottom:650.805000px;}
.yd1{bottom:659.805000px;}
.y17{bottom:661.785000px;}
.ya5{bottom:665.925000px;}
.y49{bottom:669.525000px;}
.y6f{bottom:671.865000px;}
.yd0{bottom:680.865000px;}
.y16{bottom:682.845000px;}
.ya4{bottom:686.985000px;}
.y6e{bottom:692.925000px;}
.y48{bottom:699.585000px;}
.ycf{bottom:701.925000px;}
.y15{bottom:703.905000px;}
.ya3{bottom:708.045000px;}
.y6d{bottom:713.985000px;}
.y47{bottom:720.645000px;}
.yce{bottom:722.985000px;}
.y14{bottom:724.965000px;}
.ya2{bottom:729.105000px;}
.y6c{bottom:735.045000px;}
.y46{bottom:741.885000px;}
.ycd{bottom:744.045000px;}
.y13{bottom:746.025000px;}
.ya1{bottom:750.165000px;}
.y6b{bottom:756.105000px;}
.y45{bottom:763.665000px;}
.ycc{bottom:765.105000px;}
.y12{bottom:767.085000px;}
.ya0{bottom:771.225000px;}
.y6a{bottom:777.165000px;}
.y44{bottom:785.445000px;}
.ycb{bottom:786.165000px;}
.y11{bottom:788.145000px;}
.y9f{bottom:792.285000px;}
.y69{bottom:798.225000px;}
.y43{bottom:807.225000px;}
.y10{bottom:809.205000px;}
.y9e{bottom:813.345000px;}
.y68{bottom:819.285000px;}
.y42{bottom:828.285000px;}
.yf{bottom:830.265000px;}
.y9d{bottom:834.225000px;}
.y67{bottom:840.345000px;}
.y41{bottom:849.345000px;}
.ye{bottom:853.845000px;}
.y9c{bottom:855.285000px;}
.y66{bottom:861.405000px;}
.y40{bottom:870.405000px;}
.y9b{bottom:876.390000px;}
.yd{bottom:880.170000px;}
.y65{bottom:882.510000px;}
.y3f{bottom:891.510000px;}
.yc{bottom:896.010000px;}
.y9a{bottom:897.450000px;}
.y64{bottom:903.570000px;}
.y3e{bottom:912.570000px;}
.y99{bottom:918.510000px;}
.yb{bottom:922.290000px;}
.y63{bottom:924.630000px;}
.y3d{bottom:933.630000px;}
.ya{bottom:939.030000px;}
.y98{bottom:939.570000px;}
.y62{bottom:945.690000px;}
.y3c{bottom:954.690000px;}
.y97{bottom:954.870000px;}
.y9{bottom:961.350000px;}
.y3b{bottom:975.750000px;}
.y96{bottom:975.930000px;}
.y8{bottom:986.550000px;}
.y3a{bottom:996.810000px;}
.y95{bottom:996.990000px;}
.y39{bottom:1017.870000px;}
.y94{bottom:1018.050000px;}
.y7{bottom:1020.210000px;}
.y38{bottom:1038.930000px;}
.y90{bottom:1039.830000px;}
.y37{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.y92{bottom:1061.610000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1092.570000px;}
.y35{bottom:1102.110000px;}
.y34{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y8e{bottom:1137.570000px;}
.y33{bottom:1144.260000px;}
.y2{bottom:1156.860000px;}
.y8d{bottom:1158.660000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.h10{height:2.864531px;}
.hb{height:21.060000px;}
.hc{height:21.096000px;}
.he{height:33.120000px;}
.h7{height:38.671172px;}
.hd{height:54.900000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hf{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:45.216000px;}
.w3{width:52.236000px;}
.w7{width:60.120000px;}
.wd{width:124.920000px;}
.we{width:131.976000px;}
.wc{width:136.440000px;}
.wf{width:136.476000px;}
.w6{width:142.596000px;}
.w10{width:210.810000px;}
.wa{width:249.015000px;}
.w4{width:346.350000px;}
.w5{width:376.455000px;}
.wb{width:393.375000px;}
.w9{width:527.115000px;}
.w11{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:1.980000px;}
.x8{left:8.100000px;}
.x2{left:52.919987px;}
.x1{left:53.999987px;}
.xe{left:56.160000px;}
.x7{left:62.100000px;}
.x5{left:75.239987px;}
.x14{left:79.559987px;}
.x4{left:80.999987px;}
.x6{left:102.275987px;}
.x15{left:106.595987px;}
.x3{left:108.035987px;}
.x9{left:114.336000px;}
.x16{left:191.370000px;}
.xb{left:204.690000px;}
.xc{left:264.810000px;}
.x10{left:305.175000px;}
.xd{left:310.035000px;}
.x12{left:430.095000px;}
.xa{left:460.695000px;}
.x13{left:562.065000px;}
.x11{left:698.550000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls1c{letter-spacing:-0.484267pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.368000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.213867pt;}
.ls11{letter-spacing:-0.202667pt;}
.lsc{letter-spacing:-0.156267pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls15{letter-spacing:-0.099733pt;}
.ls1a{letter-spacing:-0.059733pt;}
.lsa{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.169067pt;}
.ls20{letter-spacing:0.173333pt;}
.ls18{letter-spacing:0.244267pt;}
.ls17{letter-spacing:0.272000pt;}
.ls8{letter-spacing:0.313067pt;}
.ls6{letter-spacing:0.370667pt;}
.ls1f{letter-spacing:0.426240pt;}
.ls16{letter-spacing:0.538667pt;}
.ls12{letter-spacing:0.581333pt;}
.ls5{letter-spacing:0.624000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1e{letter-spacing:10.832640pt;}
.ls1d{letter-spacing:37.712640pt;}
.lsf{letter-spacing:40.272640pt;}
.ls10{letter-spacing:40.400640pt;}
.lse{letter-spacing:57.040640pt;}
.wse{word-spacing:-53.658667pt;}
.wsb{word-spacing:-53.120000pt;}
.wsd{word-spacing:-53.020267pt;}
.ws0{word-spacing:-36.480000pt;}
.ws4{word-spacing:-19.550187pt;}
.ws3{word-spacing:-19.237120pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.277120pt;}
.wsf{word-spacing:-12.249387pt;}
.ws13{word-spacing:-12.178453pt;}
.ws9{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.905387pt;}
.ws10{word-spacing:-11.791253pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws8{word-spacing:-7.490560pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-1288.048427pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-893.908907pt;}
._5{margin-left:-514.426453pt;}
._a{margin-left:-18.224853pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._11{width:2.691413pt;}
._e{width:3.904853pt;}
._10{width:5.630720pt;}
._f{width:6.799360pt;}
._14{width:7.897173pt;}
._15{width:8.888747pt;}
._d{width:9.859413pt;}
._c{width:10.780800pt;}
._12{width:13.917440pt;}
._16{width:14.907520pt;}
._8{width:16.027947pt;}
._7{width:17.024000pt;}
._9{width:18.072107pt;}
._b{width:86.344960pt;}
._13{width:144.035840pt;}
.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;}
.y89{bottom:5.914667pt;}
.y86{bottom:5.920000pt;}
.y8f{bottom:5.946667pt;}
.yed{bottom:6.240000pt;}
.y93{bottom:11.200000pt;}
.y91{bottom:20.960000pt;}
.yec{bottom:24.960000pt;}
.ye9{bottom:31.520000pt;}
.yeb{bottom:44.000000pt;}
.y6{bottom:54.400000pt;}
.yea{bottom:62.714667pt;}
.y8c{bottom:75.872000pt;}
.ye8{bottom:82.112000pt;}
.yca{bottom:83.872000pt;}
.y30{bottom:94.272000pt;}
.y8b{bottom:95.392000pt;}
.ybf{bottom:97.152000pt;}
.yc9{bottom:102.592000pt;}
.y2f{bottom:112.992000pt;}
.y8a{bottom:114.112000pt;}
.ybe{bottom:115.872000pt;}
.yc8{bottom:121.312000pt;}
.y61{bottom:129.952000pt;}
.y2e{bottom:131.712000pt;}
.y88{bottom:132.832000pt;}
.ybd{bottom:134.586667pt;}
.yc7{bottom:140.026667pt;}
.y60{bottom:148.666667pt;}
.y2d{bottom:150.426667pt;}
.y87{bottom:151.546667pt;}
.ybc{bottom:153.306667pt;}
.yc6{bottom:158.746667pt;}
.y5f{bottom:167.386667pt;}
.y2c{bottom:169.146667pt;}
.y85{bottom:170.906667pt;}
.ybb{bottom:172.026667pt;}
.ye7{bottom:174.746667pt;}
.yc5{bottom:177.466667pt;}
.y5e{bottom:185.946667pt;}
.y2b{bottom:187.866667pt;}
.yba{bottom:190.746667pt;}
.ye6{bottom:193.466667pt;}
.y84{bottom:196.186667pt;}
.y5d{bottom:204.666667pt;}
.y2a{bottom:206.586667pt;}
.yb9{bottom:209.466667pt;}
.ye5{bottom:212.186667pt;}
.y83{bottom:214.906667pt;}
.y5c{bottom:223.386667pt;}
.y29{bottom:225.146667pt;}
.yb8{bottom:228.186667pt;}
.ye4{bottom:230.906667pt;}
.y82{bottom:233.626667pt;}
.y5b{bottom:242.106667pt;}
.y28{bottom:243.866667pt;}
.ye3{bottom:249.626667pt;}
.y81{bottom:252.346667pt;}
.yb7{bottom:254.906667pt;}
.y5a{bottom:260.826667pt;}
.y27{bottom:262.586667pt;}
.ye2{bottom:268.346667pt;}
.y80{bottom:271.066667pt;}
.yb6{bottom:273.626667pt;}
.y59{bottom:279.546667pt;}
.y26{bottom:281.306667pt;}
.ye1{bottom:287.066667pt;}
.y7f{bottom:289.786667pt;}
.yb5{bottom:292.346667pt;}
.y58{bottom:298.266667pt;}
.y25{bottom:300.066667pt;}
.ye0{bottom:305.826667pt;}
.y7e{bottom:308.546667pt;}
.yb4{bottom:311.106667pt;}
.y57{bottom:317.026667pt;}
.y24{bottom:318.786667pt;}
.ydf{bottom:324.546667pt;}
.y7d{bottom:327.266667pt;}
.yb3{bottom:329.826667pt;}
.y56{bottom:335.746667pt;}
.y23{bottom:337.506667pt;}
.yde{bottom:343.266667pt;}
.y7c{bottom:345.986667pt;}
.yb2{bottom:348.546667pt;}
.y55{bottom:354.466667pt;}
.y22{bottom:356.226667pt;}
.ydd{bottom:361.986667pt;}
.y7b{bottom:364.706667pt;}
.yb1{bottom:367.266667pt;}
.y54{bottom:373.186667pt;}
.y21{bottom:374.946667pt;}
.ydc{bottom:380.706667pt;}
.y7a{bottom:383.426667pt;}
.yb0{bottom:385.986667pt;}
.y53{bottom:391.906667pt;}
.y20{bottom:393.666667pt;}
.ydb{bottom:399.426667pt;}
.y79{bottom:402.146667pt;}
.yaf{bottom:404.706667pt;}
.y52{bottom:410.626667pt;}
.y1f{bottom:412.386667pt;}
.yda{bottom:418.146667pt;}
.y78{bottom:420.866667pt;}
.yae{bottom:423.426667pt;}
.y1e{bottom:431.106667pt;}
.yd9{bottom:436.866667pt;}
.y51{bottom:437.346667pt;}
.y77{bottom:439.586667pt;}
.yad{bottom:442.146667pt;}
.y1d{bottom:449.826667pt;}
.yd8{bottom:455.586667pt;}
.y50{bottom:456.066667pt;}
.y76{bottom:458.306667pt;}
.yac{bottom:460.866667pt;}
.y1c{bottom:468.546667pt;}
.yd7{bottom:474.306667pt;}
.y4f{bottom:474.786667pt;}
.y75{bottom:477.026667pt;}
.yab{bottom:479.586667pt;}
.yd6{bottom:493.026667pt;}
.y4e{bottom:493.506667pt;}
.y74{bottom:495.746667pt;}
.yaa{bottom:498.306667pt;}
.yc4{bottom:503.746667pt;}
.y1b{bottom:505.506667pt;}
.yd5{bottom:511.746667pt;}
.y73{bottom:514.466667pt;}
.ya9{bottom:517.026667pt;}
.y4d{bottom:520.226667pt;}
.yc3{bottom:522.466667pt;}
.yd4{bottom:530.466667pt;}
.y1a{bottom:532.066667pt;}
.y72{bottom:533.186667pt;}
.ya8{bottom:535.746667pt;}
.y4c{bottom:538.973333pt;}
.yc2{bottom:541.213333pt;}
.yd3{bottom:549.213333pt;}
.y19{bottom:550.813333pt;}
.y71{bottom:551.933333pt;}
.ya7{bottom:554.493333pt;}
.y4b{bottom:557.693333pt;}
.yc1{bottom:559.933333pt;}
.yd2{bottom:567.933333pt;}
.y18{bottom:569.533333pt;}
.y70{bottom:570.493333pt;}
.ya6{bottom:573.213333pt;}
.y4a{bottom:576.413333pt;}
.yc0{bottom:578.493333pt;}
.yd1{bottom:586.493333pt;}
.y17{bottom:588.253333pt;}
.ya5{bottom:591.933333pt;}
.y49{bottom:595.133333pt;}
.y6f{bottom:597.213333pt;}
.yd0{bottom:605.213333pt;}
.y16{bottom:606.973333pt;}
.ya4{bottom:610.653333pt;}
.y6e{bottom:615.933333pt;}
.y48{bottom:621.853333pt;}
.ycf{bottom:623.933333pt;}
.y15{bottom:625.693333pt;}
.ya3{bottom:629.373333pt;}
.y6d{bottom:634.653333pt;}
.y47{bottom:640.573333pt;}
.yce{bottom:642.653333pt;}
.y14{bottom:644.413333pt;}
.ya2{bottom:648.093333pt;}
.y6c{bottom:653.373333pt;}
.y46{bottom:659.453333pt;}
.ycd{bottom:661.373333pt;}
.y13{bottom:663.133333pt;}
.ya1{bottom:666.813333pt;}
.y6b{bottom:672.093333pt;}
.y45{bottom:678.813333pt;}
.ycc{bottom:680.093333pt;}
.y12{bottom:681.853333pt;}
.ya0{bottom:685.533333pt;}
.y6a{bottom:690.813333pt;}
.y44{bottom:698.173333pt;}
.ycb{bottom:698.813333pt;}
.y11{bottom:700.573333pt;}
.y9f{bottom:704.253333pt;}
.y69{bottom:709.533333pt;}
.y43{bottom:717.533333pt;}
.y10{bottom:719.293333pt;}
.y9e{bottom:722.973333pt;}
.y68{bottom:728.253333pt;}
.y42{bottom:736.253333pt;}
.yf{bottom:738.013333pt;}
.y9d{bottom:741.533333pt;}
.y67{bottom:746.973333pt;}
.y41{bottom:754.973333pt;}
.ye{bottom:758.973333pt;}
.y9c{bottom:760.253333pt;}
.y66{bottom:765.693333pt;}
.y40{bottom:773.693333pt;}
.y9b{bottom:779.013333pt;}
.yd{bottom:782.373333pt;}
.y65{bottom:784.453333pt;}
.y3f{bottom:792.453333pt;}
.yc{bottom:796.453333pt;}
.y9a{bottom:797.733333pt;}
.y64{bottom:803.173333pt;}
.y3e{bottom:811.173333pt;}
.y99{bottom:816.453333pt;}
.yb{bottom:819.813333pt;}
.y63{bottom:821.893333pt;}
.y3d{bottom:829.893333pt;}
.ya{bottom:834.693333pt;}
.y98{bottom:835.173333pt;}
.y62{bottom:840.613333pt;}
.y3c{bottom:848.613333pt;}
.y97{bottom:848.773333pt;}
.y9{bottom:854.533333pt;}
.y3b{bottom:867.333333pt;}
.y96{bottom:867.493333pt;}
.y8{bottom:876.933333pt;}
.y3a{bottom:886.053333pt;}
.y95{bottom:886.213333pt;}
.y39{bottom:904.773333pt;}
.y94{bottom:904.933333pt;}
.y7{bottom:906.853333pt;}
.y38{bottom:923.493333pt;}
.y90{bottom:924.293333pt;}
.y37{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.y92{bottom:943.653333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:971.173333pt;}
.y35{bottom:979.653333pt;}
.y34{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y8e{bottom:1011.173333pt;}
.y33{bottom:1017.120000pt;}
.y2{bottom:1028.320000pt;}
.y8d{bottom:1029.920000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.h10{height:2.546250pt;}
.hb{height:18.720000pt;}
.hc{height:18.752000pt;}
.he{height:29.440000pt;}
.h7{height:34.374375pt;}
.hd{height:48.800000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hf{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:40.192000pt;}
.w3{width:46.432000pt;}
.w7{width:53.440000pt;}
.wd{width:111.040000pt;}
.we{width:117.312000pt;}
.wc{width:121.280000pt;}
.wf{width:121.312000pt;}
.w6{width:126.752000pt;}
.w10{width:187.386667pt;}
.wa{width:221.346667pt;}
.w4{width:307.866667pt;}
.w5{width:334.626667pt;}
.wb{width:349.666667pt;}
.w9{width:468.546667pt;}
.w11{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:1.760000pt;}
.x8{left:7.200000pt;}
.x2{left:47.039988pt;}
.x1{left:47.999988pt;}
.xe{left:49.920000pt;}
.x7{left:55.200000pt;}
.x5{left:66.879988pt;}
.x14{left:70.719988pt;}
.x4{left:71.999988pt;}
.x6{left:90.911988pt;}
.x15{left:94.751988pt;}
.x3{left:96.031988pt;}
.x9{left:101.632000pt;}
.x16{left:170.106667pt;}
.xb{left:181.946667pt;}
.xc{left:235.386667pt;}
.x10{left:271.266667pt;}
.xd{left:275.586667pt;}
.x12{left:382.306667pt;}
.xa{left:409.506667pt;}
.x13{left:499.613333pt;}
.x11{left:620.933333pt;}
}




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