
    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_76816de1d0d4ed1dcf64387d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_76816de1d0d4ed1dcf64387d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_1d2b967656729a8b749a8397.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_2c4c83ab36513c98a1794571.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_7426335f587f69abfac64e0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_29eb41559c060a03d1a04532.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_b908f669baeed7c2e7f3ec89.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5148c4bbe872867e2d157a9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_b02db2de91b4b36f73582978.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_4204e778de11af277c0a2acd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_f76fba1e41ecb55134f4f10d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_1d2b967656729a8b749a8397.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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_b82ae2bd808872088f55f0d9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.945813;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_3a751e0b59b2ad6c78792090.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-2.640000px;}
.ws9{word-spacing:-2.580000px;}
.ws22{word-spacing:-1.980000px;}
.wsb{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:0.480000px;}
.ws1{word-spacing:0.720000px;}
.wsa{word-spacing:2.220000px;}
.ws7{word-spacing:2.700000px;}
.ws19{word-spacing:3.600000px;}
.ws1e{word-spacing:4.560000px;}
.ws11{word-spacing:4.920000px;}
.ws1d{word-spacing:5.340000px;}
.ws13{word-spacing:5.460000px;}
.ws1a{word-spacing:5.700000px;}
.ws5{word-spacing:7.200000px;}
.ws6{word-spacing:7.440000px;}
.ws8{word-spacing:8.400000px;}
.ws26{word-spacing:8.760000px;}
.ws12{word-spacing:9.180000px;}
.wsf{word-spacing:9.660000px;}
.ws1f{word-spacing:9.720000px;}
.ws17{word-spacing:9.960000px;}
.ws24{word-spacing:10.920000px;}
.ws16{word-spacing:12.060000px;}
.ws18{word-spacing:12.480000px;}
.ws15{word-spacing:13.620000px;}
.ws25{word-spacing:15.420000px;}
.ws1b{word-spacing:15.600000px;}
.ws10{word-spacing:16.080000px;}
.ws27{word-spacing:18.900000px;}
.ws14{word-spacing:26.880000px;}
.ws21{word-spacing:31.080000px;}
.wsd{word-spacing:33.621000px;}
.ws1c{word-spacing:33.960000px;}
.ws23{word-spacing:42.300000px;}
.ws20{word-spacing:73.260000px;}
.wse{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._15{margin-left:-51.600000px;}
._1c{margin-left:-15.084000px;}
._26{margin-left:-8.346000px;}
._5{margin-left:-6.852000px;}
._4{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._3{margin-left:-3.384000px;}
._d{margin-left:-2.208000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._7{width:2.556000px;}
._9{width:4.356000px;}
._8{width:5.490000px;}
._b{width:6.558000px;}
._e{width:7.644000px;}
._12{width:8.952000px;}
._10{width:10.530000px;}
._a{width:11.550000px;}
._11{width:12.594000px;}
._f{width:13.674000px;}
._13{width:16.404000px;}
._19{width:17.694000px;}
._14{width:19.416000px;}
._1a{width:21.012000px;}
._1b{width:25.254000px;}
._1d{width:26.976000px;}
._18{width:31.734000px;}
._23{width:33.990000px;}
._17{width:35.670000px;}
._1e{width:39.876000px;}
._20{width:41.712000px;}
._1f{width:42.882000px;}
._25{width:44.424000px;}
._24{width:46.338000px;}
._16{width:49.020000px;}
._21{width:50.484000px;}
._22{width:68.970000px;}
._c{width:70.020000px;}
._6{width:72.660000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y5e{bottom:93.635850px;}
.y5d{bottom:114.635850px;}
.y5c{bottom:135.635850px;}
.y28{bottom:144.942450px;}
.y5b{bottom:156.635850px;}
.y27{bottom:165.942450px;}
.y5a{bottom:177.635850px;}
.y26{bottom:186.942450px;}
.y59{bottom:198.635850px;}
.y25{bottom:207.942450px;}
.y58{bottom:219.635850px;}
.y24{bottom:228.942450px;}
.y57{bottom:240.635850px;}
.y23{bottom:249.942450px;}
.y56{bottom:261.635850px;}
.y22{bottom:270.942450px;}
.y55{bottom:282.635850px;}
.y21{bottom:291.942450px;}
.y54{bottom:303.635850px;}
.y53{bottom:324.635850px;}
.y20{bottom:333.942450px;}
.y52{bottom:345.635850px;}
.y1f{bottom:354.942450px;}
.y51{bottom:366.635850px;}
.y1e{bottom:375.942450px;}
.y50{bottom:387.635850px;}
.y1d{bottom:396.942450px;}
.y4f{bottom:408.635850px;}
.y1c{bottom:417.942450px;}
.y4e{bottom:429.635850px;}
.y1b{bottom:438.942450px;}
.y4d{bottom:450.635850px;}
.y31{bottom:456.139950px;}
.y1a{bottom:459.942450px;}
.y4c{bottom:471.635850px;}
.y30{bottom:478.639950px;}
.y19{bottom:480.942450px;}
.y4b{bottom:492.635850px;}
.y2f{bottom:501.139950px;}
.y18{bottom:501.942450px;}
.y4a{bottom:513.635850px;}
.y17{bottom:522.942450px;}
.y49{bottom:534.635850px;}
.y2e{bottom:541.639950px;}
.y48{bottom:555.635850px;}
.y16{bottom:564.942450px;}
.y47{bottom:576.635850px;}
.y15{bottom:585.942450px;}
.y2d{bottom:586.639950px;}
.y46{bottom:597.635850px;}
.y14{bottom:606.942450px;}
.y5f{bottom:618.635850px;}
.y2c{bottom:627.139950px;}
.y13{bottom:627.942450px;}
.y45{bottom:639.635850px;}
.y12{bottom:648.942450px;}
.y44{bottom:660.635850px;}
.y2b{bottom:663.139950px;}
.y11{bottom:669.942450px;}
.y43{bottom:681.635850px;}
.y10{bottom:690.942450px;}
.y2a{bottom:699.139950px;}
.y42{bottom:702.635850px;}
.yf{bottom:711.942450px;}
.y41{bottom:723.635850px;}
.ye{bottom:732.942450px;}
.y29{bottom:735.139950px;}
.y77{bottom:744.161400px;}
.y40{bottom:744.635850px;}
.yd{bottom:753.942450px;}
.y76{bottom:765.161400px;}
.y3f{bottom:765.635850px;}
.yc{bottom:774.942450px;}
.y75{bottom:786.161400px;}
.y6a{bottom:786.401400px;}
.y3e{bottom:786.635850px;}
.yb{bottom:795.942450px;}
.y74{bottom:807.161400px;}
.y69{bottom:807.401400px;}
.y3d{bottom:807.635850px;}
.ya{bottom:816.942450px;}
.y73{bottom:828.161400px;}
.y68{bottom:828.401400px;}
.y3c{bottom:828.635850px;}
.y9{bottom:837.942450px;}
.y72{bottom:849.161400px;}
.y67{bottom:849.401400px;}
.y3b{bottom:849.635850px;}
.y71{bottom:870.161400px;}
.y66{bottom:870.401400px;}
.y3a{bottom:870.635850px;}
.y8{bottom:876.946950px;}
.y70{bottom:891.161400px;}
.y65{bottom:891.401400px;}
.y39{bottom:891.635850px;}
.y7{bottom:894.942450px;}
.y6f{bottom:912.161400px;}
.y64{bottom:912.401400px;}
.y38{bottom:912.635850px;}
.y6{bottom:912.942450px;}
.y6e{bottom:933.161400px;}
.y63{bottom:933.401400px;}
.y37{bottom:933.635850px;}
.y6d{bottom:954.161400px;}
.y62{bottom:954.401400px;}
.y36{bottom:954.635850px;}
.y5{bottom:965.442450px;}
.y6c{bottom:975.161400px;}
.y61{bottom:975.401400px;}
.y35{bottom:975.635850px;}
.y6b{bottom:996.161400px;}
.y60{bottom:996.401400px;}
.y34{bottom:996.635850px;}
.y4{bottom:1024.374150px;}
.y33{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hb{height:46.200000px;}
.ha{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xc{left:65.202600px;}
.xb{left:71.253150px;}
.xa{left:73.559100px;}
.xd{left:90.779550px;}
.x9{left:224.187900px;}
.x5{left:231.738600px;}
.x8{left:303.057150px;}
.x10{left:399.929550px;}
.xe{left:408.929550px;}
.x4{left:412.272150px;}
.xf{left:426.929550px;}
.x7{left:449.640150px;}
.x6{left:569.344350px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-2.346667pt;}
.ws9{word-spacing:-2.293333pt;}
.ws22{word-spacing:-1.760000pt;}
.wsb{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:0.426667pt;}
.ws1{word-spacing:0.640000pt;}
.wsa{word-spacing:1.973333pt;}
.ws7{word-spacing:2.400000pt;}
.ws19{word-spacing:3.200000pt;}
.ws1e{word-spacing:4.053333pt;}
.ws11{word-spacing:4.373333pt;}
.ws1d{word-spacing:4.746667pt;}
.ws13{word-spacing:4.853333pt;}
.ws1a{word-spacing:5.066667pt;}
.ws5{word-spacing:6.400000pt;}
.ws6{word-spacing:6.613333pt;}
.ws8{word-spacing:7.466667pt;}
.ws26{word-spacing:7.786667pt;}
.ws12{word-spacing:8.160000pt;}
.wsf{word-spacing:8.586667pt;}
.ws1f{word-spacing:8.640000pt;}
.ws17{word-spacing:8.853333pt;}
.ws24{word-spacing:9.706667pt;}
.ws16{word-spacing:10.720000pt;}
.ws18{word-spacing:11.093333pt;}
.ws15{word-spacing:12.106667pt;}
.ws25{word-spacing:13.706667pt;}
.ws1b{word-spacing:13.866667pt;}
.ws10{word-spacing:14.293333pt;}
.ws27{word-spacing:16.800000pt;}
.ws14{word-spacing:23.893333pt;}
.ws21{word-spacing:27.626667pt;}
.wsd{word-spacing:29.885333pt;}
.ws1c{word-spacing:30.186667pt;}
.ws23{word-spacing:37.600000pt;}
.ws20{word-spacing:65.120000pt;}
.wse{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._15{margin-left:-45.866667pt;}
._1c{margin-left:-13.408000pt;}
._26{margin-left:-7.418667pt;}
._5{margin-left:-6.090667pt;}
._4{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._3{margin-left:-3.008000pt;}
._d{margin-left:-1.962667pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._7{width:2.272000pt;}
._9{width:3.872000pt;}
._8{width:4.880000pt;}
._b{width:5.829333pt;}
._e{width:6.794667pt;}
._12{width:7.957333pt;}
._10{width:9.360000pt;}
._a{width:10.266667pt;}
._11{width:11.194667pt;}
._f{width:12.154667pt;}
._13{width:14.581333pt;}
._19{width:15.728000pt;}
._14{width:17.258667pt;}
._1a{width:18.677333pt;}
._1b{width:22.448000pt;}
._1d{width:23.978667pt;}
._18{width:28.208000pt;}
._23{width:30.213333pt;}
._17{width:31.706667pt;}
._1e{width:35.445333pt;}
._20{width:37.077333pt;}
._1f{width:38.117333pt;}
._25{width:39.488000pt;}
._24{width:41.189333pt;}
._16{width:43.573333pt;}
._21{width:44.874667pt;}
._22{width:61.306667pt;}
._c{width:62.240000pt;}
._6{width:64.586667pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y5e{bottom:83.231867pt;}
.y5d{bottom:101.898533pt;}
.y5c{bottom:120.565200pt;}
.y28{bottom:128.837733pt;}
.y5b{bottom:139.231867pt;}
.y27{bottom:147.504400pt;}
.y5a{bottom:157.898533pt;}
.y26{bottom:166.171067pt;}
.y59{bottom:176.565200pt;}
.y25{bottom:184.837733pt;}
.y58{bottom:195.231867pt;}
.y24{bottom:203.504400pt;}
.y57{bottom:213.898533pt;}
.y23{bottom:222.171067pt;}
.y56{bottom:232.565200pt;}
.y22{bottom:240.837733pt;}
.y55{bottom:251.231867pt;}
.y21{bottom:259.504400pt;}
.y54{bottom:269.898533pt;}
.y53{bottom:288.565200pt;}
.y20{bottom:296.837733pt;}
.y52{bottom:307.231867pt;}
.y1f{bottom:315.504400pt;}
.y51{bottom:325.898533pt;}
.y1e{bottom:334.171067pt;}
.y50{bottom:344.565200pt;}
.y1d{bottom:352.837733pt;}
.y4f{bottom:363.231867pt;}
.y1c{bottom:371.504400pt;}
.y4e{bottom:381.898533pt;}
.y1b{bottom:390.171067pt;}
.y4d{bottom:400.565200pt;}
.y31{bottom:405.457733pt;}
.y1a{bottom:408.837733pt;}
.y4c{bottom:419.231867pt;}
.y30{bottom:425.457733pt;}
.y19{bottom:427.504400pt;}
.y4b{bottom:437.898533pt;}
.y2f{bottom:445.457733pt;}
.y18{bottom:446.171067pt;}
.y4a{bottom:456.565200pt;}
.y17{bottom:464.837733pt;}
.y49{bottom:475.231867pt;}
.y2e{bottom:481.457733pt;}
.y48{bottom:493.898533pt;}
.y16{bottom:502.171067pt;}
.y47{bottom:512.565200pt;}
.y15{bottom:520.837733pt;}
.y2d{bottom:521.457733pt;}
.y46{bottom:531.231867pt;}
.y14{bottom:539.504400pt;}
.y5f{bottom:549.898533pt;}
.y2c{bottom:557.457733pt;}
.y13{bottom:558.171067pt;}
.y45{bottom:568.565200pt;}
.y12{bottom:576.837733pt;}
.y44{bottom:587.231867pt;}
.y2b{bottom:589.457733pt;}
.y11{bottom:595.504400pt;}
.y43{bottom:605.898533pt;}
.y10{bottom:614.171067pt;}
.y2a{bottom:621.457733pt;}
.y42{bottom:624.565200pt;}
.yf{bottom:632.837733pt;}
.y41{bottom:643.231867pt;}
.ye{bottom:651.504400pt;}
.y29{bottom:653.457733pt;}
.y77{bottom:661.476800pt;}
.y40{bottom:661.898533pt;}
.yd{bottom:670.171067pt;}
.y76{bottom:680.143467pt;}
.y3f{bottom:680.565200pt;}
.yc{bottom:688.837733pt;}
.y75{bottom:698.810133pt;}
.y6a{bottom:699.023467pt;}
.y3e{bottom:699.231867pt;}
.yb{bottom:707.504400pt;}
.y74{bottom:717.476800pt;}
.y69{bottom:717.690133pt;}
.y3d{bottom:717.898533pt;}
.ya{bottom:726.171067pt;}
.y73{bottom:736.143467pt;}
.y68{bottom:736.356800pt;}
.y3c{bottom:736.565200pt;}
.y9{bottom:744.837733pt;}
.y72{bottom:754.810133pt;}
.y67{bottom:755.023467pt;}
.y3b{bottom:755.231867pt;}
.y71{bottom:773.476800pt;}
.y66{bottom:773.690133pt;}
.y3a{bottom:773.898533pt;}
.y8{bottom:779.508400pt;}
.y70{bottom:792.143467pt;}
.y65{bottom:792.356800pt;}
.y39{bottom:792.565200pt;}
.y7{bottom:795.504400pt;}
.y6f{bottom:810.810133pt;}
.y64{bottom:811.023467pt;}
.y38{bottom:811.231867pt;}
.y6{bottom:811.504400pt;}
.y6e{bottom:829.476800pt;}
.y63{bottom:829.690133pt;}
.y37{bottom:829.898533pt;}
.y6d{bottom:848.143467pt;}
.y62{bottom:848.356800pt;}
.y36{bottom:848.565200pt;}
.y5{bottom:858.171067pt;}
.y6c{bottom:866.810133pt;}
.y61{bottom:867.023467pt;}
.y35{bottom:867.231867pt;}
.y6b{bottom:885.476800pt;}
.y60{bottom:885.690133pt;}
.y34{bottom:885.898533pt;}
.y4{bottom:910.554800pt;}
.y33{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hb{height:41.066667pt;}
.ha{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xc{left:57.957867pt;}
.xb{left:63.336133pt;}
.xa{left:65.385867pt;}
.xd{left:80.692933pt;}
.x9{left:199.278133pt;}
.x5{left:205.989867pt;}
.x8{left:269.384133pt;}
.x10{left:355.492933pt;}
.xe{left:363.492933pt;}
.x4{left:366.464133pt;}
.xf{left:379.492933pt;}
.x7{left:399.680133pt;}
.x6{left:506.083867pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
}




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