
    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_4287ae793aa6114c0d9b26a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_075a328b4ab5b05721d07ae9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_06692d2d9dab9c484135429c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_049c89d86bad5d735213b0c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_7c8cc36f6ec627d0698c0930.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_97f3beb5882428f6c6033662.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_3a452fc6cee65d19ccfd76bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_475f9c0f3f4cb56992662ff3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_f9f64e5cefdfd7e4cb725388.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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:-76.320000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls8{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.049760px;}
.lse{letter-spacing:25.308000px;}
.lsb{letter-spacing:28.062720px;}
.ls11{letter-spacing:52.668000px;}
.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;}
}
.wsc{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.431360px;}
.ws1{word-spacing:-17.208000px;}
.ws5{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.246600px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.488000px;}
._8{width:3.336000px;}
._3{width:4.362480px;}
._9{width:5.372400px;}
._4{width:6.878400px;}
._5{width:7.977840px;}
._a{width:9.000000px;}
._c{width:10.260000px;}
._e{width:11.526000px;}
._f{width:14.634000px;}
._7{width:16.081440px;}
._6{width:17.270640px;}
._b{width:18.801360px;}
._11{width:19.980000px;}
._12{width:21.270000px;}
._10{width:22.356000px;}
._16{width:23.466000px;}
._d{width:25.380000px;}
._13{width:26.784000px;}
._14{width:28.080000px;}
._15{width:29.832000px;}
._1a{width:32.022000px;}
._20{width:33.426000px;}
._1e{width:34.884000px;}
._1f{width:36.204000px;}
._1b{width:41.796000px;}
._1c{width:42.930000px;}
._19{width:44.712000px;}
._18{width:46.746000px;}
._17{width:47.862000px;}
._1d{width:55.242000px;}
._2{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs8{font-size:77.904000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y38{bottom:77.790000px;}
.y37{bottom:97.590000px;}
.yad{bottom:108.000000px;}
.y2c{bottom:111.960000px;}
.y36{bottom:117.390000px;}
.y74{bottom:118.080000px;}
.yac{bottom:125.820000px;}
.y2b{bottom:129.780000px;}
.y73{bottom:135.900000px;}
.y35{bottom:137.370000px;}
.yab{bottom:143.640000px;}
.y2a{bottom:147.780000px;}
.y72{bottom:153.720000px;}
.y34{bottom:157.170000px;}
.yaa{bottom:161.460000px;}
.y29{bottom:165.600000px;}
.y71{bottom:171.540000px;}
.y2d{bottom:171.720000px;}
.y33{bottom:176.970000px;}
.ya9{bottom:179.280000px;}
.y28{bottom:183.420000px;}
.y70{bottom:189.360000px;}
.y32{bottom:196.770000px;}
.ya8{bottom:197.280000px;}
.y3a{bottom:200.520000px;}
.y27{bottom:201.240000px;}
.yc7{bottom:209.370000px;}
.ya7{bottom:215.130000px;}
.y6f{bottom:216.210000px;}
.y31{bottom:216.570000px;}
.y26{bottom:219.090000px;}
.y39{bottom:229.710000px;}
.ya6{bottom:232.950000px;}
.y6e{bottom:234.210000px;}
.y30{bottom:236.550000px;}
.yc6{bottom:242.130000px;}
.y25{bottom:245.910000px;}
.ya5{bottom:250.770000px;}
.y6d{bottom:252.030000px;}
.y2f{bottom:256.350000px;}
.yc5{bottom:259.950000px;}
.ya4{bottom:268.590000px;}
.y6c{bottom:269.850000px;}
.y24{bottom:272.910000px;}
.yc4{bottom:277.770000px;}
.ya3{bottom:286.050000px;}
.y2e{bottom:286.635000px;}
.y6b{bottom:287.670000px;}
.yc3{bottom:295.590000px;}
.y23{bottom:299.730000px;}
.y6a{bottom:305.490000px;}
.ya2{bottom:313.410000px;}
.y69{bottom:323.490000px;}
.y22{bottom:326.550000px;}
.ya1{bottom:331.230000px;}
.yc2{bottom:331.410000px;}
.y68{bottom:341.310000px;}
.ya0{bottom:349.050000px;}
.yc1{bottom:349.230000px;}
.y21{bottom:353.370000px;}
.y9f{bottom:366.870000px;}
.yc0{bottom:367.050000px;}
.y67{bottom:368.130000px;}
.y9e{bottom:384.330000px;}
.ybf{bottom:384.870000px;}
.y66{bottom:385.950000px;}
.y20{bottom:389.190000px;}
.ye8{bottom:396.210000px;}
.ybe{bottom:402.690000px;}
.y65{bottom:403.770000px;}
.y1f{bottom:407.010000px;}
.y9d{bottom:411.690000px;}
.ybd{bottom:420.690000px;}
.y64{bottom:421.590000px;}
.ye7{bottom:422.670000px;}
.y1e{bottom:426.630000px;}
.y9c{bottom:429.510000px;}
.y63{bottom:439.590000px;}
.ye6{bottom:442.695000px;}
.y9b{bottom:447.375000px;}
.ybc{bottom:447.555000px;}
.y1d{bottom:450.435000px;}
.y62{bottom:457.455000px;}
.y9a{bottom:465.195000px;}
.ybb{bottom:465.375000px;}
.ye5{bottom:473.835000px;}
.y1c{bottom:474.195000px;}
.y61{bottom:475.275000px;}
.y99{bottom:483.015000px;}
.yba{bottom:483.195000px;}
.ye4{bottom:491.655000px;}
.y60{bottom:495.075000px;}
.y1b{bottom:498.135000px;}
.y98{bottom:500.835000px;}
.yb9{bottom:501.015000px;}
.ye3{bottom:509.475000px;}
.y97{bottom:518.835000px;}
.y1a{bottom:521.715000px;}
.y5f{bottom:527.835000px;}
.ye2{bottom:536.295000px;}
.y96{bottom:536.655000px;}
.yb8{bottom:536.835000px;}
.y5e{bottom:545.835000px;}
.y19{bottom:552.495000px;}
.ye1{bottom:554.115000px;}
.y95{bottom:554.475000px;}
.yb7{bottom:554.655000px;}
.y5d{bottom:563.655000px;}
.ye0{bottom:572.115000px;}
.y94{bottom:572.295000px;}
.yb6{bottom:572.475000px;}
.y5c{bottom:581.475000px;}
.y18{bottom:583.275000px;}
.y93{bottom:590.115000px;}
.yb5{bottom:590.295000px;}
.ydf{bottom:598.935000px;}
.y5b{bottom:599.295000px;}
.y92{bottom:607.755000px;}
.yb4{bottom:608.115000px;}
.yde{bottom:616.755000px;}
.y5a{bottom:617.115000px;}
.yb3{bottom:625.755000px;}
.ydd{bottom:634.575000px;}
.y91{bottom:634.935000px;}
.y59{bottom:635.115000px;}
.y17{bottom:639.795000px;}
.y90{bottom:652.755000px;}
.y58{bottom:652.935000px;}
.ydc{bottom:661.395000px;}
.y16{bottom:670.575000px;}
.y57{bottom:670.755000px;}
.ydb{bottom:679.245000px;}
.y8f{bottom:688.065000px;}
.y56{bottom:688.605000px;}
.yda{bottom:697.245000px;}
.y15{bottom:701.385000px;}
.y55{bottom:706.425000px;}
.y8e{bottom:708.225000px;}
.yd9{bottom:724.065000px;}
.y54{bottom:724.245000px;}
.y14{bottom:724.605000px;}
.y8d{bottom:741.165000px;}
.yd8{bottom:741.885000px;}
.y53{bottom:742.245000px;}
.y8c{bottom:758.985000px;}
.yb2{bottom:759.705000px;}
.y52{bottom:760.065000px;}
.y13{bottom:768.525000px;}
.y8b{bottom:776.805000px;}
.y51{bottom:777.885000px;}
.yd7{bottom:786.525000px;}
.yb1{bottom:786.885000px;}
.y8a{bottom:794.625000px;}
.yd6{bottom:804.345000px;}
.y50{bottom:804.705000px;}
.y89{bottom:812.445000px;}
.y12{bottom:814.965000px;}
.y4f{bottom:822.525000px;}
.y88{bottom:830.445000px;}
.yd5{bottom:831.345000px;}
.y4e{bottom:840.345000px;}
.y87{bottom:848.265000px;}
.yd4{bottom:849.165000px;}
.y4d{bottom:858.345000px;}
.y86{bottom:866.085000px;}
.y11{bottom:866.445000px;}
.yd3{bottom:866.985000px;}
.y4c{bottom:876.165000px;}
.yd2{bottom:884.805000px;}
.y10{bottom:889.125000px;}
.y85{bottom:892.905000px;}
.y4b{bottom:893.985000px;}
.y84{bottom:910.770000px;}
.yf{bottom:910.950000px;}
.yd1{bottom:911.670000px;}
.y4a{bottom:911.850000px;}
.y83{bottom:928.590000px;}
.yb0{bottom:929.310000px;}
.y49{bottom:929.670000px;}
.ye{bottom:932.730000px;}
.y82{bottom:946.590000px;}
.yd0{bottom:947.490000px;}
.y48{bottom:947.670000px;}
.yd{bottom:954.150000px;}
.yaf{bottom:956.670000px;}
.y81{bottom:964.410000px;}
.ycf{bottom:974.310000px;}
.y47{bottom:974.490000px;}
.yc{bottom:976.290000px;}
.y80{bottom:982.230000px;}
.yce{bottom:992.130000px;}
.y46{bottom:992.310000px;}
.y7f{bottom:1009.050000px;}
.y45{bottom:1010.130000px;}
.yb{bottom:1017.510000px;}
.ycd{bottom:1018.950000px;}
.y7e{bottom:1026.870000px;}
.y44{bottom:1027.950000px;}
.ya{bottom:1029.570000px;}
.ycc{bottom:1036.770000px;}
.y9{bottom:1041.630000px;}
.y7d{bottom:1044.870000px;}
.y43{bottom:1045.770000px;}
.y8{bottom:1053.690000px;}
.ycb{bottom:1054.770000px;}
.y7c{bottom:1062.690000px;}
.y42{bottom:1063.770000px;}
.y7{bottom:1068.270000px;}
.yca{bottom:1074.570000px;}
.y7b{bottom:1080.510000px;}
.y41{bottom:1081.590000px;}
.y6{bottom:1093.830000px;}
.y7a{bottom:1098.330000px;}
.y40{bottom:1099.410000px;}
.yc9{bottom:1107.330000px;}
.y79{bottom:1116.150000px;}
.y3f{bottom:1117.230000px;}
.yc8{bottom:1125.150000px;}
.y3e{bottom:1135.050000px;}
.y78{bottom:1142.970000px;}
.y3d{bottom:1153.080000px;}
.y77{bottom:1161.000000px;}
.yae{bottom:1170.540000px;}
.y3c{bottom:1170.900000px;}
.y76{bottom:1178.820000px;}
.y3b{bottom:1190.700000px;}
.y75{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h17{height:39.049805px;}
.h7{height:40.985156px;}
.h14{height:45.549492px;}
.h3{height:52.998047px;}
.h10{height:54.421875px;}
.h19{height:55.503491px;}
.h16{height:56.214844px;}
.h13{height:58.621992px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.h1a{height:70.664062px;}
.hd{height:71.225156px;}
.hc{height:72.326250px;}
.hf{height:72.562500px;}
.h18{height:78.367500px;}
.h12{height:78.512625px;}
.h15{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.hb{height:87.800625px;}
.h6{height:90.703125px;}
.h11{height:313.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x15{left:10.800000px;}
.x14{left:39.240000px;}
.x1{left:45.364500px;}
.x16{left:50.040000px;}
.x6{left:54.000000px;}
.x17{left:81.000000px;}
.xc{left:90.036000px;}
.xe{left:136.296000px;}
.xf{left:138.276000px;}
.x10{left:143.316000px;}
.xd{left:181.830000px;}
.x11{left:208.470000px;}
.x2{left:222.370500px;}
.x3{left:271.330500px;}
.x9{left:283.575000px;}
.xa{left:288.435000px;}
.x7{left:300.495000px;}
.x12{left:314.355000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x13{left:473.505000px;}
.x18{left:500.505000px;}
.x19{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.933120pt;}
.lse{letter-spacing:22.496000pt;}
.lsb{letter-spacing:24.944640pt;}
.ls11{letter-spacing:46.816000pt;}
.wsc{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.272320pt;}
.ws1{word-spacing:-15.296000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.322667pt;}
._8{width:2.965333pt;}
._3{width:3.877760pt;}
._9{width:4.775467pt;}
._4{width:6.114133pt;}
._5{width:7.091413pt;}
._a{width:8.000000pt;}
._c{width:9.120000pt;}
._e{width:10.245333pt;}
._f{width:13.008000pt;}
._7{width:14.294613pt;}
._6{width:15.351680pt;}
._b{width:16.712320pt;}
._11{width:17.760000pt;}
._12{width:18.906667pt;}
._10{width:19.872000pt;}
._16{width:20.858667pt;}
._d{width:22.560000pt;}
._13{width:23.808000pt;}
._14{width:24.960000pt;}
._15{width:26.517333pt;}
._1a{width:28.464000pt;}
._20{width:29.712000pt;}
._1e{width:31.008000pt;}
._1f{width:32.181333pt;}
._1b{width:37.152000pt;}
._1c{width:38.160000pt;}
._19{width:39.744000pt;}
._18{width:41.552000pt;}
._17{width:42.544000pt;}
._1d{width:49.104000pt;}
._2{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs8{font-size:69.248000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y38{bottom:69.146667pt;}
.y37{bottom:86.746667pt;}
.yad{bottom:96.000000pt;}
.y2c{bottom:99.520000pt;}
.y36{bottom:104.346667pt;}
.y74{bottom:104.960000pt;}
.yac{bottom:111.840000pt;}
.y2b{bottom:115.360000pt;}
.y73{bottom:120.800000pt;}
.y35{bottom:122.106667pt;}
.yab{bottom:127.680000pt;}
.y2a{bottom:131.360000pt;}
.y72{bottom:136.640000pt;}
.y34{bottom:139.706667pt;}
.yaa{bottom:143.520000pt;}
.y29{bottom:147.200000pt;}
.y71{bottom:152.480000pt;}
.y2d{bottom:152.640000pt;}
.y33{bottom:157.306667pt;}
.ya9{bottom:159.360000pt;}
.y28{bottom:163.040000pt;}
.y70{bottom:168.320000pt;}
.y32{bottom:174.906667pt;}
.ya8{bottom:175.360000pt;}
.y3a{bottom:178.240000pt;}
.y27{bottom:178.880000pt;}
.yc7{bottom:186.106667pt;}
.ya7{bottom:191.226667pt;}
.y6f{bottom:192.186667pt;}
.y31{bottom:192.506667pt;}
.y26{bottom:194.746667pt;}
.y39{bottom:204.186667pt;}
.ya6{bottom:207.066667pt;}
.y6e{bottom:208.186667pt;}
.y30{bottom:210.266667pt;}
.yc6{bottom:215.226667pt;}
.y25{bottom:218.586667pt;}
.ya5{bottom:222.906667pt;}
.y6d{bottom:224.026667pt;}
.y2f{bottom:227.866667pt;}
.yc5{bottom:231.066667pt;}
.ya4{bottom:238.746667pt;}
.y6c{bottom:239.866667pt;}
.y24{bottom:242.586667pt;}
.yc4{bottom:246.906667pt;}
.ya3{bottom:254.266667pt;}
.y2e{bottom:254.786667pt;}
.y6b{bottom:255.706667pt;}
.yc3{bottom:262.746667pt;}
.y23{bottom:266.426667pt;}
.y6a{bottom:271.546667pt;}
.ya2{bottom:278.586667pt;}
.y69{bottom:287.546667pt;}
.y22{bottom:290.266667pt;}
.ya1{bottom:294.426667pt;}
.yc2{bottom:294.586667pt;}
.y68{bottom:303.386667pt;}
.ya0{bottom:310.266667pt;}
.yc1{bottom:310.426667pt;}
.y21{bottom:314.106667pt;}
.y9f{bottom:326.106667pt;}
.yc0{bottom:326.266667pt;}
.y67{bottom:327.226667pt;}
.y9e{bottom:341.626667pt;}
.ybf{bottom:342.106667pt;}
.y66{bottom:343.066667pt;}
.y20{bottom:345.946667pt;}
.ye8{bottom:352.186667pt;}
.ybe{bottom:357.946667pt;}
.y65{bottom:358.906667pt;}
.y1f{bottom:361.786667pt;}
.y9d{bottom:365.946667pt;}
.ybd{bottom:373.946667pt;}
.y64{bottom:374.746667pt;}
.ye7{bottom:375.706667pt;}
.y1e{bottom:379.226667pt;}
.y9c{bottom:381.786667pt;}
.y63{bottom:390.746667pt;}
.ye6{bottom:393.506667pt;}
.y9b{bottom:397.666667pt;}
.ybc{bottom:397.826667pt;}
.y1d{bottom:400.386667pt;}
.y62{bottom:406.626667pt;}
.y9a{bottom:413.506667pt;}
.ybb{bottom:413.666667pt;}
.ye5{bottom:421.186667pt;}
.y1c{bottom:421.506667pt;}
.y61{bottom:422.466667pt;}
.y99{bottom:429.346667pt;}
.yba{bottom:429.506667pt;}
.ye4{bottom:437.026667pt;}
.y60{bottom:440.066667pt;}
.y1b{bottom:442.786667pt;}
.y98{bottom:445.186667pt;}
.yb9{bottom:445.346667pt;}
.ye3{bottom:452.866667pt;}
.y97{bottom:461.186667pt;}
.y1a{bottom:463.746667pt;}
.y5f{bottom:469.186667pt;}
.ye2{bottom:476.706667pt;}
.y96{bottom:477.026667pt;}
.yb8{bottom:477.186667pt;}
.y5e{bottom:485.186667pt;}
.y19{bottom:491.106667pt;}
.ye1{bottom:492.546667pt;}
.y95{bottom:492.866667pt;}
.yb7{bottom:493.026667pt;}
.y5d{bottom:501.026667pt;}
.ye0{bottom:508.546667pt;}
.y94{bottom:508.706667pt;}
.yb6{bottom:508.866667pt;}
.y5c{bottom:516.866667pt;}
.y18{bottom:518.466667pt;}
.y93{bottom:524.546667pt;}
.yb5{bottom:524.706667pt;}
.ydf{bottom:532.386667pt;}
.y5b{bottom:532.706667pt;}
.y92{bottom:540.226667pt;}
.yb4{bottom:540.546667pt;}
.yde{bottom:548.226667pt;}
.y5a{bottom:548.546667pt;}
.yb3{bottom:556.226667pt;}
.ydd{bottom:564.066667pt;}
.y91{bottom:564.386667pt;}
.y59{bottom:564.546667pt;}
.y17{bottom:568.706667pt;}
.y90{bottom:580.226667pt;}
.y58{bottom:580.386667pt;}
.ydc{bottom:587.906667pt;}
.y16{bottom:596.066667pt;}
.y57{bottom:596.226667pt;}
.ydb{bottom:603.773333pt;}
.y8f{bottom:611.613333pt;}
.y56{bottom:612.093333pt;}
.yda{bottom:619.773333pt;}
.y15{bottom:623.453333pt;}
.y55{bottom:627.933333pt;}
.y8e{bottom:629.533333pt;}
.yd9{bottom:643.613333pt;}
.y54{bottom:643.773333pt;}
.y14{bottom:644.093333pt;}
.y8d{bottom:658.813333pt;}
.yd8{bottom:659.453333pt;}
.y53{bottom:659.773333pt;}
.y8c{bottom:674.653333pt;}
.yb2{bottom:675.293333pt;}
.y52{bottom:675.613333pt;}
.y13{bottom:683.133333pt;}
.y8b{bottom:690.493333pt;}
.y51{bottom:691.453333pt;}
.yd7{bottom:699.133333pt;}
.yb1{bottom:699.453333pt;}
.y8a{bottom:706.333333pt;}
.yd6{bottom:714.973333pt;}
.y50{bottom:715.293333pt;}
.y89{bottom:722.173333pt;}
.y12{bottom:724.413333pt;}
.y4f{bottom:731.133333pt;}
.y88{bottom:738.173333pt;}
.yd5{bottom:738.973333pt;}
.y4e{bottom:746.973333pt;}
.y87{bottom:754.013333pt;}
.yd4{bottom:754.813333pt;}
.y4d{bottom:762.973333pt;}
.y86{bottom:769.853333pt;}
.y11{bottom:770.173333pt;}
.yd3{bottom:770.653333pt;}
.y4c{bottom:778.813333pt;}
.yd2{bottom:786.493333pt;}
.y10{bottom:790.333333pt;}
.y85{bottom:793.693333pt;}
.y4b{bottom:794.653333pt;}
.y84{bottom:809.573333pt;}
.yf{bottom:809.733333pt;}
.yd1{bottom:810.373333pt;}
.y4a{bottom:810.533333pt;}
.y83{bottom:825.413333pt;}
.yb0{bottom:826.053333pt;}
.y49{bottom:826.373333pt;}
.ye{bottom:829.093333pt;}
.y82{bottom:841.413333pt;}
.yd0{bottom:842.213333pt;}
.y48{bottom:842.373333pt;}
.yd{bottom:848.133333pt;}
.yaf{bottom:850.373333pt;}
.y81{bottom:857.253333pt;}
.ycf{bottom:866.053333pt;}
.y47{bottom:866.213333pt;}
.yc{bottom:867.813333pt;}
.y80{bottom:873.093333pt;}
.yce{bottom:881.893333pt;}
.y46{bottom:882.053333pt;}
.y7f{bottom:896.933333pt;}
.y45{bottom:897.893333pt;}
.yb{bottom:904.453333pt;}
.ycd{bottom:905.733333pt;}
.y7e{bottom:912.773333pt;}
.y44{bottom:913.733333pt;}
.ya{bottom:915.173333pt;}
.ycc{bottom:921.573333pt;}
.y9{bottom:925.893333pt;}
.y7d{bottom:928.773333pt;}
.y43{bottom:929.573333pt;}
.y8{bottom:936.613333pt;}
.ycb{bottom:937.573333pt;}
.y7c{bottom:944.613333pt;}
.y42{bottom:945.573333pt;}
.y7{bottom:949.573333pt;}
.yca{bottom:955.173333pt;}
.y7b{bottom:960.453333pt;}
.y41{bottom:961.413333pt;}
.y6{bottom:972.293333pt;}
.y7a{bottom:976.293333pt;}
.y40{bottom:977.253333pt;}
.yc9{bottom:984.293333pt;}
.y79{bottom:992.133333pt;}
.y3f{bottom:993.093333pt;}
.yc8{bottom:1000.133333pt;}
.y3e{bottom:1008.933333pt;}
.y78{bottom:1015.973333pt;}
.y3d{bottom:1024.960000pt;}
.y77{bottom:1032.000000pt;}
.yae{bottom:1040.480000pt;}
.y3c{bottom:1040.800000pt;}
.y76{bottom:1047.840000pt;}
.y3b{bottom:1058.400000pt;}
.y75{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h17{height:34.710938pt;}
.h7{height:36.431250pt;}
.h14{height:40.488438pt;}
.h3{height:47.109375pt;}
.h10{height:48.375000pt;}
.h19{height:49.336436pt;}
.h16{height:49.968750pt;}
.h13{height:52.108438pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.h1a{height:62.812500pt;}
.hd{height:63.311250pt;}
.hc{height:64.290000pt;}
.hf{height:64.500000pt;}
.h18{height:69.660000pt;}
.h12{height:69.789000pt;}
.h15{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.hb{height:78.045000pt;}
.h6{height:80.625000pt;}
.h11{height:279.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x15{left:9.600000pt;}
.x14{left:34.880000pt;}
.x1{left:40.324000pt;}
.x16{left:44.480000pt;}
.x6{left:48.000000pt;}
.x17{left:72.000000pt;}
.xc{left:80.032000pt;}
.xe{left:121.152000pt;}
.xf{left:122.912000pt;}
.x10{left:127.392000pt;}
.xd{left:161.626667pt;}
.x11{left:185.306667pt;}
.x2{left:197.662667pt;}
.x3{left:241.182667pt;}
.x9{left:252.066667pt;}
.xa{left:256.386667pt;}
.x7{left:267.106667pt;}
.x12{left:279.426667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x13{left:420.893333pt;}
.x18{left:444.893333pt;}
.x19{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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