
    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_9f4adf5f24b015b036edbf05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_a22a6fcc36af6f5992e983ec.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_eb4a8973a680d0f42d21de9f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3efbbfadf892d0c6383515b7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c48c882e2bfdfe3619110db4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bbef6b255eada3e978520d11.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_91ed13ddddb3f685a1f62e0e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d9f0e73d0f4f8e3e65d09ab6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982422;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:ffa;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:ffd;src:url('chunks/assets/font_a5fd0d492dae48698a6401ad.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.937988;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.924000px;}
.ls1a{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.014400px;}
.ls17{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.153360px;}
.lsc{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.439920px;}
.ls15{letter-spacing:0.480000px;}
.ls18{letter-spacing:3.060000px;}
.ls16{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls7{letter-spacing:64.026720px;}
.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:-19.440000px;}
.ws7{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.166000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-529.548480px;}
._13{margin-left:-528.108480px;}
._8{margin-left:-3.645360px;}
._d{margin-left:-2.412720px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._b{width:4.458000px;}
._a{width:5.564160px;}
._5{width:6.730560px;}
._4{width:7.768800px;}
._c{width:8.797440px;}
._11{width:10.316160px;}
._10{width:11.950560px;}
._14{width:12.959280px;}
._e{width:16.590960px;}
._12{width:17.614080px;}
._2d{width:19.123200px;}
._15{width:20.767200px;}
._9{width:22.350240px;}
._7{width:23.724720px;}
._6{width:24.740640px;}
._1b{width:26.127360px;}
._1a{width:27.393840px;}
._1c{width:29.727600px;}
._20{width:34.539840px;}
._21{width:35.561520px;}
._17{width:38.746080px;}
._16{width:40.039200px;}
._26{width:43.243920px;}
._27{width:44.633040px;}
._2e{width:47.888640px;}
._2f{width:49.899600px;}
._18{width:51.192000px;}
._19{width:52.245840px;}
._3b{width:53.287440px;}
._25{width:54.987120px;}
._24{width:56.271600px;}
._32{width:64.169760px;}
._f{width:65.594160px;}
._28{width:84.641040px;}
._29{width:85.794480px;}
._30{width:87.868080px;}
._31{width:89.223600px;}
._35{width:92.947680px;}
._36{width:94.219200px;}
._1e{width:97.707600px;}
._1d{width:98.783280px;}
._1f{width:100.473360px;}
._2a{width:105.526560px;}
._2b{width:106.668480px;}
._2c{width:108.378240px;}
._23{width:109.779120px;}
._22{width:110.914560px;}
._33{width:116.732160px;}
._34{width:117.769440px;}
._37{width:123.186240px;}
._38{width:124.368960px;}
._39{width:259.259760px;}
._3a{width:260.742000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs9{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.y20{bottom:5.760000px;}
.y48{bottom:10.800000px;}
.y6{bottom:14.220000px;}
.y2a{bottom:17.640000px;}
.y1f{bottom:25.560000px;}
.ya{bottom:36.720000px;}
.y29{bottom:37.440000px;}
.y46{bottom:37.800000px;}
.y1e{bottom:45.360000px;}
.y5{bottom:45.720000px;}
.y28{bottom:57.270000px;}
.y9{bottom:58.140000px;}
.y45{bottom:61.200000px;}
.y1d{bottom:65.190000px;}
.y47{bottom:73.620000px;}
.y27{bottom:77.250000px;}
.y4{bottom:77.400000px;}
.yaa{bottom:82.980000px;}
.y1c{bottom:85.170000px;}
.yc1{bottom:91.980000px;}
.y43{bottom:96.300000px;}
.y26{bottom:96.510000px;}
.ya9{bottom:102.780000px;}
.y1b{bottom:104.970000px;}
.y7d{bottom:108.540000px;}
.y3{bottom:108.930000px;}
.yc0{bottom:111.780000px;}
.y25{bottom:114.330000px;}
.y42{bottom:116.100000px;}
.ya8{bottom:122.580000px;}
.y1a{bottom:124.770000px;}
.y7c{bottom:128.340000px;}
.ybf{bottom:131.580000px;}
.y24{bottom:132.150000px;}
.y41{bottom:135.900000px;}
.y2{bottom:142.230000px;}
.ya7{bottom:142.380000px;}
.y19{bottom:144.570000px;}
.y7b{bottom:148.140000px;}
.y23{bottom:149.970000px;}
.ybe{bottom:151.380000px;}
.y40{bottom:155.730000px;}
.ya6{bottom:162.390000px;}
.y18{bottom:164.370000px;}
.y22{bottom:167.970000px;}
.y7a{bottom:168.150000px;}
.ybd{bottom:171.390000px;}
.ya5{bottom:182.190000px;}
.y17{bottom:184.350000px;}
.y3f{bottom:184.710000px;}
.y21{bottom:185.790000px;}
.y79{bottom:187.950000px;}
.ybc{bottom:191.190000px;}
.ya4{bottom:201.990000px;}
.y16{bottom:204.150000px;}
.y3e{bottom:204.510000px;}
.y78{bottom:207.750000px;}
.ybb{bottom:210.990000px;}
.ya3{bottom:221.790000px;}
.y15{bottom:223.950000px;}
.y3d{bottom:224.310000px;}
.y77{bottom:227.550000px;}
.yba{bottom:230.790000px;}
.ya2{bottom:241.590000px;}
.y3c{bottom:244.110000px;}
.y76{bottom:247.350000px;}
.yb9{bottom:250.590000px;}
.ya1{bottom:261.570000px;}
.y3b{bottom:263.910000px;}
.y75{bottom:267.330000px;}
.yb8{bottom:270.570000px;}
.ya0{bottom:281.370000px;}
.y3a{bottom:283.890000px;}
.y74{bottom:287.130000px;}
.yb7{bottom:290.370000px;}
.y9f{bottom:301.170000px;}
.y39{bottom:303.690000px;}
.y73{bottom:306.930000px;}
.yb6{bottom:310.170000px;}
.y9e{bottom:320.970000px;}
.y38{bottom:323.490000px;}
.y72{bottom:326.730000px;}
.yb5{bottom:329.970000px;}
.y9d{bottom:340.770000px;}
.y37{bottom:343.290000px;}
.y71{bottom:346.530000px;}
.yb4{bottom:349.770000px;}
.y9c{bottom:360.750000px;}
.y36{bottom:363.090000px;}
.y70{bottom:366.510000px;}
.yb3{bottom:369.750000px;}
.y9b{bottom:380.550000px;}
.y35{bottom:383.070000px;}
.y6f{bottom:386.310000px;}
.yb2{bottom:389.550000px;}
.yb1{bottom:400.350000px;}
.y34{bottom:402.915000px;}
.y6e{bottom:406.155000px;}
.y9a{bottom:409.395000px;}
.yb0{bottom:420.195000px;}
.y33{bottom:422.715000px;}
.y6d{bottom:425.955000px;}
.y99{bottom:429.195000px;}
.yaf{bottom:439.995000px;}
.y32{bottom:442.515000px;}
.y6c{bottom:445.755000px;}
.y98{bottom:448.995000px;}
.yae{bottom:459.975000px;}
.y31{bottom:462.315000px;}
.y6b{bottom:465.735000px;}
.y97{bottom:468.975000px;}
.yad{bottom:479.775000px;}
.y30{bottom:482.295000px;}
.y6a{bottom:485.535000px;}
.y96{bottom:488.775000px;}
.yac{bottom:499.575000px;}
.y2f{bottom:502.095000px;}
.y69{bottom:505.335000px;}
.y95{bottom:508.575000px;}
.yab{bottom:519.375000px;}
.y2e{bottom:521.895000px;}
.y68{bottom:525.135000px;}
.y94{bottom:528.375000px;}
.y2d{bottom:541.695000px;}
.y67{bottom:544.935000px;}
.y93{bottom:548.175000px;}
.y2c{bottom:561.495000px;}
.y66{bottom:564.915000px;}
.y92{bottom:568.155000px;}
.y2b{bottom:581.475000px;}
.y65{bottom:584.715000px;}
.y91{bottom:587.955000px;}
.y14{bottom:596.235000px;}
.y64{bottom:604.515000px;}
.y90{bottom:607.755000px;}
.y63{bottom:624.315000px;}
.y8f{bottom:627.555000px;}
.y62{bottom:644.115000px;}
.y8e{bottom:647.355000px;}
.y61{bottom:664.125000px;}
.y8d{bottom:667.365000px;}
.y60{bottom:683.925000px;}
.y8c{bottom:687.165000px;}
.y5f{bottom:703.725000px;}
.y8b{bottom:706.965000px;}
.y5e{bottom:723.525000px;}
.y8a{bottom:726.765000px;}
.y5d{bottom:743.325000px;}
.y89{bottom:746.565000px;}
.y5c{bottom:763.305000px;}
.y88{bottom:766.545000px;}
.y5b{bottom:783.105000px;}
.y87{bottom:786.345000px;}
.y5a{bottom:802.905000px;}
.y86{bottom:806.145000px;}
.y59{bottom:822.705000px;}
.y85{bottom:825.945000px;}
.y58{bottom:842.505000px;}
.y13{bottom:843.765000px;}
.y84{bottom:845.745000px;}
.y57{bottom:862.485000px;}
.y12{bottom:863.565000px;}
.y83{bottom:865.725000px;}
.y56{bottom:882.285000px;}
.y82{bottom:885.525000px;}
.y11{bottom:888.765000px;}
.y55{bottom:902.130000px;}
.y10{bottom:903.390000px;}
.y81{bottom:905.370000px;}
.y54{bottom:921.930000px;}
.yf{bottom:923.190000px;}
.y80{bottom:925.170000px;}
.y53{bottom:942.810000px;}
.y7f{bottom:944.970000px;}
.ye{bottom:948.210000px;}
.yd{bottom:963.330000px;}
.y52{bottom:963.870000px;}
.y7e{bottom:964.950000px;}
.yc{bottom:984.750000px;}
.y51{bottom:1004.550000px;}
.yb{bottom:1006.890000px;}
.y50{bottom:1024.350000px;}
.y8{bottom:1031.370000px;}
.y4f{bottom:1044.150000px;}
.y1{bottom:1049.190000px;}
.y4e{bottom:1064.130000px;}
.y4d{bottom:1083.930000px;}
.y4c{bottom:1103.730000px;}
.y4b{bottom:1123.530000px;}
.y4a{bottom:1143.330000px;}
.y49{bottom:1163.340000px;}
.y44{bottom:1193.760000px;}
.h5{height:2.581875px;}
.hb{height:34.855313px;}
.hf{height:38.100586px;}
.he{height:42.164648px;}
.h14{height:43.156758px;}
.h10{height:48.410156px;}
.h4{height:48.774375px;}
.hc{height:49.255313px;}
.h11{height:52.312500px;}
.ha{height:53.224453px;}
.h9{height:53.573906px;}
.h3{height:57.256875px;}
.h7{height:59.383125px;}
.h8{height:59.436914px;}
.h6{height:71.613281px;}
.h13{height:111.043828px;}
.h2{height:162.750000px;}
.hd{height:237.990000px;}
.h12{height:268.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:39.780000px;}
.w3{width:147.456000px;}
.w6{width:217.875000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.840000px;}
.x2{left:8.100000px;}
.x8{left:12.825000px;}
.xb{left:31.860000px;}
.x1{left:54.000000px;}
.x6{left:55.800000px;}
.xc{left:80.999987px;}
.xd{left:108.035987px;}
.x4{left:139.350000px;}
.x9{left:321.374987px;}
.x5{left:384.734987px;}
.x7{left:619.485000px;}
.x3{left:687.930000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.821333pt;}
.ls1a{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.012800pt;}
.ls17{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.136320pt;}
.lsc{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.391040pt;}
.ls15{letter-spacing:0.426667pt;}
.ls18{letter-spacing:2.720000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls7{letter-spacing:56.912640pt;}
.ws0{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.592000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-470.709760pt;}
._13{margin-left:-469.429760pt;}
._8{margin-left:-3.240320pt;}
._d{margin-left:-2.144640pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._b{width:3.962667pt;}
._a{width:4.945920pt;}
._5{width:5.982720pt;}
._4{width:6.905600pt;}
._c{width:7.819947pt;}
._11{width:9.169920pt;}
._10{width:10.622720pt;}
._14{width:11.519360pt;}
._e{width:14.747520pt;}
._12{width:15.656960pt;}
._2d{width:16.998400pt;}
._15{width:18.459733pt;}
._9{width:19.866880pt;}
._7{width:21.088640pt;}
._6{width:21.991680pt;}
._1b{width:23.224320pt;}
._1a{width:24.350080pt;}
._1c{width:26.424533pt;}
._20{width:30.702080pt;}
._21{width:31.610240pt;}
._17{width:34.440960pt;}
._16{width:35.590400pt;}
._26{width:38.439040pt;}
._27{width:39.673813pt;}
._2e{width:42.567680pt;}
._2f{width:44.355200pt;}
._18{width:45.504000pt;}
._19{width:46.440747pt;}
._3b{width:47.366613pt;}
._25{width:48.877440pt;}
._24{width:50.019200pt;}
._32{width:57.039787pt;}
._f{width:58.305920pt;}
._28{width:75.236480pt;}
._29{width:76.261760pt;}
._30{width:78.104960pt;}
._31{width:79.309867pt;}
._35{width:82.620160pt;}
._36{width:83.750400pt;}
._1e{width:86.851200pt;}
._1d{width:87.807360pt;}
._1f{width:89.309653pt;}
._2a{width:93.801387pt;}
._2b{width:94.816427pt;}
._2c{width:96.336213pt;}
._23{width:97.581440pt;}
._22{width:98.590720pt;}
._33{width:103.761920pt;}
._34{width:104.683947pt;}
._37{width:109.498880pt;}
._38{width:110.550187pt;}
._39{width:230.453120pt;}
._3a{width:231.770667pt;}
.fs2{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.y20{bottom:5.120000pt;}
.y48{bottom:9.600000pt;}
.y6{bottom:12.640000pt;}
.y2a{bottom:15.680000pt;}
.y1f{bottom:22.720000pt;}
.ya{bottom:32.640000pt;}
.y29{bottom:33.280000pt;}
.y46{bottom:33.600000pt;}
.y1e{bottom:40.320000pt;}
.y5{bottom:40.640000pt;}
.y28{bottom:50.906667pt;}
.y9{bottom:51.680000pt;}
.y45{bottom:54.400000pt;}
.y1d{bottom:57.946667pt;}
.y47{bottom:65.440000pt;}
.y27{bottom:68.666667pt;}
.y4{bottom:68.800000pt;}
.yaa{bottom:73.760000pt;}
.y1c{bottom:75.706667pt;}
.yc1{bottom:81.760000pt;}
.y43{bottom:85.600000pt;}
.y26{bottom:85.786667pt;}
.ya9{bottom:91.360000pt;}
.y1b{bottom:93.306667pt;}
.y7d{bottom:96.480000pt;}
.y3{bottom:96.826667pt;}
.yc0{bottom:99.360000pt;}
.y25{bottom:101.626667pt;}
.y42{bottom:103.200000pt;}
.ya8{bottom:108.960000pt;}
.y1a{bottom:110.906667pt;}
.y7c{bottom:114.080000pt;}
.ybf{bottom:116.960000pt;}
.y24{bottom:117.466667pt;}
.y41{bottom:120.800000pt;}
.y2{bottom:126.426667pt;}
.ya7{bottom:126.560000pt;}
.y19{bottom:128.506667pt;}
.y7b{bottom:131.680000pt;}
.y23{bottom:133.306667pt;}
.ybe{bottom:134.560000pt;}
.y40{bottom:138.426667pt;}
.ya6{bottom:144.346667pt;}
.y18{bottom:146.106667pt;}
.y22{bottom:149.306667pt;}
.y7a{bottom:149.466667pt;}
.ybd{bottom:152.346667pt;}
.ya5{bottom:161.946667pt;}
.y17{bottom:163.866667pt;}
.y3f{bottom:164.186667pt;}
.y21{bottom:165.146667pt;}
.y79{bottom:167.066667pt;}
.ybc{bottom:169.946667pt;}
.ya4{bottom:179.546667pt;}
.y16{bottom:181.466667pt;}
.y3e{bottom:181.786667pt;}
.y78{bottom:184.666667pt;}
.ybb{bottom:187.546667pt;}
.ya3{bottom:197.146667pt;}
.y15{bottom:199.066667pt;}
.y3d{bottom:199.386667pt;}
.y77{bottom:202.266667pt;}
.yba{bottom:205.146667pt;}
.ya2{bottom:214.746667pt;}
.y3c{bottom:216.986667pt;}
.y76{bottom:219.866667pt;}
.yb9{bottom:222.746667pt;}
.ya1{bottom:232.506667pt;}
.y3b{bottom:234.586667pt;}
.y75{bottom:237.626667pt;}
.yb8{bottom:240.506667pt;}
.ya0{bottom:250.106667pt;}
.y3a{bottom:252.346667pt;}
.y74{bottom:255.226667pt;}
.yb7{bottom:258.106667pt;}
.y9f{bottom:267.706667pt;}
.y39{bottom:269.946667pt;}
.y73{bottom:272.826667pt;}
.yb6{bottom:275.706667pt;}
.y9e{bottom:285.306667pt;}
.y38{bottom:287.546667pt;}
.y72{bottom:290.426667pt;}
.yb5{bottom:293.306667pt;}
.y9d{bottom:302.906667pt;}
.y37{bottom:305.146667pt;}
.y71{bottom:308.026667pt;}
.yb4{bottom:310.906667pt;}
.y9c{bottom:320.666667pt;}
.y36{bottom:322.746667pt;}
.y70{bottom:325.786667pt;}
.yb3{bottom:328.666667pt;}
.y9b{bottom:338.266667pt;}
.y35{bottom:340.506667pt;}
.y6f{bottom:343.386667pt;}
.yb2{bottom:346.266667pt;}
.yb1{bottom:355.866667pt;}
.y34{bottom:358.146667pt;}
.y6e{bottom:361.026667pt;}
.y9a{bottom:363.906667pt;}
.yb0{bottom:373.506667pt;}
.y33{bottom:375.746667pt;}
.y6d{bottom:378.626667pt;}
.y99{bottom:381.506667pt;}
.yaf{bottom:391.106667pt;}
.y32{bottom:393.346667pt;}
.y6c{bottom:396.226667pt;}
.y98{bottom:399.106667pt;}
.yae{bottom:408.866667pt;}
.y31{bottom:410.946667pt;}
.y6b{bottom:413.986667pt;}
.y97{bottom:416.866667pt;}
.yad{bottom:426.466667pt;}
.y30{bottom:428.706667pt;}
.y6a{bottom:431.586667pt;}
.y96{bottom:434.466667pt;}
.yac{bottom:444.066667pt;}
.y2f{bottom:446.306667pt;}
.y69{bottom:449.186667pt;}
.y95{bottom:452.066667pt;}
.yab{bottom:461.666667pt;}
.y2e{bottom:463.906667pt;}
.y68{bottom:466.786667pt;}
.y94{bottom:469.666667pt;}
.y2d{bottom:481.506667pt;}
.y67{bottom:484.386667pt;}
.y93{bottom:487.266667pt;}
.y2c{bottom:499.106667pt;}
.y66{bottom:502.146667pt;}
.y92{bottom:505.026667pt;}
.y2b{bottom:516.866667pt;}
.y65{bottom:519.746667pt;}
.y91{bottom:522.626667pt;}
.y14{bottom:529.986667pt;}
.y64{bottom:537.346667pt;}
.y90{bottom:540.226667pt;}
.y63{bottom:554.946667pt;}
.y8f{bottom:557.826667pt;}
.y62{bottom:572.546667pt;}
.y8e{bottom:575.426667pt;}
.y61{bottom:590.333333pt;}
.y8d{bottom:593.213333pt;}
.y60{bottom:607.933333pt;}
.y8c{bottom:610.813333pt;}
.y5f{bottom:625.533333pt;}
.y8b{bottom:628.413333pt;}
.y5e{bottom:643.133333pt;}
.y8a{bottom:646.013333pt;}
.y5d{bottom:660.733333pt;}
.y89{bottom:663.613333pt;}
.y5c{bottom:678.493333pt;}
.y88{bottom:681.373333pt;}
.y5b{bottom:696.093333pt;}
.y87{bottom:698.973333pt;}
.y5a{bottom:713.693333pt;}
.y86{bottom:716.573333pt;}
.y59{bottom:731.293333pt;}
.y85{bottom:734.173333pt;}
.y58{bottom:748.893333pt;}
.y13{bottom:750.013333pt;}
.y84{bottom:751.773333pt;}
.y57{bottom:766.653333pt;}
.y12{bottom:767.613333pt;}
.y83{bottom:769.533333pt;}
.y56{bottom:784.253333pt;}
.y82{bottom:787.133333pt;}
.y11{bottom:790.013333pt;}
.y55{bottom:801.893333pt;}
.y10{bottom:803.013333pt;}
.y81{bottom:804.773333pt;}
.y54{bottom:819.493333pt;}
.yf{bottom:820.613333pt;}
.y80{bottom:822.373333pt;}
.y53{bottom:838.053333pt;}
.y7f{bottom:839.973333pt;}
.ye{bottom:842.853333pt;}
.yd{bottom:856.293333pt;}
.y52{bottom:856.773333pt;}
.y7e{bottom:857.733333pt;}
.yc{bottom:875.333333pt;}
.y51{bottom:892.933333pt;}
.yb{bottom:895.013333pt;}
.y50{bottom:910.533333pt;}
.y8{bottom:916.773333pt;}
.y4f{bottom:928.133333pt;}
.y1{bottom:932.613333pt;}
.y4e{bottom:945.893333pt;}
.y4d{bottom:963.493333pt;}
.y4c{bottom:981.093333pt;}
.y4b{bottom:998.693333pt;}
.y4a{bottom:1016.293333pt;}
.y49{bottom:1034.080000pt;}
.y44{bottom:1061.120000pt;}
.h5{height:2.295000pt;}
.hb{height:30.982500pt;}
.hf{height:33.867188pt;}
.he{height:37.479688pt;}
.h14{height:38.361562pt;}
.h10{height:43.031250pt;}
.h4{height:43.355000pt;}
.hc{height:43.782500pt;}
.h11{height:46.500000pt;}
.ha{height:47.310625pt;}
.h9{height:47.621250pt;}
.h3{height:50.895000pt;}
.h7{height:52.785000pt;}
.h8{height:52.832812pt;}
.h6{height:63.656250pt;}
.h13{height:98.705625pt;}
.h2{height:144.666667pt;}
.hd{height:211.546667pt;}
.h12{height:238.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:35.360000pt;}
.w3{width:131.072000pt;}
.w6{width:193.666667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.080000pt;}
.x2{left:7.200000pt;}
.x8{left:11.400000pt;}
.xb{left:28.320000pt;}
.x1{left:48.000000pt;}
.x6{left:49.600000pt;}
.xc{left:71.999988pt;}
.xd{left:96.031988pt;}
.x4{left:123.866667pt;}
.x9{left:285.666655pt;}
.x5{left:341.986655pt;}
.x7{left:550.653333pt;}
.x3{left:611.493333pt;}
}




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