
    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_eea0334edf156f7a6a3890ed.woff2')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_396c85664e16ff11f26b3179.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.733887;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d9bae4f6ca9cbdfc652a2931.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_3e546695bec90b931f135829.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_4e8be3e2141c01b95835b82c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.067000;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_7e97b3112a1a20721941ee87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.955000;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_e3433003268dcabda47e7a9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.950000;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_02b8f6fe9f3b6e6a826aeb84.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.673000;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_e352008ec0f1a08a2d6aba98.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.834000;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_0d4f46198e96f97b18f06958.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011000;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_7dc9e51c91a87f540995c9c1.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f8ee5824fe2d9f0a3296f5c2.woff2')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_396c85664e16ff11f26b3179.woff2')format("woff");}.fff{font-family:fff;line-height:0.733887;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:ff10;src:url('chunks/assets/font_1a7c412dc3582ae7f98587fb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.947000;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:ff11;src:url('chunks/assets/font_af21c284d5f594a833dcaedb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.953000;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:ff12;src:url('chunks/assets/font_a7b1b832ff043174bf5fb355.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.955000;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:ff13;src:url('chunks/assets/font_bbf44138bc07962d037576f0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.943000;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:ff14;src:url('chunks/assets/font_02b8f6fe9f3b6e6a826aeb84.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.673000;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:ff15;src:url('chunks/assets/font_81f950be4b7cf9c0384e00b2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.887000;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:ff16;src:url('chunks/assets/font_b5298a17b01fb9368c67b6cc.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011000;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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-98.865644px;}
.ws3{word-spacing:-16.793362px;}
.ws2{word-spacing:-16.489664px;}
.ws7{word-spacing:-16.053239px;}
.ws9{word-spacing:-14.424744px;}
.ws8{word-spacing:-13.904904px;}
.ws4{word-spacing:-13.434690px;}
.ws5{word-spacing:-12.414760px;}
.ws0{word-spacing:-0.055565px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-4.760183px;}
._1a{margin-left:-2.186714px;}
._d{margin-left:-1.007056px;}
._0{width:1.439850px;}
._e{width:2.536645px;}
._6{width:4.194674px;}
._5{width:5.639865px;}
._9{width:6.921524px;}
._14{width:8.144078px;}
._4{width:9.152895px;}
._10{width:10.518665px;}
._2{width:11.703022px;}
._c{width:12.841142px;}
._3{width:14.976780px;}
._a{width:16.274829px;}
._17{width:18.225893px;}
._16{width:19.912936px;}
._7{width:20.916061px;}
._11{width:22.416152px;}
._b{width:24.061636px;}
._12{width:25.666907px;}
._23{width:26.708832px;}
._1d{width:27.739359px;}
._22{width:28.779993px;}
._21{width:29.783117px;}
._1{width:31.316964px;}
._13{width:32.705423px;}
._8{width:34.128460px;}
._f{width:38.628432px;}
._24{width:39.864562px;}
._15{width:41.987383px;}
._1f{width:42.988167px;}
._20{width:58.824221px;}
._1b{width:62.070077px;}
._18{width:63.396271px;}
._1e{width:73.265295px;}
._1c{width:168.824510px;}
.fc5{color:transparent;}
.fc3{color:rgb(254,242,204);}
.fc1{color:rgb(175,11,19);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(40,40,40);}
.fs0{font-size:55.565446px;}
.fs8{font-size:59.974685px;}
.fs4{font-size:65.958656px;}
.fs6{font-size:67.173449px;}
.fs5{font-size:71.987620px;}
.fs1{font-size:75.317046px;}
.fs7{font-size:77.971591px;}
.fs2{font-size:81.603426px;}
.fs3{font-size:422.502751px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000007px;}
.y6{bottom:6.879181px;}
.y8{bottom:35.825836px;}
.y2{bottom:98.487539px;}
.y37{bottom:133.425103px;}
.y3b{bottom:134.744876px;}
.y7d{bottom:135.501704px;}
.y36{bottom:153.671621px;}
.y3a{bottom:159.490621px;}
.y7c{bottom:160.247449px;}
.y45{bottom:167.151701px;}
.y35{bottom:173.918139px;}
.y44{bottom:188.523025px;}
.y34{bottom:194.164657px;}
.y43{bottom:209.894350px;}
.y33{bottom:214.411175px;}
.y42{bottom:231.265675px;}
.y32{bottom:234.657693px;}
.y41{bottom:252.636999px;}
.y31{bottom:254.904211px;}
.y40{bottom:274.008324px;}
.y39{bottom:283.481242px;}
.y3f{bottom:295.379649px;}
.y38{bottom:305.977373px;}
.y7e{bottom:327.773982px;}
.y1e{bottom:343.096019px;}
.y1d{bottom:362.217731px;}
.y1c{bottom:381.339442px;}
.y1b{bottom:400.461154px;}
.y1a{bottom:419.582865px;}
.y19{bottom:438.704577px;}
.y18{bottom:457.826288px;}
.y3e{bottom:463.010316px;}
.y17{bottom:476.948000px;}
.y16{bottom:496.069711px;}
.y2e{bottom:496.998148px;}
.y15{bottom:515.191423px;}
.y2d{bottom:517.244666px;}
.y14{bottom:534.313134px;}
.y2c{bottom:537.491184px;}
.y13{bottom:553.434846px;}
.y2b{bottom:557.737702px;}
.y12{bottom:572.556558px;}
.y2a{bottom:577.984220px;}
.y58{bottom:583.745558px;}
.y11{bottom:591.678269px;}
.y29{bottom:598.230738px;}
.y66{bottom:603.531493px;}
.y57{bottom:603.992076px;}
.y10{bottom:610.799981px;}
.y28{bottom:618.477256px;}
.y65{bottom:623.778011px;}
.y56{bottom:624.238594px;}
.y30{bottom:635.793679px;}
.y27{bottom:638.723774px;}
.y64{bottom:644.024529px;}
.y55{bottom:644.485112px;}
.y2f{bottom:658.289811px;}
.y26{bottom:658.970292px;}
.y63{bottom:664.271047px;}
.y54{bottom:664.731630px;}
.y25{bottom:679.216811px;}
.y62{bottom:684.517565px;}
.y53{bottom:684.978148px;}
.y24{bottom:699.463329px;}
.y61{bottom:704.764083px;}
.y52{bottom:705.224667px;}
.y23{bottom:719.709847px;}
.y60{bottom:725.010601px;}
.y51{bottom:725.471185px;}
.y22{bottom:739.956365px;}
.y5f{bottom:745.257119px;}
.y50{bottom:745.717703px;}
.y21{bottom:760.202883px;}
.y5e{bottom:765.503637px;}
.y4f{bottom:765.964221px;}
.y4{bottom:774.472151px;}
.y20{bottom:780.449401px;}
.y5d{bottom:785.750156px;}
.y4e{bottom:786.210739px;}
.y3{bottom:796.968282px;}
.y1f{bottom:800.695919px;}
.y5c{bottom:805.996674px;}
.y4d{bottom:806.457257px;}
.y5b{bottom:826.243192px;}
.y4c{bottom:826.703775px;}
.y5a{bottom:846.489710px;}
.y4b{bottom:846.950293px;}
.yf{bottom:852.017113px;}
.y59{bottom:866.736228px;}
.y4a{bottom:867.196811px;}
.ye{bottom:873.388438px;}
.y49{bottom:887.443329px;}
.yd{bottom:894.759763px;}
.y7b{bottom:897.810881px;}
.y48{bottom:907.689848px;}
.yc{bottom:916.131087px;}
.y7a{bottom:920.307012px;}
.y47{bottom:927.936366px;}
.yb{bottom:937.502412px;}
.y46{bottom:948.182884px;}
.ya{bottom:958.873737px;}
.y70{bottom:974.510325px;}
.y79{bottom:982.553219px;}
.y6f{bottom:997.006456px;}
.y3c{bottom:1000.278355px;}
.y78{bottom:1002.799737px;}
.y5{bottom:1004.084965px;}
.y7{bottom:1008.044965px;}
.y77{bottom:1023.046255px;}
.y6e{bottom:1037.420727px;}
.y76{bottom:1043.292774px;}
.y6d{bottom:1057.667245px;}
.y75{bottom:1063.539292px;}
.y6c{bottom:1077.913763px;}
.y74{bottom:1083.785810px;}
.y6b{bottom:1098.160281px;}
.y73{bottom:1114.612462px;}
.y6a{bottom:1118.406799px;}
.y72{bottom:1137.108593px;}
.y69{bottom:1138.653317px;}
.y68{bottom:1158.899835px;}
.y71{bottom:1159.604724px;}
.y67{bottom:1182.100855px;}
.y9{bottom:1187.702562px;}
.y3d{bottom:1218.741694px;}
.h5{height:30.959999px;}
.h3{height:42.216716px;}
.hf{height:44.441242px;}
.h9{height:49.337075px;}
.hc{height:49.775526px;}
.hb{height:50.245740px;}
.hd{height:51.929079px;}
.h10{height:52.478975px;}
.he{height:52.766925px;}
.ha{height:61.117489px;}
.h4{height:71.551194px;}
.h6{height:73.687894px;}
.h7{height:155.159994px;}
.h8{height:381.519984px;}
.h1{height:1287.750000px;}
.h2{height:1288.124946px;}
.h0{height:1288.124953px;}
.w3{width:381.239984px;}
.w4{width:390.599984px;}
.w2{width:914.624962px;}
.w0{width:914.625000px;}
.w1{width:915.000000px;}
.x0{left:0.000000px;}
.xc{left:10.813782px;}
.x7{left:91.401606px;}
.x8{left:94.120826px;}
.x1{left:103.200245px;}
.x10{left:134.508412px;}
.x6{left:154.551683px;}
.x3{left:178.946776px;}
.x2{left:231.039379px;}
.x5{left:441.719982px;}
.x4{left:447.839981px;}
.xf{left:462.827267px;}
.x9{left:465.546469px;}
.xa{left:466.741576px;}
.xb{left:472.822561px;}
.xd{left:597.531989px;}
.x11{left:660.749851px;}
.xe{left:705.704149px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-87.880572pt;}
.ws3{word-spacing:-14.927433pt;}
.ws2{word-spacing:-14.657479pt;}
.ws7{word-spacing:-14.269546pt;}
.ws9{word-spacing:-12.821995pt;}
.ws8{word-spacing:-12.359915pt;}
.ws4{word-spacing:-11.941947pt;}
.ws5{word-spacing:-11.035342pt;}
.ws0{word-spacing:-0.049392pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-4.231274pt;}
._1a{margin-left:-1.943746pt;}
._d{margin-left:-0.895161pt;}
._0{width:1.279866pt;}
._e{width:2.254796pt;}
._6{width:3.728599pt;}
._5{width:5.013213pt;}
._9{width:6.152466pt;}
._14{width:7.239180pt;}
._4{width:8.135906pt;}
._10{width:9.349925pt;}
._2{width:10.402687pt;}
._c{width:11.414348pt;}
._3{width:13.312694pt;}
._a{width:14.466515pt;}
._17{width:16.200793pt;}
._16{width:17.700388pt;}
._7{width:18.592054pt;}
._11{width:19.925469pt;}
._b{width:21.388121pt;}
._12{width:22.815028pt;}
._23{width:23.741184pt;}
._1d{width:24.657208pt;}
._22{width:25.582216pt;}
._21{width:26.473882pt;}
._1{width:27.837301pt;}
._13{width:29.071487pt;}
._8{width:30.336409pt;}
._f{width:34.336384pt;}
._24{width:35.435166pt;}
._15{width:37.322119pt;}
._1f{width:38.211704pt;}
._20{width:52.288197pt;}
._1b{width:55.173402pt;}
._18{width:56.352241pt;}
._1e{width:65.124706pt;}
._1c{width:150.066232pt;}
.fs0{font-size:49.391507pt;}
.fs8{font-size:53.310831pt;}
.fs4{font-size:58.629916pt;}
.fs6{font-size:59.709733pt;}
.fs5{font-size:63.988995pt;}
.fs1{font-size:66.948486pt;}
.fs7{font-size:69.308081pt;}
.fs2{font-size:72.536379pt;}
.fs3{font-size:375.558001pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000006pt;}
.y6{bottom:6.114827pt;}
.y8{bottom:31.845187pt;}
.y2{bottom:87.544479pt;}
.y37{bottom:118.600091pt;}
.y3b{bottom:119.773224pt;}
.y7d{bottom:120.445960pt;}
.y36{bottom:136.596996pt;}
.y3a{bottom:141.769441pt;}
.y7c{bottom:142.442177pt;}
.y45{bottom:148.579289pt;}
.y35{bottom:154.593901pt;}
.y44{bottom:167.576022pt;}
.y34{bottom:172.590806pt;}
.y43{bottom:186.572755pt;}
.y33{bottom:190.587711pt;}
.y42{bottom:205.569489pt;}
.y32{bottom:208.584616pt;}
.y41{bottom:224.566222pt;}
.y31{bottom:226.581521pt;}
.y40{bottom:243.562955pt;}
.y39{bottom:251.983326pt;}
.y3f{bottom:262.559688pt;}
.y38{bottom:271.979887pt;}
.y7e{bottom:291.354651pt;}
.y1e{bottom:304.974239pt;}
.y1d{bottom:321.971316pt;}
.y1c{bottom:338.968393pt;}
.y1b{bottom:355.965470pt;}
.y1a{bottom:372.962547pt;}
.y19{bottom:389.959624pt;}
.y18{bottom:406.956701pt;}
.y3e{bottom:411.564726pt;}
.y17{bottom:423.953778pt;}
.y16{bottom:440.950855pt;}
.y2e{bottom:441.776131pt;}
.y15{bottom:457.947932pt;}
.y2d{bottom:459.773036pt;}
.y14{bottom:474.945008pt;}
.y2c{bottom:477.769941pt;}
.y13{bottom:491.942085pt;}
.y2b{bottom:495.766846pt;}
.y12{bottom:508.939162pt;}
.y2a{bottom:513.763751pt;}
.y58{bottom:518.884940pt;}
.y11{bottom:525.936239pt;}
.y29{bottom:531.760656pt;}
.y66{bottom:536.472438pt;}
.y57{bottom:536.881845pt;}
.y10{bottom:542.933316pt;}
.y28{bottom:549.757561pt;}
.y65{bottom:554.469343pt;}
.y56{bottom:554.878750pt;}
.y30{bottom:565.149937pt;}
.y27{bottom:567.754466pt;}
.y64{bottom:572.466248pt;}
.y55{bottom:572.875655pt;}
.y2f{bottom:585.146498pt;}
.y26{bottom:585.751371pt;}
.y63{bottom:590.463153pt;}
.y54{bottom:590.872560pt;}
.y25{bottom:603.748276pt;}
.y62{bottom:608.460058pt;}
.y53{bottom:608.869465pt;}
.y24{bottom:621.745181pt;}
.y61{bottom:626.456963pt;}
.y52{bottom:626.866370pt;}
.y23{bottom:639.742086pt;}
.y60{bottom:644.453868pt;}
.y51{bottom:644.863275pt;}
.y22{bottom:657.738991pt;}
.y5f{bottom:662.450773pt;}
.y50{bottom:662.860180pt;}
.y21{bottom:675.735896pt;}
.y5e{bottom:680.447678pt;}
.y4f{bottom:680.857085pt;}
.y4{bottom:688.419690pt;}
.y20{bottom:693.732801pt;}
.y5d{bottom:698.444583pt;}
.y4e{bottom:698.853990pt;}
.y3{bottom:708.416251pt;}
.y1f{bottom:711.729706pt;}
.y5c{bottom:716.441488pt;}
.y4d{bottom:716.850895pt;}
.y5b{bottom:734.438393pt;}
.y4c{bottom:734.847800pt;}
.y5a{bottom:752.435298pt;}
.y4b{bottom:752.844705pt;}
.yf{bottom:757.348545pt;}
.y59{bottom:770.432203pt;}
.y4a{bottom:770.841610pt;}
.ye{bottom:776.345278pt;}
.y49{bottom:788.838515pt;}
.yd{bottom:795.342011pt;}
.y7b{bottom:798.054116pt;}
.y48{bottom:806.835420pt;}
.yc{bottom:814.338744pt;}
.y7a{bottom:818.050677pt;}
.y47{bottom:824.832325pt;}
.yb{bottom:833.335477pt;}
.y46{bottom:842.829230pt;}
.ya{bottom:852.332210pt;}
.y70{bottom:866.231400pt;}
.y79{bottom:873.380639pt;}
.y6f{bottom:886.227961pt;}
.y3c{bottom:889.136315pt;}
.y78{bottom:891.377544pt;}
.y5{bottom:892.519969pt;}
.y7{bottom:896.039969pt;}
.y77{bottom:909.374449pt;}
.y6e{bottom:922.151757pt;}
.y76{bottom:927.371354pt;}
.y6d{bottom:940.148662pt;}
.y75{bottom:945.368259pt;}
.y6c{bottom:958.145567pt;}
.y74{bottom:963.365164pt;}
.y6b{bottom:976.142472pt;}
.y73{bottom:990.766633pt;}
.y6a{bottom:994.139377pt;}
.y72{bottom:1010.763194pt;}
.y69{bottom:1012.136282pt;}
.y68{bottom:1030.133187pt;}
.y71{bottom:1030.759755pt;}
.y67{bottom:1050.756316pt;}
.y9{bottom:1055.735611pt;}
.y3d{bottom:1083.325950pt;}
.h5{height:27.519999pt;}
.h3{height:37.525970pt;}
.hf{height:39.503326pt;}
.h9{height:43.855177pt;}
.hc{height:44.244912pt;}
.hb{height:44.662880pt;}
.hd{height:46.159182pt;}
.h10{height:46.647978pt;}
.he{height:46.903933pt;}
.ha{height:54.326657pt;}
.h4{height:63.601061pt;}
.h6{height:65.500350pt;}
.h7{height:137.919994pt;}
.h8{height:339.128875pt;}
.h1{height:1144.666667pt;}
.h2{height:1144.999952pt;}
.h0{height:1144.999959pt;}
.w3{width:338.879986pt;}
.w4{width:347.199986pt;}
.w2{width:812.999966pt;}
.w0{width:813.000000pt;}
.w1{width:813.333333pt;}
.x0{left:0.000000pt;}
.xc{left:9.612251pt;}
.x7{left:81.245872pt;}
.x8{left:83.662957pt;}
.x1{left:91.733551pt;}
.x10{left:119.563033pt;}
.x6{left:137.379274pt;}
.x3{left:159.063801pt;}
.x2{left:205.368337pt;}
.x5{left:392.639984pt;}
.x4{left:398.079983pt;}
.xf{left:411.402015pt;}
.x9{left:413.819084pt;}
.xa{left:414.881401pt;}
.xb{left:420.286721pt;}
.xd{left:531.139546pt;}
.x11{left:587.333201pt;}
.xe{left:627.292577pt;}
}




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