
    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_57ab622bec5faffe24c2e00a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_869e89e5a242f508cbd41b50.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_32c5666ff376adb48fb273b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_aee2456bb4c78aedf0841bbb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945000;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_bfcfce37ef704d1efa8e352f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_7f0df4c89643f83d643e7199.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_452f3f5e7812fd3a12b1a876.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945000;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_ce39aa1c8612a4d085b576e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_9f15e1b6b4a089d6f5545c2b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958000;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);}
.v1{vertical-align:-35.334000px;}
.v3{vertical-align:-29.436000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.318000px;}
.v4{vertical-align:85.488000px;}
.ls2c{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000265px;}
.ls22{letter-spacing:0.000340px;}
.ls7{letter-spacing:0.001153px;}
.ls21{letter-spacing:0.001250px;}
.ls20{letter-spacing:0.001683px;}
.lse{letter-spacing:0.001707px;}
.ls16{letter-spacing:0.006480px;}
.ls10{letter-spacing:0.007707px;}
.ls28{letter-spacing:2.981589px;}
.ls1a{letter-spacing:2.983614px;}
.ls12{letter-spacing:2.988602px;}
.ls1d{letter-spacing:2.989614px;}
.ls8{letter-spacing:14.859944px;}
.ls29{letter-spacing:24.600231px;}
.ls6{letter-spacing:39.255110px;}
.ls24{letter-spacing:46.602652px;}
.ls23{letter-spacing:46.608652px;}
.ls1c{letter-spacing:48.223496px;}
.ls1f{letter-spacing:53.637282px;}
.ls2{letter-spacing:54.980543px;}
.ls13{letter-spacing:55.944660px;}
.ls17{letter-spacing:55.950981px;}
.lsf{letter-spacing:55.956480px;}
.ls5{letter-spacing:65.432365px;}
.ls2b{letter-spacing:65.432709px;}
.ls25{letter-spacing:65.435493px;}
.ls15{letter-spacing:66.936769px;}
.ls18{letter-spacing:67.100248px;}
.ls4{letter-spacing:67.376611px;}
.ls9{letter-spacing:68.415944px;}
.ls2a{letter-spacing:68.429576px;}
.ls27{letter-spacing:68.762543px;}
.lsa{letter-spacing:79.698602px;}
.ls26{letter-spacing:80.295944px;}
.ls14{letter-spacing:82.356429px;}
.ls1{letter-spacing:82.477573px;}
.ls11{letter-spacing:90.038097px;}
.ls0{letter-spacing:123.871962px;}
.ls3{letter-spacing:124.356428px;}
.lsb{letter-spacing:130.914429px;}
.lsc{letter-spacing:130.920429px;}
.ls1e{letter-spacing:177.984265px;}
.lsd{letter-spacing:204.225944px;}
.ls1b{letter-spacing:231.114265px;}
.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;}
}
.ws11{word-spacing:-149.968191px;}
.ws31{word-spacing:-124.928803px;}
.ws15{word-spacing:-110.862442px;}
.ws13{word-spacing:-110.730042px;}
.ws10{word-spacing:-58.823527px;}
.ws18{word-spacing:-55.949250px;}
.ws16{word-spacing:-41.176229px;}
.ws2{word-spacing:-16.560978px;}
.ws14{word-spacing:-14.812095px;}
.ws2c{word-spacing:-14.323008px;}
.ws3{word-spacing:-13.875414px;}
.ws4{word-spacing:-13.427820px;}
.wsf{word-spacing:-12.980226px;}
.ws32{word-spacing:-12.336967px;}
.ws1c{word-spacing:-10.966053px;}
.wse{word-spacing:-10.070865px;}
.wsa{word-spacing:-8.728083px;}
.ws42{word-spacing:-2.909361px;}
.ws3d{word-spacing:-2.866568px;}
.ws2f{word-spacing:-2.860568px;}
.ws2b{word-spacing:-2.860088px;}
.ws1d{word-spacing:-2.461767px;}
.ws1a{word-spacing:-1.566579px;}
.ws3f{word-spacing:-0.671391px;}
.ws4a{word-spacing:-0.339109px;}
.ws1{word-spacing:-0.268432px;}
.ws46{word-spacing:-0.186431px;}
.ws3c{word-spacing:-0.093239px;}
.ws39{word-spacing:-0.047361px;}
.ws3b{word-spacing:-0.045054px;}
.ws3a{word-spacing:-0.041361px;}
.ws38{word-spacing:-0.000561px;}
.ws6{word-spacing:0.000000px;}
.ws40{word-spacing:0.447594px;}
.ws41{word-spacing:2.461767px;}
.ws43{word-spacing:3.580752px;}
.ws44{word-spacing:4.252143px;}
.ws2d{word-spacing:4.475940px;}
.ws1b{word-spacing:6.042519px;}
.ws2e{word-spacing:6.666823px;}
.ws3e{word-spacing:7.161504px;}
.ws9{word-spacing:7.385301px;}
.ws7{word-spacing:7.609098px;}
.ws5{word-spacing:8.951880px;}
.ws17{word-spacing:9.399474px;}
.ws8{word-spacing:11.413647px;}
.ws45{word-spacing:11.861241px;}
.wsd{word-spacing:14.323008px;}
.ws22{word-spacing:17.912391px;}
.ws36{word-spacing:18.876213px;}
.ws1f{word-spacing:20.756595px;}
.ws23{word-spacing:20.757270px;}
.ws20{word-spacing:20.813121px;}
.ws12{word-spacing:22.065508px;}
.ws34{word-spacing:23.721345px;}
.ws1e{word-spacing:37.821693px;}
.ws37{word-spacing:46.421419px;}
.ws27{word-spacing:50.098666px;}
.ws26{word-spacing:50.113432px;}
.ws29{word-spacing:52.921161px;}
.ws28{word-spacing:52.955943px;}
.ws24{word-spacing:52.977618px;}
.ws21{word-spacing:55.195644px;}
.wsc{word-spacing:66.839468px;}
.wsb{word-spacing:66.841228px;}
.ws48{word-spacing:84.435110px;}
.ws47{word-spacing:84.436483px;}
.ws49{word-spacing:84.437621px;}
.ws4b{word-spacing:84.438041px;}
.ws0{word-spacing:101.331596px;}
.ws35{word-spacing:105.665329px;}
.ws33{word-spacing:107.694839px;}
.ws25{word-spacing:130.580220px;}
.ws2a{word-spacing:155.481508px;}
.ws30{word-spacing:1305.124309px;}
.ws19{word-spacing:3251.846169px;}
._26{margin-left:-21.474528px;}
._12{margin-left:-18.453788px;}
._2a{margin-left:-16.955430px;}
._16{margin-left:-14.099211px;}
._5{margin-left:-12.846946px;}
._17{margin-left:-10.966053px;}
._27{margin-left:-9.460704px;}
._29{margin-left:-7.663568px;}
._0{margin-left:-4.883450px;}
._1{margin-left:-3.255634px;}
._3{margin-left:-2.147453px;}
._1c{margin-left:-1.118985px;}
._7{width:1.342782px;}
._2{width:2.848679px;}
._15{width:4.026474px;}
._25{width:6.355474px;}
._1b{width:7.681291px;}
._14{width:9.125774px;}
._13{width:12.419456px;}
._4{width:38.362483px;}
._6{width:42.745227px;}
._9{width:44.849917px;}
._11{width:46.235462px;}
._19{width:47.578244px;}
._e{width:48.697229px;}
._1a{width:54.515951px;}
._8{width:61.229861px;}
._b{width:65.482004px;}
._c{width:70.895894px;}
._22{width:72.656284px;}
._10{width:74.066003px;}
._20{width:78.552747px;}
._18{width:83.476281px;}
._24{width:85.900087px;}
._d{width:87.650834px;}
._a{width:91.756770px;}
._28{width:93.279008px;}
._1d{width:94.992362px;}
._f{width:108.093951px;}
._1e{width:127.768448px;}
._1f{width:171.857666px;}
._21{width:323.132096px;}
._23{width:450.977557px;}
.fc3{color:rgb(218,109,94);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(61,112,121);}
.fc0{color:rgb(225,232,217);}
.fs8{font-size:137.370000px;}
.fs5{font-size:164.902800px;}
.fs6{font-size:186.431400px;}
.fs7{font-size:196.243800px;}
.fs2{font-size:223.797000px;}
.fs4{font-size:235.576800px;}
.fs1{font-size:268.431600px;}
.fs3{font-size:282.560400px;}
.fs9{font-size:339.108600px;}
.fs0{font-size:406.954200px;}
.y0{bottom:0.000000px;}
.y5b{bottom:171.108000px;}
.y5a{bottom:275.962500px;}
.y59{bottom:534.496500px;}
.y32{bottom:540.574500px;}
.y58{bottom:596.962500px;}
.y31{bottom:611.557500px;}
.y57{bottom:659.428500px;}
.y30{bottom:682.542000px;}
.y56{bottom:721.894500px;}
.y2f{bottom:753.525000px;}
.y55{bottom:784.360500px;}
.y2e{bottom:824.509500px;}
.y54{bottom:886.267500px;}
.y2d{bottom:895.492500px;}
.y2c{bottom:966.477000px;}
.y2b{bottom:1037.460000px;}
.y53{bottom:1071.159000px;}
.y2a{bottom:1108.444500px;}
.y52{bottom:1142.143500px;}
.y29{bottom:1179.427500px;}
.y51{bottom:1217.610000px;}
.y28{bottom:1250.412000px;}
.y50{bottom:1293.076500px;}
.y27{bottom:1321.395000px;}
.y4f{bottom:1368.544500px;}
.y4e{bottom:1439.527500px;}
.y26{bottom:1447.323000px;}
.y4d{bottom:1545.534000px;}
.y25{bottom:1603.561500px;}
.y24{bottom:1674.546000px;}
.y4c{bottom:1688.904000px;}
.y4b{bottom:1759.887000px;}
.y23{bottom:1765.174500px;}
.y4a{bottom:1830.871500px;}
.y22{bottom:1836.157500px;}
.y49{bottom:1901.856000px;}
.y21{bottom:1911.625500px;}
.y48{bottom:1972.839000px;}
.y20{bottom:1982.608500px;}
.y47{bottom:2043.823500px;}
.y1f{bottom:2053.593000px;}
.y46{bottom:2114.806500px;}
.y1e{bottom:2129.059500px;}
.y45{bottom:2185.791000px;}
.y1d{bottom:2204.527500px;}
.y44{bottom:2256.774000px;}
.y1c{bottom:2275.510500px;}
.y43{bottom:2327.758500px;}
.y1b{bottom:2346.495000px;}
.y42{bottom:2438.184000px;}
.y1a{bottom:2571.967500px;}
.y41{bottom:2618.332500px;}
.y40{bottom:2689.317000px;}
.y19{bottom:2756.859000px;}
.y3f{bottom:2760.300000px;}
.y18{bottom:2827.842000px;}
.y3e{bottom:2831.284500px;}
.y3d{bottom:2902.267500px;}
.y17{bottom:2903.310000px;}
.y3c{bottom:2973.252000px;}
.y16{bottom:2974.293000px;}
.y3b{bottom:3044.235000px;}
.y15{bottom:3049.759500px;}
.y3a{bottom:3115.219500px;}
.y14{bottom:3120.744000px;}
.y39{bottom:3186.202500px;}
.y13{bottom:3196.210500px;}
.y38{bottom:3257.187000px;}
.y12{bottom:3267.195000px;}
.y11{bottom:3338.178000px;}
.y10{bottom:3409.162500px;}
.yf{bottom:3480.147000px;}
.ye{bottom:3605.839500px;}
.yd{bottom:3749.209500px;}
.yc{bottom:3820.192500px;}
.yb{bottom:3891.177000px;}
.ya{bottom:3962.160000px;}
.y37{bottom:4001.670000px;}
.y9{bottom:4033.144500px;}
.y36{bottom:4064.134500px;}
.y8{bottom:4104.127500px;}
.y35{bottom:4126.600500px;}
.y7{bottom:4175.112000px;}
.y6{bottom:4246.096500px;}
.y34{bottom:4252.129500px;}
.y5{bottom:4317.079500px;}
.y33{bottom:4335.651000px;}
.y4{bottom:4388.064000px;}
.y3{bottom:4498.489500px;}
.y2{bottom:4748.067000px;}
.y1{bottom:4875.838500px;}
.ha{height:131.993431px;}
.h9{height:147.182850px;}
.h5{height:158.448276px;}
.h7{height:176.682600px;}
.h4{height:190.049573px;}
.h8{height:191.766276px;}
.hb{height:202.074280px;}
.h6{height:211.920300px;}
.hc{height:244.158192px;}
.h2{height:293.007024px;}
.h3{height:305.215650px;}
.h0{height:5081.103000px;}
.h1{height:5081.250000px;}
.w0{width:3601.417500px;}
.w1{width:3601.500000px;}
.x0{left:0.000000px;}
.x4{left:26.506500px;}
.x6{left:40.722000px;}
.x5{left:91.960500px;}
.x3{left:93.613500px;}
.x7{left:106.396500px;}
.x11{left:706.024500px;}
.x1{left:851.896500px;}
.x8{left:1053.516000px;}
.x10{left:1131.817500px;}
.x9{left:1189.752000px;}
.x2{left:1266.007500px;}
.xd{left:1858.492500px;}
.xf{left:1876.620000px;}
.xe{left:1923.946500px;}
.xa{left:1925.599500px;}
.xb{left:1962.402000px;}
.xc{left:1964.865000px;}
@media print{
.v1{vertical-align:-31.408000pt;}
.v3{vertical-align:-26.165333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.616000pt;}
.v4{vertical-align:75.989333pt;}
.ls2c{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000235pt;}
.ls22{letter-spacing:0.000302pt;}
.ls7{letter-spacing:0.001025pt;}
.ls21{letter-spacing:0.001111pt;}
.ls20{letter-spacing:0.001496pt;}
.lse{letter-spacing:0.001517pt;}
.ls16{letter-spacing:0.005760pt;}
.ls10{letter-spacing:0.006851pt;}
.ls28{letter-spacing:2.650301pt;}
.ls1a{letter-spacing:2.652101pt;}
.ls12{letter-spacing:2.656535pt;}
.ls1d{letter-spacing:2.657435pt;}
.ls8{letter-spacing:13.208839pt;}
.ls29{letter-spacing:21.866872pt;}
.ls6{letter-spacing:34.893431pt;}
.ls24{letter-spacing:41.424580pt;}
.ls23{letter-spacing:41.429913pt;}
.ls1c{letter-spacing:42.865330pt;}
.ls1f{letter-spacing:47.677584pt;}
.ls2{letter-spacing:48.871594pt;}
.ls13{letter-spacing:49.728587pt;}
.ls17{letter-spacing:49.734205pt;}
.lsf{letter-spacing:49.739093pt;}
.ls5{letter-spacing:58.162102pt;}
.ls2b{letter-spacing:58.162408pt;}
.ls25{letter-spacing:58.164883pt;}
.ls15{letter-spacing:59.499350pt;}
.ls18{letter-spacing:59.644665pt;}
.ls4{letter-spacing:59.890321pt;}
.ls9{letter-spacing:60.814173pt;}
.ls2a{letter-spacing:60.826290pt;}
.ls27{letter-spacing:61.122261pt;}
.lsa{letter-spacing:70.843202pt;}
.ls26{letter-spacing:71.374173pt;}
.ls14{letter-spacing:73.205714pt;}
.ls1{letter-spacing:73.313398pt;}
.ls11{letter-spacing:80.033864pt;}
.ls0{letter-spacing:110.108411pt;}
.ls3{letter-spacing:110.539047pt;}
.lsb{letter-spacing:116.368381pt;}
.lsc{letter-spacing:116.373714pt;}
.ls1e{letter-spacing:158.208235pt;}
.lsd{letter-spacing:181.534173pt;}
.ls1b{letter-spacing:205.434902pt;}
.ws11{word-spacing:-133.305059pt;}
.ws31{word-spacing:-111.047825pt;}
.ws15{word-spacing:-98.544393pt;}
.ws13{word-spacing:-98.426704pt;}
.ws10{word-spacing:-52.287580pt;}
.ws18{word-spacing:-49.732667pt;}
.ws16{word-spacing:-36.601093pt;}
.ws2{word-spacing:-14.720869pt;}
.ws14{word-spacing:-13.166307pt;}
.ws2c{word-spacing:-12.731563pt;}
.ws3{word-spacing:-12.333701pt;}
.ws4{word-spacing:-11.935840pt;}
.wsf{word-spacing:-11.537979pt;}
.ws32{word-spacing:-10.966193pt;}
.ws1c{word-spacing:-9.747603pt;}
.wse{word-spacing:-8.951880pt;}
.wsa{word-spacing:-7.758296pt;}
.ws42{word-spacing:-2.586099pt;}
.ws3d{word-spacing:-2.548060pt;}
.ws2f{word-spacing:-2.542727pt;}
.ws2b{word-spacing:-2.542301pt;}
.ws1d{word-spacing:-2.188237pt;}
.ws1a{word-spacing:-1.392515pt;}
.ws3f{word-spacing:-0.596792pt;}
.ws4a{word-spacing:-0.301430pt;}
.ws1{word-spacing:-0.238606pt;}
.ws46{word-spacing:-0.165717pt;}
.ws3c{word-spacing:-0.082879pt;}
.ws39{word-spacing:-0.042099pt;}
.ws3b{word-spacing:-0.040048pt;}
.ws3a{word-spacing:-0.036765pt;}
.ws38{word-spacing:-0.000499pt;}
.ws6{word-spacing:0.000000pt;}
.ws40{word-spacing:0.397861pt;}
.ws41{word-spacing:2.188237pt;}
.ws43{word-spacing:3.182891pt;}
.ws44{word-spacing:3.779683pt;}
.ws2d{word-spacing:3.978613pt;}
.ws1b{word-spacing:5.371128pt;}
.ws2e{word-spacing:5.926065pt;}
.ws3e{word-spacing:6.365781pt;}
.ws9{word-spacing:6.564712pt;}
.ws7{word-spacing:6.763643pt;}
.ws5{word-spacing:7.957227pt;}
.ws17{word-spacing:8.355088pt;}
.ws8{word-spacing:10.145464pt;}
.ws45{word-spacing:10.543325pt;}
.wsd{word-spacing:12.731563pt;}
.ws22{word-spacing:15.922125pt;}
.ws36{word-spacing:16.778856pt;}
.ws1f{word-spacing:18.450307pt;}
.ws23{word-spacing:18.450907pt;}
.ws20{word-spacing:18.500552pt;}
.ws12{word-spacing:19.613785pt;}
.ws34{word-spacing:21.085640pt;}
.ws1e{word-spacing:33.619283pt;}
.ws37{word-spacing:41.263483pt;}
.ws27{word-spacing:44.532148pt;}
.ws26{word-spacing:44.545273pt;}
.ws29{word-spacing:47.041032pt;}
.ws28{word-spacing:47.071949pt;}
.ws24{word-spacing:47.091216pt;}
.ws21{word-spacing:49.062795pt;}
.wsc{word-spacing:59.412861pt;}
.wsb{word-spacing:59.414425pt;}
.ws48{word-spacing:75.053431pt;}
.ws47{word-spacing:75.054651pt;}
.ws49{word-spacing:75.055663pt;}
.ws4b{word-spacing:75.056037pt;}
.ws0{word-spacing:90.072530pt;}
.ws35{word-spacing:93.924737pt;}
.ws33{word-spacing:95.728746pt;}
.ws25{word-spacing:116.071307pt;}
.ws2a{word-spacing:138.205785pt;}
.ws30{word-spacing:1160.110497pt;}
.ws19{word-spacing:2890.529928pt;}
._26{margin-left:-19.088469pt;}
._12{margin-left:-16.403367pt;}
._2a{margin-left:-15.071493pt;}
._16{margin-left:-12.532632pt;}
._5{margin-left:-11.419508pt;}
._17{margin-left:-9.747603pt;}
._27{margin-left:-8.409515pt;}
._29{margin-left:-6.812060pt;}
._0{margin-left:-4.340845pt;}
._1{margin-left:-2.893897pt;}
._3{margin-left:-1.908847pt;}
._1c{margin-left:-0.994653pt;}
._7{width:1.193584pt;}
._2{width:2.532159pt;}
._15{width:3.579088pt;}
._25{width:5.649310pt;}
._1b{width:6.827814pt;}
._14{width:8.111799pt;}
._13{width:11.039517pt;}
._4{width:34.099985pt;}
._6{width:37.995757pt;}
._9{width:39.866593pt;}
._11{width:41.098188pt;}
._19{width:42.291772pt;}
._e{width:43.286426pt;}
._1a{width:48.458623pt;}
._8{width:54.426543pt;}
._b{width:58.206226pt;}
._c{width:63.018573pt;}
._22{width:64.583363pt;}
._10{width:65.836447pt;}
._20{width:69.824664pt;}
._18{width:74.201139pt;}
._24{width:76.355633pt;}
._d{width:77.911852pt;}
._a{width:81.561573pt;}
._28{width:82.914674pt;}
._1d{width:84.437655pt;}
._f{width:96.083512pt;}
._1e{width:113.571954pt;}
._1f{width:152.762370pt;}
._21{width:287.228530pt;}
._23{width:400.868939pt;}
.fs8{font-size:122.106667pt;}
.fs5{font-size:146.580267pt;}
.fs6{font-size:165.716800pt;}
.fs7{font-size:174.438933pt;}
.fs2{font-size:198.930667pt;}
.fs4{font-size:209.401600pt;}
.fs1{font-size:238.605867pt;}
.fs3{font-size:251.164800pt;}
.fs9{font-size:301.429867pt;}
.fs0{font-size:361.737067pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:152.096000pt;}
.y5a{bottom:245.300000pt;}
.y59{bottom:475.108000pt;}
.y32{bottom:480.510667pt;}
.y58{bottom:530.633333pt;}
.y31{bottom:543.606667pt;}
.y57{bottom:586.158667pt;}
.y30{bottom:606.704000pt;}
.y56{bottom:641.684000pt;}
.y2f{bottom:669.800000pt;}
.y55{bottom:697.209333pt;}
.y2e{bottom:732.897333pt;}
.y54{bottom:787.793333pt;}
.y2d{bottom:795.993333pt;}
.y2c{bottom:859.090667pt;}
.y2b{bottom:922.186667pt;}
.y53{bottom:952.141333pt;}
.y2a{bottom:985.284000pt;}
.y52{bottom:1015.238667pt;}
.y29{bottom:1048.380000pt;}
.y51{bottom:1082.320000pt;}
.y28{bottom:1111.477333pt;}
.y50{bottom:1149.401333pt;}
.y27{bottom:1174.573333pt;}
.y4f{bottom:1216.484000pt;}
.y4e{bottom:1279.580000pt;}
.y26{bottom:1286.509333pt;}
.y4d{bottom:1373.808000pt;}
.y25{bottom:1425.388000pt;}
.y24{bottom:1488.485333pt;}
.y4c{bottom:1501.248000pt;}
.y4b{bottom:1564.344000pt;}
.y23{bottom:1569.044000pt;}
.y4a{bottom:1627.441333pt;}
.y22{bottom:1632.140000pt;}
.y49{bottom:1690.538667pt;}
.y21{bottom:1699.222667pt;}
.y48{bottom:1753.634667pt;}
.y20{bottom:1762.318667pt;}
.y47{bottom:1816.732000pt;}
.y1f{bottom:1825.416000pt;}
.y46{bottom:1879.828000pt;}
.y1e{bottom:1892.497333pt;}
.y45{bottom:1942.925333pt;}
.y1d{bottom:1959.580000pt;}
.y44{bottom:2006.021333pt;}
.y1c{bottom:2022.676000pt;}
.y43{bottom:2069.118667pt;}
.y1b{bottom:2085.773333pt;}
.y42{bottom:2167.274667pt;}
.y1a{bottom:2286.193333pt;}
.y41{bottom:2327.406667pt;}
.y40{bottom:2390.504000pt;}
.y19{bottom:2450.541333pt;}
.y3f{bottom:2453.600000pt;}
.y18{bottom:2513.637333pt;}
.y3e{bottom:2516.697333pt;}
.y3d{bottom:2579.793333pt;}
.y17{bottom:2580.720000pt;}
.y3c{bottom:2642.890667pt;}
.y16{bottom:2643.816000pt;}
.y3b{bottom:2705.986667pt;}
.y15{bottom:2710.897333pt;}
.y3a{bottom:2769.084000pt;}
.y14{bottom:2773.994667pt;}
.y39{bottom:2832.180000pt;}
.y13{bottom:2841.076000pt;}
.y38{bottom:2895.277333pt;}
.y12{bottom:2904.173333pt;}
.y11{bottom:2967.269333pt;}
.y10{bottom:3030.366667pt;}
.yf{bottom:3093.464000pt;}
.ye{bottom:3205.190667pt;}
.yd{bottom:3332.630667pt;}
.yc{bottom:3395.726667pt;}
.yb{bottom:3458.824000pt;}
.ya{bottom:3521.920000pt;}
.y37{bottom:3557.040000pt;}
.y9{bottom:3585.017333pt;}
.y36{bottom:3612.564000pt;}
.y8{bottom:3648.113333pt;}
.y35{bottom:3668.089333pt;}
.y7{bottom:3711.210667pt;}
.y6{bottom:3774.308000pt;}
.y34{bottom:3779.670667pt;}
.y5{bottom:3837.404000pt;}
.y33{bottom:3853.912000pt;}
.y4{bottom:3900.501333pt;}
.y3{bottom:3998.657333pt;}
.y2{bottom:4220.504000pt;}
.y1{bottom:4334.078667pt;}
.ha{height:117.327494pt;}
.h9{height:130.829200pt;}
.h5{height:140.842912pt;}
.h7{height:157.051200pt;}
.h4{height:168.932954pt;}
.h8{height:170.458912pt;}
.hb{height:179.621582pt;}
.h6{height:188.373600pt;}
.hc{height:217.029504pt;}
.h2{height:260.450688pt;}
.h3{height:271.302800pt;}
.h0{height:4516.536000pt;}
.h1{height:4516.666667pt;}
.w0{width:3201.260000pt;}
.w1{width:3201.333333pt;}
.x0{left:0.000000pt;}
.x4{left:23.561333pt;}
.x6{left:36.197333pt;}
.x5{left:81.742667pt;}
.x3{left:83.212000pt;}
.x7{left:94.574667pt;}
.x11{left:627.577333pt;}
.x1{left:757.241333pt;}
.x8{left:936.458667pt;}
.x10{left:1006.060000pt;}
.x9{left:1057.557333pt;}
.x2{left:1125.340000pt;}
.xd{left:1651.993333pt;}
.xf{left:1668.106667pt;}
.xe{left:1710.174667pt;}
.xa{left:1711.644000pt;}
.xb{left:1744.357333pt;}
.xc{left:1746.546667pt;}
}




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