
    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_77097b3ba1da29e8d4a12fd9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.236000;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_b31e739759063b48d5d27795.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.236000;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_8c713b1b6b773ebe6f3e5ce5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.842285;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_1cb6871e2225a0257e132cb9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_e434cf447bbe51048f4dc646.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.149000;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_48c7bfe42c5a5c377ed348be.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119000;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_2e21286fcbf86852db0921cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088000;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_ab27ef97dceddc35af251dcd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010000;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_6ab6cd44b0dbe567db48ab61.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.020000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.v3{vertical-align:-20.979000px;}
.v2{vertical-align:-17.982600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.981600px;}
.v1{vertical-align:20.979000px;}
.ls1{letter-spacing:-3.900000px;}
.ls2{letter-spacing:-2.400000px;}
.ls3{letter-spacing:-1.575000px;}
.ls6{letter-spacing:-1.425000px;}
.ls5{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.945000px;}
.ls4{letter-spacing:-0.630000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws10{word-spacing:-21.600000px;}
.ws11{word-spacing:-15.246000px;}
.ws2c{word-spacing:-13.794000px;}
.ws3a{word-spacing:-13.671000px;}
.ws2{word-spacing:-13.068000px;}
.ws39{word-spacing:-12.663000px;}
.ws3b{word-spacing:-12.369000px;}
.ws12{word-spacing:-12.204000px;}
.ws0{word-spacing:-9.147600px;}
.ws1{word-spacing:-7.840800px;}
.ws4d{word-spacing:-2.646000px;}
.ws4{word-spacing:-2.641703px;}
.ws25{word-spacing:-2.457000px;}
.ws6{word-spacing:-2.331000px;}
.ws2e{word-spacing:-2.109000px;}
.ws38{word-spacing:-2.079000px;}
.ws2f{word-spacing:-1.938000px;}
.ws2d{word-spacing:-1.710000px;}
.ws34{word-spacing:-1.653000px;}
.ws8{word-spacing:-1.638000px;}
.ws50{word-spacing:-1.575000px;}
.ws20{word-spacing:-1.449000px;}
.ws5e{word-spacing:-1.323000px;}
.ws41{word-spacing:-1.134000px;}
.ws1a{word-spacing:-1.080000px;}
.ws1b{word-spacing:-0.972000px;}
.ws28{word-spacing:-0.855000px;}
.ws15{word-spacing:-0.693000px;}
.ws5{word-spacing:-0.630000px;}
.ws58{word-spacing:-0.567000px;}
.ws1c{word-spacing:-0.540000px;}
.ws57{word-spacing:-0.441000px;}
.ws13{word-spacing:-0.315000px;}
.wse{word-spacing:-0.216000px;}
.ws23{word-spacing:-0.189000px;}
.ws22{word-spacing:-0.126000px;}
.ws3{word-spacing:0.000000px;}
.ws5b{word-spacing:0.063000px;}
.ws3f{word-spacing:0.126000px;}
.ws4f{word-spacing:0.252000px;}
.ws30{word-spacing:0.285000px;}
.ws56{word-spacing:0.441000px;}
.ws40{word-spacing:0.567000px;}
.ws17{word-spacing:0.756000px;}
.ws7{word-spacing:0.945000px;}
.ws32{word-spacing:1.026000px;}
.ws37{word-spacing:1.071000px;}
.ws3c{word-spacing:1.080000px;}
.ws33{word-spacing:1.083000px;}
.ws48{word-spacing:1.254000px;}
.ws5a{word-spacing:1.260000px;}
.ws44{word-spacing:1.425000px;}
.ws59{word-spacing:1.449000px;}
.wsc{word-spacing:1.458000px;}
.ws21{word-spacing:1.512000px;}
.ws9{word-spacing:1.575000px;}
.ws35{word-spacing:1.596000px;}
.ws42{word-spacing:1.638000px;}
.ws3e{word-spacing:1.764000px;}
.ws29{word-spacing:1.767000px;}
.ws2a{word-spacing:1.824000px;}
.ws43{word-spacing:1.881000px;}
.ws5c{word-spacing:1.890000px;}
.wsf{word-spacing:1.998000px;}
.ws53{word-spacing:2.079000px;}
.ws1e{word-spacing:2.142000px;}
.ws46{word-spacing:2.223000px;}
.ws16{word-spacing:2.331000px;}
.ws45{word-spacing:2.451000px;}
.ws47{word-spacing:2.508000px;}
.ws4e{word-spacing:2.520000px;}
.ws5d{word-spacing:2.583000px;}
.wsd{word-spacing:2.592000px;}
.ws55{word-spacing:2.646000px;}
.ws3d{word-spacing:2.835000px;}
.ws2b{word-spacing:2.850000px;}
.ws19{word-spacing:3.078000px;}
.ws5f{word-spacing:3.213000px;}
.ws14{word-spacing:3.528000px;}
.ws27{word-spacing:3.648000px;}
.ws24{word-spacing:3.717000px;}
.ws52{word-spacing:3.780000px;}
.ws31{word-spacing:3.819000px;}
.ws54{word-spacing:3.843000px;}
.ws36{word-spacing:4.104000px;}
.ws4b{word-spacing:4.158000px;}
.ws4c{word-spacing:4.347000px;}
.ws49{word-spacing:4.389000px;}
.ws26{word-spacing:4.446000px;}
.ws51{word-spacing:4.473000px;}
.ws4a{word-spacing:4.503000px;}
.wsa{word-spacing:4.977000px;}
.ws60{word-spacing:5.229000px;}
.ws1f{word-spacing:5.292000px;}
.wsb{word-spacing:5.922000px;}
.ws18{word-spacing:6.726000px;}
.ws61{word-spacing:6.858000px;}
.ws1d{word-spacing:40.932000px;}
._11{margin-left:-40.864800px;}
._5{margin-left:-14.040000px;}
._4{margin-left:-7.020000px;}
._d{margin-left:-5.419200px;}
._7{margin-left:-4.055100px;}
._2{margin-left:-2.340000px;}
._0{margin-left:-1.177800px;}
._8{width:1.582500px;}
._6{width:2.633400px;}
._3{width:3.900000px;}
._e{width:5.253900px;}
._9{width:6.419700px;}
._f{width:7.550400px;}
._12{width:8.625000px;}
._13{width:34.073400px;}
._a{width:39.474000px;}
._10{width:40.823400px;}
._c{width:41.998200px;}
._1{width:382.675800px;}
._b{width:1035.123000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:32.400000px;}
.fsd{font-size:34.200000px;}
.fs8{font-size:37.800000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:91.093200px;}
.fs6{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs5{font-size:156.000000px;}
.fs2{font-size:411.607800px;}
.y0{bottom:0.000000px;}
.y2{bottom:45.510300px;}
.y20{bottom:106.299150px;}
.y8e{bottom:106.299300px;}
.y49{bottom:110.794800px;}
.y1f{bottom:125.799150px;}
.y99{bottom:125.799300px;}
.y48{bottom:130.294800px;}
.y1e{bottom:145.299150px;}
.y47{bottom:145.299300px;}
.y1d{bottom:169.294800px;}
.y98{bottom:174.646050px;}
.y96{bottom:196.135200px;}
.y6f{bottom:197.146050px;}
.y95{bottom:218.635200px;}
.y6e{bottom:219.646050px;}
.y1c{bottom:234.822000px;}
.y94{bottom:241.135200px;}
.y46{bottom:241.136550px;}
.y6d{bottom:242.146050px;}
.y1b{bottom:257.322000px;}
.y93{bottom:263.635200px;}
.y45{bottom:263.636550px;}
.y6c{bottom:264.646050px;}
.y1a{bottom:279.822000px;}
.y92{bottom:286.135200px;}
.y44{bottom:286.136550px;}
.y6b{bottom:287.146050px;}
.y19{bottom:302.322000px;}
.y91{bottom:308.635200px;}
.y43{bottom:308.636550px;}
.y6a{bottom:309.646050px;}
.y18{bottom:324.822000px;}
.y90{bottom:331.135200px;}
.y42{bottom:331.136550px;}
.y69{bottom:332.146050px;}
.y8d{bottom:332.147400px;}
.y17{bottom:347.322000px;}
.y41{bottom:353.636550px;}
.y68{bottom:354.646050px;}
.y8c{bottom:354.647400px;}
.y16{bottom:369.822000px;}
.y8f{bottom:376.136550px;}
.y67{bottom:377.146050px;}
.y8b{bottom:377.147400px;}
.y15{bottom:392.322000px;}
.y40{bottom:398.636550px;}
.y66{bottom:399.646050px;}
.y8a{bottom:399.647400px;}
.y14{bottom:414.822000px;}
.y3f{bottom:421.136550px;}
.y65{bottom:422.146050px;}
.y89{bottom:422.147400px;}
.y13{bottom:437.322000px;}
.y3e{bottom:443.636550px;}
.y64{bottom:444.646050px;}
.y88{bottom:444.647400px;}
.y12{bottom:459.822000px;}
.y3d{bottom:466.136550px;}
.y63{bottom:467.146050px;}
.y87{bottom:467.147400px;}
.y11{bottom:482.322000px;}
.y3c{bottom:488.636550px;}
.y97{bottom:489.646050px;}
.y86{bottom:489.647400px;}
.y10{bottom:504.822000px;}
.y3b{bottom:511.136550px;}
.y62{bottom:512.146050px;}
.y85{bottom:512.147400px;}
.yf{bottom:527.322000px;}
.y3a{bottom:533.636550px;}
.y61{bottom:534.646050px;}
.y84{bottom:534.647400px;}
.ye{bottom:549.822000px;}
.y39{bottom:556.136550px;}
.y60{bottom:557.146050px;}
.y83{bottom:557.147400px;}
.yd{bottom:572.322000px;}
.y38{bottom:578.636550px;}
.y5f{bottom:579.646050px;}
.y82{bottom:579.647400px;}
.yc{bottom:594.822000px;}
.y37{bottom:601.136550px;}
.y5e{bottom:602.146050px;}
.y81{bottom:602.147400px;}
.yb{bottom:617.322000px;}
.y36{bottom:623.636550px;}
.y5d{bottom:624.646050px;}
.y80{bottom:624.647400px;}
.ya{bottom:639.822000px;}
.y35{bottom:646.136550px;}
.y5c{bottom:647.146050px;}
.y34{bottom:668.636550px;}
.y5b{bottom:669.646050px;}
.y7f{bottom:669.647400px;}
.y33{bottom:691.136550px;}
.y5a{bottom:692.146050px;}
.y7e{bottom:692.147400px;}
.y9{bottom:713.345700px;}
.y32{bottom:713.636550px;}
.y59{bottom:714.646050px;}
.y7d{bottom:714.647400px;}
.y31{bottom:736.136550px;}
.y58{bottom:737.146050px;}
.y7c{bottom:737.147400px;}
.y30{bottom:758.636550px;}
.y57{bottom:759.646050px;}
.y7b{bottom:759.647400px;}
.y8{bottom:768.857550px;}
.y2f{bottom:781.136550px;}
.y56{bottom:782.146050px;}
.y7a{bottom:782.147400px;}
.y2e{bottom:803.636550px;}
.y55{bottom:804.646050px;}
.y79{bottom:804.647400px;}
.y7{bottom:810.857550px;}
.y2d{bottom:826.136550px;}
.y54{bottom:827.146050px;}
.y78{bottom:827.147400px;}
.y2c{bottom:848.636550px;}
.y53{bottom:849.646050px;}
.y77{bottom:849.647400px;}
.y6{bottom:852.857550px;}
.y2b{bottom:871.136550px;}
.y52{bottom:872.146050px;}
.y76{bottom:872.147400px;}
.y2a{bottom:893.636400px;}
.y51{bottom:894.646050px;}
.y75{bottom:894.647400px;}
.y29{bottom:916.136400px;}
.y50{bottom:917.146050px;}
.y74{bottom:917.147400px;}
.y28{bottom:938.636400px;}
.y4f{bottom:939.646050px;}
.y73{bottom:939.647400px;}
.y1{bottom:956.192400px;}
.y27{bottom:961.136400px;}
.y5{bottom:961.189500px;}
.y4e{bottom:962.146050px;}
.y72{bottom:962.147400px;}
.y26{bottom:983.636400px;}
.y4d{bottom:984.646050px;}
.y71{bottom:984.647400px;}
.y4{bottom:993.257550px;}
.y25{bottom:1006.136400px;}
.y4c{bottom:1007.146050px;}
.y70{bottom:1007.147400px;}
.y3{bottom:1008.672450px;}
.y24{bottom:1028.636400px;}
.y23{bottom:1051.136400px;}
.y4b{bottom:1052.147400px;}
.y22{bottom:1073.636400px;}
.y4a{bottom:1074.647400px;}
.y21{bottom:1138.056450px;}
.hb{height:28.781400px;}
.h13{height:28.782000px;}
.h12{height:29.030400px;}
.h10{height:30.402000px;}
.hd{height:44.460000px;}
.hc{height:46.764000px;}
.h11{height:48.384000px;}
.hf{height:49.362000px;}
.he{height:51.072000px;}
.ha{height:54.558000px;}
.h9{height:56.448000px;}
.h6{height:56.706000px;}
.h5{height:71.789270px;}
.h3{height:72.000000px;}
.h8{height:96.000000px;}
.h2{height:102.000000px;}
.h7{height:156.000000px;}
.h4{height:324.382319px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:63.779550px;}
.x5{left:84.944550px;}
.x8{left:106.299150px;}
.x3{left:193.464600px;}
.x4{left:195.975000px;}
.x7{left:309.615750px;}
.x9{left:310.623750px;}
.x2{left:807.713100px;}
.x1{left:827.428950px;}
@media print{
.v3{vertical-align:-18.648000pt;}
.v2{vertical-align:-15.984533pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.872533pt;}
.v1{vertical-align:18.648000pt;}
.ls1{letter-spacing:-3.466667pt;}
.ls2{letter-spacing:-2.133333pt;}
.ls3{letter-spacing:-1.400000pt;}
.ls6{letter-spacing:-1.266667pt;}
.ls5{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.840000pt;}
.ls4{letter-spacing:-0.560000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws10{word-spacing:-19.200000pt;}
.ws11{word-spacing:-13.552000pt;}
.ws2c{word-spacing:-12.261333pt;}
.ws3a{word-spacing:-12.152000pt;}
.ws2{word-spacing:-11.616000pt;}
.ws39{word-spacing:-11.256000pt;}
.ws3b{word-spacing:-10.994667pt;}
.ws12{word-spacing:-10.848000pt;}
.ws0{word-spacing:-8.131200pt;}
.ws1{word-spacing:-6.969600pt;}
.ws4d{word-spacing:-2.352000pt;}
.ws4{word-spacing:-2.348180pt;}
.ws25{word-spacing:-2.184000pt;}
.ws6{word-spacing:-2.072000pt;}
.ws2e{word-spacing:-1.874667pt;}
.ws38{word-spacing:-1.848000pt;}
.ws2f{word-spacing:-1.722667pt;}
.ws2d{word-spacing:-1.520000pt;}
.ws34{word-spacing:-1.469333pt;}
.ws8{word-spacing:-1.456000pt;}
.ws50{word-spacing:-1.400000pt;}
.ws20{word-spacing:-1.288000pt;}
.ws5e{word-spacing:-1.176000pt;}
.ws41{word-spacing:-1.008000pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.864000pt;}
.ws28{word-spacing:-0.760000pt;}
.ws15{word-spacing:-0.616000pt;}
.ws5{word-spacing:-0.560000pt;}
.ws58{word-spacing:-0.504000pt;}
.ws1c{word-spacing:-0.480000pt;}
.ws57{word-spacing:-0.392000pt;}
.ws13{word-spacing:-0.280000pt;}
.wse{word-spacing:-0.192000pt;}
.ws23{word-spacing:-0.168000pt;}
.ws22{word-spacing:-0.112000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.056000pt;}
.ws3f{word-spacing:0.112000pt;}
.ws4f{word-spacing:0.224000pt;}
.ws30{word-spacing:0.253333pt;}
.ws56{word-spacing:0.392000pt;}
.ws40{word-spacing:0.504000pt;}
.ws17{word-spacing:0.672000pt;}
.ws7{word-spacing:0.840000pt;}
.ws32{word-spacing:0.912000pt;}
.ws37{word-spacing:0.952000pt;}
.ws3c{word-spacing:0.960000pt;}
.ws33{word-spacing:0.962667pt;}
.ws48{word-spacing:1.114667pt;}
.ws5a{word-spacing:1.120000pt;}
.ws44{word-spacing:1.266667pt;}
.ws59{word-spacing:1.288000pt;}
.wsc{word-spacing:1.296000pt;}
.ws21{word-spacing:1.344000pt;}
.ws9{word-spacing:1.400000pt;}
.ws35{word-spacing:1.418667pt;}
.ws42{word-spacing:1.456000pt;}
.ws3e{word-spacing:1.568000pt;}
.ws29{word-spacing:1.570667pt;}
.ws2a{word-spacing:1.621333pt;}
.ws43{word-spacing:1.672000pt;}
.ws5c{word-spacing:1.680000pt;}
.wsf{word-spacing:1.776000pt;}
.ws53{word-spacing:1.848000pt;}
.ws1e{word-spacing:1.904000pt;}
.ws46{word-spacing:1.976000pt;}
.ws16{word-spacing:2.072000pt;}
.ws45{word-spacing:2.178667pt;}
.ws47{word-spacing:2.229333pt;}
.ws4e{word-spacing:2.240000pt;}
.ws5d{word-spacing:2.296000pt;}
.wsd{word-spacing:2.304000pt;}
.ws55{word-spacing:2.352000pt;}
.ws3d{word-spacing:2.520000pt;}
.ws2b{word-spacing:2.533333pt;}
.ws19{word-spacing:2.736000pt;}
.ws5f{word-spacing:2.856000pt;}
.ws14{word-spacing:3.136000pt;}
.ws27{word-spacing:3.242667pt;}
.ws24{word-spacing:3.304000pt;}
.ws52{word-spacing:3.360000pt;}
.ws31{word-spacing:3.394667pt;}
.ws54{word-spacing:3.416000pt;}
.ws36{word-spacing:3.648000pt;}
.ws4b{word-spacing:3.696000pt;}
.ws4c{word-spacing:3.864000pt;}
.ws49{word-spacing:3.901333pt;}
.ws26{word-spacing:3.952000pt;}
.ws51{word-spacing:3.976000pt;}
.ws4a{word-spacing:4.002667pt;}
.wsa{word-spacing:4.424000pt;}
.ws60{word-spacing:4.648000pt;}
.ws1f{word-spacing:4.704000pt;}
.wsb{word-spacing:5.264000pt;}
.ws18{word-spacing:5.978667pt;}
.ws61{word-spacing:6.096000pt;}
.ws1d{word-spacing:36.384000pt;}
._11{margin-left:-36.324267pt;}
._5{margin-left:-12.480000pt;}
._4{margin-left:-6.240000pt;}
._d{margin-left:-4.817067pt;}
._7{margin-left:-3.604533pt;}
._2{margin-left:-2.080000pt;}
._0{margin-left:-1.046933pt;}
._8{width:1.406667pt;}
._6{width:2.340800pt;}
._3{width:3.466667pt;}
._e{width:4.670133pt;}
._9{width:5.706400pt;}
._f{width:6.711467pt;}
._12{width:7.666667pt;}
._13{width:30.287467pt;}
._a{width:35.088000pt;}
._10{width:36.287467pt;}
._c{width:37.331733pt;}
._1{width:340.156267pt;}
._b{width:920.109333pt;}
.fs9{font-size:28.800000pt;}
.fsd{font-size:30.400000pt;}
.fs8{font-size:33.600000pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:80.971733pt;}
.fs6{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs5{font-size:138.666667pt;}
.fs2{font-size:365.873600pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:40.453600pt;}
.y20{bottom:94.488133pt;}
.y8e{bottom:94.488267pt;}
.y49{bottom:98.484267pt;}
.y1f{bottom:111.821467pt;}
.y99{bottom:111.821600pt;}
.y48{bottom:115.817600pt;}
.y1e{bottom:129.154800pt;}
.y47{bottom:129.154933pt;}
.y1d{bottom:150.484267pt;}
.y98{bottom:155.240933pt;}
.y96{bottom:174.342400pt;}
.y6f{bottom:175.240933pt;}
.y95{bottom:194.342400pt;}
.y6e{bottom:195.240933pt;}
.y1c{bottom:208.730667pt;}
.y94{bottom:214.342400pt;}
.y46{bottom:214.343600pt;}
.y6d{bottom:215.240933pt;}
.y1b{bottom:228.730667pt;}
.y93{bottom:234.342400pt;}
.y45{bottom:234.343600pt;}
.y6c{bottom:235.240933pt;}
.y1a{bottom:248.730667pt;}
.y92{bottom:254.342400pt;}
.y44{bottom:254.343600pt;}
.y6b{bottom:255.240933pt;}
.y19{bottom:268.730667pt;}
.y91{bottom:274.342400pt;}
.y43{bottom:274.343600pt;}
.y6a{bottom:275.240933pt;}
.y18{bottom:288.730667pt;}
.y90{bottom:294.342400pt;}
.y42{bottom:294.343600pt;}
.y69{bottom:295.240933pt;}
.y8d{bottom:295.242133pt;}
.y17{bottom:308.730667pt;}
.y41{bottom:314.343600pt;}
.y68{bottom:315.240933pt;}
.y8c{bottom:315.242133pt;}
.y16{bottom:328.730667pt;}
.y8f{bottom:334.343600pt;}
.y67{bottom:335.240933pt;}
.y8b{bottom:335.242133pt;}
.y15{bottom:348.730667pt;}
.y40{bottom:354.343600pt;}
.y66{bottom:355.240933pt;}
.y8a{bottom:355.242133pt;}
.y14{bottom:368.730667pt;}
.y3f{bottom:374.343600pt;}
.y65{bottom:375.240933pt;}
.y89{bottom:375.242133pt;}
.y13{bottom:388.730667pt;}
.y3e{bottom:394.343600pt;}
.y64{bottom:395.240933pt;}
.y88{bottom:395.242133pt;}
.y12{bottom:408.730667pt;}
.y3d{bottom:414.343600pt;}
.y63{bottom:415.240933pt;}
.y87{bottom:415.242133pt;}
.y11{bottom:428.730667pt;}
.y3c{bottom:434.343600pt;}
.y97{bottom:435.240933pt;}
.y86{bottom:435.242133pt;}
.y10{bottom:448.730667pt;}
.y3b{bottom:454.343600pt;}
.y62{bottom:455.240933pt;}
.y85{bottom:455.242133pt;}
.yf{bottom:468.730667pt;}
.y3a{bottom:474.343600pt;}
.y61{bottom:475.240933pt;}
.y84{bottom:475.242133pt;}
.ye{bottom:488.730667pt;}
.y39{bottom:494.343600pt;}
.y60{bottom:495.240933pt;}
.y83{bottom:495.242133pt;}
.yd{bottom:508.730667pt;}
.y38{bottom:514.343600pt;}
.y5f{bottom:515.240933pt;}
.y82{bottom:515.242133pt;}
.yc{bottom:528.730667pt;}
.y37{bottom:534.343600pt;}
.y5e{bottom:535.240933pt;}
.y81{bottom:535.242133pt;}
.yb{bottom:548.730667pt;}
.y36{bottom:554.343600pt;}
.y5d{bottom:555.240933pt;}
.y80{bottom:555.242133pt;}
.ya{bottom:568.730667pt;}
.y35{bottom:574.343600pt;}
.y5c{bottom:575.240933pt;}
.y34{bottom:594.343600pt;}
.y5b{bottom:595.240933pt;}
.y7f{bottom:595.242133pt;}
.y33{bottom:614.343600pt;}
.y5a{bottom:615.240933pt;}
.y7e{bottom:615.242133pt;}
.y9{bottom:634.085067pt;}
.y32{bottom:634.343600pt;}
.y59{bottom:635.240933pt;}
.y7d{bottom:635.242133pt;}
.y31{bottom:654.343600pt;}
.y58{bottom:655.240933pt;}
.y7c{bottom:655.242133pt;}
.y30{bottom:674.343600pt;}
.y57{bottom:675.240933pt;}
.y7b{bottom:675.242133pt;}
.y8{bottom:683.428933pt;}
.y2f{bottom:694.343600pt;}
.y56{bottom:695.240933pt;}
.y7a{bottom:695.242133pt;}
.y2e{bottom:714.343600pt;}
.y55{bottom:715.240933pt;}
.y79{bottom:715.242133pt;}
.y7{bottom:720.762267pt;}
.y2d{bottom:734.343600pt;}
.y54{bottom:735.240933pt;}
.y78{bottom:735.242133pt;}
.y2c{bottom:754.343600pt;}
.y53{bottom:755.240933pt;}
.y77{bottom:755.242133pt;}
.y6{bottom:758.095600pt;}
.y2b{bottom:774.343600pt;}
.y52{bottom:775.240933pt;}
.y76{bottom:775.242133pt;}
.y2a{bottom:794.343467pt;}
.y51{bottom:795.240933pt;}
.y75{bottom:795.242133pt;}
.y29{bottom:814.343467pt;}
.y50{bottom:815.240933pt;}
.y74{bottom:815.242133pt;}
.y28{bottom:834.343467pt;}
.y4f{bottom:835.240933pt;}
.y73{bottom:835.242133pt;}
.y1{bottom:849.948800pt;}
.y27{bottom:854.343467pt;}
.y5{bottom:854.390667pt;}
.y4e{bottom:855.240933pt;}
.y72{bottom:855.242133pt;}
.y26{bottom:874.343467pt;}
.y4d{bottom:875.240933pt;}
.y71{bottom:875.242133pt;}
.y4{bottom:882.895600pt;}
.y25{bottom:894.343467pt;}
.y4c{bottom:895.240933pt;}
.y70{bottom:895.242133pt;}
.y3{bottom:896.597733pt;}
.y24{bottom:914.343467pt;}
.y23{bottom:934.343467pt;}
.y4b{bottom:935.242133pt;}
.y22{bottom:954.343467pt;}
.y4a{bottom:955.242133pt;}
.y21{bottom:1011.605733pt;}
.hb{height:25.583467pt;}
.h13{height:25.584000pt;}
.h12{height:25.804800pt;}
.h10{height:27.024000pt;}
.hd{height:39.520000pt;}
.hc{height:41.568000pt;}
.h11{height:43.008000pt;}
.hf{height:43.877333pt;}
.he{height:45.397333pt;}
.ha{height:48.496000pt;}
.h9{height:50.176000pt;}
.h6{height:50.405333pt;}
.h5{height:63.812684pt;}
.h3{height:64.000000pt;}
.h8{height:85.333333pt;}
.h2{height:90.666667pt;}
.h7{height:138.666667pt;}
.h4{height:288.339839pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.692933pt;}
.x5{left:75.506267pt;}
.x8{left:94.488133pt;}
.x3{left:171.968533pt;}
.x4{left:174.200000pt;}
.x7{left:275.214000pt;}
.x9{left:276.110000pt;}
.x2{left:717.967200pt;}
.x1{left:735.492400pt;}
}




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