
    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_83182ce723e20080575452e2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_41988766c3f1d0868af4cc21.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_baaafd92faefa54f5dc58847.woff')format("woff");}.ff3{font-family:ff3;line-height:1.086426;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_c9b64d2de5e1d73c847963eb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936035;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_f8f374c174a6b9cb65c76f72.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936035;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_af7c8fdba9891c4e60e6fbe7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_359ad1be42047d901ea895fa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678223;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_560caa4959a927a2b53f83db.woff')format("woff");}.ff8{font-family:ff8;line-height:0.806152;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_56db1c53e708d40d45884884.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_2125ace214008273b569e1fb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.086426;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_a7c9e3ff71a8f00f50c3c263.woff')format("woff");}.ffb{font-family:ffb;line-height:0.729492;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_8fac02ec18ba560ebb341cdc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b10fe26b6ab514ec1c1a02f8.woff')format("woff");}.ffd{font-family:ffd;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_493e31961af997f5973c9745.woff')format("woff");}.ffe{font-family:ffe;line-height:0.765137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.fff{font-family:fff;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f7eba7fdbeb66d7aefa0d81a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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:ff11;src:url('chunks/assets/font_ef46955a10a4bb6bdb223a33.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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:ff12;src:url('chunks/assets/font_a5e45989bfbab9117116a418.woff')format("woff");}.ff12{font-family:ff12;line-height:0.850586;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.172800px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:4.626000px;}
