
    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_248ec25b9a51922c4a1c59df.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.834473;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_228084e9671baae14dc1167c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_83f86f249408103569c5a192.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.099000;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_86b14168592fa2d267da6f36.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094000;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_3e6c9528070fbb1085edc827.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708000;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_4772e1f92325531a078fe859.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.842000;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_46d33aff4b9d4c2628ad74bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_d8d88ef51cbfd81daa6783b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708000;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_4772e1f92325531a078fe859.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.842000;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_51e8533e26bcabbea74add57.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.094000;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_a261617e8d64316b847227fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.099000;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_83416bbd1636bdf6865c44c7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.948000;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:ffe;src:url('chunks/assets/font_9dfd3eb97f93bf14bcd4c0eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.842000;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:fff;src:url('chunks/assets/font_4772e1f92325531a078fe859.woff2')format("woff");}.fff{font-family:fff;line-height:0.842000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.499400px;}
.ls5{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-0.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.540000px;}
.lsc{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.452000px;}
.lsb{letter-spacing:2.196000px;}
.ls7{letter-spacing:3.600000px;}
.ls3{letter-spacing:4.800000px;}
.ls6{letter-spacing:12.600000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0{word-spacing:-59.760000px;}
.ws3{word-spacing:-12.600000px;}
.wsc{word-spacing:-12.420000px;}
.ws8{word-spacing:-11.340000px;}
.ws2{word-spacing:-4.800000px;}
.ws6{word-spacing:-3.600000px;}
.ws9{word-spacing:-1.200000px;}
.wsa{word-spacing:-0.540000px;}
.wsb{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:0.600000px;}
.ws5{word-spacing:1.200000px;}
.ws7{word-spacing:1620.174000px;}
._a{margin-left:-12.600000px;}
._10{margin-left:-9.567000px;}
._d{margin-left:-7.806000px;}
._12{margin-left:-6.322800px;}
._1{margin-left:-4.800000px;}
._4{margin-left:-3.368400px;}
._0{margin-left:-2.160000px;}
._8{margin-left:-1.062000px;}
._9{width:1.350000px;}
._b{width:2.494800px;}
._c{width:3.537000px;}
._3{width:4.800000px;}
._e{width:6.233400px;}
._5{width:7.753800px;}
._2{width:9.594000px;}
._f{width:10.755000px;}
._7{width:14.316000px;}
._6{width:15.768000px;}
._11{width:38.167200px;}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs8{font-size:90.000000px;}
.fs3{font-size:120.000000px;}
.fs2{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:26.100000px;}
.y27{bottom:28.390800px;}
.y28{bottom:29.515650px;}
.y1{bottom:50.220000px;}
.y23{bottom:59.527500px;}
.y4b{bottom:62.326800px;}
.yb{bottom:63.573900px;}
.y74{bottom:65.772600px;}
.y90{bottom:66.617700px;}
.y22{bottom:77.527500px;}
.y8f{bottom:82.817700px;}
.y73{bottom:83.772600px;}
.y4a{bottom:86.704800px;}
.y21{bottom:95.527500px;}
.y8e{bottom:99.017700px;}
.y72{bottom:101.772600px;}
.y49{bottom:104.704800px;}
.y20{bottom:113.527500px;}
.y71{bottom:119.772600px;}
.y48{bottom:122.704800px;}
.y1f{bottom:131.527500px;}
.y8d{bottom:135.017700px;}
.y70{bottom:137.772600px;}
.y47{bottom:147.082650px;}
.y8c{bottom:153.018000px;}
.y6f{bottom:155.772000px;}
.y8b{bottom:171.018000px;}
.y46{bottom:171.460500px;}
.y6e{bottom:173.772000px;}
.y8a{bottom:189.018000px;}
.y6d{bottom:191.772000px;}
.y45{bottom:195.838500px;}
.y89{bottom:207.018000px;}
.y6c{bottom:209.772000px;}
.y44{bottom:213.838500px;}
.y88{bottom:225.018000px;}
.y6b{bottom:227.772000px;}
.y43{bottom:238.216500px;}
.y1e{bottom:239.527500px;}
.y87{bottom:243.018000px;}
.y6a{bottom:245.772000px;}
.y42{bottom:256.216500px;}
.y86{bottom:261.018000px;}
.y69{bottom:263.772000px;}
.y1d{bottom:275.527500px;}
.y85{bottom:279.018000px;}
.y41{bottom:280.594500px;}
.y68{bottom:281.772000px;}
.y1c{bottom:293.527500px;}
.y84{bottom:297.018000px;}
.y40{bottom:298.594500px;}
.y67{bottom:299.772000px;}
.y1b{bottom:309.727500px;}
.y83{bottom:315.018000px;}
.y66{bottom:317.772000px;}
.y3f{bottom:322.972500px;}
.y1a{bottom:325.927500px;}
.y82{bottom:333.018000px;}
.y65{bottom:335.772000px;}
.y3e{bottom:340.972500px;}
.y19{bottom:342.127500px;}
.y81{bottom:351.018000px;}
.y64{bottom:353.772000px;}
.y18{bottom:358.327500px;}
.y3d{bottom:365.350500px;}
.y80{bottom:369.018000px;}
.y63{bottom:371.772000px;}
.y17{bottom:374.527500px;}
.y3c{bottom:383.350500px;}
.y7f{bottom:387.018000px;}
.y62{bottom:389.772000px;}
.y16{bottom:390.727500px;}
.y7e{bottom:405.018000px;}
.y15{bottom:406.927500px;}
.y3b{bottom:407.728500px;}
.y61{bottom:407.772000px;}
.y7d{bottom:423.018000px;}
.y14{bottom:423.127500px;}
.y3a{bottom:425.728500px;}
.y60{bottom:425.772000px;}
.y13{bottom:439.327500px;}
.y7c{bottom:441.018000px;}
.y5f{bottom:443.772000px;}
.ya{bottom:444.834000px;}
.y39{bottom:450.106500px;}
.y12{bottom:455.527500px;}
.y7b{bottom:459.018000px;}
.y5e{bottom:461.772000px;}
.y38{bottom:468.106500px;}
.y9{bottom:470.034000px;}
.y11{bottom:471.727500px;}
.y7a{bottom:477.018000px;}
.y5d{bottom:479.772000px;}
.y10{bottom:492.180000px;}
.y37{bottom:492.484500px;}
.y79{bottom:495.018000px;}
.y8{bottom:495.234000px;}
.y5c{bottom:497.772000px;}
.y36{bottom:510.484500px;}
.y78{bottom:513.018000px;}
.yf{bottom:514.431000px;}
.y5b{bottom:515.772000px;}
.y7{bottom:524.685000px;}
.y77{bottom:531.018000px;}
.ye{bottom:532.431000px;}
.y5a{bottom:533.772000px;}
.y35{bottom:534.862500px;}
.y76{bottom:549.018000px;}
.y26{bottom:549.528000px;}
.yd{bottom:550.431000px;}
.y59{bottom:551.772000px;}
.y34{bottom:552.862500px;}
.y75{bottom:567.018000px;}
.yc{bottom:568.431000px;}
.y58{bottom:569.772000px;}
.y33{bottom:570.862500px;}
.y6{bottom:585.885000px;}
.y57{bottom:587.772000px;}
.y32{bottom:595.240500px;}
.y93{bottom:600.673500px;}
.y56{bottom:605.772000px;}
.y31{bottom:613.240500px;}
.y92{bottom:616.873500px;}
.y55{bottom:623.772000px;}
.y5{bottom:630.885000px;}
.y91{bottom:633.073500px;}
.y30{bottom:637.618500px;}
.y54{bottom:659.772000px;}
.y2f{bottom:661.996500px;}
.y2e{bottom:679.996500px;}
.y53{bottom:681.372000px;}
.y9c{bottom:693.661500px;}
.y52{bottom:702.972000px;}
.y2d{bottom:704.374500px;}
.y9b{bottom:709.861500px;}
.ya1{bottom:709.890000px;}
.y2c{bottom:722.374500px;}
.y9a{bottom:726.061500px;}
.ya0{bottom:735.810000px;}
.y99{bottom:742.261500px;}
.y51{bottom:742.572000px;}
.y2b{bottom:746.752500px;}
.y98{bottom:758.461500px;}
.y50{bottom:760.572000px;}
.y9f{bottom:761.730000px;}
.y2a{bottom:771.130500px;}
.y97{bottom:774.661500px;}
.y4{bottom:776.686500px;}
.y4f{bottom:778.572000px;}
.y9e{bottom:787.650000px;}
.y29{bottom:789.130500px;}
.y96{bottom:790.861500px;}
.y4e{bottom:796.572000px;}
.y3{bottom:798.285000px;}
.y25{bottom:802.335000px;}
.y95{bottom:807.061500px;}
.y2{bottom:819.886500px;}
.y24{bottom:822.135000px;}
.y94{bottom:823.261500px;}
.y4d{bottom:832.572000px;}
.y4c{bottom:848.772000px;}
.hc{height:33.648000px;}
.hf{height:40.230000px;}
.hb{height:42.120000px;}
.he{height:44.700000px;}
.h9{height:48.168000px;}
.ha{height:53.280000px;}
.h8{height:53.520000px;}
.h2{height:62.211094px;}
.hd{height:63.936000px;}
.h4{height:64.224000px;}
.h7{height:74.928000px;}
.h10{height:88.330078px;}
.h6{height:107.040000px;}
.h5{height:171.264000px;}
.h3{height:892.914000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.292000px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x12{left:38.274000px;}
.x10{left:42.519750px;}
.xd{left:59.527650px;}
.x1b{left:63.779550px;}
.x1a{left:80.787450px;}
.x7{left:99.651900px;}
.xb{left:102.047250px;}
.x1c{left:106.416000px;}
.x3{left:108.235800px;}
.x18{left:115.307250px;}
.xa{left:123.307050px;}
.x6{left:133.760400px;}
.x8{left:138.648300px;}
.x17{left:166.642500px;}
.x2{left:180.693000px;}
.x4{left:189.108000px;}
.x9{left:244.044000px;}
.x5{left:266.238000px;}
.x1{left:267.915000px;}
.x19{left:274.137000px;}
.x11{left:283.426500px;}
.xe{left:319.962000px;}
.x13{left:331.312500px;}
.x16{left:335.977500px;}
.x14{left:364.117500px;}
.x15{left:394.236000px;}
.xc{left:518.022000px;}
.xf{left:578.268000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.999467pt;}
.ls5{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.290667pt;}
.lsb{letter-spacing:1.952000pt;}
.ls7{letter-spacing:3.200000pt;}
.ls3{letter-spacing:4.266667pt;}
.ls6{letter-spacing:11.200000pt;}
.ws0{word-spacing:-53.120000pt;}
.ws3{word-spacing:-11.200000pt;}
.wsc{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.080000pt;}
.ws2{word-spacing:-4.266667pt;}
.ws6{word-spacing:-3.200000pt;}
.ws9{word-spacing:-1.066667pt;}
.wsa{word-spacing:-0.480000pt;}
.wsb{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:0.533333pt;}
.ws5{word-spacing:1.066667pt;}
.ws7{word-spacing:1440.154667pt;}
._a{margin-left:-11.200000pt;}
._10{margin-left:-8.504000pt;}
._d{margin-left:-6.938667pt;}
._12{margin-left:-5.620267pt;}
._1{margin-left:-4.266667pt;}
._4{margin-left:-2.994133pt;}
._0{margin-left:-1.920000pt;}
._8{margin-left:-0.944000pt;}
._9{width:1.200000pt;}
._b{width:2.217600pt;}
._c{width:3.144000pt;}
._3{width:4.266667pt;}
._e{width:5.540800pt;}
._5{width:6.892267pt;}
._2{width:8.528000pt;}
._f{width:9.560000pt;}
._7{width:12.725333pt;}
._6{width:14.016000pt;}
._11{width:33.926400pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs8{font-size:80.000000pt;}
.fs3{font-size:106.666667pt;}
.fs2{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:23.200000pt;}
.y27{bottom:25.236267pt;}
.y28{bottom:26.236133pt;}
.y1{bottom:44.640000pt;}
.y23{bottom:52.913333pt;}
.y4b{bottom:55.401600pt;}
.yb{bottom:56.510133pt;}
.y74{bottom:58.464533pt;}
.y90{bottom:59.215733pt;}
.y22{bottom:68.913333pt;}
.y8f{bottom:73.615733pt;}
.y73{bottom:74.464533pt;}
.y4a{bottom:77.070933pt;}
.y21{bottom:84.913333pt;}
.y8e{bottom:88.015733pt;}
.y72{bottom:90.464533pt;}
.y49{bottom:93.070933pt;}
.y20{bottom:100.913333pt;}
.y71{bottom:106.464533pt;}
.y48{bottom:109.070933pt;}
.y1f{bottom:116.913333pt;}
.y8d{bottom:120.015733pt;}
.y70{bottom:122.464533pt;}
.y47{bottom:130.740133pt;}
.y8c{bottom:136.016000pt;}
.y6f{bottom:138.464000pt;}
.y8b{bottom:152.016000pt;}
.y46{bottom:152.409333pt;}
.y6e{bottom:154.464000pt;}
.y8a{bottom:168.016000pt;}
.y6d{bottom:170.464000pt;}
.y45{bottom:174.078667pt;}
.y89{bottom:184.016000pt;}
.y6c{bottom:186.464000pt;}
.y44{bottom:190.078667pt;}
.y88{bottom:200.016000pt;}
.y6b{bottom:202.464000pt;}
.y43{bottom:211.748000pt;}
.y1e{bottom:212.913333pt;}
.y87{bottom:216.016000pt;}
.y6a{bottom:218.464000pt;}
.y42{bottom:227.748000pt;}
.y86{bottom:232.016000pt;}
.y69{bottom:234.464000pt;}
.y1d{bottom:244.913333pt;}
.y85{bottom:248.016000pt;}
.y41{bottom:249.417333pt;}
.y68{bottom:250.464000pt;}
.y1c{bottom:260.913333pt;}
.y84{bottom:264.016000pt;}
.y40{bottom:265.417333pt;}
.y67{bottom:266.464000pt;}
.y1b{bottom:275.313333pt;}
.y83{bottom:280.016000pt;}
.y66{bottom:282.464000pt;}
.y3f{bottom:287.086667pt;}
.y1a{bottom:289.713333pt;}
.y82{bottom:296.016000pt;}
.y65{bottom:298.464000pt;}
.y3e{bottom:303.086667pt;}
.y19{bottom:304.113333pt;}
.y81{bottom:312.016000pt;}
.y64{bottom:314.464000pt;}
.y18{bottom:318.513333pt;}
.y3d{bottom:324.756000pt;}
.y80{bottom:328.016000pt;}
.y63{bottom:330.464000pt;}
.y17{bottom:332.913333pt;}
.y3c{bottom:340.756000pt;}
.y7f{bottom:344.016000pt;}
.y62{bottom:346.464000pt;}
.y16{bottom:347.313333pt;}
.y7e{bottom:360.016000pt;}
.y15{bottom:361.713333pt;}
.y3b{bottom:362.425333pt;}
.y61{bottom:362.464000pt;}
.y7d{bottom:376.016000pt;}
.y14{bottom:376.113333pt;}
.y3a{bottom:378.425333pt;}
.y60{bottom:378.464000pt;}
.y13{bottom:390.513333pt;}
.y7c{bottom:392.016000pt;}
.y5f{bottom:394.464000pt;}
.ya{bottom:395.408000pt;}
.y39{bottom:400.094667pt;}
.y12{bottom:404.913333pt;}
.y7b{bottom:408.016000pt;}
.y5e{bottom:410.464000pt;}
.y38{bottom:416.094667pt;}
.y9{bottom:417.808000pt;}
.y11{bottom:419.313333pt;}
.y7a{bottom:424.016000pt;}
.y5d{bottom:426.464000pt;}
.y10{bottom:437.493333pt;}
.y37{bottom:437.764000pt;}
.y79{bottom:440.016000pt;}
.y8{bottom:440.208000pt;}
.y5c{bottom:442.464000pt;}
.y36{bottom:453.764000pt;}
.y78{bottom:456.016000pt;}
.yf{bottom:457.272000pt;}
.y5b{bottom:458.464000pt;}
.y7{bottom:466.386667pt;}
.y77{bottom:472.016000pt;}
.ye{bottom:473.272000pt;}
.y5a{bottom:474.464000pt;}
.y35{bottom:475.433333pt;}
.y76{bottom:488.016000pt;}
.y26{bottom:488.469333pt;}
.yd{bottom:489.272000pt;}
.y59{bottom:490.464000pt;}
.y34{bottom:491.433333pt;}
.y75{bottom:504.016000pt;}
.yc{bottom:505.272000pt;}
.y58{bottom:506.464000pt;}
.y33{bottom:507.433333pt;}
.y6{bottom:520.786667pt;}
.y57{bottom:522.464000pt;}
.y32{bottom:529.102667pt;}
.y93{bottom:533.932000pt;}
.y56{bottom:538.464000pt;}
.y31{bottom:545.102667pt;}
.y92{bottom:548.332000pt;}
.y55{bottom:554.464000pt;}
.y5{bottom:560.786667pt;}
.y91{bottom:562.732000pt;}
.y30{bottom:566.772000pt;}
.y54{bottom:586.464000pt;}
.y2f{bottom:588.441333pt;}
.y2e{bottom:604.441333pt;}
.y53{bottom:605.664000pt;}
.y9c{bottom:616.588000pt;}
.y52{bottom:624.864000pt;}
.y2d{bottom:626.110667pt;}
.y9b{bottom:630.988000pt;}
.ya1{bottom:631.013333pt;}
.y2c{bottom:642.110667pt;}
.y9a{bottom:645.388000pt;}
.ya0{bottom:654.053333pt;}
.y99{bottom:659.788000pt;}
.y51{bottom:660.064000pt;}
.y2b{bottom:663.780000pt;}
.y98{bottom:674.188000pt;}
.y50{bottom:676.064000pt;}
.y9f{bottom:677.093333pt;}
.y2a{bottom:685.449333pt;}
.y97{bottom:688.588000pt;}
.y4{bottom:690.388000pt;}
.y4f{bottom:692.064000pt;}
.y9e{bottom:700.133333pt;}
.y29{bottom:701.449333pt;}
.y96{bottom:702.988000pt;}
.y4e{bottom:708.064000pt;}
.y3{bottom:709.586667pt;}
.y25{bottom:713.186667pt;}
.y95{bottom:717.388000pt;}
.y2{bottom:728.788000pt;}
.y24{bottom:730.786667pt;}
.y94{bottom:731.788000pt;}
.y4d{bottom:740.064000pt;}
.y4c{bottom:754.464000pt;}
.hc{height:29.909333pt;}
.hf{height:35.760000pt;}
.hb{height:37.440000pt;}
.he{height:39.733333pt;}
.h9{height:42.816000pt;}
.ha{height:47.360000pt;}
.h8{height:47.573333pt;}
.h2{height:55.298750pt;}
.hd{height:56.832000pt;}
.h4{height:57.088000pt;}
.h7{height:66.602667pt;}
.h10{height:78.515625pt;}
.h6{height:95.146667pt;}
.h5{height:152.234667pt;}
.h3{height:793.701333pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.370667pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x12{left:34.021333pt;}
.x10{left:37.795333pt;}
.xd{left:52.913467pt;}
.x1b{left:56.692933pt;}
.x1a{left:71.811067pt;}
.x7{left:88.579467pt;}
.xb{left:90.708667pt;}
.x1c{left:94.592000pt;}
.x3{left:96.209600pt;}
.x18{left:102.495333pt;}
.xa{left:109.606267pt;}
.x6{left:118.898133pt;}
.x8{left:123.242933pt;}
.x17{left:148.126667pt;}
.x2{left:160.616000pt;}
.x4{left:168.096000pt;}
.x9{left:216.928000pt;}
.x5{left:236.656000pt;}
.x1{left:238.146667pt;}
.x19{left:243.677333pt;}
.x11{left:251.934667pt;}
.xe{left:284.410667pt;}
.x13{left:294.500000pt;}
.x16{left:298.646667pt;}
.x14{left:323.660000pt;}
.x15{left:350.432000pt;}
.xc{left:460.464000pt;}
.xf{left:514.016000pt;}
}




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