
    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_f41d9e043c09eaf0f3a96759.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_295f9b4242149c67610941e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c502a10cb1518a650d5a1042.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_0570b9467bb59f31bc751de9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_86b83851981a06a81c2d8a2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_44015daa8f896e8b4e551522.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895508;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_cf33075151fe6ef1480751c3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ff376755504b33fb47236dcb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_0ce09bfb58b7c4f849a4fdbf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_621a60c3cef99d0c07dda89e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891602;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:ffb;src:url('chunks/assets/font_b75b1bdaa0967667e5b9a629.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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:ffc;src:url('chunks/assets/font_545f077183b906fe3d57fcff.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:68.400002px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.022651px;}
.ls2{letter-spacing:0.071791px;}
.ls1{letter-spacing:0.071854px;}
.ls3{letter-spacing:50.997694px;}
.ls4{letter-spacing:55.497685px;}
.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;}
}
.ws0{word-spacing:-34.902001px;}
.ws9{word-spacing:-28.254000px;}
.ws1{word-spacing:-23.268000px;}
.ws7{word-spacing:-19.944001px;}
.ws5{word-spacing:-18.282001px;}
.ws3{word-spacing:-16.620000px;}
.ws6{word-spacing:-16.272001px;}
.ws12{word-spacing:-14.880000px;}
.ws4{word-spacing:-13.296001px;}
.ws8{word-spacing:-0.102000px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:925.342040px;}
.wsf{word-spacing:929.572490px;}
.wsb{word-spacing:957.036216px;}
.wsa{word-spacing:1101.940608px;}
.ws10{word-spacing:1148.794611px;}
.wse{word-spacing:1279.552618px;}
.wsc{word-spacing:1310.788620px;}
.wsd{word-spacing:1373.944624px;}
._a{margin-left:-21.312001px;}
._10{margin-left:-19.140001px;}
._e{margin-left:-17.760000px;}
._9{margin-left:-16.650001px;}
._1{margin-left:-13.365000px;}
._c{margin-left:-10.926000px;}
._7{margin-left:-9.498000px;}
._d{margin-left:-7.992000px;}
._2{margin-left:-6.930000px;}
._13{margin-left:-5.742896px;}
._0{margin-left:-4.374000px;}
._8{margin-left:-3.300000px;}
._3{margin-left:-2.268000px;}
._5{margin-left:-1.125000px;}
._4{width:1.696442px;}
._6{width:2.934000px;}
._11{width:4.218000px;}
._12{width:5.760000px;}
._b{width:143.972234px;}
._f{width:3187.358941px;}
.fcc{color:rgb(32,33,34);}
.fc9{color:rgb(23,28,36);}
.fcb{color:rgb(11,83,148);}
.fc6{color:rgb(0,151,167);}
.fc4{color:rgb(152,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc7{color:rgb(0,92,89);}
.fc1{color:rgb(5,99,193);}
.fca{color:rgb(33,33,33);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000003px;}
.fs10{font-size:54.000002px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000004px;}
.fs9{font-size:72.000002px;}
.fsd{font-size:78.000005px;}
.fs2{font-size:84.000000px;}
.fs13{font-size:96.000006px;}
.fse{font-size:102.000000px;}
.fsf{font-size:108.000003px;}
.fs3{font-size:111.000001px;}
.fs12{font-size:114.000007px;}
.fs1{font-size:126.000004px;}
.fs15{font-size:132.000007px;}
.fsc{font-size:138.000001px;}
.fs14{font-size:149.999999px;}
.fs8{font-size:167.999999px;}
.fs5{font-size:174.000012px;}
.fs16{font-size:204.000001px;}
.fs11{font-size:240.000002px;}
.fs0{font-size:243.000008px;}
.fsb{font-size:258.000002px;}
.fsa{font-size:288.000009px;}
.y0{bottom:0.000000px;}
.yac{bottom:14.167887px;}
.y1f{bottom:15.656093px;}
.y47{bottom:16.983314px;}
.y40{bottom:19.862693px;}
.y73{bottom:26.330546px;}
.y38{bottom:27.471069px;}
.y4a{bottom:28.709979px;}
.y48{bottom:28.980763px;}
.y34{bottom:29.903877px;}
.y78{bottom:31.722840px;}
.yab{bottom:32.167888px;}
.y1e{bottom:33.656094px;}
.y9{bottom:34.705147px;}
.y45{bottom:37.628924px;}
.y8e{bottom:41.953318px;}
.y37{bottom:48.846069px;}
.yaa{bottom:50.167888px;}
.y8d{bottom:59.953318px;}
.y49{bottom:66.509980px;}
.ya9{bottom:68.167889px;}
.y36{bottom:70.221070px;}
.y1d{bottom:79.262295px;}
.y77{bottom:84.183626px;}
.ya8{bottom:86.167889px;}
.y35{bottom:91.101071px;}
.y71{bottom:91.499267px;}
.y72{bottom:91.500459px;}
.ya7{bottom:104.167890px;}
.y1c{bottom:112.562296px;}
.ya{bottom:121.669698px;}
.ya6{bottom:122.167890px;}
.y88{bottom:124.320691px;}
.y3f{bottom:130.077259px;}
.y26{bottom:131.315885px;}
.y76{bottom:136.383623px;}
.ya5{bottom:140.167891px;}
.y1b{bottom:145.862297px;}
.y25{bottom:151.115885px;}
.y97{bottom:151.775113px;}
.y7f{bottom:168.670622px;}
.y24{bottom:170.915886px;}
.ya0{bottom:175.985136px;}
.y1a{bottom:179.162298px;}
.y75{bottom:188.583618px;}
.y96{bottom:211.805092px;}
.y19{bottom:212.462299px;}
.y63{bottom:213.084071px;}
.y8{bottom:215.606006px;}
.y7e{bottom:220.078624px;}
.y70{bottom:226.028684px;}
.y9f{bottom:244.385116px;}
.y18{bottom:245.762323px;}
.y7d{bottom:245.782627px;}
.y86{bottom:246.949193px;}
.y7{bottom:260.876019px;}
.y7c{bottom:271.486628px;}
.y2f{bottom:271.772173px;}
.y46{bottom:277.138085px;}
.y9e{bottom:278.585117px;}
.y17{bottom:279.062335px;}
.ya4{bottom:279.805506px;}
.y95{bottom:289.835083px;}
.y62{bottom:291.384085px;}
.y85{bottom:300.193195px;}
.y23{bottom:300.752241px;}
.y6{bottom:306.146009px;}
.y6f{bottom:311.792448px;}
.y16{bottom:312.362336px;}
.y22{bottom:315.152242px;}
.y9d{bottom:316.385118px;}
.y2e{bottom:322.172152px;}
.y7b{bottom:323.898532px;}
.y15{bottom:345.662348px;}
.y5{bottom:351.416010px;}
.ya3{bottom:351.805508px;}
.y82{bottom:355.194075px;}
.y6e{bottom:355.593638px;}
.y5d{bottom:359.418518px;}
.y58{bottom:361.612673px;}
.y44{bottom:362.691739px;}
.y7a{bottom:363.498533px;}
.y8c{bottom:366.030391px;}
.y94{bottom:367.865063px;}
.y9c{bottom:368.585120px;}
.y61{bottom:369.684087px;}
.y2d{bottom:372.572142px;}
.y33{bottom:377.972131px;}
.y14{bottom:378.962349px;}
.y74{bottom:379.144433px;}
.y3b{bottom:394.624460px;}
.y5c{bottom:394.968283px;}
.y4{bottom:396.686012px;}
.y57{bottom:397.848283px;}
.y79{bottom:403.098534px;}
.y84{bottom:406.681210px;}
.y43{bottom:410.301730px;}
.y6d{bottom:412.255529px;}
.y13{bottom:412.262362px;}
.y2c{bottom:422.972133px;}
.y21{bottom:427.677850px;}
.y93{bottom:427.895065px;}
.y32{bottom:428.372133px;}
.y5b{bottom:431.160344px;}
.y56{bottom:434.040344px;}
.y8b{bottom:438.030393px;}
.y28{bottom:442.772133px;}
.y12{bottom:445.562352px;}
.y60{bottom:447.984101px;}
.y9b{bottom:451.385089px;}
.y42{bottom:457.911726px;}
.y81{bottom:461.682068px;}
.y5a{bottom:466.278998px;}
.y55{bottom:469.454873px;}
.y3a{bottom:472.384440px;}
.y2b{bottom:473.372134px;}
.y31{bottom:478.772134px;}
.y11{bottom:478.862341px;}
.y20{bottom:480.921852px;}
.y6c{bottom:481.778168px;}
.y27{bottom:493.172128px;}
.ya2{bottom:495.805512px;}
.y59{bottom:500.985215px;}
.y54{bottom:501.325730px;}
.y3{bottom:503.660859px;}
.y41{bottom:505.521722px;}
.y92{bottom:505.925068px;}
.y8a{bottom:510.030399px;}
.y10{bottom:512.162331px;}
.y9a{bottom:519.785079px;}
.y2a{bottom:523.772136px;}
.y5f{bottom:526.284092px;}
.y30{bottom:529.172129px;}
.y53{bottom:544.880658px;}
.yf{bottom:545.462321px;}
.y3e{bottom:545.719447px;}
.y39{bottom:550.144438px;}
.y6b{bottom:551.300819px;}
.y99{bottom:553.985075px;}
.y83{bottom:566.413181px;}
.ya1{bottom:567.805518px;}
.y80{bottom:568.170060px;}
.y2{bottom:569.270850px;}
.y29{bottom:574.172131px;}
.ye{bottom:578.762315px;}
.y91{bottom:583.955075px;}
.y98{bottom:591.785071px;}
.y51{bottom:592.546887px;}
.y5e{bottom:593.484091px;}
.y89{bottom:597.947832px;}
.y87{bottom:599.376664px;}
.y6a{bottom:610.025230px;}
.yd{bottom:612.062312px;}
.y3d{bottom:623.479440px;}
.y1{bottom:634.880852px;}
.y52{bottom:636.296451px;}
.y90{bottom:643.985072px;}
.y69{bottom:644.225232px;}
.yc{bottom:645.362313px;}
.y3c{bottom:659.698178px;}
.y68{bottom:678.425233px;}
.yb{bottom:678.662314px;}
.y66{bottom:684.299642px;}
.y50{bottom:687.640157px;}
.y4f{bottom:703.840159px;}
.y4e{bottom:720.040157px;}
.y8f{bottom:733.939371px;}
.y4d{bottom:736.240156px;}
.y65{bottom:742.750388px;}
.y67{bottom:744.023025px;}
.y64{bottom:744.873418px;}
.y4c{bottom:784.437639px;}
.y4b{bottom:842.348509px;}
.h8{height:34.992190px;}
.h17{height:39.313478px;}
.h16{height:39.366212px;}
.h1a{height:40.664063px;}
.h19{height:41.660157px;}
.hb{height:43.066407px;}
.h18{height:43.681641px;}
.h6{height:43.740235px;}
.h9{height:48.114260px;}
.h27{height:48.134766px;}
.hc{height:51.679689px;}
.h1b{height:52.417970px;}
.hf{height:52.488283px;}
.h11{height:56.862309px;}
.h15{height:61.154297px;}
.h4{height:61.236328px;}
.h21{height:69.890629px;}
.h22{height:69.893509px;}
.h12{height:74.358399px;}
.h14{height:78.626956px;}
.h1e{height:82.995122px;}
.h20{height:83.106450px;}
.h5{height:89.049317px;}
.h2{height:91.731448px;}
.h3{height:91.854495px;}
.h13{height:92.100589px;}
.h24{height:96.228521px;}
.h10{height:100.467774px;}
.h23{height:117.919921px;}
.ha{height:122.308593px;}
.h7{height:126.676766px;}
.h1c{height:126.846688px;}
.h25{height:148.517579px;}
.h1f{height:151.506452px;}
.h1d{height:174.960939px;}
.h1{height:177.147955px;}
.he{height:188.083009px;}
.h26{height:192.539064px;}
.hd{height:209.953132px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x1c{left:-286.208379px;}
.x24{left:-276.346314px;}
.x1d{left:-274.517840px;}
.x1f{left:-245.810213px;}
.x20{left:-243.875209px;}
.x23{left:-237.157568px;}
.x22{left:-235.948125px;}
.x1e{left:-213.906506px;}
.x21{left:-212.510046px;}
.x0{left:0.000000px;}
.x14{left:10.125000px;}
.x13{left:13.299213px;}
.x18{left:25.500001px;}
.x2b{left:39.481300px;}
.x42{left:45.113376px;}
.x2{left:47.355946px;}
.x15{left:48.998669px;}
.x2c{left:51.761812px;}
.x10{left:56.533389px;}
.x1{left:58.312560px;}
.x1a{left:59.344490px;}
.x26{left:64.211893px;}
.x43{left:84.825346px;}
.x16{left:105.829728px;}
.x48{left:112.429631px;}
.x5{left:118.213838px;}
.x27{left:119.867259px;}
.x31{left:121.657489px;}
.xf{left:141.478651px;}
.x46{left:158.912102px;}
.x49{left:171.331570px;}
.x9{left:172.487211px;}
.x29{left:190.779752px;}
.x2f{left:193.988571px;}
.x45{left:213.346747px;}
.x4a{left:227.121825px;}
.x37{left:239.951556px;}
.x2a{left:241.487767px;}
.x25{left:262.404229px;}
.x6{left:276.602191px;}
.xc{left:288.053519px;}
.x4b{left:293.004077px;}
.xe{left:305.438285px;}
.x39{left:373.112973px;}
.x35{left:378.528560px;}
.x47{left:390.421370px;}
.x34{left:400.078914px;}
.x38{left:406.143334px;}
.x3b{left:434.746100px;}
.x3a{left:460.249142px;}
.x44{left:483.502861px;}
.xd{left:510.188293px;}
.x3c{left:513.335081px;}
.x2d{left:522.987587px;}
.x3{left:546.800867px;}
.x11{left:568.144736px;}
.x3e{left:570.990648px;}
.x40{left:577.918481px;}
.x30{left:586.939377px;}
.x28{left:594.437302px;}
.x3d{left:627.949962px;}
.x32{left:638.952090px;}
.x8{left:675.384884px;}
.x36{left:730.125023px;}
.x41{left:762.522662px;}
.x7{left:786.389763px;}
.x33{left:822.473126px;}
.x2e{left:842.986602px;}
.x4{left:1046.665946px;}
.x19{left:1064.683747px;}
.x12{left:1079.081255px;}
.xb{left:1157.479395px;}
.x3f{left:1194.314944px;}
.x1b{left:1305.849529px;}
.xa{left:1307.529683px;}
.x17{left:1385.483137px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.800002pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.020134pt;}
.ls2{letter-spacing:0.063814pt;}
.ls1{letter-spacing:0.063870pt;}
.ls3{letter-spacing:45.331283pt;}
.ls4{letter-spacing:49.331275pt;}
.ws0{word-spacing:-31.024001pt;}
.ws9{word-spacing:-25.114667pt;}
.ws1{word-spacing:-20.682667pt;}
.ws7{word-spacing:-17.728001pt;}
.ws5{word-spacing:-16.250668pt;}
.ws3{word-spacing:-14.773333pt;}
.ws6{word-spacing:-14.464000pt;}
.ws12{word-spacing:-13.226667pt;}
.ws4{word-spacing:-11.818667pt;}
.ws8{word-spacing:-0.090667pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:822.526258pt;}
.wsf{word-spacing:826.286658pt;}
.wsb{word-spacing:850.698859pt;}
.wsa{word-spacing:979.502763pt;}
.ws10{word-spacing:1021.150765pt;}
.wse{word-spacing:1137.380105pt;}
.wsc{word-spacing:1165.145440pt;}
.wsd{word-spacing:1221.284110pt;}
._a{margin-left:-18.944001pt;}
._10{margin-left:-17.013334pt;}
._e{margin-left:-15.786667pt;}
._9{margin-left:-14.800000pt;}
._1{margin-left:-11.880000pt;}
._c{margin-left:-9.712000pt;}
._7{margin-left:-8.442667pt;}
._d{margin-left:-7.104000pt;}
._2{margin-left:-6.160000pt;}
._13{margin-left:-5.104797pt;}
._0{margin-left:-3.888000pt;}
._8{margin-left:-2.933333pt;}
._3{margin-left:-2.016000pt;}
._5{margin-left:-1.000000pt;}
._4{width:1.507949pt;}
._6{width:2.608000pt;}
._11{width:3.749334pt;}
._12{width:5.120000pt;}
._b{width:127.975319pt;}
._f{width:2833.207947pt;}
.fs6{font-size:42.666669pt;}
.fs10{font-size:48.000002pt;}
.fs4{font-size:53.333334pt;}
.fs7{font-size:58.666670pt;}
.fs9{font-size:64.000002pt;}
.fsd{font-size:69.333338pt;}
.fs2{font-size:74.666666pt;}
.fs13{font-size:85.333339pt;}
.fse{font-size:90.666667pt;}
.fsf{font-size:96.000003pt;}
.fs3{font-size:98.666667pt;}
.fs12{font-size:101.333339pt;}
.fs1{font-size:112.000004pt;}
.fs15{font-size:117.333340pt;}
.fsc{font-size:122.666668pt;}
.fs14{font-size:133.333332pt;}
.fs8{font-size:149.333333pt;}
.fs5{font-size:154.666677pt;}
.fs16{font-size:181.333334pt;}
.fs11{font-size:213.333335pt;}
.fs0{font-size:216.000007pt;}
.fsb{font-size:229.333335pt;}
.fsa{font-size:256.000008pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:12.593677pt;}
.y1f{bottom:13.916527pt;}
.y47{bottom:15.096279pt;}
.y40{bottom:17.655728pt;}
.y73{bottom:23.404930pt;}
.y38{bottom:24.418728pt;}
.y4a{bottom:25.519982pt;}
.y48{bottom:25.760678pt;}
.y34{bottom:26.581224pt;}
.y78{bottom:28.198080pt;}
.yab{bottom:28.593678pt;}
.y1e{bottom:29.916528pt;}
.y9{bottom:30.849020pt;}
.y45{bottom:33.447932pt;}
.y8e{bottom:37.291838pt;}
.y37{bottom:43.418728pt;}
.yaa{bottom:44.593678pt;}
.y8d{bottom:53.291839pt;}
.y49{bottom:59.119982pt;}
.ya9{bottom:60.593679pt;}
.y36{bottom:62.418729pt;}
.y1d{bottom:70.455373pt;}
.y77{bottom:74.829889pt;}
.ya8{bottom:76.593679pt;}
.y35{bottom:80.978730pt;}
.y71{bottom:81.332682pt;}
.y72{bottom:81.333742pt;}
.ya7{bottom:92.593680pt;}
.y1c{bottom:100.055374pt;}
.ya{bottom:108.150842pt;}
.ya6{bottom:108.593680pt;}
.y88{bottom:110.507280pt;}
.y3f{bottom:115.624231pt;}
.y26{bottom:116.725231pt;}
.y76{bottom:121.229887pt;}
.ya5{bottom:124.593681pt;}
.y1b{bottom:129.655375pt;}
.y25{bottom:134.325231pt;}
.y97{bottom:134.911211pt;}
.y7f{bottom:149.929442pt;}
.y24{bottom:151.925232pt;}
.ya0{bottom:156.431232pt;}
.y1a{bottom:159.255376pt;}
.y75{bottom:167.629882pt;}
.y96{bottom:188.271193pt;}
.y19{bottom:188.855377pt;}
.y63{bottom:189.408063pt;}
.y8{bottom:191.649783pt;}
.y7e{bottom:195.625443pt;}
.y70{bottom:200.914385pt;}
.y9f{bottom:217.231214pt;}
.y18{bottom:218.455398pt;}
.y7d{bottom:218.473446pt;}
.y86{bottom:219.510394pt;}
.y7{bottom:231.889794pt;}
.y7c{bottom:241.321447pt;}
.y2f{bottom:241.575265pt;}
.y46{bottom:246.344965pt;}
.y9e{bottom:247.631215pt;}
.y17{bottom:248.055409pt;}
.ya4{bottom:248.716005pt;}
.y95{bottom:257.631185pt;}
.y62{bottom:259.008075pt;}
.y85{bottom:266.838395pt;}
.y23{bottom:267.335326pt;}
.y6{bottom:272.129786pt;}
.y6f{bottom:277.148843pt;}
.y16{bottom:277.655410pt;}
.y22{bottom:280.135326pt;}
.y9d{bottom:281.231216pt;}
.y2e{bottom:286.375246pt;}
.y7b{bottom:287.909806pt;}
.y15{bottom:307.255421pt;}
.y5{bottom:312.369787pt;}
.ya3{bottom:312.716007pt;}
.y82{bottom:315.728067pt;}
.y6e{bottom:316.083234pt;}
.y5d{bottom:319.483127pt;}
.y58{bottom:321.433487pt;}
.y44{bottom:322.392657pt;}
.y7a{bottom:323.109807pt;}
.y8c{bottom:325.360347pt;}
.y94{bottom:326.991167pt;}
.y9c{bottom:327.631217pt;}
.y61{bottom:328.608077pt;}
.y2d{bottom:331.175238pt;}
.y33{bottom:335.975228pt;}
.y14{bottom:336.855422pt;}
.y74{bottom:337.017274pt;}
.y3b{bottom:350.777298pt;}
.y5c{bottom:351.082918pt;}
.y4{bottom:352.609788pt;}
.y57{bottom:353.642918pt;}
.y79{bottom:358.309808pt;}
.y84{bottom:361.494409pt;}
.y43{bottom:364.712649pt;}
.y6d{bottom:366.449359pt;}
.y13{bottom:366.455433pt;}
.y2c{bottom:375.975229pt;}
.y21{bottom:380.158089pt;}
.y93{bottom:380.351169pt;}
.y32{bottom:380.775229pt;}
.y5b{bottom:383.253639pt;}
.y56{bottom:385.813639pt;}
.y8b{bottom:389.360349pt;}
.y28{bottom:393.575230pt;}
.y12{bottom:396.055424pt;}
.y60{bottom:398.208090pt;}
.y9b{bottom:401.231190pt;}
.y42{bottom:407.032645pt;}
.y81{bottom:410.384060pt;}
.y5a{bottom:414.470220pt;}
.y55{bottom:417.293220pt;}
.y3a{bottom:419.897280pt;}
.y2b{bottom:420.775230pt;}
.y31{bottom:425.575231pt;}
.y11{bottom:425.655415pt;}
.y20{bottom:427.486091pt;}
.y6c{bottom:428.247261pt;}
.y27{bottom:438.375225pt;}
.ya2{bottom:440.716011pt;}
.y59{bottom:445.320191pt;}
.y54{bottom:445.622871pt;}
.y3{bottom:447.698541pt;}
.y41{bottom:449.352641pt;}
.y92{bottom:449.711171pt;}
.y8a{bottom:453.360354pt;}
.y10{bottom:455.255406pt;}
.y9a{bottom:462.031182pt;}
.y2a{bottom:465.575232pt;}
.y5f{bottom:467.808082pt;}
.y30{bottom:470.375226pt;}
.y53{bottom:484.338362pt;}
.yf{bottom:484.855396pt;}
.y3e{bottom:485.083952pt;}
.y39{bottom:489.017279pt;}
.y6b{bottom:490.045173pt;}
.y99{bottom:492.431178pt;}
.y83{bottom:503.478383pt;}
.ya1{bottom:504.716016pt;}
.y80{bottom:505.040053pt;}
.y2{bottom:506.018533pt;}
.y29{bottom:510.375227pt;}
.ye{bottom:514.455391pt;}
.y91{bottom:519.071178pt;}
.y98{bottom:526.031174pt;}
.y51{bottom:526.708344pt;}
.y5e{bottom:527.541414pt;}
.y89{bottom:531.509184pt;}
.y87{bottom:532.779257pt;}
.y6a{bottom:542.244649pt;}
.yd{bottom:544.055388pt;}
.y3d{bottom:554.203947pt;}
.y1{bottom:564.338535pt;}
.y52{bottom:565.596846pt;}
.y90{bottom:572.431175pt;}
.y69{bottom:572.644650pt;}
.yc{bottom:573.655389pt;}
.y3c{bottom:586.398381pt;}
.y68{bottom:603.044651pt;}
.yb{bottom:603.255390pt;}
.y66{bottom:608.266348pt;}
.y50{bottom:611.235696pt;}
.y4f{bottom:625.635697pt;}
.y4e{bottom:640.035695pt;}
.y8f{bottom:652.390552pt;}
.y4d{bottom:654.435694pt;}
.y65{bottom:660.222567pt;}
.y67{bottom:661.353800pt;}
.y64{bottom:662.109705pt;}
.y4c{bottom:697.277902pt;}
.y4b{bottom:748.754230pt;}
.h8{height:31.104169pt;}
.h17{height:34.945314pt;}
.h16{height:34.992189pt;}
.h1a{height:36.145834pt;}
.h19{height:37.031250pt;}
.hb{height:38.281250pt;}
.h18{height:38.828125pt;}
.h6{height:38.880209pt;}
.h9{height:42.768232pt;}
.h27{height:42.786459pt;}
.hc{height:45.937501pt;}
.h1b{height:46.593751pt;}
.hf{height:46.656251pt;}
.h11{height:50.544274pt;}
.h15{height:54.359375pt;}
.h4{height:54.432291pt;}
.h21{height:62.125004pt;}
.h22{height:62.127564pt;}
.h12{height:66.096354pt;}
.h14{height:69.890627pt;}
.h1e{height:73.773442pt;}
.h20{height:73.872400pt;}
.h5{height:79.154948pt;}
.h2{height:81.539065pt;}
.h3{height:81.648440pt;}
.h13{height:81.867190pt;}
.h24{height:85.536463pt;}
.h10{height:89.304688pt;}
.h23{height:104.817707pt;}
.ha{height:108.718750pt;}
.h7{height:112.601570pt;}
.h1c{height:112.752612pt;}
.h25{height:132.015625pt;}
.h1f{height:134.672402pt;}
.h1d{height:155.520834pt;}
.h1{height:157.464849pt;}
.he{height:167.184897pt;}
.h26{height:171.145835pt;}
.hd{height:186.625006pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x1c{left:-254.407448pt;}
.x24{left:-245.641168pt;}
.x1d{left:-244.015858pt;}
.x1f{left:-218.497967pt;}
.x20{left:-216.777964pt;}
.x23{left:-210.806727pt;}
.x22{left:-209.731667pt;}
.x1e{left:-190.139116pt;}
.x21{left:-188.897819pt;}
.x0{left:0.000000pt;}
.x14{left:9.000000pt;}
.x13{left:11.821523pt;}
.x18{left:22.666668pt;}
.x2b{left:35.094489pt;}
.x42{left:40.100778pt;}
.x2{left:42.094174pt;}
.x15{left:43.554372pt;}
.x2c{left:46.010499pt;}
.x10{left:50.251902pt;}
.x1{left:51.833387pt;}
.x1a{left:52.750658pt;}
.x26{left:57.077238pt;}
.x43{left:75.400307pt;}
.x16{left:94.070869pt;}
.x48{left:99.937450pt;}
.x5{left:105.078967pt;}
.x27{left:106.548674pt;}
.x31{left:108.139990pt;}
.xf{left:125.758801pt;}
.x46{left:141.255202pt;}
.x49{left:152.294729pt;}
.x9{left:153.321965pt;}
.x29{left:169.582001pt;}
.x2f{left:172.434286pt;}
.x45{left:189.641553pt;}
.x4a{left:201.886066pt;}
.x37{left:213.290272pt;}
.x2a{left:214.655793pt;}
.x25{left:233.248203pt;}
.x6{left:245.868614pt;}
.xc{left:256.047572pt;}
.x4b{left:260.448068pt;}
.xe{left:271.500698pt;}
.x39{left:331.655976pt;}
.x35{left:336.469831pt;}
.x47{left:347.041218pt;}
.x34{left:355.625701pt;}
.x38{left:361.016297pt;}
.x3b{left:386.440977pt;}
.x3a{left:409.110348pt;}
.x44{left:429.780321pt;}
.xd{left:453.500705pt;}
.x3c{left:456.297850pt;}
.x2d{left:464.877855pt;}
.x3{left:486.045216pt;}
.x11{left:505.017543pt;}
.x3e{left:507.547242pt;}
.x40{left:513.705316pt;}
.x30{left:521.723891pt;}
.x28{left:528.388713pt;}
.x3d{left:558.177744pt;}
.x32{left:567.957413pt;}
.x8{left:600.342119pt;}
.x36{left:649.000021pt;}
.x41{left:677.797922pt;}
.x7{left:699.013122pt;}
.x33{left:731.087223pt;}
.x2e{left:749.321424pt;}
.x4{left:930.369730pt;}
.x19{left:946.385553pt;}
.x12{left:959.183338pt;}
.xb{left:1028.870573pt;}
.x3f{left:1061.613284pt;}
.x1b{left:1160.755137pt;}
.xa{left:1162.248607pt;}
.x17{left:1231.540566pt;}
}




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