
    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_fd885322a1280fac150f969c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_9d61cbf87d90f9521c7f4f61.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_0018794236b49edbe5dec4b8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.862305;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_14672883b105fb55be87ee13.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_80126b52d4e0ab22bba387d2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.982000px;}
.v1{vertical-align:26.376000px;}
.ls1e{letter-spacing:-1.320000px;}
.ls28{letter-spacing:-0.924000px;}
.ls27{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.660000px;}
.ls26{letter-spacing:-0.594000px;}
.ls11{letter-spacing:-0.504000px;}
.ls2d{letter-spacing:-0.462000px;}
.ls2e{letter-spacing:-0.396000px;}
.ls20{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.285000px;}
.ls2b{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.132000px;}
.ls17{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.066000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.264000px;}
.ls19{letter-spacing:0.330000px;}
.ls2c{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.431400px;}
.lsb{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.462000px;}
.lse{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.594000px;}
.ls4{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.726000px;}
.ls14{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.858000px;}
.lsc{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.924000px;}
.ls13{letter-spacing:0.936000px;}
.ls9{letter-spacing:1.008000px;}
.ls29{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls2f{letter-spacing:5.040000px;}
.ls1{letter-spacing:6.600000px;}
.ls21{letter-spacing:6.666000px;}
.ls15{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.ls10{letter-spacing:11.400000px;}
.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:-20.952000px;}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.028000px;}
.ws2{word-spacing:-16.860000px;}
.wsa{word-spacing:-16.764000px;}
.ws7{word-spacing:-16.302000px;}
.wsb{word-spacing:-16.170000px;}
.wsd{word-spacing:-15.972000px;}
.wsc{word-spacing:-15.708000px;}
.ws9{word-spacing:-15.642000px;}
.ws6{word-spacing:-14.079000px;}
.ws3{word-spacing:-12.139200px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-21.045000px;}
._10{margin-left:-15.538667px;}
._12{margin-left:-12.174000px;}
._6{margin-left:-10.200000px;}
._7{margin-left:-8.424000px;}
._4{margin-left:-6.732000px;}
._11{margin-left:-5.682000px;}
._0{margin-left:-4.326000px;}
._e{margin-left:-3.106667px;}
._2{margin-left:-1.968000px;}
._1{width:1.222667px;}
._9{width:2.232000px;}
._b{width:3.240000px;}
._3{width:4.620000px;}
._c{width:5.928000px;}
._5{width:7.242000px;}
._8{width:8.280000px;}
._a{width:10.152000px;}
._d{width:11.593333px;}
._14{width:16.038000px;}
._15{width:17.094000px;}
._f{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.y16{bottom:140.307150px;}
.y5d{bottom:142.550550px;}
.y85{bottom:142.650000px;}
.y3b{bottom:145.863150px;}
.y15{bottom:156.808650px;}
.y84{bottom:162.301500px;}
.y5c{bottom:162.647550px;}
.y14{bottom:173.310150px;}
.y83{bottom:181.953000px;}
.y5b{bottom:182.744550px;}
.y3a{bottom:182.950500px;}
.y13{bottom:189.811650px;}
.ya9{bottom:199.110000px;}
.y82{bottom:201.604500px;}
.y5a{bottom:202.841550px;}
.y39{bottom:204.244500px;}
.y12{bottom:211.863150px;}
.y81{bottom:221.256000px;}
.y59{bottom:222.938550px;}
.y38{bottom:225.538500px;}
.ya8{bottom:235.710000px;}
.y80{bottom:240.907500px;}
.y58{bottom:243.035550px;}
.y37{bottom:246.832500px;}
.y11{bottom:252.336750px;}
.ya7{bottom:255.510000px;}
.y7f{bottom:260.559000px;}
.y57{bottom:263.132550px;}
.y36{bottom:268.126500px;}
.y10{bottom:273.630750px;}
.ya6{bottom:275.310000px;}
.y7e{bottom:280.210500px;}
.y56{bottom:283.229550px;}
.y35{bottom:289.420500px;}
.yf{bottom:294.924750px;}
.ya5{bottom:295.110000px;}
.y7d{bottom:299.862000px;}
.y55{bottom:303.326550px;}
.y34{bottom:310.714500px;}
.ya4{bottom:314.910000px;}
.ye{bottom:316.218750px;}
.y7c{bottom:319.513500px;}
.y54{bottom:323.423550px;}
.y33{bottom:332.008500px;}
.ya3{bottom:334.710000px;}
.yd{bottom:337.512750px;}
.y7b{bottom:339.165000px;}
.y53{bottom:343.520550px;}
.y32{bottom:353.302500px;}
.ya2{bottom:354.510000px;}
.yc{bottom:358.806750px;}
.y7a{bottom:358.816500px;}
.y52{bottom:363.617550px;}
.ya1{bottom:374.310000px;}
.y31{bottom:374.596500px;}
.y79{bottom:378.468000px;}
.yb{bottom:380.100750px;}
.y51{bottom:383.714550px;}
.ya0{bottom:394.110000px;}
.y30{bottom:395.890500px;}
.y78{bottom:398.119500px;}
.ya{bottom:401.394750px;}
.y50{bottom:403.811550px;}
.y9f{bottom:413.910000px;}
.y2f{bottom:417.184500px;}
.y77{bottom:417.771000px;}
.y9{bottom:422.688750px;}
.y4f{bottom:423.908550px;}
.y9e{bottom:433.710000px;}
.y76{bottom:437.422500px;}
.y2e{bottom:438.478500px;}
.y8{bottom:443.982750px;}
.y4e{bottom:452.512500px;}
.y9d{bottom:453.510000px;}
.y75{bottom:457.074000px;}
.y2d{bottom:459.772500px;}
.y7{bottom:465.276750px;}
.y9c{bottom:473.310000px;}
.y74{bottom:476.725500px;}
.y2c{bottom:481.066500px;}
.y6{bottom:486.570750px;}
.y9b{bottom:493.110000px;}
.y73{bottom:496.377000px;}
.y2b{bottom:502.360500px;}
.y9a{bottom:512.910000px;}
.y72{bottom:516.028500px;}
.y2a{bottom:523.654500px;}
.y99{bottom:532.710000px;}
.y4d{bottom:533.404500px;}
.y71{bottom:535.680000px;}
.y29{bottom:544.948500px;}
.y98{bottom:552.510000px;}
.y4c{bottom:555.310500px;}
.y70{bottom:555.331500px;}
.y28{bottom:566.242500px;}
.y97{bottom:572.310000px;}
.y6f{bottom:574.983000px;}
.y4b{bottom:577.216500px;}
.y27{bottom:587.536500px;}
.y96{bottom:592.110000px;}
.y6e{bottom:594.634500px;}
.y4a{bottom:599.122500px;}
.y26{bottom:608.830500px;}
.y95{bottom:611.910000px;}
.y6d{bottom:614.286000px;}
.y49{bottom:621.028500px;}
.y25{bottom:630.124500px;}
.y94{bottom:631.710000px;}
.y6c{bottom:633.937500px;}
.y48{bottom:642.934500px;}
.y24{bottom:651.418500px;}
.y93{bottom:651.510000px;}
.y6b{bottom:653.589000px;}
.y47{bottom:664.840500px;}
.y92{bottom:671.310000px;}
.y23{bottom:672.760500px;}
.y6a{bottom:673.240500px;}
.y46{bottom:686.746500px;}
.y91{bottom:691.110000px;}
.y69{bottom:692.892000px;}
.y22{bottom:694.054500px;}
.y45{bottom:708.652500px;}
.y90{bottom:710.910000px;}
.y68{bottom:712.543500px;}
.y21{bottom:715.348500px;}
.y44{bottom:730.558500px;}
.y8f{bottom:730.710000px;}
.y67{bottom:732.195000px;}
.y20{bottom:736.642500px;}
.y8e{bottom:750.510000px;}
.y66{bottom:751.846500px;}
.y43{bottom:752.464500px;}
.y1f{bottom:757.936500px;}
.y8d{bottom:770.310000px;}
.y65{bottom:771.498000px;}
.y42{bottom:774.370500px;}
.y1e{bottom:779.230500px;}
.y8c{bottom:790.110000px;}
.y64{bottom:791.149500px;}
.y41{bottom:796.276500px;}
.y1d{bottom:800.524500px;}
.y8b{bottom:809.910000px;}
.y63{bottom:810.801000px;}
.y40{bottom:818.182500px;}
.y1c{bottom:821.818500px;}
.y5{bottom:824.848650px;}
.y8a{bottom:829.710000px;}
.y62{bottom:830.452500px;}
.y3f{bottom:840.088500px;}
.y1b{bottom:843.112500px;}
.y89{bottom:849.510000px;}
.y61{bottom:850.104000px;}
.y4{bottom:855.448650px;}
.y3e{bottom:861.994500px;}
.y1a{bottom:864.406500px;}
.y88{bottom:869.310000px;}
.y60{bottom:869.755500px;}
.y3d{bottom:883.900500px;}
.y19{bottom:885.700500px;}
.y87{bottom:889.110000px;}
.y5f{bottom:889.407000px;}
.y3c{bottom:905.806500px;}
.y18{bottom:906.706500px;}
.y86{bottom:908.910000px;}
.y5e{bottom:909.058500px;}
.y3{bottom:910.710000px;}
.y17{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.h8{height:30.568359px;}
.ha{height:38.645086px;}
.h2{height:40.757812px;}
.h9{height:48.399902px;}
.h3{height:50.947266px;}
.h4{height:56.041992px;}
.h6{height:61.136719px;}
.h7{height:63.058031px;}
.hb{height:63.130031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.793400px;}
.x7{left:106.299150px;}
.x6{left:119.053350px;}
.x8{left:127.551150px;}
.x9{left:148.821150px;}
.x5{left:150.670350px;}
.x1{left:331.996500px;}
.xa{left:527.547150px;}
.x2{left:575.539350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.650667pt;}
.v1{vertical-align:23.445333pt;}
.ls1e{letter-spacing:-1.173333pt;}
.ls28{letter-spacing:-0.821333pt;}
.ls27{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.586667pt;}
.ls26{letter-spacing:-0.528000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls2d{letter-spacing:-0.410667pt;}
.ls2e{letter-spacing:-0.352000pt;}
.ls20{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.253333pt;}
.ls2b{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.117333pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.234667pt;}
.ls19{letter-spacing:0.293333pt;}
.ls2c{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.383467pt;}
.lsb{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.410667pt;}
.lse{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.645333pt;}
.ls14{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.762667pt;}
.lsc{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.821333pt;}
.ls13{letter-spacing:0.832000pt;}
.ls9{letter-spacing:0.896000pt;}
.ls29{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls2f{letter-spacing:4.480000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls21{letter-spacing:5.925333pt;}
.ls15{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls10{letter-spacing:10.133333pt;}
.ws0{word-spacing:-18.624000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.136000pt;}
.ws2{word-spacing:-14.986667pt;}
.wsa{word-spacing:-14.901333pt;}
.ws7{word-spacing:-14.490667pt;}
.wsb{word-spacing:-14.373333pt;}
.wsd{word-spacing:-14.197333pt;}
.wsc{word-spacing:-13.962667pt;}
.ws9{word-spacing:-13.904000pt;}
.ws6{word-spacing:-12.514667pt;}
.ws3{word-spacing:-10.790400pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-18.706667pt;}
._10{margin-left:-13.812148pt;}
._12{margin-left:-10.821333pt;}
._6{margin-left:-9.066667pt;}
._7{margin-left:-7.488000pt;}
._4{margin-left:-5.984000pt;}
._11{margin-left:-5.050667pt;}
._0{margin-left:-3.845333pt;}
._e{margin-left:-2.761481pt;}
._2{margin-left:-1.749333pt;}
._1{width:1.086815pt;}
._9{width:1.984000pt;}
._b{width:2.880000pt;}
._3{width:4.106667pt;}
._c{width:5.269333pt;}
._5{width:6.437333pt;}
._8{width:7.360000pt;}
._a{width:9.024000pt;}
._d{width:10.305185pt;}
._14{width:14.256000pt;}
._15{width:15.194667pt;}
._f{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.y16{bottom:124.717467pt;}
.y5d{bottom:126.711600pt;}
.y85{bottom:126.800000pt;}
.y3b{bottom:129.656133pt;}
.y15{bottom:139.385467pt;}
.y84{bottom:144.268000pt;}
.y5c{bottom:144.575600pt;}
.y14{bottom:154.053467pt;}
.y83{bottom:161.736000pt;}
.y5b{bottom:162.439600pt;}
.y3a{bottom:162.622667pt;}
.y13{bottom:168.721467pt;}
.ya9{bottom:176.986667pt;}
.y82{bottom:179.204000pt;}
.y5a{bottom:180.303600pt;}
.y39{bottom:181.550667pt;}
.y12{bottom:188.322800pt;}
.y81{bottom:196.672000pt;}
.y59{bottom:198.167600pt;}
.y38{bottom:200.478667pt;}
.ya8{bottom:209.520000pt;}
.y80{bottom:214.140000pt;}
.y58{bottom:216.031600pt;}
.y37{bottom:219.406667pt;}
.y11{bottom:224.299333pt;}
.ya7{bottom:227.120000pt;}
.y7f{bottom:231.608000pt;}
.y57{bottom:233.895600pt;}
.y36{bottom:238.334667pt;}
.y10{bottom:243.227333pt;}
.ya6{bottom:244.720000pt;}
.y7e{bottom:249.076000pt;}
.y56{bottom:251.759600pt;}
.y35{bottom:257.262667pt;}
.yf{bottom:262.155333pt;}
.ya5{bottom:262.320000pt;}
.y7d{bottom:266.544000pt;}
.y55{bottom:269.623600pt;}
.y34{bottom:276.190667pt;}
.ya4{bottom:279.920000pt;}
.ye{bottom:281.083333pt;}
.y7c{bottom:284.012000pt;}
.y54{bottom:287.487600pt;}
.y33{bottom:295.118667pt;}
.ya3{bottom:297.520000pt;}
.yd{bottom:300.011333pt;}
.y7b{bottom:301.480000pt;}
.y53{bottom:305.351600pt;}
.y32{bottom:314.046667pt;}
.ya2{bottom:315.120000pt;}
.yc{bottom:318.939333pt;}
.y7a{bottom:318.948000pt;}
.y52{bottom:323.215600pt;}
.ya1{bottom:332.720000pt;}
.y31{bottom:332.974667pt;}
.y79{bottom:336.416000pt;}
.yb{bottom:337.867333pt;}
.y51{bottom:341.079600pt;}
.ya0{bottom:350.320000pt;}
.y30{bottom:351.902667pt;}
.y78{bottom:353.884000pt;}
.ya{bottom:356.795333pt;}
.y50{bottom:358.943600pt;}
.y9f{bottom:367.920000pt;}
.y2f{bottom:370.830667pt;}
.y77{bottom:371.352000pt;}
.y9{bottom:375.723333pt;}
.y4f{bottom:376.807600pt;}
.y9e{bottom:385.520000pt;}
.y76{bottom:388.820000pt;}
.y2e{bottom:389.758667pt;}
.y8{bottom:394.651333pt;}
.y4e{bottom:402.233333pt;}
.y9d{bottom:403.120000pt;}
.y75{bottom:406.288000pt;}
.y2d{bottom:408.686667pt;}
.y7{bottom:413.579333pt;}
.y9c{bottom:420.720000pt;}
.y74{bottom:423.756000pt;}
.y2c{bottom:427.614667pt;}
.y6{bottom:432.507333pt;}
.y9b{bottom:438.320000pt;}
.y73{bottom:441.224000pt;}
.y2b{bottom:446.542667pt;}
.y9a{bottom:455.920000pt;}
.y72{bottom:458.692000pt;}
.y2a{bottom:465.470667pt;}
.y99{bottom:473.520000pt;}
.y4d{bottom:474.137333pt;}
.y71{bottom:476.160000pt;}
.y29{bottom:484.398667pt;}
.y98{bottom:491.120000pt;}
.y4c{bottom:493.609333pt;}
.y70{bottom:493.628000pt;}
.y28{bottom:503.326667pt;}
.y97{bottom:508.720000pt;}
.y6f{bottom:511.096000pt;}
.y4b{bottom:513.081333pt;}
.y27{bottom:522.254667pt;}
.y96{bottom:526.320000pt;}
.y6e{bottom:528.564000pt;}
.y4a{bottom:532.553333pt;}
.y26{bottom:541.182667pt;}
.y95{bottom:543.920000pt;}
.y6d{bottom:546.032000pt;}
.y49{bottom:552.025333pt;}
.y25{bottom:560.110667pt;}
.y94{bottom:561.520000pt;}
.y6c{bottom:563.500000pt;}
.y48{bottom:571.497333pt;}
.y24{bottom:579.038667pt;}
.y93{bottom:579.120000pt;}
.y6b{bottom:580.968000pt;}
.y47{bottom:590.969333pt;}
.y92{bottom:596.720000pt;}
.y23{bottom:598.009333pt;}
.y6a{bottom:598.436000pt;}
.y46{bottom:610.441333pt;}
.y91{bottom:614.320000pt;}
.y69{bottom:615.904000pt;}
.y22{bottom:616.937333pt;}
.y45{bottom:629.913333pt;}
.y90{bottom:631.920000pt;}
.y68{bottom:633.372000pt;}
.y21{bottom:635.865333pt;}
.y44{bottom:649.385333pt;}
.y8f{bottom:649.520000pt;}
.y67{bottom:650.840000pt;}
.y20{bottom:654.793333pt;}
.y8e{bottom:667.120000pt;}
.y66{bottom:668.308000pt;}
.y43{bottom:668.857333pt;}
.y1f{bottom:673.721333pt;}
.y8d{bottom:684.720000pt;}
.y65{bottom:685.776000pt;}
.y42{bottom:688.329333pt;}
.y1e{bottom:692.649333pt;}
.y8c{bottom:702.320000pt;}
.y64{bottom:703.244000pt;}
.y41{bottom:707.801333pt;}
.y1d{bottom:711.577333pt;}
.y8b{bottom:719.920000pt;}
.y63{bottom:720.712000pt;}
.y40{bottom:727.273333pt;}
.y1c{bottom:730.505333pt;}
.y5{bottom:733.198800pt;}
.y8a{bottom:737.520000pt;}
.y62{bottom:738.180000pt;}
.y3f{bottom:746.745333pt;}
.y1b{bottom:749.433333pt;}
.y89{bottom:755.120000pt;}
.y61{bottom:755.648000pt;}
.y4{bottom:760.398800pt;}
.y3e{bottom:766.217333pt;}
.y1a{bottom:768.361333pt;}
.y88{bottom:772.720000pt;}
.y60{bottom:773.116000pt;}
.y3d{bottom:785.689333pt;}
.y19{bottom:787.289333pt;}
.y87{bottom:790.320000pt;}
.y5f{bottom:790.584000pt;}
.y3c{bottom:805.161333pt;}
.y18{bottom:805.961333pt;}
.y86{bottom:807.920000pt;}
.y5e{bottom:808.052000pt;}
.y3{bottom:809.520000pt;}
.y17{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.h8{height:27.171875pt;}
.ha{height:34.351188pt;}
.h2{height:36.229167pt;}
.h9{height:43.022135pt;}
.h3{height:45.286458pt;}
.h4{height:49.815104pt;}
.h6{height:54.343750pt;}
.h7{height:56.051583pt;}
.hb{height:56.115583pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.927467pt;}
.x7{left:94.488133pt;}
.x6{left:105.825200pt;}
.x8{left:113.378800pt;}
.x9{left:132.285467pt;}
.x5{left:133.929200pt;}
.x1{left:295.108000pt;}
.xa{left:468.930800pt;}
.x2{left:511.590533pt;}
}




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