
    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_933030802e045de7a7c13f0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_09742214ae11e3e54304d5a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6c7d5dc2c8a7c47f99765c50.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_a0ec1275fb7fb8ebe5daf912.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_3a238057ddd69a7972feb23e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_67faef59173b74b84b0ab048.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_f28ddea0f2e6a22482279d17.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b11078ad00f72b5bbe061cbe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6444d72e7c9e3b91ab99109a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.711914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6e99bc31930be59f678ef832.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f0c266071765b68ff5b3580b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.113281;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:ffe;src:url('chunks/assets/font_f951008d31f8cfc0ba380398.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106934;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:fff;src:url('chunks/assets/font_68522c466f596c64fbca1e00.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.162000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.468000px;}
.ls8{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.756000px;}
.lsb{letter-spacing:54.984000px;}
.lsd{letter-spacing:55.320000px;}
.ls9{letter-spacing:64.320000px;}
.ls0{letter-spacing:199.320000px;}
.ls7{letter-spacing:199.500000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsb{word-spacing:-60.000000px;}
.ws0{word-spacing:-23.352000px;}
.wsc{word-spacing:-20.484000px;}
.ws8{word-spacing:-20.448000px;}
.wse{word-spacing:-20.433000px;}
.wsd{word-spacing:-20.016000px;}
.wsa{word-spacing:-17.160000px;}
.ws2{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.154000px;}
.ws4{word-spacing:-13.398000px;}
.ws5{word-spacing:-13.236000px;}
.ws1{word-spacing:-9.750000px;}
.ws7{word-spacing:0.000000px;}
._27{margin-left:-7.848000px;}
._11{margin-left:-6.408000px;}
._12{margin-left:-4.536000px;}
._8{margin-left:-2.808000px;}
._2{margin-left:-1.224000px;}
._1{width:1.008000px;}
._3{width:2.046000px;}
._4{width:3.084000px;}
._6{width:4.320000px;}
._c{width:5.400000px;}
._7{width:6.516000px;}
._22{width:7.776000px;}
._10{width:9.000000px;}
._16{width:10.224000px;}
._f{width:11.448000px;}
._e{width:12.456000px;}
._d{width:13.680000px;}
._1f{width:15.264000px;}
._21{width:16.416000px;}
._9{width:21.456000px;}
._b{width:22.464000px;}
._a{width:23.472000px;}
._17{width:24.984000px;}
._20{width:26.208000px;}
._23{width:27.216000px;}
._24{width:28.584000px;}
._25{width:30.024000px;}
._2c{width:31.222800px;}
._2d{width:32.263200px;}
._15{width:34.920000px;}
._14{width:35.928000px;}
._18{width:37.944000px;}
._19{width:38.952000px;}
._13{width:39.960000px;}
._1d{width:41.472000px;}
._1b{width:42.480000px;}
._1c{width:43.848000px;}
._2e{width:44.965500px;}
._2a{width:48.308400px;}
._2b{width:49.442400px;}
._26{width:51.696000px;}
._1a{width:54.432000px;}
._28{width:60.631200px;}
._29{width:61.746300px;}
._1e{width:196.608000px;}
._5{width:199.500000px;}
._0{width:1308.282000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:18.000000px;}
.fs1{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:39.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:73.500000px;}
.fs9{font-size:75.600000px;}
.fs6{font-size:84.000000px;}
.fsd{font-size:85.800000px;}
.fsc{font-size:129.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.500000px;}
.yce{bottom:4.200000px;}
.y2f{bottom:4.500000px;}
.y3{bottom:11.250000px;}
.yc4{bottom:16.200000px;}
.y2{bottom:16.875000px;}
.yc3{bottom:41.625000px;}
.yca{bottom:42.750000px;}
.yc2{bottom:67.500000px;}
.yc9{bottom:68.625000px;}
.yc1{bottom:93.375000px;}
.yc8{bottom:94.500000px;}
.y30{bottom:120.412500px;}
.ya9{bottom:129.037500px;}
.y59{bottom:130.162500px;}
.y83{bottom:131.662500px;}
.y2e{bottom:137.287500px;}
.ya8{bottom:149.662500px;}
.y58{bottom:150.420000px;}
.y82{bottom:152.295000px;}
.ya7{bottom:170.295000px;}
.y57{bottom:170.670000px;}
.y81{bottom:172.920000px;}
.y2d{bottom:184.950000px;}
.ya6{bottom:191.325000px;}
.y56{bottom:191.700000px;}
.y80{bottom:193.575000px;}
.y2c{bottom:205.950000px;}
.ya5{bottom:211.950000px;}
.y55{bottom:212.325000px;}
.y7f{bottom:214.200000px;}
.y2b{bottom:226.575000px;}
.y54{bottom:232.950000px;}
.y2a{bottom:233.325000px;}
.ya4{bottom:233.700000px;}
.y7e{bottom:235.200000px;}
.y29{bottom:246.450000px;}
.ycb{bottom:252.375000px;}
.y53{bottom:253.950000px;}
.ya3{bottom:254.325000px;}
.y7d{bottom:255.825000px;}
.y28{bottom:264.450000px;}
.y27{bottom:271.200000px;}
.y52{bottom:274.575000px;}
.ya2{bottom:275.325000px;}
.y7c{bottom:276.450000px;}
.yc5{bottom:284.100000px;}
.y26{bottom:285.075000px;}
.y51{bottom:295.200000px;}
.ya1{bottom:295.950000px;}
.y7b{bottom:297.075000px;}
.y25{bottom:309.495000px;}
.y50{bottom:315.870000px;}
.y7a{bottom:317.745000px;}
.y24{bottom:330.120000px;}
.y4f{bottom:336.495000px;}
.ya0{bottom:338.370000px;}
.y79{bottom:340.620000px;}
.y23{bottom:350.745000px;}
.y4e{bottom:357.495000px;}
.y78{bottom:357.870000px;}
.y9f{bottom:359.370000px;}
.yc7{bottom:366.300000px;}
.y22{bottom:371.370000px;}
.yc0{bottom:373.800000px;}
.y77{bottom:375.120000px;}
.y4d{bottom:378.120000px;}
.y9e{bottom:381.120000px;}
.y21{bottom:392.370000px;}
.y4c{bottom:398.745000px;}
.y9d{bottom:401.745000px;}
.y76{bottom:413.370000px;}
.y4b{bottom:419.370000px;}
.y9c{bottom:423.900000px;}
.y20{bottom:434.025000px;}
.y75{bottom:434.400000px;}
.y4a{bottom:440.025000px;}
.y9b{bottom:445.275000px;}
.y1f{bottom:454.650000px;}
.y74{bottom:455.025000px;}
.y49{bottom:461.025000px;}
.y9a{bottom:463.650000px;}
.y1e{bottom:475.275000px;}
.y73{bottom:475.650000px;}
.y48{bottom:481.650000px;}
.y99{bottom:483.525000px;}
.y1d{bottom:495.900000px;}
.y72{bottom:496.275000px;}
.y98{bottom:500.775000px;}
.y47{bottom:502.275000px;}
.yc6{bottom:515.475000px;}
.y1c{bottom:516.900000px;}
.ycd{bottom:518.475000px;}
.y46{bottom:522.900000px;}
.y97{bottom:530.775000px;}
.y1b{bottom:537.525000px;}
.y71{bottom:537.900000px;}
.y45{bottom:543.570000px;}
.ycc{bottom:545.850000px;}
.ybf{bottom:549.945000px;}
.y96{bottom:551.445000px;}
.y1a{bottom:558.195000px;}
.y70{bottom:558.570000px;}
.y44{bottom:564.195000px;}
.ybe{bottom:567.195000px;}
.y95{bottom:572.070000px;}
.y19{bottom:578.820000px;}
.y6f{bottom:579.195000px;}
.ybd{bottom:584.820000px;}
.y43{bottom:585.195000px;}
.y94{bottom:592.695000px;}
.y18{bottom:599.445000px;}
.y6e{bottom:599.820000px;}
.ybc{bottom:603.195000px;}
.y42{bottom:605.820000px;}
.y93{bottom:613.695000px;}
.y6d{bottom:620.445000px;}
.y41{bottom:629.445000px;}
.y92{bottom:634.320000px;}
.ybb{bottom:637.695000px;}
.y6c{bottom:641.445000px;}
.y17{bottom:648.945000px;}
.y40{bottom:652.320000px;}
.y91{bottom:654.945000px;}
.y16{bottom:669.225000px;}
.yba{bottom:672.600000px;}
.y6b{bottom:672.975000px;}
.y90{bottom:675.600000px;}
.y15{bottom:686.475000px;}
.yb9{bottom:689.850000px;}
.y3f{bottom:691.350000px;}
.y6a{bottom:693.975000px;}
.y8f{bottom:696.225000px;}
.y14{bottom:704.100000px;}
.yb8{bottom:707.100000px;}
.y3e{bottom:711.975000px;}
.y69{bottom:714.975000px;}
.y8e{bottom:717.225000px;}
.y13{bottom:720.975000px;}
.yb7{bottom:725.100000px;}
.y3d{bottom:732.975000px;}
.y68{bottom:735.600000px;}
.y8d{bottom:737.850000px;}
.y12{bottom:738.225000px;}
.yb6{bottom:746.850000px;}
.y3c{bottom:753.600000px;}
.y11{bottom:755.475000px;}
.y67{bottom:757.350000px;}
.y8c{bottom:758.475000px;}
.yb5{bottom:768.975000px;}
.y10{bottom:773.100000px;}
.y3b{bottom:774.225000px;}
.y66{bottom:778.380000px;}
.y8b{bottom:779.130000px;}
.yf{bottom:790.005000px;}
.yb4{bottom:790.770000px;}
.y65{bottom:800.130000px;}
.y8a{bottom:802.005000px;}
.yd{bottom:808.005000px;}
.yb3{bottom:812.505000px;}
.ye{bottom:813.255000px;}
.y3a{bottom:815.880000px;}
.y89{bottom:819.255000px;}
.y64{bottom:820.755000px;}
.yb{bottom:825.255000px;}
.yc{bottom:830.505000px;}
.yb2{bottom:833.505000px;}
.y39{bottom:836.505000px;}
.y63{bottom:841.380000px;}
.ya{bottom:842.505000px;}
.yb1{bottom:854.130000px;}
.y38{bottom:857.505000px;}
.y62{bottom:863.505000px;}
.yb0{bottom:875.880000px;}
.y37{bottom:878.130000px;}
.y88{bottom:878.505000px;}
.y61{bottom:884.130000px;}
.y9{bottom:884.505000px;}
.yaf{bottom:896.550000px;}
.y36{bottom:898.800000px;}
.y87{bottom:899.175000px;}
.y60{bottom:904.800000px;}
.yae{bottom:917.550000px;}
.y35{bottom:919.425000px;}
.y86{bottom:919.800000px;}
.y5f{bottom:925.800000px;}
.y8{bottom:932.925000px;}
.yad{bottom:938.175000px;}
.y34{bottom:940.050000px;}
.y85{bottom:940.425000px;}
.y5e{bottom:943.800000px;}
.yac{bottom:959.925000px;}
.y33{bottom:961.050000px;}
.y5d{bottom:964.800000px;}
.yab{bottom:980.550000px;}
.y7{bottom:981.300000px;}
.y84{bottom:982.050000px;}
.y5c{bottom:985.425000px;}
.yaa{bottom:1001.550000px;}
.y32{bottom:1002.675000px;}
.y6{bottom:1004.175000px;}
.y5b{bottom:1006.050000px;}
.y5{bottom:1022.205000px;}
.y31{bottom:1023.330000px;}
.y5a{bottom:1025.955000px;}
.y1{bottom:1119.330000px;}
.h3{height:15.169922px;}
.h2{height:20.947266px;}
.h1f{height:25.950000px;}
.h4{height:30.339844px;}
.ha{height:33.287109px;}
.hf{height:33.515625px;}
.h9{height:35.286621px;}
.hb{height:41.894531px;}
.h8{height:42.333984px;}
.h11{height:43.875000px;}
.h1d{height:45.865723px;}
.he{height:50.273438px;}
.hc{height:53.642578px;}
.h10{height:53.789062px;}
.h6{height:54.287109px;}
.h16{height:55.038867px;}
.h19{height:56.878418px;}
.h12{height:57.202148px;}
.h5{height:58.921875px;}
.h1{height:59.715820px;}
.h1e{height:62.464746px;}
.hd{height:64.546875px;}
.h13{height:65.144531px;}
.h17{height:66.358154px;}
.h1c{height:67.774219px;}
.h7{height:76.001953px;}
.h15{height:113.625000px;}
.h1b{height:114.750000px;}
.h1a{height:116.465332px;}
.h18{height:885.600000px;}
.h14{height:918.000000px;}
.h0{height:1188.000000px;}
.w3{width:235.995000px;}
.w4{width:236.325000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w9{width:1077.750000px;}
.w6{width:1085.250000px;}
.w8{width:1112.625000px;}
.w7{width:1177.200000px;}
.w5{width:1188.000000px;}
.x0{left:0.000000px;}
.x12{left:8.287500px;}
.x20{left:10.800000px;}
.x23{left:42.300000px;}
.x1d{left:51.037486px;}
.x1f{left:59.550000px;}
.x1{left:127.537486px;}
.x11{left:133.574986px;}
.x6{left:147.449986px;}
.x1e{left:154.574986px;}
.x1a{left:159.449986px;}
.x4{left:161.324986px;}
.x1c{left:163.199986px;}
.x17{left:165.074986px;}
.x1b{left:167.324986px;}
.x15{left:169.199986px;}
.xe{left:173.324986px;}
.xf{left:181.574986px;}
.x5{left:183.449986px;}
.x18{left:207.824986px;}
.x19{left:229.994986px;}
.x16{left:235.619986px;}
.xb{left:333.524986px;}
.x10{left:343.649986px;}
.x22{left:359.100000px;}
.x13{left:363.525000px;}
.x26{left:391.575000px;}
.x7{left:400.649986px;}
.x25{left:450.900000px;}
.x3{left:459.194986px;}
.x8{left:524.849986px;}
.x14{left:599.520000px;}
.xd{left:631.004986px;}
.xc{left:775.829973px;}
.x9{left:780.704973px;}
.xa{left:785.954986px;}
.x2{left:790.829986px;}
.x21{left:816.600000px;}
.x24{left:861.675000px;}
@media print{
.v1{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.416000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.672000pt;}
.lsb{letter-spacing:48.874667pt;}
.lsd{letter-spacing:49.173333pt;}
.ls9{letter-spacing:57.173333pt;}
.ls0{letter-spacing:177.173333pt;}
.ls7{letter-spacing:177.333333pt;}
.ws9{word-spacing:-64.000000pt;}
.wsb{word-spacing:-53.333333pt;}
.ws0{word-spacing:-20.757333pt;}
.wsc{word-spacing:-18.208000pt;}
.ws8{word-spacing:-18.176000pt;}
.wse{word-spacing:-18.162667pt;}
.wsd{word-spacing:-17.792000pt;}
.wsa{word-spacing:-15.253333pt;}
.ws2{word-spacing:-14.666667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws6{word-spacing:-12.581333pt;}
.ws4{word-spacing:-11.909333pt;}
.ws5{word-spacing:-11.765333pt;}
.ws1{word-spacing:-8.666667pt;}
.ws7{word-spacing:0.000000pt;}
._27{margin-left:-6.976000pt;}
._11{margin-left:-5.696000pt;}
._12{margin-left:-4.032000pt;}
._8{margin-left:-2.496000pt;}
._2{margin-left:-1.088000pt;}
._1{width:0.896000pt;}
._3{width:1.818667pt;}
._4{width:2.741333pt;}
._6{width:3.840000pt;}
._c{width:4.800000pt;}
._7{width:5.792000pt;}
._22{width:6.912000pt;}
._10{width:8.000000pt;}
._16{width:9.088000pt;}
._f{width:10.176000pt;}
._e{width:11.072000pt;}
._d{width:12.160000pt;}
._1f{width:13.568000pt;}
._21{width:14.592000pt;}
._9{width:19.072000pt;}
._b{width:19.968000pt;}
._a{width:20.864000pt;}
._17{width:22.208000pt;}
._20{width:23.296000pt;}
._23{width:24.192000pt;}
._24{width:25.408000pt;}
._25{width:26.688000pt;}
._2c{width:27.753600pt;}
._2d{width:28.678400pt;}
._15{width:31.040000pt;}
._14{width:31.936000pt;}
._18{width:33.728000pt;}
._19{width:34.624000pt;}
._13{width:35.520000pt;}
._1d{width:36.864000pt;}
._1b{width:37.760000pt;}
._1c{width:38.976000pt;}
._2e{width:39.969333pt;}
._2a{width:42.940800pt;}
._2b{width:43.948800pt;}
._26{width:45.952000pt;}
._1a{width:48.384000pt;}
._28{width:53.894400pt;}
._29{width:54.885600pt;}
._1e{width:174.762667pt;}
._5{width:177.333333pt;}
._0{width:1162.917333pt;}
.fs2{font-size:16.000000pt;}
.fs1{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.666667pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:65.333333pt;}
.fs9{font-size:67.200000pt;}
.fs6{font-size:74.666667pt;}
.fsd{font-size:76.266667pt;}
.fsc{font-size:114.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.333333pt;}
.yce{bottom:3.733333pt;}
.y2f{bottom:4.000000pt;}
.y3{bottom:10.000000pt;}
.yc4{bottom:14.400000pt;}
.y2{bottom:15.000000pt;}
.yc3{bottom:37.000000pt;}
.yca{bottom:38.000000pt;}
.yc2{bottom:60.000000pt;}
.yc9{bottom:61.000000pt;}
.yc1{bottom:83.000000pt;}
.yc8{bottom:84.000000pt;}
.y30{bottom:107.033333pt;}
.ya9{bottom:114.700000pt;}
.y59{bottom:115.700000pt;}
.y83{bottom:117.033333pt;}
.y2e{bottom:122.033333pt;}
.ya8{bottom:133.033333pt;}
.y58{bottom:133.706667pt;}
.y82{bottom:135.373333pt;}
.ya7{bottom:151.373333pt;}
.y57{bottom:151.706667pt;}
.y81{bottom:153.706667pt;}
.y2d{bottom:164.400000pt;}
.ya6{bottom:170.066667pt;}
.y56{bottom:170.400000pt;}
.y80{bottom:172.066667pt;}
.y2c{bottom:183.066667pt;}
.ya5{bottom:188.400000pt;}
.y55{bottom:188.733333pt;}
.y7f{bottom:190.400000pt;}
.y2b{bottom:201.400000pt;}
.y54{bottom:207.066667pt;}
.y2a{bottom:207.400000pt;}
.ya4{bottom:207.733333pt;}
.y7e{bottom:209.066667pt;}
.y29{bottom:219.066667pt;}
.ycb{bottom:224.333333pt;}
.y53{bottom:225.733333pt;}
.ya3{bottom:226.066667pt;}
.y7d{bottom:227.400000pt;}
.y28{bottom:235.066667pt;}
.y27{bottom:241.066667pt;}
.y52{bottom:244.066667pt;}
.ya2{bottom:244.733333pt;}
.y7c{bottom:245.733333pt;}
.yc5{bottom:252.533333pt;}
.y26{bottom:253.400000pt;}
.y51{bottom:262.400000pt;}
.ya1{bottom:263.066667pt;}
.y7b{bottom:264.066667pt;}
.y25{bottom:275.106667pt;}
.y50{bottom:280.773333pt;}
.y7a{bottom:282.440000pt;}
.y24{bottom:293.440000pt;}
.y4f{bottom:299.106667pt;}
.ya0{bottom:300.773333pt;}
.y79{bottom:302.773333pt;}
.y23{bottom:311.773333pt;}
.y4e{bottom:317.773333pt;}
.y78{bottom:318.106667pt;}
.y9f{bottom:319.440000pt;}
.yc7{bottom:325.600000pt;}
.y22{bottom:330.106667pt;}
.yc0{bottom:332.266667pt;}
.y77{bottom:333.440000pt;}
.y4d{bottom:336.106667pt;}
.y9e{bottom:338.773333pt;}
.y21{bottom:348.773333pt;}
.y4c{bottom:354.440000pt;}
.y9d{bottom:357.106667pt;}
.y76{bottom:367.440000pt;}
.y4b{bottom:372.773333pt;}
.y9c{bottom:376.800000pt;}
.y20{bottom:385.800000pt;}
.y75{bottom:386.133333pt;}
.y4a{bottom:391.133333pt;}
.y9b{bottom:395.800000pt;}
.y1f{bottom:404.133333pt;}
.y74{bottom:404.466667pt;}
.y49{bottom:409.800000pt;}
.y9a{bottom:412.133333pt;}
.y1e{bottom:422.466667pt;}
.y73{bottom:422.800000pt;}
.y48{bottom:428.133333pt;}
.y99{bottom:429.800000pt;}
.y1d{bottom:440.800000pt;}
.y72{bottom:441.133333pt;}
.y98{bottom:445.133333pt;}
.y47{bottom:446.466667pt;}
.yc6{bottom:458.200000pt;}
.y1c{bottom:459.466667pt;}
.ycd{bottom:460.866667pt;}
.y46{bottom:464.800000pt;}
.y97{bottom:471.800000pt;}
.y1b{bottom:477.800000pt;}
.y71{bottom:478.133333pt;}
.y45{bottom:483.173333pt;}
.ycc{bottom:485.200000pt;}
.ybf{bottom:488.840000pt;}
.y96{bottom:490.173333pt;}
.y1a{bottom:496.173333pt;}
.y70{bottom:496.506667pt;}
.y44{bottom:501.506667pt;}
.ybe{bottom:504.173333pt;}
.y95{bottom:508.506667pt;}
.y19{bottom:514.506667pt;}
.y6f{bottom:514.840000pt;}
.ybd{bottom:519.840000pt;}
.y43{bottom:520.173333pt;}
.y94{bottom:526.840000pt;}
.y18{bottom:532.840000pt;}
.y6e{bottom:533.173333pt;}
.ybc{bottom:536.173333pt;}
.y42{bottom:538.506667pt;}
.y93{bottom:545.506667pt;}
.y6d{bottom:551.506667pt;}
.y41{bottom:559.506667pt;}
.y92{bottom:563.840000pt;}
.ybb{bottom:566.840000pt;}
.y6c{bottom:570.173333pt;}
.y17{bottom:576.840000pt;}
.y40{bottom:579.840000pt;}
.y91{bottom:582.173333pt;}
.y16{bottom:594.866667pt;}
.yba{bottom:597.866667pt;}
.y6b{bottom:598.200000pt;}
.y90{bottom:600.533333pt;}
.y15{bottom:610.200000pt;}
.yb9{bottom:613.200000pt;}
.y3f{bottom:614.533333pt;}
.y6a{bottom:616.866667pt;}
.y8f{bottom:618.866667pt;}
.y14{bottom:625.866667pt;}
.yb8{bottom:628.533333pt;}
.y3e{bottom:632.866667pt;}
.y69{bottom:635.533333pt;}
.y8e{bottom:637.533333pt;}
.y13{bottom:640.866667pt;}
.yb7{bottom:644.533333pt;}
.y3d{bottom:651.533333pt;}
.y68{bottom:653.866667pt;}
.y8d{bottom:655.866667pt;}
.y12{bottom:656.200000pt;}
.yb6{bottom:663.866667pt;}
.y3c{bottom:669.866667pt;}
.y11{bottom:671.533333pt;}
.y67{bottom:673.200000pt;}
.y8c{bottom:674.200000pt;}
.yb5{bottom:683.533333pt;}
.y10{bottom:687.200000pt;}
.y3b{bottom:688.200000pt;}
.y66{bottom:691.893333pt;}
.y8b{bottom:692.560000pt;}
.yf{bottom:702.226667pt;}
.yb4{bottom:702.906667pt;}
.y65{bottom:711.226667pt;}
.y8a{bottom:712.893333pt;}
.yd{bottom:718.226667pt;}
.yb3{bottom:722.226667pt;}
.ye{bottom:722.893333pt;}
.y3a{bottom:725.226667pt;}
.y89{bottom:728.226667pt;}
.y64{bottom:729.560000pt;}
.yb{bottom:733.560000pt;}
.yc{bottom:738.226667pt;}
.yb2{bottom:740.893333pt;}
.y39{bottom:743.560000pt;}
.y63{bottom:747.893333pt;}
.ya{bottom:748.893333pt;}
.yb1{bottom:759.226667pt;}
.y38{bottom:762.226667pt;}
.y62{bottom:767.560000pt;}
.yb0{bottom:778.560000pt;}
.y37{bottom:780.560000pt;}
.y88{bottom:780.893333pt;}
.y61{bottom:785.893333pt;}
.y9{bottom:786.226667pt;}
.yaf{bottom:796.933333pt;}
.y36{bottom:798.933333pt;}
.y87{bottom:799.266667pt;}
.y60{bottom:804.266667pt;}
.yae{bottom:815.600000pt;}
.y35{bottom:817.266667pt;}
.y86{bottom:817.600000pt;}
.y5f{bottom:822.933333pt;}
.y8{bottom:829.266667pt;}
.yad{bottom:833.933333pt;}
.y34{bottom:835.600000pt;}
.y85{bottom:835.933333pt;}
.y5e{bottom:838.933333pt;}
.yac{bottom:853.266667pt;}
.y33{bottom:854.266667pt;}
.y5d{bottom:857.600000pt;}
.yab{bottom:871.600000pt;}
.y7{bottom:872.266667pt;}
.y84{bottom:872.933333pt;}
.y5c{bottom:875.933333pt;}
.yaa{bottom:890.266667pt;}
.y32{bottom:891.266667pt;}
.y6{bottom:892.600000pt;}
.y5b{bottom:894.266667pt;}
.y5{bottom:908.626667pt;}
.y31{bottom:909.626667pt;}
.y5a{bottom:911.960000pt;}
.y1{bottom:994.960000pt;}
.h3{height:13.484375pt;}
.h2{height:18.619792pt;}
.h1f{height:23.066667pt;}
.h4{height:26.968750pt;}
.ha{height:29.588542pt;}
.hf{height:29.791667pt;}
.h9{height:31.365885pt;}
.hb{height:37.239583pt;}
.h8{height:37.630208pt;}
.h11{height:39.000000pt;}
.h1d{height:40.769531pt;}
.he{height:44.687500pt;}
.hc{height:47.682292pt;}
.h10{height:47.812500pt;}
.h6{height:48.255208pt;}
.h16{height:48.923437pt;}
.h19{height:50.558594pt;}
.h12{height:50.846354pt;}
.h5{height:52.375000pt;}
.h1{height:53.080729pt;}
.h1e{height:55.524219pt;}
.hd{height:57.375000pt;}
.h13{height:57.906250pt;}
.h17{height:58.985026pt;}
.h1c{height:60.243750pt;}
.h7{height:67.557292pt;}
.h15{height:101.000000pt;}
.h1b{height:102.000000pt;}
.h1a{height:103.524740pt;}
.h18{height:787.200000pt;}
.h14{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w3{width:209.773333pt;}
.w4{width:210.066667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w9{width:958.000000pt;}
.w6{width:964.666667pt;}
.w8{width:989.000000pt;}
.w7{width:1046.400000pt;}
.w5{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.366667pt;}
.x20{left:9.600000pt;}
.x23{left:37.600000pt;}
.x1d{left:45.366655pt;}
.x1f{left:52.933333pt;}
.x1{left:113.366655pt;}
.x11{left:118.733321pt;}
.x6{left:131.066655pt;}
.x1e{left:137.399988pt;}
.x1a{left:141.733321pt;}
.x4{left:143.399988pt;}
.x1c{left:145.066655pt;}
.x17{left:146.733321pt;}
.x1b{left:148.733321pt;}
.x15{left:150.399988pt;}
.xe{left:154.066655pt;}
.xf{left:161.399988pt;}
.x5{left:163.066655pt;}
.x18{left:184.733321pt;}
.x19{left:204.439988pt;}
.x16{left:209.439988pt;}
.xb{left:296.466655pt;}
.x10{left:305.466655pt;}
.x22{left:319.200000pt;}
.x13{left:323.133333pt;}
.x26{left:348.066667pt;}
.x7{left:356.133321pt;}
.x25{left:400.800000pt;}
.x3{left:408.173321pt;}
.x8{left:466.533321pt;}
.x14{left:532.906667pt;}
.xd{left:560.893321pt;}
.xc{left:689.626642pt;}
.x9{left:693.959976pt;}
.xa{left:698.626655pt;}
.x2{left:702.959988pt;}
.x21{left:725.866667pt;}
.x24{left:765.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; }
  