
    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_f43286bedd96e8fb024d8c2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_ad4a2c6c211f090665a5fa4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_5acee027639dca1a599a3fb0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_cddc2a6826f3a427a0636c57.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692871;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_b96ee5965580450443d4cd74.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_84a6b0a3bfe52e0a1e6d8853.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900485;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_7c5599c2e5065a72ae1e025b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_a45809b2a10d24b0bd54a59e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_c11217421bf032d69403ce79.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.974000;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_cb94d0419c070aa1d8a03054.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_41704e7f704a8cab33e3b028.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_2831b95ded16b666a99dac50.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_5acee027639dca1a599a3fb0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_38074a7a1a6e6bcbc4efdc9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.961648;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_91053bc04d1d222029ca3d27.woff2')format("woff");}.fff{font-family:fff;line-height:0.700000;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;}
.m6{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-4.923600px;}
.v2{vertical-align:-1.402200px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-3.960000px;}
.ls2{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000472px;}
.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;}
}
.ws2{word-spacing:-18.720000px;}
.ws3{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws7{word-spacing:-10.692000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.072000px;}
.wsc{word-spacing:0.360000px;}
.ws8{word-spacing:0.504000px;}
.wsb{word-spacing:3.960000px;}
.ws9{word-spacing:7.344000px;}
.ws5{word-spacing:31.881600px;}
.ws6{word-spacing:931.579200px;}
.ws0{word-spacing:1716.003000px;}
._3{margin-left:-18.720000px;}
._1f{margin-left:-15.719400px;}
._a{margin-left:-13.939200px;}
._29{margin-left:-12.772800px;}
._10{margin-left:-11.628000px;}
._7{margin-left:-10.044000px;}
._5{margin-left:-8.791200px;}
._1b{margin-left:-7.315200px;}
._48{margin-left:-6.220800px;}
._8{margin-left:-5.155200px;}
._0{margin-left:-3.918000px;}
._1{margin-left:-2.707200px;}
._11{margin-left:-1.375200px;}
._26{width:1.022400px;}
._2e{width:2.664000px;}
._1a{width:4.140000px;}
._16{width:5.824800px;}
._d{width:7.178400px;}
._e{width:8.186400px;}
._2{width:9.979200px;}
._27{width:11.095200px;}
._9{width:12.310800px;}
._1c{width:13.492800px;}
._3b{width:14.767200px;}
._12{width:15.991200px;}
._21{width:17.056800px;}
._17{width:20.268000px;}
._20{width:22.356000px;}
._14{width:23.839200px;}
._18{width:25.509600px;}
._4b{width:26.640000px;}
._22{width:27.842400px;}
._13{width:28.958400px;}
._19{width:30.484800px;}
._37{width:31.708800px;}
._36{width:33.436800px;}
._2b{width:35.517600px;}
._39{width:37.108800px;}
._2a{width:38.757600px;}
._15{width:40.341600px;}
._28{width:41.551200px;}
._46{width:43.372800px;}
._3d{width:44.618400px;}
._2f{width:46.036800px;}
._2d{width:47.325600px;}
._c{width:49.240800px;}
._b{width:51.271200px;}
._31{width:52.797600px;}
._f{width:54.108000px;}
._2c{width:56.520000px;}
._24{width:57.578400px;}
._51{width:58.759200px;}
._3f{width:59.976000px;}
._44{width:61.704000px;}
._32{width:62.834400px;}
._4d{width:64.353600px;}
._6{width:65.635200px;}
._23{width:67.176000px;}
._3a{width:68.184000px;}
._42{width:69.552000px;}
._35{width:71.640000px;}
._38{width:73.245600px;}
._40{width:74.311200px;}
._4a{width:77.421600px;}
._49{width:80.611200px;}
._43{width:81.907200px;}
._1d{width:86.220000px;}
._54{width:87.588000px;}
._34{width:89.712000px;}
._47{width:90.864000px;}
._1e{width:93.024000px;}
._4{width:97.840800px;}
._41{width:99.086400px;}
._4f{width:107.604000px;}
._25{width:109.296000px;}
._33{width:112.471200px;}
._45{width:116.100000px;}
._4e{width:122.220000px;}
._4c{width:125.186400px;}
._53{width:128.124000px;}
._30{width:134.020800px;}
._3e{width:136.584000px;}
._50{width:158.047200px;}
._3c{width:197.049600px;}
._52{width:254.671200px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:63.943200px;}
.y2{bottom:64.760550px;}
.y1{bottom:66.091050px;}
.y5a{bottom:93.279750px;}
.y82{bottom:93.960150px;}
.y26{bottom:111.943050px;}
.y59{bottom:115.779750px;}
.y81{bottom:116.460150px;}
.y25{bottom:134.443050px;}
.y58{bottom:138.279750px;}
.y80{bottom:138.960150px;}
.y24{bottom:156.943050px;}
.y57{bottom:160.779750px;}
.y7f{bottom:161.460150px;}
.y23{bottom:179.443050px;}
.y56{bottom:183.279750px;}
.y7e{bottom:183.960150px;}
.y22{bottom:201.943050px;}
.y55{bottom:205.779750px;}
.y7d{bottom:206.460150px;}
.y54{bottom:228.279750px;}
.y7c{bottom:228.960150px;}
.y21{bottom:246.943050px;}
.y53{bottom:250.779750px;}
.y7b{bottom:251.460150px;}
.y20{bottom:269.443050px;}
.y52{bottom:273.279750px;}
.y7a{bottom:273.960150px;}
.y1f{bottom:291.943050px;}
.y51{bottom:295.779750px;}
.y79{bottom:296.460150px;}
.y1e{bottom:314.443050px;}
.y50{bottom:318.279750px;}
.y83{bottom:318.960150px;}
.y1d{bottom:336.943050px;}
.y4f{bottom:340.779750px;}
.y78{bottom:341.460150px;}
.y1c{bottom:359.443050px;}
.y4e{bottom:363.279750px;}
.y77{bottom:363.960150px;}
.y1b{bottom:381.943050px;}
.y4d{bottom:385.779750px;}
.y76{bottom:386.460150px;}
.y1a{bottom:404.443050px;}
.y4c{bottom:408.279750px;}
.y75{bottom:408.960150px;}
.y19{bottom:426.943050px;}
.y4b{bottom:430.779750px;}
.y74{bottom:431.460150px;}
.y18{bottom:449.443050px;}
.y4a{bottom:453.279750px;}
.y73{bottom:453.960150px;}
.y2f{bottom:456.139950px;}
.y17{bottom:471.943050px;}
.y49{bottom:475.779750px;}
.y72{bottom:476.460150px;}
.y2e{bottom:478.639950px;}
.y16{bottom:494.443050px;}
.y48{bottom:498.279750px;}
.y71{bottom:498.960150px;}
.y2d{bottom:501.139950px;}
.y15{bottom:516.943050px;}
.y47{bottom:520.779750px;}
.y70{bottom:521.460150px;}
.y2c{bottom:541.639950px;}
.y46{bottom:543.279750px;}
.y6f{bottom:543.960150px;}
.y14{bottom:561.943050px;}
.y45{bottom:565.779750px;}
.y6e{bottom:566.460150px;}
.y13{bottom:584.443050px;}
.y2b{bottom:586.639950px;}
.y44{bottom:588.279750px;}
.y6d{bottom:588.960150px;}
.y12{bottom:606.943050px;}
.y43{bottom:610.779750px;}
.y6c{bottom:611.460150px;}
.y2a{bottom:627.139950px;}
.y11{bottom:629.443050px;}
.y42{bottom:633.279750px;}
.y6b{bottom:633.960150px;}
.y10{bottom:651.943050px;}
.y41{bottom:655.779750px;}
.y6a{bottom:656.460150px;}
.y29{bottom:663.139950px;}
.yf{bottom:674.443050px;}
.y40{bottom:678.279750px;}
.y69{bottom:678.960150px;}
.ye{bottom:696.943050px;}
.y28{bottom:699.139950px;}
.y3f{bottom:700.779750px;}
.y68{bottom:701.460150px;}
.yd{bottom:719.443050px;}
.y3e{bottom:723.279750px;}
.y67{bottom:723.960150px;}
.y27{bottom:735.139950px;}
.yc{bottom:741.943050px;}
.y3d{bottom:745.779750px;}
.y66{bottom:746.460150px;}
.yb{bottom:764.443050px;}
.y3c{bottom:768.279750px;}
.y65{bottom:768.960150px;}
.ya{bottom:786.943050px;}
.y3b{bottom:790.779750px;}
.y64{bottom:791.460150px;}
.y9{bottom:809.443050px;}
.y3a{bottom:813.279750px;}
.y63{bottom:813.960150px;}
.y39{bottom:835.779750px;}
.y62{bottom:836.460150px;}
.y8{bottom:854.438550px;}
.y38{bottom:858.279750px;}
.y61{bottom:858.960150px;}
.y7{bottom:875.443050px;}
.y37{bottom:880.779750px;}
.y60{bottom:881.460150px;}
.y6{bottom:896.443050px;}
.y36{bottom:903.279750px;}
.y5f{bottom:903.960150px;}
.y35{bottom:925.779750px;}
.y5e{bottom:926.460150px;}
.y5{bottom:945.943050px;}
.y34{bottom:948.279750px;}
.y5d{bottom:948.960150px;}
.y33{bottom:970.779750px;}
.y5c{bottom:971.460150px;}
.y32{bottom:993.279750px;}
.y5b{bottom:993.960150px;}
.y4{bottom:1024.979400px;}
.y31{bottom:1027.321050px;}
.y3{bottom:1039.979400px;}
.h4{height:32.507812px;}
.h5{height:33.351562px;}
.ha{height:40.634766px;}
.h2{height:41.689453px;}
.h3{height:42.000000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hb{height:51.449400px;}
.hc{height:53.250000px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xd{left:65.194200px;}
.xc{left:73.559100px;}
.x15{left:85.039350px;}
.x9{left:224.187900px;}
.xa{left:245.187900px;}
.x10{left:312.154950px;}
.x5{left:318.690450px;}
.xf{left:328.559250px;}
.xe{left:374.424150px;}
.x11{left:399.935850px;}
.x4{left:412.540200px;}
.x13{left:421.195650px;}
.x1f{left:426.935850px;}
.x1a{left:429.462750px;}
.x1b{left:453.936000px;}
.x7{left:471.256950px;}
.x1c{left:490.082400px;}
.x8{left:492.459450px;}
.x1d{left:498.084300px;}
.x14{left:546.800400px;}
.x6{left:585.472200px;}
.x16{left:608.931000px;}
.x3{left:611.464200px;}
.x17{left:621.663750px;}
.x2{left:632.875800px;}
.x19{left:638.605050px;}
.x18{left:639.869250px;}
.x1e{left:656.128950px;}
.x12{left:676.684350px;}
.xb{left:710.503950px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v2{vertical-align:-1.246400pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-3.520000pt;}
.ls2{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000419pt;}
.ws2{word-spacing:-16.640000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws7{word-spacing:-9.504000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.064000pt;}
.wsc{word-spacing:0.320000pt;}
.ws8{word-spacing:0.448000pt;}
.wsb{word-spacing:3.520000pt;}
.ws9{word-spacing:6.528000pt;}
.ws5{word-spacing:28.339200pt;}
.ws6{word-spacing:828.070400pt;}
.ws0{word-spacing:1525.336000pt;}
._3{margin-left:-16.640000pt;}
._1f{margin-left:-13.972800pt;}
._a{margin-left:-12.390400pt;}
._29{margin-left:-11.353600pt;}
._10{margin-left:-10.336000pt;}
._7{margin-left:-8.928000pt;}
._5{margin-left:-7.814400pt;}
._1b{margin-left:-6.502400pt;}
._48{margin-left:-5.529600pt;}
._8{margin-left:-4.582400pt;}
._0{margin-left:-3.482667pt;}
._1{margin-left:-2.406400pt;}
._11{margin-left:-1.222400pt;}
._26{width:0.908800pt;}
._2e{width:2.368000pt;}
._1a{width:3.680000pt;}
._16{width:5.177600pt;}
._d{width:6.380800pt;}
._e{width:7.276800pt;}
._2{width:8.870400pt;}
._27{width:9.862400pt;}
._9{width:10.942933pt;}
._1c{width:11.993600pt;}
._3b{width:13.126400pt;}
._12{width:14.214400pt;}
._21{width:15.161600pt;}
._17{width:18.016000pt;}
._20{width:19.872000pt;}
._14{width:21.190400pt;}
._18{width:22.675200pt;}
._4b{width:23.680000pt;}
._22{width:24.748800pt;}
._13{width:25.740800pt;}
._19{width:27.097600pt;}
._37{width:28.185600pt;}
._36{width:29.721600pt;}
._2b{width:31.571200pt;}
._39{width:32.985600pt;}
._2a{width:34.451200pt;}
._15{width:35.859200pt;}
._28{width:36.934400pt;}
._46{width:38.553600pt;}
._3d{width:39.660800pt;}
._2f{width:40.921600pt;}
._2d{width:42.067200pt;}
._c{width:43.769600pt;}
._b{width:45.574400pt;}
._31{width:46.931200pt;}
._f{width:48.096000pt;}
._2c{width:50.240000pt;}
._24{width:51.180800pt;}
._51{width:52.230400pt;}
._3f{width:53.312000pt;}
._44{width:54.848000pt;}
._32{width:55.852800pt;}
._4d{width:57.203200pt;}
._6{width:58.342400pt;}
._23{width:59.712000pt;}
._3a{width:60.608000pt;}
._42{width:61.824000pt;}
._35{width:63.680000pt;}
._38{width:65.107200pt;}
._40{width:66.054400pt;}
._4a{width:68.819200pt;}
._49{width:71.654400pt;}
._43{width:72.806400pt;}
._1d{width:76.640000pt;}
._54{width:77.856000pt;}
._34{width:79.744000pt;}
._47{width:80.768000pt;}
._1e{width:82.688000pt;}
._4{width:86.969600pt;}
._41{width:88.076800pt;}
._4f{width:95.648000pt;}
._25{width:97.152000pt;}
._33{width:99.974400pt;}
._45{width:103.200000pt;}
._4e{width:108.640000pt;}
._4c{width:111.276800pt;}
._53{width:113.888000pt;}
._30{width:119.129600pt;}
._3e{width:121.408000pt;}
._50{width:140.486400pt;}
._3c{width:175.155200pt;}
._52{width:226.374400pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:56.838400pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.747600pt;}
.y5a{bottom:82.915333pt;}
.y82{bottom:83.520133pt;}
.y26{bottom:99.504933pt;}
.y59{bottom:102.915333pt;}
.y81{bottom:103.520133pt;}
.y25{bottom:119.504933pt;}
.y58{bottom:122.915333pt;}
.y80{bottom:123.520133pt;}
.y24{bottom:139.504933pt;}
.y57{bottom:142.915333pt;}
.y7f{bottom:143.520133pt;}
.y23{bottom:159.504933pt;}
.y56{bottom:162.915333pt;}
.y7e{bottom:163.520133pt;}
.y22{bottom:179.504933pt;}
.y55{bottom:182.915333pt;}
.y7d{bottom:183.520133pt;}
.y54{bottom:202.915333pt;}
.y7c{bottom:203.520133pt;}
.y21{bottom:219.504933pt;}
.y53{bottom:222.915333pt;}
.y7b{bottom:223.520133pt;}
.y20{bottom:239.504933pt;}
.y52{bottom:242.915333pt;}
.y7a{bottom:243.520133pt;}
.y1f{bottom:259.504933pt;}
.y51{bottom:262.915333pt;}
.y79{bottom:263.520133pt;}
.y1e{bottom:279.504933pt;}
.y50{bottom:282.915333pt;}
.y83{bottom:283.520133pt;}
.y1d{bottom:299.504933pt;}
.y4f{bottom:302.915333pt;}
.y78{bottom:303.520133pt;}
.y1c{bottom:319.504933pt;}
.y4e{bottom:322.915333pt;}
.y77{bottom:323.520133pt;}
.y1b{bottom:339.504933pt;}
.y4d{bottom:342.915333pt;}
.y76{bottom:343.520133pt;}
.y1a{bottom:359.504933pt;}
.y4c{bottom:362.915333pt;}
.y75{bottom:363.520133pt;}
.y19{bottom:379.504933pt;}
.y4b{bottom:382.915333pt;}
.y74{bottom:383.520133pt;}
.y18{bottom:399.504933pt;}
.y4a{bottom:402.915333pt;}
.y73{bottom:403.520133pt;}
.y2f{bottom:405.457733pt;}
.y17{bottom:419.504933pt;}
.y49{bottom:422.915333pt;}
.y72{bottom:423.520133pt;}
.y2e{bottom:425.457733pt;}
.y16{bottom:439.504933pt;}
.y48{bottom:442.915333pt;}
.y71{bottom:443.520133pt;}
.y2d{bottom:445.457733pt;}
.y15{bottom:459.504933pt;}
.y47{bottom:462.915333pt;}
.y70{bottom:463.520133pt;}
.y2c{bottom:481.457733pt;}
.y46{bottom:482.915333pt;}
.y6f{bottom:483.520133pt;}
.y14{bottom:499.504933pt;}
.y45{bottom:502.915333pt;}
.y6e{bottom:503.520133pt;}
.y13{bottom:519.504933pt;}
.y2b{bottom:521.457733pt;}
.y44{bottom:522.915333pt;}
.y6d{bottom:523.520133pt;}
.y12{bottom:539.504933pt;}
.y43{bottom:542.915333pt;}
.y6c{bottom:543.520133pt;}
.y2a{bottom:557.457733pt;}
.y11{bottom:559.504933pt;}
.y42{bottom:562.915333pt;}
.y6b{bottom:563.520133pt;}
.y10{bottom:579.504933pt;}
.y41{bottom:582.915333pt;}
.y6a{bottom:583.520133pt;}
.y29{bottom:589.457733pt;}
.yf{bottom:599.504933pt;}
.y40{bottom:602.915333pt;}
.y69{bottom:603.520133pt;}
.ye{bottom:619.504933pt;}
.y28{bottom:621.457733pt;}
.y3f{bottom:622.915333pt;}
.y68{bottom:623.520133pt;}
.yd{bottom:639.504933pt;}
.y3e{bottom:642.915333pt;}
.y67{bottom:643.520133pt;}
.y27{bottom:653.457733pt;}
.yc{bottom:659.504933pt;}
.y3d{bottom:662.915333pt;}
.y66{bottom:663.520133pt;}
.yb{bottom:679.504933pt;}
.y3c{bottom:682.915333pt;}
.y65{bottom:683.520133pt;}
.ya{bottom:699.504933pt;}
.y3b{bottom:702.915333pt;}
.y64{bottom:703.520133pt;}
.y9{bottom:719.504933pt;}
.y3a{bottom:722.915333pt;}
.y63{bottom:723.520133pt;}
.y39{bottom:742.915333pt;}
.y62{bottom:743.520133pt;}
.y8{bottom:759.500933pt;}
.y38{bottom:762.915333pt;}
.y61{bottom:763.520133pt;}
.y7{bottom:778.171600pt;}
.y37{bottom:782.915333pt;}
.y60{bottom:783.520133pt;}
.y6{bottom:796.838267pt;}
.y36{bottom:802.915333pt;}
.y5f{bottom:803.520133pt;}
.y35{bottom:822.915333pt;}
.y5e{bottom:823.520133pt;}
.y5{bottom:840.838267pt;}
.y34{bottom:842.915333pt;}
.y5d{bottom:843.520133pt;}
.y33{bottom:862.915333pt;}
.y5c{bottom:863.520133pt;}
.y32{bottom:882.915333pt;}
.y5b{bottom:883.520133pt;}
.y4{bottom:911.092800pt;}
.y31{bottom:913.174267pt;}
.y3{bottom:924.426133pt;}
.h4{height:28.895833pt;}
.h5{height:29.645833pt;}
.ha{height:36.119792pt;}
.h2{height:37.057292pt;}
.h3{height:37.333333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hb{height:45.732800pt;}
.hc{height:47.333333pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xd{left:57.950400pt;}
.xc{left:65.385867pt;}
.x15{left:75.590533pt;}
.x9{left:199.278133pt;}
.xa{left:217.944800pt;}
.x10{left:277.471067pt;}
.x5{left:283.280400pt;}
.xf{left:292.052667pt;}
.xe{left:332.821467pt;}
.x11{left:355.498533pt;}
.x4{left:366.702400pt;}
.x13{left:374.396133pt;}
.x1f{left:379.498533pt;}
.x1a{left:381.744667pt;}
.x1b{left:403.498667pt;}
.x7{left:418.895067pt;}
.x1c{left:435.628800pt;}
.x8{left:437.741733pt;}
.x1d{left:442.741600pt;}
.x14{left:486.044800pt;}
.x6{left:520.419733pt;}
.x16{left:541.272000pt;}
.x3{left:543.523733pt;}
.x17{left:552.590000pt;}
.x2{left:562.556267pt;}
.x19{left:567.648933pt;}
.x18{left:568.772667pt;}
.x1e{left:583.225733pt;}
.x12{left:601.497200pt;}
.xb{left:631.559067pt;}
}




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