
    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_42f77891b73bb508070c1472.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_db6cb1788ebb4114bc5c00b9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_6ccaa2ca178898e665177569.woff')format("woff");}.ff3{font-family:ff3;line-height:1.197754;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_edff3de32f53c156a58b003c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_3fd2862c605da90af56a1ff7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e04bbf3e2be6aeca0755fe8a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.819000;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_41932abaad81a516ece3ca28.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_86f55fedd9099944154cb4e6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_d2fb9af722a37c9dab660dc2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.992676;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_7eab414b6c5ef284c21beb07.woff')format("woff");}.ffa{font-family:ffa;line-height:1.028000;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:-23.760000px;}
.v4{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000600px;}
.ls18{letter-spacing:0.003000px;}
.ls19{letter-spacing:0.003600px;}
.ls10{letter-spacing:0.006600px;}
.ls12{letter-spacing:0.007200px;}
.ls13{letter-spacing:0.030000px;}
.ls11{letter-spacing:0.030600px;}
.ls17{letter-spacing:0.039000px;}
.lsd{letter-spacing:0.052800px;}
.ls1a{letter-spacing:0.069000px;}
.ls8{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.155400px;}
.ls9{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.222600px;}
.lsb{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.363600px;}
.lse{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.476400px;}
.ls5{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.864000px;}
.ls1e{letter-spacing:4.752000px;}
.ls0{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.589976px;}
.ls1{letter-spacing:10.740000px;}
.ls16{letter-spacing:11.952000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws13{word-spacing:-60.480000px;}
.ws20{word-spacing:-49.392000px;}
.ws2{word-spacing:-49.104000px;}
.wsc{word-spacing:-49.032000px;}
.ws10{word-spacing:-48.960000px;}
.wsa{word-spacing:-48.888000px;}
.wsf{word-spacing:-48.816000px;}
.ws7{word-spacing:-48.744000px;}
.wsb{word-spacing:-48.672000px;}
.ws6{word-spacing:-48.600000px;}
.ws3{word-spacing:-48.528000px;}
.ws1{word-spacing:-40.440000px;}
.ws1e{word-spacing:-37.008000px;}
.ws12{word-spacing:-36.864000px;}
.ws19{word-spacing:-36.720000px;}
.ws1a{word-spacing:-36.648000px;}
.wse{word-spacing:-36.614400px;}
.wsd{word-spacing:-36.576000px;}
.ws18{word-spacing:-36.504000px;}
.ws15{word-spacing:-36.360000px;}
.ws1b{word-spacing:-36.072000px;}
.ws1c{word-spacing:-36.000000px;}
.ws17{word-spacing:-35.928000px;}
.ws1d{word-spacing:-35.856000px;}
.ws16{word-spacing:-32.352000px;}
.ws1f{word-spacing:-25.320000px;}
.ws11{word-spacing:-20.520000px;}
.ws9{word-spacing:-20.232000px;}
.ws8{word-spacing:-14.162400px;}
.ws14{word-spacing:-13.757760px;}
.ws22{word-spacing:-13.488000px;}
.ws21{word-spacing:-12.336000px;}
.ws23{word-spacing:-9.441600px;}
.ws0{word-spacing:-8.520000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-161.424000px;}
._15{margin-left:-19.683600px;}
._1a{margin-left:-15.972000px;}
._12{margin-left:-14.424000px;}
._4{margin-left:-12.360000px;}
._3{margin-left:-10.560000px;}
._0{margin-left:-8.460000px;}
._1{margin-left:-6.480000px;}
._13{margin-left:-5.160000px;}
._c{margin-left:-4.152000px;}
._2{margin-left:-3.000000px;}
._5{margin-left:-1.200000px;}
._6{width:1.440000px;}
._7{width:3.180000px;}
._8{width:4.920000px;}
._9{width:6.060000px;}
._a{width:7.140000px;}
._b{width:8.520000px;}
._1f{width:9.642600px;}
._14{width:10.665600px;}
._17{width:12.341400px;}
._1d{width:14.352000px;}
._19{width:15.712200px;}
._1e{width:16.883400px;}
._18{width:17.964000px;}
._1c{width:20.220000px;}
._20{width:21.312000px;}
._22{width:26.544000px;}
._39{width:28.056000px;}
._29{width:30.180000px;}
._1b{width:34.508160px;}
._27{width:105.840000px;}
._44{width:112.704000px;}
._28{width:113.952000px;}
._2a{width:115.776000px;}
._26{width:121.728000px;}
._24{width:124.224000px;}
._3d{width:129.024000px;}
._2b{width:133.704000px;}
._25{width:144.912000px;}
._d{width:163.272000px;}
._31{width:171.228000px;}
._43{width:183.888000px;}
._45{width:193.608000px;}
._3a{width:203.328000px;}
._2e{width:204.624000px;}
._36{width:206.880000px;}
._38{width:221.760000px;}
._11{width:232.440000px;}
._2f{width:239.184000px;}
._35{width:240.192000px;}
._4a{width:241.248000px;}
._37{width:253.536000px;}
._34{width:255.166800px;}
._46{width:260.112000px;}
._23{width:264.720000px;}
._42{width:266.352000px;}
._21{width:267.888000px;}
._10{width:279.300000px;}
._30{width:291.552000px;}
._49{width:298.512000px;}
._40{width:300.192000px;}
._2d{width:308.355000px;}
._41{width:330.624000px;}
._48{width:332.064000px;}
._e{width:354.900000px;}
._33{width:375.696000px;}
._2c{width:392.208000px;}
._f{width:395.160000px;}
._4b{width:403.536000px;}
._3e{width:434.688000px;}
._32{width:442.224000px;}
._3b{width:443.664000px;}
._47{width:455.088000px;}
._3c{width:458.976000px;}
._3f{width:470.496000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:32.640000px;}
.fs8{font-size:33.600000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:48.960000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y21{bottom:102.750750px;}
.y1{bottom:103.500000px;}
.y7c{bottom:145.949550px;}
.ya0{bottom:145.950000px;}
.y54{bottom:148.500000px;}
.y37{bottom:153.000000px;}
.yc2{bottom:156.000000px;}
.y57{bottom:163.500000px;}
.y7b{bottom:167.924700px;}
.y9f{bottom:167.925000px;}
.y53{bottom:171.000000px;}
.y36{bottom:175.500000px;}
.y56{bottom:178.500000px;}
.yc1{bottom:186.000000px;}
.y7a{bottom:189.899700px;}
.y9e{bottom:189.900000px;}
.y52{bottom:193.500000px;}
.y55{bottom:197.460000px;}
.y20{bottom:198.000000px;}
.yc0{bottom:201.000000px;}
.y79{bottom:211.874700px;}
.y9d{bottom:211.875000px;}
.y51{bottom:216.000000px;}
.y1f{bottom:220.500000px;}
.ybf{bottom:231.000000px;}
.y78{bottom:233.849550px;}
.y9c{bottom:233.850000px;}
.y50{bottom:238.500000px;}
.y1e{bottom:243.000000px;}
.ybe{bottom:246.000000px;}
.y77{bottom:255.824700px;}
.y9b{bottom:255.825000px;}
.y4f{bottom:261.000000px;}
.y1d{bottom:265.500000px;}
.ybd{bottom:276.000000px;}
.y76{bottom:277.799700px;}
.y9a{bottom:277.800000px;}
.y4e{bottom:283.500000px;}
.y1c{bottom:288.000000px;}
.ybc{bottom:291.000000px;}
.y75{bottom:299.774700px;}
.y99{bottom:299.775000px;}
.y4d{bottom:306.000000px;}
.y1b{bottom:310.500000px;}
.ybb{bottom:321.000000px;}
.y74{bottom:321.749700px;}
.y98{bottom:321.750000px;}
.y4c{bottom:328.500000px;}
.y1a{bottom:333.000000px;}
.yba{bottom:336.000000px;}
.y73{bottom:343.724550px;}
.y97{bottom:343.725000px;}
.y4b{bottom:351.000000px;}
.y19{bottom:355.500000px;}
.y72{bottom:365.699700px;}
.y96{bottom:365.700000px;}
.yb9{bottom:366.000000px;}
.y4a{bottom:373.500000px;}
.y17{bottom:378.000000px;}
.yb8{bottom:381.000000px;}
.y71{bottom:387.674700px;}
.y95{bottom:387.675000px;}
.y49{bottom:396.000000px;}
.y18{bottom:400.500000px;}
.y70{bottom:409.649700px;}
.y94{bottom:409.650000px;}
.yb7{bottom:411.000000px;}
.y48{bottom:418.500000px;}
.y35{bottom:423.000000px;}
.yb6{bottom:426.000000px;}
.y6f{bottom:431.624700px;}
.y93{bottom:431.625000px;}
.ycd{bottom:437.250000px;}
.y47{bottom:441.000000px;}
.y34{bottom:445.500000px;}
.y6e{bottom:453.599550px;}
.y92{bottom:453.600000px;}
.yb5{bottom:456.000000px;}
.y46{bottom:463.500000px;}
.y16{bottom:468.000000px;}
.yb4{bottom:471.000000px;}
.ycc{bottom:474.750000px;}
.y6d{bottom:475.574550px;}
.y91{bottom:475.575000px;}
.y15{bottom:486.000000px;}
.y33{bottom:490.500000px;}
.ycb{bottom:493.500000px;}
.y6c{bottom:497.549700px;}
.y90{bottom:497.550000px;}
.yb3{bottom:501.000000px;}
.y14{bottom:504.000000px;}
.y45{bottom:508.500000px;}
.y32{bottom:513.000000px;}
.yb2{bottom:516.000000px;}
.y6b{bottom:519.524700px;}
.y8f{bottom:519.525000px;}
.y13{bottom:522.000000px;}
.y44{bottom:531.000000px;}
.y31{bottom:535.500000px;}
.y12{bottom:540.000000px;}
.y6a{bottom:541.499700px;}
.y8e{bottom:541.500000px;}
.yb1{bottom:546.000000px;}
.y43{bottom:553.500000px;}
.y11{bottom:558.000000px;}
.yb0{bottom:561.000000px;}
.y8d{bottom:563.475000px;}
.yca{bottom:568.500000px;}
.y10{bottom:576.000000px;}
.y30{bottom:580.500000px;}
.y69{bottom:585.449550px;}
.y8c{bottom:585.450000px;}
.yaf{bottom:591.000000px;}
.yf{bottom:594.000000px;}
.y42{bottom:598.500000px;}
.y2f{bottom:603.000000px;}
.yae{bottom:606.000000px;}
.y68{bottom:607.424700px;}
.y8b{bottom:607.425000px;}
.ye{bottom:612.000000px;}
.yc9{bottom:613.500000px;}
.y41{bottom:621.000000px;}
.y2e{bottom:625.500000px;}
.yc8{bottom:628.500000px;}
.y67{bottom:629.399700px;}
.y8a{bottom:629.400000px;}
.yad{bottom:636.000000px;}
.y40{bottom:643.500000px;}
.y2d{bottom:648.000000px;}
.yac{bottom:651.000000px;}
.y66{bottom:651.374700px;}
.y89{bottom:651.375000px;}
.yd{bottom:652.500000px;}
.yc7{bottom:658.500000px;}
.y3f{bottom:666.000000px;}
.yc{bottom:670.500000px;}
.y65{bottom:673.349550px;}
.y88{bottom:673.350000px;}
.yc6{bottom:673.500000px;}
.yab{bottom:681.000000px;}
.yb{bottom:688.500000px;}
.y2c{bottom:693.000000px;}
.y64{bottom:695.324550px;}
.y87{bottom:695.325000px;}
.yaa{bottom:696.000000px;}
.yc5{bottom:703.500000px;}
.ya{bottom:706.500000px;}
.y3e{bottom:711.000000px;}
.y2b{bottom:715.500000px;}
.y63{bottom:717.299700px;}
.y86{bottom:717.300000px;}
.yc4{bottom:718.500000px;}
.y9{bottom:724.500000px;}
.ya9{bottom:726.000000px;}
.y3d{bottom:733.500000px;}
.y2a{bottom:738.000000px;}
.y62{bottom:739.274700px;}
.y85{bottom:739.275000px;}
.ya8{bottom:741.000000px;}
.y8{bottom:742.500000px;}
.y3c{bottom:756.000000px;}
.y7{bottom:760.500000px;}
.y61{bottom:761.249700px;}
.y84{bottom:761.250000px;}
.ya7{bottom:771.000000px;}
.y3b{bottom:778.500000px;}
.y29{bottom:783.000000px;}
.y60{bottom:783.224700px;}
.y83{bottom:783.225000px;}
.ya6{bottom:786.000000px;}
.y6{bottom:801.000000px;}
.y5f{bottom:805.199700px;}
.y82{bottom:805.200000px;}
.ya5{bottom:816.000000px;}
.y5{bottom:823.500000px;}
.y5e{bottom:827.174700px;}
.y81{bottom:827.175000px;}
.y28{bottom:828.000000px;}
.ya4{bottom:831.000000px;}
.y27{bottom:846.000000px;}
.y5d{bottom:849.149850px;}
.y80{bottom:849.150000px;}
.ya3{bottom:861.000000px;}
.y26{bottom:864.000000px;}
.y3a{bottom:868.500000px;}
.y5c{bottom:871.124850px;}
.y7f{bottom:871.125000px;}
.ya2{bottom:876.000000px;}
.y25{bottom:882.000000px;}
.y4{bottom:891.000000px;}
.y5b{bottom:893.099850px;}
.y7e{bottom:893.100000px;}
.y24{bottom:900.000000px;}
.ya1{bottom:906.000000px;}
.y39{bottom:913.500000px;}
.y5a{bottom:915.074850px;}
.y7d{bottom:915.075000px;}
.y23{bottom:918.000000px;}
.y3{bottom:921.000000px;}
.y38{bottom:936.000000px;}
.y59{bottom:937.050000px;}
.y2{bottom:951.000000px;}
.y22{bottom:958.500000px;}
.y58{bottom:959.025000px;}
.yc3{bottom:966.000000px;}
.h9{height:30.472500px;}
.hb{height:39.072000px;}
.h1{height:39.990234px;}
.ha{height:46.312500px;}
.h4{height:50.580000px;}
.h6{height:57.890625px;}
.h5{height:61.136719px;}
.h8{height:69.468750px;}
.h2{height:82.792969px;}
.h3{height:115.781250px;}
.h7{height:342.453024px;}
.h0{height:1080.000000px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x1{left:99.000000px;}
.x4{left:114.000000px;}
.x3{left:139.580100px;}
.x7{left:144.000000px;}
.x9{left:159.000000px;}
.x5{left:166.500000px;}
.xc{left:211.500000px;}
.xa{left:244.800000px;}
.xb{left:289.800000px;}
.x2{left:319.500000px;}
.x8{left:414.000000px;}
.x6{left:453.653250px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000533pt;}
.ls18{letter-spacing:0.002667pt;}
.ls19{letter-spacing:0.003200pt;}
.ls10{letter-spacing:0.005867pt;}
.ls12{letter-spacing:0.006400pt;}
.ls13{letter-spacing:0.026667pt;}
.ls11{letter-spacing:0.027200pt;}
.ls17{letter-spacing:0.034667pt;}
.lsd{letter-spacing:0.046933pt;}
.ls1a{letter-spacing:0.061333pt;}
.ls8{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.138133pt;}
.ls9{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.197867pt;}
.lsb{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.323200pt;}
.lse{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.423467pt;}
.ls5{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:4.224000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.413312pt;}
.ls1{letter-spacing:9.546667pt;}
.ls16{letter-spacing:10.624000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws13{word-spacing:-53.760000pt;}
.ws20{word-spacing:-43.904000pt;}
.ws2{word-spacing:-43.648000pt;}
.wsc{word-spacing:-43.584000pt;}
.ws10{word-spacing:-43.520000pt;}
.wsa{word-spacing:-43.456000pt;}
.wsf{word-spacing:-43.392000pt;}
.ws7{word-spacing:-43.328000pt;}
.wsb{word-spacing:-43.264000pt;}
.ws6{word-spacing:-43.200000pt;}
.ws3{word-spacing:-43.136000pt;}
.ws1{word-spacing:-35.946667pt;}
.ws1e{word-spacing:-32.896000pt;}
.ws12{word-spacing:-32.768000pt;}
.ws19{word-spacing:-32.640000pt;}
.ws1a{word-spacing:-32.576000pt;}
.wse{word-spacing:-32.546133pt;}
.wsd{word-spacing:-32.512000pt;}
.ws18{word-spacing:-32.448000pt;}
.ws15{word-spacing:-32.320000pt;}
.ws1b{word-spacing:-32.064000pt;}
.ws1c{word-spacing:-32.000000pt;}
.ws17{word-spacing:-31.936000pt;}
.ws1d{word-spacing:-31.872000pt;}
.ws16{word-spacing:-28.757333pt;}
.ws1f{word-spacing:-22.506667pt;}
.ws11{word-spacing:-18.240000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws8{word-spacing:-12.588800pt;}
.ws14{word-spacing:-12.229120pt;}
.ws22{word-spacing:-11.989333pt;}
.ws21{word-spacing:-10.965333pt;}
.ws23{word-spacing:-8.392533pt;}
.ws0{word-spacing:-7.573333pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-143.488000pt;}
._15{margin-left:-17.496533pt;}
._1a{margin-left:-14.197333pt;}
._12{margin-left:-12.821333pt;}
._4{margin-left:-10.986667pt;}
._3{margin-left:-9.386667pt;}
._0{margin-left:-7.520000pt;}
._1{margin-left:-5.760000pt;}
._13{margin-left:-4.586667pt;}
._c{margin-left:-3.690667pt;}
._2{margin-left:-2.666667pt;}
._5{margin-left:-1.066667pt;}
._6{width:1.280000pt;}
._7{width:2.826667pt;}
._8{width:4.373333pt;}
._9{width:5.386667pt;}
._a{width:6.346667pt;}
._b{width:7.573333pt;}
._1f{width:8.571200pt;}
._14{width:9.480533pt;}
._17{width:10.970133pt;}
._1d{width:12.757333pt;}
._19{width:13.966400pt;}
._1e{width:15.007467pt;}
._18{width:15.968000pt;}
._1c{width:17.973333pt;}
._20{width:18.944000pt;}
._22{width:23.594667pt;}
._39{width:24.938667pt;}
._29{width:26.826667pt;}
._1b{width:30.673920pt;}
._27{width:94.080000pt;}
._44{width:100.181333pt;}
._28{width:101.290667pt;}
._2a{width:102.912000pt;}
._26{width:108.202667pt;}
._24{width:110.421333pt;}
._3d{width:114.688000pt;}
._2b{width:118.848000pt;}
._25{width:128.810667pt;}
._d{width:145.130667pt;}
._31{width:152.202667pt;}
._43{width:163.456000pt;}
._45{width:172.096000pt;}
._3a{width:180.736000pt;}
._2e{width:181.888000pt;}
._36{width:183.893333pt;}
._38{width:197.120000pt;}
._11{width:206.613333pt;}
._2f{width:212.608000pt;}
._35{width:213.504000pt;}
._4a{width:214.442667pt;}
._37{width:225.365333pt;}
._34{width:226.814933pt;}
._46{width:231.210667pt;}
._23{width:235.306667pt;}
._42{width:236.757333pt;}
._21{width:238.122667pt;}
._10{width:248.266667pt;}
._30{width:259.157333pt;}
._49{width:265.344000pt;}
._40{width:266.837333pt;}
._2d{width:274.093333pt;}
._41{width:293.888000pt;}
._48{width:295.168000pt;}
._e{width:315.466667pt;}
._33{width:333.952000pt;}
._2c{width:348.629333pt;}
._f{width:351.253333pt;}
._4b{width:358.698667pt;}
._3e{width:386.389333pt;}
._32{width:393.088000pt;}
._3b{width:394.368000pt;}
._47{width:404.522667pt;}
._3c{width:407.978667pt;}
._3f{width:418.218667pt;}
.fs6{font-size:29.013333pt;}
.fs8{font-size:29.866667pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:43.520000pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:91.334000pt;}
.y1{bottom:92.000000pt;}
.y7c{bottom:129.732933pt;}
.ya0{bottom:129.733333pt;}
.y54{bottom:132.000000pt;}
.y37{bottom:136.000000pt;}
.yc2{bottom:138.666667pt;}
.y57{bottom:145.333333pt;}
.y7b{bottom:149.266400pt;}
.y9f{bottom:149.266667pt;}
.y53{bottom:152.000000pt;}
.y36{bottom:156.000000pt;}
.y56{bottom:158.666667pt;}
.yc1{bottom:165.333333pt;}
.y7a{bottom:168.799733pt;}
.y9e{bottom:168.800000pt;}
.y52{bottom:172.000000pt;}
.y55{bottom:175.520000pt;}
.y20{bottom:176.000000pt;}
.yc0{bottom:178.666667pt;}
.y79{bottom:188.333067pt;}
.y9d{bottom:188.333333pt;}
.y51{bottom:192.000000pt;}
.y1f{bottom:196.000000pt;}
.ybf{bottom:205.333333pt;}
.y78{bottom:207.866267pt;}
.y9c{bottom:207.866667pt;}
.y50{bottom:212.000000pt;}
.y1e{bottom:216.000000pt;}
.ybe{bottom:218.666667pt;}
.y77{bottom:227.399733pt;}
.y9b{bottom:227.400000pt;}
.y4f{bottom:232.000000pt;}
.y1d{bottom:236.000000pt;}
.ybd{bottom:245.333333pt;}
.y76{bottom:246.933067pt;}
.y9a{bottom:246.933333pt;}
.y4e{bottom:252.000000pt;}
.y1c{bottom:256.000000pt;}
.ybc{bottom:258.666667pt;}
.y75{bottom:266.466400pt;}
.y99{bottom:266.466667pt;}
.y4d{bottom:272.000000pt;}
.y1b{bottom:276.000000pt;}
.ybb{bottom:285.333333pt;}
.y74{bottom:285.999733pt;}
.y98{bottom:286.000000pt;}
.y4c{bottom:292.000000pt;}
.y1a{bottom:296.000000pt;}
.yba{bottom:298.666667pt;}
.y73{bottom:305.532933pt;}
.y97{bottom:305.533333pt;}
.y4b{bottom:312.000000pt;}
.y19{bottom:316.000000pt;}
.y72{bottom:325.066400pt;}
.y96{bottom:325.066667pt;}
.yb9{bottom:325.333333pt;}
.y4a{bottom:332.000000pt;}
.y17{bottom:336.000000pt;}
.yb8{bottom:338.666667pt;}
.y71{bottom:344.599733pt;}
.y95{bottom:344.600000pt;}
.y49{bottom:352.000000pt;}
.y18{bottom:356.000000pt;}
.y70{bottom:364.133067pt;}
.y94{bottom:364.133333pt;}
.yb7{bottom:365.333333pt;}
.y48{bottom:372.000000pt;}
.y35{bottom:376.000000pt;}
.yb6{bottom:378.666667pt;}
.y6f{bottom:383.666400pt;}
.y93{bottom:383.666667pt;}
.ycd{bottom:388.666667pt;}
.y47{bottom:392.000000pt;}
.y34{bottom:396.000000pt;}
.y6e{bottom:403.199600pt;}
.y92{bottom:403.200000pt;}
.yb5{bottom:405.333333pt;}
.y46{bottom:412.000000pt;}
.y16{bottom:416.000000pt;}
.yb4{bottom:418.666667pt;}
.ycc{bottom:422.000000pt;}
.y6d{bottom:422.732933pt;}
.y91{bottom:422.733333pt;}
.y15{bottom:432.000000pt;}
.y33{bottom:436.000000pt;}
.ycb{bottom:438.666667pt;}
.y6c{bottom:442.266400pt;}
.y90{bottom:442.266667pt;}
.yb3{bottom:445.333333pt;}
.y14{bottom:448.000000pt;}
.y45{bottom:452.000000pt;}
.y32{bottom:456.000000pt;}
.yb2{bottom:458.666667pt;}
.y6b{bottom:461.799733pt;}
.y8f{bottom:461.800000pt;}
.y13{bottom:464.000000pt;}
.y44{bottom:472.000000pt;}
.y31{bottom:476.000000pt;}
.y12{bottom:480.000000pt;}
.y6a{bottom:481.333067pt;}
.y8e{bottom:481.333333pt;}
.yb1{bottom:485.333333pt;}
.y43{bottom:492.000000pt;}
.y11{bottom:496.000000pt;}
.yb0{bottom:498.666667pt;}
.y8d{bottom:500.866667pt;}
.yca{bottom:505.333333pt;}
.y10{bottom:512.000000pt;}
.y30{bottom:516.000000pt;}
.y69{bottom:520.399600pt;}
.y8c{bottom:520.400000pt;}
.yaf{bottom:525.333333pt;}
.yf{bottom:528.000000pt;}
.y42{bottom:532.000000pt;}
.y2f{bottom:536.000000pt;}
.yae{bottom:538.666667pt;}
.y68{bottom:539.933067pt;}
.y8b{bottom:539.933333pt;}
.ye{bottom:544.000000pt;}
.yc9{bottom:545.333333pt;}
.y41{bottom:552.000000pt;}
.y2e{bottom:556.000000pt;}
.yc8{bottom:558.666667pt;}
.y67{bottom:559.466400pt;}
.y8a{bottom:559.466667pt;}
.yad{bottom:565.333333pt;}
.y40{bottom:572.000000pt;}
.y2d{bottom:576.000000pt;}
.yac{bottom:578.666667pt;}
.y66{bottom:578.999733pt;}
.y89{bottom:579.000000pt;}
.yd{bottom:580.000000pt;}
.yc7{bottom:585.333333pt;}
.y3f{bottom:592.000000pt;}
.yc{bottom:596.000000pt;}
.y65{bottom:598.532933pt;}
.y88{bottom:598.533333pt;}
.yc6{bottom:598.666667pt;}
.yab{bottom:605.333333pt;}
.yb{bottom:612.000000pt;}
.y2c{bottom:616.000000pt;}
.y64{bottom:618.066267pt;}
.y87{bottom:618.066667pt;}
.yaa{bottom:618.666667pt;}
.yc5{bottom:625.333333pt;}
.ya{bottom:628.000000pt;}
.y3e{bottom:632.000000pt;}
.y2b{bottom:636.000000pt;}
.y63{bottom:637.599733pt;}
.y86{bottom:637.600000pt;}
.yc4{bottom:638.666667pt;}
.y9{bottom:644.000000pt;}
.ya9{bottom:645.333333pt;}
.y3d{bottom:652.000000pt;}
.y2a{bottom:656.000000pt;}
.y62{bottom:657.133067pt;}
.y85{bottom:657.133333pt;}
.ya8{bottom:658.666667pt;}
.y8{bottom:660.000000pt;}
.y3c{bottom:672.000000pt;}
.y7{bottom:676.000000pt;}
.y61{bottom:676.666400pt;}
.y84{bottom:676.666667pt;}
.ya7{bottom:685.333333pt;}
.y3b{bottom:692.000000pt;}
.y29{bottom:696.000000pt;}
.y60{bottom:696.199733pt;}
.y83{bottom:696.200000pt;}
.ya6{bottom:698.666667pt;}
.y6{bottom:712.000000pt;}
.y5f{bottom:715.733067pt;}
.y82{bottom:715.733333pt;}
.ya5{bottom:725.333333pt;}
.y5{bottom:732.000000pt;}
.y5e{bottom:735.266400pt;}
.y81{bottom:735.266667pt;}
.y28{bottom:736.000000pt;}
.ya4{bottom:738.666667pt;}
.y27{bottom:752.000000pt;}
.y5d{bottom:754.799867pt;}
.y80{bottom:754.800000pt;}
.ya3{bottom:765.333333pt;}
.y26{bottom:768.000000pt;}
.y3a{bottom:772.000000pt;}
.y5c{bottom:774.333200pt;}
.y7f{bottom:774.333333pt;}
.ya2{bottom:778.666667pt;}
.y25{bottom:784.000000pt;}
.y4{bottom:792.000000pt;}
.y5b{bottom:793.866533pt;}
.y7e{bottom:793.866667pt;}
.y24{bottom:800.000000pt;}
.ya1{bottom:805.333333pt;}
.y39{bottom:812.000000pt;}
.y5a{bottom:813.399867pt;}
.y7d{bottom:813.400000pt;}
.y23{bottom:816.000000pt;}
.y3{bottom:818.666667pt;}
.y38{bottom:832.000000pt;}
.y59{bottom:832.933333pt;}
.y2{bottom:845.333333pt;}
.y22{bottom:852.000000pt;}
.y58{bottom:852.466667pt;}
.yc3{bottom:858.666667pt;}
.h9{height:27.086667pt;}
.hb{height:34.730667pt;}
.h1{height:35.546875pt;}
.ha{height:41.166667pt;}
.h4{height:44.960000pt;}
.h6{height:51.458333pt;}
.h5{height:54.343750pt;}
.h8{height:61.750000pt;}
.h2{height:73.593750pt;}
.h3{height:102.916667pt;}
.h7{height:304.402688pt;}
.h0{height:960.000000pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x1{left:88.000000pt;}
.x4{left:101.333333pt;}
.x3{left:124.071200pt;}
.x7{left:128.000000pt;}
.x9{left:141.333333pt;}
.x5{left:148.000000pt;}
.xc{left:188.000000pt;}
.xa{left:217.600000pt;}
.xb{left:257.600000pt;}
.x2{left:284.000000pt;}
.x8{left:368.000000pt;}
.x6{left:403.247333pt;}
}




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