
    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_26a91e2737619fad340afa10.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.739000;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_ddc825ea73ea0912f6da635e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_646b23a14dcae7ad6e1b6fc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_3ad130f176ebc7fc51a23e14.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929133;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_d98acd0b5feb4e7802eb3311.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_000fd4d800988ee464104c7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_a86f1824dc31ec006142d3a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_b99a5d00044948e90a51a367.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_a4def6fb42ab87e6cb446faf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_aba4752d26450290b727a00e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_2076755ba6dc78bcd1253d41.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.929133;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_aff4dbd03dd1d4aab0766018.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929000;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);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.636000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.042000px;}
.ls9{letter-spacing:0.066000px;}
.lsb{letter-spacing:0.132000px;}
.lsa{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.660000px;}
.ls4{letter-spacing:4.179000px;}
.ls6{letter-spacing:5.439000px;}
.ls3{letter-spacing:12.510000px;}
.ls1{letter-spacing:1280.304000px;}
.ls0{letter-spacing:1509.339000px;}
.ls7{letter-spacing:1675.027200px;}
.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;}
}
.wsc{word-spacing:-16.680000px;}
.ws0{word-spacing:-11.676000px;}
.ws2{word-spacing:-9.757800px;}
.ws1c{word-spacing:-0.660000px;}
.ws2e{word-spacing:-0.396000px;}
.ws46{word-spacing:-0.198000px;}
.ws1{word-spacing:-0.102000px;}
.ws4{word-spacing:0.000000px;}
.ws3b{word-spacing:0.198000px;}
.ws3a{word-spacing:0.264000px;}
.wsb{word-spacing:0.378000px;}
.ws32{word-spacing:0.396000px;}
.ws2f{word-spacing:0.594000px;}
.wse{word-spacing:0.726000px;}
.ws3f{word-spacing:0.858000px;}
.ws33{word-spacing:0.990000px;}
.ws3c{word-spacing:1.056000px;}
.ws7{word-spacing:1.080000px;}
.ws20{word-spacing:1.122000px;}
.ws26{word-spacing:1.188000px;}
.ws8{word-spacing:1.242000px;}
.ws34{word-spacing:1.254000px;}
.ws24{word-spacing:1.386000px;}
.ws43{word-spacing:1.584000px;}
.ws1b{word-spacing:1.650000px;}
.ws19{word-spacing:1.716000px;}
.ws28{word-spacing:1.980000px;}
.ws42{word-spacing:2.112000px;}
.ws3d{word-spacing:2.310000px;}
.ws37{word-spacing:2.574000px;}
.ws10{word-spacing:2.640000px;}
.ws31{word-spacing:3.102000px;}
.ws41{word-spacing:3.234000px;}
.ws21{word-spacing:3.300000px;}
.ws35{word-spacing:3.630000px;}
.ws39{word-spacing:3.696000px;}
.ws2d{word-spacing:3.762000px;}
.ws14{word-spacing:3.828000px;}
.ws29{word-spacing:3.894000px;}
.ws9{word-spacing:3.942000px;}
.ws47{word-spacing:4.092000px;}
.ws30{word-spacing:4.224000px;}
.ws3e{word-spacing:4.290000px;}
.ws36{word-spacing:4.554000px;}
.ws48{word-spacing:4.620000px;}
.wsa{word-spacing:4.662000px;}
.ws18{word-spacing:4.884000px;}
.ws22{word-spacing:4.950000px;}
.ws44{word-spacing:5.016000px;}
.ws1d{word-spacing:5.214000px;}
.ws38{word-spacing:5.280000px;}
.ws12{word-spacing:5.544000px;}
.ws40{word-spacing:5.610000px;}
.ws16{word-spacing:5.676000px;}
.ws1f{word-spacing:6.468000px;}
.ws1a{word-spacing:6.534000px;}
.ws2c{word-spacing:6.600000px;}
.ws45{word-spacing:6.666000px;}
.ws11{word-spacing:6.732000px;}
.ws25{word-spacing:7.062000px;}
.ws15{word-spacing:7.260000px;}
.ws13{word-spacing:7.986000px;}
.ws27{word-spacing:8.184000px;}
.ws17{word-spacing:8.250000px;}
.ws49{word-spacing:8.448000px;}
.wsf{word-spacing:8.580000px;}
.ws23{word-spacing:8.712000px;}
.ws1e{word-spacing:8.778000px;}
.ws2b{word-spacing:8.844000px;}
.ws2a{word-spacing:9.174000px;}
.wsd{word-spacing:9.324000px;}
.ws6{word-spacing:10.656000px;}
.ws3{word-spacing:13.692000px;}
.ws5{word-spacing:20.538000px;}
._2{margin-left:-10.656000px;}
._8{margin-left:-9.324000px;}
._1{margin-left:-4.443600px;}
._3{margin-left:-2.404800px;}
._a{margin-left:-1.062600px;}
._0{width:1.192800px;}
._b{width:4.639800px;}
._9{width:5.676000px;}
._6{width:7.014000px;}
._c{width:9.160800px;}
._5{width:10.907400px;}
._7{width:12.444600px;}
._4{width:1082.692800px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:21.000000px;}
.fsb{font-size:35.100000px;}
.fs1{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:58.500000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:64.500000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:66.300000px;}
.fs8{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.686450px;}
.y2{bottom:6.185700px;}
.y4{bottom:63.779550px;}
.y21{bottom:102.045750px;}
.y71{bottom:105.752850px;}
.y49{bottom:109.536000px;}
.y20{bottom:114.047250px;}
.y70{bottom:124.150350px;}
.y48{bottom:127.933500px;}
.y1f{bottom:132.423150px;}
.y6f{bottom:142.547850px;}
.y47{bottom:146.331000px;}
.y1e{bottom:149.979150px;}
.y6e{bottom:160.945350px;}
.y1d{bottom:161.161650px;}
.y1c{bottom:176.596650px;}
.y6d{bottom:179.342850px;}
.y46{bottom:183.109500px;}
.y1b{bottom:187.779150px;}
.y6c{bottom:197.740350px;}
.y45{bottom:201.507000px;}
.y6b{bottom:216.137850px;}
.y44{bottom:219.904500px;}
.y6a{bottom:234.535350px;}
.y43{bottom:238.302000px;}
.y69{bottom:252.932850px;}
.y42{bottom:256.699500px;}
.y1a{bottom:261.504900px;}
.y68{bottom:271.330350px;}
.y41{bottom:275.097000px;}
.y19{bottom:277.488900px;}
.y18{bottom:293.472900px;}
.y40{bottom:293.494500px;}
.y67{bottom:308.108850px;}
.y3f{bottom:311.892000px;}
.y17{bottom:313.506900px;}
.y66{bottom:326.506350px;}
.y3e{bottom:330.289500px;}
.y65{bottom:344.903850px;}
.y3d{bottom:348.687000px;}
.y64{bottom:363.301350px;}
.y3c{bottom:367.084500px;}
.y63{bottom:381.698850px;}
.y62{bottom:400.096350px;}
.y3b{bottom:403.863000px;}
.y16{bottom:414.570225px;}
.y61{bottom:418.493850px;}
.y3a{bottom:422.260500px;}
.y15{bottom:430.555350px;}
.y60{bottom:436.891350px;}
.y39{bottom:440.658000px;}
.y14{bottom:452.920350px;}
.y5f{bottom:455.288850px;}
.y38{bottom:459.055500px;}
.y5e{bottom:473.686350px;}
.y37{bottom:477.453000px;}
.y13{bottom:488.133075px;}
.y5d{bottom:492.083850px;}
.y36{bottom:495.850500px;}
.y12{bottom:504.118200px;}
.y35{bottom:514.248000px;}
.y11{bottom:526.483200px;}
.y5c{bottom:528.862350px;}
.y34{bottom:532.645500px;}
.y5b{bottom:547.259850px;}
.y33{bottom:551.043000px;}
.y10{bottom:561.696075px;}
.y5a{bottom:565.657350px;}
.y32{bottom:569.440500px;}
.yf{bottom:577.681200px;}
.y59{bottom:584.054850px;}
.y31{bottom:587.838000px;}
.ye{bottom:600.046200px;}
.y58{bottom:602.452350px;}
.y30{bottom:606.235500px;}
.y57{bottom:620.849850px;}
.y2f{bottom:624.633000px;}
.y56{bottom:639.247350px;}
.yd{bottom:641.632050px;}
.y55{bottom:657.644850px;}
.y2e{bottom:661.411500px;}
.yc{bottom:664.135050px;}
.y54{bottom:676.042350px;}
.y2d{bottom:679.809000px;}
.yb{bottom:693.021900px;}
.y53{bottom:694.439850px;}
.y2c{bottom:698.206500px;}
.y52{bottom:712.837350px;}
.ya{bottom:715.512900px;}
.y2b{bottom:716.604000px;}
.y7b{bottom:717.072900px;}
.y2a{bottom:735.001500px;}
.y7a{bottom:735.470400px;}
.y9{bottom:744.381900px;}
.y51{bottom:749.615850px;}
.y29{bottom:753.399000px;}
.y79{bottom:753.867900px;}
.y50{bottom:768.013350px;}
.y8{bottom:771.386400px;}
.y28{bottom:771.796500px;}
.y78{bottom:772.265400px;}
.y4f{bottom:786.410850px;}
.y27{bottom:790.194000px;}
.y77{bottom:790.662900px;}
.y7{bottom:798.390900px;}
.y4e{bottom:804.808350px;}
.y26{bottom:808.591500px;}
.y76{bottom:809.060400px;}
.y4d{bottom:823.205850px;}
.y25{bottom:826.989000px;}
.y75{bottom:827.457900px;}
.y4c{bottom:841.603350px;}
.y24{bottom:845.386500px;}
.y74{bottom:845.855400px;}
.y4b{bottom:860.000850px;}
.y73{bottom:864.252900px;}
.y6{bottom:875.137200px;}
.y4a{bottom:878.398350px;}
.y23{bottom:880.784400px;}
.y72{bottom:882.650400px;}
.y5{bottom:892.729200px;}
.y1{bottom:911.622000px;}
.y22{bottom:927.831150px;}
.h3{height:15.015000px;}
.hc{height:24.570000px;}
.h10{height:30.912000px;}
.h11{height:30.954000px;}
.he{height:31.206000px;}
.hf{height:33.435000px;}
.h5{height:35.376000px;}
.hd{height:37.800000px;}
.hb{height:40.950000px;}
.ha{height:45.150000px;}
.h4{height:46.200000px;}
.h9{height:54.600000px;}
.h8{height:58.800000px;}
.h2{height:66.330000px;}
.h6{height:71.400000px;}
.h7{height:77.046000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:127.558500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x13{left:106.299150px;}
.x14{left:110.554350px;}
.x17{left:119.055150px;}
.x15{left:145.195650px;}
.x16{left:150.820650px;}
.x4{left:156.336450px;}
.x9{left:158.725950px;}
.x7{left:163.001250px;}
.x3{left:173.344950px;}
.x12{left:197.011725px;}
.xf{left:228.192300px;}
.x6{left:229.634250px;}
.x18{left:233.716200px;}
.x8{left:246.358950px;}
.xe{left:252.499050px;}
.x11{left:253.537350px;}
.xc{left:265.858575px;}
.x5{left:267.465450px;}
.xd{left:282.905850px;}
.x10{left:287.267550px;}
.xb{left:293.865450px;}
.xa{left:312.486750px;}
.x1{left:508.536000px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.232000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.037333pt;}
.ls9{letter-spacing:0.058667pt;}
.lsb{letter-spacing:0.117333pt;}
.lsa{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.586667pt;}
.ls4{letter-spacing:3.714667pt;}
.ls6{letter-spacing:4.834667pt;}
.ls3{letter-spacing:11.120000pt;}
.ls1{letter-spacing:1138.048000pt;}
.ls0{letter-spacing:1341.634667pt;}
.ls7{letter-spacing:1488.913067pt;}
.wsc{word-spacing:-14.826667pt;}
.ws0{word-spacing:-10.378667pt;}
.ws2{word-spacing:-8.673600pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws2e{word-spacing:-0.352000pt;}
.ws46{word-spacing:-0.176000pt;}
.ws1{word-spacing:-0.090667pt;}
.ws4{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.176000pt;}
.ws3a{word-spacing:0.234667pt;}
.wsb{word-spacing:0.336000pt;}
.ws32{word-spacing:0.352000pt;}
.ws2f{word-spacing:0.528000pt;}
.wse{word-spacing:0.645333pt;}
.ws3f{word-spacing:0.762667pt;}
.ws33{word-spacing:0.880000pt;}
.ws3c{word-spacing:0.938667pt;}
.ws7{word-spacing:0.960000pt;}
.ws20{word-spacing:0.997333pt;}
.ws26{word-spacing:1.056000pt;}
.ws8{word-spacing:1.104000pt;}
.ws34{word-spacing:1.114667pt;}
.ws24{word-spacing:1.232000pt;}
.ws43{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.466667pt;}
.ws19{word-spacing:1.525333pt;}
.ws28{word-spacing:1.760000pt;}
.ws42{word-spacing:1.877333pt;}
.ws3d{word-spacing:2.053333pt;}
.ws37{word-spacing:2.288000pt;}
.ws10{word-spacing:2.346667pt;}
.ws31{word-spacing:2.757333pt;}
.ws41{word-spacing:2.874667pt;}
.ws21{word-spacing:2.933333pt;}
.ws35{word-spacing:3.226667pt;}
.ws39{word-spacing:3.285333pt;}
.ws2d{word-spacing:3.344000pt;}
.ws14{word-spacing:3.402667pt;}
.ws29{word-spacing:3.461333pt;}
.ws9{word-spacing:3.504000pt;}
.ws47{word-spacing:3.637333pt;}
.ws30{word-spacing:3.754667pt;}
.ws3e{word-spacing:3.813333pt;}
.ws36{word-spacing:4.048000pt;}
.ws48{word-spacing:4.106667pt;}
.wsa{word-spacing:4.144000pt;}
.ws18{word-spacing:4.341333pt;}
.ws22{word-spacing:4.400000pt;}
.ws44{word-spacing:4.458667pt;}
.ws1d{word-spacing:4.634667pt;}
.ws38{word-spacing:4.693333pt;}
.ws12{word-spacing:4.928000pt;}
.ws40{word-spacing:4.986667pt;}
.ws16{word-spacing:5.045333pt;}
.ws1f{word-spacing:5.749333pt;}
.ws1a{word-spacing:5.808000pt;}
.ws2c{word-spacing:5.866667pt;}
.ws45{word-spacing:5.925333pt;}
.ws11{word-spacing:5.984000pt;}
.ws25{word-spacing:6.277333pt;}
.ws15{word-spacing:6.453333pt;}
.ws13{word-spacing:7.098667pt;}
.ws27{word-spacing:7.274667pt;}
.ws17{word-spacing:7.333333pt;}
.ws49{word-spacing:7.509333pt;}
.wsf{word-spacing:7.626667pt;}
.ws23{word-spacing:7.744000pt;}
.ws1e{word-spacing:7.802667pt;}
.ws2b{word-spacing:7.861333pt;}
.ws2a{word-spacing:8.154667pt;}
.wsd{word-spacing:8.288000pt;}
.ws6{word-spacing:9.472000pt;}
.ws3{word-spacing:12.170667pt;}
.ws5{word-spacing:18.256000pt;}
._2{margin-left:-9.472000pt;}
._8{margin-left:-8.288000pt;}
._1{margin-left:-3.949867pt;}
._3{margin-left:-2.137600pt;}
._a{margin-left:-0.944533pt;}
._0{width:1.060267pt;}
._b{width:4.124267pt;}
._9{width:5.045333pt;}
._6{width:6.234667pt;}
._c{width:8.142933pt;}
._5{width:9.695467pt;}
._7{width:11.061867pt;}
._4{width:962.393600pt;}
.fs0{font-size:18.666667pt;}
.fsb{font-size:31.200000pt;}
.fs1{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:52.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:57.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:58.933333pt;}
.fs8{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.499067pt;}
.y2{bottom:5.498400pt;}
.y4{bottom:56.692933pt;}
.y21{bottom:90.707333pt;}
.y71{bottom:94.002533pt;}
.y49{bottom:97.365333pt;}
.y20{bottom:101.375333pt;}
.y70{bottom:110.355867pt;}
.y48{bottom:113.718667pt;}
.y1f{bottom:117.709467pt;}
.y6f{bottom:126.709200pt;}
.y47{bottom:130.072000pt;}
.y1e{bottom:133.314800pt;}
.y6e{bottom:143.062533pt;}
.y1d{bottom:143.254800pt;}
.y1c{bottom:156.974800pt;}
.y6d{bottom:159.415867pt;}
.y46{bottom:162.764000pt;}
.y1b{bottom:166.914800pt;}
.y6c{bottom:175.769200pt;}
.y45{bottom:179.117333pt;}
.y6b{bottom:192.122533pt;}
.y44{bottom:195.470667pt;}
.y6a{bottom:208.475867pt;}
.y43{bottom:211.824000pt;}
.y69{bottom:224.829200pt;}
.y42{bottom:228.177333pt;}
.y1a{bottom:232.448800pt;}
.y68{bottom:241.182533pt;}
.y41{bottom:244.530667pt;}
.y19{bottom:246.656800pt;}
.y18{bottom:260.864800pt;}
.y40{bottom:260.884000pt;}
.y67{bottom:273.874533pt;}
.y3f{bottom:277.237333pt;}
.y17{bottom:278.672800pt;}
.y66{bottom:290.227867pt;}
.y3e{bottom:293.590667pt;}
.y65{bottom:306.581200pt;}
.y3d{bottom:309.944000pt;}
.y64{bottom:322.934533pt;}
.y3c{bottom:326.297333pt;}
.y63{bottom:339.287867pt;}
.y62{bottom:355.641200pt;}
.y3b{bottom:358.989333pt;}
.y16{bottom:368.506867pt;}
.y61{bottom:371.994533pt;}
.y3a{bottom:375.342667pt;}
.y15{bottom:382.715867pt;}
.y60{bottom:388.347867pt;}
.y39{bottom:391.696000pt;}
.y14{bottom:402.595867pt;}
.y5f{bottom:404.701200pt;}
.y38{bottom:408.049333pt;}
.y5e{bottom:421.054533pt;}
.y37{bottom:424.402667pt;}
.y13{bottom:433.896067pt;}
.y5d{bottom:437.407867pt;}
.y36{bottom:440.756000pt;}
.y12{bottom:448.105067pt;}
.y35{bottom:457.109333pt;}
.y11{bottom:467.985067pt;}
.y5c{bottom:470.099867pt;}
.y34{bottom:473.462667pt;}
.y5b{bottom:486.453200pt;}
.y33{bottom:489.816000pt;}
.y10{bottom:499.285400pt;}
.y5a{bottom:502.806533pt;}
.y32{bottom:506.169333pt;}
.yf{bottom:513.494400pt;}
.y59{bottom:519.159867pt;}
.y31{bottom:522.522667pt;}
.ye{bottom:533.374400pt;}
.y58{bottom:535.513200pt;}
.y30{bottom:538.876000pt;}
.y57{bottom:551.866533pt;}
.y2f{bottom:555.229333pt;}
.y56{bottom:568.219867pt;}
.yd{bottom:570.339600pt;}
.y55{bottom:584.573200pt;}
.y2e{bottom:587.921333pt;}
.yc{bottom:590.342267pt;}
.y54{bottom:600.926533pt;}
.y2d{bottom:604.274667pt;}
.yb{bottom:616.019467pt;}
.y53{bottom:617.279867pt;}
.y2c{bottom:620.628000pt;}
.y52{bottom:633.633200pt;}
.ya{bottom:636.011467pt;}
.y2b{bottom:636.981333pt;}
.y7b{bottom:637.398133pt;}
.y2a{bottom:653.334667pt;}
.y7a{bottom:653.751467pt;}
.y9{bottom:661.672800pt;}
.y51{bottom:666.325200pt;}
.y29{bottom:669.688000pt;}
.y79{bottom:670.104800pt;}
.y50{bottom:682.678533pt;}
.y8{bottom:685.676800pt;}
.y28{bottom:686.041333pt;}
.y78{bottom:686.458133pt;}
.y4f{bottom:699.031867pt;}
.y27{bottom:702.394667pt;}
.y77{bottom:702.811467pt;}
.y7{bottom:709.680800pt;}
.y4e{bottom:715.385200pt;}
.y26{bottom:718.748000pt;}
.y76{bottom:719.164800pt;}
.y4d{bottom:731.738533pt;}
.y25{bottom:735.101333pt;}
.y75{bottom:735.518133pt;}
.y4c{bottom:748.091867pt;}
.y24{bottom:751.454667pt;}
.y74{bottom:751.871467pt;}
.y4b{bottom:764.445200pt;}
.y73{bottom:768.224800pt;}
.y6{bottom:777.899733pt;}
.y4a{bottom:780.798533pt;}
.y23{bottom:782.919467pt;}
.y72{bottom:784.578133pt;}
.y5{bottom:793.537067pt;}
.y1{bottom:810.330667pt;}
.y22{bottom:824.738800pt;}
.h3{height:13.346667pt;}
.hc{height:21.840000pt;}
.h10{height:27.477333pt;}
.h11{height:27.514667pt;}
.he{height:27.738667pt;}
.hf{height:29.720000pt;}
.h5{height:31.445333pt;}
.hd{height:33.600000pt;}
.hb{height:36.400000pt;}
.ha{height:40.133333pt;}
.h4{height:41.066667pt;}
.h9{height:48.533333pt;}
.h8{height:52.266667pt;}
.h2{height:58.960000pt;}
.h6{height:63.466667pt;}
.h7{height:68.485333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:113.385333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x13{left:94.488133pt;}
.x14{left:98.270533pt;}
.x17{left:105.826800pt;}
.x15{left:129.062800pt;}
.x16{left:134.062800pt;}
.x4{left:138.965733pt;}
.x9{left:141.089733pt;}
.x7{left:144.890000pt;}
.x3{left:154.084400pt;}
.x12{left:175.121533pt;}
.xf{left:202.837600pt;}
.x6{left:204.119333pt;}
.x18{left:207.747733pt;}
.x8{left:218.985733pt;}
.xe{left:224.443600pt;}
.x11{left:225.366533pt;}
.xc{left:236.318733pt;}
.x5{left:237.747067pt;}
.xd{left:251.471867pt;}
.x10{left:255.348933pt;}
.xb{left:261.213733pt;}
.xa{left:277.766000pt;}
.x1{left:452.032000pt;}
}




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