
    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_a435551c5e70441995df275a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_253b91309f2dc3d24b174336.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734151;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_63a69f318dd69414758d885f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_3dbdfd1af0af6234884aa34f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7b6f1a2232e067096726c6fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_0a17754ab8aafb94f9e3582d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_97b3e44acdb3d48ea992bea8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e25a301d04913335ec63402f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3bfd4587f8e976ac06807154.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.067200px;}
.ls14{letter-spacing:-0.728640px;}
.ls19{letter-spacing:-0.597600px;}
.ls15{letter-spacing:-0.596160px;}
.ls8{letter-spacing:-0.336960px;}
.ls3{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.264960px;}
.ls4{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.198720px;}
.lsa{letter-spacing:-0.132480px;}
.lsb{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.109440px;}
.ls16{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.ls1a{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.179280px;}
.lse{letter-spacing:0.198000px;}
.ls1b{letter-spacing:0.331200px;}
.ls17{letter-spacing:0.358560px;}
.ls7{letter-spacing:0.395280px;}
.ls10{letter-spacing:0.567360px;}
.ls13{letter-spacing:0.896400px;}
.ls11{letter-spacing:2.053440px;}
.ls1{letter-spacing:2.848320px;}
.ls1c{letter-spacing:5.762880px;}
.lsc{letter-spacing:6.491520px;}
.lsd{letter-spacing:23.051520px;}
.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;}
}
.ws4c{word-spacing:-16.692480px;}
.ws4{word-spacing:-16.560000px;}
.ws35{word-spacing:-16.427520px;}
.ws38{word-spacing:-15.059520px;}
.ws39{word-spacing:-14.880240px;}
.ws4b{word-spacing:-13.392000px;}
.ws1c{word-spacing:-13.284000px;}
.ws1{word-spacing:-12.258000px;}
.ws0{word-spacing:-11.988000px;}
.ws36{word-spacing:-10.440000px;}
.ws37{word-spacing:-9.720000px;}
.ws33{word-spacing:-0.728640px;}
.ws2{word-spacing:-0.527040px;}
.ws48{word-spacing:-0.179280px;}
.ws13{word-spacing:-0.132480px;}
.ws49{word-spacing:-0.119520px;}
.ws8{word-spacing:-0.066240px;}
.ws3{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.ws47{word-spacing:0.059760px;}
.ws46{word-spacing:0.132480px;}
.ws40{word-spacing:0.216000px;}
.ws7{word-spacing:0.264960px;}
.ws6{word-spacing:0.270000px;}
.ws9{word-spacing:0.463680px;}
.ws27{word-spacing:0.596160px;}
.ws4a{word-spacing:0.597600px;}
.ws34{word-spacing:0.728640px;}
.ws3a{word-spacing:1.324800px;}
.ws11{word-spacing:1.457280px;}
.ws26{word-spacing:2.053440px;}
.wsc{word-spacing:2.185920px;}
.ws1b{word-spacing:2.782080px;}
.ws10{word-spacing:2.914560px;}
.ws1d{word-spacing:3.444480px;}
.ws12{word-spacing:3.576960px;}
.ws2e{word-spacing:4.305600px;}
.ws17{word-spacing:4.901760px;}
.ws24{word-spacing:5.034240px;}
.ws21{word-spacing:5.630400px;}
.ws22{word-spacing:5.762880px;}
.ws3f{word-spacing:6.359040px;}
.ws2d{word-spacing:6.491520px;}
.ws3c{word-spacing:7.087680px;}
.wsa{word-spacing:7.816320px;}
.wsd{word-spacing:7.948800px;}
.ws1a{word-spacing:8.478720px;}
.ws2a{word-spacing:8.611200px;}
.ws44{word-spacing:9.207360px;}
.ws2c{word-spacing:9.936000px;}
.ws30{word-spacing:10.068480px;}
.ws18{word-spacing:10.664640px;}
.ws45{word-spacing:10.797120px;}
.ws28{word-spacing:11.393280px;}
.ws3e{word-spacing:11.525760px;}
.ws50{word-spacing:11.923200px;}
.ws14{word-spacing:12.121920px;}
.ws1f{word-spacing:12.254400px;}
.ws3b{word-spacing:13.579200px;}
.ws41{word-spacing:14.241600px;}
.ws42{word-spacing:14.374080px;}
.ws20{word-spacing:14.970240px;}
.ws23{word-spacing:15.102720px;}
.ws19{word-spacing:15.698880px;}
.wsf{word-spacing:16.427520px;}
.ws43{word-spacing:16.560000px;}
.ws29{word-spacing:17.884800px;}
.wse{word-spacing:18.017280px;}
.ws2f{word-spacing:19.342080px;}
.ws25{word-spacing:19.474560px;}
.ws16{word-spacing:20.004480px;}
.ws55{word-spacing:21.461760px;}
.ws1e{word-spacing:21.594240px;}
.ws32{word-spacing:22.190400px;}
.ws56{word-spacing:22.322880px;}
.ws3d{word-spacing:23.051520px;}
.ws51{word-spacing:24.508800px;}
.ws31{word-spacing:26.628480px;}
.ws53{word-spacing:28.681920px;}
.ws2b{word-spacing:30.801600px;}
.ws54{word-spacing:33.716160px;}
.ws4d{word-spacing:38.154240px;}
.ws4f{word-spacing:38.750400px;}
.ws52{word-spacing:40.340160px;}
.ws15{word-spacing:44.513280px;}
.wsb{word-spacing:50.408640px;}
.ws4e{word-spacing:58.887360px;}
._8{margin-left:-11.957760px;}
._5{margin-left:-2.223360px;}
._4{margin-left:-1.182960px;}
._3{width:1.188000px;}
._7{width:2.574000px;}
._9{width:6.547680px;}
._6{width:8.668080px;}
._2{width:453.654000px;}
._1{width:519.858000px;}
._0{width:731.538000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(255,204,0);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:67.140000px;}
.y67{bottom:85.134420px;}
.y1d{bottom:86.098320px;}
.y66{bottom:102.420000px;}
.y8c{bottom:105.778080px;}
.y1c{bottom:108.056880px;}
.y65{bottom:119.688840px;}
.y8b{bottom:127.554480px;}
.y1b{bottom:129.833280px;}
.y48{bottom:136.511280px;}
.y64{bottom:136.974420px;}
.y47{bottom:158.469840px;}
.y63{bottom:161.100000px;}
.y1a{bottom:162.588960px;}
.y8a{bottom:164.450160px;}
.y62{bottom:172.260000px;}
.y89{bottom:186.226560px;}
.y46{bottom:195.183360px;}
.y88{bottom:208.002960px;}
.y61{bottom:223.783200px;}
.y87{bottom:229.961520px;}
.y45{bottom:232.079040px;}
.y60{bottom:245.559600px;}
.y86{bottom:251.737920px;}
.y44{bottom:253.855440px;}
.y5f{bottom:267.518160px;}
.y85{bottom:273.514320px;}
.y43{bottom:275.631840px;}
.y5e{bottom:289.294560px;}
.y84{bottom:295.290720px;}
.y42{bottom:297.408240px;}
.y5d{bottom:311.070960px;}
.y83{bottom:317.067120px;}
.y41{bottom:319.366800px;}
.y5c{bottom:332.847360px;}
.y82{bottom:339.025680px;}
.y40{bottom:341.143200px;}
.y5b{bottom:354.805920px;}
.y81{bottom:360.802080px;}
.y3f{bottom:362.919600px;}
.y5a{bottom:376.582320px;}
.y80{bottom:382.578480px;}
.y3e{bottom:384.696000px;}
.y59{bottom:398.358720px;}
.y7f{bottom:404.354880px;}
.y3d{bottom:406.472400px;}
.y58{bottom:420.135120px;}
.y3c{bottom:428.430960px;}
.y57{bottom:441.911520px;}
.y7e{bottom:447.907680px;}
.y3b{bottom:450.207360px;}
.y56{bottom:463.870080px;}
.y3a{bottom:471.983760px;}
.y7d{bottom:484.621200px;}
.y55{bottom:485.646480px;}
.y39{bottom:493.760160px;}
.y54{bottom:507.422880px;}
.y38{bottom:515.718720px;}
.y7c{bottom:521.516880px;}
.y53{bottom:529.199280px;}
.y37{bottom:537.495120px;}
.y7b{bottom:543.293280px;}
.y52{bottom:551.157840px;}
.y36{bottom:559.271520px;}
.y7a{bottom:565.069680px;}
.y51{bottom:572.934240px;}
.y35{bottom:581.047920px;}
.y19{bottom:585.415440px;}
.y34{bottom:602.824320px;}
.y18{bottom:607.191840px;}
.y79{bottom:608.622480px;}
.y50{bottom:609.364080px;}
.y33{bottom:624.782880px;}
.y9d{bottom:628.740000px;}
.y17{bottom:628.968240px;}
.y78{bottom:645.336000px;}
.y32{bottom:646.559280px;}
.y4f{bottom:646.624080px;}
.y16{bottom:650.744640px;}
.y9c{bottom:667.324080px;}
.y31{bottom:668.335680px;}
.y15{bottom:672.521040px;}
.y77{bottom:682.231680px;}
.y4e{bottom:683.337600px;}
.y9b{bottom:689.100480px;}
.y30{bottom:690.112080px;}
.y14{bottom:694.479600px;}
.y76{bottom:704.008080px;}
.y4d{bottom:705.296160px;}
.y9a{bottom:710.876880px;}
.y13{bottom:716.256000px;}
.y75{bottom:725.784480px;}
.y2f{bottom:726.708240px;}
.y4c{bottom:727.072560px;}
.y99{bottom:732.653280px;}
.y12{bottom:738.032400px;}
.y74{bottom:747.743040px;}
.y2e{bottom:748.484640px;}
.y4b{bottom:748.848960px;}
.y98{bottom:754.429680px;}
.y11{bottom:759.808800px;}
.y10{bottom:781.767360px;}
.y2d{bottom:785.744640px;}
.y73{bottom:791.130240px;}
.y97{bottom:791.325360px;}
.yf{bottom:803.543760px;}
.y2c{bottom:807.521040px;}
.y96{bottom:813.101760px;}
.ye{bottom:825.320160px;}
.y72{bottom:828.025920px;}
.y2b{bottom:829.297440px;}
.yd{bottom:847.096560px;}
.y95{bottom:849.997440px;}
.y2a{bottom:851.073840px;}
.y71{bottom:864.739440px;}
.yc{bottom:868.872960px;}
.y94{bottom:871.773840px;}
.y29{bottom:873.032400px;}
.y70{bottom:886.515840px;}
.yb{bottom:890.831520px;}
.y28{bottom:894.808800px;}
.y93{bottom:908.669520px;}
.ya{bottom:912.607920px;}
.y27{bottom:916.585200px;}
.y6f{bottom:923.411520px;}
.y92{bottom:930.445920px;}
.y9{bottom:934.384320px;}
.y26{bottom:938.361600px;}
.y6e{bottom:945.187920px;}
.y91{bottom:952.222320px;}
.y4a{bottom:953.480880px;}
.y25{bottom:960.138000px;}
.y6d{bottom:966.964320px;}
.y8{bottom:971.280000px;}
.y90{bottom:973.998720px;}
.y49{bottom:975.257280px;}
.y6c{bottom:988.922880px;}
.y24{bottom:997.033680px;}
.y7{bottom:1007.645760px;}
.y6b{bottom:1010.699280px;}
.y8f{bottom:1017.551520px;}
.y23{bottom:1018.810080px;}
.y6{bottom:1026.905040px;}
.y6a{bottom:1032.475680px;}
.y22{bottom:1040.586480px;}
.y5{bottom:1045.800000px;}
.y69{bottom:1054.252080px;}
.y8e{bottom:1054.265040px;}
.y21{bottom:1062.545040px;}
.y20{bottom:1084.321440px;}
.y4{bottom:1085.040000px;}
.y68{bottom:1090.796400px;}
.y8d{bottom:1091.160720px;}
.y1f{bottom:1106.097840px;}
.y3{bottom:1114.380000px;}
.y1e{bottom:1127.874240px;}
.y1{bottom:1178.280000px;}
.ha{height:38.158594px;}
.h3{height:47.545312px;}
.hb{height:58.651172px;}
.hc{height:58.673492px;}
.he{height:64.978594px;}
.h7{height:65.010937px;}
.h8{height:66.757500px;}
.hd{height:66.771900px;}
.h6{height:69.086250px;}
.h9{height:71.031966px;}
.hf{height:72.562500px;}
.h5{height:76.824000px;}
.h4{height:89.884080px;}
.h2{height:92.232000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xa{left:180.715680px;}
.x4{left:432.360000px;}
.x7{left:460.969200px;}
.xb{left:462.600000px;}
.x2{left:469.260000px;}
.x9{left:478.260720px;}
.x6{left:496.258560px;}
.x3{left:502.380000px;}
.x5{left:739.260000px;}
.x8{left:746.447040px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.726400pt;}
.ls14{letter-spacing:-0.647680pt;}
.ls19{letter-spacing:-0.531200pt;}
.ls15{letter-spacing:-0.529920pt;}
.ls8{letter-spacing:-0.299520pt;}
.ls3{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.235520pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.176640pt;}
.lsa{letter-spacing:-0.117760pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.097280pt;}
.ls16{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.176000pt;}
.ls1b{letter-spacing:0.294400pt;}
.ls17{letter-spacing:0.318720pt;}
.ls7{letter-spacing:0.351360pt;}
.ls10{letter-spacing:0.504320pt;}
.ls13{letter-spacing:0.796800pt;}
.ls11{letter-spacing:1.825280pt;}
.ls1{letter-spacing:2.531840pt;}
.ls1c{letter-spacing:5.122560pt;}
.lsc{letter-spacing:5.770240pt;}
.lsd{letter-spacing:20.490240pt;}
.ws4c{word-spacing:-14.837760pt;}
.ws4{word-spacing:-14.720000pt;}
.ws35{word-spacing:-14.602240pt;}
.ws38{word-spacing:-13.386240pt;}
.ws39{word-spacing:-13.226880pt;}
.ws4b{word-spacing:-11.904000pt;}
.ws1c{word-spacing:-11.808000pt;}
.ws1{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.656000pt;}
.ws36{word-spacing:-9.280000pt;}
.ws37{word-spacing:-8.640000pt;}
.ws33{word-spacing:-0.647680pt;}
.ws2{word-spacing:-0.468480pt;}
.ws48{word-spacing:-0.159360pt;}
.ws13{word-spacing:-0.117760pt;}
.ws49{word-spacing:-0.106240pt;}
.ws8{word-spacing:-0.058880pt;}
.ws3{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.ws47{word-spacing:0.053120pt;}
.ws46{word-spacing:0.117760pt;}
.ws40{word-spacing:0.192000pt;}
.ws7{word-spacing:0.235520pt;}
.ws6{word-spacing:0.240000pt;}
.ws9{word-spacing:0.412160pt;}
.ws27{word-spacing:0.529920pt;}
.ws4a{word-spacing:0.531200pt;}
.ws34{word-spacing:0.647680pt;}
.ws3a{word-spacing:1.177600pt;}
.ws11{word-spacing:1.295360pt;}
.ws26{word-spacing:1.825280pt;}
.wsc{word-spacing:1.943040pt;}
.ws1b{word-spacing:2.472960pt;}
.ws10{word-spacing:2.590720pt;}
.ws1d{word-spacing:3.061760pt;}
.ws12{word-spacing:3.179520pt;}
.ws2e{word-spacing:3.827200pt;}
.ws17{word-spacing:4.357120pt;}
.ws24{word-spacing:4.474880pt;}
.ws21{word-spacing:5.004800pt;}
.ws22{word-spacing:5.122560pt;}
.ws3f{word-spacing:5.652480pt;}
.ws2d{word-spacing:5.770240pt;}
.ws3c{word-spacing:6.300160pt;}
.wsa{word-spacing:6.947840pt;}
.wsd{word-spacing:7.065600pt;}
.ws1a{word-spacing:7.536640pt;}
.ws2a{word-spacing:7.654400pt;}
.ws44{word-spacing:8.184320pt;}
.ws2c{word-spacing:8.832000pt;}
.ws30{word-spacing:8.949760pt;}
.ws18{word-spacing:9.479680pt;}
.ws45{word-spacing:9.597440pt;}
.ws28{word-spacing:10.127360pt;}
.ws3e{word-spacing:10.245120pt;}
.ws50{word-spacing:10.598400pt;}
.ws14{word-spacing:10.775040pt;}
.ws1f{word-spacing:10.892800pt;}
.ws3b{word-spacing:12.070400pt;}
.ws41{word-spacing:12.659200pt;}
.ws42{word-spacing:12.776960pt;}
.ws20{word-spacing:13.306880pt;}
.ws23{word-spacing:13.424640pt;}
.ws19{word-spacing:13.954560pt;}
.wsf{word-spacing:14.602240pt;}
.ws43{word-spacing:14.720000pt;}
.ws29{word-spacing:15.897600pt;}
.wse{word-spacing:16.015360pt;}
.ws2f{word-spacing:17.192960pt;}
.ws25{word-spacing:17.310720pt;}
.ws16{word-spacing:17.781760pt;}
.ws55{word-spacing:19.077120pt;}
.ws1e{word-spacing:19.194880pt;}
.ws32{word-spacing:19.724800pt;}
.ws56{word-spacing:19.842560pt;}
.ws3d{word-spacing:20.490240pt;}
.ws51{word-spacing:21.785600pt;}
.ws31{word-spacing:23.669760pt;}
.ws53{word-spacing:25.495040pt;}
.ws2b{word-spacing:27.379200pt;}
.ws54{word-spacing:29.969920pt;}
.ws4d{word-spacing:33.914880pt;}
.ws4f{word-spacing:34.444800pt;}
.ws52{word-spacing:35.857920pt;}
.ws15{word-spacing:39.567360pt;}
.wsb{word-spacing:44.807680pt;}
.ws4e{word-spacing:52.344320pt;}
._8{margin-left:-10.629120pt;}
._5{margin-left:-1.976320pt;}
._4{margin-left:-1.051520pt;}
._3{width:1.056000pt;}
._7{width:2.288000pt;}
._9{width:5.820160pt;}
._6{width:7.704960pt;}
._2{width:403.248000pt;}
._1{width:462.096000pt;}
._0{width:650.256000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:59.680000pt;}
.y67{bottom:75.675040pt;}
.y1d{bottom:76.531840pt;}
.y66{bottom:91.040000pt;}
.y8c{bottom:94.024960pt;}
.y1c{bottom:96.050560pt;}
.y65{bottom:106.390080pt;}
.y8b{bottom:113.381760pt;}
.y1b{bottom:115.407360pt;}
.y48{bottom:121.343360pt;}
.y64{bottom:121.755040pt;}
.y47{bottom:140.862080pt;}
.y63{bottom:143.200000pt;}
.y1a{bottom:144.523520pt;}
.y8a{bottom:146.177920pt;}
.y62{bottom:153.120000pt;}
.y89{bottom:165.534720pt;}
.y46{bottom:173.496320pt;}
.y88{bottom:184.891520pt;}
.y61{bottom:198.918400pt;}
.y87{bottom:204.410240pt;}
.y45{bottom:206.292480pt;}
.y60{bottom:218.275200pt;}
.y86{bottom:223.767040pt;}
.y44{bottom:225.649280pt;}
.y5f{bottom:237.793920pt;}
.y85{bottom:243.123840pt;}
.y43{bottom:245.006080pt;}
.y5e{bottom:257.150720pt;}
.y84{bottom:262.480640pt;}
.y42{bottom:264.362880pt;}
.y5d{bottom:276.507520pt;}
.y83{bottom:281.837440pt;}
.y41{bottom:283.881600pt;}
.y5c{bottom:295.864320pt;}
.y82{bottom:301.356160pt;}
.y40{bottom:303.238400pt;}
.y5b{bottom:315.383040pt;}
.y81{bottom:320.712960pt;}
.y3f{bottom:322.595200pt;}
.y5a{bottom:334.739840pt;}
.y80{bottom:340.069760pt;}
.y3e{bottom:341.952000pt;}
.y59{bottom:354.096640pt;}
.y7f{bottom:359.426560pt;}
.y3d{bottom:361.308800pt;}
.y58{bottom:373.453440pt;}
.y3c{bottom:380.827520pt;}
.y57{bottom:392.810240pt;}
.y7e{bottom:398.140160pt;}
.y3b{bottom:400.184320pt;}
.y56{bottom:412.328960pt;}
.y3a{bottom:419.541120pt;}
.y7d{bottom:430.774400pt;}
.y55{bottom:431.685760pt;}
.y39{bottom:438.897920pt;}
.y54{bottom:451.042560pt;}
.y38{bottom:458.416640pt;}
.y7c{bottom:463.570560pt;}
.y53{bottom:470.399360pt;}
.y37{bottom:477.773440pt;}
.y7b{bottom:482.927360pt;}
.y52{bottom:489.918080pt;}
.y36{bottom:497.130240pt;}
.y7a{bottom:502.284160pt;}
.y51{bottom:509.274880pt;}
.y35{bottom:516.487040pt;}
.y19{bottom:520.369280pt;}
.y34{bottom:535.843840pt;}
.y18{bottom:539.726080pt;}
.y79{bottom:540.997760pt;}
.y50{bottom:541.656960pt;}
.y33{bottom:555.362560pt;}
.y9d{bottom:558.880000pt;}
.y17{bottom:559.082880pt;}
.y78{bottom:573.632000pt;}
.y32{bottom:574.719360pt;}
.y4f{bottom:574.776960pt;}
.y16{bottom:578.439680pt;}
.y9c{bottom:593.176960pt;}
.y31{bottom:594.076160pt;}
.y15{bottom:597.796480pt;}
.y77{bottom:606.428160pt;}
.y4e{bottom:607.411200pt;}
.y9b{bottom:612.533760pt;}
.y30{bottom:613.432960pt;}
.y14{bottom:617.315200pt;}
.y76{bottom:625.784960pt;}
.y4d{bottom:626.929920pt;}
.y9a{bottom:631.890560pt;}
.y13{bottom:636.672000pt;}
.y75{bottom:645.141760pt;}
.y2f{bottom:645.962880pt;}
.y4c{bottom:646.286720pt;}
.y99{bottom:651.247360pt;}
.y12{bottom:656.028800pt;}
.y74{bottom:664.660480pt;}
.y2e{bottom:665.319680pt;}
.y4b{bottom:665.643520pt;}
.y98{bottom:670.604160pt;}
.y11{bottom:675.385600pt;}
.y10{bottom:694.904320pt;}
.y2d{bottom:698.439680pt;}
.y73{bottom:703.226880pt;}
.y97{bottom:703.400320pt;}
.yf{bottom:714.261120pt;}
.y2c{bottom:717.796480pt;}
.y96{bottom:722.757120pt;}
.ye{bottom:733.617920pt;}
.y72{bottom:736.023040pt;}
.y2b{bottom:737.153280pt;}
.yd{bottom:752.974720pt;}
.y95{bottom:755.553280pt;}
.y2a{bottom:756.510080pt;}
.y71{bottom:768.657280pt;}
.yc{bottom:772.331520pt;}
.y94{bottom:774.910080pt;}
.y29{bottom:776.028800pt;}
.y70{bottom:788.014080pt;}
.yb{bottom:791.850240pt;}
.y28{bottom:795.385600pt;}
.y93{bottom:807.706240pt;}
.ya{bottom:811.207040pt;}
.y27{bottom:814.742400pt;}
.y6f{bottom:820.810240pt;}
.y92{bottom:827.063040pt;}
.y9{bottom:830.563840pt;}
.y26{bottom:834.099200pt;}
.y6e{bottom:840.167040pt;}
.y91{bottom:846.419840pt;}
.y4a{bottom:847.538560pt;}
.y25{bottom:853.456000pt;}
.y6d{bottom:859.523840pt;}
.y8{bottom:863.360000pt;}
.y90{bottom:865.776640pt;}
.y49{bottom:866.895360pt;}
.y6c{bottom:879.042560pt;}
.y24{bottom:886.252160pt;}
.y7{bottom:895.685120pt;}
.y6b{bottom:898.399360pt;}
.y8f{bottom:904.490240pt;}
.y23{bottom:905.608960pt;}
.y6{bottom:912.804480pt;}
.y6a{bottom:917.756160pt;}
.y22{bottom:924.965760pt;}
.y5{bottom:929.600000pt;}
.y69{bottom:937.112960pt;}
.y8e{bottom:937.124480pt;}
.y21{bottom:944.484480pt;}
.y20{bottom:963.841280pt;}
.y4{bottom:964.480000pt;}
.y68{bottom:969.596800pt;}
.y8d{bottom:969.920640pt;}
.y1f{bottom:983.198080pt;}
.y3{bottom:990.560000pt;}
.y1e{bottom:1002.554880pt;}
.y1{bottom:1047.360000pt;}
.ha{height:33.918750pt;}
.h3{height:42.262500pt;}
.hb{height:52.134375pt;}
.hc{height:52.154215pt;}
.he{height:57.758750pt;}
.h7{height:57.787500pt;}
.h8{height:59.340000pt;}
.hd{height:59.352800pt;}
.h6{height:61.410000pt;}
.h9{height:63.139525pt;}
.hf{height:64.500000pt;}
.h5{height:68.288000pt;}
.h4{height:79.896960pt;}
.h2{height:81.984000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xa{left:160.636160pt;}
.x4{left:384.320000pt;}
.x7{left:409.750400pt;}
.xb{left:411.200000pt;}
.x2{left:417.120000pt;}
.x9{left:425.120640pt;}
.x6{left:441.118720pt;}
.x3{left:446.560000pt;}
.x5{left:657.120000pt;}
.x8{left:663.508480pt;}
}




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