
    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_befad85a6b59b6d49217d7df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.021484;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_d895de9d48196fa596412393.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.896973;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_d80ee2f94a2c566a08796d29.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_918a73130cf45d862eb802a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_04ddee2ee9ea86331dff3bff.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_47f63eca0e4690b5be8c37cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.772949;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_fe359853d770a93c97056554.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_6100746df40f4c5d620de254.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f67f68c653793734fb50f99b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874512;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_131dcdc264c74723d05be182.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.874512;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);}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-1.980000px;}
.ls13{letter-spacing:-0.888000px;}
.ls18{letter-spacing:-0.732000px;}
.ls14{letter-spacing:-0.642000px;}
.ls2b{letter-spacing:-0.409200px;}
.ls16{letter-spacing:-0.295200px;}
.ls9{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.175200px;}
.ls25{letter-spacing:-0.151800px;}
.ls4{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.133800px;}
.ls12{letter-spacing:-0.076800px;}
.ls1d{letter-spacing:-0.066600px;}
.ls20{letter-spacing:-0.064800px;}
.ls24{letter-spacing:-0.026520px;}
.ls19{letter-spacing:-0.014940px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.013800px;}
.ls2{letter-spacing:0.030360px;}
.ls15{letter-spacing:0.055440px;}
.ls26{letter-spacing:0.062400px;}
.ls10{letter-spacing:0.080400px;}
.lsf{letter-spacing:0.122400px;}
.ls1e{letter-spacing:0.123600px;}
.ls1b{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.183600px;}
.ls11{letter-spacing:0.205800px;}
.ls3{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.261600px;}
.ls29{letter-spacing:0.265200px;}
.ls2a{letter-spacing:0.310800px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.720000px;}
.lsd{letter-spacing:10.980000px;}
.lse{letter-spacing:11.700000px;}
.ls1c{letter-spacing:13.140000px;}
.ls23{letter-spacing:26.100000px;}
.lsa{letter-spacing:42.035760px;}
.ls7{letter-spacing:49.734000px;}
.lsb{letter-spacing:71.436000px;}
.lsc{letter-spacing:71.460000px;}
.ls1a{letter-spacing:137.844000px;}
.ls5{letter-spacing:312.780000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(177,63,154),0 0.015em rgb(177,63,154),0.015em 0 rgb(177,63,154),0 -0.015em  rgb(177,63,154);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(177,63,154);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-54.000000px;}
.ws10{word-spacing:-48.265800px;}
.wsd{word-spacing:-48.182400px;}
.wsf{word-spacing:-48.140400px;}
.ws25{word-spacing:-48.122400px;}
.ws15{word-spacing:-48.115440px;}
.ws26{word-spacing:-48.109800px;}
.ws16{word-spacing:-48.096000px;}
.ws19{word-spacing:-48.081060px;}
.ws23{word-spacing:-48.069480px;}
.wse{word-spacing:-48.060000px;}
.ws11{word-spacing:-47.983200px;}
.ws24{word-spacing:-47.944200px;}
.ws14{word-spacing:-47.884800px;}
.ws17{word-spacing:-47.764800px;}
.ws13{word-spacing:-47.418000px;}
.ws18{word-spacing:-47.364000px;}
.ws12{word-spacing:-47.172000px;}
.ws1b{word-spacing:-45.180000px;}
.ws8{word-spacing:-45.036000px;}
.ws9{word-spacing:-45.000000px;}
.ws1a{word-spacing:-44.969400px;}
.ws1c{word-spacing:-44.820000px;}
.wsb{word-spacing:-39.096000px;}
.wsa{word-spacing:-39.060000px;}
.ws1e{word-spacing:-33.201600px;}
.ws21{word-spacing:-33.159600px;}
.ws1d{word-spacing:-33.063600px;}
.ws22{word-spacing:-32.940000px;}
.ws1f{word-spacing:-32.875200px;}
.ws20{word-spacing:-32.806200px;}
.ws6{word-spacing:-30.060000px;}
.ws7{word-spacing:-29.884800px;}
.ws4{word-spacing:-27.216000px;}
.ws3{word-spacing:-27.066360px;}
.ws5{word-spacing:-26.856000px;}
.ws2{word-spacing:-18.000000px;}
.ws2a{word-spacing:-16.150800px;}
.ws28{word-spacing:-16.105200px;}
.ws29{word-spacing:-15.840000px;}
.ws27{word-spacing:-15.430800px;}
.ws0{word-spacing:-0.192240px;}
.ws1{word-spacing:0.000000px;}
._2a{margin-left:-25.344960px;}
._5{margin-left:-11.876544px;}
._3{margin-left:-10.181664px;}
._2{margin-left:-8.650800px;}
._15{margin-left:-7.614096px;}
._a{margin-left:-6.457200px;}
._6{margin-left:-5.209056px;}
._0{margin-left:-3.847680px;}
._f{margin-left:-2.820576px;}
._1{margin-left:-1.731456px;}
._7{width:1.111680px;}
._4{width:2.284896px;}
._e{width:4.269744px;}
._28{width:6.158496px;}
._22{width:7.860000px;}
._29{width:9.605712px;}
._11{width:10.866720px;}
._12{width:12.578016px;}
._23{width:13.600848px;}
._2b{width:25.881360px;}
._30{width:27.346656px;}
._14{width:34.681248px;}
._13{width:35.881536px;}
._8{width:36.998688px;}
._1c{width:40.549920px;}
._1b{width:42.615264px;}
._17{width:44.821872px;}
._18{width:46.479456px;}
._20{width:49.140000px;}
._1f{width:50.160000px;}
._21{width:51.471456px;}
._26{width:54.886176px;}
._25{width:57.155088px;}
._24{width:58.457712px;}
._2d{width:68.667216px;}
._2c{width:69.982896px;}
._10{width:71.373696px;}
._27{width:86.244480px;}
._1a{width:127.804272px;}
._19{width:129.017280px;}
._1d{width:135.114192px;}
._1e{width:137.547696px;}
._b{width:138.758400px;}
._d{width:187.556976px;}
._9{width:212.410272px;}
._2e{width:247.013184px;}
._2f{width:248.289456px;}
._16{width:321.675744px;}
._c{width:401.940000px;}
.fc4{color:transparent;}
.fc3{color:rgb(184,61,104);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(155,54,135);}
.fc0{color:rgb(177,63,154);}
.fs13{font-size:63.360000px;}
.fs14{font-size:63.504000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs2{font-size:113.760000px;}
.fs3{font-size:113.904000px;}
.fs9{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fsb{font-size:126.000000px;}
.fs11{font-size:131.760000px;}
.fs12{font-size:131.904000px;}
.fs10{font-size:134.640000px;}
.fse{font-size:156.240000px;}
.fsf{font-size:156.384000px;}
.fsd{font-size:180.000000px;}
.fsc{font-size:180.144000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs4{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:36.972000px;}
.y68{bottom:57.744000px;}
.y3{bottom:69.372000px;}
.y67{bottom:80.424000px;}
.y66{bottom:99.360000px;}
.y65{bottom:122.040000px;}
.y2{bottom:126.972000px;}
.y64{bottom:144.720000px;}
.y33{bottom:156.855000px;}
.y63{bottom:163.620000px;}
.y46{bottom:166.935000px;}
.y1{bottom:184.575000px;}
.y62{bottom:186.300000px;}
.y32{bottom:198.975000px;}
.y61{bottom:205.200000px;}
.y45{bottom:206.535000px;}
.y60{bottom:224.100000px;}
.y3b{bottom:234.435000px;}
.y31{bottom:241.095000px;}
.y44{bottom:246.135000px;}
.y5f{bottom:246.810000px;}
.y7{bottom:254.730000px;}
.y4b{bottom:263.235000px;}
.y20{bottom:264.210000px;}
.y5e{bottom:269.490000px;}
.y30{bottom:283.215000px;}
.y43{bottom:285.735000px;}
.y1f{bottom:285.840000px;}
.y3a{bottom:286.275000px;}
.y6{bottom:288.930000px;}
.y5d{bottom:292.170000px;}
.y1e{bottom:307.440000px;}
.y5c{bottom:314.850000px;}
.y4a{bottom:320.865000px;}
.y5{bottom:323.175000px;}
.y2f{bottom:325.365000px;}
.y1d{bottom:329.040000px;}
.y28{bottom:332.565000px;}
.y5b{bottom:333.750000px;}
.y3e{bottom:343.905000px;}
.y39{bottom:349.665000px;}
.y1c{bottom:350.640000px;}
.y5a{bottom:352.650000px;}
.y4{bottom:357.375000px;}
.y42{bottom:364.965000px;}
.y1b{bottom:372.240000px;}
.y59{bottom:375.330000px;}
.y27{bottom:375.765000px;}
.y2e{bottom:376.845000px;}
.y49{bottom:378.465000px;}
.y1a{bottom:393.840000px;}
.y58{bottom:398.055000px;}
.y3d{bottom:401.505000px;}
.y38{bottom:413.025000px;}
.y41{bottom:415.185000px;}
.y19{bottom:415.470000px;}
.y26{bottom:418.965000px;}
.y57{bottom:420.735000px;}
.y2d{bottom:428.325000px;}
.y48{bottom:436.065000px;}
.y18{bottom:437.070000px;}
.y56{bottom:443.415000px;}
.y17{bottom:458.670000px;}
.y3c{bottom:459.150000px;}
.y25{bottom:462.210000px;}
.y37{bottom:464.910000px;}
.y55{bottom:466.095000px;}
.y40{bottom:469.230000px;}
.y2c{bottom:470.490000px;}
.y16{bottom:480.270000px;}
.y54{bottom:484.995000px;}
.y15{bottom:501.870000px;}
.y47{bottom:505.230000px;}
.y24{bottom:505.410000px;}
.y53{bottom:507.675000px;}
.y36{bottom:516.750000px;}
.y2b{bottom:523.230000px;}
.y14{bottom:523.470000px;}
.y52{bottom:530.355000px;}
.y13{bottom:545.070000px;}
.y23{bottom:548.610000px;}
.y51{bottom:553.065000px;}
.y12{bottom:566.715000px;}
.y50{bottom:571.965000px;}
.yf{bottom:574.350000px;}
.y3f{bottom:577.230000px;}
.y35{bottom:580.110000px;}
.y2a{bottom:582.630000px;}
.y11{bottom:588.315000px;}
.y22{bottom:591.840000px;}
.y4f{bottom:594.645000px;}
.y10{bottom:609.915000px;}
.y4e{bottom:617.325000px;}
.yb{bottom:635.070000px;}
.y9{bottom:639.330000px;}
.y4d{bottom:640.005000px;}
.ye{bottom:659.850000px;}
.y4c{bottom:662.685000px;}
.yc{bottom:686.490000px;}
.y29{bottom:688.650000px;}
.y34{bottom:691.275000px;}
.ya{bottom:692.715000px;}
.y8{bottom:696.930000px;}
.yd{bottom:717.450000px;}
.h17{height:47.520000px;}
.h16{height:55.594687px;}
.h18{height:55.721039px;}
.h7{height:63.175781px;}
.h8{height:63.302133px;}
.ha{height:94.763672px;}
.h9{height:94.890023px;}
.h3{height:99.817734px;}
.h4{height:99.944086px;}
.hb{height:105.503555px;}
.hc{height:105.629906px;}
.h14{height:115.611680px;}
.h15{height:115.738031px;}
.h11{height:117.180000px;}
.h12{height:117.288000px;}
.hf{height:137.091445px;}
.h10{height:137.217797px;}
.he{height:157.939453px;}
.hd{height:158.065805px;}
.h13{height:168.679336px;}
.h6{height:168.805688px;}
.h2{height:168.960938px;}
.h1{height:169.087500px;}
.h5{height:189.843750px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.x4{left:46.800000px;}
.xf{left:51.300000px;}
.x2{left:53.532000px;}
.x1{left:55.800000px;}
.x7{left:61.416000px;}
.x6{left:87.300000px;}
.xb{left:115.776000px;}
.x3{left:119.808000px;}
.x9{left:137.628000px;}
.xa{left:151.665000px;}
.xc{left:154.830000px;}
.xd{left:181.830000px;}
.x8{left:238.650000px;}
.x5{left:370.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-1.760000pt;}
.ls13{letter-spacing:-0.789333pt;}
.ls18{letter-spacing:-0.650667pt;}
.ls14{letter-spacing:-0.570667pt;}
.ls2b{letter-spacing:-0.363733pt;}
.ls16{letter-spacing:-0.262400pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.155733pt;}
.ls25{letter-spacing:-0.134933pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.118933pt;}
.ls12{letter-spacing:-0.068267pt;}
.ls1d{letter-spacing:-0.059200pt;}
.ls20{letter-spacing:-0.057600pt;}
.ls24{letter-spacing:-0.023573pt;}
.ls19{letter-spacing:-0.013280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.012267pt;}
.ls2{letter-spacing:0.026987pt;}
.ls15{letter-spacing:0.049280pt;}
.ls26{letter-spacing:0.055467pt;}
.ls10{letter-spacing:0.071467pt;}
.lsf{letter-spacing:0.108800pt;}
.ls1e{letter-spacing:0.109867pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.163200pt;}
.ls11{letter-spacing:0.182933pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.232533pt;}
.ls29{letter-spacing:0.235733pt;}
.ls2a{letter-spacing:0.276267pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.640000pt;}
.lsd{letter-spacing:9.760000pt;}
.lse{letter-spacing:10.400000pt;}
.ls1c{letter-spacing:11.680000pt;}
.ls23{letter-spacing:23.200000pt;}
.lsa{letter-spacing:37.365120pt;}
.ls7{letter-spacing:44.208000pt;}
.lsb{letter-spacing:63.498667pt;}
.lsc{letter-spacing:63.520000pt;}
.ls1a{letter-spacing:122.528000pt;}
.ls5{letter-spacing:278.026667pt;}
.wsc{word-spacing:-48.000000pt;}
.ws10{word-spacing:-42.902933pt;}
.wsd{word-spacing:-42.828800pt;}
.wsf{word-spacing:-42.791467pt;}
.ws25{word-spacing:-42.775467pt;}
.ws15{word-spacing:-42.769280pt;}
.ws26{word-spacing:-42.764267pt;}
.ws16{word-spacing:-42.752000pt;}
.ws19{word-spacing:-42.738720pt;}
.ws23{word-spacing:-42.728427pt;}
.wse{word-spacing:-42.720000pt;}
.ws11{word-spacing:-42.651733pt;}
.ws24{word-spacing:-42.617067pt;}
.ws14{word-spacing:-42.564267pt;}
.ws17{word-spacing:-42.457600pt;}
.ws13{word-spacing:-42.149333pt;}
.ws18{word-spacing:-42.101333pt;}
.ws12{word-spacing:-41.930667pt;}
.ws1b{word-spacing:-40.160000pt;}
.ws8{word-spacing:-40.032000pt;}
.ws9{word-spacing:-40.000000pt;}
.ws1a{word-spacing:-39.972800pt;}
.ws1c{word-spacing:-39.840000pt;}
.wsb{word-spacing:-34.752000pt;}
.wsa{word-spacing:-34.720000pt;}
.ws1e{word-spacing:-29.512533pt;}
.ws21{word-spacing:-29.475200pt;}
.ws1d{word-spacing:-29.389867pt;}
.ws22{word-spacing:-29.280000pt;}
.ws1f{word-spacing:-29.222400pt;}
.ws20{word-spacing:-29.161067pt;}
.ws6{word-spacing:-26.720000pt;}
.ws7{word-spacing:-26.564267pt;}
.ws4{word-spacing:-24.192000pt;}
.ws3{word-spacing:-24.058987pt;}
.ws5{word-spacing:-23.872000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws2a{word-spacing:-14.356267pt;}
.ws28{word-spacing:-14.315733pt;}
.ws29{word-spacing:-14.080000pt;}
.ws27{word-spacing:-13.716267pt;}
.ws0{word-spacing:-0.170880pt;}
.ws1{word-spacing:0.000000pt;}
._2a{margin-left:-22.528853pt;}
._5{margin-left:-10.556928pt;}
._3{margin-left:-9.050368pt;}
._2{margin-left:-7.689600pt;}
._15{margin-left:-6.768085pt;}
._a{margin-left:-5.739733pt;}
._6{margin-left:-4.630272pt;}
._0{margin-left:-3.420160pt;}
._f{margin-left:-2.507179pt;}
._1{margin-left:-1.539072pt;}
._7{width:0.988160pt;}
._4{width:2.031019pt;}
._e{width:3.795328pt;}
._28{width:5.474219pt;}
._22{width:6.986667pt;}
._29{width:8.538411pt;}
._11{width:9.659307pt;}
._12{width:11.180459pt;}
._23{width:12.089643pt;}
._2b{width:23.005653pt;}
._30{width:24.308139pt;}
._14{width:30.827776pt;}
._13{width:31.894699pt;}
._8{width:32.887723pt;}
._1c{width:36.044373pt;}
._1b{width:37.880235pt;}
._17{width:39.841664pt;}
._18{width:41.315072pt;}
._20{width:43.680000pt;}
._1f{width:44.586667pt;}
._21{width:45.752405pt;}
._26{width:48.787712pt;}
._25{width:50.804523pt;}
._24{width:51.962411pt;}
._2d{width:61.037525pt;}
._2c{width:62.207019pt;}
._10{width:63.443285pt;}
._27{width:76.661760pt;}
._1a{width:113.603797pt;}
._19{width:114.682027pt;}
._1d{width:120.101504pt;}
._1e{width:122.264619pt;}
._b{width:123.340800pt;}
._d{width:166.717312pt;}
._9{width:188.809131pt;}
._2e{width:219.567275pt;}
._2f{width:220.701739pt;}
._16{width:285.933995pt;}
._c{width:357.280000pt;}
.fs13{font-size:56.320000pt;}
.fs14{font-size:56.448000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs2{font-size:101.120000pt;}
.fs3{font-size:101.248000pt;}
.fs9{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fsb{font-size:112.000000pt;}
.fs11{font-size:117.120000pt;}
.fs12{font-size:117.248000pt;}
.fs10{font-size:119.680000pt;}
.fse{font-size:138.880000pt;}
.fsf{font-size:139.008000pt;}
.fsd{font-size:160.000000pt;}
.fsc{font-size:160.128000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs4{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:32.864000pt;}
.y68{bottom:51.328000pt;}
.y3{bottom:61.664000pt;}
.y67{bottom:71.488000pt;}
.y66{bottom:88.320000pt;}
.y65{bottom:108.480000pt;}
.y2{bottom:112.864000pt;}
.y64{bottom:128.640000pt;}
.y33{bottom:139.426667pt;}
.y63{bottom:145.440000pt;}
.y46{bottom:148.386667pt;}
.y1{bottom:164.066667pt;}
.y62{bottom:165.600000pt;}
.y32{bottom:176.866667pt;}
.y61{bottom:182.400000pt;}
.y45{bottom:183.586667pt;}
.y60{bottom:199.200000pt;}
.y3b{bottom:208.386667pt;}
.y31{bottom:214.306667pt;}
.y44{bottom:218.786667pt;}
.y5f{bottom:219.386667pt;}
.y7{bottom:226.426667pt;}
.y4b{bottom:233.986667pt;}
.y20{bottom:234.853333pt;}
.y5e{bottom:239.546667pt;}
.y30{bottom:251.746667pt;}
.y43{bottom:253.986667pt;}
.y1f{bottom:254.080000pt;}
.y3a{bottom:254.466667pt;}
.y6{bottom:256.826667pt;}
.y5d{bottom:259.706667pt;}
.y1e{bottom:273.280000pt;}
.y5c{bottom:279.866667pt;}
.y4a{bottom:285.213333pt;}
.y5{bottom:287.266667pt;}
.y2f{bottom:289.213333pt;}
.y1d{bottom:292.480000pt;}
.y28{bottom:295.613333pt;}
.y5b{bottom:296.666667pt;}
.y3e{bottom:305.693333pt;}
.y39{bottom:310.813333pt;}
.y1c{bottom:311.680000pt;}
.y5a{bottom:313.466667pt;}
.y4{bottom:317.666667pt;}
.y42{bottom:324.413333pt;}
.y1b{bottom:330.880000pt;}
.y59{bottom:333.626667pt;}
.y27{bottom:334.013333pt;}
.y2e{bottom:334.973333pt;}
.y49{bottom:336.413333pt;}
.y1a{bottom:350.080000pt;}
.y58{bottom:353.826667pt;}
.y3d{bottom:356.893333pt;}
.y38{bottom:367.133333pt;}
.y41{bottom:369.053333pt;}
.y19{bottom:369.306667pt;}
.y26{bottom:372.413333pt;}
.y57{bottom:373.986667pt;}
.y2d{bottom:380.733333pt;}
.y48{bottom:387.613333pt;}
.y18{bottom:388.506667pt;}
.y56{bottom:394.146667pt;}
.y17{bottom:407.706667pt;}
.y3c{bottom:408.133333pt;}
.y25{bottom:410.853333pt;}
.y37{bottom:413.253333pt;}
.y55{bottom:414.306667pt;}
.y40{bottom:417.093333pt;}
.y2c{bottom:418.213333pt;}
.y16{bottom:426.906667pt;}
.y54{bottom:431.106667pt;}
.y15{bottom:446.106667pt;}
.y47{bottom:449.093333pt;}
.y24{bottom:449.253333pt;}
.y53{bottom:451.266667pt;}
.y36{bottom:459.333333pt;}
.y2b{bottom:465.093333pt;}
.y14{bottom:465.306667pt;}
.y52{bottom:471.426667pt;}
.y13{bottom:484.506667pt;}
.y23{bottom:487.653333pt;}
.y51{bottom:491.613333pt;}
.y12{bottom:503.746667pt;}
.y50{bottom:508.413333pt;}
.yf{bottom:510.533333pt;}
.y3f{bottom:513.093333pt;}
.y35{bottom:515.653333pt;}
.y2a{bottom:517.893333pt;}
.y11{bottom:522.946667pt;}
.y22{bottom:526.080000pt;}
.y4f{bottom:528.573333pt;}
.y10{bottom:542.146667pt;}
.y4e{bottom:548.733333pt;}
.yb{bottom:564.506667pt;}
.y9{bottom:568.293333pt;}
.y4d{bottom:568.893333pt;}
.ye{bottom:586.533333pt;}
.y4c{bottom:589.053333pt;}
.yc{bottom:610.213333pt;}
.y29{bottom:612.133333pt;}
.y34{bottom:614.466667pt;}
.ya{bottom:615.746667pt;}
.y8{bottom:619.493333pt;}
.yd{bottom:637.733333pt;}
.h17{height:42.240000pt;}
.h16{height:49.417500pt;}
.h18{height:49.529812pt;}
.h7{height:56.156250pt;}
.h8{height:56.268562pt;}
.ha{height:84.234375pt;}
.h9{height:84.346688pt;}
.h3{height:88.726875pt;}
.h4{height:88.839187pt;}
.hb{height:93.780937pt;}
.hc{height:93.893250pt;}
.h14{height:102.765937pt;}
.h15{height:102.878250pt;}
.h11{height:104.160000pt;}
.h12{height:104.256000pt;}
.hf{height:121.859063pt;}
.h10{height:121.971375pt;}
.he{height:140.390625pt;}
.hd{height:140.502937pt;}
.h13{height:149.937187pt;}
.h6{height:150.049500pt;}
.h2{height:150.187500pt;}
.h1{height:150.300000pt;}
.h5{height:168.750000pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.x4{left:41.600000pt;}
.xf{left:45.600000pt;}
.x2{left:47.584000pt;}
.x1{left:49.600000pt;}
.x7{left:54.592000pt;}
.x6{left:77.600000pt;}
.xb{left:102.912000pt;}
.x3{left:106.496000pt;}
.x9{left:122.336000pt;}
.xa{left:134.813333pt;}
.xc{left:137.626667pt;}
.xd{left:161.626667pt;}
.x8{left:212.133333pt;}
.x5{left:328.933333pt;}
}




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