
    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_a278c1fa3de37838a2633f34.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046000;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_d39d36260b9f6382ea1ec830.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_2dbb8f88017eb4902e58f1f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_44c8767d0edfcad7f6e6519d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963000;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_ac40e5f14cbc90530183e03f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_1090b02b25aacf22f52b2fdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_ca3ca4aaa24456aaa4774774.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987000;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_ea328101ac1873ba7104d11a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_f373e00afec7af362769564a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963667;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_1d9eedbed692b17814f2f43f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964000;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_0aaa6d3b8a68e29f4e04d7c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_f1f2f66d2697d525f7afbe1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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;}
.m2{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);}
.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);}
.v3{vertical-align:-222.561547px;}
.v2{vertical-align:-204.561547px;}
.v1{vertical-align:-31.311541px;}
.v4{vertical-align:-20.691541px;}
.v5{vertical-align:-19.285930px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000045px;}
.ls8{letter-spacing:0.000090px;}
.lsb{letter-spacing:4.623260px;}
.ls1{letter-spacing:6.750293px;}
.ls2{letter-spacing:6.750315px;}
.ls3{letter-spacing:6.750450px;}
.ls9{letter-spacing:108.000426px;}
.lsc{letter-spacing:108.000566px;}
.ls5{letter-spacing:296.984201px;}
.lsa{letter-spacing:361.203006px;}
.ls6{letter-spacing:462.583729px;}
.ls7{letter-spacing:865.351184px;}
.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;}
}
.ws18{word-spacing:-81.084005px;}
.ws8{word-spacing:-72.288002px;}
.ws7{word-spacing:-67.968002px;}
.wsa{word-spacing:-67.104002px;}
.wse{word-spacing:-54.216002px;}
.wsd{word-spacing:-50.976002px;}
.ws9{word-spacing:-50.328002px;}
.ws12{word-spacing:-45.900001px;}
.ws2{word-spacing:-41.940001px;}
.ws19{word-spacing:-37.008001px;}
.ws14{word-spacing:-34.950000px;}
.wsf{word-spacing:-27.756001px;}
.wsb{word-spacing:-25.164001px;}
.ws6{word-spacing:-19.908000px;}
.ws10{word-spacing:-19.572000px;}
.ws15{word-spacing:-16.744731px;}
.ws4{word-spacing:-13.392001px;}
.ws11{word-spacing:-12.720001px;}
.ws13{word-spacing:-12.048001px;}
.ws17{word-spacing:-11.973284px;}
.ws16{word-spacing:-7.325760px;}
.ws1{word-spacing:-2.925675px;}
.ws0{word-spacing:-2.565788px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:8.324055px;}
.wsc{word-spacing:28.617391px;}
._f{margin-left:-24.444001px;}
._18{margin-left:-19.872109px;}
._1b{margin-left:-18.788176px;}
._15{margin-left:-16.320000px;}
._10{margin-left:-13.860000px;}
._17{margin-left:-12.396001px;}
._b{margin-left:-10.080000px;}
._d{margin-left:-8.856000px;}
._e{margin-left:-6.983257px;}
._8{margin-left:-5.796743px;}
._4{margin-left:-4.680000px;}
._1{margin-left:-3.600000px;}
._3{margin-left:-2.340000px;}
._0{margin-left:-1.080000px;}
._c{width:1.476744px;}
._7{width:11.609874px;}
._1d{width:13.877922px;}
._1c{width:15.234682px;}
._24{width:17.804437px;}
._11{width:20.250721px;}
._1f{width:22.533768px;}
._1a{width:26.137126px;}
._6{width:27.404524px;}
._23{width:31.223604px;}
._12{width:33.751396px;}
._21{width:36.866531px;}
._1e{width:41.133872px;}
._16{width:44.593093px;}
._19{width:47.283527px;}
._25{width:50.852271px;}
._22{width:55.523623px;}
._5{width:62.234057px;}
._14{width:65.483658px;}
._2{width:72.943832px;}
._13{width:74.504252px;}
._a{width:95.803203px;}
._9{width:146.067305px;}
._20{width:2238.952693px;}
.fcf{color:rgb(0,144,162);}
.fce{color:rgb(10,186,240);}
.fcd{color:rgb(69,84,107);}
.fc0{color:rgb(61,133,198);}
.fc1{color:rgb(19,41,75);}
.fc3{color:rgb(67,67,67);}
.fc7{color:rgb(0,0,0);}
.fc8{color:rgb(255,255,255);}
.fcc{color:rgb(204,204,204);}
.fc4{color:rgb(106,168,79);}
.fca{color:rgb(255,182,0);}
.fcb{color:rgb(102,102,102);}
.fc5{color:rgb(204,0,0);}
.fc6{color:rgb(17,85,204);}
.fc2{color:rgb(153,153,153);}
.fc9{color:transparent;}
.fs11{font-size:26.257203px;}
.fse{font-size:30.000000px;}
.fs9{font-size:36.000001px;}
.fs3{font-size:48.000003px;}
.fs12{font-size:52.514405px;}
.fs2{font-size:60.000000px;}
.fs10{font-size:73.441802px;}
.fs7{font-size:78.000005px;}
.fs4{font-size:84.000000px;}
.fsb{font-size:108.000003px;}
.fsc{font-size:144.000005px;}
.fsf{font-size:149.999999px;}
.fs0{font-size:180.000006px;}
.fs1{font-size:216.000007px;}
.fs8{font-size:240.000002px;}
.fs6{font-size:288.000009px;}
.fsa{font-size:348.000023px;}
.fsd{font-size:360.000012px;}
.fs13{font-size:576.000018px;}
.fs5{font-size:720.000023px;}
.y0{bottom:0.000000px;}
.y2a{bottom:9.988912px;}
.y32{bottom:13.696518px;}
.y27{bottom:15.478912px;}
.y1b{bottom:16.576519px;}
.y47{bottom:18.358912px;}
.y77{bottom:18.728025px;}
.y7a{bottom:18.729206px;}
.y29{bottom:21.238912px;}
.y12{bottom:25.761810px;}
.y86{bottom:39.764682px;}
.y63{bottom:58.670915px;}
.yd{bottom:65.083012px;}
.y6{bottom:67.404133px;}
.y17{bottom:69.194262px;}
.y5{bottom:74.857517px;}
.y6a{bottom:74.989319px;}
.y2f{bottom:77.021916px;}
.y82{bottom:77.423856px;}
.y5c{bottom:77.860018px;}
.y5d{bottom:79.125598px;}
.y6d{bottom:84.627366px;}
.y85{bottom:84.764683px;}
.y89{bottom:84.773697px;}
.y37{bottom:85.385402px;}
.y69{bottom:85.989317px;}
.y2d{bottom:86.021916px;}
.y4b{bottom:90.539252px;}
.y5f{bottom:91.183686px;}
.y68{bottom:96.989313px;}
.y48{bottom:98.026634px;}
.ya{bottom:103.187301px;}
.y74{bottom:104.224109px;}
.y2e{bottom:109.646917px;}
.y6c{bottom:109.964785px;}
.y52{bottom:116.134352px;}
.y51{bottom:117.238462px;}
.y2c{bottom:118.646917px;}
.y73{bottom:122.341578px;}
.y4a{bottom:123.164253px;}
.y3e{bottom:126.299263px;}
.y4{bottom:126.424200px;}
.y64{bottom:127.374298px;}
.y93{bottom:129.329985px;}
.y84{bottom:129.764685px;}
.y5b{bottom:131.860020px;}
.y6b{bottom:135.302202px;}
.y11{bottom:139.004985px;}
.y72{bottom:145.280528px;}
.y8e{bottom:146.564985px;}
.y3b{bottom:149.534985px;}
.y5e{bottom:149.618730px;}
.y71{bottom:154.908163px;}
.y9{bottom:157.187296px;}
.y70{bottom:164.535800px;}
.y92{bottom:166.454986px;}
.y49{bottom:166.704907px;}
.y6f{bottom:174.163440px;}
.y50{bottom:175.787955px;}
.y3{bottom:180.424201px;}
.y14{bottom:182.317486px;}
.y41{bottom:183.762886px;}
.y6e{bottom:183.791078px;}
.y5a{bottom:185.860022px;}
.y16{bottom:186.817487px;}
.y26{bottom:191.204953px;}
.y8d{bottom:196.064987px;}
.y7e{bottom:202.402551px;}
.y91{bottom:203.579987px;}
.y8{bottom:211.187298px;}
.y3a{bottom:214.784987px;}
.y1e{bottom:217.088133px;}
.y31{bottom:217.534004px;}
.y1a{bottom:223.784988px;}
.y25{bottom:223.829954px;}
.y10{bottom:225.629988px;}
.y2{bottom:237.034203px;}
.y59{bottom:239.860023px;}
.y90{bottom:240.704988px;}
.y8c{bottom:245.564988px;}
.y7d{bottom:247.402552px;}
.y24{bottom:256.454955px;}
.y46{bottom:262.750939px;}
.y4f{bottom:264.764048px;}
.y7{bottom:265.187300px;}
.y40{bottom:270.387891px;}
.y15{bottom:273.442489px;}
.y13{bottom:277.942489px;}
.y20{bottom:278.375536px;}
.y39{bottom:280.034990px;}
.y88{bottom:280.329686px;}
.y1d{bottom:282.338135px;}
.y30{bottom:282.784008px;}
.y19{bottom:289.034990px;}
.y23{bottom:289.079956px;}
.y7c{bottom:292.402554px;}
.y8b{bottom:295.064990px;}
.y1{bottom:299.674205px;}
.y45{bottom:303.300375px;}
.y36{bottom:305.909079px;}
.y8f{bottom:309.527248px;}
.y34{bottom:313.564007px;}
.y55{bottom:318.126906px;}
.yf{bottom:321.254991px;}
.y22{bottom:321.704957px;}
.y7f{bottom:322.368178px;}
.y4e{bottom:323.313541px;}
.y65{bottom:332.628057px;}
.y7b{bottom:337.402555px;}
.y54{bottom:342.876907px;}
.y1f{bottom:343.625538px;}
.y38{bottom:345.284992px;}
.y1c{bottom:347.588139px;}
.y58{bottom:347.860029px;}
.y35{bottom:353.879083px;}
.y18{bottom:354.284994px;}
.y3f{bottom:358.131963px;}
.y33{bottom:361.534011px;}
.y87{bottom:362.715168px;}
.y53{bottom:367.626910px;}
.y8a{bottom:372.527239px;}
.y57{bottom:390.155191px;}
.y3d{bottom:398.224490px;}
.y44{bottom:399.353528px;}
.y21{bottom:407.476062px;}
.ye{bottom:415.707879px;}
.y67{bottom:417.371461px;}
.y4d{bottom:417.657751px;}
.y76{bottom:417.921255px;}
.y43{bottom:431.978529px;}
.y61{bottom:443.843500px;}
.y56{bottom:444.446927px;}
.y81{bottom:453.218500px;}
.y79{bottom:455.346273px;}
.y28{bottom:456.821924px;}
.y66{bottom:462.371463px;}
.y75{bottom:462.921256px;}
.y42{bottom:472.528022px;}
.y2b{bottom:474.101927px;}
.y4c{bottom:476.207242px;}
.yc{bottom:477.453184px;}
.y3c{bottom:484.849487px;}
.y62{bottom:486.087955px;}
.y60{bottom:488.843501px;}
.y80{bottom:498.218501px;}
.y78{bottom:500.346274px;}
.yb{bottom:511.203185px;}
.y83{bottom:517.340485px;}
.hc{height:26.640001px;}
.h1b{height:27.570063px;}
.h18{height:31.500000px;}
.h12{height:35.520002px;}
.h1c{height:35.854196px;}
.h3{height:43.800000px;}
.hf{height:44.400000px;}
.h4{height:50.400003px;}
.h1d{height:55.140126px;}
.h5{height:62.160000px;}
.ha{height:63.570004px;}
.h16{height:68.460000px;}
.h1a{height:77.113892px;}
.he{height:79.920003px;}
.h11{height:88.020003px;}
.h6{height:88.200000px;}
.h13{height:106.560003px;}
.h19{height:122.249999px;}
.h17{height:133.200004px;}
.h1{height:146.700005px;}
.h1f{height:159.840005px;}
.h15{height:163.728005px;}
.h2{height:176.040006px;}
.hb{height:195.600001px;}
.h9{height:213.120007px;}
.h8{height:218.304007px;}
.h10{height:234.720008px;}
.hd{height:283.620019px;}
.h14{height:293.400009px;}
.h1e{height:469.440015px;}
.h7{height:525.600017px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x7{left:34.402561px;}
.x4a{left:41.749018px;}
.x1f{left:66.602364px;}
.x40{left:77.530367px;}
.x51{left:82.937016px;}
.x3a{left:84.968508px;}
.x2f{left:87.380902px;}
.x1b{left:89.376978px;}
.x1{left:91.125003px;}
.x14{left:92.565459px;}
.x12{left:96.918309px;}
.x10{left:102.628474px;}
.x1a{left:106.863191px;}
.x2e{left:119.022641px;}
.x6{left:123.132885px;}
.x54{left:124.278501px;}
.x11{left:125.920275px;}
.x3e{left:128.114177px;}
.x17{left:129.714536px;}
.x45{left:131.771528px;}
.x31{left:146.022642px;}
.x4b{left:151.288662px;}
.x3{left:157.308069px;}
.x46{left:160.824161px;}
.x13{left:165.060600px;}
.x18{left:173.022643px;}
.x49{left:178.370702px;}
.x3c{left:189.620320px;}
.xe{left:199.836594px;}
.x50{left:203.011949px;}
.x9{left:205.056595px;}
.x34{left:207.944883px;}
.x27{left:209.060320px;}
.x3b{left:216.250938px;}
.x52{left:240.416299px;}
.x3f{left:247.036384px;}
.x23{left:251.175113px;}
.xd{left:262.980481px;}
.x26{left:267.461446px;}
.x2b{left:284.020727px;}
.x16{left:288.100708px;}
.x1c{left:295.189086px;}
.x28{left:313.388526px;}
.xa{left:317.628348px;}
.x8{left:337.248371px;}
.x20{left:347.544585px;}
.x1e{left:358.668585px;}
.xc{left:369.504282px;}
.xf{left:379.584293px;}
.x24{left:393.457951px;}
.x3d{left:394.563264px;}
.x2c{left:402.604393px;}
.x2d{left:420.001360px;}
.x1d{left:453.279626px;}
.x33{left:456.878439px;}
.x2a{left:469.856760px;}
.x29{left:504.605705px;}
.x32{left:523.349409px;}
.x4{left:544.133661px;}
.x5{left:545.161427px;}
.x15{left:546.927171px;}
.x41{left:549.531513px;}
.x22{left:590.379960px;}
.x21{left:591.968494px;}
.x42{left:596.368425px;}
.x30{left:602.920077px;}
.x43{left:625.011838px;}
.x25{left:670.386655px;}
.x44{left:674.835839px;}
.x39{left:719.056605px;}
.x38{left:725.547871px;}
.x37{left:728.112875px;}
.x36{left:735.560360px;}
.x35{left:744.768485px;}
.x4d{left:774.241397px;}
.x4c{left:782.396403px;}
.x4f{left:796.547085px;}
.x2{left:805.994396px;}
.x48{left:839.242029px;}
.x47{left:843.101656px;}
.x4e{left:862.101140px;}
.x53{left:872.397478px;}
.x19{left:1036.508496px;}
.xb{left:1042.294893px;}
@media print{
.v3{vertical-align:-197.832486pt;}
.v2{vertical-align:-181.832486pt;}
.v1{vertical-align:-27.832481pt;}
.v4{vertical-align:-18.392481pt;}
.v5{vertical-align:-17.143049pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000040pt;}
.ls8{letter-spacing:0.000080pt;}
.lsb{letter-spacing:4.109564pt;}
.ls1{letter-spacing:6.000260pt;}
.ls2{letter-spacing:6.000280pt;}
.ls3{letter-spacing:6.000400pt;}
.ls9{letter-spacing:96.000379pt;}
.lsc{letter-spacing:96.000503pt;}
.ls5{letter-spacing:263.985956pt;}
.lsa{letter-spacing:321.069338pt;}
.ls6{letter-spacing:411.185537pt;}
.ls7{letter-spacing:769.201053pt;}
.ws18{word-spacing:-72.074671pt;}
.ws8{word-spacing:-64.256002pt;}
.ws7{word-spacing:-60.416002pt;}
.wsa{word-spacing:-59.648002pt;}
.wse{word-spacing:-48.192002pt;}
.wsd{word-spacing:-45.312001pt;}
.ws9{word-spacing:-44.736001pt;}
.ws12{word-spacing:-40.800001pt;}
.ws2{word-spacing:-37.280001pt;}
.ws19{word-spacing:-32.896001pt;}
.ws14{word-spacing:-31.066666pt;}
.wsf{word-spacing:-24.672001pt;}
.wsb{word-spacing:-22.368001pt;}
.ws6{word-spacing:-17.696000pt;}
.ws10{word-spacing:-17.397333pt;}
.ws15{word-spacing:-14.884205pt;}
.ws4{word-spacing:-11.904001pt;}
.ws11{word-spacing:-11.306667pt;}
.ws13{word-spacing:-10.709334pt;}
.ws17{word-spacing:-10.642920pt;}
.ws16{word-spacing:-6.511786pt;}
.ws1{word-spacing:-2.600600pt;}
.ws0{word-spacing:-2.280700pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:7.399160pt;}
.wsc{word-spacing:25.437681pt;}
._f{margin-left:-21.728001pt;}
._18{margin-left:-17.664097pt;}
._1b{margin-left:-16.700601pt;}
._15{margin-left:-14.506667pt;}
._10{margin-left:-12.320000pt;}
._17{margin-left:-11.018667pt;}
._b{margin-left:-8.960000pt;}
._d{margin-left:-7.872000pt;}
._e{margin-left:-6.207339pt;}
._8{margin-left:-5.152661pt;}
._4{margin-left:-4.160000pt;}
._1{margin-left:-3.200000pt;}
._3{margin-left:-2.080000pt;}
._0{margin-left:-0.960000pt;}
._c{width:1.312661pt;}
._7{width:10.319888pt;}
._1d{width:12.335930pt;}
._1c{width:13.541939pt;}
._24{width:15.826167pt;}
._11{width:18.000641pt;}
._1f{width:20.030016pt;}
._1a{width:23.233001pt;}
._6{width:24.359577pt;}
._23{width:27.754315pt;}
._12{width:30.001241pt;}
._21{width:32.770250pt;}
._1e{width:36.563442pt;}
._16{width:39.638305pt;}
._19{width:42.029801pt;}
._25{width:45.202018pt;}
._22{width:49.354332pt;}
._5{width:55.319162pt;}
._14{width:58.207696pt;}
._2{width:64.838962pt;}
._13{width:66.226001pt;}
._a{width:85.158403pt;}
._9{width:129.837604pt;}
._20{width:1990.180172pt;}
.fs11{font-size:23.339736pt;}
.fse{font-size:26.666667pt;}
.fs9{font-size:32.000001pt;}
.fs3{font-size:42.666669pt;}
.fs12{font-size:46.679471pt;}
.fs2{font-size:53.333334pt;}
.fs10{font-size:65.281602pt;}
.fs7{font-size:69.333338pt;}
.fs4{font-size:74.666666pt;}
.fsb{font-size:96.000003pt;}
.fsc{font-size:128.000004pt;}
.fsf{font-size:133.333332pt;}
.fs0{font-size:160.000005pt;}
.fs1{font-size:192.000006pt;}
.fs8{font-size:213.333335pt;}
.fs6{font-size:256.000008pt;}
.fsa{font-size:309.333354pt;}
.fsd{font-size:320.000010pt;}
.fs13{font-size:512.000016pt;}
.fs5{font-size:640.000020pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:8.879033pt;}
.y32{bottom:12.174683pt;}
.y27{bottom:13.759033pt;}
.y1b{bottom:14.734683pt;}
.y47{bottom:16.319033pt;}
.y77{bottom:16.647133pt;}
.y7a{bottom:16.648183pt;}
.y29{bottom:18.879033pt;}
.y12{bottom:22.899386pt;}
.y86{bottom:35.346384pt;}
.y63{bottom:52.151924pt;}
.yd{bottom:57.851567pt;}
.y6{bottom:59.914785pt;}
.y17{bottom:61.506011pt;}
.y5{bottom:66.540015pt;}
.y6a{bottom:66.657173pt;}
.y2f{bottom:68.463925pt;}
.y82{bottom:68.821205pt;}
.y5c{bottom:69.208905pt;}
.y5d{bottom:70.333865pt;}
.y6d{bottom:75.224325pt;}
.y85{bottom:75.346385pt;}
.y89{bottom:75.354397pt;}
.y37{bottom:75.898135pt;}
.y69{bottom:76.434948pt;}
.y2d{bottom:76.463925pt;}
.y4b{bottom:80.479335pt;}
.y5f{bottom:81.052165pt;}
.y68{bottom:86.212722pt;}
.y48{bottom:87.134786pt;}
.ya{bottom:91.722046pt;}
.y74{bottom:92.643653pt;}
.y2e{bottom:97.463926pt;}
.y6c{bottom:97.746476pt;}
.y52{bottom:103.230535pt;}
.y51{bottom:104.211966pt;}
.y2c{bottom:105.463926pt;}
.y73{bottom:108.748069pt;}
.y4a{bottom:109.479336pt;}
.y3e{bottom:112.266011pt;}
.y4{bottom:112.377066pt;}
.y64{bottom:113.221598pt;}
.y93{bottom:114.959986pt;}
.y84{bottom:115.346386pt;}
.y5b{bottom:117.208906pt;}
.y6b{bottom:120.268624pt;}
.y11{bottom:123.559987pt;}
.y72{bottom:129.138247pt;}
.y8e{bottom:130.279987pt;}
.y3b{bottom:132.919987pt;}
.y5e{bottom:132.994427pt;}
.y71{bottom:137.696145pt;}
.y9{bottom:139.722041pt;}
.y70{bottom:146.254044pt;}
.y92{bottom:147.959987pt;}
.y49{bottom:148.182139pt;}
.y6f{bottom:154.811947pt;}
.y50{bottom:156.255960pt;}
.y3{bottom:160.377068pt;}
.y14{bottom:162.059988pt;}
.y41{bottom:163.344788pt;}
.y6e{bottom:163.369847pt;}
.y5a{bottom:165.208908pt;}
.y16{bottom:166.059988pt;}
.y26{bottom:169.959958pt;}
.y8d{bottom:174.279988pt;}
.y7e{bottom:179.913378pt;}
.y91{bottom:180.959989pt;}
.y8{bottom:187.722042pt;}
.y3a{bottom:190.919989pt;}
.y1e{bottom:192.967229pt;}
.y31{bottom:193.363559pt;}
.y1a{bottom:198.919989pt;}
.y25{bottom:198.959959pt;}
.y10{bottom:200.559989pt;}
.y2{bottom:210.697069pt;}
.y59{bottom:213.208910pt;}
.y90{bottom:213.959990pt;}
.y8c{bottom:218.279990pt;}
.y7d{bottom:219.913380pt;}
.y24{bottom:227.959960pt;}
.y46{bottom:233.556390pt;}
.y4f{bottom:235.345820pt;}
.y7{bottom:235.722044pt;}
.y40{bottom:240.344792pt;}
.y15{bottom:243.059990pt;}
.y13{bottom:247.059991pt;}
.y20{bottom:247.444921pt;}
.y39{bottom:248.919991pt;}
.y88{bottom:249.181943pt;}
.y1d{bottom:250.967231pt;}
.y30{bottom:251.363563pt;}
.y19{bottom:256.919991pt;}
.y23{bottom:256.959961pt;}
.y7c{bottom:259.913381pt;}
.y8b{bottom:262.279991pt;}
.y1{bottom:266.377071pt;}
.y45{bottom:269.600333pt;}
.y36{bottom:271.919181pt;}
.y8f{bottom:275.135332pt;}
.y34{bottom:278.723562pt;}
.y55{bottom:282.779472pt;}
.yf{bottom:285.559992pt;}
.y22{bottom:285.959962pt;}
.y7f{bottom:286.549492pt;}
.y4e{bottom:287.389814pt;}
.y65{bottom:295.669384pt;}
.y7b{bottom:299.913382pt;}
.y54{bottom:304.779472pt;}
.y1f{bottom:305.444922pt;}
.y38{bottom:306.919993pt;}
.y1c{bottom:308.967235pt;}
.y58{bottom:309.208915pt;}
.y35{bottom:314.559185pt;}
.y18{bottom:314.919995pt;}
.y3f{bottom:318.339523pt;}
.y33{bottom:321.363565pt;}
.y87{bottom:322.413483pt;}
.y53{bottom:326.779475pt;}
.y8a{bottom:331.135323pt;}
.y57{bottom:346.804614pt;}
.y3d{bottom:353.977324pt;}
.y44{bottom:354.980914pt;}
.y21{bottom:362.200944pt;}
.ye{bottom:369.518115pt;}
.y67{bottom:370.996855pt;}
.y4d{bottom:371.251335pt;}
.y76{bottom:371.485560pt;}
.y43{bottom:383.980915pt;}
.y61{bottom:394.527555pt;}
.y56{bottom:395.063935pt;}
.y81{bottom:402.860889pt;}
.y79{bottom:404.752243pt;}
.y28{bottom:406.063933pt;}
.y66{bottom:410.996856pt;}
.y75{bottom:411.485561pt;}
.y42{bottom:420.024908pt;}
.y2b{bottom:421.423935pt;}
.y4c{bottom:423.295326pt;}
.yc{bottom:424.402830pt;}
.y3c{bottom:430.977322pt;}
.y62{bottom:432.078183pt;}
.y60{bottom:434.527557pt;}
.y80{bottom:442.860890pt;}
.y78{bottom:444.752244pt;}
.yb{bottom:454.402831pt;}
.y83{bottom:459.858209pt;}
.hc{height:23.680001pt;}
.h1b{height:24.506723pt;}
.h18{height:28.000000pt;}
.h12{height:31.573335pt;}
.h1c{height:31.870397pt;}
.h3{height:38.933334pt;}
.hf{height:39.466667pt;}
.h4{height:44.800003pt;}
.h1d{height:49.013445pt;}
.h5{height:55.253333pt;}
.ha{height:56.506671pt;}
.h16{height:60.853333pt;}
.h1a{height:68.545682pt;}
.he{height:71.040002pt;}
.h11{height:78.240003pt;}
.h6{height:78.400000pt;}
.h13{height:94.720003pt;}
.h19{height:108.666666pt;}
.h17{height:118.400004pt;}
.h1{height:130.400004pt;}
.h1f{height:142.080005pt;}
.h15{height:145.536005pt;}
.h2{height:156.480005pt;}
.hb{height:173.866668pt;}
.h9{height:189.440006pt;}
.h8{height:194.048006pt;}
.h10{height:208.640007pt;}
.hd{height:252.106683pt;}
.h14{height:260.800008pt;}
.h1e{height:417.280013pt;}
.h7{height:467.200015pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x7{left:30.580054pt;}
.x4a{left:37.110238pt;}
.x1f{left:59.202101pt;}
.x40{left:68.915882pt;}
.x51{left:73.721792pt;}
.x3a{left:75.527562pt;}
.x2f{left:77.671912pt;}
.x1b{left:79.446203pt;}
.x1{left:81.000003pt;}
.x14{left:82.280408pt;}
.x12{left:86.149608pt;}
.x10{left:91.225310pt;}
.x1a{left:94.989503pt;}
.x2e{left:105.797903pt;}
.x6{left:109.451454pt;}
.x54{left:110.469779pt;}
.x11{left:111.929134pt;}
.x3e{left:113.879269pt;}
.x17{left:115.301810pt;}
.x45{left:117.130247pt;}
.x31{left:129.797904pt;}
.x4b{left:134.478810pt;}
.x3{left:139.829394pt;}
.x46{left:142.954810pt;}
.x13{left:146.720534pt;}
.x18{left:153.797905pt;}
.x49{left:158.551735pt;}
.x3c{left:168.551395pt;}
.xe{left:177.632528pt;}
.x50{left:180.455066pt;}
.x9{left:182.272529pt;}
.x34{left:184.839896pt;}
.x27{left:185.831396pt;}
.x3b{left:192.223056pt;}
.x52{left:213.703377pt;}
.x3f{left:219.587897pt;}
.x23{left:223.266767pt;}
.xd{left:233.760427pt;}
.x26{left:237.743508pt;}
.x2b{left:252.462868pt;}
.x16{left:256.089518pt;}
.x1c{left:262.390298pt;}
.x28{left:278.567579pt;}
.xa{left:282.336309pt;}
.x8{left:299.776330pt;}
.x20{left:308.928520pt;}
.x1e{left:318.816520pt;}
.xc{left:328.448251pt;}
.xf{left:337.408261pt;}
.x24{left:349.740401pt;}
.x3d{left:350.722901pt;}
.x2c{left:357.870571pt;}
.x2d{left:373.334542pt;}
.x1d{left:402.915223pt;}
.x33{left:406.114168pt;}
.x2a{left:417.650453pt;}
.x29{left:448.538404pt;}
.x32{left:465.199475pt;}
.x4{left:483.674365pt;}
.x5{left:484.587936pt;}
.x15{left:486.157486pt;}
.x41{left:488.472456pt;}
.x22{left:524.782187pt;}
.x21{left:526.194217pt;}
.x42{left:530.105267pt;}
.x30{left:535.928957pt;}
.x43{left:555.566078pt;}
.x25{left:595.899249pt;}
.x44{left:599.854079pt;}
.x39{left:639.161426pt;}
.x38{left:644.931441pt;}
.x37{left:647.211445pt;}
.x36{left:653.831431pt;}
.x35{left:662.016431pt;}
.x4d{left:688.214575pt;}
.x4c{left:695.463469pt;}
.x4f{left:708.041854pt;}
.x2{left:716.439463pt;}
.x48{left:745.992915pt;}
.x47{left:749.423694pt;}
.x4e{left:766.312125pt;}
.x53{left:775.464425pt;}
.x19{left:921.340885pt;}
.xb{left:926.484350pt;}
}




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