
    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_4d1a6873f7bc80df0a5cb955.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_cb3e0900d9aa3a2c28313e6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_8f860ed7356599ced5549192.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_ca228f74c3b541cfb4532cdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_8b5e3575fb8be427d65d210e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_0eaedbc67fe85b8abed99528.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.110533;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_c719ea540cc607b821c08b9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961000;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_a732e3f4cccb80bbe9addb14.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.712000;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_68bcd5c77510fc2c15dbe624.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.974000;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_0bbabf08fcdc68058daf7862.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_aa9e96cd778ee0144ec576cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_7356e44f4a618155bd2a0603.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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;}
.ls41{letter-spacing:-1.863720px;}
.ls2d{letter-spacing:-1.803600px;}
.ls2b{letter-spacing:-0.961920px;}
.ls24{letter-spacing:-0.937440px;}
.ls26{letter-spacing:-0.901800px;}
.ls2f{letter-spacing:-0.841680px;}
.ls29{letter-spacing:-0.781560px;}
.ls2e{letter-spacing:-0.721440px;}
.ls25{letter-spacing:-0.661320px;}
.ls2a{letter-spacing:-0.601200px;}
.ls30{letter-spacing:-0.541080px;}
.ls32{letter-spacing:-0.480960px;}
.ls33{letter-spacing:-0.420840px;}
.ls31{letter-spacing:-0.360720px;}
.ls2c{letter-spacing:-0.300600px;}
.ls27{letter-spacing:-0.240480px;}
.ls23{letter-spacing:-0.234360px;}
.ls20{letter-spacing:-0.180360px;}
.ls22{letter-spacing:-0.131760px;}
.ls1e{letter-spacing:-0.120240px;}
.ls43{letter-spacing:-0.078120px;}
.ls28{letter-spacing:-0.060120px;}
.ls1f{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.054684px;}
.ls21{letter-spacing:0.060120px;}
.ls42{letter-spacing:0.065880px;}
.ls1{letter-spacing:0.078120px;}
.ls0{letter-spacing:0.120240px;}
.ls5{letter-spacing:0.180360px;}
.ls16{letter-spacing:0.300600px;}
.ls6{letter-spacing:0.541080px;}
.ls17{letter-spacing:0.661320px;}
.ls39{letter-spacing:1.202400px;}
.ls38{letter-spacing:1.274544px;}
.ls3d{letter-spacing:1.563120px;}
.ls13{letter-spacing:2.284560px;}
.ls14{letter-spacing:2.645280px;}
.ls3f{letter-spacing:2.717424px;}
.ls3c{letter-spacing:3.006000px;}
.ls11{letter-spacing:3.366720px;}
.ls12{letter-spacing:3.727440px;}
.lsf{letter-spacing:4.088160px;}
.ls1b{letter-spacing:4.809600px;}
.ls10{letter-spacing:5.170320px;}
.ls1a{letter-spacing:5.933844px;}
.ls19{letter-spacing:6.973920px;}
.ls18{letter-spacing:7.352676px;}
.ls3a{letter-spacing:8.056080px;}
.ls3b{letter-spacing:8.777520px;}
.ls1d{letter-spacing:10.551060px;}
.ls1c{letter-spacing:10.581120px;}
.ls9{letter-spacing:10.941840px;}
.ls7{letter-spacing:12.024000px;}
.lsa{letter-spacing:13.106160px;}
.lsb{letter-spacing:13.466880px;}
.lsc{letter-spacing:13.827600px;}
.ls35{letter-spacing:15.631200px;}
.ls37{letter-spacing:15.991920px;}
.ls34{letter-spacing:16.713360px;}
.ls36{letter-spacing:17.074080px;}
.lsd{letter-spacing:17.795520px;}
.ls3{letter-spacing:29.098080px;}
.ls2{letter-spacing:29.458800px;}
.ls4{letter-spacing:30.180240px;}
.ls15{letter-spacing:34.689240px;}
.ls8{letter-spacing:39.198240px;}
.lse{letter-spacing:62.103960px;}
.ls40{letter-spacing:848.954520px;}
.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;}
}
.ws22{word-spacing:-41.553000px;}
.ws6{word-spacing:-21.170520px;}
.ws5{word-spacing:-21.092400px;}
.ws7{word-spacing:-20.154960px;}
.ws9{word-spacing:-16.352640px;}
.ws12{word-spacing:-16.292520px;}
.wsf{word-spacing:-16.232400px;}
.wsb{word-spacing:-16.172280px;}
.ws2e{word-spacing:-16.112160px;}
.ws10{word-spacing:-16.052040px;}
.wsa{word-spacing:-15.991920px;}
.ws11{word-spacing:-15.931800px;}
.ws2d{word-spacing:-15.877080px;}
.ws1f{word-spacing:-15.871680px;}
.ws1a{word-spacing:-15.691320px;}
.wsd{word-spacing:-15.631200px;}
.ws8{word-spacing:-15.571080px;}
.wsc{word-spacing:-15.450840px;}
.ws20{word-spacing:-14.789520px;}
.ws2b{word-spacing:-14.729400px;}
.ws1c{word-spacing:-14.669280px;}
.ws4{word-spacing:-14.609160px;}
.ws13{word-spacing:-14.549040px;}
.ws14{word-spacing:-14.488920px;}
.ws15{word-spacing:-14.428800px;}
.ws16{word-spacing:-14.308560px;}
.ws1b{word-spacing:-14.248440px;}
.ws21{word-spacing:-14.188320px;}
.ws1d{word-spacing:-14.128200px;}
.ws18{word-spacing:-13.887720px;}
.ws1e{word-spacing:-13.827600px;}
.ws19{word-spacing:-13.767480px;}
.wse{word-spacing:-13.647240px;}
.ws17{word-spacing:-12.805560px;}
.ws32{word-spacing:-0.312480px;}
.ws2a{word-spacing:-0.240480px;}
.ws30{word-spacing:-0.197640px;}
.ws28{word-spacing:-0.180360px;}
.ws3{word-spacing:-0.120240px;}
.ws25{word-spacing:-0.078120px;}
.ws2{word-spacing:-0.060120px;}
.ws23{word-spacing:0.000000px;}
.ws0{word-spacing:0.060120px;}
.ws2c{word-spacing:0.065880px;}
.ws31{word-spacing:0.078120px;}
.ws1{word-spacing:0.120240px;}
.ws24{word-spacing:0.131760px;}
.ws29{word-spacing:0.180360px;}
.ws26{word-spacing:0.234360px;}
.ws27{word-spacing:0.901800px;}
.ws2f{word-spacing:1.863720px;}
._4{margin-left:-6.640200px;}
._5{margin-left:-5.234040px;}
._7{margin-left:-3.835656px;}
._6{margin-left:-2.819628px;}
._3{margin-left:-1.393200px;}
._0{width:1.052100px;}
._9{width:2.308608px;}
._8{width:3.468924px;}
._b{width:4.641264px;}
._13{width:5.812020px;}
._f{width:7.378308px;}
._a{width:9.202788px;}
._10{width:11.344644px;}
._16{width:13.068504px;}
._d{width:16.076088px;}
._c{width:17.098128px;}
._12{width:18.571068px;}
._19{width:19.647216px;}
._11{width:21.559032px;}
._1d{width:23.296500px;}
._15{width:28.587060px;}
._1e{width:30.516912px;}
._18{width:32.554980px;}
._1a{width:42.811452px;}
._17{width:47.001816px;}
._1b{width:49.839480px;}
._e{width:57.679128px;}
._1{width:204.438060px;}
._14{width:480.139200px;}
._1c{width:821.359440px;}
._2{width:823.163040px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:78.120000px;}
.fs3{font-size:171.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:4.140000px;}
.y37{bottom:94.909590px;}
.y56{bottom:95.074920px;}
.y36{bottom:114.794280px;}
.y55{bottom:114.959610px;}
.y35{bottom:134.678970px;}
.y54{bottom:134.844300px;}
.y34{bottom:154.563660px;}
.y53{bottom:154.728990px;}
.y33{bottom:174.448350px;}
.y52{bottom:174.613680px;}
.y32{bottom:194.242860px;}
.y51{bottom:194.408190px;}
.y31{bottom:214.127550px;}
.y50{bottom:214.292880px;}
.y30{bottom:234.012240px;}
.y4f{bottom:234.177570px;}
.y2f{bottom:253.896930px;}
.y4e{bottom:254.062260px;}
.y2e{bottom:273.781620px;}
.y4d{bottom:273.946950px;}
.y2d{bottom:293.666310px;}
.y4c{bottom:293.831640px;}
.y97{bottom:309.748590px;}
.y2c{bottom:313.460820px;}
.y4b{bottom:313.626150px;}
.y96{bottom:329.633280px;}
.y2b{bottom:333.345510px;}
.y4a{bottom:333.510840px;}
.y95{bottom:349.517970px;}
.y2a{bottom:353.230200px;}
.y49{bottom:353.395530px;}
.y94{bottom:369.402660px;}
.y29{bottom:373.114890px;}
.y48{bottom:373.280220px;}
.y93{bottom:389.287350px;}
.y28{bottom:392.999580px;}
.y47{bottom:393.164910px;}
.y92{bottom:409.172040px;}
.y27{bottom:412.884270px;}
.y46{bottom:413.049600px;}
.y91{bottom:428.966550px;}
.y26{bottom:432.678780px;}
.y45{bottom:432.844110px;}
.y90{bottom:448.851240px;}
.y25{bottom:452.563470px;}
.y44{bottom:452.728800px;}
.y8f{bottom:468.735930px;}
.y24{bottom:472.448160px;}
.y43{bottom:472.613490px;}
.y8e{bottom:488.620620px;}
.y23{bottom:492.332850px;}
.y42{bottom:492.498180px;}
.y8d{bottom:508.505310px;}
.y22{bottom:512.217540px;}
.y41{bottom:512.382870px;}
.y8c{bottom:528.390000px;}
.y21{bottom:532.102230px;}
.y40{bottom:532.267560px;}
.y8b{bottom:549.531810px;}
.y20{bottom:551.896740px;}
.y3f{bottom:552.062070px;}
.y1f{bottom:571.781430px;}
.y3e{bottom:571.946760px;}
.y8a{bottom:575.370000px;}
.y1e{bottom:591.666120px;}
.y3d{bottom:591.831450px;}
.y89{bottom:600.304500px;}
.y1d{bottom:611.550810px;}
.y3c{bottom:611.716140px;}
.y88{bottom:622.176660px;}
.y1c{bottom:631.435500px;}
.y3b{bottom:631.600830px;}
.y87{bottom:643.950000px;}
.y1b{bottom:651.320190px;}
.y3a{bottom:651.485520px;}
.y86{bottom:665.698680px;}
.y57{bottom:666.720000px;}
.y1a{bottom:671.114700px;}
.y39{bottom:671.280030px;}
.y85{bottom:685.583370px;}
.y19{bottom:690.999390px;}
.y38{bottom:691.164720px;}
.y84{bottom:705.468060px;}
.y18{bottom:710.884080px;}
.y6d{bottom:725.247540px;}
.y17{bottom:730.768770px;}
.y6c{bottom:745.132230px;}
.y83{bottom:745.252470px;}
.y16{bottom:750.653460px;}
.y6b{bottom:765.016920px;}
.y82{bottom:765.137160px;}
.y15{bottom:770.538150px;}
.y6a{bottom:784.811430px;}
.y81{bottom:784.931670px;}
.y14{bottom:790.332660px;}
.y69{bottom:804.696120px;}
.y80{bottom:804.816360px;}
.y13{bottom:810.217350px;}
.y68{bottom:824.580810px;}
.y7f{bottom:824.701050px;}
.y12{bottom:830.102040px;}
.y67{bottom:844.465500px;}
.y7e{bottom:844.585740px;}
.y11{bottom:849.986730px;}
.y66{bottom:864.350190px;}
.y7d{bottom:864.470430px;}
.y10{bottom:869.871420px;}
.y65{bottom:884.234880px;}
.y7c{bottom:884.355120px;}
.yf{bottom:889.756110px;}
.y64{bottom:904.029390px;}
.y7b{bottom:904.149630px;}
.ye{bottom:909.550620px;}
.y63{bottom:923.914080px;}
.y7a{bottom:924.034320px;}
.yd{bottom:929.435310px;}
.y62{bottom:943.798770px;}
.y79{bottom:943.919010px;}
.yc{bottom:949.320000px;}
.y61{bottom:963.683460px;}
.y78{bottom:963.803700px;}
.yb{bottom:970.461810px;}
.y60{bottom:983.568150px;}
.y77{bottom:983.688390px;}
.ya{bottom:996.300000px;}
.y5f{bottom:1003.452840px;}
.y76{bottom:1003.573080px;}
.y9{bottom:1021.225680px;}
.y5e{bottom:1023.247350px;}
.y75{bottom:1023.367590px;}
.y8{bottom:1043.097840px;}
.y5d{bottom:1043.132040px;}
.y74{bottom:1043.252280px;}
.y5c{bottom:1063.016730px;}
.y73{bottom:1063.136970px;}
.y7{bottom:1064.970000px;}
.y5b{bottom:1082.901420px;}
.y72{bottom:1083.021660px;}
.y6{bottom:1086.480000px;}
.y5a{bottom:1102.786110px;}
.y71{bottom:1102.906350px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y59{bottom:1122.670800px;}
.y70{bottom:1122.791040px;}
.y3{bottom:1142.465310px;}
.y6f{bottom:1142.585550px;}
.y2{bottom:1162.350000px;}
.y6e{bottom:1162.470240px;}
.y1{bottom:1193.940000px;}
.h4{height:31.590000px;}
.hd{height:39.778500px;}
.hb{height:42.084000px;}
.h2{height:42.271875px;}
.h6{height:45.210240px;}
.ha{height:45.811440px;}
.h8{height:49.541760px;}
.h3{height:52.973736px;}
.hc{height:53.839464px;}
.h5{height:58.049064px;}
.hf{height:58.746240px;}
.h7{height:58.997736px;}
.h9{height:69.959064px;}
.he{height:150.673800px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:26.370000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:42.210000px;}
.x1{left:85.050000px;}
.x7{left:90.180000px;}
.x9{left:106.384950px;}
.x11{left:108.362790px;}
.xa{left:111.435030px;}
.x8{left:176.053410px;}
.x10{left:203.220000px;}
.x6{left:216.725400px;}
.xe{left:232.920180px;}
.x3{left:326.160000px;}
.x5{left:384.570000px;}
.xd{left:386.190000px;}
.xf{left:446.470200px;}
.x2{left:457.110000px;}
.xb{left:473.372460px;}
.xc{left:494.700030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls41{letter-spacing:-1.656640pt;}
.ls2d{letter-spacing:-1.603200pt;}
.ls2b{letter-spacing:-0.855040pt;}
.ls24{letter-spacing:-0.833280pt;}
.ls26{letter-spacing:-0.801600pt;}
.ls2f{letter-spacing:-0.748160pt;}
.ls29{letter-spacing:-0.694720pt;}
.ls2e{letter-spacing:-0.641280pt;}
.ls25{letter-spacing:-0.587840pt;}
.ls2a{letter-spacing:-0.534400pt;}
.ls30{letter-spacing:-0.480960pt;}
.ls32{letter-spacing:-0.427520pt;}
.ls33{letter-spacing:-0.374080pt;}
.ls31{letter-spacing:-0.320640pt;}
.ls2c{letter-spacing:-0.267200pt;}
.ls27{letter-spacing:-0.213760pt;}
.ls23{letter-spacing:-0.208320pt;}
.ls20{letter-spacing:-0.160320pt;}
.ls22{letter-spacing:-0.117120pt;}
.ls1e{letter-spacing:-0.106880pt;}
.ls43{letter-spacing:-0.069440pt;}
.ls28{letter-spacing:-0.053440pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.048608pt;}
.ls21{letter-spacing:0.053440pt;}
.ls42{letter-spacing:0.058560pt;}
.ls1{letter-spacing:0.069440pt;}
.ls0{letter-spacing:0.106880pt;}
.ls5{letter-spacing:0.160320pt;}
.ls16{letter-spacing:0.267200pt;}
.ls6{letter-spacing:0.480960pt;}
.ls17{letter-spacing:0.587840pt;}
.ls39{letter-spacing:1.068800pt;}
.ls38{letter-spacing:1.132928pt;}
.ls3d{letter-spacing:1.389440pt;}
.ls13{letter-spacing:2.030720pt;}
.ls14{letter-spacing:2.351360pt;}
.ls3f{letter-spacing:2.415488pt;}
.ls3c{letter-spacing:2.672000pt;}
.ls11{letter-spacing:2.992640pt;}
.ls12{letter-spacing:3.313280pt;}
.lsf{letter-spacing:3.633920pt;}
.ls1b{letter-spacing:4.275200pt;}
.ls10{letter-spacing:4.595840pt;}
.ls1a{letter-spacing:5.274528pt;}
.ls19{letter-spacing:6.199040pt;}
.ls18{letter-spacing:6.535712pt;}
.ls3a{letter-spacing:7.160960pt;}
.ls3b{letter-spacing:7.802240pt;}
.ls1d{letter-spacing:9.378720pt;}
.ls1c{letter-spacing:9.405440pt;}
.ls9{letter-spacing:9.726080pt;}
.ls7{letter-spacing:10.688000pt;}
.lsa{letter-spacing:11.649920pt;}
.lsb{letter-spacing:11.970560pt;}
.lsc{letter-spacing:12.291200pt;}
.ls35{letter-spacing:13.894400pt;}
.ls37{letter-spacing:14.215040pt;}
.ls34{letter-spacing:14.856320pt;}
.ls36{letter-spacing:15.176960pt;}
.lsd{letter-spacing:15.818240pt;}
.ls3{letter-spacing:25.864960pt;}
.ls2{letter-spacing:26.185600pt;}
.ls4{letter-spacing:26.826880pt;}
.ls15{letter-spacing:30.834880pt;}
.ls8{letter-spacing:34.842880pt;}
.lse{letter-spacing:55.203520pt;}
.ls40{letter-spacing:754.626240pt;}
.ws22{word-spacing:-36.936000pt;}
.ws6{word-spacing:-18.818240pt;}
.ws5{word-spacing:-18.748800pt;}
.ws7{word-spacing:-17.915520pt;}
.ws9{word-spacing:-14.535680pt;}
.ws12{word-spacing:-14.482240pt;}
.wsf{word-spacing:-14.428800pt;}
.wsb{word-spacing:-14.375360pt;}
.ws2e{word-spacing:-14.321920pt;}
.ws10{word-spacing:-14.268480pt;}
.wsa{word-spacing:-14.215040pt;}
.ws11{word-spacing:-14.161600pt;}
.ws2d{word-spacing:-14.112960pt;}
.ws1f{word-spacing:-14.108160pt;}
.ws1a{word-spacing:-13.947840pt;}
.wsd{word-spacing:-13.894400pt;}
.ws8{word-spacing:-13.840960pt;}
.wsc{word-spacing:-13.734080pt;}
.ws20{word-spacing:-13.146240pt;}
.ws2b{word-spacing:-13.092800pt;}
.ws1c{word-spacing:-13.039360pt;}
.ws4{word-spacing:-12.985920pt;}
.ws13{word-spacing:-12.932480pt;}
.ws14{word-spacing:-12.879040pt;}
.ws15{word-spacing:-12.825600pt;}
.ws16{word-spacing:-12.718720pt;}
.ws1b{word-spacing:-12.665280pt;}
.ws21{word-spacing:-12.611840pt;}
.ws1d{word-spacing:-12.558400pt;}
.ws18{word-spacing:-12.344640pt;}
.ws1e{word-spacing:-12.291200pt;}
.ws19{word-spacing:-12.237760pt;}
.wse{word-spacing:-12.130880pt;}
.ws17{word-spacing:-11.382720pt;}
.ws32{word-spacing:-0.277760pt;}
.ws2a{word-spacing:-0.213760pt;}
.ws30{word-spacing:-0.175680pt;}
.ws28{word-spacing:-0.160320pt;}
.ws3{word-spacing:-0.106880pt;}
.ws25{word-spacing:-0.069440pt;}
.ws2{word-spacing:-0.053440pt;}
.ws23{word-spacing:0.000000pt;}
.ws0{word-spacing:0.053440pt;}
.ws2c{word-spacing:0.058560pt;}
.ws31{word-spacing:0.069440pt;}
.ws1{word-spacing:0.106880pt;}
.ws24{word-spacing:0.117120pt;}
.ws29{word-spacing:0.160320pt;}
.ws26{word-spacing:0.208320pt;}
.ws27{word-spacing:0.801600pt;}
.ws2f{word-spacing:1.656640pt;}
._4{margin-left:-5.902400pt;}
._5{margin-left:-4.652480pt;}
._7{margin-left:-3.409472pt;}
._6{margin-left:-2.506336pt;}
._3{margin-left:-1.238400pt;}
._0{width:0.935200pt;}
._9{width:2.052096pt;}
._8{width:3.083488pt;}
._b{width:4.125568pt;}
._13{width:5.166240pt;}
._f{width:6.558496pt;}
._a{width:8.180256pt;}
._10{width:10.084128pt;}
._16{width:11.616448pt;}
._d{width:14.289856pt;}
._c{width:15.198336pt;}
._12{width:16.507616pt;}
._19{width:17.464192pt;}
._11{width:19.163584pt;}
._1d{width:20.708000pt;}
._15{width:25.410720pt;}
._1e{width:27.126144pt;}
._18{width:28.937760pt;}
._1a{width:38.054624pt;}
._17{width:41.779392pt;}
._1b{width:44.301760pt;}
._e{width:51.270336pt;}
._1{width:181.722720pt;}
._14{width:426.790400pt;}
._1c{width:730.097280pt;}
._2{width:731.700480pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.fs3{font-size:152.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:3.680000pt;}
.y37{bottom:84.364080pt;}
.y56{bottom:84.511040pt;}
.y36{bottom:102.039360pt;}
.y55{bottom:102.186320pt;}
.y35{bottom:119.714640pt;}
.y54{bottom:119.861600pt;}
.y34{bottom:137.389920pt;}
.y53{bottom:137.536880pt;}
.y33{bottom:155.065200pt;}
.y52{bottom:155.212160pt;}
.y32{bottom:172.660320pt;}
.y51{bottom:172.807280pt;}
.y31{bottom:190.335600pt;}
.y50{bottom:190.482560pt;}
.y30{bottom:208.010880pt;}
.y4f{bottom:208.157840pt;}
.y2f{bottom:225.686160pt;}
.y4e{bottom:225.833120pt;}
.y2e{bottom:243.361440pt;}
.y4d{bottom:243.508400pt;}
.y2d{bottom:261.036720pt;}
.y4c{bottom:261.183680pt;}
.y97{bottom:275.332080pt;}
.y2c{bottom:278.631840pt;}
.y4b{bottom:278.778800pt;}
.y96{bottom:293.007360pt;}
.y2b{bottom:296.307120pt;}
.y4a{bottom:296.454080pt;}
.y95{bottom:310.682640pt;}
.y2a{bottom:313.982400pt;}
.y49{bottom:314.129360pt;}
.y94{bottom:328.357920pt;}
.y29{bottom:331.657680pt;}
.y48{bottom:331.804640pt;}
.y93{bottom:346.033200pt;}
.y28{bottom:349.332960pt;}
.y47{bottom:349.479920pt;}
.y92{bottom:363.708480pt;}
.y27{bottom:367.008240pt;}
.y46{bottom:367.155200pt;}
.y91{bottom:381.303600pt;}
.y26{bottom:384.603360pt;}
.y45{bottom:384.750320pt;}
.y90{bottom:398.978880pt;}
.y25{bottom:402.278640pt;}
.y44{bottom:402.425600pt;}
.y8f{bottom:416.654160pt;}
.y24{bottom:419.953920pt;}
.y43{bottom:420.100880pt;}
.y8e{bottom:434.329440pt;}
.y23{bottom:437.629200pt;}
.y42{bottom:437.776160pt;}
.y8d{bottom:452.004720pt;}
.y22{bottom:455.304480pt;}
.y41{bottom:455.451440pt;}
.y8c{bottom:469.680000pt;}
.y21{bottom:472.979760pt;}
.y40{bottom:473.126720pt;}
.y8b{bottom:488.472720pt;}
.y20{bottom:490.574880pt;}
.y3f{bottom:490.721840pt;}
.y1f{bottom:508.250160pt;}
.y3e{bottom:508.397120pt;}
.y8a{bottom:511.440000pt;}
.y1e{bottom:525.925440pt;}
.y3d{bottom:526.072400pt;}
.y89{bottom:533.604000pt;}
.y1d{bottom:543.600720pt;}
.y3c{bottom:543.747680pt;}
.y88{bottom:553.045920pt;}
.y1c{bottom:561.276000pt;}
.y3b{bottom:561.422960pt;}
.y87{bottom:572.400000pt;}
.y1b{bottom:578.951280pt;}
.y3a{bottom:579.098240pt;}
.y86{bottom:591.732160pt;}
.y57{bottom:592.640000pt;}
.y1a{bottom:596.546400pt;}
.y39{bottom:596.693360pt;}
.y85{bottom:609.407440pt;}
.y19{bottom:614.221680pt;}
.y38{bottom:614.368640pt;}
.y84{bottom:627.082720pt;}
.y18{bottom:631.896960pt;}
.y6d{bottom:644.664480pt;}
.y17{bottom:649.572240pt;}
.y6c{bottom:662.339760pt;}
.y83{bottom:662.446640pt;}
.y16{bottom:667.247520pt;}
.y6b{bottom:680.015040pt;}
.y82{bottom:680.121920pt;}
.y15{bottom:684.922800pt;}
.y6a{bottom:697.610160pt;}
.y81{bottom:697.717040pt;}
.y14{bottom:702.517920pt;}
.y69{bottom:715.285440pt;}
.y80{bottom:715.392320pt;}
.y13{bottom:720.193200pt;}
.y68{bottom:732.960720pt;}
.y7f{bottom:733.067600pt;}
.y12{bottom:737.868480pt;}
.y67{bottom:750.636000pt;}
.y7e{bottom:750.742880pt;}
.y11{bottom:755.543760pt;}
.y66{bottom:768.311280pt;}
.y7d{bottom:768.418160pt;}
.y10{bottom:773.219040pt;}
.y65{bottom:785.986560pt;}
.y7c{bottom:786.093440pt;}
.yf{bottom:790.894320pt;}
.y64{bottom:803.581680pt;}
.y7b{bottom:803.688560pt;}
.ye{bottom:808.489440pt;}
.y63{bottom:821.256960pt;}
.y7a{bottom:821.363840pt;}
.yd{bottom:826.164720pt;}
.y62{bottom:838.932240pt;}
.y79{bottom:839.039120pt;}
.yc{bottom:843.840000pt;}
.y61{bottom:856.607520pt;}
.y78{bottom:856.714400pt;}
.yb{bottom:862.632720pt;}
.y60{bottom:874.282800pt;}
.y77{bottom:874.389680pt;}
.ya{bottom:885.600000pt;}
.y5f{bottom:891.958080pt;}
.y76{bottom:892.064960pt;}
.y9{bottom:907.756160pt;}
.y5e{bottom:909.553200pt;}
.y75{bottom:909.660080pt;}
.y8{bottom:927.198080pt;}
.y5d{bottom:927.228480pt;}
.y74{bottom:927.335360pt;}
.y5c{bottom:944.903760pt;}
.y73{bottom:945.010640pt;}
.y7{bottom:946.640000pt;}
.y5b{bottom:962.579040pt;}
.y72{bottom:962.685920pt;}
.y6{bottom:965.760000pt;}
.y5a{bottom:980.254320pt;}
.y71{bottom:980.361200pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y59{bottom:997.929600pt;}
.y70{bottom:998.036480pt;}
.y3{bottom:1015.524720pt;}
.y6f{bottom:1015.631600pt;}
.y2{bottom:1033.200000pt;}
.y6e{bottom:1033.306880pt;}
.y1{bottom:1061.280000pt;}
.h4{height:28.080000pt;}
.hd{height:35.358667pt;}
.hb{height:37.408000pt;}
.h2{height:37.575000pt;}
.h6{height:40.186880pt;}
.ha{height:40.721280pt;}
.h8{height:44.037120pt;}
.h3{height:47.087765pt;}
.hc{height:47.857301pt;}
.h5{height:51.599168pt;}
.hf{height:52.218880pt;}
.h7{height:52.442432pt;}
.h9{height:62.185835pt;}
.he{height:133.932267pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:23.440000pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:37.520000pt;}
.x1{left:75.600000pt;}
.x7{left:80.160000pt;}
.x9{left:94.564400pt;}
.x11{left:96.322480pt;}
.xa{left:99.053360pt;}
.x8{left:156.491920pt;}
.x10{left:180.640000pt;}
.x6{left:192.644800pt;}
.xe{left:207.040160pt;}
.x3{left:289.920000pt;}
.x5{left:341.840000pt;}
.xd{left:343.280000pt;}
.xf{left:396.862400pt;}
.x2{left:406.320000pt;}
.xb{left:420.775520pt;}
.xc{left:439.733360pt;}
}




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