
    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_c5722f57e2ceb047eec8800c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_796951f65829b923287b8b4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_35d95238cfbd7ae154288f44.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_e6ecde42f0912c71d13d8354.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_66c3556992ed40cbc3cc6b73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_af562052b998f1f8f1848eab.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ff2f424b5df338c13d67758.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.m3{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-72.000000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.126000px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.387600px;}
.ls15{letter-spacing:0.900000px;}
.ls14{letter-spacing:11.466720px;}
.ls12{letter-spacing:41.682720px;}
.ls13{letter-spacing:41.706720px;}
.ls5{letter-spacing:46.026720px;}
.ls0{letter-spacing:50.580000px;}
.ls11{letter-spacing:90.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;}
}
.ws9{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.733600px;}
.ws6{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.220000px;}
.ws8{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.626000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-0.059760px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-1.076640px;}
._0{width:1.075680px;}
._b{width:2.629440px;}
._10{width:3.705120px;}
._11{width:5.079600px;}
._15{width:6.215040px;}
._23{width:7.380480px;}
._4{width:8.844480px;}
._3{width:9.860400px;}
._16{width:11.775360px;}
._e{width:13.505760px;}
._22{width:15.972240px;}
._c{width:17.629200px;}
._14{width:18.704880px;}
._29{width:19.720800px;}
._2c{width:20.736720px;}
._2{width:21.812400px;}
._1{width:22.947840px;}
._17{width:24.501600px;}
._1a{width:25.995600px;}
._19{width:27.608400px;}
._8{width:29.722800px;}
._1c{width:31.195680px;}
._1b{width:32.449680px;}
._21{width:34.032960px;}
._26{width:35.497440px;}
._18{width:36.780240px;}
._20{width:38.285040px;}
._24{width:40.039200px;}
._34{width:41.174640px;}
._2d{width:42.369840px;}
._27{width:43.958640px;}
._a{width:45.238320px;}
._9{width:46.373760px;}
._33{width:47.466960px;}
._25{width:48.604080px;}
._5{width:50.550240px;}
._13{width:51.991200px;}
._1d{width:52.994160px;}
._6{width:54.023040px;}
._7{width:55.038960px;}
._2b{width:56.054880px;}
._32{width:57.429360px;}
._2a{width:60.577200px;}
._12{width:62.389440px;}
._1f{width:67.409280px;}
._d{width:71.114400px;}
._28{width:76.791600px;}
._2e{width:78.345360px;}
._35{width:79.449120px;}
._2f{width:84.978720px;}
._30{width:105.117840px;}
._1e{width:137.268720px;}
._31{width:698.714880px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.y69{bottom:122.976000px;}
.y78{bottom:124.596000px;}
.y33{bottom:130.536000px;}
.y86{bottom:138.456000px;}
.y68{bottom:140.256000px;}
.y77{bottom:141.876000px;}
.y32{bottom:146.196000px;}
.y85{bottom:155.730000px;}
.y67{bottom:157.530000px;}
.y76{bottom:159.150000px;}
.y31{bottom:162.210000px;}
.y84{bottom:173.010000px;}
.y30{bottom:174.090000px;}
.y66{bottom:174.630000px;}
.y75{bottom:176.430000px;}
.y83{bottom:190.290000px;}
.y65{bottom:191.910000px;}
.y74{bottom:193.710000px;}
.y82{bottom:207.390000px;}
.y64{bottom:209.190000px;}
.y73{bottom:210.990000px;}
.y81{bottom:224.670000px;}
.y63{bottom:226.470000px;}
.y72{bottom:228.090000px;}
.y80{bottom:241.950000px;}
.y62{bottom:244.470000px;}
.y71{bottom:245.370000px;}
.y7f{bottom:259.230000px;}
.y70{bottom:262.650000px;}
.y61{bottom:264.450000px;}
.y2f{bottom:266.070000px;}
.y7e{bottom:276.510000px;}
.y6f{bottom:279.930000px;}
.y60{bottom:281.550000px;}
.y2e{bottom:282.990000px;}
.y7d{bottom:293.835000px;}
.y6e{bottom:297.255000px;}
.y2d{bottom:298.695000px;}
.y5f{bottom:298.875000px;}
.y7c{bottom:310.935000px;}
.y2c{bottom:314.535000px;}
.y5e{bottom:316.155000px;}
.y7b{bottom:328.215000px;}
.y2b{bottom:331.635000px;}
.y5d{bottom:333.435000px;}
.y7a{bottom:345.495000px;}
.y2a{bottom:348.915000px;}
.y5c{bottom:350.715000px;}
.y29{bottom:366.195000px;}
.y5b{bottom:367.995000px;}
.y79{bottom:380.775000px;}
.y28{bottom:383.475000px;}
.y5a{bottom:385.095000px;}
.y27{bottom:400.755000px;}
.y59{bottom:402.375000px;}
.y26{bottom:417.855000px;}
.y58{bottom:419.655000px;}
.y25{bottom:435.135000px;}
.y57{bottom:436.935000px;}
.y87{bottom:452.235000px;}
.y24{bottom:452.415000px;}
.y56{bottom:454.215000px;}
.y23{bottom:469.695000px;}
.y55{bottom:471.495000px;}
.y22{bottom:486.975000px;}
.y54{bottom:488.595000px;}
.y21{bottom:504.255000px;}
.y53{bottom:505.875000px;}
.y20{bottom:521.355000px;}
.y52{bottom:523.155000px;}
.y1f{bottom:538.635000px;}
.y51{bottom:540.435000px;}
.y1e{bottom:555.945000px;}
.y50{bottom:557.745000px;}
.y1d{bottom:573.225000px;}
.y4f{bottom:574.845000px;}
.y1c{bottom:590.505000px;}
.y4e{bottom:592.125000px;}
.y1b{bottom:607.785000px;}
.y4d{bottom:609.405000px;}
.y1a{bottom:624.885000px;}
.y4c{bottom:626.685000px;}
.y19{bottom:642.165000px;}
.y4b{bottom:643.965000px;}
.y18{bottom:659.445000px;}
.y4a{bottom:661.245000px;}
.y17{bottom:676.725000px;}
.y49{bottom:678.345000px;}
.y16{bottom:694.005000px;}
.y48{bottom:695.625000px;}
.y15{bottom:711.105000px;}
.y47{bottom:712.905000px;}
.y14{bottom:728.385000px;}
.y46{bottom:730.185000px;}
.y13{bottom:745.665000px;}
.y45{bottom:747.465000px;}
.y12{bottom:762.945000px;}
.y44{bottom:764.745000px;}
.y11{bottom:780.225000px;}
.y43{bottom:781.845000px;}
.y10{bottom:797.505000px;}
.y42{bottom:799.125000px;}
.yf{bottom:814.650000px;}
.y41{bottom:816.450000px;}
.ye{bottom:831.930000px;}
.y40{bottom:833.730000px;}
.yd{bottom:849.210000px;}
.y3f{bottom:851.010000px;}
.yc{bottom:866.490000px;}
.y3e{bottom:868.290000px;}
.yb{bottom:883.770000px;}
.y3d{bottom:885.390000px;}
.ya{bottom:901.050000px;}
.y3c{bottom:902.670000px;}
.y9{bottom:918.150000px;}
.y3b{bottom:919.950000px;}
.y8{bottom:935.430000px;}
.y3a{bottom:937.230000px;}
.y7{bottom:952.710000px;}
.y39{bottom:954.510000px;}
.y6{bottom:969.990000px;}
.y38{bottom:971.610000px;}
.y5{bottom:987.270000px;}
.y37{bottom:988.890000px;}
.y4{bottom:1004.550000px;}
.y36{bottom:1006.170000px;}
.y6d{bottom:1021.650000px;}
.y35{bottom:1023.450000px;}
.y3{bottom:1038.930000px;}
.y34{bottom:1040.370000px;}
.y6c{bottom:1081.080000px;}
.y6b{bottom:1100.880000px;}
.y6a{bottom:1119.960000px;}
.h9{height:41.726953px;}
.h7{height:51.519375px;}
.h5{height:52.998047px;}
.h8{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.hb{height:59.439023px;}
.h3{height:60.226875px;}
.ha{height:61.423863px;}
.h6{height:62.327813px;}
.h1{height:70.664062px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:106.415986px;}
.x4{left:119.735986px;}
.x9{left:126.215986px;}
.xd{left:131.075986px;}
.x13{left:133.415986px;}
.x3{left:139.895986px;}
.xa{left:160.049986px;}
.x12{left:168.689986px;}
.xb{left:222.149986px;}
.x5{left:223.589986px;}
.x8{left:237.989986px;}
.x7{left:243.389986px;}
.x6{left:268.769986px;}
.xc{left:319.214986px;}
.x1{left:449.174986px;}
.xf{left:485.174986px;}
.x10{left:512.204986px;}
.x11{left:539.204986px;}
.xe{left:647.564986px;}
@media print{
.v2{vertical-align:-64.000000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.112000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.344533pt;}
.ls15{letter-spacing:0.800000pt;}
.ls14{letter-spacing:10.192640pt;}
.ls12{letter-spacing:37.051307pt;}
.ls13{letter-spacing:37.072640pt;}
.ls5{letter-spacing:40.912640pt;}
.ls0{letter-spacing:44.960000pt;}
.ls11{letter-spacing:80.000000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.096533pt;}
.ws6{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.640000pt;}
.ws8{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.112000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-0.053120pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-0.957013pt;}
._0{width:0.956160pt;}
._b{width:2.337280pt;}
._10{width:3.293440pt;}
._11{width:4.515200pt;}
._15{width:5.524480pt;}
._23{width:6.560427pt;}
._4{width:7.861760pt;}
._3{width:8.764800pt;}
._16{width:10.466987pt;}
._e{width:12.005120pt;}
._22{width:14.197547pt;}
._c{width:15.670400pt;}
._14{width:16.626560pt;}
._29{width:17.529600pt;}
._2c{width:18.432640pt;}
._2{width:19.388800pt;}
._1{width:20.398080pt;}
._17{width:21.779200pt;}
._1a{width:23.107200pt;}
._19{width:24.540800pt;}
._8{width:26.420267pt;}
._1c{width:27.729493pt;}
._1b{width:28.844160pt;}
._21{width:30.251520pt;}
._26{width:31.553280pt;}
._18{width:32.693547pt;}
._20{width:34.031147pt;}
._24{width:35.590400pt;}
._34{width:36.599680pt;}
._2d{width:37.662080pt;}
._27{width:39.074347pt;}
._a{width:40.211840pt;}
._9{width:41.221120pt;}
._33{width:42.192853pt;}
._25{width:43.203627pt;}
._5{width:44.933547pt;}
._13{width:46.214400pt;}
._1d{width:47.105920pt;}
._6{width:48.020480pt;}
._7{width:48.923520pt;}
._2b{width:49.826560pt;}
._32{width:51.048320pt;}
._2a{width:53.846400pt;}
._12{width:55.457280pt;}
._1f{width:59.919360pt;}
._d{width:63.212800pt;}
._28{width:68.259200pt;}
._2e{width:69.640320pt;}
._35{width:70.621440pt;}
._2f{width:75.536640pt;}
._30{width:93.438080pt;}
._1e{width:122.016640pt;}
._31{width:621.079893pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.y69{bottom:109.312000pt;}
.y78{bottom:110.752000pt;}
.y33{bottom:116.032000pt;}
.y86{bottom:123.072000pt;}
.y68{bottom:124.672000pt;}
.y77{bottom:126.112000pt;}
.y32{bottom:129.952000pt;}
.y85{bottom:138.426667pt;}
.y67{bottom:140.026667pt;}
.y76{bottom:141.466667pt;}
.y31{bottom:144.186667pt;}
.y84{bottom:153.786667pt;}
.y30{bottom:154.746667pt;}
.y66{bottom:155.226667pt;}
.y75{bottom:156.826667pt;}
.y83{bottom:169.146667pt;}
.y65{bottom:170.586667pt;}
.y74{bottom:172.186667pt;}
.y82{bottom:184.346667pt;}
.y64{bottom:185.946667pt;}
.y73{bottom:187.546667pt;}
.y81{bottom:199.706667pt;}
.y63{bottom:201.306667pt;}
.y72{bottom:202.746667pt;}
.y80{bottom:215.066667pt;}
.y62{bottom:217.306667pt;}
.y71{bottom:218.106667pt;}
.y7f{bottom:230.426667pt;}
.y70{bottom:233.466667pt;}
.y61{bottom:235.066667pt;}
.y2f{bottom:236.506667pt;}
.y7e{bottom:245.786667pt;}
.y6f{bottom:248.826667pt;}
.y60{bottom:250.266667pt;}
.y2e{bottom:251.546667pt;}
.y7d{bottom:261.186667pt;}
.y6e{bottom:264.226667pt;}
.y2d{bottom:265.506667pt;}
.y5f{bottom:265.666667pt;}
.y7c{bottom:276.386667pt;}
.y2c{bottom:279.586667pt;}
.y5e{bottom:281.026667pt;}
.y7b{bottom:291.746667pt;}
.y2b{bottom:294.786667pt;}
.y5d{bottom:296.386667pt;}
.y7a{bottom:307.106667pt;}
.y2a{bottom:310.146667pt;}
.y5c{bottom:311.746667pt;}
.y29{bottom:325.506667pt;}
.y5b{bottom:327.106667pt;}
.y79{bottom:338.466667pt;}
.y28{bottom:340.866667pt;}
.y5a{bottom:342.306667pt;}
.y27{bottom:356.226667pt;}
.y59{bottom:357.666667pt;}
.y26{bottom:371.426667pt;}
.y58{bottom:373.026667pt;}
.y25{bottom:386.786667pt;}
.y57{bottom:388.386667pt;}
.y87{bottom:401.986667pt;}
.y24{bottom:402.146667pt;}
.y56{bottom:403.746667pt;}
.y23{bottom:417.506667pt;}
.y55{bottom:419.106667pt;}
.y22{bottom:432.866667pt;}
.y54{bottom:434.306667pt;}
.y21{bottom:448.226667pt;}
.y53{bottom:449.666667pt;}
.y20{bottom:463.426667pt;}
.y52{bottom:465.026667pt;}
.y1f{bottom:478.786667pt;}
.y51{bottom:480.386667pt;}
.y1e{bottom:494.173333pt;}
.y50{bottom:495.773333pt;}
.y1d{bottom:509.533333pt;}
.y4f{bottom:510.973333pt;}
.y1c{bottom:524.893333pt;}
.y4e{bottom:526.333333pt;}
.y1b{bottom:540.253333pt;}
.y4d{bottom:541.693333pt;}
.y1a{bottom:555.453333pt;}
.y4c{bottom:557.053333pt;}
.y19{bottom:570.813333pt;}
.y4b{bottom:572.413333pt;}
.y18{bottom:586.173333pt;}
.y4a{bottom:587.773333pt;}
.y17{bottom:601.533333pt;}
.y49{bottom:602.973333pt;}
.y16{bottom:616.893333pt;}
.y48{bottom:618.333333pt;}
.y15{bottom:632.093333pt;}
.y47{bottom:633.693333pt;}
.y14{bottom:647.453333pt;}
.y46{bottom:649.053333pt;}
.y13{bottom:662.813333pt;}
.y45{bottom:664.413333pt;}
.y12{bottom:678.173333pt;}
.y44{bottom:679.773333pt;}
.y11{bottom:693.533333pt;}
.y43{bottom:694.973333pt;}
.y10{bottom:708.893333pt;}
.y42{bottom:710.333333pt;}
.yf{bottom:724.133333pt;}
.y41{bottom:725.733333pt;}
.ye{bottom:739.493333pt;}
.y40{bottom:741.093333pt;}
.yd{bottom:754.853333pt;}
.y3f{bottom:756.453333pt;}
.yc{bottom:770.213333pt;}
.y3e{bottom:771.813333pt;}
.yb{bottom:785.573333pt;}
.y3d{bottom:787.013333pt;}
.ya{bottom:800.933333pt;}
.y3c{bottom:802.373333pt;}
.y9{bottom:816.133333pt;}
.y3b{bottom:817.733333pt;}
.y8{bottom:831.493333pt;}
.y3a{bottom:833.093333pt;}
.y7{bottom:846.853333pt;}
.y39{bottom:848.453333pt;}
.y6{bottom:862.213333pt;}
.y38{bottom:863.653333pt;}
.y5{bottom:877.573333pt;}
.y37{bottom:879.013333pt;}
.y4{bottom:892.933333pt;}
.y36{bottom:894.373333pt;}
.y6d{bottom:908.133333pt;}
.y35{bottom:909.733333pt;}
.y3{bottom:923.493333pt;}
.y34{bottom:924.773333pt;}
.y6c{bottom:960.960000pt;}
.y6b{bottom:978.560000pt;}
.y6a{bottom:995.520000pt;}
.h9{height:37.090625pt;}
.h7{height:45.795000pt;}
.h5{height:47.109375pt;}
.h8{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.hb{height:52.834688pt;}
.h3{height:53.535000pt;}
.ha{height:54.598989pt;}
.h6{height:55.402500pt;}
.h1{height:62.812500pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.x4{left:106.431988pt;}
.x9{left:112.191988pt;}
.xd{left:116.511988pt;}
.x13{left:118.591988pt;}
.x3{left:124.351988pt;}
.xa{left:142.266655pt;}
.x12{left:149.946655pt;}
.xb{left:197.466655pt;}
.x5{left:198.746655pt;}
.x8{left:211.546655pt;}
.x7{left:216.346655pt;}
.x6{left:238.906655pt;}
.xc{left:283.746655pt;}
.x1{left:399.266655pt;}
.xf{left:431.266655pt;}
.x10{left:455.293321pt;}
.x11{left:479.293321pt;}
.xe{left:575.613321pt;}
}




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