
    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_362fc54774b960eeb0e53f1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_c0b217cdf88d0a57ef7384ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_cb57bb0992ec45022dec9080.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.129395;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_2cd1e20575cc031b977c81ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009766;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_61eb6a9ea78cb9fa1ecc7d2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088867;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_56ab78a8f3b94128c0c2fcf6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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);}
.v4{vertical-align:-20.879928px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440031px;}
.v1{vertical-align:2.880063px;}
.v3{vertical-align:20.879928px;}
.v5{vertical-align:23.759991px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007763px;}
.ls7{letter-spacing:0.010550px;}
.ls6{letter-spacing:0.047328px;}
.ls9{letter-spacing:0.053509px;}
.ls2{letter-spacing:0.179339px;}
.ls5{letter-spacing:0.179424px;}
.ls1{letter-spacing:0.179473px;}
.ls3{letter-spacing:0.179478px;}
.lsb{letter-spacing:16.565857px;}
.ls8{letter-spacing:34.643671px;}
.lsc{letter-spacing:46.085848px;}
.lsa{letter-spacing:46.085915px;}
.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;}
}
.ws6{word-spacing:-19.814330px;}
.ws0{word-spacing:-16.560675px;}
.ws2{word-spacing:-15.840563px;}
.ws8{word-spacing:-14.940563px;}
.ws7{word-spacing:-14.267890px;}
.ws5{word-spacing:-14.220563px;}
.ws3{word-spacing:-10.440405px;}
.ws4{word-spacing:-9.000349px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-2.227324px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._15{width:2.100599px;}
._2{width:3.149217px;}
._7{width:4.878398px;}
._8{width:6.083271px;}
._9{width:7.417260px;}
._c{width:8.520022px;}
._5{width:10.201322px;}
._13{width:11.276086px;}
._14{width:12.361345px;}
._d{width:14.355176px;}
._1e{width:15.924937px;}
._6{width:17.710491px;}
._19{width:19.001375px;}
._1a{width:20.568249px;}
._a{width:22.176787px;}
._b{width:23.509703px;}
._17{width:25.220896px;}
._21{width:26.271242px;}
._f{width:27.309130px;}
._12{width:28.366917px;}
._10{width:29.970344px;}
._11{width:31.048485px;}
._1c{width:32.171362px;}
._1b{width:33.996505px;}
._23{width:35.803866px;}
._22{width:36.971370px;}
._31{width:38.132660px;}
._34{width:39.297719px;}
._1f{width:40.384305px;}
._33{width:41.601158px;}
._20{width:42.659595px;}
._2d{width:43.689805px;}
._2e{width:45.505103px;}
._38{width:46.672897px;}
._39{width:47.942033px;}
._3a{width:49.150287px;}
._3b{width:52.798244px;}
._3c{width:53.849492px;}
._1d{width:56.311335px;}
._2f{width:64.154512px;}
._32{width:65.982712px;}
._25{width:72.238365px;}
._26{width:73.568403px;}
._16{width:74.977335px;}
._28{width:104.662642px;}
._35{width:107.506755px;}
._4{width:112.255641px;}
._18{width:134.439187px;}
._37{width:145.789207px;}
._36{width:147.525226px;}
._2a{width:177.691483px;}
._29{width:179.031493px;}
._3{width:220.348141px;}
._30{width:231.638465px;}
._2b{width:348.119370px;}
._24{width:402.155415px;}
._27{width:777.489201px;}
._2c{width:980.081168px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs7{font-size:36.001395px;}
.fs6{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs8{font-size:56.882250px;}
.fs4{font-size:59.762250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.599997px;}
.y37{bottom:3.600014px;}
.y8c{bottom:3.779984px;}
.y8b{bottom:301.500068px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y63{bottom:342.000068px;}
.ya7{bottom:347.220085px;}
.y105{bottom:352.260064px;}
.y36{bottom:352.980079px;}
.yd8{bottom:354.060036px;}
.y35{bottom:356.580093px;}
.y62{bottom:358.380066px;}
.y98{bottom:363.600083px;}
.y104{bottom:369.180039px;}
.yd7{bottom:371.340088px;}
.y34{bottom:374.580093px;}
.y97{bottom:374.760064px;}
.y61{bottom:379.980079px;}
.y103{bottom:386.460091px;}
.yd6{bottom:388.440033px;}
.y60{bottom:391.140060px;}
.ybd{bottom:392.220085px;}
.y33{bottom:393.840088px;}
.y96{bottom:396.360077px;}
.y102{bottom:404.100083px;}
.yd5{bottom:405.720085px;}
.y95{bottom:407.520058px;}
.y5f{bottom:407.700096px;}
.yac{bottom:408.600083px;}
.y32{bottom:412.020058px;}
.y8a{bottom:412.740074px;}
.yc0{bottom:412.920043px;}
.y101{bottom:421.200096px;}
.ybc{bottom:421.380066px;}
.yd4{bottom:423.000068px;}
.y89{bottom:423.900055px;}
.yba{bottom:424.980079px;}
.y94{bottom:429.120072px;}
.y5e{bottom:429.300041px;}
.y31{bottom:430.020058px;}
.y100{bottom:438.480079px;}
.ybb{bottom:439.560036px;}
.y88{bottom:440.280052px;}
.y5d{bottom:440.460091px;}
.y93{bottom:441.360077px;}
.yb0{bottom:445.500068px;}
.y30{bottom:448.200096px;}
.yff{bottom:455.760064px;}
.yaa{bottom:456.660049px;}
.yb9{bottom:457.560036px;}
.yb7{bottom:457.740074px;}
.y87{bottom:461.880066px;}
.y5c{bottom:462.060036px;}
.y2f{bottom:466.380066px;}
.ya6{bottom:473.040047px;}
.y5b{bottom:473.220085px;}
.y86{bottom:474.120072px;}
.ybf{bottom:474.300041px;}
.yd3{bottom:474.840088px;}
.y92{bottom:475.740074px;}
.ya1{bottom:478.260064px;}
.y2e{bottom:484.380066px;}
.ya0{bottom:489.420043px;}
.y5a{bottom:489.600083px;}
.yfe{bottom:490.320099px;}
.yd2{bottom:491.940033px;}
.y91{bottom:493.920043px;}
.ya5{bottom:494.640060px;}
.y2d{bottom:502.560036px;}
.y9f{bottom:505.800041px;}
.ya4{bottom:506.880066px;}
.yfd{bottom:507.600083px;}
.yd1{bottom:509.220085px;}
.yaf{bottom:511.020058px;}
.y59{bottom:511.200096px;}
.y90{bottom:511.920043px;}
.y2c{bottom:520.560036px;}
.ya9{bottom:522.180039px;}
.yb5{bottom:523.260064px;}
.y58{bottom:523.440033px;}
.yfc{bottom:524.700096px;}
.yd0{bottom:526.500068px;}
.y9e{bottom:527.400055px;}
.y85{bottom:530.100083px;}
.y9d{bottom:538.560036px;}
.y2b{bottom:538.740074px;}
.yb1{bottom:539.640060px;}
.yfb{bottom:541.980079px;}
.yae{bottom:543.780052px;}
.y84{bottom:548.280052px;}
.yad{bottom:556.020058px;}
.y2a{bottom:556.920043px;}
.y108{bottom:557.460091px;}
.yfa{bottom:559.260064px;}
.y9c{bottom:560.160049px;}
.ycf{bottom:561.060036px;}
.y57{bottom:564.840088px;}
.y83{bottom:566.280052px;}
.yb3{bottom:571.320099px;}
.y9b{bottom:572.400055px;}
.y29{bottom:574.920043px;}
.yf9{bottom:576.540047px;}
.yce{bottom:578.160049px;}
.y56{bottom:582.840088px;}
.y82{bottom:584.460091px;}
.y28{bottom:593.100083px;}
.yf8{bottom:593.820099px;}
.ycd{bottom:595.440033px;}
.y55{bottom:601.020058px;}
.y81{bottom:602.460091px;}
.yb2{bottom:605.340088px;}
.yf7{bottom:611.100083px;}
.y27{bottom:611.280052px;}
.ycc{bottom:612.720085px;}
.y54{bottom:619.200096px;}
.y80{bottom:620.640060px;}
.yf6{bottom:628.200096px;}
.y26{bottom:629.280052px;}
.ycb{bottom:630.000068px;}
.y53{bottom:637.200096px;}
.y7f{bottom:638.820099px;}
.yf5{bottom:645.480079px;}
.yca{bottom:647.280052px;}
.y25{bottom:647.460091px;}
.y52{bottom:655.380066px;}
.y7e{bottom:656.820099px;}
.yf4{bottom:662.760064px;}
.yc9{bottom:664.560036px;}
.y24{bottom:665.460091px;}
.y51{bottom:673.560036px;}
.y7d{bottom:675.000068px;}
.yf3{bottom:680.040047px;}
.yc8{bottom:681.660049px;}
.y23{bottom:683.640060px;}
.y50{bottom:691.560070px;}
.yb6{bottom:692.640060px;}
.y7c{bottom:693.000068px;}
.yf2{bottom:697.320065px;}
.yc7{bottom:698.940067px;}
.y22{bottom:701.820065px;}
.y4f{bottom:709.740074px;}
.y7b{bottom:711.180073px;}
.yf1{bottom:714.420078px;}
.yc6{bottom:716.220051px;}
.y21{bottom:719.820065px;}
.y4e{bottom:727.740074px;}
.y7a{bottom:729.360077px;}
.yf0{bottom:731.700061px;}
.yc5{bottom:733.500068px;}
.y20{bottom:738.000068px;}
.y4d{bottom:745.920078px;}
.ybe{bottom:747.000068px;}
.y79{bottom:747.360077px;}
.yef{bottom:748.980079px;}
.yc4{bottom:750.780052px;}
.y1f{bottom:756.000068px;}
.y4c{bottom:764.100083px;}
.y78{bottom:765.540081px;}
.yee{bottom:766.260064px;}
.yc3{bottom:768.060070px;}
.y1e{bottom:774.180073px;}
.y4b{bottom:782.100083px;}
.yb4{bottom:783.360077px;}
.yed{bottom:783.540081px;}
.y77{bottom:783.720051px;}
.yc2{bottom:784.800076px;}
.y1d{bottom:792.360077px;}
.y4a{bottom:800.280052px;}
.yec{bottom:800.820065px;}
.y76{bottom:801.720051px;}
.yc1{bottom:802.080059px;}
.y1c{bottom:810.360077px;}
.yeb{bottom:817.920078px;}
.y49{bottom:818.280052px;}
.yab{bottom:819.540081px;}
.y75{bottom:819.900055px;}
.y1b{bottom:828.540081px;}
.yea{bottom:835.200061px;}
.y48{bottom:836.460056px;}
.y74{bottom:837.900055px;}
.y1a{bottom:846.720051px;}
.ye9{bottom:852.480079px;}
.y47{bottom:854.640060px;}
.y73{bottom:856.080059px;}
.y19{bottom:864.720051px;}
.ye8{bottom:869.760064px;}
.y46{bottom:872.640060px;}
.y8f{bottom:874.080059px;}
.y72{bottom:874.260064px;}
.y18{bottom:882.900055px;}
.ye7{bottom:887.040081px;}
.y45{bottom:890.820065px;}
.y71{bottom:892.260064px;}
.y17{bottom:900.900055px;}
.ye6{bottom:903.960056px;}
.y107{bottom:904.320065px;}
.y44{bottom:909.000068px;}
.y70{bottom:910.440067px;}
.y16{bottom:918.720051px;}
.ye5{bottom:921.060070px;}
.y106{bottom:921.420078px;}
.y43{bottom:927.000068px;}
.y6f{bottom:928.620072px;}
.y15{bottom:937.440067px;}
.ye4{bottom:938.700061px;}
.y42{bottom:945.180073px;}
.y6e{bottom:946.620072px;}
.y14{bottom:954.720051px;}
.ye3{bottom:955.980079px;}
.y41{bottom:963.180073px;}
.yb8{bottom:964.440067px;}
.y6d{bottom:964.800076px;}
.y13{bottom:971.280053px;}
.ye2{bottom:973.260064px;}
.y40{bottom:981.360060px;}
.y6c{bottom:982.800058px;}
.y12{bottom:990.000068px;}
.ye1{bottom:990.540064px;}
.y3f{bottom:999.540064px;}
.y8e{bottom:1000.620072px;}
.y9a{bottom:1000.800058px;}
.y6b{bottom:1000.980063px;}
.ye0{bottom:1007.820065px;}
.y11{bottom:1008.360060px;}
.y3e{bottom:1017.540064px;}
.y8d{bottom:1018.800058px;}
.y6a{bottom:1019.160067px;}
.ydf{bottom:1024.920061px;}
.y10{bottom:1025.640060px;}
.y3d{bottom:1035.720068px;}
.y69{bottom:1037.160067px;}
.yde{bottom:1042.200061px;}
.yf{bottom:1044.540064px;}
.y3c{bottom:1053.720068px;}
.y68{bottom:1055.340070px;}
.ydd{bottom:1059.480063px;}
.ye{bottom:1063.440067px;}
.y3b{bottom:1071.900072px;}
.ya8{bottom:1072.980063px;}
.y67{bottom:1073.340070px;}
.ydc{bottom:1076.760064px;}
.yd{bottom:1082.520058px;}
.y3a{bottom:1090.080059px;}
.y66{bottom:1091.520058px;}
.ydb{bottom:1094.040064px;}
.yc{bottom:1100.160067px;}
.yb{bottom:1103.760064px;}
.y39{bottom:1107.720068px;}
.ya3{bottom:1109.340070px;}
.y65{bottom:1109.700061px;}
.yda{bottom:1111.140060px;}
.y9{bottom:1119.060070px;}
.y8{bottom:1122.660067px;}
.y38{bottom:1126.620063px;}
.ya2{bottom:1127.340063px;}
.y99{bottom:1127.520066px;}
.y64{bottom:1127.700061px;}
.yd9{bottom:1128.420069px;}
.y7{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h5{height:5.116137px;}
.he{height:17.819962px;}
.h7{height:18.539994px;}
.h17{height:19.259996px;}
.h13{height:31.518799px;}
.h2{height:38.682276px;}
.h1f{height:45.025953px;}
.h3{height:47.450215px;}
.h18{height:47.738258px;}
.h1e{height:49.605322px;}
.h14{height:49.799743px;}
.h6{height:49.908440px;}
.h20{height:52.116884px;}
.h9{height:52.321150px;}
.hb{height:53.079850px;}
.hd{height:55.256337px;}
.h10{height:55.472907px;}
.ha{height:56.277311px;}
.hc{height:56.696369px;}
.hf{height:56.912907px;}
.h1a{height:57.441602px;}
.h11{height:57.441737px;}
.h19{height:57.441741px;}
.h1c{height:57.441804px;}
.h15{height:57.441809px;}
.h1b{height:57.441840px;}
.h12{height:57.441872px;}
.h16{height:57.441876px;}
.h8{height:58.835679px;}
.h1d{height:60.179060px;}
.h4{height:63.037524px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:4.320030px;}
.w3{width:7.919975px;}
.w2{width:8.100013px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:166.860008px;}
.x14{left:175.319996px;}
.x19{left:193.860008px;}
.x1a{left:202.319996px;}
.xa{left:207.539996px;}
.x18{left:210.060001px;}
.x2{left:215.099997px;}
.x17{left:218.520006px;}
.x15{left:220.860008px;}
.x11{left:223.560001px;}
.x1{left:228.780001px;}
.x10{left:237.240006px;}
.xe{left:262.800007px;}
.xc{left:277.199993px;}
.x3{left:375.300007px;}
.x12{left:383.759994px;}
.x6{left:427.500000px;}
.xd{left:431.100014px;}
.xb{left:433.980011px;}
.x4{left:442.079990px;}
.x13{left:450.540012px;}
.x16{left:458.279983px;}
.x9{left:492.839985px;}
.x7{left:628.919975px;}
.xf{left:683.100014px;}
.x8{left:717.480011px;}
@media print{
.v4{vertical-align:-18.559936pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280028pt;}
.v1{vertical-align:2.560056pt;}
.v3{vertical-align:18.559936pt;}
.v5{vertical-align:21.119992pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006900pt;}
.ls7{letter-spacing:0.009378pt;}
.ls6{letter-spacing:0.042069pt;}
.ls9{letter-spacing:0.047564pt;}
.ls2{letter-spacing:0.159412pt;}
.ls5{letter-spacing:0.159488pt;}
.ls1{letter-spacing:0.159532pt;}
.ls3{letter-spacing:0.159536pt;}
.lsb{letter-spacing:14.725206pt;}
.ls8{letter-spacing:30.794374pt;}
.lsc{letter-spacing:40.965198pt;}
.lsa{letter-spacing:40.965258pt;}
.ws6{word-spacing:-17.612738pt;}
.ws0{word-spacing:-14.720600pt;}
.ws2{word-spacing:-14.080500pt;}
.ws8{word-spacing:-13.280500pt;}
.ws7{word-spacing:-12.682569pt;}
.ws5{word-spacing:-12.640500pt;}
.ws3{word-spacing:-9.280360pt;}
.ws4{word-spacing:-8.000310pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-1.979843pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._15{width:1.867199pt;}
._2{width:2.799304pt;}
._7{width:4.336354pt;}
._8{width:5.407352pt;}
._9{width:6.593120pt;}
._c{width:7.573353pt;}
._5{width:9.067842pt;}
._13{width:10.023188pt;}
._14{width:10.987862pt;}
._d{width:12.760157pt;}
._1e{width:14.155500pt;}
._6{width:15.742659pt;}
._19{width:16.890111pt;}
._1a{width:18.282888pt;}
._a{width:19.712700pt;}
._b{width:20.897514pt;}
._17{width:22.418574pt;}
._21{width:23.352215pt;}
._f{width:24.274782pt;}
._12{width:25.215037pt;}
._10{width:26.640306pt;}
._11{width:27.598653pt;}
._1c{width:28.596766pt;}
._1b{width:30.219115pt;}
._23{width:31.825659pt;}
._22{width:32.863440pt;}
._31{width:33.895698pt;}
._34{width:34.931306pt;}
._1f{width:35.897160pt;}
._33{width:36.978807pt;}
._20{width:37.919640pt;}
._2d{width:38.835382pt;}
._2e{width:40.448980pt;}
._38{width:41.487019pt;}
._39{width:42.615140pt;}
._3a{width:43.689144pt;}
._3b{width:46.931772pt;}
._3c{width:47.866215pt;}
._1d{width:50.054520pt;}
._2f{width:57.026233pt;}
._32{width:58.651300pt;}
._25{width:64.211880pt;}
._26{width:65.394136pt;}
._16{width:66.646520pt;}
._28{width:93.033460pt;}
._35{width:95.561560pt;}
._4{width:99.782792pt;}
._18{width:119.501499pt;}
._37{width:129.590406pt;}
._36{width:131.133534pt;}
._2a{width:157.947985pt;}
._29{width:159.139105pt;}
._3{width:195.865014pt;}
._30{width:205.900857pt;}
._2b{width:309.439440pt;}
._24{width:357.471480pt;}
._27{width:691.101512pt;}
._2c{width:871.183260pt;}
.fs3{font-size:5.120200pt;}
.fs7{font-size:32.001240pt;}
.fs6{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs8{font-size:50.562000pt;}
.fs4{font-size:53.122000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.199997pt;}
.y37{bottom:3.200012pt;}
.y8c{bottom:3.359986pt;}
.y8b{bottom:268.000061pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y63{bottom:304.000061pt;}
.ya7{bottom:308.640076pt;}
.y105{bottom:313.120057pt;}
.y36{bottom:313.760071pt;}
.yd8{bottom:314.720032pt;}
.y35{bottom:316.960083pt;}
.y62{bottom:318.560059pt;}
.y98{bottom:323.200074pt;}
.y104{bottom:328.160035pt;}
.yd7{bottom:330.080079pt;}
.y34{bottom:332.960083pt;}
.y97{bottom:333.120057pt;}
.y61{bottom:337.760071pt;}
.y103{bottom:343.520081pt;}
.yd6{bottom:345.280030pt;}
.y60{bottom:347.680054pt;}
.ybd{bottom:348.640076pt;}
.y33{bottom:350.080079pt;}
.y96{bottom:352.320069pt;}
.y102{bottom:359.200074pt;}
.yd5{bottom:360.640076pt;}
.y95{bottom:362.240052pt;}
.y5f{bottom:362.400086pt;}
.yac{bottom:363.200074pt;}
.y32{bottom:366.240052pt;}
.y8a{bottom:366.880066pt;}
.yc0{bottom:367.040039pt;}
.y101{bottom:374.400086pt;}
.ybc{bottom:374.560059pt;}
.yd4{bottom:376.000061pt;}
.y89{bottom:376.800049pt;}
.yba{bottom:377.760071pt;}
.y94{bottom:381.440064pt;}
.y5e{bottom:381.600037pt;}
.y31{bottom:382.240052pt;}
.y100{bottom:389.760071pt;}
.ybb{bottom:390.720032pt;}
.y88{bottom:391.360047pt;}
.y5d{bottom:391.520081pt;}
.y93{bottom:392.320069pt;}
.yb0{bottom:396.000061pt;}
.y30{bottom:398.400086pt;}
.yff{bottom:405.120057pt;}
.yaa{bottom:405.920044pt;}
.yb9{bottom:406.720032pt;}
.yb7{bottom:406.880066pt;}
.y87{bottom:410.560059pt;}
.y5c{bottom:410.720032pt;}
.y2f{bottom:414.560059pt;}
.ya6{bottom:420.480042pt;}
.y5b{bottom:420.640076pt;}
.y86{bottom:421.440064pt;}
.ybf{bottom:421.600037pt;}
.yd3{bottom:422.080079pt;}
.y92{bottom:422.880066pt;}
.ya1{bottom:425.120057pt;}
.y2e{bottom:430.560059pt;}
.ya0{bottom:435.040039pt;}
.y5a{bottom:435.200074pt;}
.yfe{bottom:435.840088pt;}
.yd2{bottom:437.280030pt;}
.y91{bottom:439.040039pt;}
.ya5{bottom:439.680054pt;}
.y2d{bottom:446.720032pt;}
.y9f{bottom:449.600037pt;}
.ya4{bottom:450.560059pt;}
.yfd{bottom:451.200074pt;}
.yd1{bottom:452.640076pt;}
.yaf{bottom:454.240052pt;}
.y59{bottom:454.400086pt;}
.y90{bottom:455.040039pt;}
.y2c{bottom:462.720032pt;}
.ya9{bottom:464.160035pt;}
.yb5{bottom:465.120057pt;}
.y58{bottom:465.280030pt;}
.yfc{bottom:466.400086pt;}
.yd0{bottom:468.000061pt;}
.y9e{bottom:468.800049pt;}
.y85{bottom:471.200074pt;}
.y9d{bottom:478.720032pt;}
.y2b{bottom:478.880066pt;}
.yb1{bottom:479.680054pt;}
.yfb{bottom:481.760071pt;}
.yae{bottom:483.360047pt;}
.y84{bottom:487.360047pt;}
.yad{bottom:494.240052pt;}
.y2a{bottom:495.040039pt;}
.y108{bottom:495.520081pt;}
.yfa{bottom:497.120057pt;}
.y9c{bottom:497.920044pt;}
.ycf{bottom:498.720032pt;}
.y57{bottom:502.080079pt;}
.y83{bottom:503.360047pt;}
.yb3{bottom:507.840088pt;}
.y9b{bottom:508.800049pt;}
.y29{bottom:511.040039pt;}
.yf9{bottom:512.480042pt;}
.yce{bottom:513.920044pt;}
.y56{bottom:518.080079pt;}
.y82{bottom:519.520081pt;}
.y28{bottom:527.200074pt;}
.yf8{bottom:527.840088pt;}
.ycd{bottom:529.280030pt;}
.y55{bottom:534.240052pt;}
.y81{bottom:535.520081pt;}
.yb2{bottom:538.080079pt;}
.yf7{bottom:543.200074pt;}
.y27{bottom:543.360047pt;}
.ycc{bottom:544.640076pt;}
.y54{bottom:550.400086pt;}
.y80{bottom:551.680054pt;}
.yf6{bottom:558.400086pt;}
.y26{bottom:559.360047pt;}
.ycb{bottom:560.000061pt;}
.y53{bottom:566.400086pt;}
.y7f{bottom:567.840088pt;}
.yf5{bottom:573.760071pt;}
.yca{bottom:575.360047pt;}
.y25{bottom:575.520081pt;}
.y52{bottom:582.560059pt;}
.y7e{bottom:583.840088pt;}
.yf4{bottom:589.120057pt;}
.yc9{bottom:590.720032pt;}
.y24{bottom:591.520081pt;}
.y51{bottom:598.720032pt;}
.y7d{bottom:600.000061pt;}
.yf3{bottom:604.480042pt;}
.yc8{bottom:605.920044pt;}
.y23{bottom:607.680054pt;}
.y50{bottom:614.720063pt;}
.yb6{bottom:615.680054pt;}
.y7c{bottom:616.000061pt;}
.yf2{bottom:619.840058pt;}
.yc7{bottom:621.280060pt;}
.y22{bottom:623.840058pt;}
.y4f{bottom:630.880066pt;}
.y7b{bottom:632.160065pt;}
.yf1{bottom:635.040070pt;}
.yc6{bottom:636.640046pt;}
.y21{bottom:639.840058pt;}
.y4e{bottom:646.880066pt;}
.y7a{bottom:648.320069pt;}
.yf0{bottom:650.400055pt;}
.yc5{bottom:652.000061pt;}
.y20{bottom:656.000061pt;}
.y4d{bottom:663.040070pt;}
.ybe{bottom:664.000061pt;}
.y79{bottom:664.320069pt;}
.yef{bottom:665.760071pt;}
.yc4{bottom:667.360047pt;}
.y1f{bottom:672.000061pt;}
.y4c{bottom:679.200074pt;}
.y78{bottom:680.480072pt;}
.yee{bottom:681.120057pt;}
.yc3{bottom:682.720063pt;}
.y1e{bottom:688.160065pt;}
.y4b{bottom:695.200074pt;}
.yb4{bottom:696.320069pt;}
.yed{bottom:696.480072pt;}
.y77{bottom:696.640046pt;}
.yc2{bottom:697.600068pt;}
.y1d{bottom:704.320069pt;}
.y4a{bottom:711.360047pt;}
.yec{bottom:711.840058pt;}
.y76{bottom:712.640046pt;}
.yc1{bottom:712.960053pt;}
.y1c{bottom:720.320069pt;}
.yeb{bottom:727.040070pt;}
.y49{bottom:727.360047pt;}
.yab{bottom:728.480072pt;}
.y75{bottom:728.800049pt;}
.y1b{bottom:736.480072pt;}
.yea{bottom:742.400055pt;}
.y48{bottom:743.520050pt;}
.y74{bottom:744.800049pt;}
.y1a{bottom:752.640046pt;}
.ye9{bottom:757.760071pt;}
.y47{bottom:759.680054pt;}
.y73{bottom:760.960053pt;}
.y19{bottom:768.640046pt;}
.ye8{bottom:773.120057pt;}
.y46{bottom:775.680054pt;}
.y8f{bottom:776.960053pt;}
.y72{bottom:777.120057pt;}
.y18{bottom:784.800049pt;}
.ye7{bottom:788.480072pt;}
.y45{bottom:791.840058pt;}
.y71{bottom:793.120057pt;}
.y17{bottom:800.800049pt;}
.ye6{bottom:803.520050pt;}
.y107{bottom:803.840058pt;}
.y44{bottom:808.000061pt;}
.y70{bottom:809.280060pt;}
.y16{bottom:816.640046pt;}
.ye5{bottom:818.720063pt;}
.y106{bottom:819.040070pt;}
.y43{bottom:824.000061pt;}
.y6f{bottom:825.440064pt;}
.y15{bottom:833.280060pt;}
.ye4{bottom:834.400055pt;}
.y42{bottom:840.160065pt;}
.y6e{bottom:841.440064pt;}
.y14{bottom:848.640046pt;}
.ye3{bottom:849.760071pt;}
.y41{bottom:856.160065pt;}
.yb8{bottom:857.280060pt;}
.y6d{bottom:857.600068pt;}
.y13{bottom:863.360047pt;}
.ye2{bottom:865.120057pt;}
.y40{bottom:872.320054pt;}
.y6c{bottom:873.600052pt;}
.y12{bottom:880.000061pt;}
.ye1{bottom:880.480057pt;}
.y3f{bottom:888.480057pt;}
.y8e{bottom:889.440064pt;}
.y9a{bottom:889.600052pt;}
.y6b{bottom:889.760056pt;}
.ye0{bottom:895.840058pt;}
.y11{bottom:896.320054pt;}
.y3e{bottom:904.480057pt;}
.y8d{bottom:905.600052pt;}
.y6a{bottom:905.920060pt;}
.ydf{bottom:911.040055pt;}
.y10{bottom:911.680054pt;}
.y3d{bottom:920.640061pt;}
.y69{bottom:921.920060pt;}
.yde{bottom:926.400055pt;}
.yf{bottom:928.480057pt;}
.y3c{bottom:936.640061pt;}
.y68{bottom:938.080063pt;}
.ydd{bottom:941.760056pt;}
.ye{bottom:945.280060pt;}
.y3b{bottom:952.800064pt;}
.ya8{bottom:953.760056pt;}
.y67{bottom:954.080063pt;}
.ydc{bottom:957.120057pt;}
.yd{bottom:962.240052pt;}
.y3a{bottom:968.960053pt;}
.y66{bottom:970.240052pt;}
.ydb{bottom:972.480057pt;}
.yc{bottom:977.920060pt;}
.yb{bottom:981.120057pt;}
.y39{bottom:984.640061pt;}
.ya3{bottom:986.080063pt;}
.y65{bottom:986.400055pt;}
.yda{bottom:987.680054pt;}
.y9{bottom:994.720063pt;}
.y8{bottom:997.920060pt;}
.y38{bottom:1001.440056pt;}
.ya2{bottom:1002.080056pt;}
.y99{bottom:1002.240059pt;}
.y64{bottom:1002.400055pt;}
.yd9{bottom:1003.040062pt;}
.y7{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h5{height:4.547678pt;}
.he{height:15.839966pt;}
.h7{height:16.479995pt;}
.h17{height:17.119996pt;}
.h13{height:28.016711pt;}
.h2{height:34.384245pt;}
.h1f{height:40.023069pt;}
.h3{height:42.177969pt;}
.h18{height:42.434007pt;}
.h1e{height:44.093619pt;}
.h14{height:44.266438pt;}
.h6{height:44.363058pt;}
.h20{height:46.326119pt;}
.h9{height:46.507688pt;}
.hb{height:47.182089pt;}
.hd{height:49.116744pt;}
.h10{height:49.309251pt;}
.ha{height:50.024276pt;}
.hc{height:50.396772pt;}
.hf{height:50.589251pt;}
.h1a{height:51.059202pt;}
.h11{height:51.059322pt;}
.h19{height:51.059326pt;}
.h1c{height:51.059382pt;}
.h15{height:51.059386pt;}
.h1b{height:51.059414pt;}
.h12{height:51.059442pt;}
.h16{height:51.059446pt;}
.h8{height:52.298382pt;}
.h1d{height:53.492498pt;}
.h4{height:56.033355pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:3.840027pt;}
.w3{width:7.039978pt;}
.w2{width:7.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:148.320007pt;}
.x14{left:155.839996pt;}
.x19{left:172.320007pt;}
.x1a{left:179.839996pt;}
.xa{left:184.479996pt;}
.x18{left:186.720001pt;}
.x2{left:191.199997pt;}
.x17{left:194.240005pt;}
.x15{left:196.320007pt;}
.x11{left:198.720001pt;}
.x1{left:203.360001pt;}
.x10{left:210.880005pt;}
.xe{left:233.600006pt;}
.xc{left:246.399994pt;}
.x3{left:333.600006pt;}
.x12{left:341.119995pt;}
.x6{left:380.000000pt;}
.xd{left:383.200012pt;}
.xb{left:385.760010pt;}
.x4{left:392.959991pt;}
.x13{left:400.480011pt;}
.x16{left:407.359985pt;}
.x9{left:438.079987pt;}
.x7{left:559.039978pt;}
.xf{left:607.200012pt;}
.x8{left:637.760010pt;}
}




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