
    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_ef5dd113db7fd652ecb1cc3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_8e5fc2dc3361e10f656647a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_0050eaf334ccd26451d18a4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_9420122a2ea21d6c1428c007.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.873535;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_7873c3fa2fda4bb3cacff861.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ed2baea11efb5cc5de657513.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.488000px;}
.ls10{letter-spacing:-0.948000px;}
.ls16{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.912000px;}
.ls1c{letter-spacing:-0.852000px;}
.lsc{letter-spacing:-0.768000px;}
.lsf{letter-spacing:-0.702000px;}
.ls11{letter-spacing:-0.590400px;}
.ls18{letter-spacing:-0.587400px;}
.ls7{letter-spacing:-0.570000px;}
.ls26{letter-spacing:-0.535800px;}
.ls1e{letter-spacing:-0.463800px;}
.ls4{letter-spacing:-0.309600px;}
.ls15{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.193200px;}
.lsd{letter-spacing:-0.132600px;}
.ls8{letter-spacing:-0.115200px;}
.lse{letter-spacing:-0.048960px;}
.ls6{letter-spacing:-0.046080px;}
.ls25{letter-spacing:-0.025920px;}
.ls1f{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.020160px;}
.ls1a{letter-spacing:0.036000px;}
.ls27{letter-spacing:0.089400px;}
.ls1{letter-spacing:0.132480px;}
.ls1d{letter-spacing:0.132600px;}
.ls12{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls19{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.252480px;}
.ls3{letter-spacing:0.256200px;}
.ls17{letter-spacing:0.354000px;}
.lsb{letter-spacing:0.371400px;}
.ls22{letter-spacing:0.371520px;}
.ls23{letter-spacing:1.745280px;}
.ls20{letter-spacing:2.310000px;}
.ls13{letter-spacing:6.629760px;}
.ls21{letter-spacing:34.865280px;}
.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;}
}
.wsa{word-spacing:-16.488000px;}
.ws6{word-spacing:-15.341640px;}
.wsd{word-spacing:-15.324240px;}
.ws0{word-spacing:-15.226440px;}
.ws11{word-spacing:-15.102840px;}
.ws15{word-spacing:-15.059640px;}
.ws16{word-spacing:-14.990400px;}
.ws4{word-spacing:-14.970240px;}
.ws14{word-spacing:-14.944320px;}
.ws3{word-spacing:-14.924160px;}
.ws10{word-spacing:-14.921280px;}
.ws5{word-spacing:-14.855040px;}
.wsc{word-spacing:-14.777040px;}
.wsb{word-spacing:-14.754240px;}
.ws12{word-spacing:-14.506440px;}
.wse{word-spacing:-14.382840px;}
.ws8{word-spacing:-14.379840px;}
.wsf{word-spacing:-14.202240px;}
.ws7{word-spacing:-14.022240px;}
.ws13{word-spacing:-12.186000px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-9.128160px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-12.024480px;}
._3{margin-left:-4.479840px;}
._2{margin-left:-2.635200px;}
._1{margin-left:-1.192320px;}
._0{width:1.301520px;}
._7{width:2.715840px;}
._9{width:3.744240px;}
._6{width:5.033280px;}
._5{width:6.160320px;}
._b{width:7.222560px;}
._8{width:8.374080px;}
._f{width:9.709440px;}
._e{width:10.968000px;}
._17{width:11.976960px;}
._a{width:13.049280px;}
._12{width:17.089920px;}
._11{width:18.198720px;}
._16{width:19.342080px;}
._10{width:21.305280px;}
._1e{width:22.852800px;}
._13{width:24.177600px;}
._d{width:455.189760px;}
._c{width:1035.638880px;}
._14{width:1137.059520px;}
._15{width:1192.620000px;}
._18{width:1259.579280px;}
._1a{width:1278.305760px;}
._1c{width:1307.249760px;}
._1b{width:1313.729760px;}
._1d{width:1326.509760px;}
._19{width:1395.089760px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:57.600000px;}
.y6{bottom:77.760000px;}
.y59{bottom:113.580000px;}
.y2f{bottom:120.780000px;}
.y99{bottom:126.000000px;}
.y58{bottom:135.360000px;}
.ye3{bottom:140.400000px;}
.y2e{bottom:142.560000px;}
.y98{bottom:147.780000px;}
.y57{bottom:157.170000px;}
.ye2{bottom:162.030000px;}
.y2d{bottom:164.370000px;}
.y97{bottom:169.410000px;}
.y77{bottom:176.790000px;}
.y56{bottom:178.770000px;}
.yc3{bottom:178.950000px;}
.y105{bottom:182.010000px;}
.y2c{bottom:186.150000px;}
.y96{bottom:191.190000px;}
.ye1{bottom:193.350000px;}
.y55{bottom:200.550000px;}
.y104{bottom:202.170000px;}
.y76{bottom:203.250000px;}
.yc2{bottom:205.590000px;}
.y2b{bottom:207.930000px;}
.y95{bottom:212.970000px;}
.y54{bottom:222.330000px;}
.y2a{bottom:229.530000px;}
.y103{bottom:234.210000px;}
.ye0{bottom:234.570000px;}
.y94{bottom:234.750000px;}
.y53{bottom:244.110000px;}
.y29{bottom:251.310000px;}
.y102{bottom:254.370000px;}
.y93{bottom:256.350000px;}
.y52{bottom:265.710000px;}
.y28{bottom:273.090000px;}
.yba{bottom:273.270000px;}
.y101{bottom:274.530000px;}
.ydf{bottom:277.950000px;}
.y92{bottom:278.130000px;}
.y51{bottom:287.490000px;}
.y100{bottom:294.690000px;}
.y27{bottom:294.870000px;}
.yb9{bottom:295.050000px;}
.yde{bottom:299.730000px;}
.y91{bottom:307.470000px;}
.y26{bottom:316.470000px;}
.yb8{bottom:316.650000px;}
.y50{bottom:318.630000px;}
.ydd{bottom:321.510000px;}
.yff{bottom:326.910000px;}
.ya6{bottom:329.790000px;}
.y25{bottom:338.250000px;}
.yb7{bottom:338.430000px;}
.y90{bottom:342.930000px;}
.ydc{bottom:343.290000px;}
.ya5{bottom:351.570000px;}
.yfe{bottom:358.950000px;}
.y24{bottom:360.030000px;}
.yb6{bottom:360.210000px;}
.y8f{bottom:364.530000px;}
.ydb{bottom:365.070000px;}
.ya4{bottom:373.350000px;}
.yfd{bottom:379.110000px;}
.y4f{bottom:381.630000px;}
.y23{bottom:381.810000px;}
.y8e{bottom:386.310000px;}
.yb5{bottom:393.870000px;}
.ya3{bottom:395.130000px;}
.yda{bottom:398.730000px;}
.y22{bottom:403.455000px;}
.y8d{bottom:408.135000px;}
.yfc{bottom:411.375000px;}
.yb4{bottom:415.695000px;}
.ya2{bottom:416.775000px;}
.yd9{bottom:420.555000px;}
.yc1{bottom:424.695000px;}
.y21{bottom:425.235000px;}
.y75{bottom:426.315000px;}
.y8c{bottom:429.915000px;}
.yfb{bottom:431.355000px;}
.yb3{bottom:437.475000px;}
.ya1{bottom:438.555000px;}
.yc0{bottom:441.255000px;}
.yd8{bottom:442.155000px;}
.y20{bottom:447.015000px;}
.y74{bottom:447.915000px;}
.y8b{bottom:451.515000px;}
.yb2{bottom:459.255000px;}
.ya0{bottom:460.335000px;}
.yfa{bottom:463.575000px;}
.yd7{bottom:463.935000px;}
.ybf{bottom:467.715000px;}
.y4e{bottom:468.615000px;}
.y73{bottom:469.695000px;}
.y8a{bottom:473.295000px;}
.y1f{bottom:478.335000px;}
.yb1{bottom:480.855000px;}
.yd6{bottom:485.715000px;}
.y9f{bottom:489.675000px;}
.y4d{bottom:490.395000px;}
.y72{bottom:491.475000px;}
.y89{bottom:495.075000px;}
.yf9{bottom:495.795000px;}
.yb0{bottom:502.635000px;}
.yd5{bottom:507.495000px;}
.y71{bottom:513.255000px;}
.y88{bottom:516.855000px;}
.y1e{bottom:517.755000px;}
.y4c{bottom:519.735000px;}
.yaf{bottom:524.415000px;}
.y9e{bottom:525.495000px;}
.yf8{bottom:527.835000px;}
.yd4{bottom:529.095000px;}
.y70{bottom:534.855000px;}
.y1d{bottom:537.915000px;}
.y87{bottom:538.635000px;}
.y9d{bottom:541.875000px;}
.yf7{bottom:547.995000px;}
.yd3{bottom:550.875000px;}
.y4b{bottom:555.195000px;}
.y6f{bottom:556.635000px;}
.y1c{bottom:558.075000px;}
.y86{bottom:567.975000px;}
.yf6{bottom:568.155000px;}
.y9c{bottom:568.515000px;}
.yd2{bottom:572.655000px;}
.y4a{bottom:576.795000px;}
.y1b{bottom:578.235000px;}
.y6e{bottom:578.415000px;}
.yae{bottom:579.855000px;}
.yd1{bottom:594.435000px;}
.y1a{bottom:598.395000px;}
.y49{bottom:598.575000px;}
.y6d{bottom:600.195000px;}
.yf5{bottom:600.375000px;}
.yad{bottom:601.635000px;}
.y85{bottom:603.255000px;}
.y19{bottom:618.555000px;}
.y48{bottom:620.355000px;}
.y6c{bottom:621.795000px;}
.yac{bottom:623.235000px;}
.y84{bottom:625.035000px;}
.yd0{bottom:625.575000px;}
.y18{bottom:638.715000px;}
.yf4{bottom:640.515000px;}
.y47{bottom:642.135000px;}
.y6b{bottom:643.575000px;}
.y83{bottom:646.815000px;}
.yab{bottom:657.465000px;}
.y17{bottom:658.905000px;}
.y46{bottom:663.945000px;}
.ycf{bottom:664.305000px;}
.y6a{bottom:665.385000px;}
.y82{bottom:668.445000px;}
.yf3{bottom:672.765000px;}
.yaa{bottom:674.025000px;}
.y16{bottom:679.065000px;}
.y45{bottom:685.545000px;}
.ybe{bottom:686.625000px;}
.y69{bottom:687.165000px;}
.y81{bottom:690.225000px;}
.yce{bottom:690.765000px;}
.yf2{bottom:692.925000px;}
.y15{bottom:699.225000px;}
.ya9{bottom:700.665000px;}
.y44{bottom:707.325000px;}
.y68{bottom:708.765000px;}
.y80{bottom:712.005000px;}
.ybd{bottom:713.085000px;}
.y14{bottom:719.205000px;}
.yf1{bottom:724.965000px;}
.y43{bottom:729.105000px;}
.y7f{bottom:733.785000px;}
.y13{bottom:739.365000px;}
.y67{bottom:742.605000px;}
.yf0{bottom:745.125000px;}
.y7e{bottom:755.385000px;}
.y42{bottom:758.445000px;}
.y12{bottom:759.525000px;}
.y66{bottom:764.385000px;}
.yef{bottom:777.345000px;}
.y11{bottom:779.685000px;}
.y7d{bottom:784.725000px;}
.y65{bottom:785.985000px;}
.y41{bottom:793.725000px;}
.yee{bottom:797.505000px;}
.y64{bottom:807.765000px;}
.y9b{bottom:812.085000px;}
.y40{bottom:815.505000px;}
.y10{bottom:817.845000px;}
.y7c{bottom:820.185000px;}
.y63{bottom:829.545000px;}
.y3f{bottom:837.285000px;}
.y9a{bottom:838.545000px;}
.y7b{bottom:841.965000px;}
.yed{bottom:849.705000px;}
.y62{bottom:851.325000px;}
.y3e{bottom:859.065000px;}
.yf{bottom:865.005000px;}
.yec{bottom:869.865000px;}
.y61{bottom:872.925000px;}
.y7a{bottom:873.105000px;}
.y3d{bottom:880.665000px;}
.ye{bottom:885.165000px;}
.y10f{bottom:888.765000px;}
.y60{bottom:894.705000px;}
.yeb{bottom:902.130000px;}
.y3c{bottom:902.490000px;}
.yd{bottom:905.370000px;}
.y79{bottom:911.850000px;}
.y5f{bottom:916.530000px;}
.ya8{bottom:917.790000px;}
.yea{bottom:922.290000px;}
.y10e{bottom:922.470000px;}
.y3b{bottom:924.270000px;}
.yc{bottom:925.530000px;}
.ybc{bottom:929.670000px;}
.ycd{bottom:936.150000px;}
.y5e{bottom:938.310000px;}
.y78{bottom:939.750000px;}
.ye9{bottom:942.270000px;}
.y10d{bottom:944.250000px;}
.ya7{bottom:944.430000px;}
.y3a{bottom:946.050000px;}
.yb{bottom:951.630000px;}
.ybb{bottom:956.310000px;}
.ycc{bottom:957.930000px;}
.y5d{bottom:959.910000px;}
.y10c{bottom:966.030000px;}
.y39{bottom:967.650000px;}
.ye8{bottom:974.490000px;}
.ycb{bottom:979.710000px;}
.y5c{bottom:981.690000px;}
.ya{bottom:983.670000px;}
.y38{bottom:989.430000px;}
.ye7{bottom:994.650000px;}
.y10b{bottom:999.690000px;}
.yca{bottom:1001.490000px;}
.y5b{bottom:1003.470000px;}
.y37{bottom:1011.210000px;}
.y10a{bottom:1021.470000px;}
.yc9{bottom:1023.090000px;}
.ye6{bottom:1026.690000px;}
.y5a{bottom:1034.610000px;}
.y9{bottom:1035.150000px;}
.y36{bottom:1040.550000px;}
.y109{bottom:1043.250000px;}
.yc8{bottom:1044.870000px;}
.ye5{bottom:1046.850000px;}
.y108{bottom:1064.850000px;}
.yc7{bottom:1066.650000px;}
.y8{bottom:1075.470000px;}
.y35{bottom:1075.830000px;}
.ye4{bottom:1077.990000px;}
.y107{bottom:1086.630000px;}
.yc6{bottom:1088.430000px;}
.y34{bottom:1097.610000px;}
.y106{bottom:1108.410000px;}
.yc5{bottom:1110.210000px;}
.y5{bottom:1111.470000px;}
.y33{bottom:1119.390000px;}
.y4{bottom:1131.630000px;}
.yc4{bottom:1139.550000px;}
.y32{bottom:1141.170000px;}
.y3{bottom:1153.800000px;}
.y31{bottom:1171.980000px;}
.y2{bottom:1174.140000px;}
.y30{bottom:1194.120000px;}
.y1{bottom:1194.300000px;}
.h6{height:29.974219px;}
.h8{height:37.546875px;}
.h3{height:47.545312px;}
.h9{height:50.062500px;}
.h5{height:52.796250px;}
.h2{height:53.734219px;}
.ha{height:68.084282px;}
.h7{height:74.953125px;}
.h4{height:91.614375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x4{left:108.935987px;}
.x17{left:138.095987px;}
.x5{left:148.535987px;}
.x15{left:207.569987px;}
.xc{left:223.049987px;}
.x13{left:245.369987px;}
.x7{left:272.054987px;}
.x12{left:278.714987px;}
.xe{left:309.674987px;}
.x9{left:363.854987px;}
.x8{left:373.034987px;}
.x6{left:386.894987px;}
.x10{left:403.814987px;}
.xf{left:421.274987px;}
.x16{left:425.774987px;}
.x3{left:433.874987px;}
.x11{left:437.834987px;}
.xb{left:441.614987px;}
.x2{left:446.504987px;}
.xa{left:450.644987px;}
.xd{left:599.504987px;}
.x14{left:612.284987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-1.322667pt;}
.ls10{letter-spacing:-0.842667pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.810667pt;}
.ls1c{letter-spacing:-0.757333pt;}
.lsc{letter-spacing:-0.682667pt;}
.lsf{letter-spacing:-0.624000pt;}
.ls11{letter-spacing:-0.524800pt;}
.ls18{letter-spacing:-0.522133pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls26{letter-spacing:-0.476267pt;}
.ls1e{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:-0.275200pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.171733pt;}
.lsd{letter-spacing:-0.117867pt;}
.ls8{letter-spacing:-0.102400pt;}
.lse{letter-spacing:-0.043520pt;}
.ls6{letter-spacing:-0.040960pt;}
.ls25{letter-spacing:-0.023040pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.017920pt;}
.ls1a{letter-spacing:0.032000pt;}
.ls27{letter-spacing:0.079467pt;}
.ls1{letter-spacing:0.117760pt;}
.ls1d{letter-spacing:0.117867pt;}
.ls12{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls19{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.224427pt;}
.ls3{letter-spacing:0.227733pt;}
.ls17{letter-spacing:0.314667pt;}
.lsb{letter-spacing:0.330133pt;}
.ls22{letter-spacing:0.330240pt;}
.ls23{letter-spacing:1.551360pt;}
.ls20{letter-spacing:2.053333pt;}
.ls13{letter-spacing:5.893120pt;}
.ls21{letter-spacing:30.991360pt;}
.wsa{word-spacing:-14.656000pt;}
.ws6{word-spacing:-13.637013pt;}
.wsd{word-spacing:-13.621547pt;}
.ws0{word-spacing:-13.534613pt;}
.ws11{word-spacing:-13.424747pt;}
.ws15{word-spacing:-13.386347pt;}
.ws16{word-spacing:-13.324800pt;}
.ws4{word-spacing:-13.306880pt;}
.ws14{word-spacing:-13.283840pt;}
.ws3{word-spacing:-13.265920pt;}
.ws10{word-spacing:-13.263360pt;}
.ws5{word-spacing:-13.204480pt;}
.wsc{word-spacing:-13.135147pt;}
.wsb{word-spacing:-13.114880pt;}
.ws12{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.784747pt;}
.ws8{word-spacing:-12.782080pt;}
.wsf{word-spacing:-12.624213pt;}
.ws7{word-spacing:-12.464213pt;}
.ws13{word-spacing:-10.832000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-8.113920pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-10.688427pt;}
._3{margin-left:-3.982080pt;}
._2{margin-left:-2.342400pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.156907pt;}
._7{width:2.414080pt;}
._9{width:3.328213pt;}
._6{width:4.474027pt;}
._5{width:5.475840pt;}
._b{width:6.420053pt;}
._8{width:7.443627pt;}
._f{width:8.630613pt;}
._e{width:9.749333pt;}
._17{width:10.646187pt;}
._a{width:11.599360pt;}
._12{width:15.191040pt;}
._11{width:16.176640pt;}
._16{width:17.192960pt;}
._10{width:18.938027pt;}
._1e{width:20.313600pt;}
._13{width:21.491200pt;}
._d{width:404.613120pt;}
._c{width:920.567893pt;}
._14{width:1010.719573pt;}
._15{width:1060.106667pt;}
._18{width:1119.626027pt;}
._1a{width:1136.271787pt;}
._1c{width:1161.999787pt;}
._1b{width:1167.759787pt;}
._1d{width:1179.119787pt;}
._19{width:1240.079787pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:51.200000pt;}
.y6{bottom:69.120000pt;}
.y59{bottom:100.960000pt;}
.y2f{bottom:107.360000pt;}
.y99{bottom:112.000000pt;}
.y58{bottom:120.320000pt;}
.ye3{bottom:124.800000pt;}
.y2e{bottom:126.720000pt;}
.y98{bottom:131.360000pt;}
.y57{bottom:139.706667pt;}
.ye2{bottom:144.026667pt;}
.y2d{bottom:146.106667pt;}
.y97{bottom:150.586667pt;}
.y77{bottom:157.146667pt;}
.y56{bottom:158.906667pt;}
.yc3{bottom:159.066667pt;}
.y105{bottom:161.786667pt;}
.y2c{bottom:165.466667pt;}
.y96{bottom:169.946667pt;}
.ye1{bottom:171.866667pt;}
.y55{bottom:178.266667pt;}
.y104{bottom:179.706667pt;}
.y76{bottom:180.666667pt;}
.yc2{bottom:182.746667pt;}
.y2b{bottom:184.826667pt;}
.y95{bottom:189.306667pt;}
.y54{bottom:197.626667pt;}
.y2a{bottom:204.026667pt;}
.y103{bottom:208.186667pt;}
.ye0{bottom:208.506667pt;}
.y94{bottom:208.666667pt;}
.y53{bottom:216.986667pt;}
.y29{bottom:223.386667pt;}
.y102{bottom:226.106667pt;}
.y93{bottom:227.866667pt;}
.y52{bottom:236.186667pt;}
.y28{bottom:242.746667pt;}
.yba{bottom:242.906667pt;}
.y101{bottom:244.026667pt;}
.ydf{bottom:247.066667pt;}
.y92{bottom:247.226667pt;}
.y51{bottom:255.546667pt;}
.y100{bottom:261.946667pt;}
.y27{bottom:262.106667pt;}
.yb9{bottom:262.266667pt;}
.yde{bottom:266.426667pt;}
.y91{bottom:273.306667pt;}
.y26{bottom:281.306667pt;}
.yb8{bottom:281.466667pt;}
.y50{bottom:283.226667pt;}
.ydd{bottom:285.786667pt;}
.yff{bottom:290.586667pt;}
.ya6{bottom:293.146667pt;}
.y25{bottom:300.666667pt;}
.yb7{bottom:300.826667pt;}
.y90{bottom:304.826667pt;}
.ydc{bottom:305.146667pt;}
.ya5{bottom:312.506667pt;}
.yfe{bottom:319.066667pt;}
.y24{bottom:320.026667pt;}
.yb6{bottom:320.186667pt;}
.y8f{bottom:324.026667pt;}
.ydb{bottom:324.506667pt;}
.ya4{bottom:331.866667pt;}
.yfd{bottom:336.986667pt;}
.y4f{bottom:339.226667pt;}
.y23{bottom:339.386667pt;}
.y8e{bottom:343.386667pt;}
.yb5{bottom:350.106667pt;}
.ya3{bottom:351.226667pt;}
.yda{bottom:354.426667pt;}
.y22{bottom:358.626667pt;}
.y8d{bottom:362.786667pt;}
.yfc{bottom:365.666667pt;}
.yb4{bottom:369.506667pt;}
.ya2{bottom:370.466667pt;}
.yd9{bottom:373.826667pt;}
.yc1{bottom:377.506667pt;}
.y21{bottom:377.986667pt;}
.y75{bottom:378.946667pt;}
.y8c{bottom:382.146667pt;}
.yfb{bottom:383.426667pt;}
.yb3{bottom:388.866667pt;}
.ya1{bottom:389.826667pt;}
.yc0{bottom:392.226667pt;}
.yd8{bottom:393.026667pt;}
.y20{bottom:397.346667pt;}
.y74{bottom:398.146667pt;}
.y8b{bottom:401.346667pt;}
.yb2{bottom:408.226667pt;}
.ya0{bottom:409.186667pt;}
.yfa{bottom:412.066667pt;}
.yd7{bottom:412.386667pt;}
.ybf{bottom:415.746667pt;}
.y4e{bottom:416.546667pt;}
.y73{bottom:417.506667pt;}
.y8a{bottom:420.706667pt;}
.y1f{bottom:425.186667pt;}
.yb1{bottom:427.426667pt;}
.yd6{bottom:431.746667pt;}
.y9f{bottom:435.266667pt;}
.y4d{bottom:435.906667pt;}
.y72{bottom:436.866667pt;}
.y89{bottom:440.066667pt;}
.yf9{bottom:440.706667pt;}
.yb0{bottom:446.786667pt;}
.yd5{bottom:451.106667pt;}
.y71{bottom:456.226667pt;}
.y88{bottom:459.426667pt;}
.y1e{bottom:460.226667pt;}
.y4c{bottom:461.986667pt;}
.yaf{bottom:466.146667pt;}
.y9e{bottom:467.106667pt;}
.yf8{bottom:469.186667pt;}
.yd4{bottom:470.306667pt;}
.y70{bottom:475.426667pt;}
.y1d{bottom:478.146667pt;}
.y87{bottom:478.786667pt;}
.y9d{bottom:481.666667pt;}
.yf7{bottom:487.106667pt;}
.yd3{bottom:489.666667pt;}
.y4b{bottom:493.506667pt;}
.y6f{bottom:494.786667pt;}
.y1c{bottom:496.066667pt;}
.y86{bottom:504.866667pt;}
.yf6{bottom:505.026667pt;}
.y9c{bottom:505.346667pt;}
.yd2{bottom:509.026667pt;}
.y4a{bottom:512.706667pt;}
.y1b{bottom:513.986667pt;}
.y6e{bottom:514.146667pt;}
.yae{bottom:515.426667pt;}
.yd1{bottom:528.386667pt;}
.y1a{bottom:531.906667pt;}
.y49{bottom:532.066667pt;}
.y6d{bottom:533.506667pt;}
.yf5{bottom:533.666667pt;}
.yad{bottom:534.786667pt;}
.y85{bottom:536.226667pt;}
.y19{bottom:549.826667pt;}
.y48{bottom:551.426667pt;}
.y6c{bottom:552.706667pt;}
.yac{bottom:553.986667pt;}
.y84{bottom:555.586667pt;}
.yd0{bottom:556.066667pt;}
.y18{bottom:567.746667pt;}
.yf4{bottom:569.346667pt;}
.y47{bottom:570.786667pt;}
.y6b{bottom:572.066667pt;}
.y83{bottom:574.946667pt;}
.yab{bottom:584.413333pt;}
.y17{bottom:585.693333pt;}
.y46{bottom:590.173333pt;}
.ycf{bottom:590.493333pt;}
.y6a{bottom:591.453333pt;}
.y82{bottom:594.173333pt;}
.yf3{bottom:598.013333pt;}
.yaa{bottom:599.133333pt;}
.y16{bottom:603.613333pt;}
.y45{bottom:609.373333pt;}
.ybe{bottom:610.333333pt;}
.y69{bottom:610.813333pt;}
.y81{bottom:613.533333pt;}
.yce{bottom:614.013333pt;}
.yf2{bottom:615.933333pt;}
.y15{bottom:621.533333pt;}
.ya9{bottom:622.813333pt;}
.y44{bottom:628.733333pt;}
.y68{bottom:630.013333pt;}
.y80{bottom:632.893333pt;}
.ybd{bottom:633.853333pt;}
.y14{bottom:639.293333pt;}
.yf1{bottom:644.413333pt;}
.y43{bottom:648.093333pt;}
.y7f{bottom:652.253333pt;}
.y13{bottom:657.213333pt;}
.y67{bottom:660.093333pt;}
.yf0{bottom:662.333333pt;}
.y7e{bottom:671.453333pt;}
.y42{bottom:674.173333pt;}
.y12{bottom:675.133333pt;}
.y66{bottom:679.453333pt;}
.yef{bottom:690.973333pt;}
.y11{bottom:693.053333pt;}
.y7d{bottom:697.533333pt;}
.y65{bottom:698.653333pt;}
.y41{bottom:705.533333pt;}
.yee{bottom:708.893333pt;}
.y64{bottom:718.013333pt;}
.y9b{bottom:721.853333pt;}
.y40{bottom:724.893333pt;}
.y10{bottom:726.973333pt;}
.y7c{bottom:729.053333pt;}
.y63{bottom:737.373333pt;}
.y3f{bottom:744.253333pt;}
.y9a{bottom:745.373333pt;}
.y7b{bottom:748.413333pt;}
.yed{bottom:755.293333pt;}
.y62{bottom:756.733333pt;}
.y3e{bottom:763.613333pt;}
.yf{bottom:768.893333pt;}
.yec{bottom:773.213333pt;}
.y61{bottom:775.933333pt;}
.y7a{bottom:776.093333pt;}
.y3d{bottom:782.813333pt;}
.ye{bottom:786.813333pt;}
.y10f{bottom:790.013333pt;}
.y60{bottom:795.293333pt;}
.yeb{bottom:801.893333pt;}
.y3c{bottom:802.213333pt;}
.yd{bottom:804.773333pt;}
.y79{bottom:810.533333pt;}
.y5f{bottom:814.693333pt;}
.ya8{bottom:815.813333pt;}
.yea{bottom:819.813333pt;}
.y10e{bottom:819.973333pt;}
.y3b{bottom:821.573333pt;}
.yc{bottom:822.693333pt;}
.ybc{bottom:826.373333pt;}
.ycd{bottom:832.133333pt;}
.y5e{bottom:834.053333pt;}
.y78{bottom:835.333333pt;}
.ye9{bottom:837.573333pt;}
.y10d{bottom:839.333333pt;}
.ya7{bottom:839.493333pt;}
.y3a{bottom:840.933333pt;}
.yb{bottom:845.893333pt;}
.ybb{bottom:850.053333pt;}
.ycc{bottom:851.493333pt;}
.y5d{bottom:853.253333pt;}
.y10c{bottom:858.693333pt;}
.y39{bottom:860.133333pt;}
.ye8{bottom:866.213333pt;}
.ycb{bottom:870.853333pt;}
.y5c{bottom:872.613333pt;}
.ya{bottom:874.373333pt;}
.y38{bottom:879.493333pt;}
.ye7{bottom:884.133333pt;}
.y10b{bottom:888.613333pt;}
.yca{bottom:890.213333pt;}
.y5b{bottom:891.973333pt;}
.y37{bottom:898.853333pt;}
.y10a{bottom:907.973333pt;}
.yc9{bottom:909.413333pt;}
.ye6{bottom:912.613333pt;}
.y5a{bottom:919.653333pt;}
.y9{bottom:920.133333pt;}
.y36{bottom:924.933333pt;}
.y109{bottom:927.333333pt;}
.yc8{bottom:928.773333pt;}
.ye5{bottom:930.533333pt;}
.y108{bottom:946.533333pt;}
.yc7{bottom:948.133333pt;}
.y8{bottom:955.973333pt;}
.y35{bottom:956.293333pt;}
.ye4{bottom:958.213333pt;}
.y107{bottom:965.893333pt;}
.yc6{bottom:967.493333pt;}
.y34{bottom:975.653333pt;}
.y106{bottom:985.253333pt;}
.yc5{bottom:986.853333pt;}
.y5{bottom:987.973333pt;}
.y33{bottom:995.013333pt;}
.y4{bottom:1005.893333pt;}
.yc4{bottom:1012.933333pt;}
.y32{bottom:1014.373333pt;}
.y3{bottom:1025.600000pt;}
.y31{bottom:1041.760000pt;}
.y2{bottom:1043.680000pt;}
.y30{bottom:1061.440000pt;}
.y1{bottom:1061.600000pt;}
.h6{height:26.643750pt;}
.h8{height:33.375000pt;}
.h3{height:42.262500pt;}
.h9{height:44.500000pt;}
.h5{height:46.930000pt;}
.h2{height:47.763750pt;}
.ha{height:60.519362pt;}
.h7{height:66.625000pt;}
.h4{height:81.435000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x4{left:96.831988pt;}
.x17{left:122.751988pt;}
.x5{left:132.031988pt;}
.x15{left:184.506655pt;}
.xc{left:198.266655pt;}
.x13{left:218.106655pt;}
.x7{left:241.826655pt;}
.x12{left:247.746655pt;}
.xe{left:275.266655pt;}
.x9{left:323.426655pt;}
.x8{left:331.586655pt;}
.x6{left:343.906655pt;}
.x10{left:358.946655pt;}
.xf{left:374.466655pt;}
.x16{left:378.466655pt;}
.x3{left:385.666655pt;}
.x11{left:389.186655pt;}
.xb{left:392.546655pt;}
.x2{left:396.893322pt;}
.xa{left:400.573322pt;}
.xd{left:532.893322pt;}
.x14{left:544.253322pt;}
}




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