
    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_d29ab1e6cd0997e1eea24b0c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_49a8764c3ca796606baed9d9.woff2')format("woff");}.ff2{font-family:ff2;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: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_8a91375b2edfbbf68adaa2bf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eac617fbb81c50861568127c.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_5f2f698fb5a7ee4b70ecad8a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_2c80a14a348ea76599cd9e34.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d9a7a9c69a0eedc7d96c3be3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ca788733e1513dd9a118f69.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_a4717ee3155e2731ad4a0206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.786133;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_4ea7fd3588b1b022db2a57af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.786133;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_55bd2b85d38583a1be8b0785.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.719238;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_419c896bd84c28d8ba06429a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.719238;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_17ee3041aa05cbf23a8ec8c7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912109;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_8026f5c27963b6591fca80e7.woff2')format("woff");}.fff{font-family:fff;line-height:0.912109;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:ff10;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-3.240000px;}
.lsa{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.414600px;}
.ls12{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.034560px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.259800px;}
.lse{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:18.000000px;}
.ls11{letter-spacing:64.002720px;}
.ls5{letter-spacing:149.220000px;}
.ls1{letter-spacing:1040.760000px;}
.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:-59.866800px;}
.ws8{word-spacing:-59.760000px;}
.wsc{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.254600px;}
.wse{word-spacing:-15.840000px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.280000px;}
.wsa{word-spacing:0.000000px;}
._1a{margin-left:-7.551360px;}
._d{margin-left:-6.405840px;}
._1{margin-left:-5.016960px;}
._6{margin-left:-3.925680px;}
._2{margin-left:-2.784720px;}
._0{margin-left:-1.296000px;}
._3{width:1.135440px;}
._4{width:2.447760px;}
._5{width:3.779520px;}
._8{width:5.205600px;}
._7{width:6.636000px;}
._f{width:8.031120px;}
._15{width:9.047280px;}
._c{width:10.159200px;}
._e{width:11.688960px;}
._10{width:12.821760px;}
._12{width:13.826880px;}
._16{width:14.938560px;}
._b{width:16.332000px;}
._a{width:18.465840px;}
._9{width:19.481760px;}
._11{width:21.049920px;}
._17{width:22.057920px;}
._18{width:23.849280px;}
._13{width:25.038720px;}
._14{width:26.311440px;}
._1c{width:27.416160px;}
._1b{width:29.744400px;}
._19{width:32.722560px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:11.340000px;}
.y4{bottom:69.696000px;}
.y67{bottom:113.796000px;}
.yf5{bottom:119.916000px;}
.y37{bottom:132.876000px;}
.y66{bottom:135.576000px;}
.yf4{bottom:141.696000px;}
.ybf{bottom:151.410000px;}
.y36{bottom:154.650000px;}
.y65{bottom:157.350000px;}
.yf3{bottom:163.470000px;}
.ybe{bottom:173.190000px;}
.y35{bottom:176.430000px;}
.y64{bottom:179.130000px;}
.yf2{bottom:185.430000px;}
.ybd{bottom:194.970000px;}
.y34{bottom:198.210000px;}
.y63{bottom:201.090000px;}
.yf1{bottom:207.210000px;}
.ybc{bottom:216.750000px;}
.y33{bottom:219.990000px;}
.y62{bottom:222.870000px;}
.yf0{bottom:228.990000px;}
.ybb{bottom:238.710000px;}
.y9d{bottom:239.070000px;}
.y32{bottom:241.950000px;}
.y61{bottom:244.650000px;}
.yef{bottom:250.770000px;}
.y80{bottom:258.870000px;}
.yba{bottom:260.490000px;}
.y9c{bottom:260.850000px;}
.y31{bottom:263.730000px;}
.y60{bottom:266.430000px;}
.yee{bottom:272.550000px;}
.y7f{bottom:280.650000px;}
.yb9{bottom:282.270000px;}
.y9b{bottom:282.630000px;}
.y30{bottom:285.510000px;}
.y5f{bottom:288.210000px;}
.yed{bottom:294.510000px;}
.y7e{bottom:302.430000px;}
.yb8{bottom:304.050000px;}
.y9a{bottom:304.410000px;}
.y6f{bottom:305.130000px;}
.y2f{bottom:307.290000px;}
.yd0{bottom:307.470000px;}
.y5e{bottom:310.170000px;}
.yec{bottom:316.290000px;}
.y7d{bottom:324.210000px;}
.y2e{bottom:325.290000px;}
.yb7{bottom:326.010000px;}
.y99{bottom:326.370000px;}
.y6e{bottom:326.910000px;}
.ycf{bottom:329.250000px;}
.y5d{bottom:331.950000px;}
.yeb{bottom:338.115000px;}
.y2d{bottom:339.195000px;}
.y7c{bottom:346.215000px;}
.yb6{bottom:347.835000px;}
.y98{bottom:348.195000px;}
.y6d{bottom:348.915000px;}
.yce{bottom:351.075000px;}
.y5c{bottom:353.775000px;}
.y2c{bottom:356.835000px;}
.yea{bottom:359.895000px;}
.y7b{bottom:367.995000px;}
.yb5{bottom:369.615000px;}
.y97{bottom:369.975000px;}
.y6c{bottom:370.695000px;}
.ycd{bottom:372.855000px;}
.y5b{bottom:375.555000px;}
.y2b{bottom:378.075000px;}
.ye9{bottom:381.855000px;}
.y7a{bottom:389.775000px;}
.yb4{bottom:391.395000px;}
.y96{bottom:391.755000px;}
.y6b{bottom:392.475000px;}
.ycc{bottom:394.815000px;}
.y5a{bottom:397.515000px;}
.y2a{bottom:397.875000px;}
.ye8{bottom:403.635000px;}
.y79{bottom:411.555000px;}
.yb3{bottom:413.175000px;}
.y95{bottom:413.715000px;}
.y6a{bottom:414.255000px;}
.ycb{bottom:416.595000px;}
.y29{bottom:417.675000px;}
.y59{bottom:419.295000px;}
.ye7{bottom:425.415000px;}
.y78{bottom:433.515000px;}
.yb2{bottom:435.135000px;}
.y94{bottom:435.495000px;}
.y69{bottom:436.215000px;}
.y28{bottom:437.655000px;}
.yca{bottom:438.375000px;}
.y58{bottom:441.075000px;}
.ye6{bottom:447.195000px;}
.y77{bottom:451.695000px;}
.y68{bottom:454.395000px;}
.yb1{bottom:456.915000px;}
.y93{bottom:457.275000px;}
.y27{bottom:457.455000px;}
.yc9{bottom:460.155000px;}
.y57{bottom:462.855000px;}
.ye5{bottom:468.975000px;}
.y26{bottom:477.255000px;}
.yb0{bottom:478.695000px;}
.y92{bottom:479.055000px;}
.yc8{bottom:481.935000px;}
.y56{bottom:484.635000px;}
.ye4{bottom:490.935000px;}
.y25{bottom:497.055000px;}
.yaf{bottom:500.475000px;}
.y91{bottom:500.835000px;}
.yc7{bottom:503.895000px;}
.y55{bottom:506.595000px;}
.ye3{bottom:512.715000px;}
.y24{bottom:516.855000px;}
.yae{bottom:522.435000px;}
.y90{bottom:522.795000px;}
.yc6{bottom:525.675000px;}
.y54{bottom:528.375000px;}
.ye2{bottom:534.495000px;}
.y23{bottom:536.835000px;}
.yad{bottom:544.215000px;}
.y8f{bottom:544.575000px;}
.yc5{bottom:547.455000px;}
.y53{bottom:550.155000px;}
.ye1{bottom:556.275000px;}
.y22{bottom:556.635000px;}
.yac{bottom:565.995000px;}
.y8e{bottom:566.355000px;}
.yc4{bottom:569.235000px;}
.y52{bottom:571.935000px;}
.y21{bottom:576.435000px;}
.ye0{bottom:578.235000px;}
.yab{bottom:587.775000px;}
.y8d{bottom:588.135000px;}
.yc3{bottom:591.195000px;}
.y51{bottom:593.895000px;}
.y20{bottom:596.235000px;}
.ydf{bottom:600.015000px;}
.yaa{bottom:609.585000px;}
.y8c{bottom:609.945000px;}
.yc2{bottom:613.005000px;}
.y50{bottom:615.705000px;}
.y1f{bottom:616.065000px;}
.yde{bottom:621.825000px;}
.ya9{bottom:631.545000px;}
.y8b{bottom:631.905000px;}
.yc1{bottom:634.785000px;}
.y1e{bottom:636.045000px;}
.y4f{bottom:637.485000px;}
.ydd{bottom:643.605000px;}
.yc0{bottom:653.145000px;}
.ya8{bottom:653.325000px;}
.y8a{bottom:653.685000px;}
.y1d{bottom:655.845000px;}
.y4e{bottom:659.265000px;}
.ydc{bottom:665.385000px;}
.ya7{bottom:675.105000px;}
.y89{bottom:675.465000px;}
.y1c{bottom:675.645000px;}
.y4d{bottom:681.045000px;}
.ydb{bottom:687.345000px;}
.y1b{bottom:695.445000px;}
.ya6{bottom:696.885000px;}
.y88{bottom:697.245000px;}
.y4c{bottom:703.005000px;}
.yda{bottom:709.125000px;}
.y1a{bottom:715.245000px;}
.ya5{bottom:718.845000px;}
.y87{bottom:719.205000px;}
.y4b{bottom:724.785000px;}
.yd9{bottom:730.905000px;}
.y19{bottom:735.225000px;}
.ya4{bottom:740.625000px;}
.y86{bottom:740.985000px;}
.y76{bottom:746.205000px;}
.y4a{bottom:746.565000px;}
.yd8{bottom:752.685000px;}
.y18{bottom:755.025000px;}
.ya3{bottom:762.405000px;}
.y85{bottom:762.765000px;}
.y75{bottom:767.985000px;}
.y49{bottom:768.345000px;}
.yd7{bottom:774.645000px;}
.y17{bottom:774.825000px;}
.ya2{bottom:784.185000px;}
.y84{bottom:784.545000px;}
.y74{bottom:789.765000px;}
.y48{bottom:790.125000px;}
.y16{bottom:795.165000px;}
.yd6{bottom:796.425000px;}
.ya1{bottom:805.965000px;}
.y83{bottom:806.325000px;}
.y73{bottom:811.545000px;}
.y47{bottom:812.085000px;}
.yd5{bottom:818.205000px;}
.y15{bottom:821.625000px;}
.ya0{bottom:827.925000px;}
.y82{bottom:828.285000px;}
.y72{bottom:833.325000px;}
.y46{bottom:833.865000px;}
.yd4{bottom:839.985000px;}
.y14{bottom:841.605000px;}
.y81{bottom:846.465000px;}
.y9f{bottom:849.705000px;}
.y71{bottom:855.285000px;}
.y45{bottom:855.645000px;}
.y13{bottom:861.405000px;}
.yd3{bottom:861.765000px;}
.y9e{bottom:868.065000px;}
.y70{bottom:873.510000px;}
.y12{bottom:876.030000px;}
.y44{bottom:877.470000px;}
.yd2{bottom:883.770000px;}
.y11{bottom:895.830000px;}
.y43{bottom:899.430000px;}
.yd1{bottom:901.950000px;}
.y10{bottom:916.170000px;}
.y42{bottom:921.210000px;}
.yf{bottom:938.130000px;}
.y41{bottom:942.990000px;}
.ye{bottom:959.910000px;}
.y40{bottom:964.770000px;}
.yd{bottom:979.890000px;}
.y3f{bottom:986.550000px;}
.yc{bottom:998.790000px;}
.y3e{bottom:1008.510000px;}
.yb{bottom:1024.710000px;}
.y3d{bottom:1030.290000px;}
.ya{bottom:1050.450000px;}
.y3c{bottom:1052.070000px;}
.y9{bottom:1071.870000px;}
.y3b{bottom:1073.850000px;}
.y8{bottom:1089.150000px;}
.y3a{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.y39{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.y38{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1161.180000px;}
.y1{bottom:1178.280000px;}
.hb{height:27.147656px;}
.h2{height:31.500000px;}
.h11{height:33.683203px;}
.h8{height:34.036523px;}
.h5{height:39.760312px;}
.he{height:41.726953px;}
.h6{height:42.164648px;}
.hd{height:43.156758px;}
.h12{height:46.251562px;}
.hc{height:46.736719px;}
.ha{height:48.027656px;}
.hf{height:49.255313px;}
.h9{height:53.224453px;}
.h3{height:54.421875px;}
.h10{height:54.596250px;}
.h7{height:54.864844px;}
.h4{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.280000px;}
.x1{left:108.036000px;}
.x5{left:111.275987px;}
.x15{left:125.315987px;}
.x18{left:135.035987px;}
.x7{left:140.975987px;}
.x1e{left:150.509987px;}
.x9{left:152.309987px;}
.x3{left:161.130000px;}
.xa{left:171.749987px;}
.xb{left:192.089987px;}
.x8{left:204.149987px;}
.x6{left:206.669987px;}
.x1c{left:237.269987px;}
.x1a{left:252.569987px;}
.x13{left:258.329987px;}
.x17{left:271.109987px;}
.xc{left:273.629987px;}
.x11{left:281.054987px;}
.xf{left:361.694987px;}
.xe{left:420.734987px;}
.xd{left:422.354987px;}
.x4{left:446.474987px;}
.x1b{left:563.864987px;}
.x1d{left:571.784987px;}
.x14{left:573.584987px;}
.x19{left:575.024987px;}
.x16{left:580.964987px;}
.x10{left:583.844987px;}
.x12{left:590.504987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-2.880000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.368533pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.030720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:16.000000pt;}
.ls11{letter-spacing:56.891307pt;}
.ls5{letter-spacing:132.640000pt;}
.ls1{letter-spacing:925.120000pt;}
.ws9{word-spacing:-53.214933pt;}
.ws8{word-spacing:-53.120000pt;}
.wsc{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.360000pt;}
.wsa{word-spacing:0.000000pt;}
._1a{margin-left:-6.712320pt;}
._d{margin-left:-5.694080pt;}
._1{margin-left:-4.459520pt;}
._6{margin-left:-3.489493pt;}
._2{margin-left:-2.475307pt;}
._0{margin-left:-1.152000pt;}
._3{width:1.009280pt;}
._4{width:2.175787pt;}
._5{width:3.359573pt;}
._8{width:4.627200pt;}
._7{width:5.898667pt;}
._f{width:7.138773pt;}
._15{width:8.042027pt;}
._c{width:9.030400pt;}
._e{width:10.390187pt;}
._10{width:11.397120pt;}
._12{width:12.290560pt;}
._16{width:13.278720pt;}
._b{width:14.517333pt;}
._a{width:16.414080pt;}
._9{width:17.317120pt;}
._11{width:18.711040pt;}
._17{width:19.607040pt;}
._18{width:21.199360pt;}
._13{width:22.256640pt;}
._14{width:23.387947pt;}
._1c{width:24.369920pt;}
._1b{width:26.439467pt;}
._19{width:29.086720pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:10.080000pt;}
.y4{bottom:61.952000pt;}
.y67{bottom:101.152000pt;}
.yf5{bottom:106.592000pt;}
.y37{bottom:118.112000pt;}
.y66{bottom:120.512000pt;}
.yf4{bottom:125.952000pt;}
.ybf{bottom:134.586667pt;}
.y36{bottom:137.466667pt;}
.y65{bottom:139.866667pt;}
.yf3{bottom:145.306667pt;}
.ybe{bottom:153.946667pt;}
.y35{bottom:156.826667pt;}
.y64{bottom:159.226667pt;}
.yf2{bottom:164.826667pt;}
.ybd{bottom:173.306667pt;}
.y34{bottom:176.186667pt;}
.y63{bottom:178.746667pt;}
.yf1{bottom:184.186667pt;}
.ybc{bottom:192.666667pt;}
.y33{bottom:195.546667pt;}
.y62{bottom:198.106667pt;}
.yf0{bottom:203.546667pt;}
.ybb{bottom:212.186667pt;}
.y9d{bottom:212.506667pt;}
.y32{bottom:215.066667pt;}
.y61{bottom:217.466667pt;}
.yef{bottom:222.906667pt;}
.y80{bottom:230.106667pt;}
.yba{bottom:231.546667pt;}
.y9c{bottom:231.866667pt;}
.y31{bottom:234.426667pt;}
.y60{bottom:236.826667pt;}
.yee{bottom:242.266667pt;}
.y7f{bottom:249.466667pt;}
.yb9{bottom:250.906667pt;}
.y9b{bottom:251.226667pt;}
.y30{bottom:253.786667pt;}
.y5f{bottom:256.186667pt;}
.yed{bottom:261.786667pt;}
.y7e{bottom:268.826667pt;}
.yb8{bottom:270.266667pt;}
.y9a{bottom:270.586667pt;}
.y6f{bottom:271.226667pt;}
.y2f{bottom:273.146667pt;}
.yd0{bottom:273.306667pt;}
.y5e{bottom:275.706667pt;}
.yec{bottom:281.146667pt;}
.y7d{bottom:288.186667pt;}
.y2e{bottom:289.146667pt;}
.yb7{bottom:289.786667pt;}
.y99{bottom:290.106667pt;}
.y6e{bottom:290.586667pt;}
.ycf{bottom:292.666667pt;}
.y5d{bottom:295.066667pt;}
.yeb{bottom:300.546667pt;}
.y2d{bottom:301.506667pt;}
.y7c{bottom:307.746667pt;}
.yb6{bottom:309.186667pt;}
.y98{bottom:309.506667pt;}
.y6d{bottom:310.146667pt;}
.yce{bottom:312.066667pt;}
.y5c{bottom:314.466667pt;}
.y2c{bottom:317.186667pt;}
.yea{bottom:319.906667pt;}
.y7b{bottom:327.106667pt;}
.yb5{bottom:328.546667pt;}
.y97{bottom:328.866667pt;}
.y6c{bottom:329.506667pt;}
.ycd{bottom:331.426667pt;}
.y5b{bottom:333.826667pt;}
.y2b{bottom:336.066667pt;}
.ye9{bottom:339.426667pt;}
.y7a{bottom:346.466667pt;}
.yb4{bottom:347.906667pt;}
.y96{bottom:348.226667pt;}
.y6b{bottom:348.866667pt;}
.ycc{bottom:350.946667pt;}
.y5a{bottom:353.346667pt;}
.y2a{bottom:353.666667pt;}
.ye8{bottom:358.786667pt;}
.y79{bottom:365.826667pt;}
.yb3{bottom:367.266667pt;}
.y95{bottom:367.746667pt;}
.y6a{bottom:368.226667pt;}
.ycb{bottom:370.306667pt;}
.y29{bottom:371.266667pt;}
.y59{bottom:372.706667pt;}
.ye7{bottom:378.146667pt;}
.y78{bottom:385.346667pt;}
.yb2{bottom:386.786667pt;}
.y94{bottom:387.106667pt;}
.y69{bottom:387.746667pt;}
.y28{bottom:389.026667pt;}
.yca{bottom:389.666667pt;}
.y58{bottom:392.066667pt;}
.ye6{bottom:397.506667pt;}
.y77{bottom:401.506667pt;}
.y68{bottom:403.906667pt;}
.yb1{bottom:406.146667pt;}
.y93{bottom:406.466667pt;}
.y27{bottom:406.626667pt;}
.yc9{bottom:409.026667pt;}
.y57{bottom:411.426667pt;}
.ye5{bottom:416.866667pt;}
.y26{bottom:424.226667pt;}
.yb0{bottom:425.506667pt;}
.y92{bottom:425.826667pt;}
.yc8{bottom:428.386667pt;}
.y56{bottom:430.786667pt;}
.ye4{bottom:436.386667pt;}
.y25{bottom:441.826667pt;}
.yaf{bottom:444.866667pt;}
.y91{bottom:445.186667pt;}
.yc7{bottom:447.906667pt;}
.y55{bottom:450.306667pt;}
.ye3{bottom:455.746667pt;}
.y24{bottom:459.426667pt;}
.yae{bottom:464.386667pt;}
.y90{bottom:464.706667pt;}
.yc6{bottom:467.266667pt;}
.y54{bottom:469.666667pt;}
.ye2{bottom:475.106667pt;}
.y23{bottom:477.186667pt;}
.yad{bottom:483.746667pt;}
.y8f{bottom:484.066667pt;}
.yc5{bottom:486.626667pt;}
.y53{bottom:489.026667pt;}
.ye1{bottom:494.466667pt;}
.y22{bottom:494.786667pt;}
.yac{bottom:503.106667pt;}
.y8e{bottom:503.426667pt;}
.yc4{bottom:505.986667pt;}
.y52{bottom:508.386667pt;}
.y21{bottom:512.386667pt;}
.ye0{bottom:513.986667pt;}
.yab{bottom:522.466667pt;}
.y8d{bottom:522.786667pt;}
.yc3{bottom:525.506667pt;}
.y51{bottom:527.906667pt;}
.y20{bottom:529.986667pt;}
.ydf{bottom:533.346667pt;}
.yaa{bottom:541.853333pt;}
.y8c{bottom:542.173333pt;}
.yc2{bottom:544.893333pt;}
.y50{bottom:547.293333pt;}
.y1f{bottom:547.613333pt;}
.yde{bottom:552.733333pt;}
.ya9{bottom:561.373333pt;}
.y8b{bottom:561.693333pt;}
.yc1{bottom:564.253333pt;}
.y1e{bottom:565.373333pt;}
.y4f{bottom:566.653333pt;}
.ydd{bottom:572.093333pt;}
.yc0{bottom:580.573333pt;}
.ya8{bottom:580.733333pt;}
.y8a{bottom:581.053333pt;}
.y1d{bottom:582.973333pt;}
.y4e{bottom:586.013333pt;}
.ydc{bottom:591.453333pt;}
.ya7{bottom:600.093333pt;}
.y89{bottom:600.413333pt;}
.y1c{bottom:600.573333pt;}
.y4d{bottom:605.373333pt;}
.ydb{bottom:610.973333pt;}
.y1b{bottom:618.173333pt;}
.ya6{bottom:619.453333pt;}
.y88{bottom:619.773333pt;}
.y4c{bottom:624.893333pt;}
.yda{bottom:630.333333pt;}
.y1a{bottom:635.773333pt;}
.ya5{bottom:638.973333pt;}
.y87{bottom:639.293333pt;}
.y4b{bottom:644.253333pt;}
.yd9{bottom:649.693333pt;}
.y19{bottom:653.533333pt;}
.ya4{bottom:658.333333pt;}
.y86{bottom:658.653333pt;}
.y76{bottom:663.293333pt;}
.y4a{bottom:663.613333pt;}
.yd8{bottom:669.053333pt;}
.y18{bottom:671.133333pt;}
.ya3{bottom:677.693333pt;}
.y85{bottom:678.013333pt;}
.y75{bottom:682.653333pt;}
.y49{bottom:682.973333pt;}
.yd7{bottom:688.573333pt;}
.y17{bottom:688.733333pt;}
.ya2{bottom:697.053333pt;}
.y84{bottom:697.373333pt;}
.y74{bottom:702.013333pt;}
.y48{bottom:702.333333pt;}
.y16{bottom:706.813333pt;}
.yd6{bottom:707.933333pt;}
.ya1{bottom:716.413333pt;}
.y83{bottom:716.733333pt;}
.y73{bottom:721.373333pt;}
.y47{bottom:721.853333pt;}
.yd5{bottom:727.293333pt;}
.y15{bottom:730.333333pt;}
.ya0{bottom:735.933333pt;}
.y82{bottom:736.253333pt;}
.y72{bottom:740.733333pt;}
.y46{bottom:741.213333pt;}
.yd4{bottom:746.653333pt;}
.y14{bottom:748.093333pt;}
.y81{bottom:752.413333pt;}
.y9f{bottom:755.293333pt;}
.y71{bottom:760.253333pt;}
.y45{bottom:760.573333pt;}
.y13{bottom:765.693333pt;}
.yd3{bottom:766.013333pt;}
.y9e{bottom:771.613333pt;}
.y70{bottom:776.453333pt;}
.y12{bottom:778.693333pt;}
.y44{bottom:779.973333pt;}
.yd2{bottom:785.573333pt;}
.y11{bottom:796.293333pt;}
.y43{bottom:799.493333pt;}
.yd1{bottom:801.733333pt;}
.y10{bottom:814.373333pt;}
.y42{bottom:818.853333pt;}
.yf{bottom:833.893333pt;}
.y41{bottom:838.213333pt;}
.ye{bottom:853.253333pt;}
.y40{bottom:857.573333pt;}
.yd{bottom:871.013333pt;}
.y3f{bottom:876.933333pt;}
.yc{bottom:887.813333pt;}
.y3e{bottom:896.453333pt;}
.yb{bottom:910.853333pt;}
.y3d{bottom:915.813333pt;}
.ya{bottom:933.733333pt;}
.y3c{bottom:935.173333pt;}
.y9{bottom:952.773333pt;}
.y3b{bottom:954.533333pt;}
.y8{bottom:968.133333pt;}
.y3a{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.y39{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.y38{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1032.160000pt;}
.y1{bottom:1047.360000pt;}
.hb{height:24.131250pt;}
.h2{height:28.000000pt;}
.h11{height:29.940625pt;}
.h8{height:30.254687pt;}
.h5{height:35.342500pt;}
.he{height:37.090625pt;}
.h6{height:37.479688pt;}
.hd{height:38.361562pt;}
.h12{height:41.112500pt;}
.hc{height:41.543750pt;}
.ha{height:42.691250pt;}
.hf{height:43.782500pt;}
.h9{height:47.310625pt;}
.h3{height:48.375000pt;}
.h10{height:48.530000pt;}
.h7{height:48.768750pt;}
.h4{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.360000pt;}
.x1{left:96.032000pt;}
.x5{left:98.911988pt;}
.x15{left:111.391988pt;}
.x18{left:120.031988pt;}
.x7{left:125.311988pt;}
.x1e{left:133.786655pt;}
.x9{left:135.386655pt;}
.x3{left:143.226667pt;}
.xa{left:152.666655pt;}
.xb{left:170.746655pt;}
.x8{left:181.466655pt;}
.x6{left:183.706655pt;}
.x1c{left:210.906655pt;}
.x1a{left:224.506655pt;}
.x13{left:229.626655pt;}
.x17{left:240.986655pt;}
.xc{left:243.226655pt;}
.x11{left:249.826655pt;}
.xf{left:321.506655pt;}
.xe{left:373.986655pt;}
.xd{left:375.426655pt;}
.x4{left:396.866655pt;}
.x1b{left:501.213322pt;}
.x1d{left:508.253322pt;}
.x14{left:509.853322pt;}
.x19{left:511.133322pt;}
.x16{left:516.413322pt;}
.x10{left:518.973322pt;}
.x12{left:524.893322pt;}
}




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