
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6def809b9d6cd05186a03ebe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5c8dcb4ba3275e6b0b60703a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_38866c517e70a0a391c5bb4a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0a5ef82de7b6ee4b24a403e6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ca5ba3244850dbe0e47905c8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_295a09c9cfe86fe25a217324.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls12{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.057000px;}
.ls19{letter-spacing:-0.009000px;}
.lsb{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.098400px;}
.ls10{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls9{letter-spacing:0.175800px;}
.ls16{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls17{letter-spacing:47.726640px;}
.ls14{letter-spacing:63.566640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.342200px;}
.wsb{word-spacing:-13.324800px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.217400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._9{margin-left:-3.245472px;}
._1{margin-left:-2.180964px;}
._0{margin-left:-1.110000px;}
._2{width:1.026539px;}
._3{width:2.186496px;}
._7{width:3.847200px;}
._c{width:5.651280px;}
._d{width:6.973920px;}
._4{width:8.364960px;}
._8{width:9.490440px;}
._43{width:10.821600px;}
._a{width:11.843640px;}
._5{width:14.958600px;}
._6{width:16.033803px;}
._15{width:17.315805px;}
._20{width:18.456840px;}
._3f{width:19.539000px;}
._13{width:20.621160px;}
._42{width:22.424760px;}
._b{width:23.567040px;}
._26{width:24.889680px;}
._3b{width:25.911720px;}
._10{width:27.114120px;}
._34{width:28.677240px;}
._35{width:30.360600px;}
._40{width:33.607080px;}
._e{width:34.689240px;}
._2e{width:36.913680px;}
._30{width:38.836080px;}
._17{width:40.821480px;}
._1a{width:43.466760px;}
._19{width:48.216240px;}
._2d{width:50.621040px;}
._24{width:52.124040px;}
._2b{width:53.687160px;}
._23{width:55.069920px;}
._18{width:56.392560px;}
._37{width:59.699160px;}
._31{width:62.765280px;}
._41{width:65.794440px;}
._25{width:69.498720px;}
._12{width:70.701120px;}
._11{width:71.783280px;}
._22{width:73.887480px;}
._f{width:76.051800px;}
._27{width:79.418520px;}
._1f{width:82.244160px;}
._3e{width:84.889440px;}
._16{width:87.234120px;}
._28{width:88.977600px;}
._21{width:94.087800px;}
._2f{width:100.580760px;}
._3d{width:109.507680px;}
._2a{width:114.949440px;}
._2c{width:120.540600px;}
._1d{width:122.765040px;}
._3a{width:131.422320px;}
._3c{width:133.767000px;}
._36{width:141.820560px;}
._14{width:162.083520px;}
._39{width:168.937200px;}
._1e{width:179.698680px;}
._29{width:182.404080px;}
._1b{width:196.412040px;}
._1c{width:199.357920px;}
._32{width:202.363920px;}
._33{width:217.153440px;}
._38{width:241.922880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:7.830000px;}
.y90{bottom:7.860000px;}
.y49{bottom:7.920000px;}
.y4e{bottom:25.380000px;}
.y48{bottom:25.470000px;}
.y8f{bottom:25.500000px;}
.y73{bottom:43.020000px;}
.y8e{bottom:43.050000px;}
.y7e{bottom:43.110000px;}
.y81{bottom:60.570000px;}
.y7d{bottom:60.660000px;}
.y79{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y7c{bottom:78.210000px;}
.y78{bottom:78.240000px;}
.y80{bottom:95.760000px;}
.y85{bottom:95.790000px;}
.y7b{bottom:95.850000px;}
.y77{bottom:95.880000px;}
.y1{bottom:101.640000px;}
.y76{bottom:113.430000px;}
.y5e{bottom:115.500000px;}
.y82{bottom:118.830000px;}
.y75{bottom:130.980000px;}
.y5d{bottom:133.140000px;}
.y52{bottom:136.650000px;}
.y9e{bottom:144.300000px;}
.y5c{bottom:150.690000px;}
.y9d{bottom:161.850000px;}
.y5b{bottom:168.330000px;}
.y25{bottom:173.730000px;}
.yc1{bottom:177.330000px;}
.y9c{bottom:179.490000px;}
.y7f{bottom:181.380000px;}
.y51{bottom:181.650000px;}
.y5a{bottom:185.880000px;}
.y24{bottom:191.280000px;}
.yc0{bottom:194.880000px;}
.y23{bottom:208.920000px;}
.ybf{bottom:212.430000px;}
.y9b{bottom:215.040000px;}
.y59{bottom:221.430000px;}
.y22{bottom:226.470000px;}
.y50{bottom:226.560000px;}
.yea{bottom:229.080000px;}
.ybe{bottom:230.070000px;}
.y9a{bottom:232.680000px;}
.y21{bottom:244.020000px;}
.ye9{bottom:246.630000px;}
.ybd{bottom:247.620000px;}
.y99{bottom:250.230000px;}
.y58{bottom:253.650000px;}
.y4f{bottom:253.830000px;}
.y20{bottom:261.660000px;}
.y98{bottom:267.780000px;}
.ye8{bottom:273.180000px;}
.ybc{bottom:274.530000px;}
.y1f{bottom:279.210000px;}
.y97{bottom:285.420000px;}
.ye7{bottom:290.820000px;}
.y7a{bottom:296.580000px;}
.y4d{bottom:298.830000px;}
.y96{bottom:302.970000px;}
.y1e{bottom:306.120000px;}
.ye6{bottom:308.370000px;}
.y95{bottom:320.610000px;}
.ybb{bottom:322.770000px;}
.ye5{bottom:335.010000px;}
.yba{bottom:341.220000px;}
.y4b{bottom:343.740000px;}
.ye4{bottom:352.560000px;}
.y1d{bottom:354.720000px;}
.y94{bottom:356.160000px;}
.yb9{bottom:359.580000px;}
.y4a{bottom:371.010000px;}
.y93{bottom:373.710000px;}
.yb8{bottom:378.030000px;}
.ye3{bottom:379.110000px;}
.y92{bottom:391.350000px;}
.y1c{bottom:391.800000px;}
.yb7{bottom:396.480000px;}
.ye2{bottom:396.750000px;}
.y47{bottom:398.370000px;}
.y1b{bottom:409.350000px;}
.y74{bottom:411.870000px;}
.ye1{bottom:414.300000px;}
.yb6{bottom:414.840000px;}
.y91{bottom:418.260000px;}
.y1a{bottom:426.900000px;}
.yb5{bottom:433.290000px;}
.ye0{bottom:440.940000px;}
.y19{bottom:444.540000px;}
.yb4{bottom:451.650000px;}
.ydf{bottom:458.490000px;}
.y18{bottom:462.090000px;}
.y8d{bottom:463.890000px;}
.y46{bottom:464.700000px;}
.yb3{bottom:470.130000px;}
.yde{bottom:476.070000px;}
.yb2{bottom:488.490000px;}
.y17{bottom:497.670000px;}
.y45{bottom:500.280000px;}
.ydd{bottom:502.710000px;}
.yb1{bottom:506.940000px;}
.y16{bottom:515.310000px;}
.y44{bottom:517.830000px;}
.ydc{bottom:520.260000px;}
.yb0{bottom:525.390000px;}
.y8c{bottom:526.470000px;}
.y15{bottom:532.860000px;}
.y43{bottom:535.470000px;}
.ydb{bottom:537.900000px;}
.yaf{bottom:543.750000px;}
.y14{bottom:550.500000px;}
.y42{bottom:553.020000px;}
.yae{bottom:562.200000px;}
.y72{bottom:562.380000px;}
.yda{bottom:564.450000px;}
.y13{bottom:568.050000px;}
.y41{bottom:570.660000px;}
.yad{bottom:580.560000px;}
.yd9{bottom:582.000000px;}
.y12{bottom:585.600000px;}
.y40{bottom:588.210000px;}
.y8b{bottom:588.930000px;}
.yac{bottom:599.010000px;}
.y3f{bottom:605.760000px;}
.yd8{bottom:608.640000px;}
.y11{bottom:621.240000px;}
.yd7{bottom:626.190000px;}
.yab{bottom:626.820000px;}
.y10{bottom:638.790000px;}
.y3e{bottom:641.400000px;}
.yd6{bottom:643.830000px;}
.y71{bottom:646.260000px;}
.yf{bottom:656.430000px;}
.y3d{bottom:658.950000px;}
.yd5{bottom:661.380000px;}
.yaa{bottom:663.810000px;}
.y8a{bottom:669.030000px;}
.ya9{bottom:681.360000px;}
.y70{bottom:681.810000px;}
.ye{bottom:683.340000px;}
.yd4{bottom:687.930000px;}
.y3c{bottom:694.590000px;}
.ya8{bottom:699.000000px;}
.y6f{bottom:699.360000px;}
.yd3{bottom:705.570000px;}
.y3b{bottom:712.140000px;}
.ya7{bottom:716.550000px;}
.y6e{bottom:717.000000px;}
.yd2{bottom:723.120000px;}
.y3a{bottom:729.690000px;}
.yd{bottom:731.580000px;}
.ya6{bottom:734.190000px;}
.y6d{bottom:734.550000px;}
.y39{bottom:747.330000px;}
.y89{bottom:749.130000px;}
.yd1{bottom:749.670000px;}
.y6c{bottom:752.190000px;}
.yc{bottom:767.130000px;}
.yd0{bottom:767.310000px;}
.y6b{bottom:769.740000px;}
.y38{bottom:782.880000px;}
.y6a{bottom:787.290000px;}
.ycf{bottom:793.860000px;}
.y37{bottom:800.520000px;}
.yb{bottom:802.950000px;}
.y69{bottom:804.930000px;}
.yce{bottom:811.500000px;}
.y88{bottom:811.590000px;}
.y36{bottom:818.070000px;}
.ya5{bottom:822.480000px;}
.y35{bottom:835.620000px;}
.ycd{bottom:838.050000px;}
.ya{bottom:838.950000px;}
.ya4{bottom:840.030000px;}
.y68{bottom:840.480000px;}
.y34{bottom:853.260000px;}
.ycc{bottom:855.600000px;}
.ya3{bottom:857.670000px;}
.y67{bottom:858.030000px;}
.y9{bottom:860.730000px;}
.y66{bottom:875.670000px;}
.y8{bottom:878.730000px;}
.ycb{bottom:882.240000px;}
.y33{bottom:888.810000px;}
.y7{bottom:892.950000px;}
.y65{bottom:893.220000px;}
.y87{bottom:895.470000px;}
.yca{bottom:899.790000px;}
.y32{bottom:906.450000px;}
.y64{bottom:910.860000px;}
.y6{bottom:914.730000px;}
.yc9{bottom:917.430000px;}
.y31{bottom:924.000000px;}
.y63{bottom:928.410000px;}
.y86{bottom:931.110000px;}
.y30{bottom:941.550000px;}
.yc8{bottom:943.980000px;}
.ya2{bottom:945.960000px;}
.y84{bottom:946.050000px;}
.y5{bottom:947.040000px;}
.yc7{bottom:961.530000px;}
.ya1{bottom:963.600000px;}
.y62{bottom:963.960000px;}
.y2f{bottom:968.460000px;}
.ya0{bottom:981.150000px;}
.y61{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.yc6{bottom:988.170000px;}
.y60{bottom:999.150000px;}
.y57{bottom:1001.850000px;}
.y3{bottom:1010.070000px;}
.yc5{bottom:1015.110000px;}
.y2e{bottom:1016.820000px;}
.y56{bottom:1019.430000px;}
.y2d{bottom:1034.370000px;}
.y55{bottom:1037.070000px;}
.y2c{bottom:1051.920000px;}
.yc4{bottom:1063.350000px;}
.y54{bottom:1063.980000px;}
.y5f{bottom:1069.560000px;}
.y9f{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.yc3{bottom:1090.260000px;}
.y83{bottom:1096.470000px;}
.y2a{bottom:1105.110000px;}
.y53{bottom:1109.610000px;}
.y29{bottom:1122.750000px;}
.yc2{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.he{height:44.100000px;}
.hb{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h13{height:57.330000px;}
.hf{height:61.740000px;}
.h16{height:61.770000px;}
.h17{height:61.793886px;}
.h14{height:61.830000px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h15{height:79.380000px;}
.h12{height:114.480000px;}
.h11{height:114.570000px;}
.h10{height:149.700000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:81.630000px;}
.w11{width:84.330000px;}
.w9{width:86.670000px;}
.wa{width:96.690000px;}
.w6{width:100.020000px;}
.w4{width:104.490000px;}
.w8{width:107.100000px;}
.w12{width:108.900000px;}
.w5{width:109.710000px;}
.w7{width:111.060000px;}
.w13{width:132.690000px;}
.w10{width:132.870000px;}
.wd{width:134.100000px;}
.wc{width:140.070000px;}
.we{width:144.360000px;}
.wb{width:150.030000px;}
.w14{width:211.590000px;}
.w3{width:219.540000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:3.960000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x17{left:95.039987px;}
.x18{left:111.239987px;}
.x12{left:151.110000px;}
.xd{left:156.150000px;}
.x2{left:202.799987px;}
.xe{left:253.650000px;}
.xb{left:283.439987px;}
.x13{left:284.700000px;}
.x5{left:289.110000px;}
.x14{left:369.750000px;}
.x6{left:394.410000px;}
.xf{left:404.400000px;}
.x15{left:479.460000px;}
.x7{left:504.840000px;}
.x10{left:545.280000px;}
.x8{left:605.580000px;}
.x16{left:612.870000px;}
.x11{left:680.100000px;}
.x9{left:717.360000px;}
.xa{left:754.889987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.050667pt;}
.ls19{letter-spacing:-0.008000pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.087467pt;}
.ls10{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls9{letter-spacing:0.156267pt;}
.ls16{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls17{letter-spacing:42.423680pt;}
.ls14{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.859733pt;}
.wsb{word-spacing:-11.844267pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.748800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._9{margin-left:-2.884864pt;}
._1{margin-left:-1.938635pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.912479pt;}
._3{width:1.943552pt;}
._7{width:3.419733pt;}
._c{width:5.023360pt;}
._d{width:6.199040pt;}
._4{width:7.435520pt;}
._8{width:8.435946pt;}
._43{width:9.619200pt;}
._a{width:10.527680pt;}
._5{width:13.296533pt;}
._6{width:14.252269pt;}
._15{width:15.391827pt;}
._20{width:16.406080pt;}
._3f{width:17.368000pt;}
._13{width:18.329920pt;}
._42{width:19.933120pt;}
._b{width:20.948480pt;}
._26{width:22.124160pt;}
._3b{width:23.032640pt;}
._10{width:24.101440pt;}
._34{width:25.490880pt;}
._35{width:26.987200pt;}
._40{width:29.872960pt;}
._e{width:30.834880pt;}
._2e{width:32.812160pt;}
._30{width:34.520960pt;}
._17{width:36.285760pt;}
._1a{width:38.637120pt;}
._19{width:42.858880pt;}
._2d{width:44.996480pt;}
._24{width:46.332480pt;}
._2b{width:47.721920pt;}
._23{width:48.951040pt;}
._18{width:50.126720pt;}
._37{width:53.065920pt;}
._31{width:55.791360pt;}
._41{width:58.483947pt;}
._25{width:61.776640pt;}
._12{width:62.845440pt;}
._11{width:63.807360pt;}
._22{width:65.677760pt;}
._f{width:67.601600pt;}
._27{width:70.594240pt;}
._1f{width:73.105920pt;}
._3e{width:75.457280pt;}
._16{width:77.541440pt;}
._28{width:79.091200pt;}
._21{width:83.633600pt;}
._2f{width:89.405120pt;}
._3d{width:97.340160pt;}
._2a{width:102.177280pt;}
._2c{width:107.147200pt;}
._1d{width:109.124480pt;}
._3a{width:116.819840pt;}
._3c{width:118.904000pt;}
._36{width:126.062720pt;}
._14{width:144.074240pt;}
._39{width:150.166400pt;}
._1e{width:159.732160pt;}
._29{width:162.136960pt;}
._1b{width:174.588480pt;}
._1c{width:177.207040pt;}
._32{width:179.879040pt;}
._33{width:193.025280pt;}
._38{width:215.042560pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:6.960000pt;}
.y90{bottom:6.986667pt;}
.y49{bottom:7.040000pt;}
.y4e{bottom:22.560000pt;}
.y48{bottom:22.640000pt;}
.y8f{bottom:22.666667pt;}
.y73{bottom:38.240000pt;}
.y8e{bottom:38.266667pt;}
.y7e{bottom:38.320000pt;}
.y81{bottom:53.840000pt;}
.y7d{bottom:53.920000pt;}
.y79{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y7c{bottom:69.520000pt;}
.y78{bottom:69.546667pt;}
.y80{bottom:85.120000pt;}
.y85{bottom:85.146667pt;}
.y7b{bottom:85.200000pt;}
.y77{bottom:85.226667pt;}
.y1{bottom:90.346667pt;}
.y76{bottom:100.826667pt;}
.y5e{bottom:102.666667pt;}
.y82{bottom:105.626667pt;}
.y75{bottom:116.426667pt;}
.y5d{bottom:118.346667pt;}
.y52{bottom:121.466667pt;}
.y9e{bottom:128.266667pt;}
.y5c{bottom:133.946667pt;}
.y9d{bottom:143.866667pt;}
.y5b{bottom:149.626667pt;}
.y25{bottom:154.426667pt;}
.yc1{bottom:157.626667pt;}
.y9c{bottom:159.546667pt;}
.y7f{bottom:161.226667pt;}
.y51{bottom:161.466667pt;}
.y5a{bottom:165.226667pt;}
.y24{bottom:170.026667pt;}
.yc0{bottom:173.226667pt;}
.y23{bottom:185.706667pt;}
.ybf{bottom:188.826667pt;}
.y9b{bottom:191.146667pt;}
.y59{bottom:196.826667pt;}
.y22{bottom:201.306667pt;}
.y50{bottom:201.386667pt;}
.yea{bottom:203.626667pt;}
.ybe{bottom:204.506667pt;}
.y9a{bottom:206.826667pt;}
.y21{bottom:216.906667pt;}
.ye9{bottom:219.226667pt;}
.ybd{bottom:220.106667pt;}
.y99{bottom:222.426667pt;}
.y58{bottom:225.466667pt;}
.y4f{bottom:225.626667pt;}
.y20{bottom:232.586667pt;}
.y98{bottom:238.026667pt;}
.ye8{bottom:242.826667pt;}
.ybc{bottom:244.026667pt;}
.y1f{bottom:248.186667pt;}
.y97{bottom:253.706667pt;}
.ye7{bottom:258.506667pt;}
.y7a{bottom:263.626667pt;}
.y4d{bottom:265.626667pt;}
.y96{bottom:269.306667pt;}
.y1e{bottom:272.106667pt;}
.ye6{bottom:274.106667pt;}
.y95{bottom:284.986667pt;}
.ybb{bottom:286.906667pt;}
.ye5{bottom:297.786667pt;}
.yba{bottom:303.306667pt;}
.y4b{bottom:305.546667pt;}
.ye4{bottom:313.386667pt;}
.y1d{bottom:315.306667pt;}
.y94{bottom:316.586667pt;}
.yb9{bottom:319.626667pt;}
.y4a{bottom:329.786667pt;}
.y93{bottom:332.186667pt;}
.yb8{bottom:336.026667pt;}
.ye3{bottom:336.986667pt;}
.y92{bottom:347.866667pt;}
.y1c{bottom:348.266667pt;}
.yb7{bottom:352.426667pt;}
.ye2{bottom:352.666667pt;}
.y47{bottom:354.106667pt;}
.y1b{bottom:363.866667pt;}
.y74{bottom:366.106667pt;}
.ye1{bottom:368.266667pt;}
.yb6{bottom:368.746667pt;}
.y91{bottom:371.786667pt;}
.y1a{bottom:379.466667pt;}
.yb5{bottom:385.146667pt;}
.ye0{bottom:391.946667pt;}
.y19{bottom:395.146667pt;}
.yb4{bottom:401.466667pt;}
.ydf{bottom:407.546667pt;}
.y18{bottom:410.746667pt;}
.y8d{bottom:412.346667pt;}
.y46{bottom:413.066667pt;}
.yb3{bottom:417.893333pt;}
.yde{bottom:423.173333pt;}
.yb2{bottom:434.213333pt;}
.y17{bottom:442.373333pt;}
.y45{bottom:444.693333pt;}
.ydd{bottom:446.853333pt;}
.yb1{bottom:450.613333pt;}
.y16{bottom:458.053333pt;}
.y44{bottom:460.293333pt;}
.ydc{bottom:462.453333pt;}
.yb0{bottom:467.013333pt;}
.y8c{bottom:467.973333pt;}
.y15{bottom:473.653333pt;}
.y43{bottom:475.973333pt;}
.ydb{bottom:478.133333pt;}
.yaf{bottom:483.333333pt;}
.y14{bottom:489.333333pt;}
.y42{bottom:491.573333pt;}
.yae{bottom:499.733333pt;}
.y72{bottom:499.893333pt;}
.yda{bottom:501.733333pt;}
.y13{bottom:504.933333pt;}
.y41{bottom:507.253333pt;}
.yad{bottom:516.053333pt;}
.yd9{bottom:517.333333pt;}
.y12{bottom:520.533333pt;}
.y40{bottom:522.853333pt;}
.y8b{bottom:523.493333pt;}
.yac{bottom:532.453333pt;}
.y3f{bottom:538.453333pt;}
.yd8{bottom:541.013333pt;}
.y11{bottom:552.213333pt;}
.yd7{bottom:556.613333pt;}
.yab{bottom:557.173333pt;}
.y10{bottom:567.813333pt;}
.y3e{bottom:570.133333pt;}
.yd6{bottom:572.293333pt;}
.y71{bottom:574.453333pt;}
.yf{bottom:583.493333pt;}
.y3d{bottom:585.733333pt;}
.yd5{bottom:587.893333pt;}
.yaa{bottom:590.053333pt;}
.y8a{bottom:594.693333pt;}
.ya9{bottom:605.653333pt;}
.y70{bottom:606.053333pt;}
.ye{bottom:607.413333pt;}
.yd4{bottom:611.493333pt;}
.y3c{bottom:617.413333pt;}
.ya8{bottom:621.333333pt;}
.y6f{bottom:621.653333pt;}
.yd3{bottom:627.173333pt;}
.y3b{bottom:633.013333pt;}
.ya7{bottom:636.933333pt;}
.y6e{bottom:637.333333pt;}
.yd2{bottom:642.773333pt;}
.y3a{bottom:648.613333pt;}
.yd{bottom:650.293333pt;}
.ya6{bottom:652.613333pt;}
.y6d{bottom:652.933333pt;}
.y39{bottom:664.293333pt;}
.y89{bottom:665.893333pt;}
.yd1{bottom:666.373333pt;}
.y6c{bottom:668.613333pt;}
.yc{bottom:681.893333pt;}
.yd0{bottom:682.053333pt;}
.y6b{bottom:684.213333pt;}
.y38{bottom:695.893333pt;}
.y6a{bottom:699.813333pt;}
.ycf{bottom:705.653333pt;}
.y37{bottom:711.573333pt;}
.yb{bottom:713.733333pt;}
.y69{bottom:715.493333pt;}
.yce{bottom:721.333333pt;}
.y88{bottom:721.413333pt;}
.y36{bottom:727.173333pt;}
.ya5{bottom:731.093333pt;}
.y35{bottom:742.773333pt;}
.ycd{bottom:744.933333pt;}
.ya{bottom:745.733333pt;}
.ya4{bottom:746.693333pt;}
.y68{bottom:747.093333pt;}
.y34{bottom:758.453333pt;}
.ycc{bottom:760.533333pt;}
.ya3{bottom:762.373333pt;}
.y67{bottom:762.693333pt;}
.y9{bottom:765.093333pt;}
.y66{bottom:778.373333pt;}
.y8{bottom:781.093333pt;}
.ycb{bottom:784.213333pt;}
.y33{bottom:790.053333pt;}
.y7{bottom:793.733333pt;}
.y65{bottom:793.973333pt;}
.y87{bottom:795.973333pt;}
.yca{bottom:799.813333pt;}
.y32{bottom:805.733333pt;}
.y64{bottom:809.653333pt;}
.y6{bottom:813.093333pt;}
.yc9{bottom:815.493333pt;}
.y31{bottom:821.333333pt;}
.y63{bottom:825.253333pt;}
.y86{bottom:827.653333pt;}
.y30{bottom:836.933333pt;}
.yc8{bottom:839.093333pt;}
.ya2{bottom:840.853333pt;}
.y84{bottom:840.933333pt;}
.y5{bottom:841.813333pt;}
.yc7{bottom:854.693333pt;}
.ya1{bottom:856.533333pt;}
.y62{bottom:856.853333pt;}
.y2f{bottom:860.853333pt;}
.ya0{bottom:872.133333pt;}
.y61{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.yc6{bottom:878.373333pt;}
.y60{bottom:888.133333pt;}
.y57{bottom:890.533333pt;}
.y3{bottom:897.840000pt;}
.yc5{bottom:902.320000pt;}
.y2e{bottom:903.840000pt;}
.y56{bottom:906.160000pt;}
.y2d{bottom:919.440000pt;}
.y55{bottom:921.840000pt;}
.y2c{bottom:935.040000pt;}
.yc4{bottom:945.200000pt;}
.y54{bottom:945.760000pt;}
.y5f{bottom:950.720000pt;}
.y9f{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.yc3{bottom:969.120000pt;}
.y83{bottom:974.640000pt;}
.y2a{bottom:982.320000pt;}
.y53{bottom:986.320000pt;}
.y29{bottom:998.000000pt;}
.yc2{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.he{height:39.200000pt;}
.hb{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h13{height:50.960000pt;}
.hf{height:54.880000pt;}
.h16{height:54.906667pt;}
.h17{height:54.927899pt;}
.h14{height:54.960000pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h15{height:70.560000pt;}
.h12{height:101.760000pt;}
.h11{height:101.840000pt;}
.h10{height:133.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:72.560000pt;}
.w11{width:74.960000pt;}
.w9{width:77.040000pt;}
.wa{width:85.946667pt;}
.w6{width:88.906667pt;}
.w4{width:92.880000pt;}
.w8{width:95.200000pt;}
.w12{width:96.800000pt;}
.w5{width:97.520000pt;}
.w7{width:98.720000pt;}
.w13{width:117.946667pt;}
.w10{width:118.106667pt;}
.wd{width:119.200000pt;}
.wc{width:124.506667pt;}
.we{width:128.320000pt;}
.wb{width:133.360000pt;}
.w14{width:188.080000pt;}
.w3{width:195.146667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:3.520000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x17{left:84.479988pt;}
.x18{left:98.879988pt;}
.x12{left:134.320000pt;}
.xd{left:138.800000pt;}
.x2{left:180.266655pt;}
.xe{left:225.466667pt;}
.xb{left:251.946655pt;}
.x13{left:253.066667pt;}
.x5{left:256.986667pt;}
.x14{left:328.666667pt;}
.x6{left:350.586667pt;}
.xf{left:359.466667pt;}
.x15{left:426.186667pt;}
.x7{left:448.746667pt;}
.x10{left:484.693333pt;}
.x8{left:538.293333pt;}
.x16{left:544.773333pt;}
.x11{left:604.533333pt;}
.x9{left:637.653333pt;}
.xa{left:671.013322pt;}
.x3{left:704.053322pt;}
}




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