
    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_559c72646447c70d71e14856.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999500;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_5916108166eb6f4660ff3186.woff')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_e7f195b58537af88da4fa711.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002000;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_144462fe95d246394d0c494a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.002000;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_4d0950e0eb031fbd55e6a77c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.965500;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_c640de8639bbe54421369f9e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_ae8e2a6e8efb948ecc6c850f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.956500;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);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-9.450000px;}
.ls1f{letter-spacing:-8.730000px;}
.ls1e{letter-spacing:-4.500000px;}
.ls1c{letter-spacing:-4.140000px;}
.ls21{letter-spacing:-3.690000px;}
.ls1a{letter-spacing:-3.510000px;}
.ls11{letter-spacing:-3.036000px;}
.ls14{letter-spacing:-2.640000px;}
.ls22{letter-spacing:-2.070000px;}
.ls1{letter-spacing:-1.728000px;}
.ls19{letter-spacing:-1.710000px;}
.ls20{letter-spacing:-1.620000px;}
.ls1d{letter-spacing:-1.530000px;}
.ls15{letter-spacing:-1.452000px;}
.ls16{letter-spacing:-1.104000px;}
.lsc{letter-spacing:-0.858000px;}
.lse{letter-spacing:-0.726000px;}
.ls18{letter-spacing:-0.570000px;}
.lsd{letter-spacing:-0.528000px;}
.lsf{letter-spacing:-0.330000px;}
.lsb{letter-spacing:-0.132000px;}
.ls10{letter-spacing:-0.066000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053321px;}
.ls9{letter-spacing:0.053527px;}
.ls12{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.462000px;}
.ls13{letter-spacing:1.584000px;}
.ls0{letter-spacing:1.920000px;}
.ls5{letter-spacing:2.100000px;}
.ls4{letter-spacing:5.640000px;}
.ls6{letter-spacing:6.000000px;}
.ls7{letter-spacing:6.480000px;}
.ls17{letter-spacing:6.540000px;}
.ls3{letter-spacing:10.914000px;}
.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;}
}
.ws1e{word-spacing:-22.860000px;}
.ws20{word-spacing:-22.770000px;}
.ws1a{word-spacing:-22.680000px;}
.ws22{word-spacing:-22.320000px;}
.ws1b{word-spacing:-20.880000px;}
.ws21{word-spacing:-20.700000px;}
.ws18{word-spacing:-20.580000px;}
.ws1d{word-spacing:-20.250000px;}
.wsd{word-spacing:-19.500000px;}
.ws12{word-spacing:-17.358000px;}
.ws10{word-spacing:-16.368000px;}
.ws1f{word-spacing:-15.660000px;}
.ws17{word-spacing:-15.444000px;}
.ws0{word-spacing:-15.360000px;}
.ws1c{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.256000px;}
.ws19{word-spacing:-14.022000px;}
.ws14{word-spacing:-13.860000px;}
.ws6{word-spacing:-1.920000px;}
.ws28{word-spacing:-1.650000px;}
.ws27{word-spacing:-1.584000px;}
.ws7{word-spacing:-1.380000px;}
.wsa{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.200000px;}
.ws9{word-spacing:-1.152000px;}
.ws4{word-spacing:-1.020000px;}
.ws3{word-spacing:-0.714000px;}
.ws2a{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.480000px;}
.ws26{word-spacing:-0.396000px;}
.ws2b{word-spacing:-0.171000px;}
.wsc{word-spacing:-0.053527px;}
.wsb{word-spacing:-0.053321px;}
.ws2{word-spacing:0.000000px;}
.ws25{word-spacing:0.066000px;}
.ws2c{word-spacing:0.570000px;}
.ws24{word-spacing:0.726000px;}
.ws29{word-spacing:1.104000px;}
.ws1{word-spacing:1.728000px;}
.ws5{word-spacing:3.900000px;}
.ws2d{word-spacing:4.500000px;}
.ws15{word-spacing:852.522600px;}
.wse{word-spacing:857.146800px;}
.ws13{word-spacing:864.782400px;}
.wsf{word-spacing:910.910400px;}
.ws11{word-spacing:1003.804800px;}
._a{margin-left:-8.988000px;}
._8{margin-left:-7.164000px;}
._7{margin-left:-5.694000px;}
._2{margin-left:-3.744000px;}
._5{margin-left:-2.652000px;}
._3{margin-left:-1.152000px;}
._1{width:1.824000px;}
._4{width:3.396000px;}
._0{width:4.492800px;}
._11{width:6.323400px;}
._6{width:9.840000px;}
._f{width:11.022000px;}
._10{width:12.447000px;}
._9{width:170.674200px;}
._c{width:318.930000px;}
._d{width:335.010600px;}
._e{width:541.678200px;}
._b{width:620.829000px;}
.fc2{color:rgb(80,87,91);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(100,151,208);}
.fs4{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs7{font-size:53.321400px;}
.fs8{font-size:53.527200px;}
.fs6{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:84.000000px;}
.fsc{font-size:90.000000px;}
.fs5{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:30.939600px;}
.y7f{bottom:35.340150px;}
.y29{bottom:52.905000px;}
.y45{bottom:64.725150px;}
.y28{bottom:73.905000px;}
.y8e{bottom:74.555550px;}
.y44{bottom:84.975150px;}
.y27{bottom:94.905000px;}
.y43{bottom:105.225150px;}
.y26{bottom:115.905000px;}
.y42{bottom:125.475150px;}
.y25{bottom:145.545000px;}
.ya2{bottom:150.105150px;}
.y41{bottom:151.125150px;}
.y7e{bottom:163.185150px;}
.y24{bottom:166.545000px;}
.ya1{bottom:171.105150px;}
.y40{bottom:171.375150px;}
.y7d{bottom:184.185150px;}
.y23{bottom:187.545150px;}
.y3f{bottom:191.625150px;}
.ya0{bottom:200.745150px;}
.y7c{bottom:205.185150px;}
.y22{bottom:208.545150px;}
.y3e{bottom:211.875150px;}
.y9f{bottom:221.745150px;}
.y7b{bottom:226.185150px;}
.y3d{bottom:232.125150px;}
.y21{bottom:238.185000px;}
.y9e{bottom:242.745150px;}
.y7a{bottom:247.185150px;}
.y3c{bottom:252.375150px;}
.y20{bottom:259.185000px;}
.y9d{bottom:272.385150px;}
.y79{bottom:275.745150px;}
.y3b{bottom:278.025150px;}
.y1f{bottom:280.185000px;}
.y9c{bottom:293.385150px;}
.y3a{bottom:298.275150px;}
.y1e{bottom:301.185000px;}
.y78{bottom:308.085150px;}
.y9b{bottom:314.385150px;}
.y39{bottom:318.525150px;}
.y77{bottom:329.085150px;}
.y1d{bottom:330.825000px;}
.y9a{bottom:335.385150px;}
.y38{bottom:338.775150px;}
.yc0{bottom:348.000900px;}
.y76{bottom:350.085150px;}
.yc2{bottom:352.814250px;}
.y99{bottom:356.385150px;}
.y37{bottom:359.025150px;}
.y1c{bottom:359.925000px;}
.ybf{bottom:364.500900px;}
.y75{bottom:371.085150px;}
.y98{bottom:377.385150px;}
.y36{bottom:379.275150px;}
.ybc{bottom:386.400000px;}
.yba{bottom:388.267200px;}
.ybe{bottom:389.640900px;}
.y74{bottom:392.085150px;}
.y1b{bottom:393.885150px;}
.yc1{bottom:394.672650px;}
.y97{bottom:398.385150px;}
.y35{bottom:404.925150px;}
.ybd{bottom:406.140900px;}
.y73{bottom:413.085150px;}
.y1a{bottom:414.885150px;}
.yb9{bottom:415.567350px;}
.y96{bottom:419.385150px;}
.ybb{bottom:420.884550px;}
.yb8{bottom:432.067350px;}
.y72{bottom:434.085150px;}
.y19{bottom:435.885150px;}
.y95{bottom:449.025150px;}
.y48{bottom:459.355200px;}
.y71{bottom:463.725150px;}
.y18{bottom:465.525000px;}
.y94{bottom:470.025150px;}
.y47{bottom:472.855200px;}
.y70{bottom:484.725150px;}
.y17{bottom:486.525000px;}
.y93{bottom:491.025150px;}
.y46{bottom:492.111600px;}
.y6f{bottom:505.725150px;}
.y16{bottom:507.525000px;}
.y92{bottom:520.665150px;}
.y6e{bottom:526.725150px;}
.y15{bottom:537.165000px;}
.y4c{bottom:540.370117px;}
.y91{bottom:541.665150px;}
.y4e{bottom:553.107611px;}
.y6d{bottom:556.365150px;}
.y14{bottom:558.165000px;}
.y4d{bottom:571.534350px;}
.y90{bottom:572.385150px;}
.y6c{bottom:577.365150px;}
.y4b{bottom:582.747300px;}
.y13{bottom:587.805150px;}
.yb7{bottom:593.763900px;}
.y6b{bottom:598.365150px;}
.y8f{bottom:601.485150px;}
.y12{bottom:608.805150px;}
.yb6{bottom:610.263900px;}
.y6a{bottom:619.365150px;}
.y4a{bottom:632.321850px;}
.y49{bottom:632.325450px;}
.y64{bottom:637.185150px;}
.y11{bottom:638.445150px;}
.yb5{bottom:639.224250px;}
.yb3{bottom:640.143750px;}
.y69{bottom:640.365150px;}
.y63{bottom:658.185150px;}
.y10{bottom:659.445150px;}
.y68{bottom:661.365150px;}
.y2b{bottom:664.370550px;}
.yb4{bottom:667.582650px;}
.yb2{bottom:670.143750px;}
.y67{bottom:682.365150px;}
.y62{bottom:687.825150px;}
.yf{bottom:689.085000px;}
.y61{bottom:708.825150px;}
.ye{bottom:710.085000px;}
.y66{bottom:713.085150px;}
.y34{bottom:718.125150px;}
.ya8{bottom:723.948900px;}
.y60{bottom:729.825150px;}
.yd{bottom:731.085000px;}
.yaa{bottom:738.449250px;}
.y33{bottom:739.125150px;}
.ya7{bottom:740.448900px;}
.y65{bottom:742.185150px;}
.y5f{bottom:750.825150px;}
.yc{bottom:752.085000px;}
.ya6{bottom:756.948900px;}
.y32{bottom:765.525150px;}
.y5e{bottom:771.825000px;}
.yb{bottom:781.725000px;}
.y8d{bottom:783.785850px;}
.y31{bottom:786.525150px;}
.ya5{bottom:786.948900px;}
.y5d{bottom:792.825000px;}
.ya9{bottom:798.307650px;}
.ya{bottom:802.725000px;}
.ya4{bottom:803.448900px;}
.y8c{bottom:809.964600px;}
.y30{bottom:812.925150px;}
.y5c{bottom:813.825000px;}
.ya3{bottom:819.948900px;}
.y9{bottom:823.725000px;}
.y8b{bottom:827.964600px;}
.y2f{bottom:833.925150px;}
.y5b{bottom:834.825000px;}
.y8{bottom:844.725000px;}
.y8a{bottom:854.392050px;}
.y2e{bottom:860.325150px;}
.y5a{bottom:864.465150px;}
.y7{bottom:865.725000px;}
.y89{bottom:878.266500px;}
.y2d{bottom:881.325150px;}
.y59{bottom:885.465150px;}
.y6{bottom:886.725000px;}
.yb1{bottom:896.122650px;}
.yb0{bottom:899.341500px;}
.y88{bottom:902.141250px;}
.y58{bottom:906.465150px;}
.y5{bottom:907.725000px;}
.y2c{bottom:910.965150px;}
.yaf{bottom:922.321500px;}
.y87{bottom:926.015850px;}
.y57{bottom:927.465150px;}
.yac{bottom:928.762650px;}
.y4{bottom:936.825000px;}
.yae{bottom:938.821500px;}
.y56{bottom:948.465150px;}
.y86{bottom:949.890600px;}
.yab{bottom:958.162650px;}
.yad{bottom:961.801350px;}
.y55{bottom:969.465150px;}
.y85{bottom:973.765200px;}
.y2{bottom:979.710450px;}
.y84{bottom:997.639950px;}
.y54{bottom:999.105150px;}
.y53{bottom:1020.105150px;}
.y83{bottom:1021.514550px;}
.y1{bottom:1023.960450px;}
.y52{bottom:1041.105150px;}
.y82{bottom:1049.368350px;}
.y51{bottom:1071.825000px;}
.y81{bottom:1081.910550px;}
.y50{bottom:1092.825000px;}
.y3{bottom:1105.243200px;}
.y80{bottom:1107.110550px;}
.y4f{bottom:1121.925150px;}
.h9{height:37.176000px;}
.h8{height:37.700400px;}
.h3{height:38.326500px;}
.h6{height:39.336000px;}
.hb{height:40.149000px;}
.hc{height:41.857299px;}
.hd{height:42.018852px;}
.ha{height:42.390000px;}
.h15{height:44.146500px;}
.h12{height:44.610000px;}
.h4{height:45.090000px;}
.h13{height:46.711500px;}
.h11{height:49.071000px;}
.h5{height:49.170000px;}
.hf{height:51.810000px;}
.h10{height:54.087000px;}
.he{height:63.126000px;}
.h14{height:73.260000px;}
.h7{height:88.506000px;}
.h2{height:97.680000px;}
.h1{height:156.288000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x3{left:69.000000px;}
.x13{left:78.840000px;}
.x16{left:176.660550px;}
.x17{left:201.347850px;}
.x2{left:213.785250px;}
.x15{left:215.949000px;}
.x18{left:248.346750px;}
.x22{left:252.931350px;}
.x23{left:253.938300px;}
.x14{left:273.457200px;}
.x21{left:328.323600px;}
.x10{left:468.000000px;}
.x12{left:477.549900px;}
.x11{left:481.500000px;}
.x5{left:483.775350px;}
.x6{left:488.520000px;}
.x9{left:500.867100px;}
.x7{left:503.521200px;}
.xb{left:511.057200px;}
.xf{left:529.246638px;}
.x8{left:552.349650px;}
.xe{left:610.741800px;}
.x1c{left:626.573250px;}
.x1d{left:631.864050px;}
.x1b{left:642.328200px;}
.x4{left:656.291400px;}
.x20{left:666.809700px;}
.x1f{left:671.478900px;}
.x1a{left:677.268900px;}
.xa{left:710.005950px;}
.x19{left:711.570000px;}
.xd{left:714.310519px;}
.x1e{left:738.945000px;}
.xc{left:785.961150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-8.400000pt;}
.ls1f{letter-spacing:-7.760000pt;}
.ls1e{letter-spacing:-4.000000pt;}
.ls1c{letter-spacing:-3.680000pt;}
.ls21{letter-spacing:-3.280000pt;}
.ls1a{letter-spacing:-3.120000pt;}
.ls11{letter-spacing:-2.698667pt;}
.ls14{letter-spacing:-2.346667pt;}
.ls22{letter-spacing:-1.840000pt;}
.ls1{letter-spacing:-1.536000pt;}
.ls19{letter-spacing:-1.520000pt;}
.ls20{letter-spacing:-1.440000pt;}
.ls1d{letter-spacing:-1.360000pt;}
.ls15{letter-spacing:-1.290667pt;}
.ls16{letter-spacing:-0.981333pt;}
.lsc{letter-spacing:-0.762667pt;}
.lse{letter-spacing:-0.645333pt;}
.ls18{letter-spacing:-0.506667pt;}
.lsd{letter-spacing:-0.469333pt;}
.lsf{letter-spacing:-0.293333pt;}
.lsb{letter-spacing:-0.117333pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047397pt;}
.ls9{letter-spacing:0.047580pt;}
.ls12{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.410667pt;}
.ls13{letter-spacing:1.408000pt;}
.ls0{letter-spacing:1.706667pt;}
.ls5{letter-spacing:1.866667pt;}
.ls4{letter-spacing:5.013333pt;}
.ls6{letter-spacing:5.333333pt;}
.ls7{letter-spacing:5.760000pt;}
.ls17{letter-spacing:5.813333pt;}
.ls3{letter-spacing:9.701333pt;}
.ws1e{word-spacing:-20.320000pt;}
.ws20{word-spacing:-20.240000pt;}
.ws1a{word-spacing:-20.160000pt;}
.ws22{word-spacing:-19.840000pt;}
.ws1b{word-spacing:-18.560000pt;}
.ws21{word-spacing:-18.400000pt;}
.ws18{word-spacing:-18.293333pt;}
.ws1d{word-spacing:-18.000000pt;}
.wsd{word-spacing:-17.333333pt;}
.ws12{word-spacing:-15.429333pt;}
.ws10{word-spacing:-14.549333pt;}
.ws1f{word-spacing:-13.920000pt;}
.ws17{word-spacing:-13.728000pt;}
.ws0{word-spacing:-13.653333pt;}
.ws1c{word-spacing:-13.280000pt;}
.ws16{word-spacing:-12.672000pt;}
.ws19{word-spacing:-12.464000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws6{word-spacing:-1.706667pt;}
.ws28{word-spacing:-1.466667pt;}
.ws27{word-spacing:-1.408000pt;}
.ws7{word-spacing:-1.226667pt;}
.wsa{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.066667pt;}
.ws9{word-spacing:-1.024000pt;}
.ws4{word-spacing:-0.906667pt;}
.ws3{word-spacing:-0.634667pt;}
.ws2a{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.426667pt;}
.ws26{word-spacing:-0.352000pt;}
.ws2b{word-spacing:-0.152000pt;}
.wsc{word-spacing:-0.047580pt;}
.wsb{word-spacing:-0.047397pt;}
.ws2{word-spacing:0.000000pt;}
.ws25{word-spacing:0.058667pt;}
.ws2c{word-spacing:0.506667pt;}
.ws24{word-spacing:0.645333pt;}
.ws29{word-spacing:0.981333pt;}
.ws1{word-spacing:1.536000pt;}
.ws5{word-spacing:3.466667pt;}
.ws2d{word-spacing:4.000000pt;}
.ws15{word-spacing:757.797867pt;}
.wse{word-spacing:761.908267pt;}
.ws13{word-spacing:768.695467pt;}
.wsf{word-spacing:809.698133pt;}
.ws11{word-spacing:892.270933pt;}
._a{margin-left:-7.989333pt;}
._8{margin-left:-6.368000pt;}
._7{margin-left:-5.061333pt;}
._2{margin-left:-3.328000pt;}
._5{margin-left:-2.357333pt;}
._3{margin-left:-1.024000pt;}
._1{width:1.621333pt;}
._4{width:3.018667pt;}
._0{width:3.993600pt;}
._11{width:5.620800pt;}
._6{width:8.746667pt;}
._f{width:9.797333pt;}
._10{width:11.064000pt;}
._9{width:151.710400pt;}
._c{width:283.493333pt;}
._d{width:297.787200pt;}
._e{width:481.491733pt;}
._b{width:551.848000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs7{font-size:47.396800pt;}
.fs8{font-size:47.579733pt;}
.fs6{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:74.666667pt;}
.fsc{font-size:80.000000pt;}
.fs5{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:27.501867pt;}
.y7f{bottom:31.413467pt;}
.y29{bottom:47.026667pt;}
.y45{bottom:57.533467pt;}
.y28{bottom:65.693333pt;}
.y8e{bottom:66.271600pt;}
.y44{bottom:75.533467pt;}
.y27{bottom:84.360000pt;}
.y43{bottom:93.533467pt;}
.y26{bottom:103.026667pt;}
.y42{bottom:111.533467pt;}
.y25{bottom:129.373333pt;}
.ya2{bottom:133.426800pt;}
.y41{bottom:134.333467pt;}
.y7e{bottom:145.053467pt;}
.y24{bottom:148.040000pt;}
.ya1{bottom:152.093467pt;}
.y40{bottom:152.333467pt;}
.y7d{bottom:163.720133pt;}
.y23{bottom:166.706800pt;}
.y3f{bottom:170.333467pt;}
.ya0{bottom:178.440133pt;}
.y7c{bottom:182.386800pt;}
.y22{bottom:185.373467pt;}
.y3e{bottom:188.333467pt;}
.y9f{bottom:197.106800pt;}
.y7b{bottom:201.053467pt;}
.y3d{bottom:206.333467pt;}
.y21{bottom:211.720000pt;}
.y9e{bottom:215.773467pt;}
.y7a{bottom:219.720133pt;}
.y3c{bottom:224.333467pt;}
.y20{bottom:230.386667pt;}
.y9d{bottom:242.120133pt;}
.y79{bottom:245.106800pt;}
.y3b{bottom:247.133467pt;}
.y1f{bottom:249.053333pt;}
.y9c{bottom:260.786800pt;}
.y3a{bottom:265.133467pt;}
.y1e{bottom:267.720000pt;}
.y78{bottom:273.853467pt;}
.y9b{bottom:279.453467pt;}
.y39{bottom:283.133467pt;}
.y77{bottom:292.520133pt;}
.y1d{bottom:294.066667pt;}
.y9a{bottom:298.120133pt;}
.y38{bottom:301.133467pt;}
.yc0{bottom:309.334133pt;}
.y76{bottom:311.186800pt;}
.yc2{bottom:313.612667pt;}
.y99{bottom:316.786800pt;}
.y37{bottom:319.133467pt;}
.y1c{bottom:319.933333pt;}
.ybf{bottom:324.000800pt;}
.y75{bottom:329.853467pt;}
.y98{bottom:335.453467pt;}
.y36{bottom:337.133467pt;}
.ybc{bottom:343.466667pt;}
.yba{bottom:345.126400pt;}
.ybe{bottom:346.347467pt;}
.y74{bottom:348.520133pt;}
.y1b{bottom:350.120133pt;}
.yc1{bottom:350.820133pt;}
.y97{bottom:354.120133pt;}
.y35{bottom:359.933467pt;}
.ybd{bottom:361.014133pt;}
.y73{bottom:367.186800pt;}
.y1a{bottom:368.786800pt;}
.yb9{bottom:369.393200pt;}
.y96{bottom:372.786800pt;}
.ybb{bottom:374.119600pt;}
.yb8{bottom:384.059867pt;}
.y72{bottom:385.853467pt;}
.y19{bottom:387.453467pt;}
.y95{bottom:399.133467pt;}
.y48{bottom:408.315733pt;}
.y71{bottom:412.200133pt;}
.y18{bottom:413.800000pt;}
.y94{bottom:417.800133pt;}
.y47{bottom:420.315733pt;}
.y70{bottom:430.866800pt;}
.y17{bottom:432.466667pt;}
.y93{bottom:436.466800pt;}
.y46{bottom:437.432533pt;}
.y6f{bottom:449.533467pt;}
.y16{bottom:451.133333pt;}
.y92{bottom:462.813467pt;}
.y6e{bottom:468.200133pt;}
.y15{bottom:477.480000pt;}
.y4c{bottom:480.328993pt;}
.y91{bottom:481.480133pt;}
.y4e{bottom:491.651210pt;}
.y6d{bottom:494.546800pt;}
.y14{bottom:496.146667pt;}
.y4d{bottom:508.030533pt;}
.y90{bottom:508.786800pt;}
.y6c{bottom:513.213467pt;}
.y4b{bottom:517.997600pt;}
.y13{bottom:522.493467pt;}
.yb7{bottom:527.790133pt;}
.y6b{bottom:531.880133pt;}
.y8f{bottom:534.653467pt;}
.y12{bottom:541.160133pt;}
.yb6{bottom:542.456800pt;}
.y6a{bottom:550.546800pt;}
.y4a{bottom:562.063867pt;}
.y49{bottom:562.067067pt;}
.y64{bottom:566.386800pt;}
.y11{bottom:567.506800pt;}
.yb5{bottom:568.199333pt;}
.yb3{bottom:569.016667pt;}
.y69{bottom:569.213467pt;}
.y63{bottom:585.053467pt;}
.y10{bottom:586.173467pt;}
.y68{bottom:587.880133pt;}
.y2b{bottom:590.551600pt;}
.yb4{bottom:593.406800pt;}
.yb2{bottom:595.683333pt;}
.y67{bottom:606.546800pt;}
.y62{bottom:611.400133pt;}
.yf{bottom:612.520000pt;}
.y61{bottom:630.066800pt;}
.ye{bottom:631.186667pt;}
.y66{bottom:633.853467pt;}
.y34{bottom:638.333467pt;}
.ya8{bottom:643.510133pt;}
.y60{bottom:648.733467pt;}
.yd{bottom:649.853333pt;}
.yaa{bottom:656.399333pt;}
.y33{bottom:657.000133pt;}
.ya7{bottom:658.176800pt;}
.y65{bottom:659.720133pt;}
.y5f{bottom:667.400133pt;}
.yc{bottom:668.520000pt;}
.ya6{bottom:672.843467pt;}
.y32{bottom:680.466800pt;}
.y5e{bottom:686.066667pt;}
.yb{bottom:694.866667pt;}
.y8d{bottom:696.698533pt;}
.y31{bottom:699.133467pt;}
.ya5{bottom:699.510133pt;}
.y5d{bottom:704.733333pt;}
.ya9{bottom:709.606800pt;}
.ya{bottom:713.533333pt;}
.ya4{bottom:714.176800pt;}
.y8c{bottom:719.968533pt;}
.y30{bottom:722.600133pt;}
.y5c{bottom:723.400000pt;}
.ya3{bottom:728.843467pt;}
.y9{bottom:732.200000pt;}
.y8b{bottom:735.968533pt;}
.y2f{bottom:741.266800pt;}
.y5b{bottom:742.066667pt;}
.y8{bottom:750.866667pt;}
.y8a{bottom:759.459600pt;}
.y2e{bottom:764.733467pt;}
.y5a{bottom:768.413467pt;}
.y7{bottom:769.533333pt;}
.y89{bottom:780.681333pt;}
.y2d{bottom:783.400133pt;}
.y59{bottom:787.080133pt;}
.y6{bottom:788.200000pt;}
.yb1{bottom:796.553467pt;}
.yb0{bottom:799.414667pt;}
.y88{bottom:801.903333pt;}
.y58{bottom:805.746800pt;}
.y5{bottom:806.866667pt;}
.y2c{bottom:809.746800pt;}
.yaf{bottom:819.841333pt;}
.y87{bottom:823.125200pt;}
.y57{bottom:824.413467pt;}
.yac{bottom:825.566800pt;}
.y4{bottom:832.733333pt;}
.yae{bottom:834.508000pt;}
.y56{bottom:843.080133pt;}
.y86{bottom:844.347200pt;}
.yab{bottom:851.700133pt;}
.yad{bottom:854.934533pt;}
.y55{bottom:861.746800pt;}
.y85{bottom:865.569067pt;}
.y2{bottom:870.853733pt;}
.y84{bottom:886.791067pt;}
.y54{bottom:888.093467pt;}
.y53{bottom:906.760133pt;}
.y83{bottom:908.012933pt;}
.y1{bottom:910.187067pt;}
.y52{bottom:925.426800pt;}
.y82{bottom:932.771867pt;}
.y51{bottom:952.733333pt;}
.y81{bottom:961.698267pt;}
.y50{bottom:971.400000pt;}
.y3{bottom:982.438400pt;}
.y80{bottom:984.098267pt;}
.y4f{bottom:997.266800pt;}
.h9{height:33.045333pt;}
.h8{height:33.511467pt;}
.h3{height:34.068000pt;}
.h6{height:34.965333pt;}
.hb{height:35.688000pt;}
.hc{height:37.206488pt;}
.hd{height:37.350091pt;}
.ha{height:37.680000pt;}
.h15{height:39.241333pt;}
.h12{height:39.653333pt;}
.h4{height:40.080000pt;}
.h13{height:41.521333pt;}
.h11{height:43.618667pt;}
.h5{height:43.706667pt;}
.hf{height:46.053333pt;}
.h10{height:48.077333pt;}
.he{height:56.112000pt;}
.h14{height:65.120000pt;}
.h7{height:78.672000pt;}
.h2{height:86.826667pt;}
.h1{height:138.922667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x3{left:61.333333pt;}
.x13{left:70.080000pt;}
.x16{left:157.031600pt;}
.x17{left:178.975867pt;}
.x2{left:190.031333pt;}
.x15{left:191.954667pt;}
.x18{left:220.752667pt;}
.x22{left:224.827867pt;}
.x23{left:225.722933pt;}
.x14{left:243.073067pt;}
.x21{left:291.843200pt;}
.x10{left:416.000000pt;}
.x12{left:424.488800pt;}
.x11{left:428.000000pt;}
.x5{left:430.022533pt;}
.x6{left:434.240000pt;}
.x9{left:445.215200pt;}
.x7{left:447.574400pt;}
.xb{left:454.273067pt;}
.xf{left:470.441456pt;}
.x8{left:490.977467pt;}
.xe{left:542.881600pt;}
.x1c{left:556.954000pt;}
.x1d{left:561.656933pt;}
.x1b{left:570.958400pt;}
.x4{left:583.370133pt;}
.x20{left:592.719733pt;}
.x1f{left:596.870133pt;}
.x1a{left:602.016800pt;}
.xa{left:631.116400pt;}
.x19{left:632.506667pt;}
.xd{left:634.942683pt;}
.x1e{left:656.840000pt;}
.xc{left:698.632133pt;}
}




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