
    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_f770fb809623b65937390b7c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_88af0c441e55a679fc0c2731.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_d6b28c6728c2d42b1e9c7a96.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_4a5c89243a3e5a4a0d067b6f.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_5186b29f3ab2aba6f5d56623.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_aac3bc27607907cc7b86b6a8.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_d945350ff2fdbde77aa2ef74.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_3242e946710782d0bb0f0c2f.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_2343cc3cd6be8f27f349e31f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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;}
.m7{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);}
.m4{transform:matrix(0.213517,0.130040,-0.130040,0.213517,0,0);-ms-transform:matrix(0.213517,0.130040,-0.130040,0.213517,0,0);-webkit-transform:matrix(0.213517,0.130040,-0.130040,0.213517,0,0);}
.m1{transform:matrix(0.213517,-0.130040,0.130040,0.213517,0,0);-ms-transform:matrix(0.213517,-0.130040,0.130040,0.213517,0,0);-webkit-transform:matrix(0.213517,-0.130040,0.130040,0.213517,0,0);}
.m6{transform:matrix(0.220820,-0.117212,0.117212,0.220820,0,0);-ms-transform:matrix(0.220820,-0.117212,0.117212,0.220820,0,0);-webkit-transform:matrix(0.220820,-0.117212,0.117212,0.220820,0,0);}
.m5{transform:matrix(0.221031,-0.116814,0.116814,0.221031,0,0);-ms-transform:matrix(0.221031,-0.116814,0.116814,0.221031,0,0);-webkit-transform:matrix(0.221031,-0.116814,0.116814,0.221031,0,0);}
.m3{transform:matrix(0.231055,0.095466,-0.095466,0.231055,0,0);-ms-transform:matrix(0.231055,0.095466,-0.095466,0.231055,0,0);-webkit-transform:matrix(0.231055,0.095466,-0.095466,0.231055,0,0);}
.m2{transform:matrix(0.231055,-0.095466,0.095466,0.231055,0,0);-ms-transform:matrix(0.231055,-0.095466,0.095466,0.231055,0,0);-webkit-transform:matrix(0.231055,-0.095466,0.095466,0.231055,0,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);}
.m8{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);}
.v1{vertical-align:-10.380000px;}
.v2{vertical-align:-5.808000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.440000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:11.907379px;}
.ls0{letter-spacing:43.038720px;}
.ls1{letter-spacing:718.968960px;}
.ls3{letter-spacing:1024.391700px;}
.ls4{letter-spacing:1027.385700px;}
.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;}
}
.ws3{word-spacing:-43.110451px;}
.ws19{word-spacing:-29.881822px;}
.ws28{word-spacing:-29.382075px;}
.ws26{word-spacing:-24.480299px;}
.ws23{word-spacing:-19.008768px;}
.ws16{word-spacing:-17.820720px;}
.ws17{word-spacing:-17.820176px;}
.wsa{word-spacing:-17.000294px;}
.ws20{word-spacing:-15.840574px;}
.ws22{word-spacing:-15.840090px;}
.ws21{word-spacing:-15.840023px;}
.ws18{word-spacing:-9.976548px;}
.ws1a{word-spacing:-9.916772px;}
.wsf{word-spacing:-3.945216px;}
.ws10{word-spacing:-2.797517px;}
.ws25{word-spacing:-2.603153px;}
.ws8{word-spacing:-2.582323px;}
.wse{word-spacing:-1.865011px;}
.ws9{word-spacing:-0.573850px;}
.ws7{word-spacing:-0.071731px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.645581px;}
.ws12{word-spacing:0.717312px;}
.ws13{word-spacing:0.789043px;}
.ws1c{word-spacing:1.721549px;}
.ws1f{word-spacing:1.793280px;}
.wsd{word-spacing:3.012710px;}
.ws6{word-spacing:3.084442px;}
.ws15{word-spacing:3.443098px;}
.ws2a{word-spacing:4.064741px;}
.ws1e{word-spacing:4.877722px;}
.ws1b{word-spacing:5.881958px;}
.wsb{word-spacing:6.168883px;}
.wsc{word-spacing:6.886195px;}
.ws11{word-spacing:13.772390px;}
.ws1d{word-spacing:14.704896px;}
.ws29{word-spacing:18.400425px;}
.ws27{word-spacing:18.403125px;}
.ws14{word-spacing:19.726080px;}
.ws1{word-spacing:28.715287px;}
.ws24{word-spacing:51.560243px;}
.ws4{word-spacing:117.340042px;}
.ws5{word-spacing:120.928042px;}
._7{margin-left:-43.038720px;}
._2{margin-left:-18.076212px;}
._1{margin-left:-9.468492px;}
._15{margin-left:-6.690105px;}
._18{margin-left:-5.678682px;}
._5{margin-left:-4.544866px;}
._0{margin-left:-3.227895px;}
._6{margin-left:-2.151936px;}
._4{margin-left:-1.032924px;}
._a{width:1.075968px;}
._17{width:2.510592px;}
._9{width:11.907379px;}
._e{width:13.772390px;}
._f{width:17.502413px;}
._16{width:20.703825px;}
._8{width:22.910940px;}
._c{width:25.923650px;}
._d{width:31.274803px;}
._10{width:32.494234px;}
._14{width:37.515418px;}
._b{width:53.195586px;}
._13{width:66.710016px;}
._12{width:238.340792px;}
._11{width:389.232339px;}
._19{width:966.810569px;}
._3{width:1593.199194px;}
.fc7{color:transparent;}
.fc2{color:rgb(163,38,56);}
.fc6{color:rgb(204,204,204);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(42,42,42);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:10.983767px;}
.fs6{font-size:41.840153px;}
.fs5{font-size:41.840402px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fsb{font-size:59.773672px;}
.fsc{font-size:59.773925px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:59.775750px;}
.fs9{font-size:67.245947px;}
.fs8{font-size:67.248000px;}
.fs3{font-size:71.731200px;}
.fsd{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fsf{font-size:123.975000px;}
.fs0{font-size:215.193000px;}
.y0{bottom:0.000000px;}
.y74{bottom:40.954500px;}
.y70{bottom:92.848500px;}
.y6f{bottom:109.501500px;}
.y73{bottom:111.595500px;}
.y69{bottom:114.097500px;}
.y72{bottom:124.578000px;}
.y71{bottom:131.707500px;}
.y68{bottom:137.110500px;}
.y64{bottom:156.312712px;}
.y6e{bottom:162.670500px;}
.y63{bottom:163.934662px;}
.y67{bottom:172.920000px;}
.y6c{bottom:179.323500px;}
.y6d{bottom:185.685000px;}
.y66{bottom:195.933000px;}
.y65{bottom:218.947500px;}
.y6b{bottom:231.021000px;}
.y6a{bottom:247.674000px;}
.y60{bottom:350.745000px;}
.y62{bottom:353.157000px;}
.y5f{bottom:373.758000px;}
.y61{bottom:382.746000px;}
.y5e{bottom:408.553500px;}
.y4b{bottom:466.299000px;}
.y56{bottom:474.427500px;}
.y54{bottom:483.381000px;}
.y52{bottom:483.414000px;}
.y4a{bottom:489.313500px;}
.y5a{bottom:497.512500px;}
.y57{bottom:518.013000px;}
.y59{bottom:520.221000px;}
.y49{bottom:521.293500px;}
.y55{bottom:521.923500px;}
.y58{bottom:535.371000px;}
.y48{bottom:544.306500px;}
.y4f{bottom:546.181500px;}
.y53{bottom:555.001500px;}
.y4c{bottom:555.127500px;}
.y47{bottom:567.321000px;}
.y5b{bottom:568.603500px;}
.y5d{bottom:570.015000px;}
.y50{bottom:589.971000px;}
.y46{bottom:590.334000px;}
.y4e{bottom:593.679000px;}
.y51{bottom:607.675500px;}
.y45{bottom:613.348500px;}
.y4d{bottom:627.495000px;}
.y5c{bottom:640.743000px;}
.y44{bottom:648.780000px;}
.y32{bottom:731.443500px;}
.y43{bottom:739.954500px;}
.y31{bottom:754.456500px;}
.y42{bottom:775.971000px;}
.y30{bottom:777.471000px;}
.y2f{bottom:800.484000px;}
.y41{bottom:806.005500px;}
.y2e{bottom:832.465500px;}
.y2d{bottom:855.478500px;}
.y3d{bottom:861.009000px;}
.y3b{bottom:871.209000px;}
.y39{bottom:871.242000px;}
.y2c{bottom:887.458500px;}
.y3e{bottom:906.240000px;}
.y40{bottom:907.357500px;}
.y3c{bottom:909.414000px;}
.y2b{bottom:910.473000px;}
.y3f{bottom:922.275000px;}
.y36{bottom:932.016000px;}
.y2a{bottom:933.486000px;}
.y33{bottom:942.208500px;}
.y3a{bottom:942.829500px;}
.y29{bottom:956.500500px;}
.y37{bottom:973.593000px;}
.y28{bottom:979.513500px;}
.y35{bottom:980.421000px;}
.y38{bottom:993.291000px;}
.y34{bottom:1013.827500px;}
.y27{bottom:1015.350000px;}
.y1d{bottom:1080.636000px;}
.y26{bottom:1080.705000px;}
.y18{bottom:1092.750000px;}
.y22{bottom:1093.729500px;}
.y17{bottom:1124.730000px;}
.y19{bottom:1132.162500px;}
.y21{bottom:1141.059000px;}
.y16{bottom:1147.743000px;}
.y25{bottom:1157.523000px;}
.y20{bottom:1158.375000px;}
.y1c{bottom:1158.738000px;}
.y1e{bottom:1171.791000px;}
.y15{bottom:1183.176000px;}
.y24{bottom:1183.351500px;}
.y1a{bottom:1183.689000px;}
.y1b{bottom:1208.640000px;}
.y23{bottom:1208.709000px;}
.y1f{bottom:1209.250500px;}
.y9{bottom:1241.686500px;}
.y10{bottom:1254.936000px;}
.y14{bottom:1255.005000px;}
.y8{bottom:1269.183000px;}
.yf{bottom:1293.541500px;}
.y7{bottom:1296.679500px;}
.ya{bottom:1312.846500px;}
.y6{bottom:1328.659500px;}
.yd{bottom:1332.150000px;}
.ye{bottom:1332.153000px;}
.y13{bottom:1333.530000px;}
.y5{bottom:1351.674000px;}
.y12{bottom:1370.419500px;}
.yb{bottom:1370.758500px;}
.y4{bottom:1387.107000px;}
.yc{bottom:1409.365500px;}
.y11{bottom:1409.434500px;}
.y3{bottom:1465.413000px;}
.y2{bottom:1482.412500px;}
.y1{bottom:1534.005000px;}
.h11{height:11.532955px;}
.hc{height:43.875290px;}
.h8{height:43.932161px;}
.h7{height:43.932422px;}
.h9{height:43.934940px;}
.h6{height:56.488320px;}
.he{height:62.762356px;}
.hf{height:62.762622px;}
.h3{height:62.764380px;}
.hd{height:62.764538px;}
.hb{height:70.608245px;}
.ha{height:70.610400px;}
.h5{height:75.317760px;}
.h10{height:90.381060px;}
.h4{height:108.457020px;}
.h12{height:130.173750px;}
.h2{height:225.952650px;}
.h1{height:1785.750000px;}
.h0{height:1785.826500px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x43{left:31.801500px;}
.x44{left:51.528000px;}
.x45{left:71.254500px;}
.x3{left:80.026500px;}
.x1{left:82.125000px;}
.x46{left:85.395000px;}
.x19{left:95.437500px;}
.x24{left:105.166500px;}
.x41{left:106.431000px;}
.x3d{left:123.441000px;}
.x1d{left:135.706500px;}
.x25{left:137.142000px;}
.x1b{left:141.463500px;}
.x1c{left:148.366500px;}
.x40{left:150.880500px;}
.x26{left:184.536000px;}
.x42{left:205.779000px;}
.x3e{left:221.178000px;}
.x18{left:224.960625px;}
.x17{left:227.482125px;}
.x1f{left:229.578000px;}
.x1a{left:240.318000px;}
.x4{left:248.977500px;}
.x23{left:269.880000px;}
.x21{left:275.619000px;}
.x22{left:282.604500px;}
.x1e{left:364.144875px;}
.x20{left:374.473500px;}
.x3f{left:394.887000px;}
.x16{left:447.139500px;}
.x5{left:673.327500px;}
.x34{left:675.339000px;}
.x28{left:698.451000px;}
.x33{left:708.180000px;}
.x3a{left:712.417500px;}
.x3b{left:725.832000px;}
.x39{left:731.355000px;}
.x2c{left:741.591000px;}
.x2a{left:748.242000px;}
.x2b{left:755.067000px;}
.x6{left:767.233500px;}
.x12{left:779.308500px;}
.xe{left:782.598000px;}
.xa{left:790.114500px;}
.x11{left:806.782500px;}
.x36{left:810.160500px;}
.x35{left:816.049500px;}
.xc{left:823.722000px;}
.x7{left:828.861000px;}
.x27{left:831.242625px;}
.x2e{left:833.338500px;}
.x29{left:844.080000px;}
.x2{left:872.250000px;}
.x3c{left:875.050500px;}
.x32{left:876.243000px;}
.x30{left:882.397500px;}
.x31{left:889.098000px;}
.xb{left:893.883000px;}
.x10{left:895.627500px;}
.x15{left:896.814000px;}
.xf{left:899.017500px;}
.x14{left:911.160000px;}
.xd{left:925.698000px;}
.x9{left:932.439000px;}
.x8{left:953.718000px;}
.x2d{left:967.905000px;}
.x2f{left:978.235500px;}
.x13{left:996.997500px;}
.x37{left:1089.940462px;}
.x38{left:1097.630400px;}
@media print{
.v1{vertical-align:-9.226667pt;}
.v2{vertical-align:-5.162667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.613333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:10.584337pt;}
.ls0{letter-spacing:38.256640pt;}
.ls1{letter-spacing:639.083520pt;}
.ls3{letter-spacing:910.570400pt;}
.ls4{letter-spacing:913.231733pt;}
.ws3{word-spacing:-38.320401pt;}
.ws19{word-spacing:-26.561620pt;}
.ws28{word-spacing:-26.117400pt;}
.ws26{word-spacing:-21.760266pt;}
.ws23{word-spacing:-16.896683pt;}
.ws16{word-spacing:-15.840640pt;}
.ws17{word-spacing:-15.840156pt;}
.wsa{word-spacing:-15.111373pt;}
.ws20{word-spacing:-14.080510pt;}
.ws22{word-spacing:-14.080080pt;}
.ws21{word-spacing:-14.080021pt;}
.ws18{word-spacing:-8.868042pt;}
.ws1a{word-spacing:-8.814908pt;}
.wsf{word-spacing:-3.506859pt;}
.ws10{word-spacing:-2.486682pt;}
.ws25{word-spacing:-2.313913pt;}
.ws8{word-spacing:-2.295398pt;}
.wse{word-spacing:-1.657788pt;}
.ws9{word-spacing:-0.510089pt;}
.ws7{word-spacing:-0.063761pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.573850pt;}
.ws12{word-spacing:0.637611pt;}
.ws13{word-spacing:0.701372pt;}
.ws1c{word-spacing:1.530266pt;}
.ws1f{word-spacing:1.594027pt;}
.wsd{word-spacing:2.677965pt;}
.ws6{word-spacing:2.741726pt;}
.ws15{word-spacing:3.060531pt;}
.ws2a{word-spacing:3.613103pt;}
.ws1e{word-spacing:4.335753pt;}
.ws1b{word-spacing:5.228407pt;}
.wsb{word-spacing:5.483452pt;}
.wsc{word-spacing:6.121062pt;}
.ws11{word-spacing:12.242125pt;}
.ws1d{word-spacing:13.071019pt;}
.ws29{word-spacing:16.355933pt;}
.ws27{word-spacing:16.358333pt;}
.ws14{word-spacing:17.534293pt;}
.ws1{word-spacing:25.524700pt;}
.ws24{word-spacing:45.831327pt;}
.ws4{word-spacing:104.302259pt;}
.ws5{word-spacing:107.491593pt;}
._7{margin-left:-38.256640pt;}
._2{margin-left:-16.067744pt;}
._1{margin-left:-8.416437pt;}
._15{margin-left:-5.946760pt;}
._18{margin-left:-5.047717pt;}
._5{margin-left:-4.039881pt;}
._0{margin-left:-2.869240pt;}
._6{margin-left:-1.912832pt;}
._4{margin-left:-0.918155pt;}
._a{width:0.956416pt;}
._17{width:2.231637pt;}
._9{width:10.584337pt;}
._e{width:12.242125pt;}
._f{width:15.557700pt;}
._16{width:18.403400pt;}
._8{width:20.365280pt;}
._c{width:23.043245pt;}
._d{width:27.799825pt;}
._10{width:28.883763pt;}
._14{width:33.347038pt;}
._b{width:47.284965pt;}
._13{width:59.297792pt;}
._12{width:211.858481pt;}
._11{width:345.984301pt;}
._19{width:859.387172pt;}
._3{width:1416.177061pt;}
.fse{font-size:9.763348pt;}
.fs6{font-size:37.191247pt;}
.fs5{font-size:37.191468pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fsb{font-size:53.132153pt;}
.fsc{font-size:53.132378pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:53.134000pt;}
.fs9{font-size:59.774175pt;}
.fs8{font-size:59.776000pt;}
.fs3{font-size:63.761067pt;}
.fsd{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fsf{font-size:110.200000pt;}
.fs0{font-size:191.282667pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:36.404000pt;}
.y70{bottom:82.532000pt;}
.y6f{bottom:97.334667pt;}
.y73{bottom:99.196000pt;}
.y69{bottom:101.420000pt;}
.y72{bottom:110.736000pt;}
.y71{bottom:117.073333pt;}
.y68{bottom:121.876000pt;}
.y64{bottom:138.944633pt;}
.y6e{bottom:144.596000pt;}
.y63{bottom:145.719700pt;}
.y67{bottom:153.706667pt;}
.y6c{bottom:159.398667pt;}
.y6d{bottom:165.053333pt;}
.y66{bottom:174.162667pt;}
.y65{bottom:194.620000pt;}
.y6b{bottom:205.352000pt;}
.y6a{bottom:220.154667pt;}
.y60{bottom:311.773333pt;}
.y62{bottom:313.917333pt;}
.y5f{bottom:332.229333pt;}
.y61{bottom:340.218667pt;}
.y5e{bottom:363.158667pt;}
.y4b{bottom:414.488000pt;}
.y56{bottom:421.713333pt;}
.y54{bottom:429.672000pt;}
.y52{bottom:429.701333pt;}
.y4a{bottom:434.945333pt;}
.y5a{bottom:442.233333pt;}
.y57{bottom:460.456000pt;}
.y59{bottom:462.418667pt;}
.y49{bottom:463.372000pt;}
.y55{bottom:463.932000pt;}
.y58{bottom:475.885333pt;}
.y48{bottom:483.828000pt;}
.y4f{bottom:485.494667pt;}
.y53{bottom:493.334667pt;}
.y4c{bottom:493.446667pt;}
.y47{bottom:504.285333pt;}
.y5b{bottom:505.425333pt;}
.y5d{bottom:506.680000pt;}
.y50{bottom:524.418667pt;}
.y46{bottom:524.741333pt;}
.y4e{bottom:527.714667pt;}
.y51{bottom:540.156000pt;}
.y45{bottom:545.198667pt;}
.y4d{bottom:557.773333pt;}
.y5c{bottom:569.549333pt;}
.y44{bottom:576.693333pt;}
.y32{bottom:650.172000pt;}
.y43{bottom:657.737333pt;}
.y31{bottom:670.628000pt;}
.y42{bottom:689.752000pt;}
.y30{bottom:691.085333pt;}
.y2f{bottom:711.541333pt;}
.y41{bottom:716.449333pt;}
.y2e{bottom:739.969333pt;}
.y2d{bottom:760.425333pt;}
.y3d{bottom:765.341333pt;}
.y3b{bottom:774.408000pt;}
.y39{bottom:774.437333pt;}
.y2c{bottom:788.852000pt;}
.y3e{bottom:805.546667pt;}
.y40{bottom:806.540000pt;}
.y3c{bottom:808.368000pt;}
.y2b{bottom:809.309333pt;}
.y3f{bottom:819.800000pt;}
.y36{bottom:828.458667pt;}
.y2a{bottom:829.765333pt;}
.y33{bottom:837.518667pt;}
.y3a{bottom:838.070667pt;}
.y29{bottom:850.222667pt;}
.y37{bottom:865.416000pt;}
.y28{bottom:870.678667pt;}
.y35{bottom:871.485333pt;}
.y38{bottom:882.925333pt;}
.y34{bottom:901.180000pt;}
.y27{bottom:902.533333pt;}
.y1d{bottom:960.565333pt;}
.y26{bottom:960.626667pt;}
.y18{bottom:971.333333pt;}
.y22{bottom:972.204000pt;}
.y17{bottom:999.760000pt;}
.y19{bottom:1006.366667pt;}
.y21{bottom:1014.274667pt;}
.y16{bottom:1020.216000pt;}
.y25{bottom:1028.909333pt;}
.y20{bottom:1029.666667pt;}
.y1c{bottom:1029.989333pt;}
.y1e{bottom:1041.592000pt;}
.y15{bottom:1051.712000pt;}
.y24{bottom:1051.868000pt;}
.y1a{bottom:1052.168000pt;}
.y1b{bottom:1074.346667pt;}
.y23{bottom:1074.408000pt;}
.y1f{bottom:1074.889333pt;}
.y9{bottom:1103.721333pt;}
.y10{bottom:1115.498667pt;}
.y14{bottom:1115.560000pt;}
.y8{bottom:1128.162667pt;}
.yf{bottom:1149.814667pt;}
.y7{bottom:1152.604000pt;}
.ya{bottom:1166.974667pt;}
.y6{bottom:1181.030667pt;}
.yd{bottom:1184.133333pt;}
.ye{bottom:1184.136000pt;}
.y13{bottom:1185.360000pt;}
.y5{bottom:1201.488000pt;}
.y12{bottom:1218.150667pt;}
.yb{bottom:1218.452000pt;}
.y4{bottom:1232.984000pt;}
.yc{bottom:1252.769333pt;}
.y11{bottom:1252.830667pt;}
.y3{bottom:1302.589333pt;}
.y2{bottom:1317.700000pt;}
.y1{bottom:1363.560000pt;}
.h11{height:10.251515pt;}
.hc{height:39.000258pt;}
.h8{height:39.050810pt;}
.h7{height:39.051042pt;}
.h9{height:39.053280pt;}
.h6{height:50.211840pt;}
.he{height:55.788761pt;}
.hf{height:55.788997pt;}
.h3{height:55.790560pt;}
.hd{height:55.790700pt;}
.hb{height:62.762884pt;}
.ha{height:62.764800pt;}
.h5{height:66.949120pt;}
.h10{height:80.338720pt;}
.h4{height:96.406240pt;}
.h12{height:115.710000pt;}
.h2{height:200.846800pt;}
.h1{height:1587.333333pt;}
.h0{height:1587.401333pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x43{left:28.268000pt;}
.x44{left:45.802667pt;}
.x45{left:63.337333pt;}
.x3{left:71.134667pt;}
.x1{left:73.000000pt;}
.x46{left:75.906667pt;}
.x19{left:84.833333pt;}
.x24{left:93.481333pt;}
.x41{left:94.605333pt;}
.x3d{left:109.725333pt;}
.x1d{left:120.628000pt;}
.x25{left:121.904000pt;}
.x1b{left:125.745333pt;}
.x1c{left:131.881333pt;}
.x40{left:134.116000pt;}
.x26{left:164.032000pt;}
.x42{left:182.914667pt;}
.x3e{left:196.602667pt;}
.x18{left:199.965000pt;}
.x17{left:202.206333pt;}
.x1f{left:204.069333pt;}
.x1a{left:213.616000pt;}
.x4{left:221.313333pt;}
.x23{left:239.893333pt;}
.x21{left:244.994667pt;}
.x22{left:251.204000pt;}
.x1e{left:323.684333pt;}
.x20{left:332.865333pt;}
.x3f{left:351.010667pt;}
.x16{left:397.457333pt;}
.x5{left:598.513333pt;}
.x34{left:600.301333pt;}
.x28{left:620.845333pt;}
.x33{left:629.493333pt;}
.x3a{left:633.260000pt;}
.x3b{left:645.184000pt;}
.x39{left:650.093333pt;}
.x2c{left:659.192000pt;}
.x2a{left:665.104000pt;}
.x2b{left:671.170667pt;}
.x6{left:681.985333pt;}
.x12{left:692.718667pt;}
.xe{left:695.642667pt;}
.xa{left:702.324000pt;}
.x11{left:717.140000pt;}
.x36{left:720.142667pt;}
.x35{left:725.377333pt;}
.xc{left:732.197333pt;}
.x7{left:736.765333pt;}
.x27{left:738.882333pt;}
.x2e{left:740.745333pt;}
.x29{left:750.293333pt;}
.x2{left:775.333333pt;}
.x3c{left:777.822667pt;}
.x32{left:778.882667pt;}
.x30{left:784.353333pt;}
.x31{left:790.309333pt;}
.xb{left:794.562667pt;}
.x10{left:796.113333pt;}
.x15{left:797.168000pt;}
.xf{left:799.126667pt;}
.x14{left:809.920000pt;}
.xd{left:822.842667pt;}
.x9{left:828.834667pt;}
.x8{left:847.749333pt;}
.x2d{left:860.360000pt;}
.x2f{left:869.542667pt;}
.x13{left:886.220000pt;}
.x37{left:968.835967pt;}
.x38{left:975.671467pt;}
}




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