
    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_a912ea5f3d0a02fcafc0c350.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_462c128cb4ead6edc6e442dc.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_a5107b3a09f9ad3fa732156c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728516;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_9cc8d95d94fda44ecd1242e5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_08b879daf65d84d7ec9111c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5269a559b5ed17d5ce416460.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.041016;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_b12ceeef2d88fbe996b3c866.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4e46290daaf96d80301796d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_02280ec157e622b1643711f5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d6943455d569c9aec463acf7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250399,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-23.759995px;}
.v5{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439892px;}
.v1{vertical-align:5.759995px;}
.v3{vertical-align:23.759995px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007763px;}
.ls3{letter-spacing:0.179410px;}
.lsa{letter-spacing:0.179478px;}
.lsc{letter-spacing:0.431297px;}
.ls7{letter-spacing:5.039271px;}
.ls1{letter-spacing:8.290696px;}
.ls5{letter-spacing:8.290763px;}
.ls6{letter-spacing:10.079244px;}
.ls9{letter-spacing:12.239298px;}
.lse{letter-spacing:39.970732px;}
.lsb{letter-spacing:39.970799px;}
.ls8{letter-spacing:41.219388px;}
.lsd{letter-spacing:64.085848px;}
.ls4{letter-spacing:64.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;}
}
.ws5{word-spacing:-59.762250px;}
.ws8{word-spacing:-24.799577px;}
.ws7{word-spacing:-24.368280px;}
.ws0{word-spacing:-19.814330px;}
.ws1{word-spacing:-16.560675px;}
.ws6{word-spacing:-13.500563px;}
.ws3{word-spacing:-10.440405px;}
.ws4{word-spacing:-9.000349px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-2.202688px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._1e{width:2.101431px;}
._2{width:3.149217px;}
._a{width:4.921265px;}
._18{width:6.458340px;}
._e{width:8.004240px;}
._d{width:9.185482px;}
._f{width:10.248514px;}
._13{width:11.712796px;}
._14{width:13.182718px;}
._2b{width:14.192477px;}
._15{width:15.202441px;}
._c{width:18.370425px;}
._b{width:20.357210px;}
._12{width:21.757266px;}
._1c{width:22.837364px;}
._22{width:23.946833px;}
._10{width:25.273401px;}
._11{width:26.646029px;}
._1f{width:28.067840px;}
._28{width:29.141928px;}
._1b{width:30.948020px;}
._9{width:32.054157px;}
._8{width:33.121350px;}
._2a{width:34.619929px;}
._25{width:36.131770px;}
._5{width:37.427125px;}
._2e{width:38.578610px;}
._26{width:39.702666px;}
._27{width:40.838366px;}
._2c{width:41.904003px;}
._29{width:43.119275px;}
._24{width:44.318717px;}
._23{width:45.355031px;}
._2d{width:46.686257px;}
._7{width:49.019598px;}
._6{width:51.280885px;}
._19{width:54.782713px;}
._1a{width:56.436096px;}
._20{width:59.906172px;}
._21{width:60.986734px;}
._30{width:85.537436px;}
._16{width:139.165821px;}
._4{width:179.423963px;}
._2f{width:182.546453px;}
._17{width:201.416539px;}
._3{width:426.760162px;}
._32{width:593.324122px;}
._31{width:1683.282123px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs6{font-size:36.001395px;}
.fs5{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.fs7{font-size:107.824249px;}
.fs8{font-size:129.388214px;}
.y0{bottom:0.000000px;}
.y13{bottom:3.599997px;}
.yd{bottom:3.600005px;}
.y10{bottom:3.600014px;}
.y8{bottom:3.779984px;}
.y7{bottom:301.500068px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y65{bottom:341.820099px;}
.y8e{bottom:346.320099px;}
.y70{bottom:357.300041px;}
.y8d{bottom:358.560036px;}
.y3a{bottom:361.620072px;}
.y64{bottom:361.800041px;}
.y6b{bottom:372.960091px;}
.y78{bottom:374.040047px;}
.y63{bottom:377.460091px;}
.y39{bottom:380.520058px;}
.y62{bottom:388.440033px;}
.y6f{bottom:389.700096px;}
.y6a{bottom:392.940033px;}
.y38{bottom:399.420043px;}
.y69{bottom:405.180039px;}
.y77{bottom:406.080093px;}
.y61{bottom:408.420043px;}
.y8c{bottom:410.760064px;}
.y37{bottom:418.500068px;}
.y74{bottom:419.400055px;}
.y60{bottom:420.660049px;}
.y6e{bottom:424.980079px;}
.y8b{bottom:429.660049px;}
.y36{bottom:437.400055px;}
.y73{bottom:439.560036px;}
.y90{bottom:443.700096px;}
.y5f{bottom:444.060036px;}
.y8a{bottom:448.740074px;}
.y72{bottom:451.800041px;}
.y35{bottom:456.480079px;}
.y8f{bottom:462.600083px;}
.y5e{bottom:462.960091px;}
.y89{bottom:467.640060px;}
.y34{bottom:475.380066px;}
.y71{bottom:481.500068px;}
.y5d{bottom:481.860077px;}
.y88{bottom:486.540047px;}
.y33{bottom:493.920043px;}
.y76{bottom:500.580093px;}
.y5c{bottom:500.940033px;}
.y87{bottom:505.620072px;}
.y32{bottom:513.360077px;}
.y5b{bottom:519.840088px;}
.y86{bottom:524.520058px;}
.y31{bottom:532.260064px;}
.y5a{bottom:538.920043px;}
.y85{bottom:543.600083px;}
.y30{bottom:552.060036px;}
.y59{bottom:557.820099px;}
.y84{bottom:562.140060px;}
.y2f{bottom:570.960091px;}
.y58{bottom:576.720085px;}
.y83{bottom:579.420043px;}
.y2e{bottom:589.680039px;}
.y82{bottom:592.920043px;}
.y57{bottom:595.800041px;}
.y2d{bottom:609.300041px;}
.y56{bottom:614.700096px;}
.y80{bottom:615.960885px;}
.y2c{bottom:628.380066px;}
.y55{bottom:633.780052px;}
.y2b{bottom:648.360077px;}
.y79{bottom:651.064330px;}
.y54{bottom:652.680039px;}
.y2a{bottom:667.440033px;}
.y53{bottom:671.400055px;}
.y68{bottom:671.760064px;}
.y29{bottom:686.340088px;}
.y6d{bottom:690.300076px;}
.y52{bottom:690.660049px;}
.y28{bottom:705.240074px;}
.y67{bottom:709.200061px;}
.y51{bottom:709.560070px;}
.y7a{bottom:717.664726px;}
.y27{bottom:724.320065px;}
.y50{bottom:728.640060px;}
.y26{bottom:743.220051px;}
.y4f{bottom:747.540081px;}
.y25{bottom:762.300076px;}
.y4e{bottom:766.620072px;}
.y24{bottom:781.200061px;}
.y7b{bottom:784.436277px;}
.y4d{bottom:785.520058px;}
.y23{bottom:800.100083px;}
.y4c{bottom:804.420078px;}
.y22{bottom:819.180073px;}
.y4b{bottom:823.500068px;}
.y21{bottom:838.080059px;}
.y4a{bottom:842.400055px;}
.y7c{bottom:851.036713px;}
.y20{bottom:857.160049px;}
.y49{bottom:861.480079px;}
.y1f{bottom:876.060070px;}
.y75{bottom:880.020058px;}
.y48{bottom:880.380066px;}
.y1e{bottom:894.600083px;}
.y91{bottom:898.920078px;}
.y47{bottom:899.280052px;}
.y1d{bottom:914.040081px;}
.y7d{bottom:917.821399px;}
.y66{bottom:918.000068px;}
.y46{bottom:918.360077px;}
.y1c{bottom:929.880066px;}
.y45{bottom:937.260064px;}
.y1b{bottom:949.680073px;}
.y44{bottom:956.340054px;}
.y1a{bottom:968.760064px;}
.y43{bottom:975.240074px;}
.y7e{bottom:984.592950px;}
.y19{bottom:985.860060px;}
.y42{bottom:994.140060px;}
.y18{bottom:1004.760064px;}
.y41{bottom:1013.220068px;}
.y17{bottom:1023.840070px;}
.y40{bottom:1032.120072px;}
.y16{bottom:1042.740074px;}
.y7f{bottom:1051.193366px;}
.y3f{bottom:1051.200061px;}
.y15{bottom:1060.380066px;}
.y14{bottom:1063.980063px;}
.y3e{bottom:1070.100065px;}
.y12{bottom:1079.460074px;}
.y11{bottom:1083.060070px;}
.y3d{bottom:1089.000068px;}
.y81{bottom:1093.863546px;}
.yf{bottom:1098.360060px;}
.ye{bottom:1101.960074px;}
.y3c{bottom:1108.080059px;}
.yc{bottom:1117.260064px;}
.yb{bottom:1120.860068px;}
.y6c{bottom:1126.620063px;}
.y3b{bottom:1126.980063px;}
.ya{bottom:1139.040064px;}
.y9{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h6{height:4.128911px;}
.h7{height:5.116137px;}
.hb{height:18.539994px;}
.hc{height:18.539996px;}
.h9{height:18.540003px;}
.ha{height:18.540011px;}
.h5{height:19.259996px;}
.h16{height:31.518799px;}
.h2{height:38.682276px;}
.h17{height:47.278337px;}
.h3{height:47.450215px;}
.h19{height:47.963912px;}
.h8{height:49.908440px;}
.he{height:52.321150px;}
.h10{height:53.079850px;}
.h11{height:54.598475px;}
.h13{height:57.994708px;}
.hd{height:58.835679px;}
.hf{height:58.839845px;}
.h12{height:59.434739px;}
.h15{height:60.321665px;}
.h14{height:60.321804px;}
.h18{height:60.321939px;}
.h1a{height:60.321944px;}
.h4{height:63.037524px;}
.h1b{height:107.245114px;}
.h1c{height:132.483928px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:4.139991px;}
.w2{width:4.320030px;}
.w3{width:8.099945px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:166.860008px;}
.x5{left:175.319996px;}
.x21{left:178.560001px;}
.xd{left:185.400003px;}
.x19{left:193.860008px;}
.x1a{left:199.259994px;}
.x22{left:202.319996px;}
.x18{left:207.719999px;}
.x14{left:215.099997px;}
.x17{left:220.860008px;}
.x2{left:223.560001px;}
.x13{left:229.319996px;}
.x1{left:237.240006px;}
.x1d{left:246.601569px;}
.x1c{left:260.285550px;}
.xe{left:281.159998px;}
.x11{left:291.420010px;}
.x1b{left:301.324298px;}
.x12{left:318.420010px;}
.x10{left:330.300007px;}
.x1f{left:345.058416px;}
.x1e{left:362.704436px;}
.x15{left:375.300007px;}
.x3{left:383.759994px;}
.x6{left:427.500000px;}
.xf{left:442.439999px;}
.x4{left:450.540012px;}
.x7{left:458.279983px;}
.xa{left:501.300007px;}
.x8{left:572.759994px;}
.xb{left:581.039978px;}
.x20{left:670.500000px;}
.x9{left:725.940033px;}
.xc{left:729.899987px;}
@media print{
.v4{vertical-align:-21.119996pt;}
.v5{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279904pt;}
.v1{vertical-align:5.119996pt;}
.v3{vertical-align:21.119996pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006900pt;}
.ls3{letter-spacing:0.159476pt;}
.lsa{letter-spacing:0.159536pt;}
.lsc{letter-spacing:0.383375pt;}
.ls7{letter-spacing:4.479352pt;}
.ls1{letter-spacing:7.369507pt;}
.ls5{letter-spacing:7.369567pt;}
.ls6{letter-spacing:8.959328pt;}
.ls9{letter-spacing:10.879376pt;}
.lse{letter-spacing:35.529539pt;}
.lsb{letter-spacing:35.529599pt;}
.ls8{letter-spacing:36.639456pt;}
.lsd{letter-spacing:56.965198pt;}
.ls4{letter-spacing:56.965258pt;}
.ws5{word-spacing:-53.122000pt;}
.ws8{word-spacing:-22.044069pt;}
.ws7{word-spacing:-21.660693pt;}
.ws0{word-spacing:-17.612738pt;}
.ws1{word-spacing:-14.720600pt;}
.ws6{word-spacing:-12.000500pt;}
.ws3{word-spacing:-9.280360pt;}
.ws4{word-spacing:-8.000310pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-1.957945pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._1e{width:1.867939pt;}
._2{width:2.799304pt;}
._a{width:4.374458pt;}
._18{width:5.740747pt;}
._e{width:7.114880pt;}
._d{width:8.164873pt;}
._f{width:9.109790pt;}
._13{width:10.411374pt;}
._14{width:11.717972pt;}
._2b{width:12.615535pt;}
._15{width:13.513281pt;}
._c{width:16.329266pt;}
._b{width:18.095297pt;}
._12{width:19.339792pt;}
._1c{width:20.299879pt;}
._22{width:21.286074pt;}
._10{width:22.465246pt;}
._11{width:23.685359pt;}
._1f{width:24.949191pt;}
._28{width:25.903936pt;}
._1b{width:27.509351pt;}
._9{width:28.492584pt;}
._8{width:29.441200pt;}
._2a{width:30.773270pt;}
._25{width:32.117129pt;}
._5{width:33.268556pt;}
._2e{width:34.292098pt;}
._26{width:35.291258pt;}
._27{width:36.300770pt;}
._2c{width:37.248003pt;}
._29{width:38.328245pt;}
._24{width:39.394415pt;}
._23{width:40.315583pt;}
._2d{width:41.498895pt;}
._7{width:43.572976pt;}
._6{width:45.583009pt;}
._19{width:48.695745pt;}
._1a{width:50.165419pt;}
._20{width:53.249930pt;}
._21{width:54.210430pt;}
._30{width:76.033276pt;}
._16{width:123.702952pt;}
._4{width:159.487967pt;}
._2f{width:162.263514pt;}
._17{width:179.036924pt;}
._3{width:379.342366pt;}
._32{width:527.399219pt;}
._31{width:1496.250776pt;}
.fs3{font-size:5.120200pt;}
.fs6{font-size:32.001240pt;}
.fs5{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.fs7{font-size:95.843777pt;}
.fs8{font-size:115.011745pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:3.199997pt;}
.yd{bottom:3.200004pt;}
.y10{bottom:3.200012pt;}
.y8{bottom:3.359986pt;}
.y7{bottom:268.000061pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y65{bottom:303.840088pt;}
.y8e{bottom:307.840088pt;}
.y70{bottom:317.600037pt;}
.y8d{bottom:318.720032pt;}
.y3a{bottom:321.440064pt;}
.y64{bottom:321.600037pt;}
.y6b{bottom:331.520081pt;}
.y78{bottom:332.480042pt;}
.y63{bottom:335.520081pt;}
.y39{bottom:338.240052pt;}
.y62{bottom:345.280030pt;}
.y6f{bottom:346.400086pt;}
.y6a{bottom:349.280030pt;}
.y38{bottom:355.040039pt;}
.y69{bottom:360.160035pt;}
.y77{bottom:360.960083pt;}
.y61{bottom:363.040039pt;}
.y8c{bottom:365.120057pt;}
.y37{bottom:372.000061pt;}
.y74{bottom:372.800049pt;}
.y60{bottom:373.920044pt;}
.y6e{bottom:377.760071pt;}
.y8b{bottom:381.920044pt;}
.y36{bottom:388.800049pt;}
.y73{bottom:390.720032pt;}
.y90{bottom:394.400086pt;}
.y5f{bottom:394.720032pt;}
.y8a{bottom:398.880066pt;}
.y72{bottom:401.600037pt;}
.y35{bottom:405.760071pt;}
.y8f{bottom:411.200074pt;}
.y5e{bottom:411.520081pt;}
.y89{bottom:415.680054pt;}
.y34{bottom:422.560059pt;}
.y71{bottom:428.000061pt;}
.y5d{bottom:428.320069pt;}
.y88{bottom:432.480042pt;}
.y33{bottom:439.040039pt;}
.y76{bottom:444.960083pt;}
.y5c{bottom:445.280030pt;}
.y87{bottom:449.440064pt;}
.y32{bottom:456.320069pt;}
.y5b{bottom:462.080079pt;}
.y86{bottom:466.240052pt;}
.y31{bottom:473.120057pt;}
.y5a{bottom:479.040039pt;}
.y85{bottom:483.200074pt;}
.y30{bottom:490.720032pt;}
.y59{bottom:495.840088pt;}
.y84{bottom:499.680054pt;}
.y2f{bottom:507.520081pt;}
.y58{bottom:512.640076pt;}
.y83{bottom:515.040039pt;}
.y2e{bottom:524.160035pt;}
.y82{bottom:527.040039pt;}
.y57{bottom:529.600037pt;}
.y2d{bottom:541.600037pt;}
.y56{bottom:546.400086pt;}
.y80{bottom:547.520787pt;}
.y2c{bottom:558.560059pt;}
.y55{bottom:563.360047pt;}
.y2b{bottom:576.320069pt;}
.y79{bottom:578.723849pt;}
.y54{bottom:580.160035pt;}
.y2a{bottom:593.280030pt;}
.y53{bottom:596.800049pt;}
.y68{bottom:597.120057pt;}
.y29{bottom:610.080079pt;}
.y6d{bottom:613.600068pt;}
.y52{bottom:613.920044pt;}
.y28{bottom:626.880066pt;}
.y67{bottom:630.400055pt;}
.y51{bottom:630.720063pt;}
.y7a{bottom:637.924201pt;}
.y27{bottom:643.840058pt;}
.y50{bottom:647.680054pt;}
.y26{bottom:660.640046pt;}
.y4f{bottom:664.480072pt;}
.y25{bottom:677.600068pt;}
.y4e{bottom:681.440064pt;}
.y24{bottom:694.400055pt;}
.y7b{bottom:697.276691pt;}
.y4d{bottom:698.240052pt;}
.y23{bottom:711.200074pt;}
.y4c{bottom:715.040070pt;}
.y22{bottom:728.160065pt;}
.y4b{bottom:732.000061pt;}
.y21{bottom:744.960053pt;}
.y4a{bottom:748.800049pt;}
.y7c{bottom:756.477079pt;}
.y20{bottom:761.920044pt;}
.y49{bottom:765.760071pt;}
.y1f{bottom:778.720063pt;}
.y75{bottom:782.240052pt;}
.y48{bottom:782.560059pt;}
.y1e{bottom:795.200074pt;}
.y91{bottom:799.040070pt;}
.y47{bottom:799.360047pt;}
.y1d{bottom:812.480072pt;}
.y7d{bottom:815.841243pt;}
.y66{bottom:816.000061pt;}
.y46{bottom:816.320069pt;}
.y1c{bottom:826.560059pt;}
.y45{bottom:833.120057pt;}
.y1b{bottom:844.160065pt;}
.y44{bottom:850.080048pt;}
.y1a{bottom:861.120057pt;}
.y43{bottom:866.880066pt;}
.y7e{bottom:875.193733pt;}
.y19{bottom:876.320054pt;}
.y42{bottom:883.680054pt;}
.y18{bottom:893.120057pt;}
.y41{bottom:900.640061pt;}
.y17{bottom:910.080063pt;}
.y40{bottom:917.440064pt;}
.y16{bottom:926.880066pt;}
.y7f{bottom:934.394103pt;}
.y3f{bottom:934.400055pt;}
.y15{bottom:942.560059pt;}
.y14{bottom:945.760056pt;}
.y3e{bottom:951.200058pt;}
.y12{bottom:959.520066pt;}
.y11{bottom:962.720063pt;}
.y3d{bottom:968.000061pt;}
.y81{bottom:972.323152pt;}
.yf{bottom:976.320054pt;}
.ye{bottom:979.520066pt;}
.y3c{bottom:984.960053pt;}
.yc{bottom:993.120057pt;}
.yb{bottom:996.320061pt;}
.y6c{bottom:1001.440056pt;}
.y3b{bottom:1001.760056pt;}
.ya{bottom:1012.480057pt;}
.y9{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h6{height:3.670143pt;}
.h7{height:4.547678pt;}
.hb{height:16.479995pt;}
.hc{height:16.479996pt;}
.h9{height:16.480003pt;}
.ha{height:16.480010pt;}
.h5{height:17.119996pt;}
.h16{height:28.016711pt;}
.h2{height:34.384245pt;}
.h17{height:42.025188pt;}
.h3{height:42.177969pt;}
.h19{height:42.634589pt;}
.h8{height:44.363058pt;}
.he{height:46.507688pt;}
.h10{height:47.182089pt;}
.h11{height:48.531978pt;}
.h13{height:51.550851pt;}
.hd{height:52.298382pt;}
.hf{height:52.302085pt;}
.h12{height:52.830879pt;}
.h15{height:53.619258pt;}
.h14{height:53.619382pt;}
.h18{height:53.619502pt;}
.h1a{height:53.619506pt;}
.h4{height:56.033355pt;}
.h1b{height:95.328991pt;}
.h1c{height:117.763491pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:3.679992pt;}
.w2{width:3.840027pt;}
.w3{width:7.199951pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:148.320007pt;}
.x5{left:155.839996pt;}
.x21{left:158.720001pt;}
.xd{left:164.800003pt;}
.x19{left:172.320007pt;}
.x1a{left:177.119995pt;}
.x22{left:179.839996pt;}
.x18{left:184.639999pt;}
.x14{left:191.199997pt;}
.x17{left:196.320007pt;}
.x2{left:198.720001pt;}
.x13{left:203.839996pt;}
.x1{left:210.880005pt;}
.x1d{left:219.201395pt;}
.x1c{left:231.364933pt;}
.xe{left:249.919998pt;}
.x11{left:259.040009pt;}
.x1b{left:267.843820pt;}
.x12{left:283.040009pt;}
.x10{left:293.600006pt;}
.x1f{left:306.718592pt;}
.x1e{left:322.403943pt;}
.x15{left:333.600006pt;}
.x3{left:341.119995pt;}
.x6{left:380.000000pt;}
.xf{left:393.279999pt;}
.x4{left:400.480011pt;}
.x7{left:407.359985pt;}
.xa{left:445.600006pt;}
.x8{left:509.119995pt;}
.xb{left:516.479980pt;}
.x20{left:596.000000pt;}
.x9{left:645.280029pt;}
.xc{left:648.799988pt;}
}




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