
    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_9754121c8bd086b407b9ae75.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_6ef7b1878bf52ff59e634331.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0128af346ffccfa77e088127.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_1f96a6fbeabf79248a5a18e9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a5384ffc092378e2d26d5f52.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e3ee75730399b2d68e2c4a2c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_fde569fc92f855be17cde601.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_8d467a4c8c6dfa989a571e58.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_617929a310b852e6163e4685.woff')format("woff");}.ff9{font-family:ff9;line-height:0.892578;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_073836116db0aa96dd9f1162.woff')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_0094e733a04695225b3f631b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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.249799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249799,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-69.258152px;}
.v3{vertical-align:-7.723957px;}
.v4{vertical-align:-3.861979px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:7.672464px;}
.v8{vertical-align:25.199995px;}
.v7{vertical-align:27.480000px;}
.v2{vertical-align:57.723709px;}
.v6{vertical-align:88.650435px;}
.lsa{letter-spacing:-2.116364px;}
.lsb{letter-spacing:-1.735316px;}
.lsc{letter-spacing:-0.880531px;}
.lsd{letter-spacing:-0.446960px;}
.ls3{letter-spacing:-0.298200px;}
.ls9{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.058320px;}
.ls14{letter-spacing:-0.043920px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.252720px;}
.ls5{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.932024px;}
.lse{letter-spacing:1.266729px;}
.ls7{letter-spacing:2.984924px;}
.ls6{letter-spacing:3.087911px;}
.ls0{letter-spacing:194.544000px;}
.ls10{letter-spacing:481.708080px;}
.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;}
}
.ws1d{word-spacing:-21.312720px;}
.ws1a{word-spacing:-21.060000px;}
.ws1c{word-spacing:-21.016080px;}
.ws6{word-spacing:-18.340537px;}
.ws19{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws18{word-spacing:-16.605221px;}
.wsa{word-spacing:-15.449202px;}
.ws1{word-spacing:-15.226440px;}
.ws0{word-spacing:-13.447440px;}
.wsb{word-spacing:-0.050107px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:0.830424px;}
.ws8{word-spacing:1.005134px;}
.ws7{word-spacing:4.342054px;}
.wse{word-spacing:20.250258px;}
.ws5{word-spacing:22.781813px;}
.ws16{word-spacing:32.166982px;}
.ws12{word-spacing:35.646680px;}
.ws14{word-spacing:45.416584px;}
.wsf{word-spacing:45.452629px;}
.ws10{word-spacing:47.345901px;}
.ws11{word-spacing:48.927152px;}
.ws17{word-spacing:64.442008px;}
.ws15{word-spacing:66.873297px;}
.ws13{word-spacing:72.450435px;}
.ws9{word-spacing:89.739384px;}
.wsd{word-spacing:201.766736px;}
.ws1b{word-spacing:415.951920px;}
._19{margin-left:-185.107084px;}
._18{margin-left:-87.776773px;}
._1a{margin-left:-43.307328px;}
._23{margin-left:-10.251600px;}
._20{margin-left:-8.737200px;}
._5{margin-left:-6.840000px;}
._1b{margin-left:-5.814680px;}
._6{margin-left:-4.536000px;}
._2{margin-left:-2.875200px;}
._1{margin-left:-1.008000px;}
._0{width:1.544400px;}
._3{width:2.736000px;}
._4{width:4.094400px;}
._d{width:5.913600px;}
._17{width:7.036800px;}
._10{width:8.496000px;}
._7{width:9.576000px;}
._8{width:10.701600px;}
._9{width:11.880000px;}
._a{width:12.936000px;}
._f{width:14.112000px;}
._e{width:15.192000px;}
._13{width:16.344000px;}
._22{width:19.023080px;}
._b{width:20.376000px;}
._c{width:21.567600px;}
._16{width:23.328000px;}
._1f{width:24.735600px;}
._14{width:26.136000px;}
._21{width:27.332400px;}
._15{width:28.755600px;}
._11{width:31.248000px;}
._12{width:32.256000px;}
._1e{width:33.438680px;}
._24{width:35.118680px;}
._1c{width:96.267681px;}
._1d{width:453.600000px;}
.fc4{color:transparent;}
.fc3{color:rgb(20,21,21);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:2.880000px;}
.fs6{font-size:34.689323px;}
.fs9{font-size:42.398348px;}
.fsa{font-size:46.252602px;}
.fsb{font-size:48.240000px;}
.fs8{font-size:50.106857px;}
.fsc{font-size:56.160000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:61.796809px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:73.362148px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:7.020000px;}
.ya0{bottom:23.070000px;}
.y39{bottom:23.760000px;}
.y37{bottom:23.790000px;}
.y6b{bottom:44.908345px;}
.y6d{bottom:46.831635px;}
.y9e{bottom:51.735000px;}
.y7{bottom:57.636000px;}
.y97{bottom:76.395000px;}
.y60{bottom:85.350987px;}
.y6e{bottom:90.161744px;}
.y33{bottom:99.576000px;}
.y61{bottom:99.815386px;}
.y6f{bottom:108.475246px;}
.y62{bottom:118.128890px;}
.y32{bottom:123.336000px;}
.y70{bottom:127.750381px;}
.y98{bottom:128.370000px;}
.y91{bottom:134.676000px;}
.y63{bottom:142.185157px;}
.y96{bottom:143.250000px;}
.y31{bottom:147.096000px;}
.y71{bottom:147.991011px;}
.y90{bottom:158.430000px;}
.y64{bottom:164.340042px;}
.y9f{bottom:164.880000px;}
.y72{bottom:170.120148px;}
.y30{bottom:171.030000px;}
.y99{bottom:180.330000px;}
.y8f{bottom:182.370000px;}
.y65{bottom:186.507801px;}
.y2f{bottom:194.790000px;}
.y73{bottom:195.171516px;}
.y8e{bottom:206.130000px;}
.y66{bottom:207.710066px;}
.y93{bottom:213.585000px;}
.y74{bottom:218.291894px;}
.y2e{bottom:218.550000px;}
.y67{bottom:225.990100px;}
.y8d{bottom:229.890000px;}
.y9a{bottom:232.305000px;}
.y75{bottom:238.528662px;}
.y2d{bottom:242.310000px;}
.y68{bottom:243.343258px;}
.y8c{bottom:253.650000px;}
.y76{bottom:253.925084px;}
.y95{bottom:255.780000px;}
.y45{bottom:256.847333px;}
.y5f{bottom:261.649039px;}
.y2c{bottom:266.250000px;}
.y44{bottom:274.161871px;}
.y69{bottom:275.127362px;}
.y8b{bottom:277.590000px;}
.y9b{bottom:284.250000px;}
.y41{bottom:288.631381px;}
.y2b{bottom:290.055000px;}
.y59{bottom:294.398609px;}
.y58{bottom:295.364101px;}
.y5a{bottom:295.364105px;}
.y5c{bottom:295.364108px;}
.y5e{bottom:295.364112px;}
.y57{bottom:296.316721px;}
.y5b{bottom:296.316728px;}
.y5d{bottom:296.316731px;}
.y6c{bottom:296.316735px;}
.y8a{bottom:301.395000px;}
.y77{bottom:304.014949px;}
.y2a{bottom:313.815000px;}
.y6a{bottom:317.518998px;}
.y4d{bottom:318.484497px;}
.y89{bottom:325.155000px;}
.y9c{bottom:336.210000px;}
.y29{bottom:337.575000px;}
.y4c{bottom:343.535867px;}
.y88{bottom:348.915000px;}
.y94{bottom:352.335000px;}
.y4e{bottom:354.117683px;}
.y28{bottom:361.515000px;}
.y87{bottom:372.855000px;}
.y4f{bottom:376.272566px;}
.y4b{bottom:384.936281px;}
.y27{bottom:385.275000px;}
.y9d{bottom:388.185000px;}
.y50{bottom:395.556713px;}
.y86{bottom:396.615000px;}
.y4a{bottom:406.138546px;}
.y3e{bottom:407.955000px;}
.y26{bottom:409.035000px;}
.y51{bottom:412.871250px;}
.y85{bottom:420.375000px;}
.y49{bottom:425.409821px;}
.y52{bottom:430.224407px;}
.y3d{bottom:431.715000px;}
.y25{bottom:432.795000px;}
.y84{bottom:444.135000px;}
.y48{bottom:446.612085px;}
.y53{bottom:449.495680px;}
.y3c{bottom:455.655000px;}
.y24{bottom:456.735000px;}
.y47{bottom:467.775729px;}
.y83{bottom:468.075000px;}
.y54{bottom:468.741207px;}
.y3b{bottom:479.415000px;}
.y23{bottom:480.495000px;}
.y46{bottom:483.210771px;}
.y55{bottom:488.977975px;}
.y82{bottom:491.835000px;}
.y3a{bottom:503.175000px;}
.y22{bottom:504.255000px;}
.y56{bottom:513.063847px;}
.y81{bottom:515.595000px;}
.y40{bottom:516.912950px;}
.y38{bottom:520.635000px;}
.y21{bottom:528.015000px;}
.y42{bottom:531.382525px;}
.y80{bottom:539.355000px;}
.y43{bottom:540.046229px;}
.y35{bottom:545.295000px;}
.y20{bottom:551.775000px;}
.y7f{bottom:563.295000px;}
.y34{bottom:572.865000px;}
.y3f{bottom:572.985000px;}
.y1f{bottom:575.745000px;}
.y7e{bottom:587.085000px;}
.y1e{bottom:599.505000px;}
.y7d{bottom:610.845000px;}
.y1d{bottom:623.265000px;}
.y7c{bottom:634.605000px;}
.y1c{bottom:647.025000px;}
.y7b{bottom:658.365000px;}
.y1b{bottom:670.965000px;}
.y7a{bottom:682.305000px;}
.y1a{bottom:694.725000px;}
.y79{bottom:706.065000px;}
.y19{bottom:718.485000px;}
.y78{bottom:725.865000px;}
.y92{bottom:726.120000px;}
.y18{bottom:742.245000px;}
.y17{bottom:766.185000px;}
.y16{bottom:789.945000px;}
.y15{bottom:813.705000px;}
.y14{bottom:837.465000px;}
.y13{bottom:861.450000px;}
.y12{bottom:885.210000px;}
.y11{bottom:908.970000px;}
.y10{bottom:932.730000px;}
.yf{bottom:956.670000px;}
.ye{bottom:980.430000px;}
.yd{bottom:1004.190000px;}
.yc{bottom:1027.950000px;}
.yb{bottom:1051.710000px;}
.ya{bottom:1075.650000px;}
.y9{bottom:1099.410000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.hb{height:2.826563px;}
.hc{height:23.760000px;}
.ha{height:23.796000px;}
.h10{height:34.045673px;}
.h11{height:43.330185px;}
.h14{height:44.220152px;}
.h9{height:50.484375px;}
.he{height:51.439475px;}
.h12{height:52.259886px;}
.h7{height:59.343750px;}
.h17{height:61.184531px;}
.h2{height:61.189805px;}
.h16{height:61.304531px;}
.h4{height:65.884219px;}
.h6{height:70.628906px;}
.h8{height:70.664062px;}
.hf{height:72.000937px;}
.h5{height:72.562500px;}
.h19{height:82.676953px;}
.h3{height:84.898125px;}
.h13{height:109.983595px;}
.h15{height:140.910321px;}
.h18{height:413.820000px;}
.hd{height:566.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.276000px;}
.w5{width:51.336000px;}
.w6{width:126.720000px;}
.w4{width:138.600000px;}
.w8{width:657.900000px;}
.w7{width:693.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:3.851281px;}
.x10{left:7.740000px;}
.x1a{left:12.548799px;}
.x51{left:42.630000px;}
.x4f{left:47.490000px;}
.x4e{left:57.990000px;}
.x18{left:70.414170px;}
.x3a{left:74.265332px;}
.xc{left:84.959987px;}
.x4d{left:89.490000px;}
.x5{left:98.855987px;}
.x15{left:100.012500px;}
.x13{left:102.455987px;}
.x46{left:104.795987px;}
.x19{left:110.916922px;}
.x48{left:116.820000px;}
.x3c{left:118.619245px;}
.x49{left:159.810000px;}
.x1c{left:166.857748px;}
.x1d{left:175.527355px;}
.x50{left:179.850000px;}
.x1e{left:188.068699px;}
.x3d{left:198.693475px;}
.x1f{left:201.587625px;}
.x3e{left:215.067967px;}
.x20{left:222.798575px;}
.xb{left:228.629987px;}
.x3f{left:231.468186px;}
.x21{left:236.304638px;}
.x40{left:248.820260px;}
.x14{left:250.769987px;}
.x41{left:264.255760px;}
.xf{left:267.510000px;}
.x22{left:273.915808px;}
.x42{left:285.479572px;}
.x47{left:287.894987px;}
.x23{left:290.290301px;}
.x9{left:295.274987px;}
.x4a{left:299.055000px;}
.x8{left:302.834987px;}
.x11{left:307.515000px;}
.x43{left:317.315291px;}
.x44{left:326.936752px;}
.xa{left:344.954987px;}
.x52{left:346.245000px;}
.x3{left:350.534987px;}
.x3b{left:360.701908px;}
.xd{left:365.474987px;}
.x32{left:369.397241px;}
.x24{left:378.066845px;}
.x39{left:385.797460px;}
.x25{left:394.467063px;}
.x38{left:402.171953px;}
.x26{left:410.867282px;}
.x6{left:413.894987px;}
.x37{left:417.607454px;}
.x27{left:422.456770px;}
.x4b{left:423.615000px;}
.x28{left:435.937106px;}
.x4{left:438.014987px;}
.x7{left:446.474987px;}
.x29{left:449.443169px;}
.x36{left:453.289186px;}
.x2{left:457.094987px;}
.x2a{left:465.843387px;}
.x35{left:469.689405px;}
.x31{left:475.477715px;}
.x2b{left:481.278887px;}
.x34{left:488.983781px;}
.x12{left:498.885000px;}
.x2c{left:503.454555px;}
.x30{left:505.383997px;}
.x1{left:510.404987px;}
.x33{left:516.973488px;}
.x2f{left:531.418540px;}
.x16{left:546.854036px;}
.x4c{left:551.130000px;}
.x2e{left:583.500490px;}
.x2d{left:607.605597px;}
.x17{left:642.335472px;}
.x45{left:776.129987px;}
.xe{left:793.049987px;}
@media print{
.v1{vertical-align:-61.562802pt;}
.v3{vertical-align:-6.865740pt;}
.v4{vertical-align:-3.432870pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:6.819968pt;}
.v8{vertical-align:22.399996pt;}
.v7{vertical-align:24.426667pt;}
.v2{vertical-align:51.309964pt;}
.v6{vertical-align:78.800387pt;}
.lsa{letter-spacing:-1.881213pt;}
.lsb{letter-spacing:-1.542503pt;}
.lsc{letter-spacing:-0.782694pt;}
.lsd{letter-spacing:-0.397297pt;}
.ls3{letter-spacing:-0.265067pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls14{letter-spacing:-0.039040pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.224640pt;}
.ls5{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.828466pt;}
.lse{letter-spacing:1.125981pt;}
.ls7{letter-spacing:2.653266pt;}
.ls6{letter-spacing:2.744809pt;}
.ls0{letter-spacing:172.928000pt;}
.ls10{letter-spacing:428.184960pt;}
.ws1d{word-spacing:-18.944640pt;}
.ws1a{word-spacing:-18.720000pt;}
.ws1c{word-spacing:-18.680960pt;}
.ws6{word-spacing:-16.302700pt;}
.ws19{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws18{word-spacing:-14.760197pt;}
.wsa{word-spacing:-13.732624pt;}
.ws1{word-spacing:-13.534613pt;}
.ws0{word-spacing:-11.953280pt;}
.wsb{word-spacing:-0.044539pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:0.738155pt;}
.ws8{word-spacing:0.893452pt;}
.ws7{word-spacing:3.859603pt;}
.wse{word-spacing:18.000229pt;}
.ws5{word-spacing:20.250500pt;}
.ws16{word-spacing:28.592873pt;}
.ws12{word-spacing:31.685938pt;}
.ws14{word-spacing:40.370297pt;}
.wsf{word-spacing:40.402337pt;}
.ws10{word-spacing:42.085245pt;}
.ws11{word-spacing:43.490802pt;}
.ws17{word-spacing:57.281785pt;}
.ws15{word-spacing:59.442931pt;}
.ws13{word-spacing:64.400387pt;}
.ws9{word-spacing:79.768341pt;}
.wsd{word-spacing:179.348210pt;}
.ws1b{word-spacing:369.735040pt;}
._19{margin-left:-164.539631pt;}
._18{margin-left:-78.023798pt;}
._1a{margin-left:-38.495402pt;}
._23{margin-left:-9.112533pt;}
._20{margin-left:-7.766400pt;}
._5{margin-left:-6.080000pt;}
._1b{margin-left:-5.168604pt;}
._6{margin-left:-4.032000pt;}
._2{margin-left:-2.555733pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.372800pt;}
._3{width:2.432000pt;}
._4{width:3.639467pt;}
._d{width:5.256533pt;}
._17{width:6.254933pt;}
._10{width:7.552000pt;}
._7{width:8.512000pt;}
._8{width:9.512533pt;}
._9{width:10.560000pt;}
._a{width:11.498667pt;}
._f{width:12.544000pt;}
._e{width:13.504000pt;}
._13{width:14.528000pt;}
._22{width:16.909404pt;}
._b{width:18.112000pt;}
._c{width:19.171200pt;}
._16{width:20.736000pt;}
._1f{width:21.987200pt;}
._14{width:23.232000pt;}
._21{width:24.295467pt;}
._15{width:25.560533pt;}
._11{width:27.776000pt;}
._12{width:28.672000pt;}
._1e{width:29.723271pt;}
._24{width:31.216604pt;}
._1c{width:85.571272pt;}
._1d{width:403.200000pt;}
.fs4{font-size:2.560000pt;}
.fs6{font-size:30.834954pt;}
.fs9{font-size:37.687420pt;}
.fsa{font-size:41.113424pt;}
.fsb{font-size:42.880000pt;}
.fs8{font-size:44.539429pt;}
.fsc{font-size:49.920000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:54.930497pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:65.210799pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:6.240000pt;}
.ya0{bottom:20.506667pt;}
.y39{bottom:21.120000pt;}
.y37{bottom:21.146667pt;}
.y6b{bottom:39.918529pt;}
.y6d{bottom:41.628120pt;}
.y9e{bottom:45.986667pt;}
.y7{bottom:51.232000pt;}
.y97{bottom:67.906667pt;}
.y60{bottom:75.867544pt;}
.y6e{bottom:80.143773pt;}
.y33{bottom:88.512000pt;}
.y61{bottom:88.724787pt;}
.y6f{bottom:96.422441pt;}
.y62{bottom:105.003458pt;}
.y32{bottom:109.632000pt;}
.y70{bottom:113.555895pt;}
.y98{bottom:114.106667pt;}
.y91{bottom:119.712000pt;}
.y63{bottom:126.386806pt;}
.y96{bottom:127.333333pt;}
.y31{bottom:130.752000pt;}
.y71{bottom:131.547565pt;}
.y90{bottom:140.826667pt;}
.y64{bottom:146.080038pt;}
.y9f{bottom:146.560000pt;}
.y72{bottom:151.217910pt;}
.y30{bottom:152.026667pt;}
.y99{bottom:160.293333pt;}
.y8f{bottom:162.106667pt;}
.y65{bottom:165.784712pt;}
.y2f{bottom:173.146667pt;}
.y73{bottom:173.485792pt;}
.y8e{bottom:183.226667pt;}
.y66{bottom:184.631170pt;}
.y93{bottom:189.853333pt;}
.y74{bottom:194.037240pt;}
.y2e{bottom:194.266667pt;}
.y67{bottom:200.880088pt;}
.y8d{bottom:204.346667pt;}
.y9a{bottom:206.493333pt;}
.y75{bottom:212.025478pt;}
.y2d{bottom:215.386667pt;}
.y68{bottom:216.305119pt;}
.y8c{bottom:225.466667pt;}
.y76{bottom:225.711185pt;}
.y95{bottom:227.360000pt;}
.y45{bottom:228.308741pt;}
.y5f{bottom:232.576923pt;}
.y2c{bottom:236.666667pt;}
.y44{bottom:243.699441pt;}
.y69{bottom:244.557655pt;}
.y8b{bottom:246.746667pt;}
.y9b{bottom:252.666667pt;}
.y41{bottom:256.561227pt;}
.y2b{bottom:257.826667pt;}
.y59{bottom:261.687652pt;}
.y58{bottom:262.545867pt;}
.y5a{bottom:262.545871pt;}
.y5c{bottom:262.545874pt;}
.y5e{bottom:262.545877pt;}
.y57{bottom:263.392640pt;}
.y5b{bottom:263.392647pt;}
.y5d{bottom:263.392650pt;}
.y6c{bottom:263.392653pt;}
.y8a{bottom:267.906667pt;}
.y77{bottom:270.235511pt;}
.y2a{bottom:278.946667pt;}
.y6a{bottom:282.239110pt;}
.y4d{bottom:283.097331pt;}
.y89{bottom:289.026667pt;}
.y9c{bottom:298.853333pt;}
.y29{bottom:300.066667pt;}
.y4c{bottom:305.365215pt;}
.y88{bottom:310.146667pt;}
.y94{bottom:313.186667pt;}
.y4e{bottom:314.771273pt;}
.y28{bottom:321.346667pt;}
.y87{bottom:331.426667pt;}
.y4f{bottom:334.464503pt;}
.y4b{bottom:342.165583pt;}
.y27{bottom:342.466667pt;}
.y9d{bottom:345.053333pt;}
.y50{bottom:351.605967pt;}
.y86{bottom:352.546667pt;}
.y4a{bottom:361.012040pt;}
.y3e{bottom:362.626667pt;}
.y26{bottom:363.586667pt;}
.y51{bottom:366.996667pt;}
.y85{bottom:373.666667pt;}
.y49{bottom:378.142063pt;}
.y52{bottom:382.421695pt;}
.y3d{bottom:383.746667pt;}
.y25{bottom:384.706667pt;}
.y84{bottom:394.786667pt;}
.y48{bottom:396.988520pt;}
.y53{bottom:399.551716pt;}
.y3c{bottom:405.026667pt;}
.y24{bottom:405.986667pt;}
.y47{bottom:415.800648pt;}
.y83{bottom:416.066667pt;}
.y54{bottom:416.658850pt;}
.y3b{bottom:426.146667pt;}
.y23{bottom:427.106667pt;}
.y46{bottom:429.520686pt;}
.y55{bottom:434.647088pt;}
.y82{bottom:437.186667pt;}
.y3a{bottom:447.266667pt;}
.y22{bottom:448.226667pt;}
.y56{bottom:456.056753pt;}
.y81{bottom:458.306667pt;}
.y40{bottom:459.478178pt;}
.y38{bottom:462.786667pt;}
.y21{bottom:469.346667pt;}
.y42{bottom:472.340023pt;}
.y80{bottom:479.426667pt;}
.y43{bottom:480.041092pt;}
.y35{bottom:484.706667pt;}
.y20{bottom:490.466667pt;}
.y7f{bottom:500.706667pt;}
.y34{bottom:509.213333pt;}
.y3f{bottom:509.320000pt;}
.y1f{bottom:511.773333pt;}
.y7e{bottom:521.853333pt;}
.y1e{bottom:532.893333pt;}
.y7d{bottom:542.973333pt;}
.y1d{bottom:554.013333pt;}
.y7c{bottom:564.093333pt;}
.y1c{bottom:575.133333pt;}
.y7b{bottom:585.213333pt;}
.y1b{bottom:596.413333pt;}
.y7a{bottom:606.493333pt;}
.y1a{bottom:617.533333pt;}
.y79{bottom:627.613333pt;}
.y19{bottom:638.653333pt;}
.y78{bottom:645.213333pt;}
.y92{bottom:645.440000pt;}
.y18{bottom:659.773333pt;}
.y17{bottom:681.053333pt;}
.y16{bottom:702.173333pt;}
.y15{bottom:723.293333pt;}
.y14{bottom:744.413333pt;}
.y13{bottom:765.733333pt;}
.y12{bottom:786.853333pt;}
.y11{bottom:807.973333pt;}
.y10{bottom:829.093333pt;}
.yf{bottom:850.373333pt;}
.ye{bottom:871.493333pt;}
.yd{bottom:892.613333pt;}
.yc{bottom:913.733333pt;}
.yb{bottom:934.853333pt;}
.ya{bottom:956.133333pt;}
.y9{bottom:977.253333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.hb{height:2.512500pt;}
.hc{height:21.120000pt;}
.ha{height:21.152000pt;}
.h10{height:30.262821pt;}
.h11{height:38.515720pt;}
.h14{height:39.306801pt;}
.h9{height:44.875000pt;}
.he{height:45.723978pt;}
.h12{height:46.453232pt;}
.h7{height:52.750000pt;}
.h17{height:54.386250pt;}
.h2{height:54.390938pt;}
.h16{height:54.492917pt;}
.h4{height:58.563750pt;}
.h6{height:62.781250pt;}
.h8{height:62.812500pt;}
.hf{height:64.000833pt;}
.h5{height:64.500000pt;}
.h19{height:73.490625pt;}
.h3{height:75.465000pt;}
.h13{height:97.763196pt;}
.h15{height:125.253619pt;}
.h18{height:367.840000pt;}
.hd{height:503.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:34.912000pt;}
.w5{width:45.632000pt;}
.w6{width:112.640000pt;}
.w4{width:123.200000pt;}
.w8{width:584.800000pt;}
.w7{width:616.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:3.423361pt;}
.x10{left:6.880000pt;}
.x1a{left:11.154488pt;}
.x51{left:37.893333pt;}
.x4f{left:42.213333pt;}
.x4e{left:51.546667pt;}
.x18{left:62.590373pt;}
.x3a{left:66.013628pt;}
.xc{left:75.519988pt;}
.x4d{left:79.546667pt;}
.x5{left:87.871988pt;}
.x15{left:88.900000pt;}
.x13{left:91.071988pt;}
.x46{left:93.151988pt;}
.x19{left:98.592820pt;}
.x48{left:103.840000pt;}
.x3c{left:105.439329pt;}
.x49{left:142.053333pt;}
.x1c{left:148.317999pt;}
.x1d{left:156.024315pt;}
.x50{left:159.866667pt;}
.x1e{left:167.172177pt;}
.x3d{left:176.616422pt;}
.x1f{left:179.189000pt;}
.x3e{left:191.171526pt;}
.x20{left:198.043178pt;}
.xb{left:203.226655pt;}
.x3f{left:205.749499pt;}
.x21{left:210.048567pt;}
.x40{left:221.173565pt;}
.x14{left:222.906655pt;}
.x41{left:234.894009pt;}
.xf{left:237.786667pt;}
.x22{left:243.480718pt;}
.x42{left:253.759620pt;}
.x47{left:255.906655pt;}
.x23{left:258.035823pt;}
.x9{left:262.466655pt;}
.x4a{left:265.826667pt;}
.x8{left:269.186655pt;}
.x11{left:273.346667pt;}
.x43{left:282.058036pt;}
.x44{left:290.610446pt;}
.xa{left:306.626655pt;}
.x52{left:307.773333pt;}
.x3{left:311.586655pt;}
.x3b{left:320.623918pt;}
.xd{left:324.866655pt;}
.x32{left:328.353103pt;}
.x24{left:336.059418pt;}
.x39{left:342.931075pt;}
.x25{left:350.637390pt;}
.x38{left:357.486181pt;}
.x26{left:365.215362pt;}
.x6{left:367.906655pt;}
.x37{left:371.206626pt;}
.x27{left:375.517129pt;}
.x4b{left:376.546667pt;}
.x28{left:387.499650pt;}
.x4{left:389.346655pt;}
.x7{left:396.866655pt;}
.x29{left:399.505039pt;}
.x36{left:402.923721pt;}
.x2{left:406.306655pt;}
.x2a{left:414.083011pt;}
.x35{left:417.501693pt;}
.x31{left:422.646858pt;}
.x2b{left:427.803455pt;}
.x34{left:434.652250pt;}
.x12{left:443.453333pt;}
.x2c{left:447.515160pt;}
.x30{left:449.230219pt;}
.x1{left:453.693322pt;}
.x33{left:459.531990pt;}
.x2f{left:472.372036pt;}
.x16{left:486.092477pt;}
.x4c{left:489.893333pt;}
.x2e{left:518.667103pt;}
.x2d{left:540.093864pt;}
.x17{left:570.964864pt;}
.x45{left:689.893322pt;}
.xe{left:704.933322pt;}
}




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