
    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_0a1625e7e15e533697ca62c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_bfd19f3601a10cb88fea7712.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f04e2fc96be335516b23af6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_137503689b470449afc5cc86.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_fbd5d453bf906e5e938bcda0.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_e503f7cf1309a9358d7bb596.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e50b748654a23c90f9eaa6ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_20e5f6682aa7ecf87eea7e6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.208200px;}
.lse{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.153360px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.513600px;}
.ls12{letter-spacing:0.612000px;}
.ls11{letter-spacing:0.666000px;}
.ls14{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.512000px;}
.ls16{letter-spacing:11.466720px;}
.ls13{letter-spacing:41.706720px;}
.lsf{letter-spacing:79.290720px;}
.lsa{letter-spacing:124.650720px;}
.ls1{letter-spacing:154.170720px;}
.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;}
}
.ws0{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.606000px;}
.wsb{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-2770.855200px;}
._9{margin-left:-1578.044400px;}
._6{margin-left:-1403.753760px;}
._8{margin-left:-930.967920px;}
._d{margin-left:-721.224720px;}
._e{margin-left:-693.074160px;}
._18{margin-left:-595.620000px;}
._19{margin-left:-579.005760px;}
._a{margin-left:-574.927920px;}
._15{margin-left:-554.814240px;}
._1b{margin-left:-508.440000px;}
._1c{margin-left:-506.539200px;}
._16{margin-left:-428.114160px;}
._14{margin-left:-317.487360px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-143.280000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._3{margin-left:-4.721040px;}
._1f{margin-left:-3.642240px;}
._1{margin-left:-2.445840px;}
._4{margin-left:-1.158240px;}
._0{width:1.365120px;}
._2{width:2.550720px;}
._20{width:3.954480px;}
._24{width:5.188800px;}
._26{width:6.513840px;}
._22{width:7.948080px;}
._23{width:8.982720px;}
._25{width:10.968240px;}
._21{width:12.131280px;}
._29{width:13.345200px;}
._2c{width:16.493760px;}
._27{width:18.047520px;}
._28{width:19.072800px;}
._2d{width:20.212080px;}
._2a{width:21.238560px;}
._2b{width:22.290480px;}
._31{width:25.622400px;}
._30{width:26.630400px;}
._2e{width:27.848160px;}
._2f{width:29.220720px;}
._1d{width:39.254880px;}
._1e{width:41.076000px;}
.fc1{color:rgb(47,84,150);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:59.256000px;}
.y6b{bottom:91.656000px;}
.y11f{bottom:99.936000px;}
.y6a{bottom:111.456000px;}
.y33{bottom:114.876000px;}
.y78{bottom:116.496000px;}
.y11e{bottom:119.916000px;}
.yf7{bottom:120.276000px;}
.y80{bottom:122.256000px;}
.y69{bottom:131.256000px;}
.y32{bottom:134.676000px;}
.y77{bottom:136.296000px;}
.y11d{bottom:139.716000px;}
.yf6{bottom:140.076000px;}
.y7f{bottom:142.236000px;}
.y68{bottom:151.230000px;}
.y31{bottom:154.470000px;}
.y76{bottom:156.090000px;}
.y11c{bottom:159.510000px;}
.yf5{bottom:159.870000px;}
.y7e{bottom:162.030000px;}
.y67{bottom:171.030000px;}
.y30{bottom:174.270000px;}
.y75{bottom:175.890000px;}
.y11b{bottom:179.310000px;}
.yf4{bottom:179.670000px;}
.y7d{bottom:181.830000px;}
.yd3{bottom:189.570000px;}
.y66{bottom:190.830000px;}
.y2f{bottom:194.070000px;}
.y74{bottom:195.870000px;}
.y11a{bottom:199.110000px;}
.yf3{bottom:199.470000px;}
.y7c{bottom:201.630000px;}
.yd2{bottom:209.550000px;}
.y65{bottom:210.630000px;}
.y2e{bottom:214.050000px;}
.y73{bottom:215.670000px;}
.y119{bottom:219.090000px;}
.yf2{bottom:219.450000px;}
.y7b{bottom:221.430000px;}
.yd1{bottom:229.350000px;}
.y64{bottom:230.430000px;}
.y2d{bottom:233.850000px;}
.y99{bottom:234.750000px;}
.y72{bottom:235.470000px;}
.y118{bottom:238.890000px;}
.yf1{bottom:239.250000px;}
.y7a{bottom:241.410000px;}
.yd0{bottom:249.150000px;}
.y63{bottom:250.410000px;}
.y2c{bottom:253.650000px;}
.y98{bottom:254.550000px;}
.y71{bottom:255.270000px;}
.y117{bottom:258.690000px;}
.yf0{bottom:259.050000px;}
.y79{bottom:261.210000px;}
.ycf{bottom:268.950000px;}
.y62{bottom:270.210000px;}
.y2b{bottom:273.450000px;}
.y97{bottom:274.350000px;}
.y70{bottom:275.070000px;}
.y116{bottom:278.490000px;}
.yef{bottom:278.850000px;}
.yce{bottom:288.795000px;}
.y61{bottom:290.055000px;}
.y2a{bottom:293.295000px;}
.y96{bottom:294.195000px;}
.y6f{bottom:295.095000px;}
.y115{bottom:298.335000px;}
.yee{bottom:298.695000px;}
.ycd{bottom:308.775000px;}
.y60{bottom:309.855000px;}
.y29{bottom:313.275000px;}
.y95{bottom:313.995000px;}
.y6e{bottom:314.895000px;}
.y114{bottom:318.315000px;}
.yed{bottom:318.675000px;}
.ycc{bottom:328.575000px;}
.y5f{bottom:329.655000px;}
.y28{bottom:333.075000px;}
.yb5{bottom:333.255000px;}
.y94{bottom:333.975000px;}
.y6d{bottom:334.695000px;}
.y113{bottom:338.115000px;}
.yec{bottom:338.475000px;}
.ycb{bottom:348.375000px;}
.y5e{bottom:349.635000px;}
.y27{bottom:352.875000px;}
.yb4{bottom:353.055000px;}
.y93{bottom:353.775000px;}
.y6c{bottom:354.495000px;}
.y112{bottom:357.915000px;}
.yeb{bottom:358.275000px;}
.yca{bottom:368.175000px;}
.y5d{bottom:369.435000px;}
.y26{bottom:372.675000px;}
.yb3{bottom:372.855000px;}
.y92{bottom:373.575000px;}
.y111{bottom:377.715000px;}
.yea{bottom:378.075000px;}
.yc9{bottom:387.975000px;}
.y5c{bottom:389.235000px;}
.y25{bottom:392.475000px;}
.yb2{bottom:392.655000px;}
.y91{bottom:393.375000px;}
.y110{bottom:397.515000px;}
.ye9{bottom:397.875000px;}
.yc8{bottom:407.955000px;}
.y5b{bottom:409.035000px;}
.y24{bottom:412.455000px;}
.y90{bottom:413.175000px;}
.y10f{bottom:417.315000px;}
.ye8{bottom:417.855000px;}
.yc7{bottom:427.755000px;}
.y5a{bottom:428.835000px;}
.y23{bottom:432.255000px;}
.yb1{bottom:432.435000px;}
.y8f{bottom:433.155000px;}
.y10e{bottom:437.295000px;}
.ye7{bottom:437.655000px;}
.yc6{bottom:447.555000px;}
.y59{bottom:448.815000px;}
.y22{bottom:452.055000px;}
.yb0{bottom:452.235000px;}
.y8e{bottom:452.955000px;}
.y10d{bottom:457.095000px;}
.ye6{bottom:457.455000px;}
.yc5{bottom:467.355000px;}
.y58{bottom:468.615000px;}
.y21{bottom:471.855000px;}
.yaf{bottom:472.035000px;}
.y8d{bottom:472.755000px;}
.y10c{bottom:476.895000px;}
.ye5{bottom:477.255000px;}
.yc4{bottom:487.155000px;}
.y57{bottom:488.415000px;}
.y20{bottom:491.655000px;}
.yae{bottom:491.835000px;}
.y8c{bottom:492.555000px;}
.y10b{bottom:496.695000px;}
.ye4{bottom:497.055000px;}
.yc3{bottom:507.135000px;}
.y56{bottom:508.215000px;}
.yad{bottom:511.635000px;}
.y8b{bottom:512.355000px;}
.y1f{bottom:513.795000px;}
.y10a{bottom:516.495000px;}
.ye3{bottom:517.035000px;}
.yc2{bottom:526.935000px;}
.y55{bottom:528.015000px;}
.yac{bottom:531.615000px;}
.y8a{bottom:532.335000px;}
.y109{bottom:536.475000px;}
.ye2{bottom:536.835000px;}
.y1e{bottom:542.595000px;}
.yc1{bottom:546.735000px;}
.y54{bottom:547.995000px;}
.yab{bottom:551.415000px;}
.y89{bottom:552.135000px;}
.y108{bottom:556.275000px;}
.ye1{bottom:556.635000px;}
.y1d{bottom:562.395000px;}
.yc0{bottom:566.565000px;}
.y53{bottom:567.825000px;}
.yaa{bottom:571.245000px;}
.y88{bottom:571.965000px;}
.y107{bottom:576.105000px;}
.ye0{bottom:576.465000px;}
.y1c{bottom:582.405000px;}
.ybf{bottom:586.365000px;}
.y52{bottom:587.625000px;}
.ya9{bottom:591.045000px;}
.y87{bottom:591.765000px;}
.y106{bottom:595.905000px;}
.ydf{bottom:596.265000px;}
.y1b{bottom:602.205000px;}
.ybe{bottom:606.345000px;}
.y51{bottom:607.425000px;}
.ya8{bottom:610.845000px;}
.y86{bottom:611.565000px;}
.y105{bottom:615.705000px;}
.yde{bottom:616.245000px;}
.y1a{bottom:622.005000px;}
.ybd{bottom:626.145000px;}
.y50{bottom:627.225000px;}
.ya7{bottom:630.825000px;}
.y85{bottom:631.545000px;}
.y104{bottom:635.685000px;}
.ydd{bottom:636.045000px;}
.y19{bottom:641.805000px;}
.ybc{bottom:645.945000px;}
.y4f{bottom:647.205000px;}
.ya6{bottom:650.625000px;}
.y84{bottom:651.345000px;}
.y103{bottom:655.485000px;}
.ydc{bottom:655.845000px;}
.y18{bottom:661.605000px;}
.ybb{bottom:665.745000px;}
.y4e{bottom:667.005000px;}
.ya5{bottom:670.425000px;}
.y83{bottom:671.145000px;}
.ydb{bottom:675.645000px;}
.y17{bottom:681.585000px;}
.yba{bottom:685.545000px;}
.y4d{bottom:686.805000px;}
.ya4{bottom:690.225000px;}
.y82{bottom:690.945000px;}
.yda{bottom:695.445000px;}
.y16{bottom:701.385000px;}
.yb9{bottom:705.525000px;}
.y4c{bottom:706.605000px;}
.ya3{bottom:710.025000px;}
.y81{bottom:710.745000px;}
.yd9{bottom:715.425000px;}
.y15{bottom:721.185000px;}
.yb8{bottom:725.325000px;}
.y4b{bottom:726.405000px;}
.ya2{bottom:730.005000px;}
.yd8{bottom:735.225000px;}
.y14{bottom:740.985000px;}
.yb7{bottom:745.125000px;}
.y4a{bottom:746.385000px;}
.ya1{bottom:749.805000px;}
.yd7{bottom:755.025000px;}
.y13{bottom:760.785000px;}
.yb6{bottom:764.925000px;}
.y49{bottom:766.185000px;}
.ya0{bottom:769.605000px;}
.yd6{bottom:774.825000px;}
.y12{bottom:780.765000px;}
.y48{bottom:785.985000px;}
.y9f{bottom:789.405000px;}
.yd5{bottom:794.625000px;}
.y102{bottom:796.785000px;}
.y11{bottom:800.565000px;}
.y47{bottom:805.785000px;}
.y9e{bottom:809.205000px;}
.yd4{bottom:814.605000px;}
.y101{bottom:816.585000px;}
.y10{bottom:820.365000px;}
.y46{bottom:825.585000px;}
.y9d{bottom:829.185000px;}
.y100{bottom:836.565000px;}
.yf{bottom:840.165000px;}
.y45{bottom:845.565000px;}
.y9c{bottom:849.030000px;}
.yff{bottom:856.410000px;}
.ye{bottom:862.350000px;}
.y44{bottom:865.410000px;}
.y9b{bottom:868.830000px;}
.yfe{bottom:876.210000px;}
.y43{bottom:885.210000px;}
.yd{bottom:887.370000px;}
.y9a{bottom:888.630000px;}
.yfd{bottom:896.010000px;}
.y42{bottom:905.010000px;}
.yc{bottom:907.170000px;}
.yfc{bottom:915.810000px;}
.yb{bottom:922.470000px;}
.y41{bottom:924.810000px;}
.yfb{bottom:935.790000px;}
.ya{bottom:943.710000px;}
.y40{bottom:944.790000px;}
.yfa{bottom:955.590000px;}
.y3f{bottom:964.590000px;}
.y9{bottom:967.110000px;}
.yf9{bottom:975.390000px;}
.y3e{bottom:984.390000px;}
.yf8{bottom:995.190000px;}
.y8{bottom:998.790000px;}
.y3d{bottom:1004.190000px;}
.y3c{bottom:1023.990000px;}
.y7{bottom:1030.650000px;}
.y3b{bottom:1043.970000px;}
.y3a{bottom:1063.770000px;}
.y5{bottom:1068.990000px;}
.y39{bottom:1083.570000px;}
.y4{bottom:1099.770000px;}
.y38{bottom:1103.370000px;}
.y37{bottom:1123.170000px;}
.y3{bottom:1130.760000px;}
.y36{bottom:1143.180000px;}
.y2{bottom:1161.540000px;}
.y35{bottom:1172.520000px;}
.y1{bottom:1193.040000px;}
.y34{bottom:1194.300000px;}
.h7{height:38.158594px;}
.h8{height:39.346875px;}
.hd{height:53.573906px;}
.hc{height:58.621992px;}
.h9{height:58.651172px;}
.h5{height:60.226875px;}
.hb{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.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:54.179987px;}
.xa{left:80.999987px;}
.xb{left:108.035987px;}
.x4{left:178.409987px;}
.x3{left:216.209987px;}
.x8{left:223.589987px;}
.x5{left:227.729987px;}
.x7{left:232.949987px;}
.x9{left:259.589987px;}
.x6{left:446.474987px;}
.x2{left:795.749987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.185067pt;}
.lse{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.136320pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.456533pt;}
.ls12{letter-spacing:0.544000pt;}
.ls11{letter-spacing:0.592000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls16{letter-spacing:10.192640pt;}
.ls13{letter-spacing:37.072640pt;}
.lsf{letter-spacing:70.480640pt;}
.lsa{letter-spacing:110.800640pt;}
.ls1{letter-spacing:137.040640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws9{word-spacing:-13.872000pt;}
.wsb{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-2462.982400pt;}
._9{margin-left:-1402.706133pt;}
._6{margin-left:-1247.781120pt;}
._8{margin-left:-827.527040pt;}
._d{margin-left:-641.088640pt;}
._e{margin-left:-616.065920pt;}
._18{margin-left:-529.440000pt;}
._19{margin-left:-514.671787pt;}
._a{margin-left:-511.047040pt;}
._15{margin-left:-493.168213pt;}
._1b{margin-left:-451.946667pt;}
._1c{margin-left:-450.257067pt;}
._16{margin-left:-380.545920pt;}
._14{margin-left:-282.210987pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-127.360000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._3{margin-left:-4.196480pt;}
._1f{margin-left:-3.237547pt;}
._1{margin-left:-2.174080pt;}
._4{margin-left:-1.029547pt;}
._0{width:1.213440pt;}
._2{width:2.267307pt;}
._20{width:3.515093pt;}
._24{width:4.612267pt;}
._26{width:5.790080pt;}
._22{width:7.064960pt;}
._23{width:7.984640pt;}
._25{width:9.749547pt;}
._21{width:10.783360pt;}
._29{width:11.862400pt;}
._2c{width:14.661120pt;}
._27{width:16.042240pt;}
._28{width:16.953600pt;}
._2d{width:17.966293pt;}
._2a{width:18.878720pt;}
._2b{width:19.813760pt;}
._31{width:22.775467pt;}
._30{width:23.671467pt;}
._2e{width:24.753920pt;}
._2f{width:25.973973pt;}
._1d{width:34.893227pt;}
._1e{width:36.512000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:52.672000pt;}
.y6b{bottom:81.472000pt;}
.y11f{bottom:88.832000pt;}
.y6a{bottom:99.072000pt;}
.y33{bottom:102.112000pt;}
.y78{bottom:103.552000pt;}
.y11e{bottom:106.592000pt;}
.yf7{bottom:106.912000pt;}
.y80{bottom:108.672000pt;}
.y69{bottom:116.672000pt;}
.y32{bottom:119.712000pt;}
.y77{bottom:121.152000pt;}
.y11d{bottom:124.192000pt;}
.yf6{bottom:124.512000pt;}
.y7f{bottom:126.432000pt;}
.y68{bottom:134.426667pt;}
.y31{bottom:137.306667pt;}
.y76{bottom:138.746667pt;}
.y11c{bottom:141.786667pt;}
.yf5{bottom:142.106667pt;}
.y7e{bottom:144.026667pt;}
.y67{bottom:152.026667pt;}
.y30{bottom:154.906667pt;}
.y75{bottom:156.346667pt;}
.y11b{bottom:159.386667pt;}
.yf4{bottom:159.706667pt;}
.y7d{bottom:161.626667pt;}
.yd3{bottom:168.506667pt;}
.y66{bottom:169.626667pt;}
.y2f{bottom:172.506667pt;}
.y74{bottom:174.106667pt;}
.y11a{bottom:176.986667pt;}
.yf3{bottom:177.306667pt;}
.y7c{bottom:179.226667pt;}
.yd2{bottom:186.266667pt;}
.y65{bottom:187.226667pt;}
.y2e{bottom:190.266667pt;}
.y73{bottom:191.706667pt;}
.y119{bottom:194.746667pt;}
.yf2{bottom:195.066667pt;}
.y7b{bottom:196.826667pt;}
.yd1{bottom:203.866667pt;}
.y64{bottom:204.826667pt;}
.y2d{bottom:207.866667pt;}
.y99{bottom:208.666667pt;}
.y72{bottom:209.306667pt;}
.y118{bottom:212.346667pt;}
.yf1{bottom:212.666667pt;}
.y7a{bottom:214.586667pt;}
.yd0{bottom:221.466667pt;}
.y63{bottom:222.586667pt;}
.y2c{bottom:225.466667pt;}
.y98{bottom:226.266667pt;}
.y71{bottom:226.906667pt;}
.y117{bottom:229.946667pt;}
.yf0{bottom:230.266667pt;}
.y79{bottom:232.186667pt;}
.ycf{bottom:239.066667pt;}
.y62{bottom:240.186667pt;}
.y2b{bottom:243.066667pt;}
.y97{bottom:243.866667pt;}
.y70{bottom:244.506667pt;}
.y116{bottom:247.546667pt;}
.yef{bottom:247.866667pt;}
.yce{bottom:256.706667pt;}
.y61{bottom:257.826667pt;}
.y2a{bottom:260.706667pt;}
.y96{bottom:261.506667pt;}
.y6f{bottom:262.306667pt;}
.y115{bottom:265.186667pt;}
.yee{bottom:265.506667pt;}
.ycd{bottom:274.466667pt;}
.y60{bottom:275.426667pt;}
.y29{bottom:278.466667pt;}
.y95{bottom:279.106667pt;}
.y6e{bottom:279.906667pt;}
.y114{bottom:282.946667pt;}
.yed{bottom:283.266667pt;}
.ycc{bottom:292.066667pt;}
.y5f{bottom:293.026667pt;}
.y28{bottom:296.066667pt;}
.yb5{bottom:296.226667pt;}
.y94{bottom:296.866667pt;}
.y6d{bottom:297.506667pt;}
.y113{bottom:300.546667pt;}
.yec{bottom:300.866667pt;}
.ycb{bottom:309.666667pt;}
.y5e{bottom:310.786667pt;}
.y27{bottom:313.666667pt;}
.yb4{bottom:313.826667pt;}
.y93{bottom:314.466667pt;}
.y6c{bottom:315.106667pt;}
.y112{bottom:318.146667pt;}
.yeb{bottom:318.466667pt;}
.yca{bottom:327.266667pt;}
.y5d{bottom:328.386667pt;}
.y26{bottom:331.266667pt;}
.yb3{bottom:331.426667pt;}
.y92{bottom:332.066667pt;}
.y111{bottom:335.746667pt;}
.yea{bottom:336.066667pt;}
.yc9{bottom:344.866667pt;}
.y5c{bottom:345.986667pt;}
.y25{bottom:348.866667pt;}
.yb2{bottom:349.026667pt;}
.y91{bottom:349.666667pt;}
.y110{bottom:353.346667pt;}
.ye9{bottom:353.666667pt;}
.yc8{bottom:362.626667pt;}
.y5b{bottom:363.586667pt;}
.y24{bottom:366.626667pt;}
.y90{bottom:367.266667pt;}
.y10f{bottom:370.946667pt;}
.ye8{bottom:371.426667pt;}
.yc7{bottom:380.226667pt;}
.y5a{bottom:381.186667pt;}
.y23{bottom:384.226667pt;}
.yb1{bottom:384.386667pt;}
.y8f{bottom:385.026667pt;}
.y10e{bottom:388.706667pt;}
.ye7{bottom:389.026667pt;}
.yc6{bottom:397.826667pt;}
.y59{bottom:398.946667pt;}
.y22{bottom:401.826667pt;}
.yb0{bottom:401.986667pt;}
.y8e{bottom:402.626667pt;}
.y10d{bottom:406.306667pt;}
.ye6{bottom:406.626667pt;}
.yc5{bottom:415.426667pt;}
.y58{bottom:416.546667pt;}
.y21{bottom:419.426667pt;}
.yaf{bottom:419.586667pt;}
.y8d{bottom:420.226667pt;}
.y10c{bottom:423.906667pt;}
.ye5{bottom:424.226667pt;}
.yc4{bottom:433.026667pt;}
.y57{bottom:434.146667pt;}
.y20{bottom:437.026667pt;}
.yae{bottom:437.186667pt;}
.y8c{bottom:437.826667pt;}
.y10b{bottom:441.506667pt;}
.ye4{bottom:441.826667pt;}
.yc3{bottom:450.786667pt;}
.y56{bottom:451.746667pt;}
.yad{bottom:454.786667pt;}
.y8b{bottom:455.426667pt;}
.y1f{bottom:456.706667pt;}
.y10a{bottom:459.106667pt;}
.ye3{bottom:459.586667pt;}
.yc2{bottom:468.386667pt;}
.y55{bottom:469.346667pt;}
.yac{bottom:472.546667pt;}
.y8a{bottom:473.186667pt;}
.y109{bottom:476.866667pt;}
.ye2{bottom:477.186667pt;}
.y1e{bottom:482.306667pt;}
.yc1{bottom:485.986667pt;}
.y54{bottom:487.106667pt;}
.yab{bottom:490.146667pt;}
.y89{bottom:490.786667pt;}
.y108{bottom:494.466667pt;}
.ye1{bottom:494.786667pt;}
.y1d{bottom:499.906667pt;}
.yc0{bottom:503.613333pt;}
.y53{bottom:504.733333pt;}
.yaa{bottom:507.773333pt;}
.y88{bottom:508.413333pt;}
.y107{bottom:512.093333pt;}
.ye0{bottom:512.413333pt;}
.y1c{bottom:517.693333pt;}
.ybf{bottom:521.213333pt;}
.y52{bottom:522.333333pt;}
.ya9{bottom:525.373333pt;}
.y87{bottom:526.013333pt;}
.y106{bottom:529.693333pt;}
.ydf{bottom:530.013333pt;}
.y1b{bottom:535.293333pt;}
.ybe{bottom:538.973333pt;}
.y51{bottom:539.933333pt;}
.ya8{bottom:542.973333pt;}
.y86{bottom:543.613333pt;}
.y105{bottom:547.293333pt;}
.yde{bottom:547.773333pt;}
.y1a{bottom:552.893333pt;}
.ybd{bottom:556.573333pt;}
.y50{bottom:557.533333pt;}
.ya7{bottom:560.733333pt;}
.y85{bottom:561.373333pt;}
.y104{bottom:565.053333pt;}
.ydd{bottom:565.373333pt;}
.y19{bottom:570.493333pt;}
.ybc{bottom:574.173333pt;}
.y4f{bottom:575.293333pt;}
.ya6{bottom:578.333333pt;}
.y84{bottom:578.973333pt;}
.y103{bottom:582.653333pt;}
.ydc{bottom:582.973333pt;}
.y18{bottom:588.093333pt;}
.ybb{bottom:591.773333pt;}
.y4e{bottom:592.893333pt;}
.ya5{bottom:595.933333pt;}
.y83{bottom:596.573333pt;}
.ydb{bottom:600.573333pt;}
.y17{bottom:605.853333pt;}
.yba{bottom:609.373333pt;}
.y4d{bottom:610.493333pt;}
.ya4{bottom:613.533333pt;}
.y82{bottom:614.173333pt;}
.yda{bottom:618.173333pt;}
.y16{bottom:623.453333pt;}
.yb9{bottom:627.133333pt;}
.y4c{bottom:628.093333pt;}
.ya3{bottom:631.133333pt;}
.y81{bottom:631.773333pt;}
.yd9{bottom:635.933333pt;}
.y15{bottom:641.053333pt;}
.yb8{bottom:644.733333pt;}
.y4b{bottom:645.693333pt;}
.ya2{bottom:648.893333pt;}
.yd8{bottom:653.533333pt;}
.y14{bottom:658.653333pt;}
.yb7{bottom:662.333333pt;}
.y4a{bottom:663.453333pt;}
.ya1{bottom:666.493333pt;}
.yd7{bottom:671.133333pt;}
.y13{bottom:676.253333pt;}
.yb6{bottom:679.933333pt;}
.y49{bottom:681.053333pt;}
.ya0{bottom:684.093333pt;}
.yd6{bottom:688.733333pt;}
.y12{bottom:694.013333pt;}
.y48{bottom:698.653333pt;}
.y9f{bottom:701.693333pt;}
.yd5{bottom:706.333333pt;}
.y102{bottom:708.253333pt;}
.y11{bottom:711.613333pt;}
.y47{bottom:716.253333pt;}
.y9e{bottom:719.293333pt;}
.yd4{bottom:724.093333pt;}
.y101{bottom:725.853333pt;}
.y10{bottom:729.213333pt;}
.y46{bottom:733.853333pt;}
.y9d{bottom:737.053333pt;}
.y100{bottom:743.613333pt;}
.yf{bottom:746.813333pt;}
.y45{bottom:751.613333pt;}
.y9c{bottom:754.693333pt;}
.yff{bottom:761.253333pt;}
.ye{bottom:766.533333pt;}
.y44{bottom:769.253333pt;}
.y9b{bottom:772.293333pt;}
.yfe{bottom:778.853333pt;}
.y43{bottom:786.853333pt;}
.yd{bottom:788.773333pt;}
.y9a{bottom:789.893333pt;}
.yfd{bottom:796.453333pt;}
.y42{bottom:804.453333pt;}
.yc{bottom:806.373333pt;}
.yfc{bottom:814.053333pt;}
.yb{bottom:819.973333pt;}
.y41{bottom:822.053333pt;}
.yfb{bottom:831.813333pt;}
.ya{bottom:838.853333pt;}
.y40{bottom:839.813333pt;}
.yfa{bottom:849.413333pt;}
.y3f{bottom:857.413333pt;}
.y9{bottom:859.653333pt;}
.yf9{bottom:867.013333pt;}
.y3e{bottom:875.013333pt;}
.yf8{bottom:884.613333pt;}
.y8{bottom:887.813333pt;}
.y3d{bottom:892.613333pt;}
.y3c{bottom:910.213333pt;}
.y7{bottom:916.133333pt;}
.y3b{bottom:927.973333pt;}
.y3a{bottom:945.573333pt;}
.y5{bottom:950.213333pt;}
.y39{bottom:963.173333pt;}
.y4{bottom:977.573333pt;}
.y38{bottom:980.773333pt;}
.y37{bottom:998.373333pt;}
.y3{bottom:1005.120000pt;}
.y36{bottom:1016.160000pt;}
.y2{bottom:1032.480000pt;}
.y35{bottom:1042.240000pt;}
.y1{bottom:1060.480000pt;}
.y34{bottom:1061.600000pt;}
.h7{height:33.918750pt;}
.h8{height:34.975000pt;}
.hd{height:47.621250pt;}
.hc{height:52.108438pt;}
.h9{height:52.134375pt;}
.h5{height:53.535000pt;}
.hb{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.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:48.159988pt;}
.xa{left:71.999988pt;}
.xb{left:96.031988pt;}
.x4{left:158.586655pt;}
.x3{left:192.186655pt;}
.x8{left:198.746655pt;}
.x5{left:202.426655pt;}
.x7{left:207.066655pt;}
.x9{left:230.746655pt;}
.x6{left:396.866655pt;}
.x2{left:707.333322pt;}
}




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