
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_dfca8b52557086f17f3b73b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_5e521ab1c1e0717012ee9227.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_0bd8b14ace72b74c1ddb1a06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_01b2b46cdc8651bb4a8371ea.woff')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_9748e3ff3a03049793f056de.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b54e2a882e0ed1b327799f62.woff')format("woff");}.ff7{font-family:ff7;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.066000px;}
.ls16{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls12{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.115800px;}
.ls10{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wse{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.342200px;}
.ws5{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._14{margin-left:-3.406200px;}
._9{margin-left:-2.169000px;}
._0{margin-left:-1.110000px;}
._3{width:1.006488px;}
._5{width:2.969377px;}
._a{width:4.809600px;}
._e{width:5.892000px;}
._6{width:7.334400px;}
._c{width:8.597400px;}
._d{width:10.131402px;}
._10{width:11.963880px;}
._4{width:15.030000px;}
._8{width:16.589520px;}
._f{width:18.605160px;}
._b{width:20.560800px;}
._13{width:21.947402px;}
._7{width:23.506800px;}
._2{width:26.254512px;}
._1{width:27.344640px;}
._1b{width:30.480840px;}
._20{width:35.771400px;}
._21{width:36.793440px;}
._22{width:39.198240px;}
._18{width:59.458680px;}
._1a{width:65.109960px;}
._15{width:81.162000px;}
._1e{width:88.496640px;}
._19{width:91.562760px;}
._1f{width:95.049720px;}
._17{width:117.594720px;}
._16{width:124.380720px;}
._12{width:129.558600px;}
._1c{width:150.605280px;}
._1d{width:208.040040px;}
._11{width:272.764440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y59{bottom:7.830000px;}
.y61{bottom:7.920000px;}
.y5f{bottom:25.380000px;}
.y5d{bottom:25.410000px;}
.y5b{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ydb{bottom:112.980000px;}
.y86{bottom:124.770000px;}
.y126{bottom:126.120000px;}
.yda{bottom:130.530000px;}
.y57{bottom:139.170000px;}
.y85{bottom:142.410000px;}
.y100{bottom:142.770000px;}
.y125{bottom:143.670000px;}
.yae{bottom:144.210000px;}
.yd9{bottom:148.170000px;}
.y56{bottom:156.720000px;}
.y84{bottom:159.960000px;}
.yff{bottom:160.410000px;}
.yd8{bottom:165.720000px;}
.y124{bottom:170.310000px;}
.y55{bottom:174.270000px;}
.y83{bottom:177.600000px;}
.yfe{bottom:177.960000px;}
.y123{bottom:187.860000px;}
.yad{bottom:189.120000px;}
.y54{bottom:191.910000px;}
.y82{bottom:195.150000px;}
.yfd{bottom:195.600000px;}
.yd7{bottom:201.270000px;}
.y24{bottom:201.540000px;}
.y53{bottom:209.460000px;}
.yfc{bottom:213.150000px;}
.y122{bottom:214.500000px;}
.yd6{bottom:218.910000px;}
.y23{bottom:219.090000px;}
.y81{bottom:221.700000px;}
.y52{bottom:227.100000px;}
.yfb{bottom:230.700000px;}
.y121{bottom:232.050000px;}
.yac{bottom:234.030000px;}
.yd5{bottom:236.460000px;}
.y22{bottom:236.730000px;}
.y51{bottom:244.650000px;}
.yfa{bottom:248.340000px;}
.yd4{bottom:254.100000px;}
.y21{bottom:254.280000px;}
.y80{bottom:257.340000px;}
.y120{bottom:258.600000px;}
.y50{bottom:262.200000px;}
.yf9{bottom:265.890000px;}
.yd3{bottom:271.650000px;}
.y20{bottom:271.920000px;}
.y7f{bottom:274.890000px;}
.y11f{bottom:276.240000px;}
.yab{bottom:278.940000px;}
.yf8{bottom:283.440000px;}
.y4f{bottom:288.840000px;}
.yd2{bottom:289.200000px;}
.y1f{bottom:289.470000px;}
.y7e{bottom:292.440000px;}
.yf7{bottom:301.080000px;}
.y11e{bottom:302.790000px;}
.yd1{bottom:306.840000px;}
.y7d{bottom:310.080000px;}
.y1e{bottom:316.020000px;}
.y11d{bottom:320.430000px;}
.yaa{bottom:323.850000px;}
.y4e{bottom:324.390000px;}
.yf6{bottom:327.630000px;}
.y7c{bottom:336.990000px;}
.y11c{bottom:337.980000px;}
.y4d{bottom:341.940000px;}
.y1d{bottom:351.660000px;}
.y4c{bottom:359.580000px;}
.yf5{bottom:363.270000px;}
.y11b{bottom:364.530000px;}
.y1c{bottom:369.210000px;}
.ya9{bottom:372.540000px;}
.y4b{bottom:377.130000px;}
.yf4{bottom:380.820000px;}
.y11a{bottom:382.170000px;}
.y7b{bottom:385.230000px;}
.yd0{bottom:386.130000px;}
.y1b{bottom:386.850000px;}
.y4a{bottom:394.770000px;}
.yf3{bottom:398.370000px;}
.y119{bottom:399.720000px;}
.y7a{bottom:402.870000px;}
.y1a{bottom:404.400000px;}
.ya8{bottom:408.180000px;}
.y49{bottom:412.320000px;}
.yf2{bottom:416.010000px;}
.y79{bottom:420.420000px;}
.ycf{bottom:421.770000px;}
.y19{bottom:421.950000px;}
.ya7{bottom:425.730000px;}
.y118{bottom:426.360000px;}
.y48{bottom:429.870000px;}
.yf1{bottom:433.560000px;}
.y78{bottom:437.970000px;}
.yce{bottom:439.320000px;}
.y18{bottom:439.590000px;}
.ya6{bottom:443.370000px;}
.y117{bottom:443.910000px;}
.y47{bottom:447.510000px;}
.yf0{bottom:451.200000px;}
.y77{bottom:455.610000px;}
.ycd{bottom:456.870000px;}
.ya5{bottom:460.920000px;}
.y46{bottom:465.060000px;}
.y17{bottom:466.500000px;}
.yef{bottom:468.750000px;}
.y116{bottom:470.490000px;}
.y76{bottom:473.190000px;}
.ycc{bottom:474.540000px;}
.yee{bottom:486.330000px;}
.y115{bottom:488.130000px;}
.y75{bottom:490.830000px;}
.y45{bottom:491.730000px;}
.ycb{bottom:492.090000px;}
.ya4{bottom:496.500000px;}
.yed{bottom:503.970000px;}
.y74{bottom:508.380000px;}
.yca{bottom:509.730000px;}
.ya3{bottom:514.140000px;}
.y114{bottom:515.040000px;}
.y16{bottom:515.130000px;}
.yec{bottom:521.520000px;}
.y73{bottom:525.930000px;}
.y44{bottom:527.280000px;}
.ya2{bottom:531.690000px;}
.y43{bottom:544.830000px;}
.yeb{bottom:548.160000px;}
.ya1{bottom:549.330000px;}
.y15{bottom:552.120000px;}
.y72{bottom:552.570000px;}
.y42{bottom:562.470000px;}
.y113{bottom:563.280000px;}
.ya0{bottom:566.880000px;}
.y14{bottom:569.670000px;}
.y41{bottom:580.020000px;}
.y112{bottom:580.830000px;}
.yea{bottom:583.710000px;}
.y9f{bottom:584.430000px;}
.y13{bottom:587.310000px;}
.y71{bottom:588.120000px;}
.yc9{bottom:589.020000px;}
.y40{bottom:597.660000px;}
.y111{bottom:598.470000px;}
.ye9{bottom:601.260000px;}
.y9e{bottom:602.070000px;}
.y12{bottom:604.860000px;}
.y70{bottom:605.760000px;}
.y110{bottom:616.020000px;}
.ye8{bottom:618.900000px;}
.y9d{bottom:619.620000px;}
.y11{bottom:622.500000px;}
.y6f{bottom:623.310000px;}
.y3f{bottom:624.570000px;}
.yc8{bottom:624.660000px;}
.y10f{bottom:633.660000px;}
.ye7{bottom:636.450000px;}
.y9c{bottom:637.260000px;}
.y10{bottom:640.050000px;}
.y6e{bottom:640.860000px;}
.yc7{bottom:642.210000px;}
.y10e{bottom:651.210000px;}
.ye6{bottom:654.090000px;}
.yf{bottom:657.600000px;}
.y6d{bottom:658.500000px;}
.yc6{bottom:659.760000px;}
.y9b{bottom:663.810000px;}
.y10d{bottom:668.760000px;}
.ye5{bottom:671.640000px;}
.y3e{bottom:672.810000px;}
.ye{bottom:675.240000px;}
.y6c{bottom:676.050000px;}
.yc5{bottom:677.400000px;}
.y10c{bottom:686.400000px;}
.ye4{bottom:689.190000px;}
.y3d{bottom:690.360000px;}
.yd{bottom:692.790000px;}
.y6b{bottom:693.690000px;}
.yc4{bottom:694.950000px;}
.y9a{bottom:699.360000px;}
.y10b{bottom:703.950000px;}
.ye3{bottom:706.830000px;}
.y3c{bottom:708.000000px;}
.yc{bottom:710.430000px;}
.yc3{bottom:712.590000px;}
.y99{bottom:717.000000px;}
.y10a{bottom:721.590000px;}
.ye2{bottom:724.380000px;}
.y3b{bottom:725.550000px;}
.yb{bottom:727.980000px;}
.y6a{bottom:729.240000px;}
.yc2{bottom:730.140000px;}
.y98{bottom:734.550000px;}
.y109{bottom:739.140000px;}
.y3a{bottom:743.190000px;}
.y69{bottom:746.790000px;}
.yc1{bottom:747.690000px;}
.ye1{bottom:751.020000px;}
.y97{bottom:752.190000px;}
.ya{bottom:754.890000px;}
.y108{bottom:756.690000px;}
.y39{bottom:760.740000px;}
.y68{bottom:764.430000px;}
.yc0{bottom:765.330000px;}
.y96{bottom:769.740000px;}
.y107{bottom:774.330000px;}
.y38{bottom:778.290000px;}
.y67{bottom:781.980000px;}
.ye0{bottom:786.570000px;}
.y95{bottom:787.290000px;}
.ybf{bottom:791.880000px;}
.y66{bottom:799.530000px;}
.y106{bottom:801.240000px;}
.y9{bottom:803.130000px;}
.ydf{bottom:804.120000px;}
.y37{bottom:804.930000px;}
.y65{bottom:817.170000px;}
.yde{bottom:821.760000px;}
.y94{bottom:822.480000px;}
.ybe{bottom:827.520000px;}
.y64{bottom:834.720000px;}
.y8{bottom:838.950000px;}
.ydd{bottom:839.310000px;}
.y36{bottom:840.480000px;}
.ybd{bottom:845.070000px;}
.y93{bottom:849.030000px;}
.y105{bottom:849.480000px;}
.y63{bottom:852.360000px;}
.y35{bottom:858.030000px;}
.ybc{bottom:862.620000px;}
.ydc{bottom:866.220000px;}
.y104{bottom:867.030000px;}
.y7{bottom:874.950000px;}
.y34{bottom:875.670000px;}
.y62{bottom:878.910000px;}
.ybb{bottom:880.260000px;}
.y92{bottom:884.670000px;}
.y33{bottom:893.220000px;}
.yba{bottom:897.810000px;}
.y91{bottom:902.220000px;}
.y32{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y60{bottom:911.850000px;}
.yb9{bottom:915.450000px;}
.y90{bottom:919.860000px;}
.y31{bottom:928.410000px;}
.yb8{bottom:933.000000px;}
.y8f{bottom:937.410000px;}
.y30{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.yb7{bottom:950.550000px;}
.y8e{bottom:954.960000px;}
.y103{bottom:955.410000px;}
.y5e{bottom:956.850000px;}
.yb6{bottom:968.190000px;}
.y2f{bottom:972.600000px;}
.y102{bottom:972.960000px;}
.y4{bottom:985.380000px;}
.yb5{bottom:985.740000px;}
.y8d{bottom:990.150000px;}
.y101{bottom:990.600000px;}
.y5c{bottom:1001.760000px;}
.y8c{bottom:1007.790000px;}
.y2e{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.yb4{bottom:1012.320000px;}
.y8b{bottom:1025.370000px;}
.y2d{bottom:1025.820000px;}
.y2c{bottom:1043.370000px;}
.y5a{bottom:1046.700000px;}
.yb3{bottom:1047.960000px;}
.y8a{bottom:1051.920000px;}
.y2b{bottom:1060.920000px;}
.yb2{bottom:1065.510000px;}
.y2a{bottom:1078.560000px;}
.yb1{bottom:1083.150000px;}
.y89{bottom:1087.560000px;}
.y58{bottom:1091.610000px;}
.y29{bottom:1096.110000px;}
.yb0{bottom:1100.700000px;}
.y88{bottom:1105.110000px;}
.y28{bottom:1113.750000px;}
.y87{bottom:1122.750000px;}
.yaf{bottom:1127.610000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:44.100000px;}
.hd{height:44.130000px;}
.hc{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.h10{height:61.793886px;}
.h9{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:144.750000px;}
.w3{width:171.660000px;}
.w8{width:190.290000px;}
.w9{width:272.280000px;}
.wa{width:291.600000px;}
.w7{width:302.940000px;}
.w6{width:306.570000px;}
.w4{width:583.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xa{left:111.239987px;}
.x2{left:211.079987px;}
.x6{left:214.230000px;}
.x5{left:241.140000px;}
.x8{left:259.860000px;}
.x7{left:521.520000px;}
.x9{left:532.860000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.058667pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls12{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.102933pt;}
.ls10{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls14{letter-spacing:71.863680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.859733pt;}
.ws5{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._14{margin-left:-3.027733pt;}
._9{margin-left:-1.928000pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.894656pt;}
._5{width:2.639446pt;}
._a{width:4.275200pt;}
._e{width:5.237334pt;}
._6{width:6.519466pt;}
._c{width:7.642134pt;}
._d{width:9.005691pt;}
._10{width:10.634560pt;}
._4{width:13.360000pt;}
._8{width:14.746240pt;}
._f{width:16.537920pt;}
._b{width:18.276266pt;}
._13{width:19.508802pt;}
._7{width:20.894933pt;}
._2{width:23.337344pt;}
._1{width:24.306347pt;}
._1b{width:27.094080pt;}
._20{width:31.796800pt;}
._21{width:32.705280pt;}
._22{width:34.842880pt;}
._18{width:52.852160pt;}
._1a{width:57.875520pt;}
._15{width:72.144000pt;}
._1e{width:78.663680pt;}
._19{width:81.389120pt;}
._1f{width:84.488640pt;}
._17{width:104.528640pt;}
._16{width:110.560640pt;}
._12{width:115.163200pt;}
._1c{width:133.871360pt;}
._1d{width:184.924480pt;}
._11{width:242.457280pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:6.960000pt;}
.y61{bottom:7.040000pt;}
.y5f{bottom:22.560000pt;}
.y5d{bottom:22.586667pt;}
.y5b{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ydb{bottom:100.426667pt;}
.y86{bottom:110.906667pt;}
.y126{bottom:112.106667pt;}
.yda{bottom:116.026667pt;}
.y57{bottom:123.706667pt;}
.y85{bottom:126.586667pt;}
.y100{bottom:126.906667pt;}
.y125{bottom:127.706667pt;}
.yae{bottom:128.186667pt;}
.yd9{bottom:131.706667pt;}
.y56{bottom:139.306667pt;}
.y84{bottom:142.186667pt;}
.yff{bottom:142.586667pt;}
.yd8{bottom:147.306667pt;}
.y124{bottom:151.386667pt;}
.y55{bottom:154.906667pt;}
.y83{bottom:157.866667pt;}
.yfe{bottom:158.186667pt;}
.y123{bottom:166.986667pt;}
.yad{bottom:168.106667pt;}
.y54{bottom:170.586667pt;}
.y82{bottom:173.466667pt;}
.yfd{bottom:173.866667pt;}
.yd7{bottom:178.906667pt;}
.y24{bottom:179.146667pt;}
.y53{bottom:186.186667pt;}
.yfc{bottom:189.466667pt;}
.y122{bottom:190.666667pt;}
.yd6{bottom:194.586667pt;}
.y23{bottom:194.746667pt;}
.y81{bottom:197.066667pt;}
.y52{bottom:201.866667pt;}
.yfb{bottom:205.066667pt;}
.y121{bottom:206.266667pt;}
.yac{bottom:208.026667pt;}
.yd5{bottom:210.186667pt;}
.y22{bottom:210.426667pt;}
.y51{bottom:217.466667pt;}
.yfa{bottom:220.746667pt;}
.yd4{bottom:225.866667pt;}
.y21{bottom:226.026667pt;}
.y80{bottom:228.746667pt;}
.y120{bottom:229.866667pt;}
.y50{bottom:233.066667pt;}
.yf9{bottom:236.346667pt;}
.yd3{bottom:241.466667pt;}
.y20{bottom:241.706667pt;}
.y7f{bottom:244.346667pt;}
.y11f{bottom:245.546667pt;}
.yab{bottom:247.946667pt;}
.yf8{bottom:251.946667pt;}
.y4f{bottom:256.746667pt;}
.yd2{bottom:257.066667pt;}
.y1f{bottom:257.306667pt;}
.y7e{bottom:259.946667pt;}
.yf7{bottom:267.626667pt;}
.y11e{bottom:269.146667pt;}
.yd1{bottom:272.746667pt;}
.y7d{bottom:275.626667pt;}
.y1e{bottom:280.906667pt;}
.y11d{bottom:284.826667pt;}
.yaa{bottom:287.866667pt;}
.y4e{bottom:288.346667pt;}
.yf6{bottom:291.226667pt;}
.y7c{bottom:299.546667pt;}
.y11c{bottom:300.426667pt;}
.y4d{bottom:303.946667pt;}
.y1d{bottom:312.586667pt;}
.y4c{bottom:319.626667pt;}
.yf5{bottom:322.906667pt;}
.y11b{bottom:324.026667pt;}
.y1c{bottom:328.186667pt;}
.ya9{bottom:331.146667pt;}
.y4b{bottom:335.226667pt;}
.yf4{bottom:338.506667pt;}
.y11a{bottom:339.706667pt;}
.y7b{bottom:342.426667pt;}
.yd0{bottom:343.226667pt;}
.y1b{bottom:343.866667pt;}
.y4a{bottom:350.906667pt;}
.yf3{bottom:354.106667pt;}
.y119{bottom:355.306667pt;}
.y7a{bottom:358.106667pt;}
.y1a{bottom:359.466667pt;}
.ya8{bottom:362.826667pt;}
.y49{bottom:366.506667pt;}
.yf2{bottom:369.786667pt;}
.y79{bottom:373.706667pt;}
.ycf{bottom:374.906667pt;}
.y19{bottom:375.066667pt;}
.ya7{bottom:378.426667pt;}
.y118{bottom:378.986667pt;}
.y48{bottom:382.106667pt;}
.yf1{bottom:385.386667pt;}
.y78{bottom:389.306667pt;}
.yce{bottom:390.506667pt;}
.y18{bottom:390.746667pt;}
.ya6{bottom:394.106667pt;}
.y117{bottom:394.586667pt;}
.y47{bottom:397.786667pt;}
.yf0{bottom:401.066667pt;}
.y77{bottom:404.986667pt;}
.ycd{bottom:406.106667pt;}
.ya5{bottom:409.706667pt;}
.y46{bottom:413.386667pt;}
.y17{bottom:414.666667pt;}
.yef{bottom:416.666667pt;}
.y116{bottom:418.213333pt;}
.y76{bottom:420.613333pt;}
.ycc{bottom:421.813333pt;}
.yee{bottom:432.293333pt;}
.y115{bottom:433.893333pt;}
.y75{bottom:436.293333pt;}
.y45{bottom:437.093333pt;}
.ycb{bottom:437.413333pt;}
.ya4{bottom:441.333333pt;}
.yed{bottom:447.973333pt;}
.y74{bottom:451.893333pt;}
.yca{bottom:453.093333pt;}
.ya3{bottom:457.013333pt;}
.y114{bottom:457.813333pt;}
.y16{bottom:457.893333pt;}
.yec{bottom:463.573333pt;}
.y73{bottom:467.493333pt;}
.y44{bottom:468.693333pt;}
.ya2{bottom:472.613333pt;}
.y43{bottom:484.293333pt;}
.yeb{bottom:487.253333pt;}
.ya1{bottom:488.293333pt;}
.y15{bottom:490.773333pt;}
.y72{bottom:491.173333pt;}
.y42{bottom:499.973333pt;}
.y113{bottom:500.693333pt;}
.ya0{bottom:503.893333pt;}
.y14{bottom:506.373333pt;}
.y41{bottom:515.573333pt;}
.y112{bottom:516.293333pt;}
.yea{bottom:518.853333pt;}
.y9f{bottom:519.493333pt;}
.y13{bottom:522.053333pt;}
.y71{bottom:522.773333pt;}
.yc9{bottom:523.573333pt;}
.y40{bottom:531.253333pt;}
.y111{bottom:531.973333pt;}
.ye9{bottom:534.453333pt;}
.y9e{bottom:535.173333pt;}
.y12{bottom:537.653333pt;}
.y70{bottom:538.453333pt;}
.y110{bottom:547.573333pt;}
.ye8{bottom:550.133333pt;}
.y9d{bottom:550.773333pt;}
.y11{bottom:553.333333pt;}
.y6f{bottom:554.053333pt;}
.y3f{bottom:555.173333pt;}
.yc8{bottom:555.253333pt;}
.y10f{bottom:563.253333pt;}
.ye7{bottom:565.733333pt;}
.y9c{bottom:566.453333pt;}
.y10{bottom:568.933333pt;}
.y6e{bottom:569.653333pt;}
.yc7{bottom:570.853333pt;}
.y10e{bottom:578.853333pt;}
.ye6{bottom:581.413333pt;}
.yf{bottom:584.533333pt;}
.y6d{bottom:585.333333pt;}
.yc6{bottom:586.453333pt;}
.y9b{bottom:590.053333pt;}
.y10d{bottom:594.453333pt;}
.ye5{bottom:597.013333pt;}
.y3e{bottom:598.053333pt;}
.ye{bottom:600.213333pt;}
.y6c{bottom:600.933333pt;}
.yc5{bottom:602.133333pt;}
.y10c{bottom:610.133333pt;}
.ye4{bottom:612.613333pt;}
.y3d{bottom:613.653333pt;}
.yd{bottom:615.813333pt;}
.y6b{bottom:616.613333pt;}
.yc4{bottom:617.733333pt;}
.y9a{bottom:621.653333pt;}
.y10b{bottom:625.733333pt;}
.ye3{bottom:628.293333pt;}
.y3c{bottom:629.333333pt;}
.yc{bottom:631.493333pt;}
.yc3{bottom:633.413333pt;}
.y99{bottom:637.333333pt;}
.y10a{bottom:641.413333pt;}
.ye2{bottom:643.893333pt;}
.y3b{bottom:644.933333pt;}
.yb{bottom:647.093333pt;}
.y6a{bottom:648.213333pt;}
.yc2{bottom:649.013333pt;}
.y98{bottom:652.933333pt;}
.y109{bottom:657.013333pt;}
.y3a{bottom:660.613333pt;}
.y69{bottom:663.813333pt;}
.yc1{bottom:664.613333pt;}
.ye1{bottom:667.573333pt;}
.y97{bottom:668.613333pt;}
.ya{bottom:671.013333pt;}
.y108{bottom:672.613333pt;}
.y39{bottom:676.213333pt;}
.y68{bottom:679.493333pt;}
.yc0{bottom:680.293333pt;}
.y96{bottom:684.213333pt;}
.y107{bottom:688.293333pt;}
.y38{bottom:691.813333pt;}
.y67{bottom:695.093333pt;}
.ye0{bottom:699.173333pt;}
.y95{bottom:699.813333pt;}
.ybf{bottom:703.893333pt;}
.y66{bottom:710.693333pt;}
.y106{bottom:712.213333pt;}
.y9{bottom:713.893333pt;}
.ydf{bottom:714.773333pt;}
.y37{bottom:715.493333pt;}
.y65{bottom:726.373333pt;}
.yde{bottom:730.453333pt;}
.y94{bottom:731.093333pt;}
.ybe{bottom:735.573333pt;}
.y64{bottom:741.973333pt;}
.y8{bottom:745.733333pt;}
.ydd{bottom:746.053333pt;}
.y36{bottom:747.093333pt;}
.ybd{bottom:751.173333pt;}
.y93{bottom:754.693333pt;}
.y105{bottom:755.093333pt;}
.y63{bottom:757.653333pt;}
.y35{bottom:762.693333pt;}
.ybc{bottom:766.773333pt;}
.ydc{bottom:769.973333pt;}
.y104{bottom:770.693333pt;}
.y7{bottom:777.733333pt;}
.y34{bottom:778.373333pt;}
.y62{bottom:781.253333pt;}
.ybb{bottom:782.453333pt;}
.y92{bottom:786.373333pt;}
.y33{bottom:793.973333pt;}
.yba{bottom:798.053333pt;}
.y91{bottom:801.973333pt;}
.y32{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y60{bottom:810.533333pt;}
.yb9{bottom:813.733333pt;}
.y90{bottom:817.653333pt;}
.y31{bottom:825.253333pt;}
.yb8{bottom:829.333333pt;}
.y8f{bottom:833.253333pt;}
.y30{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.yb7{bottom:844.933333pt;}
.y8e{bottom:848.853333pt;}
.y103{bottom:849.253333pt;}
.y5e{bottom:850.533333pt;}
.yb6{bottom:860.613333pt;}
.y2f{bottom:864.533333pt;}
.y102{bottom:864.853333pt;}
.y4{bottom:875.893333pt;}
.yb5{bottom:876.213333pt;}
.y8d{bottom:880.133333pt;}
.y101{bottom:880.533333pt;}
.y5c{bottom:890.453333pt;}
.y8c{bottom:895.813333pt;}
.y2e{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.yb4{bottom:899.840000pt;}
.y8b{bottom:911.440000pt;}
.y2d{bottom:911.840000pt;}
.y2c{bottom:927.440000pt;}
.y5a{bottom:930.400000pt;}
.yb3{bottom:931.520000pt;}
.y8a{bottom:935.040000pt;}
.y2b{bottom:943.040000pt;}
.yb2{bottom:947.120000pt;}
.y2a{bottom:958.720000pt;}
.yb1{bottom:962.800000pt;}
.y89{bottom:966.720000pt;}
.y58{bottom:970.320000pt;}
.y29{bottom:974.320000pt;}
.yb0{bottom:978.400000pt;}
.y88{bottom:982.320000pt;}
.y28{bottom:990.000000pt;}
.y87{bottom:998.000000pt;}
.yaf{bottom:1002.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:39.200000pt;}
.hd{height:39.226667pt;}
.hc{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.h10{height:54.927899pt;}
.h9{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:128.666667pt;}
.w3{width:152.586667pt;}
.w8{width:169.146667pt;}
.w9{width:242.026667pt;}
.wa{width:259.200000pt;}
.w7{width:269.280000pt;}
.w6{width:272.506667pt;}
.w4{width:518.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xa{left:98.879988pt;}
.x2{left:187.626655pt;}
.x6{left:190.426667pt;}
.x5{left:214.346667pt;}
.x8{left:230.986667pt;}
.x7{left:463.573333pt;}
.x9{left:473.653333pt;}
.x3{left:711.413322pt;}
}




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