.ls9{letter-spacing:162.840000px;}
.ls0{letter-spacing:846.156000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-66.240000px;}
.ws1{word-spacing:-48.147120px;}
.ws6{word-spacing:-36.000000px;}
.ws2{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.010880px;}
.ws5{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-4.550640px;}
._17{margin-left:-3.528000px;}
._9{margin-left:-2.504640px;}
._5{margin-left:-1.227840px;}
._2{width:1.174320px;}
._3{width:3.178080px;}
._0{width:4.248000px;}
._1{width:5.616000px;}
._4{width:7.494240px;}
._a{width:8.543040px;}
._8{width:10.008000px;}
._7{width:11.019840px;}
._16{width:12.024000px;}
._d{width:13.176000px;}
._e{width:14.328000px;}
._b{width:15.336000px;}
._c{width:16.938720px;}
._1f{width:19.152000px;}
._13{width:20.520000px;}
._1c{width:21.528000px;}
._1b{width:22.536000px;}
._14{width:23.664000px;}
._15{width:24.696000px;}
._1a{width:25.933680px;}
._1d{width:27.864000px;}
._1e{width:29.031840px;}
._11{width:32.256000px;}
._12{width:33.375360px;}
._18{width:34.585920px;}
._f{width:67.985520px;}
._10{width:846.180000px;}
._6{width:849.216000px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(15,36,62);}
.fc1{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs9{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.fs4{font-size:216.000000px;}
.fsb{font-size:393.120000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.600000px;}
.yd6{bottom:4.860000px;}
.y80{bottom:10.800000px;}
.yae{bottom:31.680000px;}
.y3{bottom:63.900000px;}
.y4{bottom:64.620000px;}
.y2{bottom:68.400000px;}
.yd4{bottom:137.196000px;}
.y24{bottom:138.096000px;}
.y7e{bottom:161.130000px;}
.yd3{bottom:162.750000px;}
.y23{bottom:164.730000px;}
.y7d{bottom:183.630000px;}
.yd2{bottom:188.310000px;}
.y22{bottom:191.370000px;}
.y7c{bottom:203.430000px;}
.yd1{bottom:213.690000px;}
.y21{bottom:218.190000px;}
.y7b{bottom:223.410000px;}
.y4f{bottom:228.630000px;}
.yd0{bottom:239.250000px;}
.y7a{bottom:244.110000px;}
.y20{bottom:244.830000px;}
.y4e{bottom:246.270000px;}
.y79{bottom:264.810000px;}
.y4d{bottom:266.250000px;}
.y1f{bottom:271.470000px;}
.y78{bottom:285.510000px;}
.y4c{bottom:285.690000px;}
.ycf{bottom:290.190000px;}
.y1e{bottom:298.290000px;}
.y77{bottom:306.210000px;}
.y4b{bottom:306.390000px;}
.yce{bottom:315.750000px;}
.y1d{bottom:324.930000px;}
.y4a{bottom:327.090000px;}
.y76{bottom:327.270000px;}
.ycd{bottom:341.310000px;}
.y49{bottom:348.690000px;}
.y75{bottom:349.770000px;}
.y1c{bottom:349.950000px;}
.ycc{bottom:366.735000px;}
.y74{bottom:369.795000px;}
.y48{bottom:370.335000px;}
.y1b{bottom:371.775000px;}
.y73{bottom:390.495000px;}
.y47{bottom:391.935000px;}
.ycb{bottom:392.295000px;}
.y1a{bottom:392.475000px;}
.y72{bottom:411.195000px;}
.y46{bottom:411.735000px;}
.y19{bottom:413.175000px;}
.yca{bottom:417.855000px;}
.y71{bottom:431.895000px;}
.y45{bottom:433.695000px;}
.y18{bottom:433.875000px;}
.yc9{bottom:443.235000px;}
.y70{bottom:452.955000px;}
.y17{bottom:454.575000px;}
.y44{bottom:464.115000px;}
.yc8{bottom:468.795000px;}
.y16{bottom:475.275000px;}
.y6f{bottom:475.455000px;}
.y43{bottom:485.895000px;}
.yc7{bottom:494.355000px;}
.y6e{bottom:495.435000px;}
.y15{bottom:495.975000px;}
.y42{bottom:507.495000px;}
.y6d{bottom:516.135000px;}
.y14{bottom:516.675000px;}
.yc6{bottom:519.735000px;}
.y41{bottom:529.095000px;}
.y6c{bottom:536.835000px;}
.y13{bottom:537.735000px;}
.yc5{bottom:545.295000px;}
.y40{bottom:550.695000px;}
.y6b{bottom:557.895000px;}
.y12{bottom:560.955000px;}
.yc4{bottom:570.855000px;}
.y3f{bottom:572.295000px;}
.y6a{bottom:580.575000px;}
.y11{bottom:594.075000px;}
.yc3{bottom:596.235000px;}
.y69{bottom:601.275000px;}
.y3e{bottom:615.705000px;}
.yc2{bottom:621.825000px;}
.y68{bottom:622.005000px;}
.y3d{bottom:637.305000px;}
.y67{bottom:642.705000px;}
.yac{bottom:646.845000px;}
.yc1{bottom:647.385000px;}
.y10{bottom:652.245000px;}
.y3c{bottom:658.905000px;}
.y66{bottom:663.405000px;}
.yab{bottom:668.625000px;}
.yc0{bottom:672.765000px;}
.y97{bottom:675.465000px;}
.y3b{bottom:680.505000px;}
.y65{bottom:684.645000px;}
.y96{bottom:696.165000px;}
.ybf{bottom:698.325000px;}
.y3a{bottom:702.285000px;}
.y64{bottom:707.325000px;}
.yf{bottom:710.205000px;}
.y95{bottom:716.865000px;}
.yaa{bottom:723.705000px;}
.y39{bottom:723.885000px;}
.y63{bottom:728.025000px;}
.y94{bottom:737.565000px;}
.y38{bottom:745.485000px;}
.ya9{bottom:748.365000px;}
.y62{bottom:748.725000px;}
.ybe{bottom:749.265000px;}
.y93{bottom:758.265000px;}
.y37{bottom:767.085000px;}
.ye{bottom:768.345000px;}
.y61{bottom:769.785000px;}
.ybd{bottom:774.825000px;}
.y92{bottom:778.965000px;}
.ya8{bottom:783.825000px;}
.y36{bottom:788.865000px;}
.y60{bottom:792.465000px;}
.y91{bottom:799.665000px;}
.yad{bottom:800.025000px;}
.ybc{bottom:800.385000px;}
.y35{bottom:810.465000px;}
.y5f{bottom:813.165000px;}
.y90{bottom:820.725000px;}
.ya7{bottom:823.245000px;}
.ybb{bottom:825.765000px;}
.yd{bottom:831.345000px;}
.y34{bottom:832.065000px;}
.y5e{bottom:833.865000px;}
.y8f{bottom:843.405000px;}
.yba{bottom:851.325000px;}
.ya6{bottom:853.485000px;}
.y33{bottom:853.665000px;}
.y5d{bottom:854.565000px;}
.y8e{bottom:864.105000px;}
.y32{bottom:875.265000px;}
.y5c{bottom:875.625000px;}
.yb9{bottom:876.885000px;}
.ya5{bottom:883.590000px;}
.y8d{bottom:884.850000px;}
.y31{bottom:897.090000px;}
.y5b{bottom:898.350000px;}
.yb8{bottom:902.310000px;}
.yc{bottom:905.910000px;}
.ya4{bottom:912.750000px;}
.y30{bottom:918.690000px;}
.y5a{bottom:919.050000px;}
.yb7{bottom:927.870000px;}
.y8c{bottom:928.590000px;}
.ya3{bottom:933.450000px;}
.y59{bottom:939.750000px;}
.y2f{bottom:940.290000px;}
.y8b{bottom:949.290000px;}
.yb6{bottom:953.430000px;}
.ya2{bottom:954.150000px;}
.y7f{bottom:956.490000px;}
.y58{bottom:960.450000px;}
.y2e{bottom:961.890000px;}
.y8a{bottom:969.990000px;}
.ya1{bottom:974.850000px;}
.yb5{bottom:978.810000px;}
.yb{bottom:980.610000px;}
.y57{bottom:981.150000px;}
.y2d{bottom:983.490000px;}
.y89{bottom:990.690000px;}
.ya0{bottom:995.550000px;}
.y56{bottom:1001.850000px;}
.yb4{bottom:1004.370000px;}
.y2c{bottom:1005.270000px;}
.y88{bottom:1011.390000px;}
.y9f{bottom:1016.250000px;}
.y55{bottom:1022.550000px;}
.y2b{bottom:1026.870000px;}
.yb3{bottom:1029.930000px;}
.y87{bottom:1032.450000px;}
.y9e{bottom:1036.950000px;}
.ya{bottom:1040.910000px;}
.y54{bottom:1043.250000px;}
.y2a{bottom:1048.470000px;}
.y86{bottom:1055.130000px;}
.yb2{bottom:1055.310000px;}
.y9d{bottom:1057.650000px;}
.y9{bottom:1063.410000px;}
.y53{bottom:1064.310000px;}
.y29{bottom:1070.070000px;}
.y85{bottom:1075.830000px;}
.y9c{bottom:1078.350000px;}
.yb1{bottom:1080.870000px;}
.yd7{bottom:1081.770000px;}
.y52{bottom:1087.350000px;}
.y8{bottom:1088.610000px;}
.y28{bottom:1091.850000px;}
.y84{bottom:1096.530000px;}
.y9b{bottom:1099.050000px;}
.yd5{bottom:1101.390000px;}
.yb0{bottom:1106.430000px;}
.y27{bottom:1113.450000px;}
.y7{bottom:1113.810000px;}
.y83{bottom:1117.230000px;}
.y9a{bottom:1119.750000px;}
.y51{bottom:1127.490000px;}
.yaf{bottom:1131.810000px;}
.y26{bottom:1135.050000px;}
.y82{bottom:1137.930000px;}
.y6{bottom:1138.290000px;}
.y99{bottom:1140.480000px;}
.y25{bottom:1157.400000px;}
.y81{bottom:1159.200000px;}
.y1{bottom:1160.100000px;}
.y98{bottom:1161.180000px;}
.y50{bottom:1163.880000px;}
.h5{height:19.260000px;}
.h10{height:49.065469px;}
.h14{height:50.273438px;}
.h20{height:52.066406px;}
.h6{height:53.296875px;}
.h8{height:53.332031px;}
.h1b{height:54.000000px;}
.h21{height:55.825312px;}
.hc{height:57.598594px;}
.h3{height:57.636562px;}
.h4{height:58.651172px;}
.h13{height:58.819922px;}
.h22{height:60.679688px;}
.h7{height:62.398477px;}
.h15{height:63.175781px;}
.hd{height:63.824414px;}
.h12{height:65.010937px;}
.he{height:67.334414px;}
.h2{height:70.664062px;}
.h1c{height:71.820000px;}
.hb{height:74.953125px;}
.h11{height:75.093750px;}
.h19{height:75.410156px;}
.h1e{height:76.536000px;}
.hf{height:79.998047px;}
.h23{height:87.695156px;}
.h1a{height:90.180000px;}
.h17{height:100.546875px;}
.h18{height:112.429688px;}
.ha{height:124.263633px;}
.h9{height:159.996094px;}
.h16{height:218.910000px;}
.h1d{height:374.115000px;}
.h1f{height:385.825781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:9.180000px;}
.w7{width:18.180000px;}
.w5{width:41.436000px;}
.w4{width:42.300000px;}
.w6{width:59.940000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:32.760000px;}
.x17{left:57.780000px;}
.x20{left:75.240000px;}
.x15{left:90.216000px;}
.x1{left:106.415987px;}
.xc{left:117.035987px;}
.x8{left:125.135987px;}
.x19{left:140.795987px;}
.xa{left:155.009987px;}
.x18{left:163.829987px;}
.x21{left:166.349987px;}
.x13{left:167.609987px;}
.x14{left:180.929987px;}
.x1b{left:210.269987px;}
.x9{left:230.249987px;}
.xf{left:247.754987px;}
.x7{left:309.134987px;}
.x5{left:311.294987px;}
.x11{left:338.654987px;}
.xb{left:341.714987px;}
.x12{left:346.574987px;}
.x6{left:354.134987px;}
.x4{left:364.214987px;}
.x10{left:373.574987px;}
.x1a{left:378.254987px;}
.xe{left:425.444987px;}
.xd{left:446.504987px;}
.x22{left:448.125000px;}
.x3{left:452.625000px;}
.x2{left:457.304987px;}
.x1f{left:528.404987px;}
.x1d{left:533.624987px;}
.x1e{left:618.629987px;}
.x1c{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.153600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:4.112000pt;}
.ls9{letter-spacing:144.746667pt;}
.ls0{letter-spacing:752.138667pt;}
.ws3{word-spacing:-58.880000pt;}
.ws1{word-spacing:-42.797440pt;}
.ws6{word-spacing:-32.000000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws4{word-spacing:-16.898560pt;}
.ws5{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-4.045013pt;}
._17{margin-left:-3.136000pt;}
._9{margin-left:-2.226347pt;}
._5{margin-left:-1.091413pt;}
._2{width:1.043840pt;}
._3{width:2.824960pt;}
._0{width:3.776000pt;}
._1{width:4.992000pt;}
._4{width:6.661547pt;}
._a{width:7.593813pt;}
._8{width:8.896000pt;}
._7{width:9.795413pt;}
._16{width:10.688000pt;}
._d{width:11.712000pt;}
._e{width:12.736000pt;}
._b{width:13.632000pt;}
._c{width:15.056640pt;}
._1f{width:17.024000pt;}
._13{width:18.240000pt;}
._1c{width:19.136000pt;}
._1b{width:20.032000pt;}
._14{width:21.034667pt;}
._15{width:21.952000pt;}
._1a{width:23.052160pt;}
._1d{width:24.768000pt;}
._1e{width:25.806080pt;}
._11{width:28.672000pt;}
._12{width:29.666987pt;}
._18{width:30.743040pt;}
._f{width:60.431573pt;}
._10{width:752.160000pt;}
._6{width:754.858667pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs9{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.fs4{font-size:192.000000pt;}
.fsb{font-size:349.440000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.200000pt;}
.yd6{bottom:4.320000pt;}
.y80{bottom:9.600000pt;}
.yae{bottom:28.160000pt;}
.y3{bottom:56.800000pt;}
.y4{bottom:57.440000pt;}
.y2{bottom:60.800000pt;}
.yd4{bottom:121.952000pt;}
.y24{bottom:122.752000pt;}
.y7e{bottom:143.226667pt;}
.yd3{bottom:144.666667pt;}
.y23{bottom:146.426667pt;}
.y7d{bottom:163.226667pt;}
.yd2{bottom:167.386667pt;}
.y22{bottom:170.106667pt;}
.y7c{bottom:180.826667pt;}
.yd1{bottom:189.946667pt;}
.y21{bottom:193.946667pt;}
.y7b{bottom:198.586667pt;}
.y4f{bottom:203.226667pt;}
.yd0{bottom:212.666667pt;}
.y7a{bottom:216.986667pt;}
.y20{bottom:217.626667pt;}
.y4e{bottom:218.906667pt;}
.y79{bottom:235.386667pt;}
.y4d{bottom:236.666667pt;}
.y1f{bottom:241.306667pt;}
.y78{bottom:253.786667pt;}
.y4c{bottom:253.946667pt;}
.ycf{bottom:257.946667pt;}
.y1e{bottom:265.146667pt;}
.y77{bottom:272.186667pt;}
.y4b{bottom:272.346667pt;}
.yce{bottom:280.666667pt;}
.y1d{bottom:288.826667pt;}
.y4a{bottom:290.746667pt;}
.y76{bottom:290.906667pt;}
.ycd{bottom:303.386667pt;}
.y49{bottom:309.946667pt;}
.y75{bottom:310.906667pt;}
.y1c{bottom:311.066667pt;}
.ycc{bottom:325.986667pt;}
.y74{bottom:328.706667pt;}
.y48{bottom:329.186667pt;}
.y1b{bottom:330.466667pt;}
.y73{bottom:347.106667pt;}
.y47{bottom:348.386667pt;}
.ycb{bottom:348.706667pt;}
.y1a{bottom:348.866667pt;}
.y72{bottom:365.506667pt;}
.y46{bottom:365.986667pt;}
.y19{bottom:367.266667pt;}
.yca{bottom:371.426667pt;}
.y71{bottom:383.906667pt;}
.y45{bottom:385.506667pt;}
.y18{bottom:385.666667pt;}
.yc9{bottom:393.986667pt;}
.y70{bottom:402.626667pt;}
.y17{bottom:404.066667pt;}
.y44{bottom:412.546667pt;}
.yc8{bottom:416.706667pt;}
.y16{bottom:422.466667pt;}
.y6f{bottom:422.626667pt;}
.y43{bottom:431.906667pt;}
.yc7{bottom:439.426667pt;}
.y6e{bottom:440.386667pt;}
.y15{bottom:440.866667pt;}
.y42{bottom:451.106667pt;}
.y6d{bottom:458.786667pt;}
.y14{bottom:459.266667pt;}
.yc6{bottom:461.986667pt;}
.y41{bottom:470.306667pt;}
.y6c{bottom:477.186667pt;}
.y13{bottom:477.986667pt;}
.yc5{bottom:484.706667pt;}
.y40{bottom:489.506667pt;}
.y6b{bottom:495.906667pt;}
.y12{bottom:498.626667pt;}
.yc4{bottom:507.426667pt;}
.y3f{bottom:508.706667pt;}
.y6a{bottom:516.066667pt;}
.y11{bottom:528.066667pt;}
.yc3{bottom:529.986667pt;}
.y69{bottom:534.466667pt;}
.y3e{bottom:547.293333pt;}
.yc2{bottom:552.733333pt;}
.y68{bottom:552.893333pt;}
.y3d{bottom:566.493333pt;}
.y67{bottom:571.293333pt;}
.yac{bottom:574.973333pt;}
.yc1{bottom:575.453333pt;}
.y10{bottom:579.773333pt;}
.y3c{bottom:585.693333pt;}
.y66{bottom:589.693333pt;}
.yab{bottom:594.333333pt;}
.yc0{bottom:598.013333pt;}
.y97{bottom:600.413333pt;}
.y3b{bottom:604.893333pt;}
.y65{bottom:608.573333pt;}
.y96{bottom:618.813333pt;}
.ybf{bottom:620.733333pt;}
.y3a{bottom:624.253333pt;}
.y64{bottom:628.733333pt;}
.yf{bottom:631.293333pt;}
.y95{bottom:637.213333pt;}
.yaa{bottom:643.293333pt;}
.y39{bottom:643.453333pt;}
.y63{bottom:647.133333pt;}
.y94{bottom:655.613333pt;}
.y38{bottom:662.653333pt;}
.ya9{bottom:665.213333pt;}
.y62{bottom:665.533333pt;}
.ybe{bottom:666.013333pt;}
.y93{bottom:674.013333pt;}
.y37{bottom:681.853333pt;}
.ye{bottom:682.973333pt;}
.y61{bottom:684.253333pt;}
.ybd{bottom:688.733333pt;}
.y92{bottom:692.413333pt;}
.ya8{bottom:696.733333pt;}
.y36{bottom:701.213333pt;}
.y60{bottom:704.413333pt;}
.y91{bottom:710.813333pt;}
.yad{bottom:711.133333pt;}
.ybc{bottom:711.453333pt;}
.y35{bottom:720.413333pt;}
.y5f{bottom:722.813333pt;}
.y90{bottom:729.533333pt;}
.ya7{bottom:731.773333pt;}
.ybb{bottom:734.013333pt;}
.yd{bottom:738.973333pt;}
.y34{bottom:739.613333pt;}
.y5e{bottom:741.213333pt;}
.y8f{bottom:749.693333pt;}
.yba{bottom:756.733333pt;}
.ya6{bottom:758.653333pt;}
.y33{bottom:758.813333pt;}
.y5d{bottom:759.613333pt;}
.y8e{bottom:768.093333pt;}
.y32{bottom:778.013333pt;}
.y5c{bottom:778.333333pt;}
.yb9{bottom:779.453333pt;}
.ya5{bottom:785.413333pt;}
.y8d{bottom:786.533333pt;}
.y31{bottom:797.413333pt;}
.y5b{bottom:798.533333pt;}
.yb8{bottom:802.053333pt;}
.yc{bottom:805.253333pt;}
.ya4{bottom:811.333333pt;}
.y30{bottom:816.613333pt;}
.y5a{bottom:816.933333pt;}
.yb7{bottom:824.773333pt;}
.y8c{bottom:825.413333pt;}
.ya3{bottom:829.733333pt;}
.y59{bottom:835.333333pt;}
.y2f{bottom:835.813333pt;}
.y8b{bottom:843.813333pt;}
.yb6{bottom:847.493333pt;}
.ya2{bottom:848.133333pt;}
.y7f{bottom:850.213333pt;}
.y58{bottom:853.733333pt;}
.y2e{bottom:855.013333pt;}
.y8a{bottom:862.213333pt;}
.ya1{bottom:866.533333pt;}
.yb5{bottom:870.053333pt;}
.yb{bottom:871.653333pt;}
.y57{bottom:872.133333pt;}
.y2d{bottom:874.213333pt;}
.y89{bottom:880.613333pt;}
.ya0{bottom:884.933333pt;}
.y56{bottom:890.533333pt;}
.yb4{bottom:892.773333pt;}
.y2c{bottom:893.573333pt;}
.y88{bottom:899.013333pt;}
.y9f{bottom:903.333333pt;}
.y55{bottom:908.933333pt;}
.y2b{bottom:912.773333pt;}
.yb3{bottom:915.493333pt;}
.y87{bottom:917.733333pt;}
.y9e{bottom:921.733333pt;}
.ya{bottom:925.253333pt;}
.y54{bottom:927.333333pt;}
.y2a{bottom:931.973333pt;}
.y86{bottom:937.893333pt;}
.yb2{bottom:938.053333pt;}
.y9d{bottom:940.133333pt;}
.y9{bottom:945.253333pt;}
.y53{bottom:946.053333pt;}
.y29{bottom:951.173333pt;}
.y85{bottom:956.293333pt;}
.y9c{bottom:958.533333pt;}
.yb1{bottom:960.773333pt;}
.yd7{bottom:961.573333pt;}
.y52{bottom:966.533333pt;}
.y8{bottom:967.653333pt;}
.y28{bottom:970.533333pt;}
.y84{bottom:974.693333pt;}
.y9b{bottom:976.933333pt;}
.yd5{bottom:979.013333pt;}
.yb0{bottom:983.493333pt;}
.y27{bottom:989.733333pt;}
.y7{bottom:990.053333pt;}
.y83{bottom:993.093333pt;}
.y9a{bottom:995.333333pt;}
.y51{bottom:1002.213333pt;}
.yaf{bottom:1006.053333pt;}
.y26{bottom:1008.933333pt;}
.y82{bottom:1011.493333pt;}
.y6{bottom:1011.813333pt;}
.y99{bottom:1013.760000pt;}
.y25{bottom:1028.800000pt;}
.y81{bottom:1030.400000pt;}
.y1{bottom:1031.200000pt;}
.y98{bottom:1032.160000pt;}
.y50{bottom:1034.560000pt;}
.h5{height:17.120000pt;}
.h10{height:43.613750pt;}
.h14{height:44.687500pt;}
.h20{height:46.281250pt;}
.h6{height:47.375000pt;}
.h8{height:47.406250pt;}
.h1b{height:48.000000pt;}
.h21{height:49.622500pt;}
.hc{height:51.198750pt;}
.h3{height:51.232500pt;}
.h4{height:52.134375pt;}
.h13{height:52.284375pt;}
.h22{height:53.937500pt;}
.h7{height:55.465312pt;}
.h15{height:56.156250pt;}
.hd{height:56.732813pt;}
.h12{height:57.787500pt;}
.he{height:59.852812pt;}
.h2{height:62.812500pt;}
.h1c{height:63.840000pt;}
.hb{height:66.625000pt;}
.h11{height:66.750000pt;}
.h19{height:67.031250pt;}
.h1e{height:68.032000pt;}
.hf{height:71.109375pt;}
.h23{height:77.951250pt;}
.h1a{height:80.160000pt;}
.h17{height:89.375000pt;}
.h18{height:99.937500pt;}
.ha{height:110.456562pt;}
.h9{height:142.218750pt;}
.h16{height:194.586667pt;}
.h1d{height:332.546667pt;}
.h1f{height:342.956250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.160000pt;}
.w7{width:16.160000pt;}
.w5{width:36.832000pt;}
.w4{width:37.600000pt;}
.w6{width:53.280000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:29.120000pt;}
.x17{left:51.360000pt;}
.x20{left:66.880000pt;}
.x15{left:80.192000pt;}
.x1{left:94.591988pt;}
.xc{left:104.031988pt;}
.x8{left:111.231988pt;}
.x19{left:125.151988pt;}
.xa{left:137.786655pt;}
.x18{left:145.626655pt;}
.x21{left:147.866655pt;}
.x13{left:148.986655pt;}
.x14{left:160.826655pt;}
.x1b{left:186.906655pt;}
.x9{left:204.666655pt;}
.xf{left:220.226655pt;}
.x7{left:274.786655pt;}
.x5{left:276.706655pt;}
.x11{left:301.026655pt;}
.xb{left:303.746655pt;}
.x12{left:308.066655pt;}
.x6{left:314.786655pt;}
.x4{left:323.746655pt;}
.x10{left:332.066655pt;}
.x1a{left:336.226655pt;}
.xe{left:378.173322pt;}
.xd{left:396.893322pt;}
.x22{left:398.333333pt;}
.x3{left:402.333333pt;}
.x2{left:406.493322pt;}
.x1f{left:469.693322pt;}
.x1d{left:474.333322pt;}
.x1e{left:549.893322pt;}
.x1c{left:718.239988pt;}
}




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