
    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_8c21280457d190a5fe8a3719.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_c2a16c581fae9ebb65f65d96.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0f34a8bf761d48bcb08efaf5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_d8f7f9a031eab55913ba7817.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.949219;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_346442fc210532639b577813.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4a04713a96395abf12aa8923.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ea4e65b5250b160645bad2fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_cc36056267c78c7f030aab4c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.764648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010969px;}
.ls1{letter-spacing:0.059908px;}
.ls3{letter-spacing:0.261176px;}
.ls4{letter-spacing:66.610795px;}
.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;}
}
.ws1{word-spacing:-20.004658px;}
.ws2{word-spacing:-16.553379px;}
.ws3{word-spacing:-14.970850px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-15.186753px;}
._6{margin-left:-13.593580px;}
._7{margin-left:-8.908084px;}
._c{margin-left:-6.855421px;}
._d{margin-left:-5.243506px;}
._4{margin-left:-4.218987px;}
._8{margin-left:-2.537824px;}
._0{margin-left:-1.321564px;}
._1{width:1.008285px;}
._2{width:2.056150px;}
._3{width:3.492604px;}
._9{width:12.260464px;}
._b{width:13.375140px;}
._a{width:21.198643px;}
._f{width:842.408253px;}
._e{width:846.709747px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs11{font-size:48.241800px;}
.fse{font-size:54.002250px;}
.fsf{font-size:59.759492px;}
.fsb{font-size:59.762250px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:63.362250px;}
.fsa{font-size:66.242700px;}
.fs10{font-size:71.999814px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.002705px;}
.fs9{font-size:77.763154px;}
.fs5{font-size:84.243145px;}
.fs6{font-size:90.003596px;}
.fsc{font-size:92.883600px;}
.fs8{font-size:95.763600px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:97.125005px;}
.yd1{bottom:117.180039px;}
.y129{bottom:118.440033px;}
.y5a{bottom:125.100083px;}
.y99{bottom:126.360077px;}
.y7a{bottom:127.440033px;}
.yef{bottom:137.160049px;}
.y1b{bottom:139.264499px;}
.y128{bottom:141.300041px;}
.yd0{bottom:148.140060px;}
.y59{bottom:156.060036px;}
.y98{bottom:157.320099px;}
.y79{bottom:161.280052px;}
.y127{bottom:164.340088px;}
.yee{bottom:168.120072px;}
.ycf{bottom:179.280052px;}
.y58{bottom:187.200096px;}
.y126{bottom:187.560036px;}
.yb0{bottom:192.600083px;}
.y78{bottom:194.220085px;}
.y97{bottom:196.740074px;}
.y12{bottom:196.933500px;}
.yed{bottom:199.260064px;}
.y1a{bottom:209.518500px;}
.y11{bottom:209.533503px;}
.yce{bottom:210.240074px;}
.y125{bottom:210.780052px;}
.y77{bottom:216.360077px;}
.y57{bottom:218.160049px;}
.yaf{bottom:221.400055px;}
.y19{bottom:222.118502px;}
.y10{bottom:222.133505px;}
.yec{bottom:230.220085px;}
.y124{bottom:233.820099px;}
.y18{bottom:234.718504px;}
.yf{bottom:234.733496px;}
.y96{bottom:238.320099px;}
.ycd{bottom:241.380066px;}
.y56{bottom:249.300041px;}
.y76{bottom:251.820099px;}
.yae{bottom:252.540047px;}
.y123{bottom:257.040047px;}
.y17{bottom:259.918497px;}
.ye{bottom:259.933500px;}
.yeb{bottom:261.360077px;}
.y95{bottom:270.900055px;}
.ycc{bottom:272.340088px;}
.y16{bottom:272.518500px;}
.yd{bottom:272.533503px;}
.y55{bottom:280.260064px;}
.y108{bottom:280.980079px;}
.yad{bottom:283.500068px;}
.y15{bottom:285.118502px;}
.yc{bottom:285.133499px;}
.y75{bottom:287.460091px;}
.y38{bottom:291.240074px;}
.yea{bottom:292.320099px;}
.y94{bottom:302.040047px;}
.ycb{bottom:303.480079px;}
.y14{bottom:310.318501px;}
.yb{bottom:310.333501px;}
.y107{bottom:313.560036px;}
.y54{bottom:319.680039px;}
.y13{bottom:322.918500px;}
.ya{bottom:322.933500px;}
.ye9{bottom:323.460091px;}
.y37{bottom:323.820099px;}
.y74{bottom:324.360077px;}
.yac{bottom:325.080093px;}
.y122{bottom:326.520058px;}
.y93{bottom:333.000068px;}
.yca{bottom:334.440033px;}
.y106{bottom:344.700096px;}
.y9{bottom:348.133500px;}
.y121{bottom:349.740074px;}
.ye8{bottom:354.240074px;}
.y36{bottom:354.960091px;}
.yab{bottom:356.220085px;}
.y73{bottom:359.820099px;}
.y53{bottom:362.160049px;}
.y92{bottom:364.140060px;}
.yc9{bottom:365.580093px;}
.y120{bottom:372.960091px;}
.y105{bottom:375.660049px;}
.y35{bottom:385.920043px;}
.y8{bottom:386.785499px;}
.yaa{bottom:387.180039px;}
.y72{bottom:390.960091px;}
.y91{bottom:395.100083px;}
.y11f{bottom:396.000068px;}
.yc8{bottom:396.540047px;}
.y52{bottom:398.700096px;}
.y104{bottom:406.800041px;}
.y7{bottom:408.044999px;}
.ye7{bottom:416.880066px;}
.y34{bottom:417.060036px;}
.ya9{bottom:418.320099px;}
.y11e{bottom:419.220085px;}
.y71{bottom:422.100083px;}
.y90{bottom:426.240074px;}
.yc7{bottom:427.500068px;}
.y51{bottom:429.660049px;}
.y103{bottom:437.580093px;}
.y11d{bottom:442.440033px;}
.y33{bottom:448.020058px;}
.ya8{bottom:449.280052px;}
.y8f{bottom:457.200096px;}
.yc6{bottom:459.180039px;}
.y50{bottom:460.800041px;}
.y70{bottom:461.520058px;}
.y102{bottom:469.260064px;}
.ye6{bottom:478.980079px;}
.y32{bottom:479.160049px;}
.ya7{bottom:480.420043px;}
.y11c{bottom:480.780052px;}
.y8e{bottom:488.340088px;}
.y4f{bottom:491.760064px;}
.y101{bottom:500.220085px;}
.yc5{bottom:502.200096px;}
.y6f{bottom:502.560036px;}
.y31{bottom:510.120072px;}
.ya6{bottom:511.380066px;}
.y144{bottom:516.240074px;}
.y11b{bottom:521.460091px;}
.y4e{bottom:522.900055px;}
.y8d{bottom:527.760064px;}
.yc4{bottom:527.940033px;}
.y100{bottom:531.180039px;}
.yff{bottom:531.181489px;}
.y6e{bottom:531.540047px;}
.y6{bottom:538.864499px;}
.y143{bottom:539.460091px;}
.ye5{bottom:541.080093px;}
.y30{bottom:541.260064px;}
.ya5{bottom:542.520058px;}
.y11a{bottom:549.720085px;}
.yc3{bottom:553.680039px;}
.y4d{bottom:553.860077px;}
.y5{bottom:556.864499px;}
.y6d{bottom:562.500068px;}
.y142{bottom:562.680039px;}
.y8c{bottom:568.440033px;}
.ye4{bottom:572.040047px;}
.ya4{bottom:573.480079px;}
.yc2{bottom:579.600083px;}
.y2f{bottom:580.680039px;}
.y119{bottom:580.860077px;}
.y4c{bottom:585.180039px;}
.y141{bottom:585.720085px;}
.yfe{bottom:593.460091px;}
.y6c{bottom:593.640060px;}
.y8b{bottom:597.600083px;}
.ye3{bottom:603.540047px;}
.yc1{bottom:605.340088px;}
.y140{bottom:608.940033px;}
.y118{bottom:611.820099px;}
.ya3{bottom:615.060036px;}
.y4b{bottom:616.140060px;}
.y2e{bottom:622.260064px;}
.yfd{bottom:624.600083px;}
.y6b{bottom:624.780052px;}
.y8a{bottom:628.560036px;}
.yc0{bottom:631.080093px;}
.y13f{bottom:632.160049px;}
.ye2{bottom:634.680039px;}
.y117{bottom:642.960091px;}
.y2d{bottom:644.580093px;}
.ya2{bottom:646.020058px;}
.y4a{bottom:647.280052px;}
.y13e{bottom:655.200096px;}
.yfb{bottom:655.557402px;}
.yfc{bottom:655.560036px;}
.y6a{bottom:655.920043px;}
.ybf{bottom:657.000068px;}
.y89{bottom:659.520058px;}
.ye1{bottom:665.640060px;}
.y2c{bottom:667.080093px;}
.y116{bottom:673.920043px;}
.ya1{bottom:676.980079px;}
.y49{bottom:678.240074px;}
.y13d{bottom:678.420043px;}
.yd3{bottom:681.306480px;}
.ybe{bottom:682.740074px;}
.y69{bottom:686.880066px;}
.yfa{bottom:687.060070px;}
.y2b{bottom:689.040081px;}
.y88{bottom:690.660049px;}
.yd2{bottom:698.403808px;}
.y13c{bottom:701.640060px;}
.y115{bottom:704.880066px;}
.ye0{bottom:705.060070px;}
.y2a{bottom:708.300076px;}
.ybd{bottom:708.480079px;}
.y48{bottom:709.200061px;}
.y68{bottom:717.840054px;}
.yf9{bottom:718.020058px;}
.y87{bottom:721.800076px;}
.ya0{bottom:724.140060px;}
.y13b{bottom:724.680073px;}
.ybc{bottom:734.400055px;}
.y29{bottom:738.180073px;}
.y47{bottom:740.340054px;}
.y114{bottom:744.480079px;}
.ydf{bottom:745.920078px;}
.y13a{bottom:747.900055px;}
.yf8{bottom:748.980079px;}
.yf7{bottom:748.984886px;}
.y67{bottom:749.160049px;}
.y3{bottom:752.599495px;}
.y86{bottom:752.940067px;}
.y9f{bottom:755.280052px;}
.ybb{bottom:760.140060px;}
.y28{bottom:768.060070px;}
.y139{bottom:771.120072px;}
.y46{bottom:771.300076px;}
.yde{bottom:774.900055px;}
.y66{bottom:780.120072px;}
.y85{bottom:783.900055px;}
.yba{bottom:785.880066px;}
.y9e{bottom:786.240074px;}
.y138{bottom:794.160049px;}
.y113{bottom:795.960056px;}
.y27{bottom:797.760064px;}
.y45{bottom:802.440067px;}
.ydd{bottom:806.040081px;}
.y65{bottom:811.260064px;}
.yb9{bottom:811.800076px;}
.y84{bottom:815.040081px;}
.y137{bottom:817.380066px;}
.y26{bottom:827.640060px;}
.y44{bottom:833.400055px;}
.ydc{bottom:837.000068px;}
.yb8{bottom:837.540081px;}
.y112{bottom:838.260064px;}
.y136{bottom:840.600083px;}
.y64{bottom:842.040081px;}
.yf6{bottom:842.220051px;}
.y83{bottom:846.000068px;}
.y25{bottom:857.520058px;}
.y9d{bottom:858.780052px;}
.y135{bottom:863.820065px;}
.y43{bottom:864.360077px;}
.ydb{bottom:868.140060px;}
.y111{bottom:869.220051px;}
.yb7{bottom:873.540081px;}
.y63{bottom:873.720051px;}
.y82{bottom:877.140060px;}
.y2{bottom:879.369000px;}
.y134{bottom:886.860077px;}
.y24{bottom:887.400055px;}
.yf5{bottom:889.380066px;}
.y9c{bottom:889.740074px;}
.y42{bottom:895.860077px;}
.yda{bottom:899.100083px;}
.y110{bottom:900.360077px;}
.y62{bottom:904.680073px;}
.y81{bottom:907.920078px;}
.y133{bottom:910.080059px;}
.y23{bottom:917.280052px;}
.yf4{bottom:920.520058px;}
.y9b{bottom:920.880066px;}
.y41{bottom:927.000068px;}
.yd9{bottom:930.240074px;}
.y10f{bottom:931.320065px;}
.y132{bottom:933.300076px;}
.y61{bottom:935.640060px;}
.y22{bottom:946.980079px;}
.y80{bottom:949.320065px;}
.yf3{bottom:951.480079px;}
.y9a{bottom:951.840054px;}
.y131{bottom:956.340054px;}
.y40{bottom:957.960056px;}
.yd8{bottom:961.200061px;}
.y10e{bottom:962.460056px;}
.y1{bottom:966.726000px;}
.yb6{bottom:966.780053px;}
.y21{bottom:976.860060px;}
.y130{bottom:979.560070px;}
.y7f{bottom:980.460074px;}
.yf2{bottom:982.620072px;}
.y60{bottom:982.980063px;}
.y3f{bottom:989.100065px;}
.yd7{bottom:992.340070px;}
.y10d{bottom:993.420061px;}
.yb5{bottom:997.740074px;}
.y7e{bottom:1001.160067px;}
.y12f{bottom:1002.780069px;}
.yf1{bottom:1013.580059px;}
.y5f{bottom:1013.940067px;}
.y20{bottom:1019.160067px;}
.y3e{bottom:1020.060070px;}
.yd6{bottom:1023.300058px;}
.y10c{bottom:1024.560070px;}
.y12e{bottom:1025.820065px;}
.yb4{bottom:1028.880066px;}
.y7d{bottom:1032.300058px;}
.yf0{bottom:1044.720068px;}
.y5e{bottom:1045.080059px;}
.y12d{bottom:1049.040064px;}
.y3d{bottom:1051.200061px;}
.y10b{bottom:1055.520058px;}
.yb3{bottom:1059.840070px;}
.y1f{bottom:1064.160067px;}
.yd5{bottom:1065.240074px;}
.y7c{bottom:1067.940067px;}
.y12c{bottom:1072.260064px;}
.y5d{bottom:1076.040064px;}
.y1e{bottom:1087.920061px;}
.y3c{bottom:1090.620072px;}
.y10a{bottom:1094.940067px;}
.y12b{bottom:1095.300058px;}
.yd4{bottom:1096.380066px;}
.yb2{bottom:1099.260064px;}
.y7b{bottom:1103.400072px;}
.y5c{bottom:1107.180073px;}
.y1d{bottom:1114.020058px;}
.y12a{bottom:1118.520058px;}
.y3b{bottom:1133.100065px;}
.y1c{bottom:1135.440067px;}
.y109{bottom:1136.520066px;}
.y5b{bottom:1138.140069px;}
.yb1{bottom:1140.300067px;}
.y3a{bottom:1186.380066px;}
.y39{bottom:1190.880066px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h14{height:48.438542px;}
.h15{height:53.602630px;}
.h11{height:53.605104px;}
.h17{height:54.142659px;}
.h2{height:55.080000px;}
.h13{height:56.834206px;}
.hf{height:59.417891px;}
.h16{height:64.581865px;}
.ha{height:64.584457px;}
.he{height:65.886904px;}
.hc{height:69.751423px;}
.hb{height:71.962979px;}
.h10{height:75.563798px;}
.h5{height:78.030000px;}
.hd{height:80.707018px;}
.h9{height:80.730764px;}
.h12{height:83.314049px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:81.000000px;}
.x9{left:89.640000px;}
.x7{left:91.260003px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:111.420001px;}
.xa{left:118.260003px;}
.x6{left:144.900003px;}
.xb{left:151.020006px;}
.x4{left:203.484001px;}
.x8{left:442.079990px;}
.x3{left:454.959000px;}
.xc{left:470.153727px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009750pt;}
.ls1{letter-spacing:0.053252pt;}
.ls3{letter-spacing:0.232157pt;}
.ls4{letter-spacing:59.209595pt;}
.ws1{word-spacing:-17.781918pt;}
.ws2{word-spacing:-14.714115pt;}
.ws3{word-spacing:-13.307422pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-13.499336pt;}
._6{margin-left:-12.083182pt;}
._7{margin-left:-7.918297pt;}
._c{margin-left:-6.093708pt;}
._d{margin-left:-4.660894pt;}
._4{margin-left:-3.750211pt;}
._8{margin-left:-2.255844pt;}
._0{margin-left:-1.174724pt;}
._1{width:0.896253pt;}
._2{width:1.827689pt;}
._3{width:3.104537pt;}
._9{width:10.898190pt;}
._b{width:11.889013pt;}
._a{width:18.843238pt;}
._f{width:748.807336pt;}
._e{width:752.630886pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:42.881600pt;}
.fse{font-size:48.002000pt;}
.fsf{font-size:53.119548pt;}
.fsb{font-size:53.122000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:56.322000pt;}
.fsa{font-size:58.882400pt;}
.fs10{font-size:63.999835pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.002404pt;}
.fs9{font-size:69.122804pt;}
.fs5{font-size:74.882796pt;}
.fs6{font-size:80.003196pt;}
.fsc{font-size:82.563200pt;}
.fs8{font-size:85.123200pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:86.333337pt;}
.yd1{bottom:104.160035pt;}
.y129{bottom:105.280030pt;}
.y5a{bottom:111.200074pt;}
.y99{bottom:112.320069pt;}
.y7a{bottom:113.280030pt;}
.yef{bottom:121.920044pt;}
.y1b{bottom:123.790666pt;}
.y128{bottom:125.600037pt;}
.yd0{bottom:131.680054pt;}
.y59{bottom:138.720032pt;}
.y98{bottom:139.840088pt;}
.y79{bottom:143.360047pt;}
.y127{bottom:146.080079pt;}
.yee{bottom:149.440064pt;}
.ycf{bottom:159.360047pt;}
.y58{bottom:166.400086pt;}
.y126{bottom:166.720032pt;}
.yb0{bottom:171.200074pt;}
.y78{bottom:172.640076pt;}
.y97{bottom:174.880066pt;}
.y12{bottom:175.052000pt;}
.yed{bottom:177.120057pt;}
.y1a{bottom:186.238666pt;}
.y11{bottom:186.252002pt;}
.yce{bottom:186.880066pt;}
.y125{bottom:187.360047pt;}
.y77{bottom:192.320069pt;}
.y57{bottom:193.920044pt;}
.yaf{bottom:196.800049pt;}
.y19{bottom:197.438668pt;}
.y10{bottom:197.452004pt;}
.yec{bottom:204.640076pt;}
.y124{bottom:207.840088pt;}
.y18{bottom:208.638670pt;}
.yf{bottom:208.651996pt;}
.y96{bottom:211.840088pt;}
.ycd{bottom:214.560059pt;}
.y56{bottom:221.600037pt;}
.y76{bottom:223.840088pt;}
.yae{bottom:224.480042pt;}
.y123{bottom:228.480042pt;}
.y17{bottom:231.038664pt;}
.ye{bottom:231.052000pt;}
.yeb{bottom:232.320069pt;}
.y95{bottom:240.800049pt;}
.ycc{bottom:242.080079pt;}
.y16{bottom:242.238666pt;}
.yd{bottom:242.252002pt;}
.y55{bottom:249.120057pt;}
.y108{bottom:249.760071pt;}
.yad{bottom:252.000061pt;}
.y15{bottom:253.438668pt;}
.yc{bottom:253.451999pt;}
.y75{bottom:255.520081pt;}
.y38{bottom:258.880066pt;}
.yea{bottom:259.840088pt;}
.y94{bottom:268.480042pt;}
.ycb{bottom:269.760071pt;}
.y14{bottom:275.838667pt;}
.yb{bottom:275.852001pt;}
.y107{bottom:278.720032pt;}
.y54{bottom:284.160035pt;}
.y13{bottom:287.038667pt;}
.ya{bottom:287.052000pt;}
.ye9{bottom:287.520081pt;}
.y37{bottom:287.840088pt;}
.y74{bottom:288.320069pt;}
.yac{bottom:288.960083pt;}
.y122{bottom:290.240052pt;}
.y93{bottom:296.000061pt;}
.yca{bottom:297.280030pt;}
.y106{bottom:306.400086pt;}
.y9{bottom:309.452000pt;}
.y121{bottom:310.880066pt;}
.ye8{bottom:314.880066pt;}
.y36{bottom:315.520081pt;}
.yab{bottom:316.640076pt;}
.y73{bottom:319.840088pt;}
.y53{bottom:321.920044pt;}
.y92{bottom:323.680054pt;}
.yc9{bottom:324.960083pt;}
.y120{bottom:331.520081pt;}
.y105{bottom:333.920044pt;}
.y35{bottom:343.040039pt;}
.y8{bottom:343.809333pt;}
.yaa{bottom:344.160035pt;}
.y72{bottom:347.520081pt;}
.y91{bottom:351.200074pt;}
.y11f{bottom:352.000061pt;}
.yc8{bottom:352.480042pt;}
.y52{bottom:354.400086pt;}
.y104{bottom:361.600037pt;}
.y7{bottom:362.706666pt;}
.ye7{bottom:370.560059pt;}
.y34{bottom:370.720032pt;}
.ya9{bottom:371.840088pt;}
.y11e{bottom:372.640076pt;}
.y71{bottom:375.200074pt;}
.y90{bottom:378.880066pt;}
.yc7{bottom:380.000061pt;}
.y51{bottom:381.920044pt;}
.y103{bottom:388.960083pt;}
.y11d{bottom:393.280030pt;}
.y33{bottom:398.240052pt;}
.ya8{bottom:399.360047pt;}
.y8f{bottom:406.400086pt;}
.yc6{bottom:408.160035pt;}
.y50{bottom:409.600037pt;}
.y70{bottom:410.240052pt;}
.y102{bottom:417.120057pt;}
.ye6{bottom:425.760071pt;}
.y32{bottom:425.920044pt;}
.ya7{bottom:427.040039pt;}
.y11c{bottom:427.360047pt;}
.y8e{bottom:434.080079pt;}
.y4f{bottom:437.120057pt;}
.y101{bottom:444.640076pt;}
.yc5{bottom:446.400086pt;}
.y6f{bottom:446.720032pt;}
.y31{bottom:453.440064pt;}
.ya6{bottom:454.560059pt;}
.y144{bottom:458.880066pt;}
.y11b{bottom:463.520081pt;}
.y4e{bottom:464.800049pt;}
.y8d{bottom:469.120057pt;}
.yc4{bottom:469.280030pt;}
.y100{bottom:472.160035pt;}
.yff{bottom:472.161324pt;}
.y6e{bottom:472.480042pt;}
.y6{bottom:478.990666pt;}
.y143{bottom:479.520081pt;}
.ye5{bottom:480.960083pt;}
.y30{bottom:481.120057pt;}
.ya5{bottom:482.240052pt;}
.y11a{bottom:488.640076pt;}
.yc3{bottom:492.160035pt;}
.y4d{bottom:492.320069pt;}
.y5{bottom:494.990666pt;}
.y6d{bottom:500.000061pt;}
.y142{bottom:500.160035pt;}
.y8c{bottom:505.280030pt;}
.ye4{bottom:508.480042pt;}
.ya4{bottom:509.760071pt;}
.yc2{bottom:515.200074pt;}
.y2f{bottom:516.160035pt;}
.y119{bottom:516.320069pt;}
.y4c{bottom:520.160035pt;}
.y141{bottom:520.640076pt;}
.yfe{bottom:527.520081pt;}
.y6c{bottom:527.680054pt;}
.y8b{bottom:531.200074pt;}
.ye3{bottom:536.480042pt;}
.yc1{bottom:538.080079pt;}
.y140{bottom:541.280030pt;}
.y118{bottom:543.840088pt;}
.ya3{bottom:546.720032pt;}
.y4b{bottom:547.680054pt;}
.y2e{bottom:553.120057pt;}
.yfd{bottom:555.200074pt;}
.y6b{bottom:555.360047pt;}
.y8a{bottom:558.720032pt;}
.yc0{bottom:560.960083pt;}
.y13f{bottom:561.920044pt;}
.ye2{bottom:564.160035pt;}
.y117{bottom:571.520081pt;}
.y2d{bottom:572.960083pt;}
.ya2{bottom:574.240052pt;}
.y4a{bottom:575.360047pt;}
.y13e{bottom:582.400086pt;}
.yfb{bottom:582.717691pt;}
.yfc{bottom:582.720032pt;}
.y6a{bottom:583.040039pt;}
.ybf{bottom:584.000061pt;}
.y89{bottom:586.240052pt;}
.ye1{bottom:591.680054pt;}
.y2c{bottom:592.960083pt;}
.y116{bottom:599.040039pt;}
.ya1{bottom:601.760071pt;}
.y49{bottom:602.880066pt;}
.y13d{bottom:603.040039pt;}
.yd3{bottom:605.605760pt;}
.ybe{bottom:606.880066pt;}
.y69{bottom:610.560059pt;}
.yfa{bottom:610.720063pt;}
.y2b{bottom:612.480072pt;}
.y88{bottom:613.920044pt;}
.yd2{bottom:620.803385pt;}
.y13c{bottom:623.680054pt;}
.y115{bottom:626.560059pt;}
.ye0{bottom:626.720063pt;}
.y2a{bottom:629.600068pt;}
.ybd{bottom:629.760071pt;}
.y48{bottom:630.400055pt;}
.y68{bottom:638.080048pt;}
.yf9{bottom:638.240052pt;}
.y87{bottom:641.600068pt;}
.ya0{bottom:643.680054pt;}
.y13b{bottom:644.160065pt;}
.ybc{bottom:652.800049pt;}
.y29{bottom:656.160065pt;}
.y47{bottom:658.080048pt;}
.y114{bottom:661.760071pt;}
.ydf{bottom:663.040070pt;}
.y13a{bottom:664.800049pt;}
.yf8{bottom:665.760071pt;}
.yf7{bottom:665.764344pt;}
.y67{bottom:665.920044pt;}
.y3{bottom:668.977329pt;}
.y86{bottom:669.280060pt;}
.y9f{bottom:671.360047pt;}
.ybb{bottom:675.680054pt;}
.y28{bottom:682.720063pt;}
.y139{bottom:685.440064pt;}
.y46{bottom:685.600068pt;}
.yde{bottom:688.800049pt;}
.y66{bottom:693.440064pt;}
.y85{bottom:696.800049pt;}
.yba{bottom:698.560059pt;}
.y9e{bottom:698.880066pt;}
.y138{bottom:705.920044pt;}
.y113{bottom:707.520050pt;}
.y27{bottom:709.120057pt;}
.y45{bottom:713.280060pt;}
.ydd{bottom:716.480072pt;}
.y65{bottom:721.120057pt;}
.yb9{bottom:721.600068pt;}
.y84{bottom:724.480072pt;}
.y137{bottom:726.560059pt;}
.y26{bottom:735.680054pt;}
.y44{bottom:740.800049pt;}
.ydc{bottom:744.000061pt;}
.yb8{bottom:744.480072pt;}
.y112{bottom:745.120057pt;}
.y136{bottom:747.200074pt;}
.y64{bottom:748.480072pt;}
.yf6{bottom:748.640046pt;}
.y83{bottom:752.000061pt;}
.y25{bottom:762.240052pt;}
.y9d{bottom:763.360047pt;}
.y135{bottom:767.840058pt;}
.y43{bottom:768.320069pt;}
.ydb{bottom:771.680054pt;}
.y111{bottom:772.640046pt;}
.yb7{bottom:776.480072pt;}
.y63{bottom:776.640046pt;}
.y82{bottom:779.680054pt;}
.y2{bottom:781.661334pt;}
.y134{bottom:788.320069pt;}
.y24{bottom:788.800049pt;}
.yf5{bottom:790.560059pt;}
.y9c{bottom:790.880066pt;}
.y42{bottom:796.320069pt;}
.yda{bottom:799.200074pt;}
.y110{bottom:800.320069pt;}
.y62{bottom:804.160065pt;}
.y81{bottom:807.040070pt;}
.y133{bottom:808.960053pt;}
.y23{bottom:815.360047pt;}
.yf4{bottom:818.240052pt;}
.y9b{bottom:818.560059pt;}
.y41{bottom:824.000061pt;}
.yd9{bottom:826.880066pt;}
.y10f{bottom:827.840058pt;}
.y132{bottom:829.600068pt;}
.y61{bottom:831.680054pt;}
.y22{bottom:841.760071pt;}
.y80{bottom:843.840058pt;}
.yf3{bottom:845.760071pt;}
.y9a{bottom:846.080048pt;}
.y131{bottom:850.080048pt;}
.y40{bottom:851.520050pt;}
.yd8{bottom:854.400055pt;}
.y10e{bottom:855.520050pt;}
.y1{bottom:859.312000pt;}
.yb6{bottom:859.360047pt;}
.y21{bottom:868.320054pt;}
.y130{bottom:870.720063pt;}
.y7f{bottom:871.520066pt;}
.yf2{bottom:873.440064pt;}
.y60{bottom:873.760056pt;}
.y3f{bottom:879.200058pt;}
.yd7{bottom:882.080063pt;}
.y10d{bottom:883.040055pt;}
.yb5{bottom:886.880066pt;}
.y7e{bottom:889.920060pt;}
.y12f{bottom:891.360062pt;}
.yf1{bottom:900.960053pt;}
.y5f{bottom:901.280060pt;}
.y20{bottom:905.920060pt;}
.y3e{bottom:906.720063pt;}
.yd6{bottom:909.600052pt;}
.y10c{bottom:910.720063pt;}
.y12e{bottom:911.840058pt;}
.yb4{bottom:914.560059pt;}
.y7d{bottom:917.600052pt;}
.yf0{bottom:928.640061pt;}
.y5e{bottom:928.960053pt;}
.y12d{bottom:932.480057pt;}
.y3d{bottom:934.400055pt;}
.y10b{bottom:938.240052pt;}
.yb3{bottom:942.080063pt;}
.y1f{bottom:945.920060pt;}
.yd5{bottom:946.880066pt;}
.y7c{bottom:949.280060pt;}
.y12c{bottom:953.120057pt;}
.y5d{bottom:956.480057pt;}
.y1e{bottom:967.040055pt;}
.y3c{bottom:969.440064pt;}
.y10a{bottom:973.280060pt;}
.y12b{bottom:973.600052pt;}
.yd4{bottom:974.560059pt;}
.yb2{bottom:977.120057pt;}
.y7b{bottom:980.800064pt;}
.y5c{bottom:984.160065pt;}
.y1d{bottom:990.240052pt;}
.y12a{bottom:994.240052pt;}
.y3b{bottom:1007.200058pt;}
.y1c{bottom:1009.280060pt;}
.y109{bottom:1010.240059pt;}
.y5b{bottom:1011.680062pt;}
.yb1{bottom:1013.600060pt;}
.y3a{bottom:1054.560059pt;}
.y39{bottom:1058.560059pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h14{height:43.056481pt;}
.h15{height:47.646782pt;}
.h11{height:47.648981pt;}
.h17{height:48.126808pt;}
.h2{height:48.960000pt;}
.h13{height:50.519294pt;}
.hf{height:52.815903pt;}
.h16{height:57.406102pt;}
.ha{height:57.408406pt;}
.he{height:58.566137pt;}
.hc{height:62.001265pt;}
.hb{height:63.967092pt;}
.h10{height:67.167820pt;}
.h5{height:69.360000pt;}
.hd{height:71.739572pt;}
.h9{height:71.760679pt;}
.h12{height:74.056933pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:72.000000pt;}
.x9{left:79.680000pt;}
.x7{left:81.120003pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:99.040001pt;}
.xa{left:105.120003pt;}
.x6{left:128.800003pt;}
.xb{left:134.240005pt;}
.x4{left:180.874667pt;}
.x8{left:392.959991pt;}
.x3{left:404.408000pt;}
.xc{left:417.914424pt;}
}




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