
    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_851ba7d0e7980688583a924d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960938;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_20a7bca9791ad7d6634db1a4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.960938;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_9c2ef0b68e9ad7e728fa852d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.019531;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_55bb9d97fa704251c4294d6d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.019531;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_608c0e6d6021968d3dc89e1a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_fdee4eae714668ac2d3886ea.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_955d792c3d7fd8059a62df35.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_639d4b75dca2e5fcf24afa1f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_4f9a330acc735d92b2c770a5.woff')format("woff");}.ff9{font-family:ff9;line-height:1.087891;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_be8fc4707ae5fb750283d069.woff')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_babc001331b3e1303e959d0c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.008789;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_b331d8a700c8ec44016b49cc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.091797;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);}
.v2{vertical-align:-38.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.020000px;}
.v3{vertical-align:124.560000px;}
.ls16{letter-spacing:-1.014000px;}
.ls18{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.156000px;}
.ls13{letter-spacing:-0.072000px;}
.ls12{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.261600px;}
.lsd{letter-spacing:0.360000px;}
.ls17{letter-spacing:1.512000px;}
.ls6{letter-spacing:4.968000px;}
.ls7{letter-spacing:7.417440px;}
.ls8{letter-spacing:7.656480px;}
.lsb{letter-spacing:7.740720px;}
.lsa{letter-spacing:11.737440px;}
.ls9{letter-spacing:41.317920px;}
.ls2{letter-spacing:95.329920px;}
.ls1{letter-spacing:116.929920px;}
.ls4{letter-spacing:135.287904px;}
.ls3{letter-spacing:135.395760px;}
.ls10{letter-spacing:239.415696px;}
.ls11{letter-spacing:239.544000px;}
.lse{letter-spacing:262.224000px;}
.lsf{letter-spacing:333.072000px;}
.lsc{letter-spacing:452.676000px;}
.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;}
}
.ws0{word-spacing:-258.480000px;}
.ws9{word-spacing:-180.360000px;}
.wsa{word-spacing:-154.720800px;}
.wsb{word-spacing:-144.050400px;}
.ws2{word-spacing:-52.500672px;}
.ws5{word-spacing:-51.185232px;}
.ws1{word-spacing:-51.156000px;}
.ws8{word-spacing:-43.848000px;}
.wsc{word-spacing:-43.200000px;}
.ws3{word-spacing:-41.624880px;}
.ws4{word-spacing:-41.363280px;}
.ws6{word-spacing:-41.207280px;}
.ws7{word-spacing:-40.349280px;}
.wsd{word-spacing:0.000000px;}
._10{margin-left:-23.688600px;}
._b{margin-left:-16.097040px;}
._a{margin-left:-15.094440px;}
._e{margin-left:-11.503080px;}
._4{margin-left:-8.536680px;}
._6{margin-left:-6.945120px;}
._2{margin-left:-5.827320px;}
._5{margin-left:-4.163184px;}
._8{margin-left:-3.112920px;}
._0{margin-left:-1.927080px;}
._9{width:1.113840px;}
._3{width:2.185560px;}
._7{width:3.294840px;}
._f{width:4.320000px;}
._d{width:41.413680px;}
._c{width:51.790320px;}
._1{width:1872.249120px;}
.fc7{color:transparent;}
.fc5{color:rgb(25,70,186);}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(233,113,50);}
.fc3{color:rgb(25,107,36);}
.fc2{color:rgb(160,43,147);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:108.000000px;}
.fsc{font-size:120.240000px;}
.fsa{font-size:136.080000px;}
.fs8{font-size:180.000000px;}
.fs9{font-size:185.760000px;}
.fs4{font-size:203.760000px;}
.fs6{font-size:203.904000px;}
.fs7{font-size:216.000000px;}
.fsd{font-size:216.144000px;}
.fs2{font-size:252.000000px;}
.fs5{font-size:252.144000px;}
.fs1{font-size:258.480000px;}
.fs3{font-size:258.624000px;}
.fs0{font-size:642.360000px;}
.y0{bottom:0.000000px;}
.y36{bottom:0.360000px;}
.y39{bottom:0.795000px;}
.y5{bottom:98.208000px;}
.y7{bottom:130.572000px;}
.y4{bottom:173.805000px;}
.y6{bottom:208.155000px;}
.y3{bottom:249.405000px;}
.y11{bottom:286.200000px;}
.y44{bottom:448.560000px;}
.y43{bottom:480.960000px;}
.y41{bottom:513.030000px;}
.y42{bottom:710.565000px;}
.y22{bottom:811.335000px;}
.y2b{bottom:866.730000px;}
.y21{bottom:872.535000px;}
.y2a{bottom:931.530000px;}
.y20{bottom:933.735000px;}
.y5b{bottom:937.470000px;}
.y1f{bottom:994.935000px;}
.y45{bottom:1032.120000px;}
.y1e{bottom:1056.135000px;}
.y2e{bottom:1115.535000px;}
.y1d{bottom:1149.555000px;}
.y4f{bottom:1173.930000px;}
.y2d{bottom:1180.335000px;}
.y3a{bottom:1236.930000px;}
.y4e{bottom:1238.730000px;}
.y2c{bottom:1245.135000px;}
.y1c{bottom:1261.335000px;}
.y4d{bottom:1303.560000px;}
.y1b{bottom:1322.535000px;}
.y4c{bottom:1368.360000px;}
.y1a{bottom:1383.735000px;}
.y29{bottom:1426.425000px;}
.y4b{bottom:1433.160000px;}
.y19{bottom:1444.935000px;}
.y28{bottom:1490.685000px;}
.y4a{bottom:1515.960000px;}
.y38{bottom:1535.940000px;}
.y18{bottom:1538.385000px;}
.y27{bottom:1556.070000px;}
.y49{bottom:1580.760000px;}
.y37{bottom:1599.300000px;}
.y17{bottom:1639.365000px;}
.y48{bottom:1645.560000px;}
.y12{bottom:1659.165000px;}
.y35{bottom:1667.880000px;}
.y16{bottom:1700.565000px;}
.y47{bottom:1710.360000px;}
.y31{bottom:1737.000000px;}
.y15{bottom:1761.765000px;}
.y30{bottom:1802.160000px;}
.y46{bottom:1806.480000px;}
.y14{bottom:1822.965000px;}
.y3b{bottom:1840.245000px;}
.y2f{bottom:1866.960000px;}
.y13{bottom:1884.165000px;}
.y5a{bottom:1946.235000px;}
.y3e{bottom:1994.760000px;}
.y10{bottom:2006.565000px;}
.y59{bottom:2011.035000px;}
.y3d{bottom:2027.160000px;}
.y34{bottom:2046.780000px;}
.y26{bottom:2047.965000px;}
.y58{bottom:2075.865000px;}
.yf{bottom:2099.985000px;}
.y33{bottom:2111.940000px;}
.y25{bottom:2112.765000px;}
.y57{bottom:2140.665000px;}
.y32{bottom:2176.740000px;}
.y24{bottom:2177.565000px;}
.ye{bottom:2201.040000px;}
.y56{bottom:2205.465000px;}
.yd{bottom:2262.240000px;}
.y55{bottom:2270.265000px;}
.yc{bottom:2323.440000px;}
.y54{bottom:2335.065000px;}
.yb{bottom:2384.640000px;}
.y53{bottom:2399.865000px;}
.y40{bottom:2425.035000px;}
.y3f{bottom:2426.295000px;}
.ya{bottom:2445.840000px;}
.y52{bottom:2464.665000px;}
.y3c{bottom:2500.890000px;}
.y51{bottom:2529.465000px;}
.y9{bottom:2539.260000px;}
.y50{bottom:2625.585000px;}
.y23{bottom:2630.160000px;}
.y8{bottom:2632.290000px;}
.y2{bottom:2818.695000px;}
.y1{bottom:2954.700000px;}
.he{height:29.700000px;}
.h10{height:30.060000px;}
.h11{height:30.600000px;}
.h14{height:93.603516px;}
.h16{height:93.761719px;}
.hf{height:156.269531px;}
.h12{height:156.553594px;}
.h7{height:176.598633px;}
.ha{height:176.723437px;}
.hd{height:182.039062px;}
.h13{height:186.679688px;}
.h17{height:186.804141px;}
.hb{height:187.207031px;}
.h18{height:187.331836px;}
.hc{height:214.839844px;}
.h15{height:218.321719px;}
.h4{height:218.408203px;}
.h9{height:218.533008px;}
.h2{height:218.549531px;}
.h3{height:218.777344px;}
.h5{height:224.024414px;}
.h6{height:224.149219px;}
.h1{height:488.043047px;}
.h8{height:2953.800000px;}
.h0{height:3240.000000px;}
.w3{width:14.760150px;}
.w4{width:21.600000px;}
.w5{width:21.960000px;}
.w2{width:1080.180000px;}
.w1{width:4319.999936px;}
.w0{width:4320.000000px;}
.x23{left:-2.880000px;}
.x25{left:-1.080000px;}
.x0{left:0.000000px;}
.x1{left:69.551936px;}
.xe{left:91.155000px;}
.xd{left:100.980000px;}
.xa{left:139.571936px;}
.x10{left:140.651936px;}
.x2{left:181.619936px;}
.xb{left:192.134936px;}
.x9{left:205.994936px;}
.xf{left:212.654936px;}
.xc{left:214.274936px;}
.x2e{left:287.459936px;}
.x8{left:413.279936px;}
.x2f{left:587.264936px;}
.x2d{left:799.304936px;}
.x14{left:1299.959936px;}
.x12{left:1335.059936px;}
.x18{left:1357.124936px;}
.x13{left:1363.139936px;}
.x19{left:1379.444936px;}
.x15{left:1389.164936px;}
.x1a{left:1394.564936px;}
.x1d{left:1397.984936px;}
.x1b{left:1410.404936px;}
.x17{left:1420.304936px;}
.x1e{left:1430.789936px;}
.x16{left:1439.609936px;}
.x1c{left:1520.969936px;}
.x1f{left:1825.994936px;}
.x20{left:1839.134936px;}
.x21{left:1849.574936px;}
.x3{left:1854.899936px;}
.x4{left:1868.219936px;}
.x5{left:1960.919936px;}
.x11{left:1969.769936px;}
.x27{left:2088.749936px;}
.x36{left:2136.419936px;}
.x28{left:2171.009936px;}
.x29{left:2173.574936px;}
.x2b{left:2257.769936px;}
.x22{left:2535.120000px;}
.x26{left:2579.760000px;}
.x2a{left:2681.069936px;}
.x2c{left:2685.929936px;}
.x24{left:2719.800000px;}
.x30{left:2988.794936px;}
.x7{left:3008.909936px;}
.x34{left:3179.339936px;}
.x32{left:3218.039936px;}
.x33{left:3326.039936px;}
.x31{left:3467.774936px;}
.x6{left:3478.169936px;}
.x35{left:3532.469936px;}
@media print{
.v2{vertical-align:-33.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.240000pt;}
.v3{vertical-align:110.720000pt;}
.ls16{letter-spacing:-0.901333pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.138667pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.232533pt;}
.lsd{letter-spacing:0.320000pt;}
.ls17{letter-spacing:1.344000pt;}
.ls6{letter-spacing:4.416000pt;}
.ls7{letter-spacing:6.593280pt;}
.ls8{letter-spacing:6.805760pt;}
.lsb{letter-spacing:6.880640pt;}
.lsa{letter-spacing:10.433280pt;}
.ls9{letter-spacing:36.727040pt;}
.ls2{letter-spacing:84.737707pt;}
.ls1{letter-spacing:103.937707pt;}
.ls4{letter-spacing:120.255915pt;}
.ls3{letter-spacing:120.351787pt;}
.ls10{letter-spacing:212.813952pt;}
.ls11{letter-spacing:212.928000pt;}
.lse{letter-spacing:233.088000pt;}
.lsf{letter-spacing:296.064000pt;}
.lsc{letter-spacing:402.378667pt;}
.ws0{word-spacing:-229.760000pt;}
.ws9{word-spacing:-160.320000pt;}
.wsa{word-spacing:-137.529600pt;}
.wsb{word-spacing:-128.044800pt;}
.ws2{word-spacing:-46.667264pt;}
.ws5{word-spacing:-45.497984pt;}
.ws1{word-spacing:-45.472000pt;}
.ws8{word-spacing:-38.976000pt;}
.wsc{word-spacing:-38.400000pt;}
.ws3{word-spacing:-36.999893pt;}
.ws4{word-spacing:-36.767360pt;}
.ws6{word-spacing:-36.628693pt;}
.ws7{word-spacing:-35.866027pt;}
.wsd{word-spacing:0.000000pt;}
._10{margin-left:-21.056533pt;}
._b{margin-left:-14.308480pt;}
._a{margin-left:-13.417280pt;}
._e{margin-left:-10.224960pt;}
._4{margin-left:-7.588160pt;}
._6{margin-left:-6.173440pt;}
._2{margin-left:-5.179840pt;}
._5{margin-left:-3.700608pt;}
._8{margin-left:-2.767040pt;}
._0{margin-left:-1.712960pt;}
._9{width:0.990080pt;}
._3{width:1.942720pt;}
._7{width:2.928747pt;}
._f{width:3.840000pt;}
._d{width:36.812160pt;}
._c{width:46.035840pt;}
._1{width:1664.221440pt;}
.fsb{font-size:96.000000pt;}
.fsc{font-size:106.880000pt;}
.fsa{font-size:120.960000pt;}
.fs8{font-size:160.000000pt;}
.fs9{font-size:165.120000pt;}
.fs4{font-size:181.120000pt;}
.fs6{font-size:181.248000pt;}
.fs7{font-size:192.000000pt;}
.fsd{font-size:192.128000pt;}
.fs2{font-size:224.000000pt;}
.fs5{font-size:224.128000pt;}
.fs1{font-size:229.760000pt;}
.fs3{font-size:229.888000pt;}
.fs0{font-size:570.986667pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:0.320000pt;}
.y39{bottom:0.706667pt;}
.y5{bottom:87.296000pt;}
.y7{bottom:116.064000pt;}
.y4{bottom:154.493333pt;}
.y6{bottom:185.026667pt;}
.y3{bottom:221.693333pt;}
.y11{bottom:254.400000pt;}
.y44{bottom:398.720000pt;}
.y43{bottom:427.520000pt;}
.y41{bottom:456.026667pt;}
.y42{bottom:631.613333pt;}
.y22{bottom:721.186667pt;}
.y2b{bottom:770.426667pt;}
.y21{bottom:775.586667pt;}
.y2a{bottom:828.026667pt;}
.y20{bottom:829.986667pt;}
.y5b{bottom:833.306667pt;}
.y1f{bottom:884.386667pt;}
.y45{bottom:917.440000pt;}
.y1e{bottom:938.786667pt;}
.y2e{bottom:991.586667pt;}
.y1d{bottom:1021.826667pt;}
.y4f{bottom:1043.493333pt;}
.y2d{bottom:1049.186667pt;}
.y3a{bottom:1099.493333pt;}
.y4e{bottom:1101.093333pt;}
.y2c{bottom:1106.786667pt;}
.y1c{bottom:1121.186667pt;}
.y4d{bottom:1158.720000pt;}
.y1b{bottom:1175.586667pt;}
.y4c{bottom:1216.320000pt;}
.y1a{bottom:1229.986667pt;}
.y29{bottom:1267.933333pt;}
.y4b{bottom:1273.920000pt;}
.y19{bottom:1284.386667pt;}
.y28{bottom:1325.053333pt;}
.y4a{bottom:1347.520000pt;}
.y38{bottom:1365.280000pt;}
.y18{bottom:1367.453333pt;}
.y27{bottom:1383.173333pt;}
.y49{bottom:1405.120000pt;}
.y37{bottom:1421.600000pt;}
.y17{bottom:1457.213333pt;}
.y48{bottom:1462.720000pt;}
.y12{bottom:1474.813333pt;}
.y35{bottom:1482.560000pt;}
.y16{bottom:1511.613333pt;}
.y47{bottom:1520.320000pt;}
.y31{bottom:1544.000000pt;}
.y15{bottom:1566.013333pt;}
.y30{bottom:1601.920000pt;}
.y46{bottom:1605.760000pt;}
.y14{bottom:1620.413333pt;}
.y3b{bottom:1635.773333pt;}
.y2f{bottom:1659.520000pt;}
.y13{bottom:1674.813333pt;}
.y5a{bottom:1729.986667pt;}
.y3e{bottom:1773.120000pt;}
.y10{bottom:1783.613333pt;}
.y59{bottom:1787.586667pt;}
.y3d{bottom:1801.920000pt;}
.y34{bottom:1819.360000pt;}
.y26{bottom:1820.413333pt;}
.y58{bottom:1845.213333pt;}
.yf{bottom:1866.653333pt;}
.y33{bottom:1877.280000pt;}
.y25{bottom:1878.013333pt;}
.y57{bottom:1902.813333pt;}
.y32{bottom:1934.880000pt;}
.y24{bottom:1935.613333pt;}
.ye{bottom:1956.480000pt;}
.y56{bottom:1960.413333pt;}
.yd{bottom:2010.880000pt;}
.y55{bottom:2018.013333pt;}
.yc{bottom:2065.280000pt;}
.y54{bottom:2075.613333pt;}
.yb{bottom:2119.680000pt;}
.y53{bottom:2133.213333pt;}
.y40{bottom:2155.586667pt;}
.y3f{bottom:2156.706667pt;}
.ya{bottom:2174.080000pt;}
.y52{bottom:2190.813333pt;}
.y3c{bottom:2223.013333pt;}
.y51{bottom:2248.413333pt;}
.y9{bottom:2257.120000pt;}
.y50{bottom:2333.853333pt;}
.y23{bottom:2337.920000pt;}
.y8{bottom:2339.813333pt;}
.y2{bottom:2505.506667pt;}
.y1{bottom:2626.400000pt;}
.he{height:26.400000pt;}
.h10{height:26.720000pt;}
.h11{height:27.200000pt;}
.h14{height:83.203125pt;}
.h16{height:83.343750pt;}
.hf{height:138.906250pt;}
.h12{height:139.158750pt;}
.h7{height:156.976562pt;}
.ha{height:157.087500pt;}
.hd{height:161.812500pt;}
.h13{height:165.937500pt;}
.h17{height:166.048125pt;}
.hb{height:166.406250pt;}
.h18{height:166.517188pt;}
.hc{height:190.968750pt;}
.h15{height:194.063750pt;}
.h4{height:194.140625pt;}
.h9{height:194.251563pt;}
.h2{height:194.266250pt;}
.h3{height:194.468750pt;}
.h5{height:199.132812pt;}
.h6{height:199.243750pt;}
.h1{height:433.816042pt;}
.h8{height:2625.600000pt;}
.h0{height:2880.000000pt;}
.w3{width:13.120133pt;}
.w4{width:19.200000pt;}
.w5{width:19.520000pt;}
.w2{width:960.160000pt;}
.w1{width:3839.999943pt;}
.w0{width:3840.000000pt;}
.x23{left:-2.560000pt;}
.x25{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x1{left:61.823943pt;}
.xe{left:81.026667pt;}
.xd{left:89.760000pt;}
.xa{left:124.063943pt;}
.x10{left:125.023943pt;}
.x2{left:161.439943pt;}
.xb{left:170.786609pt;}
.x9{left:183.106609pt;}
.xf{left:189.026609pt;}
.xc{left:190.466609pt;}
.x2e{left:255.519943pt;}
.x8{left:367.359943pt;}
.x2f{left:522.013276pt;}
.x2d{left:710.493276pt;}
.x14{left:1155.519943pt;}
.x12{left:1186.719943pt;}
.x18{left:1206.333276pt;}
.x13{left:1211.679943pt;}
.x19{left:1226.173276pt;}
.x15{left:1234.813276pt;}
.x1a{left:1239.613276pt;}
.x1d{left:1242.653276pt;}
.x1b{left:1253.693276pt;}
.x17{left:1262.493276pt;}
.x1e{left:1271.813276pt;}
.x16{left:1279.653276pt;}
.x1c{left:1351.973276pt;}
.x1f{left:1623.106609pt;}
.x20{left:1634.786609pt;}
.x21{left:1644.066609pt;}
.x3{left:1648.799943pt;}
.x4{left:1660.639943pt;}
.x5{left:1743.039943pt;}
.x11{left:1750.906609pt;}
.x27{left:1856.666609pt;}
.x36{left:1899.039943pt;}
.x28{left:1929.786609pt;}
.x29{left:1932.066609pt;}
.x2b{left:2006.906609pt;}
.x22{left:2253.440000pt;}
.x26{left:2293.120000pt;}
.x2a{left:2383.173276pt;}
.x2c{left:2387.493276pt;}
.x24{left:2417.600000pt;}
.x30{left:2656.706609pt;}
.x7{left:2674.586609pt;}
.x34{left:2826.079943pt;}
.x32{left:2860.479943pt;}
.x33{left:2956.479943pt;}
.x31{left:3082.466609pt;}
.x6{left:3091.706609pt;}
.x35{left:3139.973276pt;}
}




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