
    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_0bb2be8ea2dfe5b7f669bab3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_a2d6e7620d99d683fceac98b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a22ca66a6412e9df33145520.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_cfe3931d5294dc1b722a5876.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_e280caab82ff69feaef7e635.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.468000px;}
.ls8{letter-spacing:-0.262200px;}
.ls9{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.126000px;}
.lsa{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.305280px;}
.ls2{letter-spacing:49.961280px;}
.lsb{letter-spacing:49.985280px;}
.ls0{letter-spacing:837.498720px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(255,214,121),0 0.015em rgb(255,214,121),0.015em 0 rgb(255,214,121),0 -0.015em  rgb(255,214,121);}
.sc4{text-shadow:-0.015em 0 rgb(240,58,23),0 0.015em rgb(240,58,23),0.015em 0 rgb(240,58,23),0 -0.015em  rgb(240,58,23);}
.sc3{text-shadow:-0.015em 0 rgb(175,13,26),0 0.015em rgb(175,13,26),0.015em 0 rgb(175,13,26),0 -0.015em  rgb(175,13,26);}
.sc6{text-shadow:-0.015em 0 rgb(255,200,61),0 0.015em rgb(255,200,61),0.015em 0 rgb(255,200,61),0 -0.015em  rgb(255,200,61);}
.sc2{text-shadow:-0.015em 0 rgb(242,242,242),0 0.015em rgb(242,242,242),0.015em 0 rgb(242,242,242),0 -0.015em  rgb(242,242,242);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(255,214,121);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(240,58,23);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(175,13,26);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(255,200,61);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(242,242,242);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws3{word-spacing:-15.228000px;}
.ws6{word-spacing:-15.138000px;}
.ws2{word-spacing:-15.012000px;}
.ws4{word-spacing:-14.544000px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-55.188000px;}
._0{margin-left:-1.082160px;}
._4{width:1.666560px;}
._5{width:49.552320px;}
._1{width:2758.889040px;}
._3{width:2908.900320px;}
._2{width:3015.612960px;}
.fc9{color:rgb(236,120,106);}
.fc7{color:rgb(17,85,204);}
.fc8{color:rgb(24,107,113);}
.fc5{color:rgb(255,214,121);}
.fc4{color:rgb(240,58,23);}
.fc3{color:rgb(175,13,26);}
.fc1{color:rgb(110,135,25);}
.fc6{color:rgb(255,200,61);}
.fc2{color:rgb(242,242,242);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y33{bottom:2.880000px;}
.y65{bottom:3.060000px;}
.y52{bottom:3.420000px;}
.y99{bottom:3.465000px;}
.y74{bottom:3.600000px;}
.y1a{bottom:4.320000px;}
.y42{bottom:8.640000px;}
.y19{bottom:17.820000px;}
.y32{bottom:18.360000px;}
.y1c{bottom:18.900000px;}
.yab{bottom:18.930000px;}
.y3c{bottom:18.945000px;}
.y64{bottom:19.080000px;}
.y18{bottom:19.800000px;}
.y51{bottom:22.320000px;}
.y73{bottom:22.494000px;}
.y7c{bottom:22.500000px;}
.y98{bottom:22.545000px;}
.y41{bottom:27.534000px;}
.y31{bottom:33.840000px;}
.y3f{bottom:34.014000px;}
.y78{bottom:35.814000px;}
.y3b{bottom:38.025000px;}
.y63{bottom:38.160000px;}
.yc9{bottom:41.394000px;}
.y7b{bottom:41.400000px;}
.yf9{bottom:41.430000px;}
.y50{bottom:41.445000px;}
.y72{bottom:41.574000px;}
.yd3{bottom:41.580000px;}
.y40{bottom:46.614000px;}
.y38{bottom:47.745000px;}
.y3e{bottom:49.494000px;}
.y30{bottom:49.500000px;}
.y77{bottom:51.294000px;}
.yf6{bottom:54.570000px;}
.y3a{bottom:56.925000px;}
.y62{bottom:57.060000px;}
.yc8{bottom:60.294000px;}
.y8a{bottom:60.300000px;}
.yf8{bottom:60.330000px;}
.y4f{bottom:60.345000px;}
.y71{bottom:60.474000px;}
.yaf{bottom:60.480000px;}
.ydd{bottom:60.510000px;}
.y97{bottom:60.525000px;}
.y37{bottom:63.225000px;}
.ya9{bottom:64.980000px;}
.y2f{bottom:65.010000px;}
.y76{bottom:66.774000px;}
.yf5{bottom:70.050000px;}
.y39{bottom:75.825000px;}
.y61{bottom:75.960000px;}
.yf1{bottom:77.040000px;}
.y36{bottom:78.705000px;}
.y70{bottom:79.374000px;}
.y89{bottom:79.380000px;}
.ydc{bottom:79.410000px;}
.y4e{bottom:79.425000px;}
.ya8{bottom:80.460000px;}
.y2e{bottom:80.490000px;}
.y75{bottom:82.254000px;}
.yf4{bottom:85.710000px;}
.yb5{bottom:89.100000px;}
.yf0{bottom:92.520000px;}
.yd8{bottom:92.730000px;}
.y60{bottom:95.040000px;}
.ya7{bottom:95.940000px;}
.y2d{bottom:95.970000px;}
.y6f{bottom:97.959000px;}
.ye9{bottom:98.274000px;}
.y88{bottom:98.280000px;}
.yf7{bottom:98.310000px;}
.yc7{bottom:98.319000px;}
.y4d{bottom:98.325000px;}
.yb6{bottom:98.460000px;}
.ydb{bottom:98.490000px;}
.yd2{bottom:98.505000px;}
.yf3{bottom:101.190000px;}
.yb4{bottom:104.760000px;}
.ye6{bottom:106.419000px;}
.yef{bottom:108.045000px;}
.yb8{bottom:108.180000px;}
.yd7{bottom:108.210000px;}
.ya6{bottom:111.600000px;}
.y2c{bottom:111.630000px;}
.y6e{bottom:113.439000px;}
.y5f{bottom:113.940000px;}
.yc6{bottom:117.219000px;}
.y4c{bottom:117.225000px;}
.y87{bottom:117.360000px;}
.yda{bottom:117.390000px;}
.ye8{bottom:117.399000px;}
.y96{bottom:117.405000px;}
.yb3{bottom:120.240000px;}
.ye5{bottom:121.899000px;}
.yde{bottom:122.796000px;}
.yae{bottom:123.660000px;}
.yd6{bottom:123.690000px;}
.yee{bottom:123.705000px;}
.yb9{bottom:125.316000px;}
.ya5{bottom:127.080000px;}
.y2b{bottom:127.110000px;}
.yb0{bottom:127.116000px;}
.y3d{bottom:128.016000px;}
.y5e{bottom:133.020000px;}
.y6d{bottom:133.056000px;}
.y86{bottom:136.260000px;}
.yc5{bottom:136.299000px;}
.y4b{bottom:136.305000px;}
.yd9{bottom:136.470000px;}
.yd1{bottom:136.485000px;}
.ye4{bottom:137.379000px;}
.yad{bottom:139.140000px;}
.yed{bottom:139.185000px;}
.yd5{bottom:139.350000px;}
.ya4{bottom:142.560000px;}
.y2a{bottom:142.590000px;}
.y79{bottom:144.036000px;}
.y47{bottom:149.445000px;}
.y5d{bottom:151.950000px;}
.ye3{bottom:153.039000px;}
.y85{bottom:155.160000px;}
.yc4{bottom:155.199000px;}
.y4a{bottom:155.205000px;}
.y95{bottom:155.385000px;}
.ya3{bottom:158.040000px;}
.y29{bottom:158.070000px;}
.y94{bottom:161.685000px;}
.y91{bottom:163.260000px;}
.y6c{bottom:163.470000px;}
.y46{bottom:165.105000px;}
.ye2{bottom:168.519000px;}
.y5c{bottom:170.850000px;}
.y28{bottom:173.730000px;}
.ya2{bottom:173.745000px;}
.y84{bottom:174.240000px;}
.yc3{bottom:174.279000px;}
.y49{bottom:174.285000px;}
.y93{bottom:177.165000px;}
.y90{bottom:178.740000px;}
.y6b{bottom:178.950000px;}
.y45{bottom:180.585000px;}
.ye1{bottom:183.999000px;}
.y9a{bottom:189.030000px;}
.y27{bottom:189.210000px;}
.ya1{bottom:189.225000px;}
.y5b{bottom:189.930000px;}
.yc2{bottom:193.179000px;}
.y48{bottom:193.185000px;}
.yd0{bottom:193.365000px;}
.y6a{bottom:194.430000px;}
.y8f{bottom:194.445000px;}
.y44{bottom:196.065000px;}
.ye0{bottom:199.479000px;}
.y26{bottom:204.690000px;}
.ya0{bottom:204.705000px;}
.y35{bottom:206.670000px;}
.y5a{bottom:208.830000px;}
.y8e{bottom:209.925000px;}
.y69{bottom:210.090000px;}
.yc1{bottom:212.079000px;}
.ye7{bottom:212.259000px;}
.y83{bottom:212.265000px;}
.ydf{bottom:215.139000px;}
.y25{bottom:220.170000px;}
.y9f{bottom:220.185000px;}
.y92{bottom:221.070000px;}
.y8d{bottom:225.405000px;}
.y68{bottom:225.570000px;}
.y59{bottom:227.910000px;}
.yc0{bottom:231.159000px;}
.y82{bottom:231.165000px;}
.ycf{bottom:231.345000px;}
.y9e{bottom:235.665000px;}
.y24{bottom:235.830000px;}
.yac{bottom:238.575000px;}
.y8c{bottom:240.885000px;}
.y67{bottom:241.050000px;}
.y58{bottom:246.810000px;}
.ycc{bottom:247.899000px;}
.ybf{bottom:250.059000px;}
.y81{bottom:250.065000px;}
.yce{bottom:250.245000px;}
.y23{bottom:251.310000px;}
.y66{bottom:256.530000px;}
.y8b{bottom:256.545000px;}
.ycb{bottom:263.379000px;}
.y57{bottom:265.710000px;}
.y22{bottom:266.835000px;}
.ybe{bottom:269.139000px;}
.y80{bottom:269.145000px;}
.y7f{bottom:272.025000px;}
.y55{bottom:272.190000px;}
.y53{bottom:275.475000px;}
.yca{bottom:278.859000px;}
.y21{bottom:282.315000px;}
.y56{bottom:284.790000px;}
.y7e{bottom:287.505000px;}
.y54{bottom:287.670000px;}
.ybd{bottom:288.039000px;}
.ybb{bottom:294.339000px;}
.y20{bottom:297.975000px;}
.ybc{bottom:306.969000px;}
.yba{bottom:309.849000px;}
.y1f{bottom:313.455000px;}
.y34{bottom:314.535000px;}
.yea{bottom:318.495000px;}
.y1e{bottom:328.935000px;}
.yfa{bottom:356.475000px;}
.y1d{bottom:362.595000px;}
.yd4{bottom:366.915000px;}
.yf2{bottom:388.515000px;}
.yaa{bottom:406.875000px;}
.y7d{bottom:427.425000px;}
.ye{bottom:435.165000px;}
.y9d{bottom:454.965000px;}
.yd{bottom:461.265000px;}
.yb7{bottom:464.325000px;}
.yc{bottom:490.245000px;}
.yec{bottom:518.865000px;}
.yb{bottom:519.585000px;}
.ycd{bottom:535.245000px;}
.ya{bottom:548.925000px;}
.y9{bottom:569.805000px;}
.y8{bottom:587.805000px;}
.y43{bottom:592.305000px;}
.y9b{bottom:600.945000px;}
.y7{bottom:606.705000px;}
.y16{bottom:622.770000px;}
.y6{bottom:628.530000px;}
.yb2{bottom:632.670000px;}
.y15{bottom:644.730000px;}
.y5{bottom:650.310000px;}
.y14{bottom:666.510000px;}
.y4{bottom:672.090000px;}
.yeb{bottom:687.210000px;}
.y13{bottom:688.290000px;}
.y3{bottom:694.050000px;}
.y12{bottom:710.070000px;}
.y2{bottom:715.830000px;}
.y9c{bottom:719.790000px;}
.y1b{bottom:720.690000px;}
.y11{bottom:731.850000px;}
.y7a{bottom:744.090000px;}
.y1{bottom:751.830000px;}
.y10{bottom:753.810000px;}
.y17{bottom:768.570000px;}
.yb1{bottom:782.070000px;}
.yf{bottom:787.470000px;}
.h13{height:15.480000px;}
.h18{height:18.900000px;}
.h6{height:31.500000px;}
.h15{height:31.536000px;}
.h5{height:32.400000px;}
.h8{height:39.471680px;}
.he{height:48.418594px;}
.hb{height:53.868164px;}
.h3{height:56.320312px;}
.h10{height:56.880000px;}
.ha{height:62.100000px;}
.h2{height:69.086250px;}
.h9{height:91.296000px;}
.h17{height:94.896000px;}
.h4{height:99.874688px;}
.h1e{height:113.760000px;}
.h20{height:113.796000px;}
.h1{height:125.406562px;}
.hf{height:126.036000px;}
.h19{height:132.840000px;}
.h16{height:151.740000px;}
.h1f{height:151.770000px;}
.h1c{height:151.950000px;}
.h12{height:189.750000px;}
.hc{height:208.650000px;}
.h1d{height:227.730000px;}
.h14{height:248.250000px;}
.h1b{height:265.710000px;}
.h11{height:300.090000px;}
.hd{height:300.270000px;}
.h1a{height:322.455000px;}
.h7{height:341.535000px;}
.h0{height:918.000000px;}
.w3{width:51.480000px;}
.w2{width:51.516000px;}
.wa{width:114.480000px;}
.w5{width:133.380000px;}
.w6{width:162.750000px;}
.wb{width:187.590000px;}
.w9{width:558.795000px;}
.w4{width:564.375000px;}
.w8{width:617.295000px;}
.w7{width:916.665000px;}
.wc{width:969.630000px;}
.w1{width:1187.999982px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x6{left:6.840000px;}
.xa{left:25.776000px;}
.x13{left:33.660000px;}
.x14{left:60.660000px;}
.x16{left:75.420000px;}
.xe{left:94.500000px;}
.x1{left:107.999982px;}
.x5{left:109.440000px;}
.x2{left:124.559982px;}
.x3{left:135.035982px;}
.x4{left:162.029982px;}
.x7{left:215.310000px;}
.x12{left:338.445000px;}
.xc{left:381.465000px;}
.xb{left:410.265000px;}
.x11{left:436.755000px;}
.x15{left:551.955000px;}
.xd{left:557.535000px;}
.xf{left:775.545000px;}
.x8{left:781.305000px;}
.x10{left:891.465000px;}
.x9{left:916.305000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.416000pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.112000pt;}
.lsa{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.271360pt;}
.ls2{letter-spacing:44.410027pt;}
.lsb{letter-spacing:44.431360pt;}
.ls0{letter-spacing:744.443307pt;}
.ws1{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws3{word-spacing:-13.536000pt;}
.ws6{word-spacing:-13.456000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws4{word-spacing:-12.928000pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-49.056000pt;}
._0{margin-left:-0.961920pt;}
._4{width:1.481387pt;}
._5{width:44.046507pt;}
._1{width:2452.345813pt;}
._3{width:2585.689173pt;}
._2{width:2680.544853pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.560000pt;}
.y65{bottom:2.720000pt;}
.y52{bottom:3.040000pt;}
.y99{bottom:3.080000pt;}
.y74{bottom:3.200000pt;}
.y1a{bottom:3.840000pt;}
.y42{bottom:7.680000pt;}
.y19{bottom:15.840000pt;}
.y32{bottom:16.320000pt;}
.y1c{bottom:16.800000pt;}
.yab{bottom:16.826667pt;}
.y3c{bottom:16.840000pt;}
.y64{bottom:16.960000pt;}
.y18{bottom:17.600000pt;}
.y51{bottom:19.840000pt;}
.y73{bottom:19.994667pt;}
.y7c{bottom:20.000000pt;}
.y98{bottom:20.040000pt;}
.y41{bottom:24.474667pt;}
.y31{bottom:30.080000pt;}
.y3f{bottom:30.234667pt;}
.y78{bottom:31.834667pt;}
.y3b{bottom:33.800000pt;}
.y63{bottom:33.920000pt;}
.yc9{bottom:36.794667pt;}
.y7b{bottom:36.800000pt;}
.yf9{bottom:36.826667pt;}
.y50{bottom:36.840000pt;}
.y72{bottom:36.954667pt;}
.yd3{bottom:36.960000pt;}
.y40{bottom:41.434667pt;}
.y38{bottom:42.440000pt;}
.y3e{bottom:43.994667pt;}
.y30{bottom:44.000000pt;}
.y77{bottom:45.594667pt;}
.yf6{bottom:48.506667pt;}
.y3a{bottom:50.600000pt;}
.y62{bottom:50.720000pt;}
.yc8{bottom:53.594667pt;}
.y8a{bottom:53.600000pt;}
.yf8{bottom:53.626667pt;}
.y4f{bottom:53.640000pt;}
.y71{bottom:53.754667pt;}
.yaf{bottom:53.760000pt;}
.ydd{bottom:53.786667pt;}
.y97{bottom:53.800000pt;}
.y37{bottom:56.200000pt;}
.ya9{bottom:57.760000pt;}
.y2f{bottom:57.786667pt;}
.y76{bottom:59.354667pt;}
.yf5{bottom:62.266667pt;}
.y39{bottom:67.400000pt;}
.y61{bottom:67.520000pt;}
.yf1{bottom:68.480000pt;}
.y36{bottom:69.960000pt;}
.y70{bottom:70.554667pt;}
.y89{bottom:70.560000pt;}
.ydc{bottom:70.586667pt;}
.y4e{bottom:70.600000pt;}
.ya8{bottom:71.520000pt;}
.y2e{bottom:71.546667pt;}
.y75{bottom:73.114667pt;}
.yf4{bottom:76.186667pt;}
.yb5{bottom:79.200000pt;}
.yf0{bottom:82.240000pt;}
.yd8{bottom:82.426667pt;}
.y60{bottom:84.480000pt;}
.ya7{bottom:85.280000pt;}
.y2d{bottom:85.306667pt;}
.y6f{bottom:87.074667pt;}
.ye9{bottom:87.354667pt;}
.y88{bottom:87.360000pt;}
.yf7{bottom:87.386667pt;}
.yc7{bottom:87.394667pt;}
.y4d{bottom:87.400000pt;}
.yb6{bottom:87.520000pt;}
.ydb{bottom:87.546667pt;}
.yd2{bottom:87.560000pt;}
.yf3{bottom:89.946667pt;}
.yb4{bottom:93.120000pt;}
.ye6{bottom:94.594667pt;}
.yef{bottom:96.040000pt;}
.yb8{bottom:96.160000pt;}
.yd7{bottom:96.186667pt;}
.ya6{bottom:99.200000pt;}
.y2c{bottom:99.226667pt;}
.y6e{bottom:100.834667pt;}
.y5f{bottom:101.280000pt;}
.yc6{bottom:104.194667pt;}
.y4c{bottom:104.200000pt;}
.y87{bottom:104.320000pt;}
.yda{bottom:104.346667pt;}
.ye8{bottom:104.354667pt;}
.y96{bottom:104.360000pt;}
.yb3{bottom:106.880000pt;}
.ye5{bottom:108.354667pt;}
.yde{bottom:109.152000pt;}
.yae{bottom:109.920000pt;}
.yd6{bottom:109.946667pt;}
.yee{bottom:109.960000pt;}
.yb9{bottom:111.392000pt;}
.ya5{bottom:112.960000pt;}
.y2b{bottom:112.986667pt;}
.yb0{bottom:112.992000pt;}
.y3d{bottom:113.792000pt;}
.y5e{bottom:118.240000pt;}
.y6d{bottom:118.272000pt;}
.y86{bottom:121.120000pt;}
.yc5{bottom:121.154667pt;}
.y4b{bottom:121.160000pt;}
.yd9{bottom:121.306667pt;}
.yd1{bottom:121.320000pt;}
.ye4{bottom:122.114667pt;}
.yad{bottom:123.680000pt;}
.yed{bottom:123.720000pt;}
.yd5{bottom:123.866667pt;}
.ya4{bottom:126.720000pt;}
.y2a{bottom:126.746667pt;}
.y79{bottom:128.032000pt;}
.y47{bottom:132.840000pt;}
.y5d{bottom:135.066667pt;}
.ye3{bottom:136.034667pt;}
.y85{bottom:137.920000pt;}
.yc4{bottom:137.954667pt;}
.y4a{bottom:137.960000pt;}
.y95{bottom:138.120000pt;}
.ya3{bottom:140.480000pt;}
.y29{bottom:140.506667pt;}
.y94{bottom:143.720000pt;}
.y91{bottom:145.120000pt;}
.y6c{bottom:145.306667pt;}
.y46{bottom:146.760000pt;}
.ye2{bottom:149.794667pt;}
.y5c{bottom:151.866667pt;}
.y28{bottom:154.426667pt;}
.ya2{bottom:154.440000pt;}
.y84{bottom:154.880000pt;}
.yc3{bottom:154.914667pt;}
.y49{bottom:154.920000pt;}
.y93{bottom:157.480000pt;}
.y90{bottom:158.880000pt;}
.y6b{bottom:159.066667pt;}
.y45{bottom:160.520000pt;}
.ye1{bottom:163.554667pt;}
.y9a{bottom:168.026667pt;}
.y27{bottom:168.186667pt;}
.ya1{bottom:168.200000pt;}
.y5b{bottom:168.826667pt;}
.yc2{bottom:171.714667pt;}
.y48{bottom:171.720000pt;}
.yd0{bottom:171.880000pt;}
.y6a{bottom:172.826667pt;}
.y8f{bottom:172.840000pt;}
.y44{bottom:174.280000pt;}
.ye0{bottom:177.314667pt;}
.y26{bottom:181.946667pt;}
.ya0{bottom:181.960000pt;}
.y35{bottom:183.706667pt;}
.y5a{bottom:185.626667pt;}
.y8e{bottom:186.600000pt;}
.y69{bottom:186.746667pt;}
.yc1{bottom:188.514667pt;}
.ye7{bottom:188.674667pt;}
.y83{bottom:188.680000pt;}
.ydf{bottom:191.234667pt;}
.y25{bottom:195.706667pt;}
.y9f{bottom:195.720000pt;}
.y92{bottom:196.506667pt;}
.y8d{bottom:200.360000pt;}
.y68{bottom:200.506667pt;}
.y59{bottom:202.586667pt;}
.yc0{bottom:205.474667pt;}
.y82{bottom:205.480000pt;}
.ycf{bottom:205.640000pt;}
.y9e{bottom:209.480000pt;}
.y24{bottom:209.626667pt;}
.yac{bottom:212.066667pt;}
.y8c{bottom:214.120000pt;}
.y67{bottom:214.266667pt;}
.y58{bottom:219.386667pt;}
.ycc{bottom:220.354667pt;}
.ybf{bottom:222.274667pt;}
.y81{bottom:222.280000pt;}
.yce{bottom:222.440000pt;}
.y23{bottom:223.386667pt;}
.y66{bottom:228.026667pt;}
.y8b{bottom:228.040000pt;}
.ycb{bottom:234.114667pt;}
.y57{bottom:236.186667pt;}
.y22{bottom:237.186667pt;}
.ybe{bottom:239.234667pt;}
.y80{bottom:239.240000pt;}
.y7f{bottom:241.800000pt;}
.y55{bottom:241.946667pt;}
.y53{bottom:244.866667pt;}
.yca{bottom:247.874667pt;}
.y21{bottom:250.946667pt;}
.y56{bottom:253.146667pt;}
.y7e{bottom:255.560000pt;}
.y54{bottom:255.706667pt;}
.ybd{bottom:256.034667pt;}
.ybb{bottom:261.634667pt;}
.y20{bottom:264.866667pt;}
.ybc{bottom:272.861333pt;}
.yba{bottom:275.421333pt;}
.y1f{bottom:278.626667pt;}
.y34{bottom:279.586667pt;}
.yea{bottom:283.106667pt;}
.y1e{bottom:292.386667pt;}
.yfa{bottom:316.866667pt;}
.y1d{bottom:322.306667pt;}
.yd4{bottom:326.146667pt;}
.yf2{bottom:345.346667pt;}
.yaa{bottom:361.666667pt;}
.y7d{bottom:379.933333pt;}
.ye{bottom:386.813333pt;}
.y9d{bottom:404.413333pt;}
.yd{bottom:410.013333pt;}
.yb7{bottom:412.733333pt;}
.yc{bottom:435.773333pt;}
.yec{bottom:461.213333pt;}
.yb{bottom:461.853333pt;}
.ycd{bottom:475.773333pt;}
.ya{bottom:487.933333pt;}
.y9{bottom:506.493333pt;}
.y8{bottom:522.493333pt;}
.y43{bottom:526.493333pt;}
.y9b{bottom:534.173333pt;}
.y7{bottom:539.293333pt;}
.y16{bottom:553.573333pt;}
.y6{bottom:558.693333pt;}
.yb2{bottom:562.373333pt;}
.y15{bottom:573.093333pt;}
.y5{bottom:578.053333pt;}
.y14{bottom:592.453333pt;}
.y4{bottom:597.413333pt;}
.yeb{bottom:610.853333pt;}
.y13{bottom:611.813333pt;}
.y3{bottom:616.933333pt;}
.y12{bottom:631.173333pt;}
.y2{bottom:636.293333pt;}
.y9c{bottom:639.813333pt;}
.y1b{bottom:640.613333pt;}
.y11{bottom:650.533333pt;}
.y7a{bottom:661.413333pt;}
.y1{bottom:668.293333pt;}
.y10{bottom:670.053333pt;}
.y17{bottom:683.173333pt;}
.yb1{bottom:695.173333pt;}
.yf{bottom:699.973333pt;}
.h13{height:13.760000pt;}
.h18{height:16.800000pt;}
.h6{height:28.000000pt;}
.h15{height:28.032000pt;}
.h5{height:28.800000pt;}
.h8{height:35.085938pt;}
.he{height:43.038750pt;}
.hb{height:47.882812pt;}
.h3{height:50.062500pt;}
.h10{height:50.560000pt;}
.ha{height:55.200000pt;}
.h2{height:61.410000pt;}
.h9{height:81.152000pt;}
.h17{height:84.352000pt;}
.h4{height:88.777500pt;}
.h1e{height:101.120000pt;}
.h20{height:101.152000pt;}
.h1{height:111.472500pt;}
.hf{height:112.032000pt;}
.h19{height:118.080000pt;}
.h16{height:134.880000pt;}
.h1f{height:134.906667pt;}
.h1c{height:135.066667pt;}
.h12{height:168.666667pt;}
.hc{height:185.466667pt;}
.h1d{height:202.426667pt;}
.h14{height:220.666667pt;}
.h1b{height:236.186667pt;}
.h11{height:266.746667pt;}
.hd{height:266.906667pt;}
.h1a{height:286.626667pt;}
.h7{height:303.586667pt;}
.h0{height:816.000000pt;}
.w3{width:45.760000pt;}
.w2{width:45.792000pt;}
.wa{width:101.760000pt;}
.w5{width:118.560000pt;}
.w6{width:144.666667pt;}
.wb{width:166.746667pt;}
.w9{width:496.706667pt;}
.w4{width:501.666667pt;}
.w8{width:548.706667pt;}
.w7{width:814.813333pt;}
.wc{width:861.893333pt;}
.w1{width:1055.999984pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.080000pt;}
.xa{left:22.912000pt;}
.x13{left:29.920000pt;}
.x14{left:53.920000pt;}
.x16{left:67.040000pt;}
.xe{left:84.000000pt;}
.x1{left:95.999984pt;}
.x5{left:97.280000pt;}
.x2{left:110.719984pt;}
.x3{left:120.031984pt;}
.x4{left:144.026651pt;}
.x7{left:191.386667pt;}
.x12{left:300.840000pt;}
.xc{left:339.080000pt;}
.xb{left:364.680000pt;}
.x11{left:388.226667pt;}
.x15{left:490.626667pt;}
.xd{left:495.586667pt;}
.xf{left:689.373333pt;}
.x8{left:694.493333pt;}
.x10{left:792.413333pt;}
.x9{left:814.493333pt;}
}




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