
    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_dc56d6978b83c3c5fdd75751.woff')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_0fc57b212c8754fe2a45696c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_fe7ba57fa8fbd97652b67bc0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_853e37e690ea6d9a0895093b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_0a3e3c230fb5725713fcb94b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_23b945bbd0839119cb300a5a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_88c0c09eaea2bf350389abe7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.053223;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_5171e8941fa142c8f7195d91.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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_799c11b5689b03b8b5a79cee.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914551;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:ffe;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4638587fac5b416e381617c1.woff')format("woff");}.fff{font-family:fff;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls16{letter-spacing:-2.766000px;}
.ls11{letter-spacing:-2.250000px;}
.ls12{letter-spacing:-1.740000px;}
.lsb{letter-spacing:-1.482000px;}
.ls7{letter-spacing:-1.128000px;}
.ls8{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.780000px;}
.ls13{letter-spacing:-0.513000px;}
.ls14{letter-spacing:-0.256200px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.013500px;}
.ls19{letter-spacing:0.376500px;}
.ls9{letter-spacing:0.690000px;}
.ls17{letter-spacing:1.026000px;}
.lse{letter-spacing:1.482000px;}
.ls15{letter-spacing:1.740000px;}
.lsa{letter-spacing:1.746000px;}
.ls2{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.ls1b{letter-spacing:2.164500px;}
.ls1d{letter-spacing:2.190000px;}
.ls1{letter-spacing:2.250000px;}
.ls4{letter-spacing:2.322000px;}
.ls10{letter-spacing:3.315000px;}
.ls0{letter-spacing:3.375000px;}
.ls1e{letter-spacing:3.378000px;}
.ls5{letter-spacing:4.779000px;}
.lsf{letter-spacing:5.526000px;}
.ls18{letter-spacing:7.875000px;}
.ls1c{letter-spacing:15.387000px;}
.ls1a{letter-spacing:46.887000px;}
.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;}
}
.ws9{word-spacing:-20.151000px;}
.ws0{word-spacing:-16.875000px;}
.wsf{word-spacing:-16.365000px;}
.ws2{word-spacing:-16.146000px;}
.ws8{word-spacing:-16.107000px;}
.ws1{word-spacing:-15.354000px;}
.ws4{word-spacing:-14.625000px;}
.wse{word-spacing:-14.368800px;}
.wsd{word-spacing:-14.112000px;}
.ws5{word-spacing:-13.221000px;}
.wsc{word-spacing:-12.885000px;}
.wsb{word-spacing:-12.375000px;}
.ws10{word-spacing:-11.859000px;}
.ws6{word-spacing:-10.138500px;}
.ws7{word-spacing:-10.125000px;}
.ws3{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._14{margin-left:-7.290000px;}
._10{margin-left:-6.183000px;}
._e{margin-left:-5.179500px;}
._5{margin-left:-3.366000px;}
._0{margin-left:-1.755000px;}
._3{width:1.638000px;}
._2{width:2.866500px;}
._1{width:4.329000px;}
._8{width:5.476500px;}
._4{width:6.610500px;}
._6{width:7.663500px;}
._9{width:8.716500px;}
._7{width:9.919500px;}
._b{width:11.349000px;}
._a{width:12.609000px;}
._13{width:16.132500px;}
._d{width:17.140500px;}
._f{width:20.992500px;}
._c{width:22.144500px;}
._11{width:23.287500px;}
._12{width:115.678500px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:40.500000px;}
.fs4{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:61.663798px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:67.500000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:85.650000px;}
.y1a{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:3.375000px;}
.y63{bottom:3.390000px;}
.y18{bottom:4.500000px;}
.y6d{bottom:4.515000px;}
.y3c{bottom:10.125000px;}
.yd{bottom:11.295000px;}
.yb{bottom:13.500000px;}
.y1b{bottom:14.655000px;}
.y3{bottom:16.875000px;}
.y62{bottom:20.250000px;}
.y64{bottom:20.265000px;}
.y39{bottom:21.375000px;}
.y3d{bottom:21.390000px;}
.y6a{bottom:21.405000px;}
.y6c{bottom:21.420000px;}
.y3b{bottom:24.795000px;}
.y17{bottom:27.045000px;}
.y4{bottom:30.375000px;}
.ya{bottom:30.405000px;}
.y2{bottom:36.037500px;}
.y69{bottom:38.280000px;}
.y38{bottom:38.295000px;}
.y16{bottom:43.920000px;}
.y9{bottom:46.155000px;}
.y1{bottom:51.787500px;}
.y37{bottom:55.170000px;}
.y68{bottom:55.200000px;}
.y15{bottom:60.795000px;}
.y61{bottom:72.075000px;}
.y8{bottom:73.185000px;}
.y36{bottom:73.200000px;}
.y5f{bottom:73.215000px;}
.y14{bottom:76.575000px;}
.y29{bottom:79.950000px;}
.y13{bottom:87.825000px;}
.y35{bottom:90.075000px;}
.y5e{bottom:90.090000px;}
.y7{bottom:93.435000px;}
.y28{bottom:95.700000px;}
.y12{bottom:105.825000px;}
.y34{bottom:106.950000px;}
.y5d{bottom:106.995000px;}
.y6{bottom:110.355000px;}
.y27{bottom:113.700000px;}
.y11{bottom:124.995000px;}
.y51{bottom:126.112500px;}
.y26{bottom:130.620000px;}
.y84{bottom:131.737500px;}
.y33{bottom:141.870000px;}
.y50{bottom:144.112500px;}
.y83{bottom:148.612500px;}
.y25{bottom:148.620000px;}
.y10{bottom:150.900000px;}
.y32{bottom:158.775000px;}
.y4f{bottom:161.025000px;}
.y24{bottom:165.525000px;}
.yf{bottom:175.650000px;}
.y31{bottom:176.775000px;}
.y4e{bottom:177.900000px;}
.y23{bottom:183.525000px;}
.y30{bottom:193.650000px;}
.y4d{bottom:195.900000px;}
.y82{bottom:200.400000px;}
.y22{bottom:200.430000px;}
.y2f{bottom:210.555000px;}
.y4c{bottom:212.820000px;}
.y81{bottom:217.320000px;}
.y21{bottom:218.445000px;}
.y2e{bottom:228.570000px;}
.y4b{bottom:229.695000px;}
.y20{bottom:236.430000px;}
.y80{bottom:239.820000px;}
.y2d{bottom:245.475000px;}
.y4a{bottom:247.725000px;}
.y7f{bottom:252.225000px;}
.yb1{bottom:253.350000px;}
.y1f{bottom:255.600000px;}
.y2c{bottom:262.350000px;}
.y49{bottom:264.600000px;}
.y7e{bottom:269.100000px;}
.yb0{bottom:271.350000px;}
.y2b{bottom:280.350000px;}
.y48{bottom:281.475000px;}
.y1e{bottom:281.505000px;}
.y7d{bottom:287.130000px;}
.yaf{bottom:288.270000px;}
.y2a{bottom:297.255000px;}
.y1d{bottom:299.505000px;}
.y7c{bottom:304.005000px;}
.yae{bottom:305.145000px;}
.y71{bottom:313.005000px;}
.y47{bottom:316.380000px;}
.y7b{bottom:320.880000px;}
.yad{bottom:323.130000px;}
.y70{bottom:326.550000px;}
.y46{bottom:333.300000px;}
.y7a{bottom:338.925000px;}
.yac{bottom:340.050000px;}
.y45{bottom:351.300000px;}
.y79{bottom:355.800000px;}
.yab{bottom:356.925000px;}
.y44{bottom:368.205000px;}
.y78{bottom:372.720000px;}
.yaa{bottom:374.955000px;}
.y43{bottom:385.080000px;}
.y77{bottom:390.705000px;}
.ya9{bottom:391.830000px;}
.y42{bottom:403.095000px;}
.y76{bottom:407.580000px;}
.ya8{bottom:408.705000px;}
.y41{bottom:420.000000px;}
.y75{bottom:424.500000px;}
.ya7{bottom:426.750000px;}
.y40{bottom:436.875000px;}
.y74{bottom:439.125000px;}
.ya6{bottom:443.625000px;}
.y3f{bottom:454.905000px;}
.ya5{bottom:460.545000px;}
.y3a{bottom:468.405000px;}
.ya4{bottom:478.530000px;}
.ya3{bottom:495.450000px;}
.y1c{bottom:504.450000px;}
.ya2{bottom:512.325000px;}
.ya1{bottom:530.325000px;}
.ya0{bottom:547.245000px;}
.y9f{bottom:564.120000px;}
.y9e{bottom:582.150000px;}
.y9d{bottom:599.025000px;}
.y9c{bottom:615.900000px;}
.y9b{bottom:633.945000px;}
.y9a{bottom:650.820000px;}
.y99{bottom:667.725000px;}
.y98{bottom:685.725000px;}
.y6f{bottom:696.975000px;}
.y97{bottom:702.645000px;}
.y6e{bottom:710.505000px;}
.y96{bottom:719.520000px;}
.y6b{bottom:728.505000px;}
.y95{bottom:737.505000px;}
.y94{bottom:754.425000px;}
.y93{bottom:771.300000px;}
.y67{bottom:781.425000px;}
.y92{bottom:789.330000px;}
.y91{bottom:806.205000px;}
.y73{bottom:807.330000px;}
.y19{bottom:815.220000px;}
.y72{bottom:820.830000px;}
.y90{bottom:823.080000px;}
.y8f{bottom:841.125000px;}
.ye{bottom:844.500000px;}
.y66{bottom:851.250000px;}
.y8e{bottom:858.000000px;}
.y65{bottom:869.295000px;}
.y8d{bottom:874.920000px;}
.y5c{bottom:887.280000px;}
.y8c{bottom:892.920000px;}
.y8b{bottom:909.795000px;}
.y60{bottom:922.200000px;}
.y8a{bottom:926.700000px;}
.y89{bottom:944.700000px;}
.y88{bottom:961.620000px;}
.y87{bottom:978.495000px;}
.y86{bottom:996.525000px;}
.y5b{bottom:1008.900000px;}
.y85{bottom:1013.400000px;}
.y5a{bottom:1030.275000px;}
.yc{bottom:1034.775000px;}
.y59{bottom:1048.320000px;}
.y5{bottom:1060.695000px;}
.y58{bottom:1065.195000px;}
.y57{bottom:1082.100000px;}
.y56{bottom:1100.100000px;}
.y55{bottom:1116.975000px;}
.y54{bottom:1133.880000px;}
.y53{bottom:1151.880000px;}
.y52{bottom:1168.800000px;}
.h25{height:16.860000px;}
.h21{height:16.875000px;}
.h28{height:18.000000px;}
.hc{height:25.912500px;}
.h2a{height:28.298584px;}
.h16{height:29.272500px;}
.h15{height:33.543633px;}
.h14{height:33.723633px;}
.h24{height:33.787500px;}
.h13{height:35.806641px;}
.h1e{height:36.037500px;}
.h8{height:37.125000px;}
.h1d{height:40.875732px;}
.h5{height:41.275635px;}
.h3{height:41.389893px;}
.h2c{height:42.589600px;}
.hf{height:43.075195px;}
.h1c{height:43.288330px;}
.ha{height:43.875000px;}
.h29{height:46.238584px;}
.h20{height:46.298584px;}
.h1f{height:46.358584px;}
.h2b{height:46.478584px;}
.h19{height:49.234131px;}
.h2{height:49.537500px;}
.hd{height:50.625000px;}
.h1b{height:51.158936px;}
.h27{height:51.787500px;}
.h4{height:51.968611px;}
.h9{height:54.000000px;}
.h11{height:58.185791px;}
.h1a{height:59.899658px;}
.h10{height:64.237500px;}
.h12{height:64.507324px;}
.h6{height:67.137451px;}
.h26{height:68.700000px;}
.h17{height:69.114990px;}
.hb{height:71.613281px;}
.h23{height:85.575000px;}
.h22{height:120.487500px;}
.h7{height:121.612500px;}
.he{height:190.275000px;}
.h18{height:310.770000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.wf{width:72.112500px;}
.w2{width:74.362500px;}
.wa{width:99.112500px;}
.we{width:100.237500px;}
.wd{width:111.525000px;}
.w9{width:119.400000px;}
.wc{width:120.525000px;}
.w4{width:152.055000px;}
.wb{width:173.475000px;}
.w7{width:223.020000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.875000px;}
.x2{left:9.037500px;}
.x10{left:10.125000px;}
.x18{left:12.420000px;}
.x1{left:72.075000px;}
.x7{left:73.237500px;}
.x6{left:81.112487px;}
.x8{left:97.987500px;}
.x24{left:108.149987px;}
.x13{left:130.657500px;}
.x14{left:150.937500px;}
.x12{left:175.687500px;}
.x3{left:182.520000px;}
.x4{left:187.020000px;}
.x15{left:189.232500px;}
.x19{left:193.770000px;}
.x16{left:214.012500px;}
.x9{left:225.300000px;}
.xd{left:290.625000px;}
.x1a{left:294.000000px;}
.x17{left:296.250000px;}
.x11{left:321.007500px;}
.xb{left:345.780000px;}
.xc{left:364.950000px;}
.xf{left:373.957500px;}
.x1e{left:395.370000px;}
.x23{left:397.649987px;}
.x21{left:447.194987px;}
.xe{left:453.945000px;}
.x1b{left:468.600000px;}
.x1c{left:589.125000px;}
.x1d{left:709.650000px;}
.x20{left:726.569987px;}
.x22{left:732.194987px;}
.x1f{left:736.694987px;}
.x5{left:746.820000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls16{letter-spacing:-2.458667pt;}
.ls11{letter-spacing:-2.000000pt;}
.ls12{letter-spacing:-1.546667pt;}
.lsb{letter-spacing:-1.317333pt;}
.ls7{letter-spacing:-1.002667pt;}
.ls8{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls13{letter-spacing:-0.456000pt;}
.ls14{letter-spacing:-0.227733pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.012000pt;}
.ls19{letter-spacing:0.334667pt;}
.ls9{letter-spacing:0.613333pt;}
.ls17{letter-spacing:0.912000pt;}
.lse{letter-spacing:1.317333pt;}
.ls15{letter-spacing:1.546667pt;}
.lsa{letter-spacing:1.552000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls1b{letter-spacing:1.924000pt;}
.ls1d{letter-spacing:1.946667pt;}
.ls1{letter-spacing:2.000000pt;}
.ls4{letter-spacing:2.064000pt;}
.ls10{letter-spacing:2.946667pt;}
.ls0{letter-spacing:3.000000pt;}
.ls1e{letter-spacing:3.002667pt;}
.ls5{letter-spacing:4.248000pt;}
.lsf{letter-spacing:4.912000pt;}
.ls18{letter-spacing:7.000000pt;}
.ls1c{letter-spacing:13.677333pt;}
.ls1a{letter-spacing:41.677333pt;}
.ws9{word-spacing:-17.912000pt;}
.ws0{word-spacing:-15.000000pt;}
.wsf{word-spacing:-14.546667pt;}
.ws2{word-spacing:-14.352000pt;}
.ws8{word-spacing:-14.317333pt;}
.ws1{word-spacing:-13.648000pt;}
.ws4{word-spacing:-13.000000pt;}
.wse{word-spacing:-12.772267pt;}
.wsd{word-spacing:-12.544000pt;}
.ws5{word-spacing:-11.752000pt;}
.wsc{word-spacing:-11.453333pt;}
.wsb{word-spacing:-11.000000pt;}
.ws10{word-spacing:-10.541333pt;}
.ws6{word-spacing:-9.012000pt;}
.ws7{word-spacing:-9.000000pt;}
.ws3{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._14{margin-left:-6.480000pt;}
._10{margin-left:-5.496000pt;}
._e{margin-left:-4.604000pt;}
._5{margin-left:-2.992000pt;}
._0{margin-left:-1.560000pt;}
._3{width:1.456000pt;}
._2{width:2.548000pt;}
._1{width:3.848000pt;}
._8{width:4.868000pt;}
._4{width:5.876000pt;}
._6{width:6.812000pt;}
._9{width:7.748000pt;}
._7{width:8.817333pt;}
._b{width:10.088000pt;}
._a{width:11.208000pt;}
._13{width:14.340000pt;}
._d{width:15.236000pt;}
._f{width:18.660000pt;}
._c{width:19.684000pt;}
._11{width:20.700000pt;}
._12{width:102.825333pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:36.000000pt;}
.fs4{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:54.812265pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:60.000000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:76.133333pt;}
.y1a{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:3.000000pt;}
.y63{bottom:3.013333pt;}
.y18{bottom:4.000000pt;}
.y6d{bottom:4.013333pt;}
.y3c{bottom:9.000000pt;}
.yd{bottom:10.040000pt;}
.yb{bottom:12.000000pt;}
.y1b{bottom:13.026667pt;}
.y3{bottom:15.000000pt;}
.y62{bottom:18.000000pt;}
.y64{bottom:18.013333pt;}
.y39{bottom:19.000000pt;}
.y3d{bottom:19.013333pt;}
.y6a{bottom:19.026667pt;}
.y6c{bottom:19.040000pt;}
.y3b{bottom:22.040000pt;}
.y17{bottom:24.040000pt;}
.y4{bottom:27.000000pt;}
.ya{bottom:27.026667pt;}
.y2{bottom:32.033333pt;}
.y69{bottom:34.026667pt;}
.y38{bottom:34.040000pt;}
.y16{bottom:39.040000pt;}
.y9{bottom:41.026667pt;}
.y1{bottom:46.033333pt;}
.y37{bottom:49.040000pt;}
.y68{bottom:49.066667pt;}
.y15{bottom:54.040000pt;}
.y61{bottom:64.066667pt;}
.y8{bottom:65.053333pt;}
.y36{bottom:65.066667pt;}
.y5f{bottom:65.080000pt;}
.y14{bottom:68.066667pt;}
.y29{bottom:71.066667pt;}
.y13{bottom:78.066667pt;}
.y35{bottom:80.066667pt;}
.y5e{bottom:80.080000pt;}
.y7{bottom:83.053333pt;}
.y28{bottom:85.066667pt;}
.y12{bottom:94.066667pt;}
.y34{bottom:95.066667pt;}
.y5d{bottom:95.106667pt;}
.y6{bottom:98.093333pt;}
.y27{bottom:101.066667pt;}
.y11{bottom:111.106667pt;}
.y51{bottom:112.100000pt;}
.y26{bottom:116.106667pt;}
.y84{bottom:117.100000pt;}
.y33{bottom:126.106667pt;}
.y50{bottom:128.100000pt;}
.y83{bottom:132.100000pt;}
.y25{bottom:132.106667pt;}
.y10{bottom:134.133333pt;}
.y32{bottom:141.133333pt;}
.y4f{bottom:143.133333pt;}
.y24{bottom:147.133333pt;}
.yf{bottom:156.133333pt;}
.y31{bottom:157.133333pt;}
.y4e{bottom:158.133333pt;}
.y23{bottom:163.133333pt;}
.y30{bottom:172.133333pt;}
.y4d{bottom:174.133333pt;}
.y82{bottom:178.133333pt;}
.y22{bottom:178.160000pt;}
.y2f{bottom:187.160000pt;}
.y4c{bottom:189.173333pt;}
.y81{bottom:193.173333pt;}
.y21{bottom:194.173333pt;}
.y2e{bottom:203.173333pt;}
.y4b{bottom:204.173333pt;}
.y20{bottom:210.160000pt;}
.y80{bottom:213.173333pt;}
.y2d{bottom:218.200000pt;}
.y4a{bottom:220.200000pt;}
.y7f{bottom:224.200000pt;}
.yb1{bottom:225.200000pt;}
.y1f{bottom:227.200000pt;}
.y2c{bottom:233.200000pt;}
.y49{bottom:235.200000pt;}
.y7e{bottom:239.200000pt;}
.yb0{bottom:241.200000pt;}
.y2b{bottom:249.200000pt;}
.y48{bottom:250.200000pt;}
.y1e{bottom:250.226667pt;}
.y7d{bottom:255.226667pt;}
.yaf{bottom:256.240000pt;}
.y2a{bottom:264.226667pt;}
.y1d{bottom:266.226667pt;}
.y7c{bottom:270.226667pt;}
.yae{bottom:271.240000pt;}
.y71{bottom:278.226667pt;}
.y47{bottom:281.226667pt;}
.y7b{bottom:285.226667pt;}
.yad{bottom:287.226667pt;}
.y70{bottom:290.266667pt;}
.y46{bottom:296.266667pt;}
.y7a{bottom:301.266667pt;}
.yac{bottom:302.266667pt;}
.y45{bottom:312.266667pt;}
.y79{bottom:316.266667pt;}
.yab{bottom:317.266667pt;}
.y44{bottom:327.293333pt;}
.y78{bottom:331.306667pt;}
.yaa{bottom:333.293333pt;}
.y43{bottom:342.293333pt;}
.y77{bottom:347.293333pt;}
.ya9{bottom:348.293333pt;}
.y42{bottom:358.306667pt;}
.y76{bottom:362.293333pt;}
.ya8{bottom:363.293333pt;}
.y41{bottom:373.333333pt;}
.y75{bottom:377.333333pt;}
.ya7{bottom:379.333333pt;}
.y40{bottom:388.333333pt;}
.y74{bottom:390.333333pt;}
.ya6{bottom:394.333333pt;}
.y3f{bottom:404.360000pt;}
.ya5{bottom:409.373333pt;}
.y3a{bottom:416.360000pt;}
.ya4{bottom:425.360000pt;}
.ya3{bottom:440.400000pt;}
.y1c{bottom:448.400000pt;}
.ya2{bottom:455.400000pt;}
.ya1{bottom:471.400000pt;}
.ya0{bottom:486.440000pt;}
.y9f{bottom:501.440000pt;}
.y9e{bottom:517.466667pt;}
.y9d{bottom:532.466667pt;}
.y9c{bottom:547.466667pt;}
.y9b{bottom:563.506667pt;}
.y9a{bottom:578.506667pt;}
.y99{bottom:593.533333pt;}
.y98{bottom:609.533333pt;}
.y6f{bottom:619.533333pt;}
.y97{bottom:624.573333pt;}
.y6e{bottom:631.560000pt;}
.y96{bottom:639.573333pt;}
.y6b{bottom:647.560000pt;}
.y95{bottom:655.560000pt;}
.y94{bottom:670.600000pt;}
.y93{bottom:685.600000pt;}
.y67{bottom:694.600000pt;}
.y92{bottom:701.626667pt;}
.y91{bottom:716.626667pt;}
.y73{bottom:717.626667pt;}
.y19{bottom:724.640000pt;}
.y72{bottom:729.626667pt;}
.y90{bottom:731.626667pt;}
.y8f{bottom:747.666667pt;}
.ye{bottom:750.666667pt;}
.y66{bottom:756.666667pt;}
.y8e{bottom:762.666667pt;}
.y65{bottom:772.706667pt;}
.y8d{bottom:777.706667pt;}
.y5c{bottom:788.693333pt;}
.y8c{bottom:793.706667pt;}
.y8b{bottom:808.706667pt;}
.y60{bottom:819.733333pt;}
.y8a{bottom:823.733333pt;}
.y89{bottom:839.733333pt;}
.y88{bottom:854.773333pt;}
.y87{bottom:869.773333pt;}
.y86{bottom:885.800000pt;}
.y5b{bottom:896.800000pt;}
.y85{bottom:900.800000pt;}
.y5a{bottom:915.800000pt;}
.yc{bottom:919.800000pt;}
.y59{bottom:931.840000pt;}
.y5{bottom:942.840000pt;}
.y58{bottom:946.840000pt;}
.y57{bottom:961.866667pt;}
.y56{bottom:977.866667pt;}
.y55{bottom:992.866667pt;}
.y54{bottom:1007.893333pt;}
.y53{bottom:1023.893333pt;}
.y52{bottom:1038.933333pt;}
.h25{height:14.986667pt;}
.h21{height:15.000000pt;}
.h28{height:16.000000pt;}
.hc{height:23.033333pt;}
.h2a{height:25.154297pt;}
.h16{height:26.020000pt;}
.h15{height:29.816563pt;}
.h14{height:29.976563pt;}
.h24{height:30.033333pt;}
.h13{height:31.828125pt;}
.h1e{height:32.033333pt;}
.h8{height:33.000000pt;}
.h1d{height:36.333984pt;}
.h5{height:36.689453pt;}
.h3{height:36.791016pt;}
.h2c{height:37.857422pt;}
.hf{height:38.289062pt;}
.h1c{height:38.478516pt;}
.ha{height:39.000000pt;}
.h29{height:41.100964pt;}
.h20{height:41.154297pt;}
.h1f{height:41.207630pt;}
.h2b{height:41.314297pt;}
.h19{height:43.763672pt;}
.h2{height:44.033333pt;}
.hd{height:45.000000pt;}
.h1b{height:45.474609pt;}
.h27{height:46.033333pt;}
.h4{height:46.194321pt;}
.h9{height:48.000000pt;}
.h11{height:51.720703pt;}
.h1a{height:53.244141pt;}
.h10{height:57.100000pt;}
.h12{height:57.339844pt;}
.h6{height:59.677734pt;}
.h26{height:61.066667pt;}
.h17{height:61.435547pt;}
.hb{height:63.656250pt;}
.h23{height:76.066667pt;}
.h22{height:107.100000pt;}
.h7{height:108.100000pt;}
.he{height:169.133333pt;}
.h18{height:276.240000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.wf{width:64.100000pt;}
.w2{width:66.100000pt;}
.wa{width:88.100000pt;}
.we{width:89.100000pt;}
.wd{width:99.133333pt;}
.w9{width:106.133333pt;}
.wc{width:107.133333pt;}
.w4{width:135.160000pt;}
.wb{width:154.200000pt;}
.w7{width:198.240000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.000000pt;}
.x2{left:8.033333pt;}
.x10{left:9.000000pt;}
.x18{left:11.040000pt;}
.x1{left:64.066667pt;}
.x7{left:65.100000pt;}
.x6{left:72.099988pt;}
.x8{left:87.100000pt;}
.x24{left:96.133322pt;}
.x13{left:116.140000pt;}
.x14{left:134.166667pt;}
.x12{left:156.166667pt;}
.x3{left:162.240000pt;}
.x4{left:166.240000pt;}
.x15{left:168.206667pt;}
.x19{left:172.240000pt;}
.x16{left:190.233333pt;}
.x9{left:200.266667pt;}
.xd{left:258.333333pt;}
.x1a{left:261.333333pt;}
.x17{left:263.333333pt;}
.x11{left:285.340000pt;}
.xb{left:307.360000pt;}
.xc{left:324.400000pt;}
.xf{left:332.406667pt;}
.x1e{left:351.440000pt;}
.x23{left:353.466655pt;}
.x21{left:397.506655pt;}
.xe{left:403.506667pt;}
.x1b{left:416.533333pt;}
.x1c{left:523.666667pt;}
.x1d{left:630.800000pt;}
.x20{left:645.839988pt;}
.x22{left:650.839988pt;}
.x1f{left:654.839988pt;}
.x5{left:663.840000pt;}
}




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