
    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_6b9eaca61d630f4557f11f90.woff')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_8ed992c318e730d0f2ca9185.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6830953aab9f9c443a791143.woff')format("woff");}.ff3{font-family:ff3;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m3{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:-24.000000px;}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000588px;}
.ls7{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.020400px;}
.ls9{letter-spacing:0.648000px;}
.ls1{letter-spacing:1.440000px;}
.ls8{letter-spacing:2.181600px;}
.ls3{letter-spacing:2.727000px;}
.ls5{letter-spacing:3.090012px;}
.lsa{letter-spacing:4.907953px;}
.ls4{letter-spacing:198.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;}
}
.ws1{word-spacing:-30.000000px;}
.ws3{word-spacing:-22.725000px;}
.ws5{word-spacing:-18.648000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-20.265000px;}
._a{margin-left:-17.919000px;}
._17{margin-left:-12.840000px;}
._19{margin-left:-11.322000px;}
._c{margin-left:-10.296000px;}
._b{margin-left:-8.856000px;}
._e{margin-left:-7.704000px;}
._2{margin-left:-5.760000px;}
._8{margin-left:-4.320000px;}
._15{margin-left:-2.736000px;}
._1{margin-left:-1.296000px;}
._f{width:1.152000px;}
._10{width:3.096000px;}
._14{width:4.824000px;}
._16{width:5.832000px;}
._7{width:6.984000px;}
._6{width:8.136000px;}
._9{width:9.288000px;}
._d{width:10.368000px;}
._11{width:11.669400px;}
._1a{width:12.882600px;}
._13{width:15.723000px;}
._12{width:17.424000px;}
._1b{width:20.880000px;}
._5{width:22.608000px;}
._1c{width:26.928000px;}
._4{width:47.763600px;}
._0{width:50.916600px;}
._3{width:132.236400px;}
._18{width:198.000000px;}
.fc2{color:rgb(5,3,1);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:54.000000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:72.720000px;}
.fsb{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:90.900000px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:103.020000px;}
.fs3{font-size:120.000000px;}
.fsa{font-size:163.620000px;}
.y0{bottom:0.000000px;}
.y14{bottom:21.450600px;}
.y28{bottom:21.452850px;}
.y61{bottom:21.453750px;}
.ybe{bottom:21.454050px;}
.y5e{bottom:25.370550px;}
.y9a{bottom:25.371450px;}
.yca{bottom:25.371900px;}
.yd0{bottom:27.451650px;}
.y99{bottom:30.570600px;}
.y12{bottom:30.570750px;}
.yc9{bottom:30.570900px;}
.y29{bottom:30.573000px;}
.y62{bottom:30.573750px;}
.ybf{bottom:30.574200px;}
.y139{bottom:59.784150px;}
.yed{bottom:60.880050px;}
.y92{bottom:61.498650px;}
.ycd{bottom:66.219000px;}
.y116{bottom:67.791750px;}
.ycf{bottom:75.083850px;}
.y60{bottom:75.530100px;}
.y138{bottom:81.384150px;}
.yec{bottom:82.480050px;}
.y91{bottom:83.098500px;}
.ycc{bottom:87.819150px;}
.y115{bottom:89.391750px;}
.yce{bottom:96.683850px;}
.y5d{bottom:97.130100px;}
.y137{bottom:102.984150px;}
.yeb{bottom:104.080050px;}
.y90{bottom:104.698500px;}
.y114{bottom:110.991750px;}
.y5c{bottom:118.730100px;}
.yea{bottom:125.680050px;}
.y8f{bottom:126.298500px;}
.y113{bottom:132.591750px;}
.y5b{bottom:140.330100px;}
.y136{bottom:146.184150px;}
.ye9{bottom:147.280050px;}
.y8e{bottom:147.898500px;}
.y112{bottom:154.191600px;}
.y5a{bottom:161.930100px;}
.y135{bottom:167.784150px;}
.ye8{bottom:168.880050px;}
.y8d{bottom:169.498500px;}
.y111{bottom:175.791750px;}
.y59{bottom:183.530100px;}
.ye7{bottom:190.480050px;}
.y8c{bottom:191.098500px;}
.y110{bottom:197.391750px;}
.y58{bottom:205.130100px;}
.y134{bottom:210.984150px;}
.ye6{bottom:212.080050px;}
.y8b{bottom:212.698500px;}
.y16{bottom:217.349550px;}
.y10f{bottom:218.991600px;}
.y57{bottom:226.730100px;}
.ybc{bottom:229.980900px;}
.y133{bottom:232.584300px;}
.ye5{bottom:233.680050px;}
.y8a{bottom:234.298500px;}
.y15{bottom:238.949550px;}
.y10e{bottom:240.591750px;}
.y56{bottom:248.330100px;}
.ybb{bottom:251.580900px;}
.ye4{bottom:255.280050px;}
.y89{bottom:255.898500px;}
.y10d{bottom:262.191600px;}
.y55{bottom:269.930100px;}
.yba{bottom:273.180900px;}
.y132{bottom:275.784150px;}
.ye3{bottom:276.880050px;}
.y88{bottom:277.498500px;}
.y11{bottom:283.598400px;}
.y10c{bottom:283.791750px;}
.y54{bottom:291.530100px;}
.yb9{bottom:294.780900px;}
.y131{bottom:297.384150px;}
.ye2{bottom:298.480050px;}
.y87{bottom:299.098500px;}
.y10{bottom:305.198400px;}
.y10b{bottom:305.391750px;}
.y53{bottom:313.130100px;}
.yb8{bottom:316.380900px;}
.y130{bottom:318.984150px;}
.ye1{bottom:320.080050px;}
.y86{bottom:320.698500px;}
.yf{bottom:326.798400px;}
.y10a{bottom:326.991600px;}
.y52{bottom:334.730100px;}
.yb7{bottom:337.980900px;}
.ye0{bottom:341.680050px;}
.y85{bottom:342.298500px;}
.y13{bottom:346.490400px;}
.ye{bottom:348.398400px;}
.y109{bottom:348.591600px;}
.y51{bottom:356.330100px;}
.yb6{bottom:359.580900px;}
.y12f{bottom:362.184150px;}
.ydf{bottom:363.280050px;}
.y84{bottom:363.898500px;}
.yd{bottom:369.998400px;}
.y108{bottom:370.191750px;}
.y50{bottom:377.930100px;}
.yb5{bottom:381.180900px;}
.y12e{bottom:383.784150px;}
.yde{bottom:384.880050px;}
.y83{bottom:385.498650px;}
.yc{bottom:391.598400px;}
.y107{bottom:391.791750px;}
.y4f{bottom:399.530100px;}
.y12d{bottom:405.384150px;}
.ydd{bottom:406.480050px;}
.y82{bottom:407.098500px;}
.yb{bottom:413.198400px;}
.y106{bottom:413.391750px;}
.y4e{bottom:421.130100px;}
.ybd{bottom:425.850150px;}
.ydc{bottom:428.080050px;}
.y81{bottom:428.698500px;}
.ya{bottom:434.798400px;}
.y105{bottom:434.991600px;}
.y4d{bottom:442.730100px;}
.y12c{bottom:448.584300px;}
.ydb{bottom:449.680050px;}
.y80{bottom:450.298500px;}
.y9{bottom:456.398400px;}
.y104{bottom:456.591600px;}
.y4c{bottom:464.330100px;}
.y12b{bottom:470.184150px;}
.yda{bottom:471.280050px;}
.y7f{bottom:471.898500px;}
.y8{bottom:477.998400px;}
.y4b{bottom:485.930100px;}
.yd9{bottom:492.880050px;}
.y7e{bottom:493.498650px;}
.y7{bottom:499.598400px;}
.y4a{bottom:507.530100px;}
.y103{bottom:507.815250px;}
.y12a{bottom:513.384300px;}
.yd8{bottom:514.480050px;}
.y7d{bottom:515.098500px;}
.y6{bottom:521.198400px;}
.yc7{bottom:521.753400px;}
.y49{bottom:529.130100px;}
.y129{bottom:534.984300px;}
.yd7{bottom:536.080050px;}
.y7c{bottom:536.698500px;}
.yc6{bottom:543.353550px;}
.y48{bottom:550.730100px;}
.y128{bottom:556.584300px;}
.yd6{bottom:557.680050px;}
.y7b{bottom:558.298500px;}
.y102{bottom:565.333500px;}
.y47{bottom:572.330100px;}
.yb4{bottom:577.049550px;}
.yd5{bottom:579.280050px;}
.y7a{bottom:579.898650px;}
.y101{bottom:586.933500px;}
.y46{bottom:593.930100px;}
.yc5{bottom:596.566800px;}
.yb3{bottom:598.649550px;}
.y127{bottom:599.784150px;}
.yd4{bottom:600.880050px;}
.y79{bottom:601.498650px;}
.y149{bottom:607.424400px;}
.y100{bottom:608.533500px;}
.y45{bottom:615.530100px;}
.yc4{bottom:618.166800px;}
.yb2{bottom:620.249550px;}
.y126{bottom:621.384300px;}
.yd3{bottom:622.480050px;}
.y78{bottom:623.098500px;}
.yff{bottom:630.133500px;}
.y148{bottom:630.824400px;}
.y23{bottom:631.684650px;}
.y44{bottom:637.130100px;}
.yb1{bottom:641.849550px;}
.y77{bottom:644.698500px;}
.y146{bottom:648.224400px;}
.yfe{bottom:651.733500px;}
.y147{bottom:654.224400px;}
.y43{bottom:658.730100px;}
.yb0{bottom:663.449550px;}
.y125{bottom:664.584300px;}
.y76{bottom:666.298500px;}
.yc3{bottom:668.327550px;}
.y21{bottom:672.785550px;}
.yfd{bottom:673.333500px;}
.y42{bottom:680.330100px;}
.yaf{bottom:685.049550px;}
.y124{bottom:686.184150px;}
.y75{bottom:687.898650px;}
.y20{bottom:694.385550px;}
.yfc{bottom:694.933350px;}
.y145{bottom:699.553650px;}
.y41{bottom:701.930100px;}
.yae{bottom:706.649550px;}
.y74{bottom:709.498500px;}
.y1f{bottom:715.985550px;}
.yfb{bottom:716.533500px;}
.y144{bottom:721.153650px;}
.y40{bottom:723.530100px;}
.yad{bottom:728.249550px;}
.y123{bottom:729.384300px;}
.y73{bottom:731.098500px;}
.y1e{bottom:737.585550px;}
.yfa{bottom:738.133500px;}
.y22{bottom:744.885600px;}
.y3f{bottom:745.130100px;}
.yac{bottom:749.849550px;}
.y122{bottom:750.984150px;}
.y72{bottom:752.698500px;}
.y1d{bottom:759.185550px;}
.yf9{bottom:759.733500px;}
.y143{bottom:764.353650px;}
.y3e{bottom:766.730100px;}
.yab{bottom:771.449550px;}
.y121{bottom:772.584300px;}
.y71{bottom:774.298500px;}
.y1c{bottom:780.785550px;}
.yf8{bottom:781.333500px;}
.y142{bottom:785.953650px;}
.y3d{bottom:788.330100px;}
.yaa{bottom:793.049550px;}
.y70{bottom:795.898650px;}
.y1b{bottom:802.385550px;}
.yf7{bottom:802.933350px;}
.y3c{bottom:809.930100px;}
.ya9{bottom:814.649550px;}
.y120{bottom:815.784300px;}
.y6f{bottom:817.498500px;}
.y1a{bottom:823.985550px;}
.yf6{bottom:824.533500px;}
.y141{bottom:829.153800px;}
.y3b{bottom:831.530100px;}
.ya8{bottom:836.249700px;}
.y11f{bottom:837.384300px;}
.y6e{bottom:839.098500px;}
.y19{bottom:845.585550px;}
.yf5{bottom:846.133500px;}
.y140{bottom:850.753650px;}
.y3a{bottom:853.130100px;}
.ya7{bottom:857.849550px;}
.y11e{bottom:858.984300px;}
.y6d{bottom:860.698650px;}
.y18{bottom:867.185550px;}
.yf4{bottom:867.733500px;}
.y13f{bottom:872.353800px;}
.y39{bottom:874.730100px;}
.ya6{bottom:879.449550px;}
.y6c{bottom:882.298650px;}
.y17{bottom:888.785550px;}
.yf3{bottom:889.333500px;}
.y38{bottom:896.330100px;}
.ya5{bottom:901.049550px;}
.y11d{bottom:902.184450px;}
.y6b{bottom:903.898650px;}
.yf2{bottom:910.933650px;}
.y13e{bottom:915.553650px;}
.y37{bottom:917.930100px;}
.ya4{bottom:922.649550px;}
.y11c{bottom:923.784450px;}
.y6a{bottom:925.498650px;}
.yf1{bottom:932.533650px;}
.y13d{bottom:937.153800px;}
.y36{bottom:939.530100px;}
.ya3{bottom:944.249700px;}
.y11b{bottom:945.384450px;}
.y69{bottom:947.098800px;}
.yf0{bottom:954.133650px;}
.y13c{bottom:958.753650px;}
.y35{bottom:961.130100px;}
.ya2{bottom:965.849700px;}
.y68{bottom:968.698800px;}
.y13b{bottom:980.353800px;}
.y34{bottom:982.730100px;}
.y27{bottom:984.239850px;}
.yef{bottom:986.769900px;}
.ya1{bottom:987.449700px;}
.y11a{bottom:988.287750px;}
.y67{bottom:990.298800px;}
.y33{bottom:1004.330250px;}
.yee{bottom:1008.369900px;}
.ya0{bottom:1009.049700px;}
.y66{bottom:1011.898800px;}
.y26{bottom:1020.239850px;}
.y13a{bottom:1023.553650px;}
.y32{bottom:1025.930250px;}
.y9f{bottom:1030.649850px;}
.y119{bottom:1045.153800px;}
.y31{bottom:1047.530250px;}
.y25{bottom:1049.039850px;}
.y9e{bottom:1052.249850px;}
.y65{bottom:1063.122300px;}
.y118{bottom:1066.753800px;}
.y30{bottom:1069.130250px;}
.y9d{bottom:1073.849850px;}
.y24{bottom:1085.039850px;}
.y117{bottom:1088.353800px;}
.y2f{bottom:1090.730400px;}
.y9c{bottom:1095.449850px;}
.y97{bottom:1109.953800px;}
.yd2{bottom:1112.202900px;}
.y2e{bottom:1112.330400px;}
.y4{bottom:1129.452150px;}
.y96{bottom:1131.553950px;}
.yd1{bottom:1133.803050px;}
.y2d{bottom:1133.930400px;}
.y9b{bottom:1146.673500px;}
.y3{bottom:1151.052150px;}
.y95{bottom:1153.153950px;}
.y2{bottom:1172.652150px;}
.y94{bottom:1174.753950px;}
.y2c{bottom:1185.154050px;}
.yc2{bottom:1190.354400px;}
.y1{bottom:1194.252150px;}
.y93{bottom:1196.353950px;}
.ycb{bottom:1196.354400px;}
.y2a{bottom:1227.714450px;}
.y5f{bottom:1227.714600px;}
.y63{bottom:1227.715350px;}
.yc0{bottom:1227.715800px;}
.y5{bottom:1228.524150px;}
.y98{bottom:1228.525050px;}
.yc8{bottom:1228.525500px;}
.y2b{bottom:1228.526250px;}
.y64{bottom:1228.527150px;}
.yc1{bottom:1228.527600px;}
.hb{height:47.381836px;}
.h2{height:58.324219px;}
.h7{height:63.115137px;}
.h3{height:63.175781px;}
.he{height:63.807539px;}
.h10{height:68.440430px;}
.hd{height:71.530488px;}
.hc{height:75.115137px;}
.h6{height:78.969727px;}
.ha{height:79.759424px;}
.h5{height:83.320312px;}
.h9{height:84.234375px;}
.h4{height:89.499023px;}
.h8{height:105.292969px;}
.hf{height:122.715000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:4.715850px;}
.xb{left:7.612800px;}
.x1{left:54.000000px;}
.x3{left:85.747950px;}
.x8{left:98.973750px;}
.x7{left:102.755850px;}
.xa{left:106.320000px;}
.x5{left:116.225550px;}
.x4{left:123.307050px;}
.x9{left:145.114950px;}
.xf{left:285.388350px;}
.x10{left:310.757550px;}
.x11{left:316.317000px;}
.xe{left:369.545850px;}
.x13{left:380.695800px;}
.x14{left:384.288000px;}
.x2{left:433.700850px;}
.xc{left:446.456700px;}
.x15{left:483.307050px;}
.x16{left:514.177350px;}
.x18{left:561.600150px;}
.x17{left:615.815400px;}
.xd{left:717.558450px;}
.x6{left:755.787450px;}
@media print{
.v3{vertical-align:-21.333333pt;}
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000523pt;}
.ls7{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.018133pt;}
.ls9{letter-spacing:0.576000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.939200pt;}
.ls3{letter-spacing:2.424000pt;}
.ls5{letter-spacing:2.746677pt;}
.lsa{letter-spacing:4.362625pt;}
.ls4{letter-spacing:176.000000pt;}
.ws1{word-spacing:-26.666667pt;}
.ws3{word-spacing:-20.200000pt;}
.ws5{word-spacing:-16.576000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-18.013333pt;}
._a{margin-left:-15.928000pt;}
._17{margin-left:-11.413333pt;}
._19{margin-left:-10.064000pt;}
._c{margin-left:-9.152000pt;}
._b{margin-left:-7.872000pt;}
._e{margin-left:-6.848000pt;}
._2{margin-left:-5.120000pt;}
._8{margin-left:-3.840000pt;}
._15{margin-left:-2.432000pt;}
._1{margin-left:-1.152000pt;}
._f{width:1.024000pt;}
._10{width:2.752000pt;}
._14{width:4.288000pt;}
._16{width:5.184000pt;}
._7{width:6.208000pt;}
._6{width:7.232000pt;}
._9{width:8.256000pt;}
._d{width:9.216000pt;}
._11{width:10.372800pt;}
._1a{width:11.451200pt;}
._13{width:13.976000pt;}
._12{width:15.488000pt;}
._1b{width:18.560000pt;}
._5{width:20.096000pt;}
._1c{width:23.936000pt;}
._4{width:42.456533pt;}
._0{width:45.259200pt;}
._3{width:117.543467pt;}
._18{width:176.000000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:64.640000pt;}
.fsb{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:80.800000pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:91.573333pt;}
.fs3{font-size:106.666667pt;}
.fsa{font-size:145.440000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:19.067200pt;}
.y28{bottom:19.069200pt;}
.y61{bottom:19.070000pt;}
.ybe{bottom:19.070267pt;}
.y5e{bottom:22.551600pt;}
.y9a{bottom:22.552400pt;}
.yca{bottom:22.552800pt;}
.yd0{bottom:24.401467pt;}
.y99{bottom:27.173867pt;}
.y12{bottom:27.174000pt;}
.yc9{bottom:27.174133pt;}
.y29{bottom:27.176000pt;}
.y62{bottom:27.176667pt;}
.ybf{bottom:27.177067pt;}
.y139{bottom:53.141467pt;}
.yed{bottom:54.115600pt;}
.y92{bottom:54.665467pt;}
.ycd{bottom:58.861333pt;}
.y116{bottom:60.259333pt;}
.ycf{bottom:66.741200pt;}
.y60{bottom:67.137867pt;}
.y138{bottom:72.341467pt;}
.yec{bottom:73.315600pt;}
.y91{bottom:73.865333pt;}
.ycc{bottom:78.061467pt;}
.y115{bottom:79.459333pt;}
.yce{bottom:85.941200pt;}
.y5d{bottom:86.337867pt;}
.y137{bottom:91.541467pt;}
.yeb{bottom:92.515600pt;}
.y90{bottom:93.065333pt;}
.y114{bottom:98.659333pt;}
.y5c{bottom:105.537867pt;}
.yea{bottom:111.715600pt;}
.y8f{bottom:112.265333pt;}
.y113{bottom:117.859333pt;}
.y5b{bottom:124.737867pt;}
.y136{bottom:129.941467pt;}
.ye9{bottom:130.915600pt;}
.y8e{bottom:131.465333pt;}
.y112{bottom:137.059200pt;}
.y5a{bottom:143.937867pt;}
.y135{bottom:149.141467pt;}
.ye8{bottom:150.115600pt;}
.y8d{bottom:150.665333pt;}
.y111{bottom:156.259333pt;}
.y59{bottom:163.137867pt;}
.ye7{bottom:169.315600pt;}
.y8c{bottom:169.865333pt;}
.y110{bottom:175.459333pt;}
.y58{bottom:182.337867pt;}
.y134{bottom:187.541467pt;}
.ye6{bottom:188.515600pt;}
.y8b{bottom:189.065333pt;}
.y16{bottom:193.199600pt;}
.y10f{bottom:194.659200pt;}
.y57{bottom:201.537867pt;}
.ybc{bottom:204.427467pt;}
.y133{bottom:206.741600pt;}
.ye5{bottom:207.715600pt;}
.y8a{bottom:208.265333pt;}
.y15{bottom:212.399600pt;}
.y10e{bottom:213.859333pt;}
.y56{bottom:220.737867pt;}
.ybb{bottom:223.627467pt;}
.ye4{bottom:226.915600pt;}
.y89{bottom:227.465333pt;}
.y10d{bottom:233.059200pt;}
.y55{bottom:239.937867pt;}
.yba{bottom:242.827467pt;}
.y132{bottom:245.141467pt;}
.ye3{bottom:246.115600pt;}
.y88{bottom:246.665333pt;}
.y11{bottom:252.087467pt;}
.y10c{bottom:252.259333pt;}
.y54{bottom:259.137867pt;}
.yb9{bottom:262.027467pt;}
.y131{bottom:264.341467pt;}
.ye2{bottom:265.315600pt;}
.y87{bottom:265.865333pt;}
.y10{bottom:271.287467pt;}
.y10b{bottom:271.459333pt;}
.y53{bottom:278.337867pt;}
.yb8{bottom:281.227467pt;}
.y130{bottom:283.541467pt;}
.ye1{bottom:284.515600pt;}
.y86{bottom:285.065333pt;}
.yf{bottom:290.487467pt;}
.y10a{bottom:290.659200pt;}
.y52{bottom:297.537867pt;}
.yb7{bottom:300.427467pt;}
.ye0{bottom:303.715600pt;}
.y85{bottom:304.265333pt;}
.y13{bottom:307.991467pt;}
.ye{bottom:309.687467pt;}
.y109{bottom:309.859200pt;}
.y51{bottom:316.737867pt;}
.yb6{bottom:319.627467pt;}
.y12f{bottom:321.941467pt;}
.ydf{bottom:322.915600pt;}
.y84{bottom:323.465333pt;}
.yd{bottom:328.887467pt;}
.y108{bottom:329.059333pt;}
.y50{bottom:335.937867pt;}
.yb5{bottom:338.827467pt;}
.y12e{bottom:341.141467pt;}
.yde{bottom:342.115600pt;}
.y83{bottom:342.665467pt;}
.yc{bottom:348.087467pt;}
.y107{bottom:348.259333pt;}
.y4f{bottom:355.137867pt;}
.y12d{bottom:360.341467pt;}
.ydd{bottom:361.315600pt;}
.y82{bottom:361.865333pt;}
.yb{bottom:367.287467pt;}
.y106{bottom:367.459333pt;}
.y4e{bottom:374.337867pt;}
.ybd{bottom:378.533467pt;}
.ydc{bottom:380.515600pt;}
.y81{bottom:381.065333pt;}
.ya{bottom:386.487467pt;}
.y105{bottom:386.659200pt;}
.y4d{bottom:393.537867pt;}
.y12c{bottom:398.741600pt;}
.ydb{bottom:399.715600pt;}
.y80{bottom:400.265333pt;}
.y9{bottom:405.687467pt;}
.y104{bottom:405.859200pt;}
.y4c{bottom:412.737867pt;}
.y12b{bottom:417.941467pt;}
.yda{bottom:418.915600pt;}
.y7f{bottom:419.465333pt;}
.y8{bottom:424.887467pt;}
.y4b{bottom:431.937867pt;}
.yd9{bottom:438.115600pt;}
.y7e{bottom:438.665467pt;}
.y7{bottom:444.087467pt;}
.y4a{bottom:451.137867pt;}
.y103{bottom:451.391333pt;}
.y12a{bottom:456.341600pt;}
.yd8{bottom:457.315600pt;}
.y7d{bottom:457.865333pt;}
.y6{bottom:463.287467pt;}
.yc7{bottom:463.780800pt;}
.y49{bottom:470.337867pt;}
.y129{bottom:475.541600pt;}
.yd7{bottom:476.515600pt;}
.y7c{bottom:477.065333pt;}
.yc6{bottom:482.980933pt;}
.y48{bottom:489.537867pt;}
.y128{bottom:494.741600pt;}
.yd6{bottom:495.715600pt;}
.y7b{bottom:496.265333pt;}
.y102{bottom:502.518667pt;}
.y47{bottom:508.737867pt;}
.yb4{bottom:512.932933pt;}
.yd5{bottom:514.915600pt;}
.y7a{bottom:515.465467pt;}
.y101{bottom:521.718667pt;}
.y46{bottom:527.937867pt;}
.yc5{bottom:530.281600pt;}
.yb3{bottom:532.132933pt;}
.y127{bottom:533.141467pt;}
.yd4{bottom:534.115600pt;}
.y79{bottom:534.665467pt;}
.y149{bottom:539.932800pt;}
.y100{bottom:540.918667pt;}
.y45{bottom:547.137867pt;}
.yc4{bottom:549.481600pt;}
.yb2{bottom:551.332933pt;}
.y126{bottom:552.341600pt;}
.yd3{bottom:553.315600pt;}
.y78{bottom:553.865333pt;}
.yff{bottom:560.118667pt;}
.y148{bottom:560.732800pt;}
.y23{bottom:561.497467pt;}
.y44{bottom:566.337867pt;}
.yb1{bottom:570.532933pt;}
.y77{bottom:573.065333pt;}
.y146{bottom:576.199467pt;}
.yfe{bottom:579.318667pt;}
.y147{bottom:581.532800pt;}
.y43{bottom:585.537867pt;}
.yb0{bottom:589.732933pt;}
.y125{bottom:590.741600pt;}
.y76{bottom:592.265333pt;}
.yc3{bottom:594.068933pt;}
.y21{bottom:598.031600pt;}
.yfd{bottom:598.518667pt;}
.y42{bottom:604.737867pt;}
.yaf{bottom:608.932933pt;}
.y124{bottom:609.941467pt;}
.y75{bottom:611.465467pt;}
.y20{bottom:617.231600pt;}
.yfc{bottom:617.718533pt;}
.y145{bottom:621.825467pt;}
.y41{bottom:623.937867pt;}
.yae{bottom:628.132933pt;}
.y74{bottom:630.665333pt;}
.y1f{bottom:636.431600pt;}
.yfb{bottom:636.918667pt;}
.y144{bottom:641.025467pt;}
.y40{bottom:643.137867pt;}
.yad{bottom:647.332933pt;}
.y123{bottom:648.341600pt;}
.y73{bottom:649.865333pt;}
.y1e{bottom:655.631600pt;}
.yfa{bottom:656.118667pt;}
.y22{bottom:662.120533pt;}
.y3f{bottom:662.337867pt;}
.yac{bottom:666.532933pt;}
.y122{bottom:667.541467pt;}
.y72{bottom:669.065333pt;}
.y1d{bottom:674.831600pt;}
.yf9{bottom:675.318667pt;}
.y143{bottom:679.425467pt;}
.y3e{bottom:681.537867pt;}
.yab{bottom:685.732933pt;}
.y121{bottom:686.741600pt;}
.y71{bottom:688.265333pt;}
.y1c{bottom:694.031600pt;}
.yf8{bottom:694.518667pt;}
.y142{bottom:698.625467pt;}
.y3d{bottom:700.737867pt;}
.yaa{bottom:704.932933pt;}
.y70{bottom:707.465467pt;}
.y1b{bottom:713.231600pt;}
.yf7{bottom:713.718533pt;}
.y3c{bottom:719.937867pt;}
.ya9{bottom:724.132933pt;}
.y120{bottom:725.141600pt;}
.y6f{bottom:726.665333pt;}
.y1a{bottom:732.431600pt;}
.yf6{bottom:732.918667pt;}
.y141{bottom:737.025600pt;}
.y3b{bottom:739.137867pt;}
.ya8{bottom:743.333067pt;}
.y11f{bottom:744.341600pt;}
.y6e{bottom:745.865333pt;}
.y19{bottom:751.631600pt;}
.yf5{bottom:752.118667pt;}
.y140{bottom:756.225467pt;}
.y3a{bottom:758.337867pt;}
.ya7{bottom:762.532933pt;}
.y11e{bottom:763.541600pt;}
.y6d{bottom:765.065467pt;}
.y18{bottom:770.831600pt;}
.yf4{bottom:771.318667pt;}
.y13f{bottom:775.425600pt;}
.y39{bottom:777.537867pt;}
.ya6{bottom:781.732933pt;}
.y6c{bottom:784.265467pt;}
.y17{bottom:790.031600pt;}
.yf3{bottom:790.518667pt;}
.y38{bottom:796.737867pt;}
.ya5{bottom:800.932933pt;}
.y11d{bottom:801.941733pt;}
.y6b{bottom:803.465467pt;}
.yf2{bottom:809.718800pt;}
.y13e{bottom:813.825467pt;}
.y37{bottom:815.937867pt;}
.ya4{bottom:820.132933pt;}
.y11c{bottom:821.141733pt;}
.y6a{bottom:822.665467pt;}
.yf1{bottom:828.918800pt;}
.y13d{bottom:833.025600pt;}
.y36{bottom:835.137867pt;}
.ya3{bottom:839.333067pt;}
.y11b{bottom:840.341733pt;}
.y69{bottom:841.865600pt;}
.yf0{bottom:848.118800pt;}
.y13c{bottom:852.225467pt;}
.y35{bottom:854.337867pt;}
.ya2{bottom:858.533067pt;}
.y68{bottom:861.065600pt;}
.y13b{bottom:871.425600pt;}
.y34{bottom:873.537867pt;}
.y27{bottom:874.879867pt;}
.yef{bottom:877.128800pt;}
.ya1{bottom:877.733067pt;}
.y11a{bottom:878.478000pt;}
.y67{bottom:880.265600pt;}
.y33{bottom:892.738000pt;}
.yee{bottom:896.328800pt;}
.ya0{bottom:896.933067pt;}
.y66{bottom:899.465600pt;}
.y26{bottom:906.879867pt;}
.y13a{bottom:909.825467pt;}
.y32{bottom:911.938000pt;}
.y9f{bottom:916.133200pt;}
.y119{bottom:929.025600pt;}
.y31{bottom:931.138000pt;}
.y25{bottom:932.479867pt;}
.y9e{bottom:935.333200pt;}
.y65{bottom:944.997600pt;}
.y118{bottom:948.225600pt;}
.y30{bottom:950.338000pt;}
.y9d{bottom:954.533200pt;}
.y24{bottom:964.479867pt;}
.y117{bottom:967.425600pt;}
.y2f{bottom:969.538133pt;}
.y9c{bottom:973.733200pt;}
.y97{bottom:986.625600pt;}
.yd2{bottom:988.624800pt;}
.y2e{bottom:988.738133pt;}
.y4{bottom:1003.957467pt;}
.y96{bottom:1005.825733pt;}
.yd1{bottom:1007.824933pt;}
.y2d{bottom:1007.938133pt;}
.y9b{bottom:1019.265333pt;}
.y3{bottom:1023.157467pt;}
.y95{bottom:1025.025733pt;}
.y2{bottom:1042.357467pt;}
.y94{bottom:1044.225733pt;}
.y2c{bottom:1053.470267pt;}
.yc2{bottom:1058.092800pt;}
.y1{bottom:1061.557467pt;}
.y93{bottom:1063.425733pt;}
.ycb{bottom:1063.426133pt;}
.y2a{bottom:1091.301733pt;}
.y5f{bottom:1091.301867pt;}
.y63{bottom:1091.302533pt;}
.yc0{bottom:1091.302933pt;}
.y5{bottom:1092.021467pt;}
.y98{bottom:1092.022267pt;}
.yc8{bottom:1092.022667pt;}
.y2b{bottom:1092.023333pt;}
.y64{bottom:1092.024133pt;}
.yc1{bottom:1092.024533pt;}
.hb{height:42.117188pt;}
.h2{height:51.843750pt;}
.h7{height:56.102344pt;}
.h3{height:56.156250pt;}
.he{height:56.717812pt;}
.h10{height:60.835938pt;}
.hd{height:63.582656pt;}
.hc{height:66.769010pt;}
.h6{height:70.195312pt;}
.ha{height:70.897266pt;}
.h5{height:74.062500pt;}
.h9{height:74.875000pt;}
.h4{height:79.554688pt;}
.h8{height:93.593750pt;}
.hf{height:109.080000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.191867pt;}
.xb{left:6.766933pt;}
.x1{left:48.000000pt;}
.x3{left:76.220400pt;}
.x8{left:87.976667pt;}
.x7{left:91.338533pt;}
.xa{left:94.506667pt;}
.x5{left:103.311600pt;}
.x4{left:109.606267pt;}
.x9{left:128.991067pt;}
.xf{left:253.678533pt;}
.x10{left:276.228933pt;}
.x11{left:281.170667pt;}
.xe{left:328.485200pt;}
.x13{left:338.396267pt;}
.x14{left:341.589333pt;}
.x2{left:385.511867pt;}
.xc{left:396.850400pt;}
.x15{left:429.606267pt;}
.x16{left:457.046533pt;}
.x18{left:499.200133pt;}
.x17{left:547.391467pt;}
.xd{left:637.829733pt;}
.x6{left:671.811067pt;}
}




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