
    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_e1c0f6df6efd7a840befd8bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_564783b5275ec3f45ee8d841.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_a901c59cccb4cade809475a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_d121775b80d772a634cfe0ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.993652;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_e133a6f5b9af2c611f157c8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.993652;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_245901c9612e6df82b584459.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919922;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;}
.md{transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249871,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249871,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249871,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250410,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250410,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250410,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250446,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250446,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250446,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250789,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250789,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250789,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,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);}
.m1{transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsf{word-spacing:-90.558959px;}
.ws2{word-spacing:-66.862857px;}
.ws6{word-spacing:-56.598024px;}
.ws8{word-spacing:-51.467254px;}
.ws7{word-spacing:-49.519289px;}
.ws0{word-spacing:-44.039081px;}
.ws9{word-spacing:-39.509826px;}
.ws11{word-spacing:-38.230927px;}
.ws10{word-spacing:-30.370733px;}
.ws3{word-spacing:-29.355220px;}
.ws12{word-spacing:-26.069073px;}
.ws1{word-spacing:-24.768858px;}
.wsc{word-spacing:-22.489449px;}
.wse{word-spacing:-22.438593px;}
.ws4{word-spacing:-19.270221px;}
.ws5{word-spacing:-8.871096px;}
.ws13{word-spacing:0.000000px;}
.wsa{word-spacing:325.889192px;}
.wsd{word-spacing:511.513045px;}
.wsb{word-spacing:535.795341px;}
._18{margin-left:-8.105889px;}
._3{margin-left:-3.340141px;}
._f{margin-left:-2.012047px;}
._0{margin-left:-1.005649px;}
._19{width:5.217682px;}
._b{width:6.514360px;}
._13{width:8.001544px;}
._6{width:10.463629px;}
._2{width:12.710196px;}
._10{width:14.074611px;}
._12{width:18.543814px;}
._c{width:19.891855px;}
._1c{width:24.509753px;}
._11{width:26.828528px;}
._8{width:29.347087px;}
._14{width:42.060281px;}
._1a{width:46.636344px;}
._15{width:60.798955px;}
._a{width:69.047235px;}
._1b{width:85.033025px;}
._e{width:95.814371px;}
._1{width:97.496704px;}
._4{width:113.941988px;}
._5{width:118.947997px;}
._1d{width:121.518746px;}
._17{width:136.313166px;}
._16{width:137.996669px;}
._7{width:405.074610px;}
._d{width:555.311888px;}
._9{width:579.672850px;}
.fc4{color:transparent;}
.fc2{color:rgb(42,63,95);}
.fc3{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:69.359251px;}
.fs18{font-size:71.999997px;}
.fsd{font-size:80.763163px;}
.fsa{font-size:80.946206px;}
.fs2{font-size:89.150476px;}
.fs13{font-size:93.830336px;}
.fs14{font-size:93.830366px;}
.fse{font-size:94.216190px;}
.fsf{font-size:94.265006px;}
.fsc{font-size:94.291471px;}
.fsb{font-size:94.459764px;}
.fs3{font-size:105.658157px;}
.fs11{font-size:109.313290px;}
.fs12{font-size:115.498513px;}
.fs1a{font-size:116.225383px;}
.fs1b{font-size:119.868927px;}
.fs19{font-size:130.151046px;}
.fs7{font-size:155.969994px;}
.fs9{font-size:157.541920px;}
.fs8{font-size:158.039303px;}
.fs1{font-size:158.509735px;}
.fs17{font-size:179.999993px;}
.fs0{font-size:194.580001px;}
.fs6{font-size:209.969991px;}
.fs5{font-size:239.984999px;}
.fs16{font-size:245.969990px;}
.fs10{font-size:383.984993px;}
.fs15{font-size:509.984988px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000028px;}
.y72{bottom:8.265600px;}
.y77{bottom:9.108972px;}
.y91{bottom:10.104588px;}
.y4a{bottom:10.923048px;}
.y6d{bottom:14.194331px;}
.y8d{bottom:14.809211px;}
.y8f{bottom:16.038287px;}
.y43{bottom:16.334279px;}
.y5f{bottom:21.060719px;}
.y62{bottom:21.374999px;}
.y2e{bottom:25.874999px;}
.y26{bottom:29.249999px;}
.y15{bottom:31.103459px;}
.y31{bottom:33.749999px;}
.y45{bottom:40.960906px;}
.y76{bottom:43.998730px;}
.y71{bottom:46.327138px;}
.y51{bottom:47.249998px;}
.y42{bottom:61.254141px;}
.y14{bottom:61.657413px;}
.y5e{bottom:65.307669px;}
.y46{bottom:68.268165px;}
.y61{bottom:75.374997px;}
.y75{bottom:82.060305px;}
.y70{bottom:84.388712px;}
.y19{bottom:88.082240px;}
.y8a{bottom:92.604380px;}
.y13{bottom:97.165904px;}
.y2d{bottom:98.999996px;}
.y34{bottom:102.374996px;}
.y40{bottom:106.173608px;}
.y5d{bottom:109.554259px;}
.y25{bottom:112.499995px;}
.y74{bottom:120.121879px;}
.y6f{bottom:122.450611px;}
.y6b{bottom:123.749995px;}
.y67{bottom:129.374995px;}
.y4c{bottom:131.074807px;}
.y36{bottom:151.093470px;}
.y5c{bottom:153.800850px;}
.y89{bottom:155.604378px;}
.y2c{bottom:172.124993px;}
.y33{bottom:175.499993px;}
.y66{bottom:183.374992px;}
.y5b{bottom:194.360284px;}
.y1a{bottom:194.607784px;}
.y37{bottom:196.012936px;}
.y47{bottom:202.073896px;}
.y4f{bottom:204.804495px;}
.y41{bottom:208.263843px;}
.y6a{bottom:218.249991px;}
.y23{bottom:218.555163px;}
.y88{bottom:218.604375px;}
.y54{bottom:229.854403px;}
.y4b{bottom:234.842678px;}
.y5a{bottom:238.607234px;}
.y22{bottom:244.979990px;}
.y38{bottom:245.016206px;}
.y2b{bottom:245.249990px;}
.yd{bottom:270.579373px;}
.y9{bottom:273.056497px;}
.y59{bottom:282.853824px;}
.y39{bottom:289.935672px;}
.y2a{bottom:318.374987px;}
.y58{bottom:327.100414px;}
.y48{bottom:338.610226px;}
.y3a{bottom:338.939266px;}
.y57{bottom:367.659849px;}
.ya{bottom:374.627468px;}
.y69{bottom:377.849533px;}
.y3b{bottom:383.858768px;}
.y29{bottom:391.499984px;}
.y12{bottom:391.968632px;}
.y56{bottom:411.906799px;}
.y3c{bottom:432.862002px;}
.yb{bottom:434.083374px;}
.y4d{bottom:442.377774px;}
.y11{bottom:457.205273px;}
.y28{bottom:464.624981px;}
.y49{bottom:472.415596px;}
.y3d{bottom:477.781504px;}
.yc{bottom:491.062156px;}
.y10{bottom:512.532411px;}
.y3e{bottom:526.784738px;}
.y18{bottom:535.654166px;}
.y4e{bottom:543.414721px;}
.y21{bottom:545.563453px;}
.y16{bottom:548.040757px;}
.y3f{bottom:571.704564px;}
.yf{bottom:592.632767px;}
.y17{bottom:624.012346px;}
.y6{bottom:639.702225px;}
.y7{bottom:657.869409px;}
.y65{bottom:684.572688px;}
.y68{bottom:692.028288px;}
.ye{bottom:761.091664px;}
.y20{bottom:785.865027px;}
.y1f{bottom:806.509478px;}
.y35{bottom:815.608831px;}
.y1e{bottom:827.979590px;}
.y8{bottom:833.760145px;}
.y1d{bottom:849.449881px;}
.y1c{bottom:870.094332px;}
.y1b{bottom:891.564587px;}
.y8c{bottom:916.417250px;}
.y44{bottom:932.903774px;}
.y55{bottom:1064.657792px;}
.y90{bottom:1091.491867px;}
.y8e{bottom:1130.393645px;}
.y6c{bottom:1340.983809px;}
.y6e{bottom:1384.370827px;}
.y73{bottom:1386.345211px;}
.y53{bottom:1444.260568px;}
.y30{bottom:1665.173263px;}
.y63{bottom:1677.756055px;}
.y60{bottom:1677.789787px;}
.y5{bottom:1811.979781px;}
.y27{bottom:1851.424763px;}
.y8b{bottom:2211.451792px;}
.y2f{bottom:2430.952667px;}
.y64{bottom:2504.077664px;}
.y32{bottom:2569.327661px;}
.y24{bottom:2924.206431px;}
.y52{bottom:3146.956421px;}
.y7b{bottom:3389.244303px;}
.y7f{bottom:3396.622430px;}
.y87{bottom:3400.034438px;}
.y7e{bottom:3491.122427px;}
.y86{bottom:3494.534434px;}
.y7d{bottom:3585.622423px;}
.y85{bottom:3589.034430px;}
.y7c{bottom:3680.122419px;}
.y84{bottom:3683.534427px;}
.y81{bottom:3774.622415px;}
.y83{bottom:3778.034423px;}
.y80{bottom:3869.122411px;}
.y82{bottom:3872.534419px;}
.y50{bottom:3964.531867px;}
.y4{bottom:4199.999405px;}
.y3{bottom:4293.374401px;}
.y2{bottom:4360.874398px;}
.y79{bottom:4475.564994px;}
.y7a{bottom:4508.189884px;}
.y78{bottom:4691.448525px;}
.h2e{height:48.374998px;}
.h24{height:49.499998px;}
.h8{height:50.258363px;}
.h18{height:58.521745px;}
.h15{height:58.654380px;}
.h6{height:64.599271px;}
.h2d{height:64.933591px;}
.h27{height:67.990341px;}
.h29{height:67.990363px;}
.h19{height:68.269935px;}
.h1a{height:68.305307px;}
.h17{height:68.324484px;}
.h16{height:68.446431px;}
.h7{height:76.560891px;}
.h1f{height:79.209434px;}
.h25{height:81.322683px;}
.h31{height:84.218002px;}
.h33{height:86.858148px;}
.h2f{height:94.308668px;}
.he{height:94.499996px;}
.h13{height:110.925512px;}
.h12{height:111.275720px;}
.h1d{height:111.374995px;}
.h5{height:114.857640px;}
.hf{height:119.338369px;}
.h20{height:123.749995px;}
.h28{height:145.124994px;}
.h26{height:148.499994px;}
.h2c{height:162.333978px;}
.h1b{height:167.624993px;}
.h3{height:175.483038px;}
.ha{height:183.621335px;}
.h9{height:185.624992px;}
.hc{height:189.362585px;}
.h2b{height:221.829380px;}
.h22{height:231.749990px;}
.h10{height:245.249990px;}
.h23{height:286.874988px;}
.h30{height:292.499988px;}
.h1c{height:293.801018px;}
.h21{height:310.499987px;}
.h32{height:364.499985px;}
.hd{height:383.624984px;}
.h2a{height:390.208240px;}
.h1e{height:462.177053px;}
.hb{height:529.874978px;}
.h14{height:619.874974px;}
.h11{height:628.874974px;}
.h4{height:943.932813px;}
.h2{height:5183.999784px;}
.h0{height:5183.999963px;}
.h1{height:5184.000000px;}
.w24{width:53.999998px;}
.w23{width:55.124998px;}
.w20{width:253.124989px;}
.w21{width:276.749988px;}
.w22{width:276.750165px;}
.wa{width:309.374987px;}
.w3{width:321.749987px;}
.w8{width:334.124986px;}
.w17{width:356.913090px;}
.w7{width:371.249985px;}
.w4{width:379.124984px;}
.w5{width:388.124984px;}
.w15{width:401.624983px;}
.we{width:419.625026px;}
.w1a{width:431.999982px;}
.w1f{width:439.874982px;}
.w9{width:440.999805px;}
.w19{width:469.124980px;}
.w6{width:519.750065px;}
.wc{width:524.249978px;}
.w12{width:617.624974px;}
.w14{width:617.625154px;}
.w16{width:619.874974px;}
.w13{width:653.624973px;}
.wf{width:656.889813px;}
.w1d{width:730.124934px;}
.wb{width:736.874969px;}
.w1b{width:1346.625016px;}
.w1c{width:1355.625124px;}
.w11{width:1367.983347px;}
.w10{width:1409.608417px;}
.wd{width:1437.749940px;}
.w2{width:1500.412257px;}
.w18{width:1500.749757px;}
.w1e{width:3649.499848px;}
.w1{width:3887.999838px;}
.w0{width:3888.000000px;}
.x0{left:0.000000px;}
.x24{left:4.500000px;}
.x47{left:13.587890px;}
.x1c{left:19.588895px;}
.x4a{left:22.341796px;}
.x4{left:26.038835px;}
.x46{left:27.263671px;}
.x59{left:28.413107px;}
.x2e{left:30.972655px;}
.x49{left:32.281879px;}
.x45{left:34.042180px;}
.x5c{left:35.952731px;}
.x34{left:38.823048px;}
.x2c{left:42.011717px;}
.x44{left:48.994270px;}
.x29{left:50.976560px;}
.x40{left:52.676350px;}
.x12{left:54.476530px;}
.x1e{left:55.880857px;}
.x36{left:58.271425px;}
.x21{left:59.906248px;}
.x53{left:66.292377px;}
.x2b{left:68.853513px;}
.x1d{left:72.006362px;}
.x3e{left:73.425921px;}
.x35{left:77.900607px;}
.x26{left:82.160153px;}
.x3d{left:85.214516px;}
.x2f{left:89.560543px;}
.x32{left:93.744137px;}
.x1f{left:95.027340px;}
.x50{left:97.119137px;}
.x4e{left:100.634761px;}
.x23{left:101.900386px;}
.xd{left:104.205416px;}
.x3c{left:108.791707px;}
.x17{left:112.906579px;}
.x16{left:115.727143px;}
.x19{left:118.827751px;}
.x15{left:122.793403px;}
.x18{left:131.495431px;}
.x1a{left:142.026654px;}
.x38{left:144.164861px;}
.x37{left:145.576573px;}
.x39{left:161.594880px;}
.x27{left:166.939446px;}
.x51{left:174.177259px;}
.x1{left:189.189485px;}
.x55{left:280.617702px;}
.x42{left:288.517380px;}
.x3b{left:294.227376px;}
.x5{left:303.474695px;}
.x14{left:310.800407px;}
.xc{left:362.787357px;}
.x20{left:435.529317px;}
.x8{left:445.075649px;}
.x1b{left:450.723329px;}
.x7{left:456.823817px;}
.x9{left:464.190785px;}
.x6{left:597.963647px;}
.xb{left:619.855642px;}
.xe{left:642.688389px;}
.x33{left:652.047129px;}
.x43{left:660.163940px;}
.xf{left:664.504424px;}
.x3f{left:681.216308px;}
.x10{left:708.412110px;}
.x41{left:793.790391px;}
.x5d{left:802.477587px;}
.x31{left:808.689350px;}
.x4f{left:814.661246px;}
.x11{left:826.827338px;}
.x22{left:856.146060px;}
.x13{left:900.166426px;}
.xa{left:1031.271797px;}
.x4d{left:1113.210314px;}
.x25{left:1285.487442px;}
.x3{left:1325.413601px;}
.x54{left:1352.544208px;}
.x58{left:1395.035798px;}
.x4c{left:1598.539685px;}
.x52{left:1664.872851px;}
.x28{left:1846.741747px;}
.x56{left:1874.045658px;}
.x2{left:2119.758140px;}
.x2a{left:2259.697586px;}
.x3a{left:2291.440333px;}
.x5b{left:2303.406804px;}
.x48{left:2332.114175px;}
.x57{left:2421.358312px;}
.x2d{left:2635.664830px;}
.x5a{left:2919.654562px;}
.x4b{left:2931.717010px;}
.x30{left:3117.778466px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsf{word-spacing:-80.496853pt;}
.ws2{word-spacing:-59.433651pt;}
.ws6{word-spacing:-50.309354pt;}
.ws8{word-spacing:-45.748670pt;}
.ws7{word-spacing:-44.017146pt;}
.ws0{word-spacing:-39.145850pt;}
.ws9{word-spacing:-35.119845pt;}
.ws11{word-spacing:-33.983046pt;}
.ws10{word-spacing:-26.996207pt;}
.ws3{word-spacing:-26.093529pt;}
.ws12{word-spacing:-23.172509pt;}
.ws1{word-spacing:-22.016762pt;}
.wsc{word-spacing:-19.990621pt;}
.wse{word-spacing:-19.945416pt;}
.ws4{word-spacing:-17.129086pt;}
.ws5{word-spacing:-7.885419pt;}
.ws13{word-spacing:0.000000pt;}
.wsa{word-spacing:289.679282pt;}
.wsd{word-spacing:454.678262pt;}
.wsb{word-spacing:476.262525pt;}
._18{margin-left:-7.205235pt;}
._3{margin-left:-2.969014pt;}
._f{margin-left:-1.788486pt;}
._0{margin-left:-0.893910pt;}
._19{width:4.637940pt;}
._b{width:5.790542pt;}
._13{width:7.112483pt;}
._6{width:9.301003pt;}
._2{width:11.297952pt;}
._10{width:12.510766pt;}
._12{width:16.483391pt;}
._c{width:17.681649pt;}
._1c{width:21.786447pt;}
._11{width:23.847581pt;}
._8{width:26.086299pt;}
._14{width:37.386916pt;}
._1a{width:41.454528pt;}
._15{width:54.043515pt;}
._a{width:61.375320pt;}
._1b{width:75.584911pt;}
._e{width:85.168330pt;}
._1{width:86.663737pt;}
._4{width:101.281767pt;}
._5{width:105.731553pt;}
._1d{width:108.016663pt;}
._17{width:121.167259pt;}
._16{width:122.663706pt;}
._7{width:360.066320pt;}
._d{width:493.610567pt;}
._9{width:515.264755pt;}
.fs4{font-size:61.652667pt;}
.fs18{font-size:63.999997pt;}
.fsd{font-size:71.789478pt;}
.fsa{font-size:71.952184pt;}
.fs2{font-size:79.244867pt;}
.fs13{font-size:83.404743pt;}
.fs14{font-size:83.404770pt;}
.fse{font-size:83.747725pt;}
.fsf{font-size:83.791116pt;}
.fsc{font-size:83.814641pt;}
.fsb{font-size:83.964235pt;}
.fs3{font-size:93.918362pt;}
.fs11{font-size:97.167369pt;}
.fs12{font-size:102.665345pt;}
.fs1a{font-size:103.311451pt;}
.fs1b{font-size:106.550157pt;}
.fs19{font-size:115.689819pt;}
.fs7{font-size:138.639994pt;}
.fs9{font-size:140.037263pt;}
.fs8{font-size:140.479380pt;}
.fs1{font-size:140.897542pt;}
.fs17{font-size:159.999993pt;}
.fs0{font-size:172.960001pt;}
.fs6{font-size:186.639992pt;}
.fs5{font-size:213.319999pt;}
.fs16{font-size:218.639991pt;}
.fs10{font-size:341.319994pt;}
.fs15{font-size:453.319989pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000025pt;}
.y72{bottom:7.347200pt;}
.y77{bottom:8.096864pt;}
.y91{bottom:8.981856pt;}
.y4a{bottom:9.709376pt;}
.y6d{bottom:12.617183pt;}
.y8d{bottom:13.163743pt;}
.y8f{bottom:14.256255pt;}
.y43{bottom:14.519359pt;}
.y5f{bottom:18.720639pt;}
.y62{bottom:18.999999pt;}
.y2e{bottom:22.999999pt;}
.y26{bottom:25.999999pt;}
.y15{bottom:27.647519pt;}
.y31{bottom:29.999999pt;}
.y45{bottom:36.409694pt;}
.y76{bottom:39.109982pt;}
.y71{bottom:41.179678pt;}
.y51{bottom:41.999998pt;}
.y42{bottom:54.448126pt;}
.y14{bottom:54.806590pt;}
.y5e{bottom:58.051262pt;}
.y46{bottom:60.682813pt;}
.y61{bottom:66.999997pt;}
.y75{bottom:72.942493pt;}
.y70{bottom:75.012189pt;}
.y19{bottom:78.295325pt;}
.y8a{bottom:82.315005pt;}
.y13{bottom:86.369692pt;}
.y2d{bottom:87.999996pt;}
.y34{bottom:90.999996pt;}
.y40{bottom:94.376540pt;}
.y5d{bottom:97.381564pt;}
.y25{bottom:99.999996pt;}
.y74{bottom:106.775004pt;}
.y6f{bottom:108.844987pt;}
.y6b{bottom:109.999995pt;}
.y67{bottom:114.999995pt;}
.y4c{bottom:116.510939pt;}
.y36{bottom:134.305306pt;}
.y5c{bottom:136.711866pt;}
.y89{bottom:138.315002pt;}
.y2c{bottom:152.999994pt;}
.y33{bottom:155.999993pt;}
.y66{bottom:162.999993pt;}
.y5b{bottom:172.764697pt;}
.y1a{bottom:172.984697pt;}
.y37{bottom:174.233721pt;}
.y47{bottom:179.621241pt;}
.y4f{bottom:182.048440pt;}
.y41{bottom:185.123416pt;}
.y6a{bottom:193.999992pt;}
.y23{bottom:194.271256pt;}
.y88{bottom:194.315000pt;}
.y54{bottom:204.315025pt;}
.y4b{bottom:208.749047pt;}
.y5a{bottom:212.095319pt;}
.y22{bottom:217.759991pt;}
.y38{bottom:217.792183pt;}
.y2b{bottom:217.999991pt;}
.yd{bottom:240.514998pt;}
.y9{bottom:242.716886pt;}
.y59{bottom:251.425622pt;}
.y39{bottom:257.720597pt;}
.y2a{bottom:282.999988pt;}
.y58{bottom:290.755924pt;}
.y48{bottom:300.986867pt;}
.y3a{bottom:301.279347pt;}
.y57{bottom:326.808754pt;}
.ya{bottom:333.002194pt;}
.y69{bottom:335.866251pt;}
.y3b{bottom:341.207794pt;}
.y29{bottom:347.999985pt;}
.y12{bottom:348.416561pt;}
.y56{bottom:366.139377pt;}
.y3c{bottom:384.766224pt;}
.yb{bottom:385.851888pt;}
.y4d{bottom:393.224688pt;}
.y11{bottom:406.404687pt;}
.y28{bottom:412.999983pt;}
.y49{bottom:419.924975pt;}
.y3d{bottom:424.694670pt;}
.yc{bottom:436.499694pt;}
.y10{bottom:455.584365pt;}
.y3e{bottom:468.253100pt;}
.y18{bottom:476.137036pt;}
.y4e{bottom:483.035308pt;}
.y21{bottom:484.945292pt;}
.y16{bottom:487.147340pt;}
.y3f{bottom:508.181835pt;}
.yf{bottom:526.784682pt;}
.y17{bottom:554.677641pt;}
.y6{bottom:568.624200pt;}
.y7{bottom:584.772808pt;}
.y65{bottom:608.509056pt;}
.y68{bottom:615.136256pt;}
.ye{bottom:676.525924pt;}
.y20{bottom:698.546691pt;}
.y1f{bottom:716.897314pt;}
.y35{bottom:724.985627pt;}
.y1e{bottom:735.981857pt;}
.y8{bottom:741.120129pt;}
.y1d{bottom:755.066561pt;}
.y1c{bottom:773.417184pt;}
.y1b{bottom:792.501855pt;}
.y8c{bottom:814.593111pt;}
.y44{bottom:829.247799pt;}
.y55{bottom:946.362482pt;}
.y90{bottom:970.214993pt;}
.y8e{bottom:1004.794351pt;}
.y6c{bottom:1191.985608pt;}
.y6e{bottom:1230.551846pt;}
.y73{bottom:1232.306854pt;}
.y53{bottom:1283.787172pt;}
.y30{bottom:1480.154012pt;}
.y63{bottom:1491.338715pt;}
.y60{bottom:1491.368699pt;}
.y5{bottom:1610.648694pt;}
.y27{bottom:1645.710901pt;}
.y8b{bottom:1965.734926pt;}
.y2f{bottom:2160.846815pt;}
.y64{bottom:2225.846813pt;}
.y32{bottom:2283.846810pt;}
.y24{bottom:2599.294605pt;}
.y52{bottom:2797.294597pt;}
.y7b{bottom:3012.661602pt;}
.y7f{bottom:3019.219938pt;}
.y87{bottom:3022.252834pt;}
.y7e{bottom:3103.219935pt;}
.y86{bottom:3106.252831pt;}
.y7d{bottom:3187.219931pt;}
.y85{bottom:3190.252827pt;}
.y7c{bottom:3271.219928pt;}
.y84{bottom:3274.252824pt;}
.y81{bottom:3355.219924pt;}
.y83{bottom:3358.252820pt;}
.y80{bottom:3439.219921pt;}
.y82{bottom:3442.252817pt;}
.y50{bottom:3524.028326pt;}
.y4{bottom:3733.332804pt;}
.y3{bottom:3816.332801pt;}
.y2{bottom:3876.332798pt;}
.y79{bottom:3978.279994pt;}
.y7a{bottom:4007.279897pt;}
.y78{bottom:4170.176466pt;}
.h2e{height:42.999998pt;}
.h24{height:43.999998pt;}
.h8{height:44.674101pt;}
.h18{height:52.019329pt;}
.h15{height:52.137227pt;}
.h6{height:57.421574pt;}
.h2d{height:57.718748pt;}
.h27{height:60.435859pt;}
.h29{height:60.435878pt;}
.h19{height:60.684386pt;}
.h1a{height:60.715828pt;}
.h17{height:60.732875pt;}
.h16{height:60.841272pt;}
.h7{height:68.054126pt;}
.h1f{height:70.408386pt;}
.h25{height:72.286830pt;}
.h31{height:74.860446pt;}
.h33{height:77.207243pt;}
.h2f{height:83.829928pt;}
.he{height:83.999997pt;}
.h13{height:98.600455pt;}
.h12{height:98.911751pt;}
.h1d{height:98.999996pt;}
.h5{height:102.095680pt;}
.hf{height:106.078550pt;}
.h20{height:109.999995pt;}
.h28{height:128.999995pt;}
.h26{height:131.999995pt;}
.h2c{height:144.296869pt;}
.h1b{height:148.999994pt;}
.h3{height:155.984923pt;}
.ha{height:163.218964pt;}
.h9{height:164.999993pt;}
.hc{height:168.322298pt;}
.h2b{height:197.181671pt;}
.h22{height:205.999991pt;}
.h10{height:217.999991pt;}
.h23{height:254.999989pt;}
.h30{height:259.999989pt;}
.h1c{height:261.156460pt;}
.h21{height:275.999989pt;}
.h32{height:323.999986pt;}
.hd{height:340.999986pt;}
.h2a{height:346.851769pt;}
.h1e{height:410.824047pt;}
.hb{height:470.999980pt;}
.h14{height:550.999977pt;}
.h11{height:558.999977pt;}
.h4{height:839.051389pt;}
.h2{height:4607.999808pt;}
.h0{height:4607.999967pt;}
.h1{height:4608.000000pt;}
.w24{width:47.999998pt;}
.w23{width:48.999998pt;}
.w20{width:224.999991pt;}
.w21{width:245.999990pt;}
.w22{width:246.000147pt;}
.wa{width:274.999989pt;}
.w3{width:285.999988pt;}
.w8{width:296.999988pt;}
.w17{width:317.256080pt;}
.w7{width:329.999986pt;}
.w4{width:336.999986pt;}
.w5{width:344.999986pt;}
.w15{width:356.999985pt;}
.we{width:373.000023pt;}
.w1a{width:383.999984pt;}
.w1f{width:390.999984pt;}
.w9{width:391.999827pt;}
.w19{width:416.999983pt;}
.w6{width:462.000058pt;}
.wc{width:465.999981pt;}
.w12{width:548.999977pt;}
.w14{width:549.000137pt;}
.w16{width:550.999977pt;}
.w13{width:580.999976pt;}
.wf{width:583.902056pt;}
.w1d{width:648.999941pt;}
.wb{width:654.999973pt;}
.w1b{width:1197.000014pt;}
.w1c{width:1205.000110pt;}
.w11{width:1215.985197pt;}
.w10{width:1252.985260pt;}
.wd{width:1277.999947pt;}
.w2{width:1333.699784pt;}
.w18{width:1333.999784pt;}
.w1e{width:3243.999865pt;}
.w1{width:3455.999856pt;}
.w0{width:3456.000000pt;}
.x0{left:0.000000pt;}
.x24{left:4.000000pt;}
.x47{left:12.078124pt;}
.x1c{left:17.412351pt;}
.x4a{left:19.859374pt;}
.x4{left:23.145631pt;}
.x46{left:24.234374pt;}
.x59{left:25.256095pt;}
.x2e{left:27.531249pt;}
.x49{left:28.695004pt;}
.x45{left:30.259716pt;}
.x5c{left:31.957983pt;}
.x34{left:34.509376pt;}
.x2c{left:37.343748pt;}
.x44{left:43.550462pt;}
.x29{left:45.312498pt;}
.x40{left:46.823422pt;}
.x12{left:48.423582pt;}
.x1e{left:49.671873pt;}
.x36{left:51.796822pt;}
.x21{left:53.249998pt;}
.x53{left:58.926558pt;}
.x2b{left:61.203122pt;}
.x1d{left:64.005655pt;}
.x3e{left:65.267485pt;}
.x35{left:69.244984pt;}
.x26{left:73.031247pt;}
.x3d{left:75.746237pt;}
.x2f{left:79.609372pt;}
.x32{left:83.328122pt;}
.x1f{left:84.468746pt;}
.x50{left:86.328121pt;}
.x4e{left:89.453121pt;}
.x23{left:90.578121pt;}
.xd{left:92.627036pt;}
.x3c{left:96.703740pt;}
.x17{left:100.361404pt;}
.x16{left:102.868572pt;}
.x19{left:105.624668pt;}
.x15{left:109.149691pt;}
.x18{left:116.884827pt;}
.x1a{left:126.245915pt;}
.x38{left:128.146543pt;}
.x37{left:129.401398pt;}
.x39{left:143.639893pt;}
.x27{left:148.390619pt;}
.x51{left:154.824230pt;}
.x1{left:168.168431pt;}
.x55{left:249.437958pt;}
.x42{left:256.459893pt;}
.x3b{left:261.535445pt;}
.x5{left:269.755285pt;}
.x14{left:276.267028pt;}
.xc{left:322.477651pt;}
.x20{left:387.137171pt;}
.x8{left:395.622800pt;}
.x1b{left:400.642959pt;}
.x7{left:406.065615pt;}
.x9{left:412.614031pt;}
.x6{left:531.523242pt;}
.xb{left:550.982793pt;}
.xe{left:571.278568pt;}
.x33{left:579.597448pt;}
.x43{left:586.812392pt;}
.xf{left:590.670599pt;}
.x3f{left:605.525607pt;}
.x10{left:629.699654pt;}
.x41{left:705.591459pt;}
.x5d{left:713.313410pt;}
.x31{left:718.834978pt;}
.x4f{left:724.143330pt;}
.x11{left:734.957633pt;}
.x22{left:761.018720pt;}
.x13{left:800.147935pt;}
.xa{left:916.686042pt;}
.x4d{left:989.520279pt;}
.x25{left:1142.655504pt;}
.x3{left:1178.145423pt;}
.x54{left:1202.261518pt;}
.x58{left:1240.031820pt;}
.x4c{left:1420.924165pt;}
.x52{left:1479.886978pt;}
.x28{left:1641.548220pt;}
.x56{left:1665.818363pt;}
.x2{left:1884.229457pt;}
.x2a{left:2008.620076pt;}
.x3a{left:2036.835851pt;}
.x5b{left:2047.472715pt;}
.x48{left:2072.990378pt;}
.x57{left:2152.318499pt;}
.x2d{left:2342.813182pt;}
.x5a{left:2595.248500pt;}
.x4b{left:2605.970675pt;}
.x30{left:2771.358637pt;}
}




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