
    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_709220dec3441b3a068a7d1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_d9663e890287a816746f2807.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119141;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_d778b871b433f7d38dd67bb0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_4434b8353f39d5f83db6df84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_047f09bfd0d4fb94524db514.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_90620e323651107c02146e67.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_dd81034ae0cd2113c4fe7ad3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_21c65815ceafdb18be88e75b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_270019fc128fb9761f602a1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.119141;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_dd7378fc63b99dccc388f959.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_1e9b908ab00b3abafa20286e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_a3c9d91ee9cd8dffb0bc4af2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v2{vertical-align:-44.496000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.720000px;}
.v1{vertical-align:28.620000px;}
.v3{vertical-align:36.000000px;}
.lsc{letter-spacing:-0.311400px;}
.ls9{letter-spacing:-0.223800px;}
.ls1c{letter-spacing:-0.205800px;}
.lsd{letter-spacing:-0.051120px;}
.ls16{letter-spacing:-0.033120px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.117600px;}
.ls15{letter-spacing:0.238200px;}
.lsb{letter-spacing:0.241200px;}
.ls5{letter-spacing:0.259488px;}
.ls3{letter-spacing:0.360720px;}
.ls14{letter-spacing:0.547200px;}
.ls17{letter-spacing:0.597600px;}
.ls4{letter-spacing:25.770960px;}
.ls6{letter-spacing:26.447040px;}
.lsa{letter-spacing:31.325040px;}
.ls19{letter-spacing:31.364064px;}
.ls7{letter-spacing:41.584320px;}
.ls1b{letter-spacing:44.264064px;}
.ls1a{letter-spacing:44.405040px;}
.ls13{letter-spacing:99.400320px;}
.ls12{letter-spacing:99.475200px;}
.ls1{letter-spacing:101.793600px;}
.ls2{letter-spacing:101.844000px;}
.ls18{letter-spacing:119.985600px;}
.ls8{letter-spacing:120.036000px;}
.ls11{letter-spacing:153.400320px;}
.ls10{letter-spacing:153.475200px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc1{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-47.098800px;}
.ws1f{word-spacing:-41.101200px;}
.ws1d{word-spacing:-35.280000px;}
.ws18{word-spacing:-31.901760px;}
.wse{word-spacing:-31.863600px;}
.ws16{word-spacing:-30.096000px;}
.ws4{word-spacing:-29.652480px;}
.ws8{word-spacing:-25.414560px;}
.ws7{word-spacing:-25.376400px;}
.wsa{word-spacing:-23.888160px;}
.ws1a{word-spacing:-21.296400px;}
.ws19{word-spacing:-21.127680px;}
.ws6{word-spacing:-18.685296px;}
.ws2{word-spacing:-18.648000px;}
.ws5{word-spacing:-16.790400px;}
.wsb{word-spacing:-15.874560px;}
.wsc{word-spacing:-15.016320px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.956160px;}
.ws1e{word-spacing:5.215320px;}
.ws13{word-spacing:10.214640px;}
.ws1b{word-spacing:11.015280px;}
.ws12{word-spacing:11.290320px;}
.ws17{word-spacing:41.406120px;}
.ws15{word-spacing:47.197440px;}
.ws1c{word-spacing:93.967200px;}
.ws10{word-spacing:95.156400px;}
.ws11{word-spacing:96.188664px;}
.wsf{word-spacing:104.006280px;}
.ws3{word-spacing:495.524640px;}
.wsd{word-spacing:927.008160px;}
.ws9{word-spacing:2304.384000px;}
._2{margin-left:-2.820960px;}
._1{margin-left:-1.345680px;}
._0{width:1.244880px;}
._4{width:2.585520px;}
._3{width:3.835440px;}
._6{width:30.592080px;}
._7{width:31.822800px;}
._8{width:99.475200px;}
._5{width:1612.872000px;}
.fca{color:rgb(0,112,192);}
.fc9{color:rgb(3,114,193);}
.fc8{color:rgb(255,0,0);}
.fc7{color:transparent;}
.fc6{color:rgb(79,75,75);}
.fc5{color:rgb(114,114,114);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(204,153,0);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:41.760000px;}
.fs10{font-size:59.760000px;}
.fs11{font-size:59.904000px;}
.fs7{font-size:63.360000px;}
.fs17{font-size:63.504000px;}
.fs15{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs14{font-size:79.920000px;}
.fs5{font-size:84.240000px;}
.fsc{font-size:90.000000px;}
.fsd{font-size:90.144000px;}
.fsb{font-size:94.867381px;}
.fs0{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fsa{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fsf{font-size:120.240000px;}
.fs13{font-size:120.384000px;}
.fs4{font-size:138.240000px;}
.fs16{font-size:144.000000px;}
.fs12{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fs1{font-size:192.240000px;}
.fs2{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.y14{bottom:8.100000px;}
.y5{bottom:10.332000px;}
.y13{bottom:20.124000px;}
.y2b{bottom:21.456000px;}
.y20{bottom:47.988000px;}
.y46{bottom:50.400000px;}
.y2a{bottom:64.188000px;}
.y5e{bottom:65.340000px;}
.y5f{bottom:101.412000px;}
.y1{bottom:129.600000px;}
.y1e{bottom:142.380000px;}
.y19{bottom:142.524000px;}
.y32{bottom:176.250000px;}
.y1d{bottom:180.210000px;}
.y18{bottom:180.330000px;}
.y5a{bottom:183.450000px;}
.y28{bottom:196.890000px;}
.y45{bottom:204.195000px;}
.y55{bottom:210.165000px;}
.y17{bottom:218.490000px;}
.y1c{bottom:218.550000px;}
.y9{bottom:232.815000px;}
.y3c{bottom:236.235000px;}
.y31{bottom:242.310000px;}
.y39{bottom:248.115000px;}
.y1b{bottom:256.350000px;}
.y16{bottom:256.470000px;}
.y8{bottom:274.215000px;}
.y54{bottom:279.825000px;}
.y63{bottom:285.480000px;}
.y3b{bottom:290.235000px;}
.y15{bottom:294.300000px;}
.y1a{bottom:294.330000px;}
.y42{bottom:297.645000px;}
.y38{bottom:302.115000px;}
.y3e{bottom:302.835000px;}
.y59{bottom:303.330000px;}
.y27{bottom:305.205000px;}
.y4b{bottom:306.900000px;}
.y30{bottom:308.235000px;}
.y11{bottom:313.410000px;}
.y23{bottom:314.535000px;}
.y53{bottom:314.565000px;}
.y26{bottom:321.405000px;}
.yc{bottom:323.670000px;}
.ye{bottom:324.795000px;}
.y2c{bottom:332.790000px;}
.y10{bottom:336.270000px;}
.yb{bottom:339.555000px;}
.y52{bottom:343.365000px;}
.y3a{bottom:344.265000px;}
.y22{bottom:346.965000px;}
.yd{bottom:347.835000px;}
.y62{bottom:351.570000px;}
.y4{bottom:353.160000px;}
.y37{bottom:356.145000px;}
.y7{bottom:357.015000px;}
.yf{bottom:359.310000px;}
.y3d{bottom:360.435000px;}
.y41{bottom:363.525000px;}
.y58{bottom:369.435000px;}
.y2f{bottom:374.295000px;}
.y51{bottom:378.330000px;}
.y4a{bottom:383.760000px;}
.y36{bottom:410.145000px;}
.y3{bottom:410.760000px;}
.y50{bottom:413.070000px;}
.y49{bottom:416.160000px;}
.y61{bottom:417.450000px;}
.y40{bottom:417.570000px;}
.y57{bottom:435.495000px;}
.y6{bottom:439.845000px;}
.y35{bottom:464.145000px;}
.y2{bottom:468.360000px;}
.y25{bottom:471.165000px;}
.y4f{bottom:482.730000px;}
.y60{bottom:483.555000px;}
.y3f{bottom:483.630000px;}
.y48{bottom:486.930000px;}
.y21{bottom:510.555000px;}
.y4e{bottom:517.470000px;}
.y4d{bottom:552.240000px;}
.y29{bottom:562.680000px;}
.y56{bottom:567.465000px;}
.y2d{bottom:568.050000px;}
.y47{bottom:575.670000px;}
.y44{bottom:576.825000px;}
.y5c{bottom:580.575000px;}
.y34{bottom:584.250000px;}
.y4c{bottom:593.100000px;}
.y1f{bottom:602.175000px;}
.y5d{bottom:606.030000px;}
.y24{bottom:616.680000px;}
.y5b{bottom:619.455000px;}
.y43{bottom:630.825000px;}
.y33{bottom:641.160000px;}
.ya{bottom:691.530000px;}
.y2e{bottom:696.210000px;}
.y12{bottom:709.635000px;}
.h13{height:62.748000px;}
.h14{height:62.899200px;}
.h7{height:64.413984px;}
.h9{height:66.528000px;}
.h19{height:66.679200px;}
.h17{height:69.552000px;}
.hd{height:70.270419px;}
.h4{height:75.600000px;}
.ha{height:75.751200px;}
.h6{height:93.033984px;}
.he{height:94.500000px;}
.hf{height:94.651200px;}
.hc{height:97.136719px;}
.h1{height:100.548000px;}
.hb{height:100.699200px;}
.h11{height:113.400000px;}
.h10{height:113.551200px;}
.h5{height:124.335000px;}
.h12{height:126.252000px;}
.h16{height:126.403200px;}
.h18{height:129.515625px;}
.h15{height:150.885703px;}
.h8{height:151.015219px;}
.h2{height:172.903359px;}
.h3{height:173.032875px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x11{left:61.451979px;}
.x4{left:109.799979px;}
.x1{left:112.247979px;}
.x21{left:123.875979px;}
.x10{left:137.735979px;}
.x3{left:145.907979px;}
.x1e{left:163.829979px;}
.x5{left:167.009979px;}
.x22{left:170.849979px;}
.xe{left:208.259979px;}
.x23{left:224.849979px;}
.x1a{left:254.054979px;}
.x12{left:313.814979px;}
.x17{left:344.984979px;}
.x1b{left:357.509979px;}
.x13{left:378.644979px;}
.x6{left:406.259979px;}
.x1f{left:487.364979px;}
.x14{left:604.649979px;}
.x8{left:675.614979px;}
.x7{left:682.634979px;}
.xf{left:754.349979px;}
.x27{left:796.529979px;}
.x25{left:815.189979px;}
.x26{left:855.689979px;}
.x24{left:889.529979px;}
.x9{left:917.459979px;}
.xb{left:918.539979px;}
.xa{left:936.719979px;}
.x20{left:970.739979px;}
.x15{left:973.544979px;}
.x16{left:1088.894979px;}
.x18{left:1102.214979px;}
.xc{left:1138.784979px;}
.xd{left:1159.304979px;}
.x28{left:1224.644979px;}
.x1c{left:1383.659979px;}
.x1d{left:1384.739979px;}
.x19{left:1387.619979px;}
.x2{left:1388.699979px;}
@media print{
.v2{vertical-align:-39.552000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.640000pt;}
.v1{vertical-align:25.440000pt;}
.v3{vertical-align:32.000000pt;}
.lsc{letter-spacing:-0.276800pt;}
.ls9{letter-spacing:-0.198933pt;}
.ls1c{letter-spacing:-0.182933pt;}
.lsd{letter-spacing:-0.045440pt;}
.ls16{letter-spacing:-0.029440pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.104533pt;}
.ls15{letter-spacing:0.211733pt;}
.lsb{letter-spacing:0.214400pt;}
.ls5{letter-spacing:0.230656pt;}
.ls3{letter-spacing:0.320640pt;}
.ls14{letter-spacing:0.486400pt;}
.ls17{letter-spacing:0.531200pt;}
.ls4{letter-spacing:22.907520pt;}
.ls6{letter-spacing:23.508480pt;}
.lsa{letter-spacing:27.844480pt;}
.ls19{letter-spacing:27.879168pt;}
.ls7{letter-spacing:36.963840pt;}
.ls1b{letter-spacing:39.345835pt;}
.ls1a{letter-spacing:39.471147pt;}
.ls13{letter-spacing:88.355840pt;}
.ls12{letter-spacing:88.422400pt;}
.ls1{letter-spacing:90.483200pt;}
.ls2{letter-spacing:90.528000pt;}
.ls18{letter-spacing:106.653867pt;}
.ls8{letter-spacing:106.698667pt;}
.ls11{letter-spacing:136.355840pt;}
.ls10{letter-spacing:136.422400pt;}
.ws1{word-spacing:-41.865600pt;}
.ws1f{word-spacing:-36.534400pt;}
.ws1d{word-spacing:-31.360000pt;}
.ws18{word-spacing:-28.357120pt;}
.wse{word-spacing:-28.323200pt;}
.ws16{word-spacing:-26.752000pt;}
.ws4{word-spacing:-26.357760pt;}
.ws8{word-spacing:-22.590720pt;}
.ws7{word-spacing:-22.556800pt;}
.wsa{word-spacing:-21.233920pt;}
.ws1a{word-spacing:-18.930133pt;}
.ws19{word-spacing:-18.780160pt;}
.ws6{word-spacing:-16.609152pt;}
.ws2{word-spacing:-16.576000pt;}
.ws5{word-spacing:-14.924800pt;}
.wsb{word-spacing:-14.110720pt;}
.wsc{word-spacing:-13.347840pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.849920pt;}
.ws1e{word-spacing:4.635840pt;}
.ws13{word-spacing:9.079680pt;}
.ws1b{word-spacing:9.791360pt;}
.ws12{word-spacing:10.035840pt;}
.ws17{word-spacing:36.805440pt;}
.ws15{word-spacing:41.953280pt;}
.ws1c{word-spacing:83.526400pt;}
.ws10{word-spacing:84.583467pt;}
.ws11{word-spacing:85.501035pt;}
.wsf{word-spacing:92.450027pt;}
.ws3{word-spacing:440.466347pt;}
.wsd{word-spacing:824.007253pt;}
.ws9{word-spacing:2048.341333pt;}
._2{margin-left:-2.507520pt;}
._1{margin-left:-1.196160pt;}
._0{width:1.106560pt;}
._4{width:2.298240pt;}
._3{width:3.409280pt;}
._6{width:27.192960pt;}
._7{width:28.286933pt;}
._8{width:88.422400pt;}
._5{width:1433.664000pt;}
.fs18{font-size:37.120000pt;}
.fs10{font-size:53.120000pt;}
.fs11{font-size:53.248000pt;}
.fs7{font-size:56.320000pt;}
.fs17{font-size:56.448000pt;}
.fs15{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs14{font-size:71.040000pt;}
.fs5{font-size:74.880000pt;}
.fsc{font-size:80.000000pt;}
.fsd{font-size:80.128000pt;}
.fsb{font-size:84.326561pt;}
.fs0{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fsa{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fsf{font-size:106.880000pt;}
.fs13{font-size:107.008000pt;}
.fs4{font-size:122.880000pt;}
.fs16{font-size:128.000000pt;}
.fs12{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fs1{font-size:170.880000pt;}
.fs2{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:7.200000pt;}
.y5{bottom:9.184000pt;}
.y13{bottom:17.888000pt;}
.y2b{bottom:19.072000pt;}
.y20{bottom:42.656000pt;}
.y46{bottom:44.800000pt;}
.y2a{bottom:57.056000pt;}
.y5e{bottom:58.080000pt;}
.y5f{bottom:90.144000pt;}
.y1{bottom:115.200000pt;}
.y1e{bottom:126.560000pt;}
.y19{bottom:126.688000pt;}
.y32{bottom:156.666667pt;}
.y1d{bottom:160.186667pt;}
.y18{bottom:160.293333pt;}
.y5a{bottom:163.066667pt;}
.y28{bottom:175.013333pt;}
.y45{bottom:181.506667pt;}
.y55{bottom:186.813333pt;}
.y17{bottom:194.213333pt;}
.y1c{bottom:194.266667pt;}
.y9{bottom:206.946667pt;}
.y3c{bottom:209.986667pt;}
.y31{bottom:215.386667pt;}
.y39{bottom:220.546667pt;}
.y1b{bottom:227.866667pt;}
.y16{bottom:227.973333pt;}
.y8{bottom:243.746667pt;}
.y54{bottom:248.733333pt;}
.y63{bottom:253.760000pt;}
.y3b{bottom:257.986667pt;}
.y15{bottom:261.600000pt;}
.y1a{bottom:261.626667pt;}
.y42{bottom:264.573333pt;}
.y38{bottom:268.546667pt;}
.y3e{bottom:269.186667pt;}
.y59{bottom:269.626667pt;}
.y27{bottom:271.293333pt;}
.y4b{bottom:272.800000pt;}
.y30{bottom:273.986667pt;}
.y11{bottom:278.586667pt;}
.y23{bottom:279.586667pt;}
.y53{bottom:279.613333pt;}
.y26{bottom:285.693333pt;}
.yc{bottom:287.706667pt;}
.ye{bottom:288.706667pt;}
.y2c{bottom:295.813333pt;}
.y10{bottom:298.906667pt;}
.yb{bottom:301.826667pt;}
.y52{bottom:305.213333pt;}
.y3a{bottom:306.013333pt;}
.y22{bottom:308.413333pt;}
.yd{bottom:309.186667pt;}
.y62{bottom:312.506667pt;}
.y4{bottom:313.920000pt;}
.y37{bottom:316.573333pt;}
.y7{bottom:317.346667pt;}
.yf{bottom:319.386667pt;}
.y3d{bottom:320.386667pt;}
.y41{bottom:323.133333pt;}
.y58{bottom:328.386667pt;}
.y2f{bottom:332.706667pt;}
.y51{bottom:336.293333pt;}
.y4a{bottom:341.120000pt;}
.y36{bottom:364.573333pt;}
.y3{bottom:365.120000pt;}
.y50{bottom:367.173333pt;}
.y49{bottom:369.920000pt;}
.y61{bottom:371.066667pt;}
.y40{bottom:371.173333pt;}
.y57{bottom:387.106667pt;}
.y6{bottom:390.973333pt;}
.y35{bottom:412.573333pt;}
.y2{bottom:416.320000pt;}
.y25{bottom:418.813333pt;}
.y4f{bottom:429.093333pt;}
.y60{bottom:429.826667pt;}
.y3f{bottom:429.893333pt;}
.y48{bottom:432.826667pt;}
.y21{bottom:453.826667pt;}
.y4e{bottom:459.973333pt;}
.y4d{bottom:490.880000pt;}
.y29{bottom:500.160000pt;}
.y56{bottom:504.413333pt;}
.y2d{bottom:504.933333pt;}
.y47{bottom:511.706667pt;}
.y44{bottom:512.733333pt;}
.y5c{bottom:516.066667pt;}
.y34{bottom:519.333333pt;}
.y4c{bottom:527.200000pt;}
.y1f{bottom:535.266667pt;}
.y5d{bottom:538.693333pt;}
.y24{bottom:548.160000pt;}
.y5b{bottom:550.626667pt;}
.y43{bottom:560.733333pt;}
.y33{bottom:569.920000pt;}
.ya{bottom:614.693333pt;}
.y2e{bottom:618.853333pt;}
.y12{bottom:630.786667pt;}
.h13{height:55.776000pt;}
.h14{height:55.910400pt;}
.h7{height:57.256875pt;}
.h9{height:59.136000pt;}
.h19{height:59.270400pt;}
.h17{height:61.824000pt;}
.hd{height:62.462594pt;}
.h4{height:67.200000pt;}
.ha{height:67.334400pt;}
.h6{height:82.696875pt;}
.he{height:84.000000pt;}
.hf{height:84.134400pt;}
.hc{height:86.343750pt;}
.h1{height:89.376000pt;}
.hb{height:89.510400pt;}
.h11{height:100.800000pt;}
.h10{height:100.934400pt;}
.h5{height:110.520000pt;}
.h12{height:112.224000pt;}
.h16{height:112.358400pt;}
.h18{height:115.125000pt;}
.h15{height:134.120625pt;}
.h8{height:134.235750pt;}
.h2{height:153.691875pt;}
.h3{height:153.807000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x11{left:54.623981pt;}
.x4{left:97.599981pt;}
.x1{left:99.775981pt;}
.x21{left:110.111981pt;}
.x10{left:122.431981pt;}
.x3{left:129.695981pt;}
.x1e{left:145.626648pt;}
.x5{left:148.453314pt;}
.x22{left:151.866648pt;}
.xe{left:185.119981pt;}
.x23{left:199.866648pt;}
.x1a{left:225.826648pt;}
.x12{left:278.946648pt;}
.x17{left:306.653314pt;}
.x1b{left:317.786648pt;}
.x13{left:336.573314pt;}
.x6{left:361.119981pt;}
.x1f{left:433.213314pt;}
.x14{left:537.466648pt;}
.x8{left:600.546648pt;}
.x7{left:606.786648pt;}
.xf{left:670.533314pt;}
.x27{left:708.026648pt;}
.x25{left:724.613314pt;}
.x26{left:760.613314pt;}
.x24{left:790.693314pt;}
.x9{left:815.519981pt;}
.xb{left:816.479981pt;}
.xa{left:832.639981pt;}
.x20{left:862.879981pt;}
.x15{left:865.373314pt;}
.x16{left:967.906648pt;}
.x18{left:979.746648pt;}
.xc{left:1012.253314pt;}
.xd{left:1030.493314pt;}
.x28{left:1088.573314pt;}
.x1c{left:1229.919981pt;}
.x1d{left:1230.879981pt;}
.x19{left:1233.439981pt;}
.x2{left:1234.399981pt;}
}




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