
    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_3d6ecf6731216751bf95481a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_757efc77e1dcc8ff8549668d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5cba1b2fb346add989047e2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_da8b556e84dea43abe5fb0cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_d75a20f4f6d5947135881914.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_5dff99fa4286dcc39b5494cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_3fb295815207420525e6a052.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_38adecce517ba0dd9353124b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.239258;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:ffd;src:url('chunks/assets/font_abeb147f30f3d7f11f325dc5.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-102.959959px;}
.v2{vertical-align:-90.719964px;}
.v1{vertical-align:-12.239995px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036720px;}
.ls3{letter-spacing:327.392149px;}
.ls1{letter-spacing:972.178891px;}
.ls4{letter-spacing:1038.454865px;}
.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.414713px;}
.ws2{word-spacing:-14.939994px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-2.272847px;}
._2{margin-left:-1.065128px;}
._0{width:1.033349px;}
._17{width:2.155489px;}
._5{width:11.662254px;}
._4{width:21.782185px;}
._15{width:42.419920px;}
._f{width:48.580752px;}
._10{width:51.491813px;}
._d{width:59.871798px;}
._14{width:60.910422px;}
._c{width:192.509203px;}
._16{width:195.917106px;}
._1{width:252.000715px;}
._9{width:575.940672px;}
._8{width:616.971523px;}
._a{width:671.759443px;}
._7{width:675.362898px;}
._12{width:697.692393px;}
._13{width:793.508515px;}
._11{width:797.111969px;}
._3{width:1072.464593px;}
._b{width:1084.564846px;}
._e{width:1152.065061px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(95,95,95);}
.fs3{font-size:29.998068px;}
.fs9{font-size:38.879984px;}
.fs2{font-size:41.475583px;}
.fs8{font-size:41.759983px;}
.fs0{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs5{font-size:120.239952px;}
.fs4{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.520006px;}
.y26{bottom:2.520011px;}
.ya1{bottom:3.599027px;}
.y6d{bottom:3.599075px;}
.y72{bottom:3.599095px;}
.yad{bottom:3.599116px;}
.y78{bottom:3.599126px;}
.yb2{bottom:3.599136px;}
.y47{bottom:3.599156px;}
.yb8{bottom:3.599167px;}
.y9e{bottom:3.779013px;}
.y44{bottom:3.779142px;}
.y6{bottom:57.900277px;}
.y5{bottom:78.600269px;}
.y24{bottom:79.860268px;}
.y23{bottom:97.320261px;}
.y4{bottom:100.560260px;}
.y22{bottom:114.600254px;}
.y3{bottom:118.020253px;}
.y25{bottom:118.920240px;}
.y27{bottom:120.180252px;}
.y21{bottom:131.699947px;}
.y92{bottom:131.700247px;}
.y7{bottom:132.420240px;}
.y2{bottom:135.300246px;}
.y9{bottom:140.880244px;}
.y1{bottom:152.399939px;}
.ycc{bottom:179.759928px;}
.y90{bottom:184.979926px;}
.ycb{bottom:200.459920px;}
.y8f{bottom:207.659917px;}
.yca{bottom:221.159912px;}
.y8e{bottom:230.519908px;}
.yc9{bottom:242.399903px;}
.y8d{bottom:253.199899px;}
.yc8{bottom:265.259894px;}
.y5b{bottom:274.259890px;}
.y1e{bottom:275.159890px;}
.y8c{bottom:276.059890px;}
.yc7{bottom:287.939885px;}
.y5a{bottom:296.939881px;}
.y8b{bottom:298.739881px;}
.y1d{bottom:302.699879px;}
.yc6{bottom:310.799876px;}
.y59{bottom:319.799872px;}
.y8a{bottom:321.599871px;}
.yc5{bottom:333.479867px;}
.y58{bottom:342.479863px;}
.y1c{bottom:344.099862px;}
.y89{bottom:344.279862px;}
.yc4{bottom:356.339857px;}
.y57{bottom:365.339854px;}
.y88{bottom:367.139853px;}
.yc2{bottom:379.199848px;}
.y1b{bottom:385.499846px;}
.yc3{bottom:386.759845px;}
.y56{bottom:388.019845px;}
.y87{bottom:389.819844px;}
.yc1{bottom:410.879836px;}
.y86{bottom:412.679835px;}
.y55{bottom:419.339832px;}
.y1a{bottom:426.899829px;}
.ybf{bottom:433.739827px;}
.y85{bottom:435.359826px;}
.yc0{bottom:441.299823px;}
.ybe{bottom:456.419817px;}
.y84{bottom:458.219817px;}
.y53{bottom:458.399817px;}
.y54{bottom:465.959814px;}
.y19{bottom:468.299813px;}
.ybd{bottom:479.099808px;}
.y83{bottom:480.899808px;}
.y51{bottom:497.279801px;}
.ybc{bottom:501.959799px;}
.y82{bottom:503.759798px;}
.y52{bottom:504.839798px;}
.y18{bottom:509.699796px;}
.ybb{bottom:524.639790px;}
.y81{bottom:526.439789px;}
.y4f{bottom:536.339785px;}
.y50{bottom:543.899782px;}
.y80{bottom:549.299780px;}
.y17{bottom:549.839780px;}
.yba{bottom:553.079779px;}
.y4d{bottom:567.659773px;}
.y7e{bottom:572.159771px;}
.y4e{bottom:575.219770px;}
.yb7{bottom:578.100600px;}
.y49{bottom:578.999768px;}
.y7f{bottom:579.719768px;}
.yb6{bottom:581.699767px;}
.y4a{bottom:586.559765px;}
.yb9{bottom:589.259764px;}
.y4c{bottom:590.339764px;}
.y7d{bottom:594.839762px;}
.y48{bottom:601.859759px;}
.y46{bottom:606.540600px;}
.y45{bottom:610.139756px;}
.y4b{bottom:613.199755px;}
.y7c{bottom:617.519753px;}
.yb4{bottom:620.759752px;}
.y16{bottom:626.339749px;}
.yb5{bottom:628.319749px;}
.y7b{bottom:636.419745px;}
.y43{bottom:640.740600px;}
.y42{bottom:644.519742px;}
.y7a{bottom:655.499738px;}
.yb1{bottom:656.040600px;}
.yb0{bottom:659.639736px;}
.yb3{bottom:667.199733px;}
.y15{bottom:667.919733px;}
.y41{bottom:675.659730px;}
.y77{bottom:680.520600px;}
.y76{bottom:684.119726px;}
.y79{bottom:691.679723px;}
.yae{bottom:692.039723px;}
.y40{bottom:698.339721px;}
.yaf{bottom:699.599720px;}
.yac{bottom:706.080600px;}
.y14{bottom:709.139716px;}
.y3f{bottom:721.199712px;}
.y74{bottom:722.999711px;}
.y75{bottom:730.559708px;}
.yab{bottom:735.419706px;}
.y3e{bottom:743.879702px;}
.y13{bottom:750.539700px;}
.yaa{bottom:758.279697px;}
.y71{bottom:758.460600px;}
.y70{bottom:762.059695px;}
.y3d{bottom:766.739693px;}
.y73{bottom:769.619692px;}
.y3c{bottom:789.419684px;}
.y12{bottom:791.939683px;}
.y6e{bottom:794.459682px;}
.ya9{bottom:796.979681px;}
.y6f{bottom:802.019679px;}
.y6c{bottom:808.320600px;}
.y3b{bottom:812.279675px;}
.y6b{bottom:814.979674px;}
.ya7{bottom:828.479669px;}
.y11{bottom:833.339667px;}
.y6a{bottom:834.059666px;}
.y3a{bottom:834.959666px;}
.ya8{bottom:836.039666px;}
.y69{bottom:852.959659px;}
.y38{bottom:857.819657px;}
.y39{bottom:865.379654px;}
.ya5{bottom:867.539653px;}
.y10{bottom:874.919650px;}
.ya6{bottom:875.099650px;}
.y68{bottom:875.639650px;}
.y36{bottom:880.499648px;}
.y37{bottom:888.059645px;}
.y67{bottom:898.499641px;}
.ya3{bottom:898.679641px;}
.y35{bottom:903.359639px;}
.ya4{bottom:906.239638px;}
.yf{bottom:916.319633px;}
.y66{bottom:921.179632px;}
.ya2{bottom:921.539631px;}
.y33{bottom:926.039630px;}
.ya0{bottom:930.000600px;}
.y34{bottom:933.599627px;}
.y65{bottom:944.039622px;}
.y9f{bottom:945.299622px;}
.y31{bottom:948.899620px;}
.y32{bottom:956.459617px;}
.ye{bottom:957.719617px;}
.y9d{bottom:964.200600px;}
.y63{bottom:966.899613px;}
.y9c{bottom:967.979613px;}
.y30{bottom:971.579611px;}
.y64{bottom:974.459610px;}
.y62{bottom:989.579604px;}
.y2f{bottom:994.439602px;}
.y9b{bottom:996.959601px;}
.yd{bottom:999.119600px;}
.y61{bottom:1008.479597px;}
.y2e{bottom:1017.119593px;}
.y99{bottom:1019.819592px;}
.y9a{bottom:1027.379589px;}
.y60{bottom:1027.559589px;}
.y2d{bottom:1036.919585px;}
.yc{bottom:1040.519584px;}
.y5e{bottom:1046.999581px;}
.y97{bottom:1048.259581px;}
.y5f{bottom:1054.559578px;}
.y98{bottom:1055.819578px;}
.y2c{bottom:1057.619577px;}
.y96{bottom:1070.939572px;}
.y5d{bottom:1077.779569px;}
.y2b{bottom:1077.959569px;}
.yb{bottom:1081.919567px;}
.y95{bottom:1094.519562px;}
.y2a{bottom:1098.659561px;}
.y94{bottom:1118.639553px;}
.y29{bottom:1119.359552px;}
.ya{bottom:1123.139551px;}
.y5c{bottom:1140.059544px;}
.y28{bottom:1140.419544px;}
.y93{bottom:1141.319543px;}
.y20{bottom:1176.779529px;}
.y91{bottom:1193.699523px;}
.y1f{bottom:1196.219522px;}
.h3{height:11.700000px;}
.he{height:18.540000px;}
.hd{height:19.260000px;}
.h5{height:29.441463px;}
.h11{height:40.550609px;}
.h4{height:40.706017px;}
.hc{height:43.554358px;}
.h1{height:58.621969px;}
.h9{height:58.651148px;}
.h10{height:62.327788px;}
.hb{height:69.086222px;}
.h2{height:70.664034px;}
.ha{height:72.562471px;}
.hf{height:75.093720px;}
.h8{height:87.859652px;}
.h7{height:125.406512px;}
.h6{height:150.187440px;}
.h0{height:1263.000000px;}
.w5{width:3.060000px;}
.w1{width:4.680000px;}
.w2{width:7.740000px;}
.w3{width:7.920000px;}
.w4{width:8.100000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.619949px;}
.x4{left:136.080000px;}
.xa{left:152.639939px;}
.x21{left:154.619237px;}
.x22{left:180.179928px;}
.x27{left:202.139919px;}
.x28{left:207.899917px;}
.x42{left:214.919914px;}
.x2e{left:226.619909px;}
.x3b{left:241.020375px;}
.x14{left:249.119900px;}
.x15{left:254.879898px;}
.x3c{left:266.579893px;}
.x16{left:273.959890px;}
.x26{left:276.119890px;}
.x17{left:279.719888px;}
.x18{left:301.859879px;}
.x19{left:315.719874px;}
.x1a{left:321.479871px;}
.x34{left:323.099871px;}
.x35{left:328.859868px;}
.xb{left:339.660000px;}
.x36{left:347.939861px;}
.x37{left:353.699859px;}
.x8{left:356.040133px;}
.x23{left:358.920000px;}
.x1e{left:375.119850px;}
.x40{left:379.079848px;}
.xc{left:382.319847px;}
.xd{left:392.759836px;}
.x2f{left:413.640000px;}
.xe{left:425.879830px;}
.x2b{left:429.840368px;}
.xf{left:431.639827px;}
.x24{left:448.739821px;}
.x25{left:454.499818px;}
.x3d{left:461.880000px;}
.x2d{left:466.919813px;}
.x1{left:468.179813px;}
.x38{left:478.079809px;}
.x31{left:479.519772px;}
.x32{left:507.239797px;}
.x30{left:509.039796px;}
.x33{left:512.999795px;}
.x3e{left:541.619783px;}
.x1f{left:543.599783px;}
.x3f{left:547.379781px;}
.x20{left:548.999780px;}
.x29{left:562.859775px;}
.x2a{left:568.619773px;}
.x1d{left:576.000000px;}
.x11{left:583.919549px;}
.x41{left:589.859764px;}
.x5{left:593.459763px;}
.x1b{left:594.719762px;}
.x1c{left:600.479760px;}
.x10{left:610.019521px;}
.x12{left:626.039750px;}
.x13{left:631.799747px;}
.x39{left:646.559741px;}
.x3a{left:651.959739px;}
.x2c{left:671.220000px;}
.x6{left:679.139728px;}
.x7{left:684.899726px;}
.x9{left:740.340000px;}
.x2{left:765.359694px;}
@media print{
.v3{vertical-align:-91.519963pt;}
.v2{vertical-align:-80.639968pt;}
.v1{vertical-align:-10.879996pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032640pt;}
.ls3{letter-spacing:291.015244pt;}
.ls1{letter-spacing:864.159014pt;}
.ls4{letter-spacing:923.070991pt;}
.ws1{word-spacing:-16.368633pt;}
.ws2{word-spacing:-13.279995pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-2.020309pt;}
._2{margin-left:-0.946781pt;}
._0{width:0.918533pt;}
._17{width:1.915990pt;}
._5{width:10.366448pt;}
._4{width:19.361942pt;}
._15{width:37.706595pt;}
._f{width:43.182891pt;}
._10{width:45.770501pt;}
._d{width:53.219376pt;}
._14{width:54.142597pt;}
._c{width:171.119292pt;}
._16{width:174.148538pt;}
._1{width:224.000635pt;}
._9{width:511.947264pt;}
._8{width:548.419131pt;}
._a{width:597.119505pt;}
._7{width:600.322576pt;}
._12{width:620.171016pt;}
._13{width:705.340902pt;}
._11{width:708.543973pt;}
._3{width:953.301860pt;}
._b{width:964.057641pt;}
._e{width:1024.057832pt;}
.fs3{font-size:26.664949pt;}
.fs9{font-size:34.559986pt;}
.fs2{font-size:36.867185pt;}
.fs8{font-size:37.119985pt;}
.fs0{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs5{font-size:106.879957pt;}
.fs4{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.240005pt;}
.y26{bottom:2.240010pt;}
.ya1{bottom:3.199135pt;}
.y6d{bottom:3.199178pt;}
.y72{bottom:3.199196pt;}
.yad{bottom:3.199214pt;}
.y78{bottom:3.199223pt;}
.yb2{bottom:3.199232pt;}
.y47{bottom:3.199250pt;}
.yb8{bottom:3.199260pt;}
.y9e{bottom:3.359122pt;}
.y44{bottom:3.359238pt;}
.y6{bottom:51.466913pt;}
.y5{bottom:69.866905pt;}
.y24{bottom:70.986905pt;}
.y23{bottom:86.506899pt;}
.y4{bottom:89.386898pt;}
.y22{bottom:101.866893pt;}
.y3{bottom:104.906891pt;}
.y25{bottom:105.706880pt;}
.y27{bottom:106.826891pt;}
.y21{bottom:117.066620pt;}
.y92{bottom:117.066887pt;}
.y7{bottom:117.706880pt;}
.y2{bottom:120.266885pt;}
.y9{bottom:125.226883pt;}
.y1{bottom:135.466612pt;}
.ycc{bottom:159.786603pt;}
.y90{bottom:164.426601pt;}
.ycb{bottom:178.186595pt;}
.y8f{bottom:184.586593pt;}
.yca{bottom:196.586588pt;}
.y8e{bottom:204.906585pt;}
.yc9{bottom:215.466580pt;}
.y8d{bottom:225.066577pt;}
.yc8{bottom:235.786572pt;}
.y5b{bottom:243.786569pt;}
.y1e{bottom:244.586569pt;}
.y8c{bottom:245.386569pt;}
.yc7{bottom:255.946564pt;}
.y5a{bottom:263.946561pt;}
.y8b{bottom:265.546560pt;}
.y1d{bottom:269.066559pt;}
.yc6{bottom:276.266556pt;}
.y59{bottom:284.266553pt;}
.y8a{bottom:285.866552pt;}
.yc5{bottom:296.426548pt;}
.y58{bottom:304.426545pt;}
.y1c{bottom:305.866544pt;}
.y89{bottom:306.026544pt;}
.yc4{bottom:316.746540pt;}
.y57{bottom:324.746537pt;}
.y88{bottom:326.346536pt;}
.yc2{bottom:337.066532pt;}
.y1b{bottom:342.666530pt;}
.yc3{bottom:343.786529pt;}
.y56{bottom:344.906529pt;}
.y87{bottom:346.506528pt;}
.yc1{bottom:365.226521pt;}
.y86{bottom:366.826520pt;}
.y55{bottom:372.746518pt;}
.y1a{bottom:379.466515pt;}
.ybf{bottom:385.546512pt;}
.y85{bottom:386.986512pt;}
.yc0{bottom:392.266510pt;}
.ybe{bottom:405.706504pt;}
.y84{bottom:407.306504pt;}
.y53{bottom:407.466504pt;}
.y54{bottom:414.186501pt;}
.y19{bottom:416.266500pt;}
.ybd{bottom:425.866496pt;}
.y83{bottom:427.466496pt;}
.y51{bottom:442.026490pt;}
.ybc{bottom:446.186488pt;}
.y82{bottom:447.786488pt;}
.y52{bottom:448.746487pt;}
.y18{bottom:453.066485pt;}
.ybb{bottom:466.346480pt;}
.y81{bottom:467.946479pt;}
.y4f{bottom:476.746476pt;}
.y50{bottom:483.466473pt;}
.y80{bottom:488.266471pt;}
.y17{bottom:488.746471pt;}
.yba{bottom:491.626470pt;}
.y4d{bottom:504.586465pt;}
.y7e{bottom:508.586463pt;}
.y4e{bottom:511.306462pt;}
.yb7{bottom:513.867200pt;}
.y49{bottom:514.666461pt;}
.y7f{bottom:515.306461pt;}
.yb6{bottom:517.066460pt;}
.y4a{bottom:521.386458pt;}
.yb9{bottom:523.786457pt;}
.y4c{bottom:524.746457pt;}
.y7d{bottom:528.746455pt;}
.y48{bottom:534.986453pt;}
.y46{bottom:539.147200pt;}
.y45{bottom:542.346450pt;}
.y4b{bottom:545.066449pt;}
.y7c{bottom:548.906447pt;}
.yb4{bottom:551.786446pt;}
.y16{bottom:556.746444pt;}
.yb5{bottom:558.506443pt;}
.y7b{bottom:565.706440pt;}
.y43{bottom:569.547200pt;}
.y42{bottom:572.906438pt;}
.y7a{bottom:582.666434pt;}
.yb1{bottom:583.147200pt;}
.yb0{bottom:586.346432pt;}
.yb3{bottom:593.066429pt;}
.y15{bottom:593.706429pt;}
.y41{bottom:600.586426pt;}
.y77{bottom:604.907200pt;}
.y76{bottom:608.106423pt;}
.y79{bottom:614.826421pt;}
.yae{bottom:615.146421pt;}
.y40{bottom:620.746418pt;}
.yaf{bottom:621.866418pt;}
.yac{bottom:627.627200pt;}
.y14{bottom:630.346415pt;}
.y3f{bottom:641.066410pt;}
.y74{bottom:642.666410pt;}
.y75{bottom:649.386407pt;}
.yab{bottom:653.706405pt;}
.y3e{bottom:661.226402pt;}
.y13{bottom:667.146400pt;}
.yaa{bottom:674.026397pt;}
.y71{bottom:674.187200pt;}
.y70{bottom:677.386396pt;}
.y3d{bottom:681.546394pt;}
.y73{bottom:684.106393pt;}
.y3c{bottom:701.706386pt;}
.y12{bottom:703.946385pt;}
.y6e{bottom:706.186384pt;}
.ya9{bottom:708.426383pt;}
.y6f{bottom:712.906382pt;}
.y6c{bottom:718.507200pt;}
.y3b{bottom:722.026378pt;}
.y6b{bottom:724.426377pt;}
.ya7{bottom:736.426372pt;}
.y11{bottom:740.746370pt;}
.y6a{bottom:741.386370pt;}
.y3a{bottom:742.186370pt;}
.ya8{bottom:743.146369pt;}
.y69{bottom:758.186363pt;}
.y38{bottom:762.506362pt;}
.y39{bottom:769.226359pt;}
.ya5{bottom:771.146358pt;}
.y10{bottom:777.706356pt;}
.ya6{bottom:777.866356pt;}
.y68{bottom:778.346355pt;}
.y36{bottom:782.666354pt;}
.y37{bottom:789.386351pt;}
.y67{bottom:798.666347pt;}
.ya3{bottom:798.826347pt;}
.y35{bottom:802.986345pt;}
.ya4{bottom:805.546344pt;}
.yf{bottom:814.506341pt;}
.y66{bottom:818.826339pt;}
.ya2{bottom:819.146339pt;}
.y33{bottom:823.146337pt;}
.ya0{bottom:826.667200pt;}
.y34{bottom:829.866335pt;}
.y65{bottom:839.146331pt;}
.y9f{bottom:840.266331pt;}
.y31{bottom:843.466329pt;}
.y32{bottom:850.186327pt;}
.ye{bottom:851.306326pt;}
.y9d{bottom:857.067200pt;}
.y63{bottom:859.466323pt;}
.y9c{bottom:860.426322pt;}
.y30{bottom:863.626321pt;}
.y64{bottom:866.186320pt;}
.y62{bottom:879.626315pt;}
.y2f{bottom:883.946313pt;}
.y9b{bottom:886.186312pt;}
.yd{bottom:888.106311pt;}
.y61{bottom:896.426308pt;}
.y2e{bottom:904.106305pt;}
.y99{bottom:906.506304pt;}
.y9a{bottom:913.226301pt;}
.y60{bottom:913.386301pt;}
.y2d{bottom:921.706298pt;}
.yc{bottom:924.906297pt;}
.y5e{bottom:930.666294pt;}
.y97{bottom:931.786294pt;}
.y5f{bottom:937.386292pt;}
.y98{bottom:938.506291pt;}
.y2c{bottom:940.106291pt;}
.y96{bottom:951.946286pt;}
.y5d{bottom:958.026283pt;}
.y2b{bottom:958.186283pt;}
.yb{bottom:961.706282pt;}
.y95{bottom:972.906278pt;}
.y2a{bottom:976.586276pt;}
.y94{bottom:994.346269pt;}
.y29{bottom:994.986269pt;}
.ya{bottom:998.346267pt;}
.y5c{bottom:1013.386261pt;}
.y28{bottom:1013.706261pt;}
.y93{bottom:1014.506261pt;}
.y20{bottom:1046.026248pt;}
.y91{bottom:1061.066242pt;}
.y1f{bottom:1063.306241pt;}
.h3{height:10.400000pt;}
.he{height:16.480000pt;}
.hd{height:17.120000pt;}
.h5{height:26.170190pt;}
.h11{height:36.044986pt;}
.h4{height:36.183126pt;}
.hc{height:38.714985pt;}
.h1{height:52.108417pt;}
.h9{height:52.134354pt;}
.h10{height:55.402478pt;}
.hb{height:61.409975pt;}
.h2{height:62.812475pt;}
.ha{height:64.499974pt;}
.hf{height:66.749973pt;}
.h8{height:78.097469pt;}
.h7{height:111.472455pt;}
.h6{height:133.499947pt;}
.h0{height:1122.666667pt;}
.w5{width:2.720000pt;}
.w1{width:4.160000pt;}
.w2{width:6.880000pt;}
.w3{width:7.040000pt;}
.w4{width:7.200000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.439955pt;}
.x4{left:120.960000pt;}
.xa{left:135.679946pt;}
.x21{left:137.439321pt;}
.x22{left:160.159936pt;}
.x27{left:179.679928pt;}
.x28{left:184.799926pt;}
.x42{left:191.039924pt;}
.x2e{left:201.439919pt;}
.x3b{left:214.240334pt;}
.x14{left:221.439911pt;}
.x15{left:226.559909pt;}
.x3c{left:236.959905pt;}
.x16{left:243.519903pt;}
.x26{left:245.439902pt;}
.x17{left:248.639901pt;}
.x18{left:268.319893pt;}
.x19{left:280.639888pt;}
.x1a{left:285.759886pt;}
.x34{left:287.199885pt;}
.x35{left:292.319883pt;}
.xb{left:301.920000pt;}
.x36{left:309.279876pt;}
.x37{left:314.399874pt;}
.x8{left:316.480119pt;}
.x23{left:319.040000pt;}
.x1e{left:333.439867pt;}
.x40{left:336.959865pt;}
.xc{left:339.839864pt;}
.xd{left:349.119854pt;}
.x2f{left:367.680000pt;}
.xe{left:378.559849pt;}
.x2b{left:382.080327pt;}
.xf{left:383.679847pt;}
.x24{left:398.879840pt;}
.x25{left:403.999838pt;}
.x3d{left:410.560000pt;}
.x2d{left:415.039834pt;}
.x1{left:416.159834pt;}
.x38{left:424.959830pt;}
.x31{left:426.239797pt;}
.x32{left:450.879820pt;}
.x30{left:452.479819pt;}
.x33{left:455.999818pt;}
.x3e{left:481.439807pt;}
.x1f{left:483.199807pt;}
.x3f{left:486.559805pt;}
.x20{left:487.999805pt;}
.x29{left:500.319800pt;}
.x2a{left:505.439798pt;}
.x1d{left:512.000000pt;}
.x11{left:519.039599pt;}
.x41{left:524.319790pt;}
.x5{left:527.519789pt;}
.x1b{left:528.639789pt;}
.x1c{left:533.759786pt;}
.x10{left:542.239574pt;}
.x12{left:556.479777pt;}
.x13{left:561.599775pt;}
.x39{left:574.719770pt;}
.x3a{left:579.519768pt;}
.x2c{left:596.640000pt;}
.x6{left:603.679759pt;}
.x7{left:608.799756pt;}
.x9{left:658.080000pt;}
.x2{left:680.319728pt;}
}




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