
    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_3c5f1e66703dfa7eadac83ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_49162ce7dbe154998c969829.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_58073492226cdd4dbee07eba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_247aa699e1daff1b3d1351d3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6fb6fe007cdeb2df74de90e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_6565cceafd2ee654cc493f52.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_63a91663a372bc88ee16b5ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3bbef55942ea8587af97b1fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.000001px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000001px;}
.ls11{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.lse{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.480000px;}
.ls2{letter-spacing:5.760000px;}
.ls4{letter-spacing:8.616000px;}
.lsd{letter-spacing:18.000000px;}
.ls10{letter-spacing:20.160000px;}
.ls5{letter-spacing:33.264000px;}
.lsc{letter-spacing:55.386720px;}
.ls3{letter-spacing:64.026720px;}
.lsf{letter-spacing:2740.002720px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(187,145,103),0 0.015em rgb(187,145,103),0.015em 0 rgb(187,145,103),0 -0.015em  rgb(187,145,103);}
.sc5{text-shadow:-0.015em 0 rgb(19,161,14),0 0.015em rgb(19,161,14),0.015em 0 rgb(19,161,14),0 -0.015em  rgb(19,161,14);}
.sc4{text-shadow:-0.015em 0 rgb(179,219,242),0 0.015em rgb(179,219,242),0.015em 0 rgb(179,219,242),0 -0.015em  rgb(179,219,242);}
.sc3{text-shadow:-0.015em 0 rgb(22,198,12),0 0.015em rgb(22,198,12),0.015em 0 rgb(22,198,12),0 -0.015em  rgb(22,198,12);}
.sc2{text-shadow:-0.015em 0 rgb(117,117,117),0 0.015em rgb(117,117,117),0.015em 0 rgb(117,117,117),0 -0.015em  rgb(117,117,117);}
.sc1{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);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(187,145,103);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(19,161,14);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(179,219,242);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(22,198,12);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(117,117,117);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-98.856000px;}
.ws2{word-spacing:-59.760000px;}
.ws8{word-spacing:-16.200000px;}
.ws7{word-spacing:-15.984000px;}
.ws0{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.768000px;}
.ws1{word-spacing:-15.696000px;}
.ws4{word-spacing:-15.552000px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-98.856000px;}
._d{margin-left:-93.816000px;}
._1b{margin-left:-91.296000px;}
._e{margin-left:-88.776000px;}
._15{margin-left:-83.736000px;}
._18{margin-left:-73.584000px;}
._4{margin-left:-4.327203px;}
._3{margin-left:-2.880000px;}
._0{margin-left:-1.457280px;}
._1{width:1.097280px;}
._5{width:3.047040px;}
._16{width:4.103040px;}
._6{width:5.544000px;}
._c{width:6.782400px;}
._7{width:7.962720px;}
._f{width:9.432000px;}
._11{width:11.577600px;}
._10{width:12.830400px;}
._8{width:14.088000px;}
._13{width:17.222400px;}
._14{width:18.971040px;}
._17{width:20.410080px;}
._9{width:25.502400px;}
._12{width:27.312000px;}
._a{width:28.790400px;}
._b{width:30.340320px;}
._19{width:40.896000px;}
._1a{width:42.840000px;}
.fc27{color:rgb(202,80,16);}
.fc26{color:rgb(247,99,12);}
.fc23{color:rgb(255,185,0);}
.fc24{color:rgb(142,86,46);}
.fc22{color:rgb(255,200,61);}
.fc20{color:transparent;}
.fc1f{color:rgb(0,99,177);}
.fc1d{color:rgb(131,190,236);}
.fcb{color:rgb(232,71,87);}
.fc8{color:rgb(218,59,1);}
.fc6{color:rgb(19,161,14);}
.fc16{color:rgb(255,214,121);}
.fc5{color:rgb(179,219,242);}
.fc21{color:rgb(235,163,0);}
.fc4{color:rgb(22,198,12);}
.fc1e{color:rgb(58,150,221);}
.fce{color:rgb(242,242,242);}
.fc19{color:rgb(133,149,153);}
.fcc{color:rgb(244,171,186);}
.fc3{color:rgb(117,117,117);}
.fcf{color:rgb(0,120,215);}
.fc12{color:rgb(204,204,204);}
.fc2{color:rgb(0,0,0);}
.fc1a{color:rgb(105,121,126);}
.fca{color:rgb(240,58,23);}
.fc18{color:rgb(239,105,80);}
.fc7{color:rgb(187,145,103);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(5,57,118);}
.fc9{color:rgb(229,229,229);}
.fcd{color:rgb(230,128,138);}
.fc25{color:rgb(16,124,16);}
.fc11{color:rgb(247,215,196);}
.fc13{color:rgb(56,56,56);}
.fc14{color:rgb(232,18,36);}
.fc10{color:rgb(216,176,148);}
.fc15{color:rgb(255,255,255);}
.fc17{color:rgb(212,140,0);}
.fc1b{color:rgb(160,174,178);}
.fc1c{color:rgb(74,84,89);}
.fs4{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:7.020000px;}
.y4b{bottom:7.200000px;}
.y6{bottom:21.240000px;}
.y5{bottom:54.396000px;}
.y4{bottom:75.636000px;}
.y31{bottom:99.216000px;}
.y7e{bottom:113.076000px;}
.y30{bottom:123.516000px;}
.y7d{bottom:137.376000px;}
.y2f{bottom:147.816000px;}
.y7c{bottom:162.570000px;}
.y2e{bottom:172.110000px;}
.y7b{bottom:189.210000px;}
.y2d{bottom:197.310000px;}
.y7a{bottom:213.330000px;}
.y2c{bottom:224.850000px;}
.y79{bottom:237.630000px;}
.y2b{bottom:251.310000px;}
.y78{bottom:261.930000px;}
.y2a{bottom:276.510000px;}
.y77{bottom:286.275000px;}
.y29{bottom:303.195000px;}
.y76{bottom:310.575000px;}
.y55{bottom:317.055000px;}
.y28{bottom:328.395000px;}
.y75{bottom:334.875000px;}
.y54{bottom:342.255000px;}
.y27{bottom:355.935000px;}
.y74{bottom:358.995000px;}
.y53{bottom:369.795000px;}
.y68{bottom:376.455000px;}
.y73{bottom:383.295000px;}
.y26{bottom:383.475000px;}
.y52{bottom:392.475000px;}
.y67{bottom:399.315000px;}
.y72{bottom:407.595000px;}
.y25{bottom:410.115000px;}
.y51{bottom:420.555000px;}
.y66{bottom:428.115000px;}
.y71{bottom:431.895000px;}
.y24{bottom:434.415000px;}
.y50{bottom:444.855000px;}
.y70{bottom:456.195000px;}
.y65{bottom:456.915000px;}
.y23{bottom:458.715000px;}
.y4f{bottom:469.155000px;}
.y6f{bottom:481.395000px;}
.y22{bottom:482.835000px;}
.y64{bottom:485.535000px;}
.y5c{bottom:488.955000px;}
.y4e{bottom:489.675000px;}
.y21{bottom:507.135000px;}
.y6e{bottom:507.855000px;}
.y5b{bottom:514.155000px;}
.y63{bottom:514.335000px;}
.y4c{bottom:518.475000px;}
.y20{bottom:531.435000px;}
.y6d{bottom:532.155000px;}
.y5a{bottom:540.795000px;}
.y4a{bottom:547.095000px;}
.y62{bottom:550.155000px;}
.y1f{bottom:555.735000px;}
.y6c{bottom:556.455000px;}
.y59{bottom:564.945000px;}
.y61{bottom:576.825000px;}
.y6b{bottom:580.785000px;}
.y1e{bottom:580.965000px;}
.y49{bottom:582.045000px;}
.y58{bottom:589.245000px;}
.y60{bottom:600.945000px;}
.y6a{bottom:605.085000px;}
.y48{bottom:606.345000px;}
.y1d{bottom:607.605000px;}
.y57{bottom:613.545000px;}
.y5f{bottom:625.245000px;}
.y69{bottom:629.385000px;}
.y47{bottom:630.645000px;}
.y1c{bottom:631.725000px;}
.y56{bottom:633.705000px;}
.y5e{bottom:649.545000px;}
.y46{bottom:654.765000px;}
.y1b{bottom:656.025000px;}
.y5d{bottom:669.705000px;}
.y45{bottom:679.065000px;}
.y1a{bottom:680.325000px;}
.y44{bottom:703.365000px;}
.y19{bottom:704.625000px;}
.y43{bottom:728.565000px;}
.y18{bottom:728.925000px;}
.y17{bottom:754.125000px;}
.y42{bottom:755.205000px;}
.y41{bottom:779.505000px;}
.y16{bottom:780.585000px;}
.y40{bottom:803.625000px;}
.y15{bottom:804.885000px;}
.y3f{bottom:827.925000px;}
.y14{bottom:829.185000px;}
.y3e{bottom:852.270000px;}
.y13{bottom:853.530000px;}
.y12{bottom:877.110000px;}
.y3d{bottom:877.470000px;}
.y11{bottom:899.250000px;}
.y3c{bottom:904.110000px;}
.y10{bottom:921.570000px;}
.y3b{bottom:928.410000px;}
.yf{bottom:945.510000px;}
.y3a{bottom:952.530000px;}
.ye{bottom:972.150000px;}
.y39{bottom:976.830000px;}
.yd{bottom:996.270000px;}
.y38{bottom:1001.130000px;}
.yc{bottom:1020.570000px;}
.y37{bottom:1025.430000px;}
.yb{bottom:1044.870000px;}
.y36{bottom:1049.730000px;}
.ya{bottom:1069.170000px;}
.y35{bottom:1074.030000px;}
.y9{bottom:1093.470000px;}
.y34{bottom:1099.230000px;}
.y7f{bottom:1101.570000px;}
.y8{bottom:1118.850000px;}
.y33{bottom:1125.690000px;}
.y7{bottom:1147.140000px;}
.y32{bottom:1150.020000px;}
.y3{bottom:1174.320000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1223.820000px;}
.hd{height:24.120000px;}
.he{height:24.300000px;}
.hc{height:24.336000px;}
.h5{height:36.720000px;}
.h2{height:48.138750px;}
.h9{height:56.084062px;}
.h3{height:60.960938px;}
.ha{height:61.423863px;}
.h6{height:65.010937px;}
.h8{height:65.707031px;}
.h4{height:65.884219px;}
.h7{height:71.324297px;}
.hb{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:24.660000px;}
.w5{width:95.436000px;}
.w8{width:98.316000px;}
.w7{width:116.856000px;}
.w6{width:122.760000px;}
.w4{width:130.536000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:43.596000px;}
.x4{left:84.959987px;}
.x12{left:87.300000px;}
.x6{left:106.235987px;}
.xf{left:111.995987px;}
.xe{left:127.475987px;}
.x10{left:138.995987px;}
.x11{left:165.989987px;}
.x18{left:192.989987px;}
.x17{left:206.490000px;}
.x14{left:219.990000px;}
.x15{left:317.775000px;}
.x7{left:399.314987px;}
.xc{left:422.174987px;}
.x5{left:434.235000px;}
.xd{left:447.014987px;}
.xa{left:500.504987px;}
.x8{left:502.844987px;}
.x2{left:539.744987px;}
.x3{left:584.384987px;}
.x9{left:608.324987px;}
.xb{left:618.764987px;}
.x1{left:681.044987px;}
.x16{left:829.589987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.000001pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000001pt;}
.ls11{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls2{letter-spacing:5.120000pt;}
.ls4{letter-spacing:7.658667pt;}
.lsd{letter-spacing:16.000000pt;}
.ls10{letter-spacing:17.920000pt;}
.ls5{letter-spacing:29.568000pt;}
.lsc{letter-spacing:49.232640pt;}
.ls3{letter-spacing:56.912640pt;}
.lsf{letter-spacing:2435.557973pt;}
.ws6{word-spacing:-87.872000pt;}
.ws2{word-spacing:-53.120000pt;}
.ws8{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.208000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws1{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.824000pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-87.872000pt;}
._d{margin-left:-83.392000pt;}
._1b{margin-left:-81.152000pt;}
._e{margin-left:-78.912000pt;}
._15{margin-left:-74.432000pt;}
._18{margin-left:-65.408000pt;}
._4{margin-left:-3.846403pt;}
._3{margin-left:-2.560000pt;}
._0{margin-left:-1.295360pt;}
._1{width:0.975360pt;}
._5{width:2.708480pt;}
._16{width:3.647147pt;}
._6{width:4.928000pt;}
._c{width:6.028800pt;}
._7{width:7.077973pt;}
._f{width:8.384000pt;}
._11{width:10.291200pt;}
._10{width:11.404800pt;}
._8{width:12.522667pt;}
._13{width:15.308800pt;}
._14{width:16.863147pt;}
._17{width:18.142293pt;}
._9{width:22.668800pt;}
._12{width:24.277333pt;}
._a{width:25.591467pt;}
._b{width:26.969173pt;}
._19{width:36.352000pt;}
._1a{width:38.080000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:6.240000pt;}
.y4b{bottom:6.400000pt;}
.y6{bottom:18.880000pt;}
.y5{bottom:48.352000pt;}
.y4{bottom:67.232000pt;}
.y31{bottom:88.192000pt;}
.y7e{bottom:100.512000pt;}
.y30{bottom:109.792000pt;}
.y7d{bottom:122.112000pt;}
.y2f{bottom:131.392000pt;}
.y7c{bottom:144.506667pt;}
.y2e{bottom:152.986667pt;}
.y7b{bottom:168.186667pt;}
.y2d{bottom:175.386667pt;}
.y7a{bottom:189.626667pt;}
.y2c{bottom:199.866667pt;}
.y79{bottom:211.226667pt;}
.y2b{bottom:223.386667pt;}
.y78{bottom:232.826667pt;}
.y2a{bottom:245.786667pt;}
.y77{bottom:254.466667pt;}
.y29{bottom:269.506667pt;}
.y76{bottom:276.066667pt;}
.y55{bottom:281.826667pt;}
.y28{bottom:291.906667pt;}
.y75{bottom:297.666667pt;}
.y54{bottom:304.226667pt;}
.y27{bottom:316.386667pt;}
.y74{bottom:319.106667pt;}
.y53{bottom:328.706667pt;}
.y68{bottom:334.626667pt;}
.y73{bottom:340.706667pt;}
.y26{bottom:340.866667pt;}
.y52{bottom:348.866667pt;}
.y67{bottom:354.946667pt;}
.y72{bottom:362.306667pt;}
.y25{bottom:364.546667pt;}
.y51{bottom:373.826667pt;}
.y66{bottom:380.546667pt;}
.y71{bottom:383.906667pt;}
.y24{bottom:386.146667pt;}
.y50{bottom:395.426667pt;}
.y70{bottom:405.506667pt;}
.y65{bottom:406.146667pt;}
.y23{bottom:407.746667pt;}
.y4f{bottom:417.026667pt;}
.y6f{bottom:427.906667pt;}
.y22{bottom:429.186667pt;}
.y64{bottom:431.586667pt;}
.y5c{bottom:434.626667pt;}
.y4e{bottom:435.266667pt;}
.y21{bottom:450.786667pt;}
.y6e{bottom:451.426667pt;}
.y5b{bottom:457.026667pt;}
.y63{bottom:457.186667pt;}
.y4c{bottom:460.866667pt;}
.y20{bottom:472.386667pt;}
.y6d{bottom:473.026667pt;}
.y5a{bottom:480.706667pt;}
.y4a{bottom:486.306667pt;}
.y62{bottom:489.026667pt;}
.y1f{bottom:493.986667pt;}
.y6c{bottom:494.626667pt;}
.y59{bottom:502.173333pt;}
.y61{bottom:512.733333pt;}
.y6b{bottom:516.253333pt;}
.y1e{bottom:516.413333pt;}
.y49{bottom:517.373333pt;}
.y58{bottom:523.773333pt;}
.y60{bottom:534.173333pt;}
.y6a{bottom:537.853333pt;}
.y48{bottom:538.973333pt;}
.y1d{bottom:540.093333pt;}
.y57{bottom:545.373333pt;}
.y5f{bottom:555.773333pt;}
.y69{bottom:559.453333pt;}
.y47{bottom:560.573333pt;}
.y1c{bottom:561.533333pt;}
.y56{bottom:563.293333pt;}
.y5e{bottom:577.373333pt;}
.y46{bottom:582.013333pt;}
.y1b{bottom:583.133333pt;}
.y5d{bottom:595.293333pt;}
.y45{bottom:603.613333pt;}
.y1a{bottom:604.733333pt;}
.y44{bottom:625.213333pt;}
.y19{bottom:626.333333pt;}
.y43{bottom:647.613333pt;}
.y18{bottom:647.933333pt;}
.y17{bottom:670.333333pt;}
.y42{bottom:671.293333pt;}
.y41{bottom:692.893333pt;}
.y16{bottom:693.853333pt;}
.y40{bottom:714.333333pt;}
.y15{bottom:715.453333pt;}
.y3f{bottom:735.933333pt;}
.y14{bottom:737.053333pt;}
.y3e{bottom:757.573333pt;}
.y13{bottom:758.693333pt;}
.y12{bottom:779.653333pt;}
.y3d{bottom:779.973333pt;}
.y11{bottom:799.333333pt;}
.y3c{bottom:803.653333pt;}
.y10{bottom:819.173333pt;}
.y3b{bottom:825.253333pt;}
.yf{bottom:840.453333pt;}
.y3a{bottom:846.693333pt;}
.ye{bottom:864.133333pt;}
.y39{bottom:868.293333pt;}
.yd{bottom:885.573333pt;}
.y38{bottom:889.893333pt;}
.yc{bottom:907.173333pt;}
.y37{bottom:911.493333pt;}
.yb{bottom:928.773333pt;}
.y36{bottom:933.093333pt;}
.ya{bottom:950.373333pt;}
.y35{bottom:954.693333pt;}
.y9{bottom:971.973333pt;}
.y34{bottom:977.093333pt;}
.y7f{bottom:979.173333pt;}
.y8{bottom:994.533333pt;}
.y33{bottom:1000.613333pt;}
.y7{bottom:1019.680000pt;}
.y32{bottom:1022.240000pt;}
.y3{bottom:1043.840000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1087.840000pt;}
.hd{height:21.440000pt;}
.he{height:21.600000pt;}
.hc{height:21.632000pt;}
.h5{height:32.640000pt;}
.h2{height:42.790000pt;}
.h9{height:49.852500pt;}
.h3{height:54.187500pt;}
.ha{height:54.598989pt;}
.h6{height:57.787500pt;}
.h8{height:58.406250pt;}
.h4{height:58.563750pt;}
.h7{height:63.399375pt;}
.hb{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.920000pt;}
.w5{width:84.832000pt;}
.w8{width:87.392000pt;}
.w7{width:103.872000pt;}
.w6{width:109.120000pt;}
.w4{width:116.032000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:38.752000pt;}
.x4{left:75.519988pt;}
.x12{left:77.600000pt;}
.x6{left:94.431988pt;}
.xf{left:99.551988pt;}
.xe{left:113.311988pt;}
.x10{left:123.551988pt;}
.x11{left:147.546655pt;}
.x18{left:171.546655pt;}
.x17{left:183.546667pt;}
.x14{left:195.546667pt;}
.x15{left:282.466667pt;}
.x7{left:354.946655pt;}
.xc{left:375.266655pt;}
.x5{left:385.986667pt;}
.xd{left:397.346655pt;}
.xa{left:444.893322pt;}
.x8{left:446.973322pt;}
.x2{left:479.773322pt;}
.x3{left:519.453322pt;}
.x9{left:540.733322pt;}
.xb{left:550.013322pt;}
.x1{left:605.373322pt;}
.x16{left:737.413322pt;}
}




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