
    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_a29cce07697635179abc72c3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ff79c83bce96e111bb7f004f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_3a6dfafc39e8dd5d8d3cf54f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_68f454d391b9d2c213cc55e1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_52383d3278be84339bd22919.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_093e10621442f97d1353ca1c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_6619b2d56f7888cd1befa1a3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_aedbd3bea11ef1108f33ab10.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_55ab50f9184c5ede0df988fd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_39a955c11a6cca675850ee74.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_a0ae575181f90ac06f2e9105.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_71399353b7e4763f4f583a77.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ff79c83bce96e111bb7f004f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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:ffe;src:url('chunks/assets/font_2d7011c0cc153a1fb040d878.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a7df287ce1e9354bf88c5223.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-3.455052px;}
.ls6{letter-spacing:-3.168000px;}
.ls9{letter-spacing:-0.660000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.132000px;}
.ls0{letter-spacing:0.428985px;}
.ls2{letter-spacing:0.840000px;}
.ls3{letter-spacing:1.200000px;}
.ls1{letter-spacing:3.600000px;}
.ls5{letter-spacing:9.590400px;}
.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;}
}
.ws14{word-spacing:-18.216000px;}
.ws58{word-spacing:-17.754000px;}
.ws12{word-spacing:-15.246000px;}
.ws13{word-spacing:-9.686400px;}
.ws48{word-spacing:-6.732000px;}
.wsb{word-spacing:-5.940000px;}
.ws22{word-spacing:-5.082000px;}
.ws2a{word-spacing:-4.092000px;}
.ws8{word-spacing:-3.960000px;}
.ws7{word-spacing:-3.498000px;}
.ws1f{word-spacing:-3.366000px;}
.ws4a{word-spacing:-2.970000px;}
.ws2d{word-spacing:-2.178000px;}
.ws1a{word-spacing:-2.112000px;}
.ws1b{word-spacing:-2.046000px;}
.ws42{word-spacing:-1.848000px;}
.ws5e{word-spacing:-1.386000px;}
.ws4f{word-spacing:-1.254000px;}
.ws27{word-spacing:-1.122000px;}
.ws44{word-spacing:-1.056000px;}
.ws61{word-spacing:-0.990000px;}
.ws26{word-spacing:-0.858000px;}
.ws23{word-spacing:-0.792000px;}
.ws2{word-spacing:-0.600000px;}
.ws53{word-spacing:-0.528000px;}
.ws5d{word-spacing:-0.462000px;}
.ws1{word-spacing:-0.420000px;}
.ws3f{word-spacing:-0.198000px;}
.ws35{word-spacing:-0.132000px;}
.wsf{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.ws40{word-spacing:0.066000px;}
.ws3b{word-spacing:0.396000px;}
.ws51{word-spacing:0.528000px;}
.ws52{word-spacing:0.660000px;}
.ws5b{word-spacing:0.726000px;}
.ws43{word-spacing:0.858000px;}
.ws33{word-spacing:1.056000px;}
.ws25{word-spacing:1.254000px;}
.ws5c{word-spacing:1.386000px;}
.ws60{word-spacing:1.518000px;}
.wsa{word-spacing:1.650000px;}
.ws3a{word-spacing:1.716000px;}
.ws1e{word-spacing:1.782000px;}
.ws39{word-spacing:1.848000px;}
.ws57{word-spacing:1.914000px;}
.wsd{word-spacing:2.046000px;}
.ws55{word-spacing:2.112000px;}
.ws18{word-spacing:2.178000px;}
.ws41{word-spacing:2.244000px;}
.ws59{word-spacing:2.310000px;}
.ws4b{word-spacing:2.442000px;}
.ws4e{word-spacing:2.508000px;}
.ws56{word-spacing:2.640000px;}
.ws2e{word-spacing:2.970000px;}
.ws34{word-spacing:3.366000px;}
.ws15{word-spacing:3.455052px;}
.ws4d{word-spacing:3.696000px;}
.ws1c{word-spacing:3.762000px;}
.ws1d{word-spacing:3.828000px;}
.ws16{word-spacing:4.026000px;}
.ws19{word-spacing:4.422000px;}
.ws5a{word-spacing:4.554000px;}
.wse{word-spacing:4.620000px;}
.ws2c{word-spacing:4.686000px;}
.ws54{word-spacing:5.148000px;}
.ws11{word-spacing:5.184000px;}
.ws10{word-spacing:5.238000px;}
.wsc{word-spacing:5.280000px;}
.ws21{word-spacing:5.346000px;}
.ws20{word-spacing:5.412000px;}
.ws46{word-spacing:5.544000px;}
.ws29{word-spacing:6.138000px;}
.ws31{word-spacing:6.204000px;}
.ws5f{word-spacing:6.336000px;}
.ws38{word-spacing:6.666000px;}
.ws30{word-spacing:6.732000px;}
.ws4c{word-spacing:6.930000px;}
.ws32{word-spacing:7.128000px;}
.ws24{word-spacing:7.326000px;}
.ws2b{word-spacing:7.392000px;}
.ws28{word-spacing:7.788000px;}
.ws47{word-spacing:7.986000px;}
.ws17{word-spacing:8.514000px;}
.ws2f{word-spacing:8.580000px;}
.ws3e{word-spacing:9.174000px;}
.ws62{word-spacing:9.900000px;}
.ws6{word-spacing:10.296000px;}
.ws5{word-spacing:10.428000px;}
.ws36{word-spacing:10.626000px;}
.ws50{word-spacing:10.692000px;}
.ws4{word-spacing:11.088000px;}
.ws63{word-spacing:12.540000px;}
.ws3d{word-spacing:12.870000px;}
.ws3c{word-spacing:13.068000px;}
.ws45{word-spacing:14.652000px;}
.ws37{word-spacing:14.784000px;}
.ws49{word-spacing:16.896000px;}
.ws3{word-spacing:27.720000px;}
.ws9{word-spacing:34.320000px;}
._8{margin-left:-9.590400px;}
._c{margin-left:-7.034394px;}
._4{margin-left:-6.000000px;}
._3{margin-left:-4.375657px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._7{width:3.191831px;}
._9{width:4.936342px;}
._b{width:6.194048px;}
._6{width:7.426657px;}
._5{width:8.662448px;}
._a{width:9.698857px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:36.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs8{font-size:96.000000px;}
.fs6{font-size:120.000000px;}
.fs9{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y26{bottom:17.983350px;}
.y27{bottom:30.614100px;}
.y23{bottom:36.700200px;}
.y2{bottom:42.949800px;}
.y28{bottom:55.288350px;}
.y22{bottom:57.700200px;}
.y21{bottom:70.199400px;}
.y20{bottom:86.399400px;}
.y1f{bottom:102.599400px;}
.y1e{bottom:123.051900px;}
.y51{bottom:173.399400px;}
.y84{bottom:173.432400px;}
.y70{bottom:173.448900px;}
.y1d{bottom:181.145700px;}
.y50{bottom:195.905400px;}
.y83{bottom:195.938400px;}
.y6f{bottom:195.954900px;}
.y1c{bottom:203.651700px;}
.y4f{bottom:218.411400px;}
.y82{bottom:218.444400px;}
.y6e{bottom:218.460900px;}
.y1b{bottom:226.157700px;}
.y4e{bottom:240.917400px;}
.y81{bottom:240.950400px;}
.y6d{bottom:240.966900px;}
.y1a{bottom:248.663700px;}
.y4d{bottom:263.423400px;}
.y80{bottom:263.456400px;}
.y6c{bottom:263.472900px;}
.y19{bottom:271.169700px;}
.y7f{bottom:285.962400px;}
.y6b{bottom:285.978900px;}
.y18{bottom:293.675700px;}
.y4c{bottom:308.418900px;}
.y17{bottom:316.181700px;}
.y4b{bottom:330.924900px;}
.y7e{bottom:330.957900px;}
.y6a{bottom:330.974400px;}
.y16{bottom:338.687700px;}
.y4a{bottom:353.430900px;}
.y7d{bottom:353.463900px;}
.y69{bottom:353.480400px;}
.y15{bottom:361.193700px;}
.y49{bottom:375.936900px;}
.y7c{bottom:375.969900px;}
.y68{bottom:375.986400px;}
.y14{bottom:383.699700px;}
.y48{bottom:398.442900px;}
.y7b{bottom:398.475900px;}
.y67{bottom:398.492400px;}
.y13{bottom:406.205700px;}
.y47{bottom:420.948900px;}
.y7a{bottom:420.981900px;}
.y66{bottom:420.998400px;}
.y12{bottom:428.711700px;}
.y46{bottom:443.454900px;}
.y79{bottom:443.487900px;}
.y11{bottom:451.217700px;}
.y45{bottom:465.960900px;}
.y65{bottom:465.993900px;}
.y10{bottom:473.723700px;}
.y44{bottom:488.466900px;}
.y78{bottom:488.483400px;}
.yf{bottom:496.229700px;}
.y43{bottom:510.972900px;}
.y64{bottom:510.989400px;}
.y42{bottom:533.478900px;}
.y63{bottom:533.495400px;}
.ye{bottom:541.229700px;}
.y41{bottom:555.984900px;}
.y62{bottom:556.001400px;}
.yd{bottom:575.729700px;}
.y40{bottom:578.490900px;}
.y61{bottom:578.507400px;}
.y3f{bottom:600.996900px;}
.y60{bottom:601.013400px;}
.y3e{bottom:623.502900px;}
.y5f{bottom:623.519400px;}
.y5e{bottom:646.025400px;}
.y3d{bottom:668.498400px;}
.y5d{bottom:668.531400px;}
.y3c{bottom:691.004400px;}
.y77{bottom:691.020900px;}
.y3b{bottom:713.510400px;}
.y5c{bottom:713.526900px;}
.y3a{bottom:736.016400px;}
.y5b{bottom:736.032900px;}
.y39{bottom:758.522400px;}
.y5a{bottom:758.538900px;}
.y38{bottom:781.028400px;}
.y59{bottom:781.044900px;}
.yc{bottom:781.432800px;}
.y37{bottom:803.534400px;}
.y58{bottom:803.550900px;}
.yb{bottom:806.938800px;}
.y36{bottom:826.040400px;}
.y57{bottom:826.056900px;}
.y35{bottom:848.546400px;}
.y56{bottom:848.562900px;}
.ya{bottom:857.938800px;}
.y55{bottom:871.068900px;}
.y9{bottom:881.938800px;}
.y34{bottom:893.541900px;}
.y88{bottom:893.558400px;}
.y54{bottom:893.574900px;}
.y8{bottom:905.938800px;}
.y33{bottom:916.047900px;}
.y87{bottom:916.064400px;}
.y53{bottom:916.080900px;}
.y32{bottom:938.553900px;}
.y86{bottom:938.570400px;}
.y76{bottom:938.586900px;}
.y7{bottom:950.938800px;}
.y31{bottom:961.059900px;}
.y52{bottom:961.076400px;}
.y75{bottom:961.092900px;}
.y30{bottom:983.565900px;}
.y85{bottom:983.582400px;}
.y2f{bottom:1006.071900px;}
.y74{bottom:1006.088400px;}
.y2e{bottom:1028.577900px;}
.y73{bottom:1028.594400px;}
.y2d{bottom:1051.083900px;}
.y72{bottom:1051.100400px;}
.y2c{bottom:1073.589900px;}
.y71{bottom:1073.606400px;}
.y2b{bottom:1096.095900px;}
.y6{bottom:1099.267350px;}
.y2a{bottom:1118.601900px;}
.y5{bottom:1131.232500px;}
.y29{bottom:1141.107900px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y24{bottom:1185.328350px;}
.y25{bottom:1220.509800px;}
.h4{height:37.800000px;}
.ha{height:56.700000px;}
.h2{height:62.424000px;}
.h7{height:63.000000px;}
.h3{height:64.347750px;}
.h5{height:69.300000px;}
.hb{height:72.000000px;}
.h8{height:75.600000px;}
.h6{height:88.200000px;}
.h9{height:126.000000px;}
.hc{height:181.390230px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:21.259800px;}
.xd{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xe{left:106.299150px;}
.x2{left:155.902500px;}
.x3{left:209.902500px;}
.x9{left:212.598450px;}
.x8{left:280.779600px;}
.x6{left:297.742500px;}
.x7{left:301.889700px;}
.xf{left:435.639150px;}
.xa{left:815.527500px;}
.x10{left:824.681250px;}
.xb{left:825.732300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-3.071157pt;}
.ls6{letter-spacing:-2.816000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.117333pt;}
.ls0{letter-spacing:0.381320pt;}
.ls2{letter-spacing:0.746667pt;}
.ls3{letter-spacing:1.066667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls5{letter-spacing:8.524800pt;}
.ws14{word-spacing:-16.192000pt;}
.ws58{word-spacing:-15.781333pt;}
.ws12{word-spacing:-13.552000pt;}
.ws13{word-spacing:-8.610133pt;}
.ws48{word-spacing:-5.984000pt;}
.wsb{word-spacing:-5.280000pt;}
.ws22{word-spacing:-4.517333pt;}
.ws2a{word-spacing:-3.637333pt;}
.ws8{word-spacing:-3.520000pt;}
.ws7{word-spacing:-3.109333pt;}
.ws1f{word-spacing:-2.992000pt;}
.ws4a{word-spacing:-2.640000pt;}
.ws2d{word-spacing:-1.936000pt;}
.ws1a{word-spacing:-1.877333pt;}
.ws1b{word-spacing:-1.818667pt;}
.ws42{word-spacing:-1.642667pt;}
.ws5e{word-spacing:-1.232000pt;}
.ws4f{word-spacing:-1.114667pt;}
.ws27{word-spacing:-0.997333pt;}
.ws44{word-spacing:-0.938667pt;}
.ws61{word-spacing:-0.880000pt;}
.ws26{word-spacing:-0.762667pt;}
.ws23{word-spacing:-0.704000pt;}
.ws2{word-spacing:-0.533333pt;}
.ws53{word-spacing:-0.469333pt;}
.ws5d{word-spacing:-0.410667pt;}
.ws1{word-spacing:-0.373333pt;}
.ws3f{word-spacing:-0.176000pt;}
.ws35{word-spacing:-0.117333pt;}
.wsf{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.ws40{word-spacing:0.058667pt;}
.ws3b{word-spacing:0.352000pt;}
.ws51{word-spacing:0.469333pt;}
.ws52{word-spacing:0.586667pt;}
.ws5b{word-spacing:0.645333pt;}
.ws43{word-spacing:0.762667pt;}
.ws33{word-spacing:0.938667pt;}
.ws25{word-spacing:1.114667pt;}
.ws5c{word-spacing:1.232000pt;}
.ws60{word-spacing:1.349333pt;}
.wsa{word-spacing:1.466667pt;}
.ws3a{word-spacing:1.525333pt;}
.ws1e{word-spacing:1.584000pt;}
.ws39{word-spacing:1.642667pt;}
.ws57{word-spacing:1.701333pt;}
.wsd{word-spacing:1.818667pt;}
.ws55{word-spacing:1.877333pt;}
.ws18{word-spacing:1.936000pt;}
.ws41{word-spacing:1.994667pt;}
.ws59{word-spacing:2.053333pt;}
.ws4b{word-spacing:2.170667pt;}
.ws4e{word-spacing:2.229333pt;}
.ws56{word-spacing:2.346667pt;}
.ws2e{word-spacing:2.640000pt;}
.ws34{word-spacing:2.992000pt;}
.ws15{word-spacing:3.071157pt;}
.ws4d{word-spacing:3.285333pt;}
.ws1c{word-spacing:3.344000pt;}
.ws1d{word-spacing:3.402667pt;}
.ws16{word-spacing:3.578667pt;}
.ws19{word-spacing:3.930667pt;}
.ws5a{word-spacing:4.048000pt;}
.wse{word-spacing:4.106667pt;}
.ws2c{word-spacing:4.165333pt;}
.ws54{word-spacing:4.576000pt;}
.ws11{word-spacing:4.608000pt;}
.ws10{word-spacing:4.656000pt;}
.wsc{word-spacing:4.693333pt;}
.ws21{word-spacing:4.752000pt;}
.ws20{word-spacing:4.810667pt;}
.ws46{word-spacing:4.928000pt;}
.ws29{word-spacing:5.456000pt;}
.ws31{word-spacing:5.514667pt;}
.ws5f{word-spacing:5.632000pt;}
.ws38{word-spacing:5.925333pt;}
.ws30{word-spacing:5.984000pt;}
.ws4c{word-spacing:6.160000pt;}
.ws32{word-spacing:6.336000pt;}
.ws24{word-spacing:6.512000pt;}
.ws2b{word-spacing:6.570667pt;}
.ws28{word-spacing:6.922667pt;}
.ws47{word-spacing:7.098667pt;}
.ws17{word-spacing:7.568000pt;}
.ws2f{word-spacing:7.626667pt;}
.ws3e{word-spacing:8.154667pt;}
.ws62{word-spacing:8.800000pt;}
.ws6{word-spacing:9.152000pt;}
.ws5{word-spacing:9.269333pt;}
.ws36{word-spacing:9.445333pt;}
.ws50{word-spacing:9.504000pt;}
.ws4{word-spacing:9.856000pt;}
.ws63{word-spacing:11.146667pt;}
.ws3d{word-spacing:11.440000pt;}
.ws3c{word-spacing:11.616000pt;}
.ws45{word-spacing:13.024000pt;}
.ws37{word-spacing:13.141333pt;}
.ws49{word-spacing:15.018667pt;}
.ws3{word-spacing:24.640000pt;}
.ws9{word-spacing:30.506667pt;}
._8{margin-left:-8.524800pt;}
._c{margin-left:-6.252795pt;}
._4{margin-left:-5.333333pt;}
._3{margin-left:-3.889473pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._7{width:2.837183pt;}
._9{width:4.387860pt;}
._b{width:5.505820pt;}
._6{width:6.601473pt;}
._5{width:7.699953pt;}
._a{width:8.621207pt;}
.fs1{font-size:32.000000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs8{font-size:85.333333pt;}
.fs6{font-size:106.666667pt;}
.fs9{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y26{bottom:15.985200pt;}
.y27{bottom:27.212533pt;}
.y23{bottom:32.622400pt;}
.y2{bottom:38.177600pt;}
.y28{bottom:49.145200pt;}
.y22{bottom:51.289067pt;}
.y21{bottom:62.399467pt;}
.y20{bottom:76.799467pt;}
.y1f{bottom:91.199467pt;}
.y1e{bottom:109.379467pt;}
.y51{bottom:154.132800pt;}
.y84{bottom:154.162133pt;}
.y70{bottom:154.176800pt;}
.y1d{bottom:161.018400pt;}
.y50{bottom:174.138133pt;}
.y83{bottom:174.167467pt;}
.y6f{bottom:174.182133pt;}
.y1c{bottom:181.023733pt;}
.y4f{bottom:194.143467pt;}
.y82{bottom:194.172800pt;}
.y6e{bottom:194.187467pt;}
.y1b{bottom:201.029067pt;}
.y4e{bottom:214.148800pt;}
.y81{bottom:214.178133pt;}
.y6d{bottom:214.192800pt;}
.y1a{bottom:221.034400pt;}
.y4d{bottom:234.154133pt;}
.y80{bottom:234.183467pt;}
.y6c{bottom:234.198133pt;}
.y19{bottom:241.039733pt;}
.y7f{bottom:254.188800pt;}
.y6b{bottom:254.203467pt;}
.y18{bottom:261.045067pt;}
.y4c{bottom:274.150133pt;}
.y17{bottom:281.050400pt;}
.y4b{bottom:294.155467pt;}
.y7e{bottom:294.184800pt;}
.y6a{bottom:294.199467pt;}
.y16{bottom:301.055733pt;}
.y4a{bottom:314.160800pt;}
.y7d{bottom:314.190133pt;}
.y69{bottom:314.204800pt;}
.y15{bottom:321.061067pt;}
.y49{bottom:334.166133pt;}
.y7c{bottom:334.195467pt;}
.y68{bottom:334.210133pt;}
.y14{bottom:341.066400pt;}
.y48{bottom:354.171467pt;}
.y7b{bottom:354.200800pt;}
.y67{bottom:354.215467pt;}
.y13{bottom:361.071733pt;}
.y47{bottom:374.176800pt;}
.y7a{bottom:374.206133pt;}
.y66{bottom:374.220800pt;}
.y12{bottom:381.077067pt;}
.y46{bottom:394.182133pt;}
.y79{bottom:394.211467pt;}
.y11{bottom:401.082400pt;}
.y45{bottom:414.187467pt;}
.y65{bottom:414.216800pt;}
.y10{bottom:421.087733pt;}
.y44{bottom:434.192800pt;}
.y78{bottom:434.207467pt;}
.yf{bottom:441.093067pt;}
.y43{bottom:454.198133pt;}
.y64{bottom:454.212800pt;}
.y42{bottom:474.203467pt;}
.y63{bottom:474.218133pt;}
.ye{bottom:481.093067pt;}
.y41{bottom:494.208800pt;}
.y62{bottom:494.223467pt;}
.yd{bottom:511.759733pt;}
.y40{bottom:514.214133pt;}
.y61{bottom:514.228800pt;}
.y3f{bottom:534.219467pt;}
.y60{bottom:534.234133pt;}
.y3e{bottom:554.224800pt;}
.y5f{bottom:554.239467pt;}
.y5e{bottom:574.244800pt;}
.y3d{bottom:594.220800pt;}
.y5d{bottom:594.250133pt;}
.y3c{bottom:614.226133pt;}
.y77{bottom:614.240800pt;}
.y3b{bottom:634.231467pt;}
.y5c{bottom:634.246133pt;}
.y3a{bottom:654.236800pt;}
.y5b{bottom:654.251467pt;}
.y39{bottom:674.242133pt;}
.y5a{bottom:674.256800pt;}
.y38{bottom:694.247467pt;}
.y59{bottom:694.262133pt;}
.yc{bottom:694.606933pt;}
.y37{bottom:714.252800pt;}
.y58{bottom:714.267467pt;}
.yb{bottom:717.278933pt;}
.y36{bottom:734.258133pt;}
.y57{bottom:734.272800pt;}
.y35{bottom:754.263467pt;}
.y56{bottom:754.278133pt;}
.ya{bottom:762.612267pt;}
.y55{bottom:774.283467pt;}
.y9{bottom:783.945600pt;}
.y34{bottom:794.259467pt;}
.y88{bottom:794.274133pt;}
.y54{bottom:794.288800pt;}
.y8{bottom:805.278933pt;}
.y33{bottom:814.264800pt;}
.y87{bottom:814.279467pt;}
.y53{bottom:814.294133pt;}
.y32{bottom:834.270133pt;}
.y86{bottom:834.284800pt;}
.y76{bottom:834.299467pt;}
.y7{bottom:845.278933pt;}
.y31{bottom:854.275467pt;}
.y52{bottom:854.290133pt;}
.y75{bottom:854.304800pt;}
.y30{bottom:874.280800pt;}
.y85{bottom:874.295467pt;}
.y2f{bottom:894.286133pt;}
.y74{bottom:894.300800pt;}
.y2e{bottom:914.291467pt;}
.y73{bottom:914.306133pt;}
.y2d{bottom:934.296800pt;}
.y72{bottom:934.311467pt;}
.y2c{bottom:954.302133pt;}
.y71{bottom:954.316800pt;}
.y2b{bottom:974.307467pt;}
.y6{bottom:977.126533pt;}
.y2a{bottom:994.312800pt;}
.y5{bottom:1005.540000pt;}
.y29{bottom:1014.318133pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y24{bottom:1053.625200pt;}
.y25{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.ha{height:50.400000pt;}
.h2{height:55.488000pt;}
.h7{height:56.000000pt;}
.h3{height:57.198000pt;}
.h5{height:61.600000pt;}
.hb{height:64.000000pt;}
.h8{height:67.200000pt;}
.h6{height:78.400000pt;}
.h9{height:112.000000pt;}
.hc{height:161.235760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:18.897600pt;}
.xd{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xe{left:94.488133pt;}
.x2{left:138.580000pt;}
.x3{left:186.580000pt;}
.x9{left:188.976400pt;}
.x8{left:249.581867pt;}
.x6{left:264.660000pt;}
.x7{left:268.346400pt;}
.xf{left:387.234800pt;}
.xa{left:724.913333pt;}
.x10{left:733.050000pt;}
.xb{left:733.984267pt;}
}




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