
    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_61a3fc3550772df8e76677fa.woff')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_f53966b0462b39086709cbb6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_3f8e252b51e07bb33c97a5bb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_2081c292093ba79adc938d39.woff')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_3ae65c0bee47b31a3d253b0d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a4ead222c02ce4a06d6811da.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_4f8866ebff00700866d12efe.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_41b20507b4ef2b34a1be58a4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9d168d4e695fa39654875e82.woff')format("woff");}.ff9{font-family:ff9;line-height:0.675293;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_3d7cb871d48d9d817274dfbe.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b836495331b8f04a1e2b32c2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.676758;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_6a0be49b4bcb32a49f6a002d.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b541c49434a6d4827e699c7a.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ae019c07f628c0d49feac5f6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.766113;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_c8a00710875eef096f83fba5.woff')format("woff");}.fff{font-family:fff;line-height:0.718750;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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-5.060736px;}
.ls4{letter-spacing:-5.054112px;}
.lsb{letter-spacing:-3.875040px;}
.lsa{letter-spacing:-3.802176px;}
.ls1{letter-spacing:-0.396000px;}
.ls9{letter-spacing:-0.238464px;}
.ls8{letter-spacing:-0.198720px;}
.ls2{letter-spacing:-0.158976px;}
.ls3{letter-spacing:-0.125856px;}
.ls6{letter-spacing:-0.119232px;}
.ls5{letter-spacing:-0.079488px;}
.ls7{letter-spacing:-0.039744px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.139680px;}
.sc_{text-shadow:none;}
.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;}
.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:-63.000000px;}
.ws0{word-spacing:-28.836000px;}
.ws3{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.374976px;}
.ws7{word-spacing:-18.335232px;}
.wsa{word-spacing:-18.295488px;}
.ws4{word-spacing:-18.288864px;}
.ws5{word-spacing:-18.255744px;}
.ws9{word-spacing:-18.216000px;}
.ws8{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-11.952000px;}
._5{margin-left:-8.514000px;}
._7{margin-left:-6.768000px;}
._4{margin-left:-4.464000px;}
._2{margin-left:-3.456000px;}
._0{margin-left:-1.584000px;}
._1{width:1.728000px;}
._3{width:2.820000px;}
._9{width:4.009536px;}
._8{width:5.124816px;}
.fc4{color:transparent;}
.fc3{color:rgb(238,123,8);}
.fc5{color:rgb(33,33,33);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(89,89,89);}
.fs7{font-size:41.760000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:64.941178px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y4{bottom:-0.375000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:5.040000px;}
.y1d{bottom:6.540000px;}
.y1c{bottom:52.500000px;}
.y1a{bottom:54.000000px;}
.y3{bottom:57.750000px;}
.y19{bottom:59.040000px;}
.y7f{bottom:114.480000px;}
.y4e{bottom:117.000000px;}
.y4d{bottom:136.080000px;}
.y7e{bottom:151.200000px;}
.y4b{bottom:164.160000px;}
.y4c{bottom:164.410560px;}
.y4a{bottom:184.320000px;}
.y7d{bottom:188.280000px;}
.y95{bottom:189.360000px;}
.y49{bottom:203.400000px;}
.y7c{bottom:207.360000px;}
.y94{bottom:217.440000px;}
.y48{bottom:222.120000px;}
.y7b{bottom:226.440000px;}
.y47{bottom:241.200000px;}
.y93{bottom:245.520000px;}
.y7a{bottom:245.880000px;}
.y46{bottom:260.280000px;}
.y79{bottom:264.600000px;}
.y92{bottom:273.240000px;}
.y45{bottom:279.000000px;}
.y78{bottom:283.680000px;}
.y44{bottom:298.080000px;}
.y91{bottom:301.320000px;}
.y77{bottom:302.760000px;}
.y88{bottom:304.200000px;}
.y9a{bottom:311.760000px;}
.y43{bottom:317.160000px;}
.y76{bottom:321.480000px;}
.y90{bottom:329.400000px;}
.y87{bottom:332.280000px;}
.y18{bottom:334.245000px;}
.y99{bottom:339.480000px;}
.y75{bottom:340.560000px;}
.y42{bottom:344.880000px;}
.y8f{bottom:348.480000px;}
.y74{bottom:359.640000px;}
.y86{bottom:360.360000px;}
.y41{bottom:363.960000px;}
.y8e{bottom:367.200000px;}
.y98{bottom:367.560000px;}
.y17{bottom:373.245000px;}
.y73{bottom:378.720000px;}
.y40{bottom:383.040000px;}
.y8d{bottom:386.280000px;}
.y97{bottom:386.640000px;}
.y85{bottom:388.080000px;}
.y72{bottom:397.440000px;}
.y3f{bottom:402.120000px;}
.y16{bottom:403.620000px;}
.y8c{bottom:405.360000px;}
.y96{bottom:405.720000px;}
.y84{bottom:416.160000px;}
.y71{bottom:416.520000px;}
.y3e{bottom:420.840000px;}
.y15{bottom:423.900000px;}
.y8b{bottom:424.800000px;}
.y70{bottom:435.600000px;}
.y3d{bottom:439.920000px;}
.y8a{bottom:443.520000px;}
.y83{bottom:444.240000px;}
.y14{bottom:449.400000px;}
.y6f{bottom:454.320000px;}
.y3c{bottom:459.000000px;}
.y89{bottom:471.600000px;}
.y82{bottom:471.960000px;}
.y6e{bottom:473.400000px;}
.y13{bottom:475.275000px;}
.y3b{bottom:477.720000px;}
.y81{bottom:491.040000px;}
.y6d{bottom:492.480000px;}
.y3a{bottom:496.800000px;}
.y12{bottom:500.775000px;}
.y80{bottom:510.120000px;}
.y6c{bottom:511.560000px;}
.y39{bottom:524.880000px;}
.y11{bottom:526.275000px;}
.y6b{bottom:530.280000px;}
.y38{bottom:543.960000px;}
.y6a{bottom:549.360000px;}
.y10{bottom:556.320000px;}
.y37{bottom:562.680000px;}
.y69{bottom:568.440000px;}
.y68{bottom:587.160000px;}
.y36{bottom:590.760000px;}
.yf{bottom:600.195000px;}
.y67{bottom:606.240000px;}
.y35{bottom:609.840000px;}
.y66{bottom:625.320000px;}
.y34{bottom:628.560000px;}
.y65{bottom:644.040000px;}
.ye{bottom:644.070000px;}
.y33{bottom:647.640000px;}
.y64{bottom:663.120000px;}
.y32{bottom:666.720000px;}
.y63{bottom:682.200000px;}
.y31{bottom:685.440000px;}
.yd{bottom:687.975000px;}
.y30{bottom:704.520000px;}
.y62{bottom:709.920000px;}
.y2f{bottom:723.600000px;}
.yc{bottom:731.850000px;}
.y2e{bottom:742.680000px;}
.y61{bottom:747.000000px;}
.y2d{bottom:761.400000px;}
.y60{bottom:766.080000px;}
.yb{bottom:776.100000px;}
.y2c{bottom:780.480000px;}
.y5f{bottom:785.160000px;}
.y2b{bottom:799.560000px;}
.y5e{bottom:803.880000px;}
.y2a{bottom:818.280000px;}
.ya{bottom:820.005000px;}
.y5d{bottom:822.960000px;}
.y28{bottom:837.360000px;}
.y29{bottom:837.610596px;}
.y5c{bottom:842.040000px;}
.y27{bottom:857.520000px;}
.y5b{bottom:860.760000px;}
.y9{bottom:863.880000px;}
.y26{bottom:876.600000px;}
.y5a{bottom:879.840000px;}
.y25{bottom:895.680000px;}
.y59{bottom:898.920000px;}
.y8{bottom:907.800000px;}
.y24{bottom:923.400000px;}
.y58{bottom:926.640000px;}
.y57{bottom:945.720000px;}
.y23{bottom:951.480000px;}
.y7{bottom:960.300000px;}
.y56{bottom:964.800000px;}
.y22{bottom:979.200000px;}
.y55{bottom:984.960000px;}
.y6{bottom:994.050000px;}
.y54{bottom:1004.040000px;}
.y21{bottom:1007.280000px;}
.y5{bottom:1021.830000px;}
.y52{bottom:1024.200000px;}
.y53{bottom:1024.450596px;}
.y1f{bottom:1026.360000px;}
.y20{bottom:1026.610596px;}
.y50{bottom:1044.360000px;}
.y51{bottom:1044.610596px;}
.y1e{bottom:1055.520000px;}
.y2{bottom:1058.955000px;}
.y4f{bottom:1064.520000px;}
.y1{bottom:1073.205000px;}
.h8{height:22.500000px;}
.h9{height:24.000000px;}
.hb{height:43.949449px;}
.h1{height:44.179688px;}
.h5{height:45.865723px;}
.h6{height:46.050293px;}
.h7{height:47.988281px;}
.ha{height:48.224531px;}
.hc{height:48.256875px;}
.hd{height:57.375000px;}
.h4{height:72.597656px;}
.h3{height:124.453125px;}
.h2{height:125.015625px;}
.h0{height:1188.000000px;}
.w2{width:12.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:1.320000px;}
.x14{left:10.934880px;}
.x5{left:60.787486px;}
.x7{left:99.037486px;}
.x6{left:108.037486px;}
.xb{left:121.912486px;}
.xd{left:130.537486px;}
.x1b{left:134.639640px;}
.x16{left:143.634888px;}
.x1c{left:162.000000px;}
.xc{left:177.074986px;}
.xf{left:207.449986px;}
.x15{left:216.942264px;}
.x23{left:227.880000px;}
.x9{left:231.494986px;}
.x24{left:234.650376px;}
.x19{left:289.085436px;}
.xe{left:304.994986px;}
.x11{left:315.524986px;}
.x1a{left:326.162124px;}
.xa{left:363.524986px;}
.x12{left:453.000000px;}
.x10{left:459.194986px;}
.x8{left:462.569986px;}
.x1d{left:474.120000px;}
.x1e{left:480.877560px;}
.x25{left:502.560000px;}
.x26{left:509.333400px;}
.x17{left:530.640000px;}
.x18{left:537.564240px;}
.x1{left:609.254986px;}
.x3{left:652.004986px;}
.x21{left:685.800000px;}
.x22{left:692.742960px;}
.x1f{left:714.600000px;}
.x20{left:721.706400px;}
.x2{left:810.344986px;}
.x4{left:949.169986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-4.498432pt;}
.ls4{letter-spacing:-4.492544pt;}
.lsb{letter-spacing:-3.444480pt;}
.lsa{letter-spacing:-3.379712pt;}
.ls1{letter-spacing:-0.352000pt;}
.ls9{letter-spacing:-0.211968pt;}
.ls8{letter-spacing:-0.176640pt;}
.ls2{letter-spacing:-0.141312pt;}
.ls3{letter-spacing:-0.111872pt;}
.ls6{letter-spacing:-0.105984pt;}
.ls5{letter-spacing:-0.070656pt;}
.ls7{letter-spacing:-0.035328pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.124160pt;}
.ws1{word-spacing:-56.000000pt;}
.ws0{word-spacing:-25.632000pt;}
.ws3{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.333312pt;}
.ws7{word-spacing:-16.297984pt;}
.wsa{word-spacing:-16.262656pt;}
.ws4{word-spacing:-16.256768pt;}
.ws5{word-spacing:-16.227328pt;}
.ws9{word-spacing:-16.192000pt;}
.ws8{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-10.624000pt;}
._5{margin-left:-7.568000pt;}
._7{margin-left:-6.016000pt;}
._4{margin-left:-3.968000pt;}
._2{margin-left:-3.072000pt;}
._0{margin-left:-1.408000pt;}
._1{width:1.536000pt;}
._3{width:2.506667pt;}
._9{width:3.564032pt;}
._8{width:4.555392pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:57.725491pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y4{bottom:-0.333333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:4.480000pt;}
.y1d{bottom:5.813333pt;}
.y1c{bottom:46.666667pt;}
.y1a{bottom:48.000000pt;}
.y3{bottom:51.333333pt;}
.y19{bottom:52.480000pt;}
.y7f{bottom:101.760000pt;}
.y4e{bottom:104.000000pt;}
.y4d{bottom:120.960000pt;}
.y7e{bottom:134.400000pt;}
.y4b{bottom:145.920000pt;}
.y4c{bottom:146.142720pt;}
.y4a{bottom:163.840000pt;}
.y7d{bottom:167.360000pt;}
.y95{bottom:168.320000pt;}
.y49{bottom:180.800000pt;}
.y7c{bottom:184.320000pt;}
.y94{bottom:193.280000pt;}
.y48{bottom:197.440000pt;}
.y7b{bottom:201.280000pt;}
.y47{bottom:214.400000pt;}
.y93{bottom:218.240000pt;}
.y7a{bottom:218.560000pt;}
.y46{bottom:231.360000pt;}
.y79{bottom:235.200000pt;}
.y92{bottom:242.880000pt;}
.y45{bottom:248.000000pt;}
.y78{bottom:252.160000pt;}
.y44{bottom:264.960000pt;}
.y91{bottom:267.840000pt;}
.y77{bottom:269.120000pt;}
.y88{bottom:270.400000pt;}
.y9a{bottom:277.120000pt;}
.y43{bottom:281.920000pt;}
.y76{bottom:285.760000pt;}
.y90{bottom:292.800000pt;}
.y87{bottom:295.360000pt;}
.y18{bottom:297.106667pt;}
.y99{bottom:301.760000pt;}
.y75{bottom:302.720000pt;}
.y42{bottom:306.560000pt;}
.y8f{bottom:309.760000pt;}
.y74{bottom:319.680000pt;}
.y86{bottom:320.320000pt;}
.y41{bottom:323.520000pt;}
.y8e{bottom:326.400000pt;}
.y98{bottom:326.720000pt;}
.y17{bottom:331.773333pt;}
.y73{bottom:336.640000pt;}
.y40{bottom:340.480000pt;}
.y8d{bottom:343.360000pt;}
.y97{bottom:343.680000pt;}
.y85{bottom:344.960000pt;}
.y72{bottom:353.280000pt;}
.y3f{bottom:357.440000pt;}
.y16{bottom:358.773333pt;}
.y8c{bottom:360.320000pt;}
.y96{bottom:360.640000pt;}
.y84{bottom:369.920000pt;}
.y71{bottom:370.240000pt;}
.y3e{bottom:374.080000pt;}
.y15{bottom:376.800000pt;}
.y8b{bottom:377.600000pt;}
.y70{bottom:387.200000pt;}
.y3d{bottom:391.040000pt;}
.y8a{bottom:394.240000pt;}
.y83{bottom:394.880000pt;}
.y14{bottom:399.466667pt;}
.y6f{bottom:403.840000pt;}
.y3c{bottom:408.000000pt;}
.y89{bottom:419.200000pt;}
.y82{bottom:419.520000pt;}
.y6e{bottom:420.800000pt;}
.y13{bottom:422.466667pt;}
.y3b{bottom:424.640000pt;}
.y81{bottom:436.480000pt;}
.y6d{bottom:437.760000pt;}
.y3a{bottom:441.600000pt;}
.y12{bottom:445.133333pt;}
.y80{bottom:453.440000pt;}
.y6c{bottom:454.720000pt;}
.y39{bottom:466.560000pt;}
.y11{bottom:467.800000pt;}
.y6b{bottom:471.360000pt;}
.y38{bottom:483.520000pt;}
.y6a{bottom:488.320000pt;}
.y10{bottom:494.506667pt;}
.y37{bottom:500.160000pt;}
.y69{bottom:505.280000pt;}
.y68{bottom:521.920000pt;}
.y36{bottom:525.120000pt;}
.yf{bottom:533.506667pt;}
.y67{bottom:538.880000pt;}
.y35{bottom:542.080000pt;}
.y66{bottom:555.840000pt;}
.y34{bottom:558.720000pt;}
.y65{bottom:572.480000pt;}
.ye{bottom:572.506667pt;}
.y33{bottom:575.680000pt;}
.y64{bottom:589.440000pt;}
.y32{bottom:592.640000pt;}
.y63{bottom:606.400000pt;}
.y31{bottom:609.280000pt;}
.yd{bottom:611.533333pt;}
.y30{bottom:626.240000pt;}
.y62{bottom:631.040000pt;}
.y2f{bottom:643.200000pt;}
.yc{bottom:650.533333pt;}
.y2e{bottom:660.160000pt;}
.y61{bottom:664.000000pt;}
.y2d{bottom:676.800000pt;}
.y60{bottom:680.960000pt;}
.yb{bottom:689.866667pt;}
.y2c{bottom:693.760000pt;}
.y5f{bottom:697.920000pt;}
.y2b{bottom:710.720000pt;}
.y5e{bottom:714.560000pt;}
.y2a{bottom:727.360000pt;}
.ya{bottom:728.893333pt;}
.y5d{bottom:731.520000pt;}
.y28{bottom:744.320000pt;}
.y29{bottom:744.542752pt;}
.y5c{bottom:748.480000pt;}
.y27{bottom:762.240000pt;}
.y5b{bottom:765.120000pt;}
.y9{bottom:767.893333pt;}
.y26{bottom:779.200000pt;}
.y5a{bottom:782.080000pt;}
.y25{bottom:796.160000pt;}
.y59{bottom:799.040000pt;}
.y8{bottom:806.933333pt;}
.y24{bottom:820.800000pt;}
.y58{bottom:823.680000pt;}
.y57{bottom:840.640000pt;}
.y23{bottom:845.760000pt;}
.y7{bottom:853.600000pt;}
.y56{bottom:857.600000pt;}
.y22{bottom:870.400000pt;}
.y55{bottom:875.520000pt;}
.y6{bottom:883.600000pt;}
.y54{bottom:892.480000pt;}
.y21{bottom:895.360000pt;}
.y5{bottom:908.293333pt;}
.y52{bottom:910.400000pt;}
.y53{bottom:910.622752pt;}
.y1f{bottom:912.320000pt;}
.y20{bottom:912.542752pt;}
.y50{bottom:928.320000pt;}
.y51{bottom:928.542752pt;}
.y1e{bottom:938.240000pt;}
.y2{bottom:941.293333pt;}
.y4f{bottom:946.240000pt;}
.y1{bottom:953.960000pt;}
.h8{height:20.000000pt;}
.h9{height:21.333333pt;}
.hb{height:39.066177pt;}
.h1{height:39.270833pt;}
.h5{height:40.769531pt;}
.h6{height:40.933594pt;}
.h7{height:42.656250pt;}
.ha{height:42.866250pt;}
.hc{height:42.895000pt;}
.hd{height:51.000000pt;}
.h4{height:64.531250pt;}
.h3{height:110.625000pt;}
.h2{height:111.125000pt;}
.h0{height:1056.000000pt;}
.w2{width:10.666667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.173333pt;}
.x14{left:9.719893pt;}
.x5{left:54.033321pt;}
.x7{left:88.033321pt;}
.x6{left:96.033321pt;}
.xb{left:108.366655pt;}
.xd{left:116.033321pt;}
.x1b{left:119.679680pt;}
.x16{left:127.675456pt;}
.x1c{left:144.000000pt;}
.xc{left:157.399988pt;}
.xf{left:184.399988pt;}
.x15{left:192.837568pt;}
.x23{left:202.560000pt;}
.x9{left:205.773321pt;}
.x24{left:208.578112pt;}
.x19{left:256.964832pt;}
.xe{left:271.106655pt;}
.x11{left:280.466655pt;}
.x1a{left:289.921888pt;}
.xa{left:323.133321pt;}
.x12{left:402.666667pt;}
.x10{left:408.173321pt;}
.x8{left:411.173321pt;}
.x1d{left:421.440000pt;}
.x1e{left:427.446720pt;}
.x25{left:446.720000pt;}
.x26{left:452.740800pt;}
.x17{left:471.680000pt;}
.x18{left:477.834880pt;}
.x1{left:541.559988pt;}
.x3{left:579.559988pt;}
.x21{left:609.600000pt;}
.x22{left:615.771520pt;}
.x1f{left:635.200000pt;}
.x20{left:641.516800pt;}
.x2{left:720.306655pt;}
.x4{left:843.706655pt;}
}




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