
    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_b0ec4a5aa6e6ffa3e455cd9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.029785;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_515b55b01e81dc526c4a8309.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.060059;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_d87302e7f346ef53293a2e71.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_87b4d817364470e289517afb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_26e20e50e0b98943b81353c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900391;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_936c89cf67471926084b02ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_cac25fae6376065ada114925.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_4a00a6abf4192be8b3849e1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_5348d2fff61bfae58073b794.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_8404a11ad97008ad990a11dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.920410;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_8de6df23208d100bcf729728.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.920410;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_1004d3f86dc8799b28d57d87.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946777;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_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.317400px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:54.120000px;}
.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:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.464600px;}
.ws1{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-9.504000px;}
._4{margin-left:-7.488000px;}
._1{margin-left:-5.904000px;}
._5{margin-left:-4.032000px;}
._3{margin-left:-2.592000px;}
._2{margin-left:-1.512000px;}
._6{width:1.224000px;}
._17{width:2.232000px;}
._18{width:3.384000px;}
._11{width:4.680000px;}
._12{width:6.552000px;}
._f{width:7.992000px;}
._13{width:9.288000px;}
._14{width:10.800000px;}
._1e{width:11.880000px;}
._15{width:13.032000px;}
._c{width:14.592000px;}
._10{width:15.696000px;}
._9{width:16.992000px;}
._a{width:19.080000px;}
._b{width:20.088000px;}
._19{width:21.240000px;}
._16{width:22.392000px;}
._1a{width:23.904000px;}
._1b{width:24.912000px;}
._8{width:27.180000px;}
._7{width:28.260000px;}
._d{width:30.816000px;}
._e{width:31.896000px;}
._23{width:34.260000px;}
._22{width:35.784000px;}
._1c{width:43.920000px;}
._1d{width:45.288000px;}
._20{width:109.728000px;}
._21{width:110.736000px;}
._1f{width:558.072000px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:5.220000px;}
.ya{bottom:5.760000px;}
.y8{bottom:5.940000px;}
.y53{bottom:7.020000px;}
.y55{bottom:7.200000px;}
.y63{bottom:18.900000px;}
.y5a{bottom:19.080000px;}
.y7{bottom:26.100000px;}
.y61{bottom:30.780000px;}
.y69{bottom:30.825000px;}
.y5b{bottom:30.960000px;}
.y51{bottom:30.990000px;}
.y5d{bottom:31.500000px;}
.y6{bottom:41.760000px;}
.y57{bottom:42.510000px;}
.y62{bottom:42.660000px;}
.y6c{bottom:42.840000px;}
.y9{bottom:45.360000px;}
.y58{bottom:54.390000px;}
.y60{bottom:54.540000px;}
.y6b{bottom:54.720000px;}
.y50{bottom:54.750000px;}
.y56{bottom:66.270000px;}
.y4d{bottom:66.630000px;}
.y4f{bottom:78.510000px;}
.y5c{bottom:93.960000px;}
.y34{bottom:95.580000px;}
.y4e{bottom:102.270000px;}
.y67{bottom:116.460000px;}
.y59{bottom:119.160000px;}
.y33{bottom:119.340000px;}
.y52{bottom:126.210000px;}
.y32{bottom:143.100000px;}
.y31{bottom:166.860000px;}
.y4c{bottom:168.300000px;}
.y30{bottom:190.830000px;}
.y2f{bottom:214.590000px;}
.y2e{bottom:238.350000px;}
.y2d{bottom:262.110000px;}
.y7e{bottom:271.650000px;}
.y2c{bottom:286.050000px;}
.y54{bottom:287.310000px;}
.y2b{bottom:309.810000px;}
.y7d{bottom:310.710000px;}
.y4b{bottom:318.990000px;}
.y7c{bottom:334.470000px;}
.y4a{bottom:342.750000px;}
.y2a{bottom:348.510000px;}
.y7b{bottom:358.410000px;}
.y49{bottom:366.510000px;}
.y7a{bottom:382.170000px;}
.y29{bottom:390.450000px;}
.y79{bottom:405.930000px;}
.y28{bottom:414.210000px;}
.y78{bottom:429.735000px;}
.y27{bottom:438.015000px;}
.y77{bottom:453.675000px;}
.y26{bottom:461.775000px;}
.y76{bottom:477.435000px;}
.y25{bottom:485.715000px;}
.y24{bottom:509.475000px;}
.y75{bottom:516.135000px;}
.y23{bottom:533.235000px;}
.y74{bottom:540.075000px;}
.y22{bottom:556.995000px;}
.y73{bottom:563.835000px;}
.y21{bottom:580.935000px;}
.y72{bottom:587.595000px;}
.y20{bottom:604.695000px;}
.y71{bottom:611.355000px;}
.y1f{bottom:628.455000px;}
.y70{bottom:635.295000px;}
.y48{bottom:652.215000px;}
.y6f{bottom:659.055000px;}
.y1e{bottom:670.245000px;}
.y47{bottom:676.185000px;}
.y6e{bottom:697.785000px;}
.y46{bottom:699.945000px;}
.y1d{bottom:709.125000px;}
.y6d{bottom:721.725000px;}
.y45{bottom:723.705000px;}
.y1c{bottom:732.885000px;}
.y66{bottom:739.905000px;}
.y44{bottom:747.465000px;}
.y1b{bottom:756.645000px;}
.y43{bottom:771.225000px;}
.y1a{bottom:780.585000px;}
.y42{bottom:795.165000px;}
.y19{bottom:804.345000px;}
.y6a{bottom:812.805000px;}
.y41{bottom:818.925000px;}
.y18{bottom:828.105000px;}
.y40{bottom:842.685000px;}
.y17{bottom:851.865000px;}
.y3f{bottom:866.445000px;}
.y16{bottom:875.805000px;}
.y68{bottom:885.705000px;}
.y3e{bottom:890.385000px;}
.y15{bottom:899.565000px;}
.y3d{bottom:914.190000px;}
.y14{bottom:923.370000px;}
.y65{bottom:934.890000px;}
.y3c{bottom:937.950000px;}
.y13{bottom:947.130000px;}
.y3b{bottom:961.710000px;}
.y12{bottom:970.890000px;}
.y64{bottom:984.030000px;}
.y3a{bottom:985.650000px;}
.y11{bottom:994.830000px;}
.y39{bottom:1009.410000px;}
.y10{bottom:1018.590000px;}
.y38{bottom:1033.170000px;}
.yf{bottom:1042.350000px;}
.y5f{bottom:1056.930000px;}
.ye{bottom:1066.110000px;}
.y37{bottom:1072.050000px;}
.yd{bottom:1090.050000px;}
.yc{bottom:1113.810000px;}
.y5e{bottom:1129.830000px;}
.y35{bottom:1132.170000px;}
.yb{bottom:1137.570000px;}
.y5{bottom:1157.760000px;}
.y4{bottom:1169.100000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1203.300000px;}
.y1{bottom:1224.540000px;}
.h8{height:21.780000px;}
.hc{height:23.256000px;}
.h13{height:23.760000px;}
.h14{height:23.796000px;}
.hf{height:23.940000px;}
.h5{height:25.136719px;}
.h4{height:37.705078px;}
.h16{height:47.520000px;}
.h18{height:47.556000px;}
.h11{height:47.700000px;}
.hb{height:50.273438px;}
.he{height:50.414062px;}
.h3{height:50.597578px;}
.h9{height:50.800781px;}
.h1a{height:52.417969px;}
.ha{height:52.628906px;}
.h2{height:60.679688px;}
.h6{height:61.329023px;}
.h7{height:65.884219px;}
.h15{height:71.280000px;}
.h19{height:71.460000px;}
.h1b{height:71.613281px;}
.h12{height:72.900000px;}
.h10{height:118.296000px;}
.hd{height:142.956000px;}
.h17{height:242.490000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.wc{width:82.656000px;}
.wa{width:83.376000px;}
.wb{width:85.320000px;}
.w9{width:87.480000px;}
.w6{width:109.440000px;}
.w7{width:119.736000px;}
.w5{width:198.750000px;}
.w8{width:257.610000px;}
.w4{width:383.835000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:8.100000px;}
.x28{left:9.540000px;}
.x8{left:12.495000px;}
.x26{left:14.580000px;}
.x2c{left:17.280000px;}
.x20{left:18.900000px;}
.x15{left:19.980000px;}
.x22{left:21.780000px;}
.x1f{left:23.220000px;}
.x1c{left:24.660000px;}
.x1a{left:26.094000px;}
.x23{left:28.260000px;}
.x21{left:31.140000px;}
.x2a{left:34.554000px;}
.x1d{left:36.720000px;}
.x2d{left:47.874000px;}
.x25{left:65.880000px;}
.x5{left:127.655987px;}
.x2{left:130.895987px;}
.xb{left:132.155987px;}
.x2f{left:159.689987px;}
.x1{left:167.249987px;}
.x12{left:180.749987px;}
.xa{left:204.869987px;}
.xf{left:245.729987px;}
.x18{left:277.409987px;}
.x2e{left:280.469987px;}
.x19{left:298.874987px;}
.x1b{left:327.855000px;}
.x14{left:348.554987px;}
.x3{left:394.814987px;}
.x16{left:397.334987px;}
.x1e{left:438.015000px;}
.xc{left:444.494987px;}
.x13{left:445.934987px;}
.x7{left:454.500000px;}
.x11{left:457.814987px;}
.x4{left:478.514987px;}
.x9{left:505.004987px;}
.x6{left:512.204987px;}
.x10{left:556.844987px;}
.x24{left:558.645000px;}
.xe{left:618.404987px;}
.x27{left:646.845000px;}
.x29{left:730.950000px;}
.x17{left:766.409987px;}
.xd{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.282133pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:48.106667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.968533pt;}
.ws1{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-8.448000pt;}
._4{margin-left:-6.656000pt;}
._1{margin-left:-5.248000pt;}
._5{margin-left:-3.584000pt;}
._3{margin-left:-2.304000pt;}
._2{margin-left:-1.344000pt;}
._6{width:1.088000pt;}
._17{width:1.984000pt;}
._18{width:3.008000pt;}
._11{width:4.160000pt;}
._12{width:5.824000pt;}
._f{width:7.104000pt;}
._13{width:8.256000pt;}
._14{width:9.600000pt;}
._1e{width:10.560000pt;}
._15{width:11.584000pt;}
._c{width:12.970667pt;}
._10{width:13.952000pt;}
._9{width:15.104000pt;}
._a{width:16.960000pt;}
._b{width:17.856000pt;}
._19{width:18.880000pt;}
._16{width:19.904000pt;}
._1a{width:21.248000pt;}
._1b{width:22.144000pt;}
._8{width:24.160000pt;}
._7{width:25.120000pt;}
._d{width:27.392000pt;}
._e{width:28.352000pt;}
._23{width:30.453333pt;}
._22{width:31.808000pt;}
._1c{width:39.040000pt;}
._1d{width:40.256000pt;}
._20{width:97.536000pt;}
._21{width:98.432000pt;}
._1f{width:496.064000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:4.640000pt;}
.ya{bottom:5.120000pt;}
.y8{bottom:5.280000pt;}
.y53{bottom:6.240000pt;}
.y55{bottom:6.400000pt;}
.y63{bottom:16.800000pt;}
.y5a{bottom:16.960000pt;}
.y7{bottom:23.200000pt;}
.y61{bottom:27.360000pt;}
.y69{bottom:27.400000pt;}
.y5b{bottom:27.520000pt;}
.y51{bottom:27.546667pt;}
.y5d{bottom:28.000000pt;}
.y6{bottom:37.120000pt;}
.y57{bottom:37.786667pt;}
.y62{bottom:37.920000pt;}
.y6c{bottom:38.080000pt;}
.y9{bottom:40.320000pt;}
.y58{bottom:48.346667pt;}
.y60{bottom:48.480000pt;}
.y6b{bottom:48.640000pt;}
.y50{bottom:48.666667pt;}
.y56{bottom:58.906667pt;}
.y4d{bottom:59.226667pt;}
.y4f{bottom:69.786667pt;}
.y5c{bottom:83.520000pt;}
.y34{bottom:84.960000pt;}
.y4e{bottom:90.906667pt;}
.y67{bottom:103.520000pt;}
.y59{bottom:105.920000pt;}
.y33{bottom:106.080000pt;}
.y52{bottom:112.186667pt;}
.y32{bottom:127.200000pt;}
.y31{bottom:148.320000pt;}
.y4c{bottom:149.600000pt;}
.y30{bottom:169.626667pt;}
.y2f{bottom:190.746667pt;}
.y2e{bottom:211.866667pt;}
.y2d{bottom:232.986667pt;}
.y7e{bottom:241.466667pt;}
.y2c{bottom:254.266667pt;}
.y54{bottom:255.386667pt;}
.y2b{bottom:275.386667pt;}
.y7d{bottom:276.186667pt;}
.y4b{bottom:283.546667pt;}
.y7c{bottom:297.306667pt;}
.y4a{bottom:304.666667pt;}
.y2a{bottom:309.786667pt;}
.y7b{bottom:318.586667pt;}
.y49{bottom:325.786667pt;}
.y7a{bottom:339.706667pt;}
.y29{bottom:347.066667pt;}
.y79{bottom:360.826667pt;}
.y28{bottom:368.186667pt;}
.y78{bottom:381.986667pt;}
.y27{bottom:389.346667pt;}
.y77{bottom:403.266667pt;}
.y26{bottom:410.466667pt;}
.y76{bottom:424.386667pt;}
.y25{bottom:431.746667pt;}
.y24{bottom:452.866667pt;}
.y75{bottom:458.786667pt;}
.y23{bottom:473.986667pt;}
.y74{bottom:480.066667pt;}
.y22{bottom:495.106667pt;}
.y73{bottom:501.186667pt;}
.y21{bottom:516.386667pt;}
.y72{bottom:522.306667pt;}
.y20{bottom:537.506667pt;}
.y71{bottom:543.426667pt;}
.y1f{bottom:558.626667pt;}
.y70{bottom:564.706667pt;}
.y48{bottom:579.746667pt;}
.y6f{bottom:585.826667pt;}
.y1e{bottom:595.773333pt;}
.y47{bottom:601.053333pt;}
.y6e{bottom:620.253333pt;}
.y46{bottom:622.173333pt;}
.y1d{bottom:630.333333pt;}
.y6d{bottom:641.533333pt;}
.y45{bottom:643.293333pt;}
.y1c{bottom:651.453333pt;}
.y66{bottom:657.693333pt;}
.y44{bottom:664.413333pt;}
.y1b{bottom:672.573333pt;}
.y43{bottom:685.533333pt;}
.y1a{bottom:693.853333pt;}
.y42{bottom:706.813333pt;}
.y19{bottom:714.973333pt;}
.y6a{bottom:722.493333pt;}
.y41{bottom:727.933333pt;}
.y18{bottom:736.093333pt;}
.y40{bottom:749.053333pt;}
.y17{bottom:757.213333pt;}
.y3f{bottom:770.173333pt;}
.y16{bottom:778.493333pt;}
.y68{bottom:787.293333pt;}
.y3e{bottom:791.453333pt;}
.y15{bottom:799.613333pt;}
.y3d{bottom:812.613333pt;}
.y14{bottom:820.773333pt;}
.y65{bottom:831.013333pt;}
.y3c{bottom:833.733333pt;}
.y13{bottom:841.893333pt;}
.y3b{bottom:854.853333pt;}
.y12{bottom:863.013333pt;}
.y64{bottom:874.693333pt;}
.y3a{bottom:876.133333pt;}
.y11{bottom:884.293333pt;}
.y39{bottom:897.253333pt;}
.y10{bottom:905.413333pt;}
.y38{bottom:918.373333pt;}
.yf{bottom:926.533333pt;}
.y5f{bottom:939.493333pt;}
.ye{bottom:947.653333pt;}
.y37{bottom:952.933333pt;}
.yd{bottom:968.933333pt;}
.yc{bottom:990.053333pt;}
.y5e{bottom:1004.293333pt;}
.y35{bottom:1006.373333pt;}
.yb{bottom:1011.173333pt;}
.y5{bottom:1029.120000pt;}
.y4{bottom:1039.200000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1069.600000pt;}
.y1{bottom:1088.480000pt;}
.h8{height:19.360000pt;}
.hc{height:20.672000pt;}
.h13{height:21.120000pt;}
.h14{height:21.152000pt;}
.hf{height:21.280000pt;}
.h5{height:22.343750pt;}
.h4{height:33.515625pt;}
.h16{height:42.240000pt;}
.h18{height:42.272000pt;}
.h11{height:42.400000pt;}
.hb{height:44.687500pt;}
.he{height:44.812500pt;}
.h3{height:44.975625pt;}
.h9{height:45.156250pt;}
.h1a{height:46.593750pt;}
.ha{height:46.781250pt;}
.h2{height:53.937500pt;}
.h6{height:54.514687pt;}
.h7{height:58.563750pt;}
.h15{height:63.360000pt;}
.h19{height:63.520000pt;}
.h1b{height:63.656250pt;}
.h12{height:64.800000pt;}
.h10{height:105.152000pt;}
.hd{height:127.072000pt;}
.h17{height:215.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.wc{width:73.472000pt;}
.wa{width:74.112000pt;}
.wb{width:75.840000pt;}
.w9{width:77.760000pt;}
.w6{width:97.280000pt;}
.w7{width:106.432000pt;}
.w5{width:176.666667pt;}
.w8{width:228.986667pt;}
.w4{width:341.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:7.200000pt;}
.x28{left:8.480000pt;}
.x8{left:11.106667pt;}
.x26{left:12.960000pt;}
.x2c{left:15.360000pt;}
.x20{left:16.800000pt;}
.x15{left:17.760000pt;}
.x22{left:19.360000pt;}
.x1f{left:20.640000pt;}
.x1c{left:21.920000pt;}
.x1a{left:23.194667pt;}
.x23{left:25.120000pt;}
.x21{left:27.680000pt;}
.x2a{left:30.714667pt;}
.x1d{left:32.640000pt;}
.x2d{left:42.554667pt;}
.x25{left:58.560000pt;}
.x5{left:113.471988pt;}
.x2{left:116.351988pt;}
.xb{left:117.471988pt;}
.x2f{left:141.946655pt;}
.x1{left:148.666655pt;}
.x12{left:160.666655pt;}
.xa{left:182.106655pt;}
.xf{left:218.426655pt;}
.x18{left:246.586655pt;}
.x2e{left:249.306655pt;}
.x19{left:265.666655pt;}
.x1b{left:291.426667pt;}
.x14{left:309.826655pt;}
.x3{left:350.946655pt;}
.x16{left:353.186655pt;}
.x1e{left:389.346667pt;}
.xc{left:395.106655pt;}
.x13{left:396.386655pt;}
.x7{left:404.000000pt;}
.x11{left:406.946655pt;}
.x4{left:425.346655pt;}
.x9{left:448.893322pt;}
.x6{left:455.293322pt;}
.x10{left:494.973322pt;}
.x24{left:496.573333pt;}
.xe{left:549.693322pt;}
.x27{left:574.973333pt;}
.x29{left:649.733333pt;}
.x17{left:681.253322pt;}
.xd{left:737.253322pt;}
}




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