
    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_5dbf4695ee560911039c782a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6979aa5651811ac616574ea5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_2de44801a01ebef5a5741f69.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_11481d7653afc79284f76ea3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_88507dddbfd4af3c323fedac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a96dc24f77053fdaa24e37d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.759856px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.759996px;}
.v2{vertical-align:27.360009px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.055375px;}
.ls1{letter-spacing:0.359109px;}
.ls6{letter-spacing:4.690786px;}
.ls4{letter-spacing:32.615251px;}
.ls3{letter-spacing:34.055251px;}
.ls2{letter-spacing:225.359400px;}
.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:-18.000676px;}
.ws4{word-spacing:-15.026225px;}
.ws3{word-spacing:-12.060450px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-4.786211px;}
._15{margin-left:-3.575881px;}
._2{margin-left:-2.428577px;}
._1{margin-left:-1.150872px;}
._0{width:1.151997px;}
._10{width:2.356682px;}
._13{width:3.357347px;}
._b{width:4.510294px;}
._4{width:5.638104px;}
._3{width:6.745191px;}
._d{width:7.788386px;}
._9{width:8.857458px;}
._a{width:10.289636px;}
._16{width:11.443649px;}
._1a{width:12.453374px;}
._57{width:13.598667px;}
._7{width:14.673858px;}
._8{width:15.840381px;}
._6{width:19.720242px;}
._5{width:21.254017px;}
._14{width:22.346152px;}
._c{width:23.610699px;}
._12{width:25.323014px;}
._11{width:26.762505px;}
._41{width:28.659889px;}
._42{width:29.846527px;}
._e{width:32.306713px;}
._f{width:34.116155px;}
._19{width:37.096815px;}
._18{width:38.305439px;}
._33{width:117.364408px;}
._36{width:124.564679px;}
._26{width:147.605544px;}
._37{width:153.365761px;}
._2a{width:156.965896px;}
._35{width:162.726112px;}
._31{width:166.326247px;}
._49{width:168.541502px;}
._4a{width:175.686599px;}
._28{width:177.846680px;}
._39{width:180.726788px;}
._21{width:183.606896px;}
._51{width:185.046951px;}
._2f{width:187.207032px;}
._4c{width:193.687275px;}
._23{width:195.847356px;}
._34{width:198.727464px;}
._4e{width:201.038864px;}
._56{width:203.047627px;}
._1d{width:208.087816px;}
._47{width:212.407978px;}
._3c{width:213.848032px;}
._3f{width:220.328276px;}
._4f{width:221.768330px;}
._27{width:228.968600px;}
._54{width:230.161708px;}
._3d{width:231.848708px;}
._38{width:234.728817px;}
._44{width:237.608925px;}
._52{width:241.179528px;}
._2e{width:246.249249px;}
._53{width:248.409331px;}
._4b{width:257.769682px;}
._22{width:264.969953px;}
._3b{width:273.610277px;}
._50{width:284.410683px;}
._1e{width:288.010818px;}
._46{width:291.833195px;}
._48{width:293.771034px;}
._3e{width:296.651143px;}
._55{width:302.411359px;}
._4d{width:329.299306px;}
._40{width:337.769514px;}
._32{width:367.365111px;}
._43{width:378.091591px;}
._30{width:401.936300px;}
._25{width:537.995489px;}
._29{width:551.472135px;}
._1b{width:570.082819px;}
._2d{width:573.760066px;}
._45{width:575.843036px;}
._20{width:622.982352px;}
._24{width:648.123344px;}
._1f{width:831.828119px;}
._2c{width:835.283124px;}
._58{width:848.684202px;}
._2b{width:867.572118px;}
._1c{width:939.276968px;}
._3a{width:963.530910px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5b{bottom:2.879997px;}
.y57{bottom:2.879998px;}
.y5{bottom:3.240005px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y67{bottom:115.740074px;}
.ya1{bottom:117.000068px;}
.yc6{bottom:119.160049px;}
.y68{bottom:119.700096px;}
.y3c{bottom:126.720085px;}
.y66{bottom:137.160049px;}
.ya0{bottom:137.700096px;}
.yc5{bottom:139.860077px;}
.ya2{bottom:141.660049px;}
.y3b{bottom:147.420043px;}
.y65{bottom:158.760064px;}
.y9f{bottom:159.120072px;}
.yc4{bottom:160.560036px;}
.y3a{bottom:168.120072px;}
.y63{bottom:179.460091px;}
.y9d{bottom:179.820099px;}
.yc3{bottom:181.260064px;}
.y64{bottom:183.420043px;}
.y9e{bottom:183.780052px;}
.y39{bottom:188.820099px;}
.y62{bottom:200.880066px;}
.y9c{bottom:201.240074px;}
.yc2{bottom:201.960091px;}
.y38{bottom:209.520058px;}
.y60{bottom:221.580093px;}
.y9b{bottom:221.940033px;}
.yc1{bottom:222.660049px;}
.y61{bottom:225.540047px;}
.y37{bottom:230.220085px;}
.y5f{bottom:243.000068px;}
.y99{bottom:243.360077px;}
.y36{bottom:250.920043px;}
.y5d{bottom:263.700096px;}
.y98{bottom:264.060036px;}
.y5e{bottom:267.660049px;}
.y9a{bottom:268.020058px;}
.y35{bottom:271.620072px;}
.yc0{bottom:284.760064px;}
.y5c{bottom:285.120072px;}
.y97{bottom:285.480079px;}
.y34{bottom:292.320099px;}
.ybf{bottom:305.460091px;}
.y59{bottom:305.820099px;}
.y95{bottom:306.180039px;}
.y5a{bottom:309.780052px;}
.y96{bottom:310.140060px;}
.y33{bottom:313.020058px;}
.ybe{bottom:326.160049px;}
.y58{bottom:327.240074px;}
.y94{bottom:327.780052px;}
.y32{bottom:333.720085px;}
.ybd{bottom:346.500068px;}
.y55{bottom:347.940033px;}
.y93{bottom:348.480079px;}
.y56{bottom:351.900055px;}
.y31{bottom:354.420043px;}
.ybc{bottom:367.200096px;}
.y54{bottom:369.360077px;}
.y92{bottom:369.900055px;}
.y30{bottom:375.120072px;}
.ybb{bottom:388.260064px;}
.y91{bottom:390.600083px;}
.y53{bottom:390.960091px;}
.y2f{bottom:395.820099px;}
.yba{bottom:408.960091px;}
.y90{bottom:411.660049px;}
.y52{bottom:412.380066px;}
.y2e{bottom:416.520058px;}
.yb9{bottom:429.660049px;}
.y8f{bottom:432.720085px;}
.y51{bottom:433.080093px;}
.y2d{bottom:437.220085px;}
.yb8{bottom:450.360077px;}
.y8e{bottom:453.420043px;}
.y50{bottom:454.140060px;}
.y2c{bottom:457.920043px;}
.yb7{bottom:471.060036px;}
.y8d{bottom:474.120072px;}
.y4f{bottom:477.359616px;}
.y2b{bottom:478.620072px;}
.yb6{bottom:491.760064px;}
.y8c{bottom:494.820099px;}
.y2a{bottom:499.320099px;}
.yb5{bottom:512.460091px;}
.y8b{bottom:515.520058px;}
.y29{bottom:520.020058px;}
.yb4{bottom:533.160049px;}
.y8a{bottom:536.220085px;}
.y28{bottom:540.720085px;}
.yb3{bottom:553.860077px;}
.y89{bottom:556.920043px;}
.y27{bottom:561.060036px;}
.y4e{bottom:561.420043px;}
.yb2{bottom:574.560036px;}
.y88{bottom:577.620072px;}
.y26{bottom:582.120072px;}
.yb1{bottom:595.260064px;}
.y87{bottom:598.320099px;}
.y25{bottom:602.820099px;}
.yb0{bottom:616.680039px;}
.y86{bottom:619.020058px;}
.y24{bottom:623.520058px;}
.yaf{bottom:637.380066px;}
.y85{bottom:639.720085px;}
.y23{bottom:644.220085px;}
.yae{bottom:658.800041px;}
.y84{bottom:660.420043px;}
.y22{bottom:664.920043px;}
.yad{bottom:680.400055px;}
.y83{bottom:681.120072px;}
.y21{bottom:685.620072px;}
.y82{bottom:701.820065px;}
.y20{bottom:706.320065px;}
.y81{bottom:722.520058px;}
.y1f{bottom:726.660049px;}
.y4d{bottom:727.020058px;}
.y80{bottom:743.220051px;}
.yac{bottom:743.940067px;}
.y1e{bottom:747.720051px;}
.y7f{bottom:763.920078px;}
.yab{bottom:764.640060px;}
.y1d{bottom:768.420078px;}
.y7e{bottom:784.620072px;}
.yaa{bottom:786.060070px;}
.y1c{bottom:789.120072px;}
.y7d{bottom:805.320065px;}
.ya9{bottom:807.480079px;}
.y1b{bottom:809.820065px;}
.y7c{bottom:824.580059px;}
.ya8{bottom:828.900055px;}
.y1a{bottom:830.520058px;}
.y7b{bottom:846.720051px;}
.ya7{bottom:850.320065px;}
.y19{bottom:850.860077px;}
.y4c{bottom:851.220051px;}
.y7a{bottom:867.420078px;}
.ya6{bottom:871.020058px;}
.y18{bottom:871.200061px;}
.y4b{bottom:871.920078px;}
.y79{bottom:888.120072px;}
.y17{bottom:888.480079px;}
.ya5{bottom:892.260064px;}
.y4a{bottom:892.620072px;}
.y16{bottom:905.760064px;}
.y78{bottom:908.820065px;}
.ya4{bottom:912.960056px;}
.y49{bottom:913.320065px;}
.y15{bottom:923.400055px;}
.y77{bottom:929.520058px;}
.y48{bottom:934.020058px;}
.y14{bottom:944.460056px;}
.y76{bottom:950.220051px;}
.y47{bottom:954.720051px;}
.y13{bottom:965.160049px;}
.y75{bottom:970.920078px;}
.y46{bottom:975.420061px;}
.y12{bottom:985.500068px;}
.y74{bottom:991.620072px;}
.y45{bottom:996.120072px;}
.y11{bottom:1008.718614px;}
.y73{bottom:1012.320065px;}
.y44{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y72{bottom:1033.740074px;}
.y43{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y70{bottom:1054.440067px;}
.y42{bottom:1058.220068px;}
.y71{bottom:1058.400072px;}
.ye{bottom:1071.720068px;}
.y6f{bottom:1075.860060px;}
.ya3{bottom:1077.480063px;}
.y41{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y6d{bottom:1097.280069px;}
.y40{bottom:1099.620072px;}
.y6e{bottom:1101.240074px;}
.yc{bottom:1112.940067px;}
.y6c{bottom:1118.700061px;}
.y3f{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y6b{bottom:1140.120063px;}
.y3e{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y69{bottom:1160.820065px;}
.y3d{bottom:1161.720068px;}
.y6a{bottom:1164.780069px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.hd{height:12.239937px;}
.hf{height:12.239989px;}
.he{height:12.239997px;}
.hc{height:12.240006px;}
.h3{height:14.579955px;}
.h6{height:33.684460px;}
.hb{height:41.728524px;}
.h4{height:47.982689px;}
.h2{height:50.275326px;}
.h9{height:51.998047px;}
.h12{height:52.419938px;}
.h11{height:56.035321px;}
.ha{height:59.345979px;}
.h10{height:61.044469px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h13{height:65.886904px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w9{width:5.939965px;}
.w5{width:5.939998px;}
.w7{width:5.939999px;}
.w6{width:5.940033px;}
.w8{width:5.940034px;}
.w3{width:7.019989px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x19{left:93.599997px;}
.x48{left:100.799998px;}
.xc{left:106.920001px;}
.x4e{left:112.500000px;}
.x4b{left:114.840002px;}
.x4f{left:115.920001px;}
.x50{left:118.620002px;}
.x8{left:124.558276px;}
.x4c{left:130.680005px;}
.x47{left:133.019998px;}
.x11{left:138.959997px;}
.xa{left:142.739997px;}
.x49{left:176.400003px;}
.x32{left:183.419992px;}
.x12{left:211.139992px;}
.x33{left:212.939999px;}
.x13{left:218.340002px;}
.x51{left:226.800007px;}
.x41{left:268.379998px;}
.xb{left:328.680005px;}
.xd{left:395.279983px;}
.x2e{left:403.019989px;}
.x2f{left:408.959988px;}
.x34{left:430.379998px;}
.x2{left:432.899987px;}
.x14{left:435.779983px;}
.x42{left:437.220017px;}
.x3f{left:440.819996px;}
.x39{left:443.699993px;}
.x9{left:446.395336px;}
.x4a{left:448.379998px;}
.x4d{left:452.879998px;}
.x52{left:457.379998px;}
.x3a{left:463.319996px;}
.x1a{left:466.379998px;}
.x2c{left:468.540012px;}
.x21{left:470.879998px;}
.x1b{left:472.319996px;}
.x2d{left:474.480011px;}
.x22{left:476.819996px;}
.x27{left:478.980011px;}
.x15{left:509.579990px;}
.x43{left:512.279983px;}
.x35{left:514.800007px;}
.xf{left:522.360008px;}
.xe{left:528.839985px;}
.x1c{left:540.720017px;}
.x28{left:543.060001px;}
.x23{left:545.220017px;}
.x1d{left:546.660015px;}
.x29{left:549.000000px;}
.x24{left:551.160015px;}
.x3b{left:554.220017px;}
.x10{left:564.480011px;}
.x17{left:581.580025px;}
.x45{left:585.539978px;}
.x37{left:593.279983px;}
.x16{left:601.740006px;}
.x44{left:605.879998px;}
.x36{left:613.620002px;}
.x30{left:630.899987px;}
.x1e{left:635.399987px;}
.x2a{left:637.559967px;}
.x25{left:639.899987px;}
.x1f{left:641.340019px;}
.x2b{left:643.500000px;}
.x26{left:645.840019px;}
.x3c{left:649.440033px;}
.x3d{left:655.379998px;}
.x20{left:694.799973px;}
.x3e{left:714.779983px;}
.x40{left:719.279983px;}
.x18{left:735.299973px;}
.x46{left:740.340019px;}
.x6{left:746.279983px;}
.x38{left:748.080025px;}
.x5{left:751.139992px;}
.x31{left:753.299973px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v1{vertical-align:-5.119872pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.119996pt;}
.v2{vertical-align:24.320008pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.049222pt;}
.ls1{letter-spacing:0.319208pt;}
.ls6{letter-spacing:4.169587pt;}
.ls4{letter-spacing:28.991334pt;}
.ls3{letter-spacing:30.271334pt;}
.ls2{letter-spacing:200.319467pt;}
.ws1{word-spacing:-16.000601pt;}
.ws4{word-spacing:-13.356644pt;}
.ws3{word-spacing:-10.720400pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-4.254410pt;}
._15{margin-left:-3.178561pt;}
._2{margin-left:-2.158735pt;}
._1{margin-left:-1.022997pt;}
._0{width:1.023997pt;}
._10{width:2.094828pt;}
._13{width:2.984308pt;}
._b{width:4.009151pt;}
._4{width:5.011648pt;}
._3{width:5.995725pt;}
._d{width:6.923010pt;}
._9{width:7.873296pt;}
._a{width:9.146344pt;}
._16{width:10.172132pt;}
._1a{width:11.069666pt;}
._57{width:12.087704pt;}
._7{width:13.043430pt;}
._8{width:14.080339pt;}
._6{width:17.529104pt;}
._5{width:18.892460pt;}
._14{width:19.863246pt;}
._c{width:20.987288pt;}
._12{width:22.509345pt;}
._11{width:23.788894pt;}
._41{width:25.475457pt;}
._42{width:26.530246pt;}
._e{width:28.717079pt;}
._f{width:30.325471pt;}
._19{width:32.974947pt;}
._18{width:34.049279pt;}
._33{width:104.323919pt;}
._36{width:110.724159pt;}
._26{width:131.204928pt;}
._37{width:136.325121pt;}
._2a{width:139.525241pt;}
._35{width:144.645433pt;}
._31{width:147.845553pt;}
._49{width:149.814668pt;}
._4a{width:156.165866pt;}
._28{width:158.085938pt;}
._39{width:160.646034pt;}
._21{width:163.206130pt;}
._51{width:164.486178pt;}
._2f{width:166.406250pt;}
._4c{width:172.166467pt;}
._23{width:174.086539pt;}
._34{width:176.646635pt;}
._4e{width:178.701212pt;}
._56{width:180.486779pt;}
._1d{width:184.966948pt;}
._47{width:188.807092pt;}
._3c{width:190.087140pt;}
._3f{width:195.847356pt;}
._4f{width:197.127404pt;}
._27{width:203.527645pt;}
._54{width:204.588185pt;}
._3d{width:206.087741pt;}
._38{width:208.647837pt;}
._44{width:211.207933pt;}
._52{width:214.381802pt;}
._2e{width:218.888222pt;}
._53{width:220.808294pt;}
._4b{width:229.128606pt;}
._22{width:235.528847pt;}
._3b{width:243.209135pt;}
._50{width:252.809496pt;}
._1e{width:256.009616pt;}
._46{width:259.407285pt;}
._48{width:261.129808pt;}
._3e{width:263.689904pt;}
._55{width:268.810097pt;}
._4d{width:292.710494pt;}
._40{width:300.239568pt;}
._32{width:326.546765pt;}
._43{width:336.081415pt;}
._30{width:357.276711pt;}
._25{width:478.218212pt;}
._29{width:490.197453pt;}
._1b{width:506.740284pt;}
._2d{width:510.008948pt;}
._45{width:511.860476pt;}
._20{width:553.762091pt;}
._24{width:576.109639pt;}
._1f{width:739.402773pt;}
._2c{width:742.473888pt;}
._58{width:754.385957pt;}
._2b{width:771.175216pt;}
._1c{width:834.912860pt;}
._3a{width:856.471920pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5b{bottom:2.559997pt;}
.y57{bottom:2.559998pt;}
.y5{bottom:2.880004pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y67{bottom:102.880066pt;}
.ya1{bottom:104.000061pt;}
.yc6{bottom:105.920044pt;}
.y68{bottom:106.400086pt;}
.y3c{bottom:112.640076pt;}
.y66{bottom:121.920044pt;}
.ya0{bottom:122.400086pt;}
.yc5{bottom:124.320069pt;}
.ya2{bottom:125.920044pt;}
.y3b{bottom:131.040039pt;}
.y65{bottom:141.120057pt;}
.y9f{bottom:141.440064pt;}
.yc4{bottom:142.720032pt;}
.y3a{bottom:149.440064pt;}
.y63{bottom:159.520081pt;}
.y9d{bottom:159.840088pt;}
.yc3{bottom:161.120057pt;}
.y64{bottom:163.040039pt;}
.y9e{bottom:163.360047pt;}
.y39{bottom:167.840088pt;}
.y62{bottom:178.560059pt;}
.y9c{bottom:178.880066pt;}
.yc2{bottom:179.520081pt;}
.y38{bottom:186.240052pt;}
.y60{bottom:196.960083pt;}
.y9b{bottom:197.280030pt;}
.yc1{bottom:197.920044pt;}
.y61{bottom:200.480042pt;}
.y37{bottom:204.640076pt;}
.y5f{bottom:216.000061pt;}
.y99{bottom:216.320069pt;}
.y36{bottom:223.040039pt;}
.y5d{bottom:234.400086pt;}
.y98{bottom:234.720032pt;}
.y5e{bottom:237.920044pt;}
.y9a{bottom:238.240052pt;}
.y35{bottom:241.440064pt;}
.yc0{bottom:253.120057pt;}
.y5c{bottom:253.440064pt;}
.y97{bottom:253.760071pt;}
.y34{bottom:259.840088pt;}
.ybf{bottom:271.520081pt;}
.y59{bottom:271.840088pt;}
.y95{bottom:272.160035pt;}
.y5a{bottom:275.360047pt;}
.y96{bottom:275.680054pt;}
.y33{bottom:278.240052pt;}
.ybe{bottom:289.920044pt;}
.y58{bottom:290.880066pt;}
.y94{bottom:291.360047pt;}
.y32{bottom:296.640076pt;}
.ybd{bottom:308.000061pt;}
.y55{bottom:309.280030pt;}
.y93{bottom:309.760071pt;}
.y56{bottom:312.800049pt;}
.y31{bottom:315.040039pt;}
.ybc{bottom:326.400086pt;}
.y54{bottom:328.320069pt;}
.y92{bottom:328.800049pt;}
.y30{bottom:333.440064pt;}
.ybb{bottom:345.120057pt;}
.y91{bottom:347.200074pt;}
.y53{bottom:347.520081pt;}
.y2f{bottom:351.840088pt;}
.yba{bottom:363.520081pt;}
.y90{bottom:365.920044pt;}
.y52{bottom:366.560059pt;}
.y2e{bottom:370.240052pt;}
.yb9{bottom:381.920044pt;}
.y8f{bottom:384.640076pt;}
.y51{bottom:384.960083pt;}
.y2d{bottom:388.640076pt;}
.yb8{bottom:400.320069pt;}
.y8e{bottom:403.040039pt;}
.y50{bottom:403.680054pt;}
.y2c{bottom:407.040039pt;}
.yb7{bottom:418.720032pt;}
.y8d{bottom:421.440064pt;}
.y4f{bottom:424.319659pt;}
.y2b{bottom:425.440064pt;}
.yb6{bottom:437.120057pt;}
.y8c{bottom:439.840088pt;}
.y2a{bottom:443.840088pt;}
.yb5{bottom:455.520081pt;}
.y8b{bottom:458.240052pt;}
.y29{bottom:462.240052pt;}
.yb4{bottom:473.920044pt;}
.y8a{bottom:476.640076pt;}
.y28{bottom:480.640076pt;}
.yb3{bottom:492.320069pt;}
.y89{bottom:495.040039pt;}
.y27{bottom:498.720032pt;}
.y4e{bottom:499.040039pt;}
.yb2{bottom:510.720032pt;}
.y88{bottom:513.440064pt;}
.y26{bottom:517.440064pt;}
.yb1{bottom:529.120057pt;}
.y87{bottom:531.840088pt;}
.y25{bottom:535.840088pt;}
.yb0{bottom:548.160035pt;}
.y86{bottom:550.240052pt;}
.y24{bottom:554.240052pt;}
.yaf{bottom:566.560059pt;}
.y85{bottom:568.640076pt;}
.y23{bottom:572.640076pt;}
.yae{bottom:585.600037pt;}
.y84{bottom:587.040039pt;}
.y22{bottom:591.040039pt;}
.yad{bottom:604.800049pt;}
.y83{bottom:605.440064pt;}
.y21{bottom:609.440064pt;}
.y82{bottom:623.840058pt;}
.y20{bottom:627.840058pt;}
.y81{bottom:642.240052pt;}
.y1f{bottom:645.920044pt;}
.y4d{bottom:646.240052pt;}
.y80{bottom:660.640046pt;}
.yac{bottom:661.280060pt;}
.y1e{bottom:664.640046pt;}
.y7f{bottom:679.040070pt;}
.yab{bottom:679.680054pt;}
.y1d{bottom:683.040070pt;}
.y7e{bottom:697.440064pt;}
.yaa{bottom:698.720063pt;}
.y1c{bottom:701.440064pt;}
.y7d{bottom:715.840058pt;}
.ya9{bottom:717.760071pt;}
.y1b{bottom:719.840058pt;}
.y7c{bottom:732.960053pt;}
.ya8{bottom:736.800049pt;}
.y1a{bottom:738.240052pt;}
.y7b{bottom:752.640046pt;}
.ya7{bottom:755.840058pt;}
.y19{bottom:756.320069pt;}
.y4c{bottom:756.640046pt;}
.y7a{bottom:771.040070pt;}
.ya6{bottom:774.240052pt;}
.y18{bottom:774.400055pt;}
.y4b{bottom:775.040070pt;}
.y79{bottom:789.440064pt;}
.y17{bottom:789.760071pt;}
.ya5{bottom:793.120057pt;}
.y4a{bottom:793.440064pt;}
.y16{bottom:805.120057pt;}
.y78{bottom:807.840058pt;}
.ya4{bottom:811.520050pt;}
.y49{bottom:811.840058pt;}
.y15{bottom:820.800049pt;}
.y77{bottom:826.240052pt;}
.y48{bottom:830.240052pt;}
.y14{bottom:839.520050pt;}
.y76{bottom:844.640046pt;}
.y47{bottom:848.640046pt;}
.y13{bottom:857.920044pt;}
.y75{bottom:863.040070pt;}
.y46{bottom:867.040055pt;}
.y12{bottom:876.000061pt;}
.y74{bottom:881.440064pt;}
.y45{bottom:885.440064pt;}
.y11{bottom:896.638768pt;}
.y73{bottom:899.840058pt;}
.y44{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y72{bottom:918.880066pt;}
.y43{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y70{bottom:937.280060pt;}
.y42{bottom:940.640061pt;}
.y71{bottom:940.800064pt;}
.ye{bottom:952.640061pt;}
.y6f{bottom:956.320054pt;}
.ya3{bottom:957.760056pt;}
.y41{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y6d{bottom:975.360062pt;}
.y40{bottom:977.440064pt;}
.y6e{bottom:978.880066pt;}
.yc{bottom:989.280060pt;}
.y6c{bottom:994.400055pt;}
.y3f{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y6b{bottom:1013.440056pt;}
.y3e{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y69{bottom:1031.840058pt;}
.y3d{bottom:1032.640061pt;}
.y6a{bottom:1035.360062pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.hd{height:10.879944pt;}
.hf{height:10.879990pt;}
.he{height:10.879997pt;}
.hc{height:10.880005pt;}
.h3{height:12.959960pt;}
.h6{height:29.941742pt;}
.hb{height:37.092021pt;}
.h4{height:42.651279pt;}
.h2{height:44.689179pt;}
.h9{height:46.220486pt;}
.h12{height:46.595500pt;}
.h11{height:49.809175pt;}
.ha{height:52.751981pt;}
.h10{height:54.261750pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h13{height:58.566137pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w9{width:5.279969pt;}
.w5{width:5.279998pt;}
.w7{width:5.279999pt;}
.w6{width:5.280029pt;}
.w8{width:5.280030pt;}
.w3{width:6.239990pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x19{left:83.199997pt;}
.x48{left:89.599998pt;}
.xc{left:95.040001pt;}
.x4e{left:100.000000pt;}
.x4b{left:102.080002pt;}
.x4f{left:103.040001pt;}
.x50{left:105.440002pt;}
.x8{left:110.718468pt;}
.x4c{left:116.160004pt;}
.x47{left:118.239998pt;}
.x11{left:123.519997pt;}
.xa{left:126.879997pt;}
.x49{left:156.800003pt;}
.x32{left:163.039993pt;}
.x12{left:187.679993pt;}
.x33{left:189.279999pt;}
.x13{left:194.080002pt;}
.x51{left:201.600006pt;}
.x41{left:238.559998pt;}
.xb{left:292.160004pt;}
.xd{left:351.359985pt;}
.x2e{left:358.239990pt;}
.x2f{left:363.519989pt;}
.x34{left:382.559998pt;}
.x2{left:384.799988pt;}
.x14{left:387.359985pt;}
.x42{left:388.640015pt;}
.x3f{left:391.839996pt;}
.x39{left:394.399994pt;}
.x9{left:396.795854pt;}
.x4a{left:398.559998pt;}
.x4d{left:402.559998pt;}
.x52{left:406.559998pt;}
.x3a{left:411.839996pt;}
.x1a{left:414.559998pt;}
.x2c{left:416.480011pt;}
.x21{left:418.559998pt;}
.x1b{left:419.839996pt;}
.x2d{left:421.760010pt;}
.x22{left:423.839996pt;}
.x27{left:425.760010pt;}
.x15{left:452.959991pt;}
.x43{left:455.359985pt;}
.x35{left:457.600006pt;}
.xf{left:464.320007pt;}
.xe{left:470.079987pt;}
.x1c{left:480.640015pt;}
.x28{left:482.720001pt;}
.x23{left:484.640015pt;}
.x1d{left:485.920013pt;}
.x29{left:488.000000pt;}
.x24{left:489.920013pt;}
.x3b{left:492.640015pt;}
.x10{left:501.760010pt;}
.x17{left:516.960022pt;}
.x45{left:520.479980pt;}
.x37{left:527.359985pt;}
.x16{left:534.880005pt;}
.x44{left:538.559998pt;}
.x36{left:545.440002pt;}
.x30{left:560.799988pt;}
.x1e{left:564.799988pt;}
.x2a{left:566.719971pt;}
.x25{left:568.799988pt;}
.x1f{left:570.080017pt;}
.x2b{left:572.000000pt;}
.x26{left:574.080017pt;}
.x3c{left:577.280029pt;}
.x3d{left:582.559998pt;}
.x20{left:617.599976pt;}
.x3e{left:635.359985pt;}
.x40{left:639.359985pt;}
.x18{left:653.599976pt;}
.x46{left:658.080017pt;}
.x6{left:663.359985pt;}
.x38{left:664.960022pt;}
.x5{left:667.679993pt;}
.x31{left:669.599976pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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