
    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_eeaa85594a01e12a08f6e33d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_259ef1a26f0ec0b45b04defd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_4f09e13e4652e28d39cd4291.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6a71eec59994b15bf7a1001e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2f2159dc1474d055d20332c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_27b459fe55daaae151c5bd5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.389000;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_0f7ef7ebd61f55a81a0747bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.710000;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_ccd17b33a87847de49b4d29f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.725000;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_e25f9f13dd4f341c5f14899b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_9455a0f7a2ad4c742198bb8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7ef0a7c1a6e7ba33781d8d2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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);}
.v4{vertical-align:-53.796000px;}
.v3{vertical-align:-43.980000px;}
.v1{vertical-align:-19.350000px;}
.v5{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:23.754000px;}
.v2{vertical-align:62.184000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.002682px;}
.ls14{letter-spacing:0.028160px;}
.ls16{letter-spacing:2.356366px;}
.ls17{letter-spacing:2.990915px;}
.lsa{letter-spacing:3.730912px;}
.ls13{letter-spacing:9.098189px;}
.lsf{letter-spacing:13.903289px;}
.ls10{letter-spacing:16.570328px;}
.ls11{letter-spacing:16.576099px;}
.lsd{letter-spacing:18.161864px;}
.lsc{letter-spacing:18.196379px;}
.ls15{letter-spacing:21.175289px;}
.ls8{letter-spacing:23.956384px;}
.ls7{letter-spacing:25.658203px;}
.ls12{letter-spacing:26.443658px;}
.ls2{letter-spacing:27.556387px;}
.lsb{letter-spacing:28.996388px;}
.ls9{letter-spacing:30.305480px;}
.ls3{letter-spacing:30.829117px;}
.ls1{letter-spacing:32.727300px;}
.ls6{letter-spacing:33.120028px;}
.ls4{letter-spacing:33.250937px;}
.ls5{letter-spacing:34.494574px;}
.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;}
}
.ws5a{word-spacing:-42.637126px;}
.ws3c{word-spacing:-16.730196px;}
.ws50{word-spacing:-4.215276px;}
.ws51{word-spacing:-3.652367px;}
.ws17{word-spacing:-3.325094px;}
.ws6{word-spacing:-3.096376px;}
.ws65{word-spacing:-2.016002px;}
.ws46{word-spacing:-1.728001px;}
.ws47{word-spacing:-1.492365px;}
.ws64{word-spacing:-1.361456px;}
.wsf{word-spacing:-1.303108px;}
.ws6c{word-spacing:-0.510546px;}
.ws1e{word-spacing:-0.314182px;}
.ws1{word-spacing:-0.103292px;}
.ws12{word-spacing:-0.086077px;}
.ws53{word-spacing:-0.065455px;}
.ws5f{word-spacing:-0.052364px;}
.ws54{word-spacing:-0.047821px;}
.ws52{word-spacing:-0.039273px;}
.ws14{word-spacing:0.000000px;}
.ws4f{word-spacing:0.209455px;}
.ws21{word-spacing:0.798546px;}
.ws20{word-spacing:0.890183px;}
.ws6b{word-spacing:1.453092px;}
.ws6a{word-spacing:1.675638px;}
.ws10{word-spacing:1.685672px;}
.ws61{word-spacing:1.714911px;}
.ws4{word-spacing:1.864999px;}
.ws48{word-spacing:1.989820px;}
.ws69{word-spacing:2.042184px;}
.ws57{word-spacing:2.500366px;}
.ws56{word-spacing:2.853821px;}
.ws2e{word-spacing:3.115639px;}
.ws5{word-spacing:3.239838px;}
.ws5e{word-spacing:3.285821px;}
.ws11{word-spacing:3.299613px;}
.ws59{word-spacing:3.364366px;}
.ws19{word-spacing:3.613094px;}
.ws1d{word-spacing:3.678549px;}
.ws4c{word-spacing:4.005822px;}
.ws22{word-spacing:4.018912px;}
.ws29{word-spacing:4.071276px;}
.ws3{word-spacing:4.162913px;}
.ws13{word-spacing:4.228367px;}
.ws5b{word-spacing:4.464004px;}
.wsa{word-spacing:4.495125px;}
.ws18{word-spacing:4.529458px;}
.ws3f{word-spacing:4.725822px;}
.ws9{word-spacing:4.853779px;}
.ws40{word-spacing:4.987641px;}
.ws1b{word-spacing:5.066186px;}
.ws7{word-spacing:5.092881px;}
.ws66{word-spacing:5.118550px;}
.ws2b{word-spacing:5.249459px;}
.ws43{word-spacing:5.314914px;}
.ws5d{word-spacing:5.576732px;}
.ws58{word-spacing:5.655277px;}
.ws35{word-spacing:5.707641px;}
.ws2f{word-spacing:5.786187px;}
.ws4d{word-spacing:5.864732px;}
.ws2a{word-spacing:6.061096px;}
.wsc{word-spacing:6.228618px;}
.ws63{word-spacing:6.427642px;}
.ws3b{word-spacing:6.440733px;}
.ws28{word-spacing:6.558551px;}
.ws33{word-spacing:6.637096px;}
.ws1a{word-spacing:6.702551px;}
.ws34{word-spacing:6.820369px;}
.ws3e{word-spacing:7.344006px;}
.ws2d{word-spacing:7.553461px;}
.ws4e{word-spacing:8.011643px;}
.wse{word-spacing:8.021886px;}
.ws2c{word-spacing:8.142552px;}
.ws44{word-spacing:8.208007px;}
.ws4a{word-spacing:8.587644px;}
.wsb{word-spacing:8.978295px;}
.ws3d{word-spacing:8.980371px;}
.ws4b{word-spacing:9.111280px;}
.ws8{word-spacing:9.516276px;}
.ws39{word-spacing:9.569463px;}
.ws31{word-spacing:9.634917px;}
.wsd{word-spacing:9.695602px;}
.ws49{word-spacing:9.700372px;}
.ws55{word-spacing:9.844372px;}
.ws25{word-spacing:10.053827px;}
.ws60{word-spacing:10.119281px;}
.ws38{word-spacing:10.904736px;}
.ws30{word-spacing:11.166555px;}
.ws26{word-spacing:11.415282px;}
.ws3a{word-spacing:12.069828px;}
.ws36{word-spacing:12.187647px;}
.ws32{word-spacing:12.266192px;}
.ws68{word-spacing:12.580374px;}
.ws45{word-spacing:12.789829px;}
.ws5c{word-spacing:12.907647px;}
.ws67{word-spacing:13.038556px;}
.ws23{word-spacing:13.915648px;}
.ws37{word-spacing:14.557103px;}
.ws41{word-spacing:14.897467px;}
.ws24{word-spacing:14.949831px;}
.ws27{word-spacing:15.997104px;}
.ws42{word-spacing:16.586196px;}
.ws2{word-spacing:23.312640px;}
.ws1f{word-spacing:30.643483px;}
.ws16{word-spacing:32.192873px;}
.ws0{word-spacing:38.631358px;}
.ws15{word-spacing:39.639306px;}
.ws1c{word-spacing:44.548401px;}
.ws62{word-spacing:96.750773px;}
._1c{margin-left:-8.091257px;}
._17{margin-left:-6.391224px;}
._6{margin-left:-5.021150px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.936742px;}
._3{width:1.936742px;}
._1{width:3.202064px;}
._18{width:5.870458px;}
._1f{width:10.930918px;}
._c{width:16.737168px;}
._4{width:23.571655px;}
._b{width:25.309002px;}
._7{width:27.413077px;}
._8{width:30.007351px;}
._5{width:32.123420px;}
._1b{width:33.346292px;}
._19{width:35.357147px;}
._1a{width:37.505486px;}
._20{width:39.931672px;}
._9{width:43.122131px;}
._1d{width:44.455337px;}
._a{width:45.608783px;}
._1e{width:56.802808px;}
._d{width:60.545505px;}
._21{width:65.454600px;}
._16{width:96.836850px;}
._f{width:449.318933px;}
._14{width:550.461523px;}
._13{width:708.446504px;}
._12{width:762.255239px;}
._e{width:905.930223px;}
._10{width:1086.001039px;}
._11{width:1331.450578px;}
._15{width:1656.066835px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1e{bottom:137.449500px;}
.y3a{bottom:182.281500px;}
.y1d{bottom:196.491000px;}
.y39{bottom:202.605000px;}
.y59{bottom:210.243000px;}
.y58{bottom:230.566500px;}
.y1c{bottom:233.179500px;}
.y38{bottom:236.038500px;}
.y37{bottom:256.363500px;}
.y57{bottom:264.340500px;}
.y1b{bottom:269.866500px;}
.y77{bottom:281.136000px;}
.y56{bottom:284.664000px;}
.y36{bottom:289.797000px;}
.y76{bottom:301.459500px;}
.y55{bottom:304.987500px;}
.y1a{bottom:306.553500px;}
.y35{bottom:323.434500px;}
.y54{bottom:325.311000px;}
.y75{bottom:335.232000px;}
.y19{bottom:343.242000px;}
.y53{bottom:345.636000px;}
.y74{bottom:355.557000px;}
.y34{bottom:357.072000px;}
.y73{bottom:375.880500px;}
.y52{bottom:379.408500px;}
.y18{bottom:379.929000px;}
.y8d{bottom:385.171500px;}
.y33{bottom:390.505500px;}
.y72{bottom:396.204000px;}
.y51{bottom:399.732000px;}
.y8c{bottom:405.495000px;}
.y71{bottom:416.527500px;}
.y17{bottom:416.616000px;}
.y50{bottom:420.057000px;}
.y8b{bottom:425.820000px;}
.y32{bottom:427.033500px;}
.y6f{bottom:447.460500px;}
.y16{bottom:453.303000px;}
.y4f{bottom:453.829500px;}
.y6e{bottom:467.091000px;}
.y8a{bottom:469.041000px;}
.y4e{bottom:474.153000px;}
.y70{bottom:478.086000px;}
.y31{bottom:478.528500px;}
.y89{bottom:489.364500px;}
.y30{bottom:498.852000px;}
.y15{bottom:504.862500px;}
.y6d{bottom:505.387500px;}
.y88{bottom:509.688000px;}
.y4d{bottom:510.682500px;}
.y14{bottom:522.795000px;}
.y87{bottom:530.011500px;}
.y2f{bottom:532.285500px;}
.y6c{bottom:539.161500px;}
.y13{bottom:540.727500px;}
.y86{bottom:550.336500px;}
.y12{bottom:558.660000px;}
.y6b{bottom:559.485000px;}
.y4c{bottom:562.240500px;}
.y2e{bottom:565.923000px;}
.y85{bottom:570.660000px;}
.y11{bottom:576.592500px;}
.y4b{bottom:582.564000px;}
.y84{bottom:590.983500px;}
.y6a{bottom:593.259000px;}
.y10{bottom:594.525000px;}
.y2d{bottom:599.560500px;}
.y83{bottom:611.307000px;}
.yf{bottom:612.459000px;}
.y69{bottom:613.582500px;}
.y4a{bottom:616.336500px;}
.ye{bottom:630.391500px;}
.y82{bottom:631.630500px;}
.y2c{bottom:632.995500px;}
.y68{bottom:633.906000px;}
.y49{bottom:636.661500px;}
.yd{bottom:648.324000px;}
.y81{bottom:651.955500px;}
.y48{bottom:656.985000px;}
.yc{bottom:666.256500px;}
.y67{bottom:667.680000px;}
.y2b{bottom:676.152000px;}
.yb{bottom:684.189000px;}
.y80{bottom:688.483500px;}
.y47{bottom:690.757500px;}
.y2a{bottom:696.477000px;}
.ya{bottom:702.121500px;}
.y66{bottom:704.208000px;}
.y9{bottom:720.055500px;}
.y46{bottom:724.531500px;}
.y29{bottom:729.910500px;}
.y8{bottom:737.988000px;}
.y7f{bottom:740.041500px;}
.y45{bottom:744.855000px;}
.y65{bottom:755.766000px;}
.y7{bottom:755.920500px;}
.y44{bottom:765.178500px;}
.y28{bottom:773.067000px;}
.y7e{bottom:773.814000px;}
.y64{bottom:776.089500px;}
.y6{bottom:783.193500px;}
.y43{bottom:798.952500px;}
.y27{bottom:806.502000px;}
.y7d{bottom:807.588000px;}
.y63{bottom:809.863500px;}
.y5{bottom:819.058500px;}
.y42{bottom:819.276000px;}
.y62{bottom:830.187000px;}
.y26{bottom:840.139500px;}
.y7c{bottom:841.362000px;}
.y61{bottom:850.510500px;}
.y41{bottom:853.050000px;}
.y60{bottom:870.834000px;}
.y40{bottom:873.373500px;}
.y25{bottom:873.777000px;}
.y4{bottom:881.860500px;}
.y7b{bottom:884.583000px;}
.y5f{bottom:891.157500px;}
.y3f{bottom:893.697000px;}
.y24{bottom:907.210500px;}
.y7a{bottom:918.355500px;}
.y5e{bottom:924.931500px;}
.y3{bottom:927.328500px;}
.y23{bottom:927.534000px;}
.y3e{bottom:930.225000px;}
.y5d{bottom:945.255000px;}
.y22{bottom:947.859000px;}
.y79{bottom:952.129500px;}
.y2{bottom:957.723000px;}
.y21{bottom:968.182500px;}
.y5c{bottom:979.029000px;}
.y3d{bottom:981.783000px;}
.y78{bottom:985.903500px;}
.y1{bottom:990.600000px;}
.y5b{bottom:999.352500px;}
.y20{bottom:1004.710500px;}
.y3c{bottom:1015.557000px;}
.y5a{bottom:1019.676000px;}
.y3b{bottom:1035.880500px;}
.y1f{bottom:1056.204000px;}
.h9{height:33.665702px;}
.h5{height:44.831700px;}
.h7{height:46.865494px;}
.h4{height:49.090950px;}
.h3{height:50.498765px;}
.ha{height:55.554699px;}
.h6{height:60.254040px;}
.h8{height:62.184000px;}
.h2{height:72.304680px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:176.742000px;}
.x1{left:188.035500px;}
.xc{left:196.087500px;}
.xb{left:202.147500px;}
.x3{left:213.723000px;}
.x8{left:217.651500px;}
.x7{left:240.067500px;}
.x5{left:317.718000px;}
.x2{left:358.956000px;}
.xd{left:363.510000px;}
.x4{left:396.594000px;}
.x6{left:412.855500px;}
.xe{left:418.620000px;}
.xf{left:435.328500px;}
.xa{left:441.642000px;}
@media print{
.v4{vertical-align:-47.818667pt;}
.v3{vertical-align:-39.093333pt;}
.v1{vertical-align:-17.200000pt;}
.v5{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.114667pt;}
.v2{vertical-align:55.274667pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.002384pt;}
.ls14{letter-spacing:0.025031pt;}
.ls16{letter-spacing:2.094547pt;}
.ls17{letter-spacing:2.658591pt;}
.lsa{letter-spacing:3.316366pt;}
.ls13{letter-spacing:8.087279pt;}
.lsf{letter-spacing:12.358479pt;}
.ls10{letter-spacing:14.729181pt;}
.ls11{letter-spacing:14.734310pt;}
.lsd{letter-spacing:16.143879pt;}
.lsc{letter-spacing:16.174559pt;}
.ls15{letter-spacing:18.822479pt;}
.ls8{letter-spacing:21.294563pt;}
.ls7{letter-spacing:22.807292pt;}
.ls12{letter-spacing:23.505474pt;}
.ls2{letter-spacing:24.494566pt;}
.lsb{letter-spacing:25.774567pt;}
.ls9{letter-spacing:26.938204pt;}
.ls3{letter-spacing:27.403659pt;}
.ls1{letter-spacing:29.090933pt;}
.ls6{letter-spacing:29.440025pt;}
.ls4{letter-spacing:29.556388pt;}
.ls5{letter-spacing:30.661844pt;}
.ws5a{word-spacing:-37.899668pt;}
.ws3c{word-spacing:-14.871285pt;}
.ws50{word-spacing:-3.746912pt;}
.ws51{word-spacing:-3.246548pt;}
.ws17{word-spacing:-2.955639pt;}
.ws6{word-spacing:-2.752334pt;}
.ws65{word-spacing:-1.792001pt;}
.ws46{word-spacing:-1.536001pt;}
.ws47{word-spacing:-1.326547pt;}
.ws64{word-spacing:-1.210183pt;}
.wsf{word-spacing:-1.158318pt;}
.ws6c{word-spacing:-0.453819pt;}
.ws1e{word-spacing:-0.279273pt;}
.ws1{word-spacing:-0.091815pt;}
.ws12{word-spacing:-0.076513pt;}
.ws53{word-spacing:-0.058182pt;}
.ws5f{word-spacing:-0.046545pt;}
.ws54{word-spacing:-0.042507pt;}
.ws52{word-spacing:-0.034909pt;}
.ws14{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.186182pt;}
.ws21{word-spacing:0.709819pt;}
.ws20{word-spacing:0.791273pt;}
.ws6b{word-spacing:1.291637pt;}
.ws6a{word-spacing:1.489456pt;}
.ws10{word-spacing:1.498375pt;}
.ws61{word-spacing:1.524365pt;}
.ws4{word-spacing:1.657777pt;}
.ws48{word-spacing:1.768729pt;}
.ws69{word-spacing:1.815274pt;}
.ws57{word-spacing:2.222547pt;}
.ws56{word-spacing:2.536729pt;}
.ws2e{word-spacing:2.769457pt;}
.ws5{word-spacing:2.879856pt;}
.ws5e{word-spacing:2.920730pt;}
.ws11{word-spacing:2.932989pt;}
.ws59{word-spacing:2.990548pt;}
.ws19{word-spacing:3.211639pt;}
.ws1d{word-spacing:3.269821pt;}
.ws4c{word-spacing:3.560730pt;}
.ws22{word-spacing:3.572367pt;}
.ws29{word-spacing:3.618912pt;}
.ws3{word-spacing:3.700367pt;}
.ws13{word-spacing:3.758549pt;}
.ws5b{word-spacing:3.968003pt;}
.wsa{word-spacing:3.995667pt;}
.ws18{word-spacing:4.026185pt;}
.ws3f{word-spacing:4.200731pt;}
.ws9{word-spacing:4.314470pt;}
.ws40{word-spacing:4.433458pt;}
.ws1b{word-spacing:4.503276pt;}
.ws7{word-spacing:4.527005pt;}
.ws66{word-spacing:4.549822pt;}
.ws2b{word-spacing:4.666186pt;}
.ws43{word-spacing:4.724368pt;}
.ws5d{word-spacing:4.957095pt;}
.ws58{word-spacing:5.026913pt;}
.ws35{word-spacing:5.073459pt;}
.ws2f{word-spacing:5.143277pt;}
.ws4d{word-spacing:5.213095pt;}
.ws2a{word-spacing:5.387641pt;}
.wsc{word-spacing:5.536549pt;}
.ws63{word-spacing:5.713459pt;}
.ws3b{word-spacing:5.725096pt;}
.ws28{word-spacing:5.829823pt;}
.ws33{word-spacing:5.899641pt;}
.ws1a{word-spacing:5.957823pt;}
.ws34{word-spacing:6.062551pt;}
.ws3e{word-spacing:6.528005pt;}
.ws2d{word-spacing:6.714187pt;}
.ws4e{word-spacing:7.121460pt;}
.wse{word-spacing:7.130565pt;}
.ws2c{word-spacing:7.237824pt;}
.ws44{word-spacing:7.296006pt;}
.ws4a{word-spacing:7.633461pt;}
.wsb{word-spacing:7.980707pt;}
.ws3d{word-spacing:7.982552pt;}
.ws4b{word-spacing:8.098916pt;}
.ws8{word-spacing:8.458912pt;}
.ws39{word-spacing:8.506189pt;}
.ws31{word-spacing:8.564371pt;}
.wsd{word-spacing:8.618313pt;}
.ws49{word-spacing:8.622553pt;}
.ws55{word-spacing:8.750553pt;}
.ws25{word-spacing:8.936735pt;}
.ws60{word-spacing:8.994917pt;}
.ws38{word-spacing:9.693099pt;}
.ws30{word-spacing:9.925826pt;}
.ws26{word-spacing:10.146918pt;}
.ws3a{word-spacing:10.728736pt;}
.ws36{word-spacing:10.833464pt;}
.ws32{word-spacing:10.903282pt;}
.ws68{word-spacing:11.182555pt;}
.ws45{word-spacing:11.368737pt;}
.ws5c{word-spacing:11.473464pt;}
.ws67{word-spacing:11.589828pt;}
.ws23{word-spacing:12.369465pt;}
.ws37{word-spacing:12.939647pt;}
.ws41{word-spacing:13.242193pt;}
.ws24{word-spacing:13.288738pt;}
.ws27{word-spacing:14.219648pt;}
.ws42{word-spacing:14.743285pt;}
.ws2{word-spacing:20.722347pt;}
.ws1f{word-spacing:27.238652pt;}
.ws16{word-spacing:28.615887pt;}
.ws0{word-spacing:34.338985pt;}
.ws15{word-spacing:35.234938pt;}
.ws1c{word-spacing:39.598578pt;}
.ws62{word-spacing:86.000687pt;}
._1c{margin-left:-7.192228pt;}
._17{margin-left:-5.681088pt;}
._6{margin-left:-4.463245pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._1{width:2.846279pt;}
._18{width:5.218185pt;}
._1f{width:9.716372pt;}
._c{width:14.877483pt;}
._4{width:20.952582pt;}
._b{width:22.496891pt;}
._7{width:24.367180pt;}
._8{width:26.673201pt;}
._5{width:28.554151pt;}
._1b{width:29.641149pt;}
._19{width:31.428575pt;}
._1a{width:33.338210pt;}
._20{width:35.494820pt;}
._9{width:38.330783pt;}
._1d{width:39.515855pt;}
._a{width:40.541140pt;}
._1e{width:50.491385pt;}
._d{width:53.818227pt;}
._21{width:58.181867pt;}
._16{width:86.077200pt;}
._f{width:399.394607pt;}
._14{width:489.299131pt;}
._13{width:629.730226pt;}
._12{width:677.560213pt;}
._e{width:805.271309pt;}
._10{width:965.334257pt;}
._11{width:1183.511625pt;}
._15{width:1472.059409pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:122.177333pt;}
.y3a{bottom:162.028000pt;}
.y1d{bottom:174.658667pt;}
.y39{bottom:180.093333pt;}
.y59{bottom:186.882667pt;}
.y58{bottom:204.948000pt;}
.y1c{bottom:207.270667pt;}
.y38{bottom:209.812000pt;}
.y37{bottom:227.878667pt;}
.y57{bottom:234.969333pt;}
.y1b{bottom:239.881333pt;}
.y77{bottom:249.898667pt;}
.y56{bottom:253.034667pt;}
.y36{bottom:257.597333pt;}
.y76{bottom:267.964000pt;}
.y55{bottom:271.100000pt;}
.y1a{bottom:272.492000pt;}
.y35{bottom:287.497333pt;}
.y54{bottom:289.165333pt;}
.y75{bottom:297.984000pt;}
.y19{bottom:305.104000pt;}
.y53{bottom:307.232000pt;}
.y74{bottom:316.050667pt;}
.y34{bottom:317.397333pt;}
.y73{bottom:334.116000pt;}
.y52{bottom:337.252000pt;}
.y18{bottom:337.714667pt;}
.y8d{bottom:342.374667pt;}
.y33{bottom:347.116000pt;}
.y72{bottom:352.181333pt;}
.y51{bottom:355.317333pt;}
.y8c{bottom:360.440000pt;}
.y71{bottom:370.246667pt;}
.y17{bottom:370.325333pt;}
.y50{bottom:373.384000pt;}
.y8b{bottom:378.506667pt;}
.y32{bottom:379.585333pt;}
.y6f{bottom:397.742667pt;}
.y16{bottom:402.936000pt;}
.y4f{bottom:403.404000pt;}
.y6e{bottom:415.192000pt;}
.y8a{bottom:416.925333pt;}
.y4e{bottom:421.469333pt;}
.y70{bottom:424.965333pt;}
.y31{bottom:425.358667pt;}
.y89{bottom:434.990667pt;}
.y30{bottom:443.424000pt;}
.y15{bottom:448.766667pt;}
.y6d{bottom:449.233333pt;}
.y88{bottom:453.056000pt;}
.y4d{bottom:453.940000pt;}
.y14{bottom:464.706667pt;}
.y87{bottom:471.121333pt;}
.y2f{bottom:473.142667pt;}
.y6c{bottom:479.254667pt;}
.y13{bottom:480.646667pt;}
.y86{bottom:489.188000pt;}
.y12{bottom:496.586667pt;}
.y6b{bottom:497.320000pt;}
.y4c{bottom:499.769333pt;}
.y2e{bottom:503.042667pt;}
.y85{bottom:507.253333pt;}
.y11{bottom:512.526667pt;}
.y4b{bottom:517.834667pt;}
.y84{bottom:525.318667pt;}
.y6a{bottom:527.341333pt;}
.y10{bottom:528.466667pt;}
.y2d{bottom:532.942667pt;}
.y83{bottom:543.384000pt;}
.yf{bottom:544.408000pt;}
.y69{bottom:545.406667pt;}
.y4a{bottom:547.854667pt;}
.ye{bottom:560.348000pt;}
.y82{bottom:561.449333pt;}
.y2c{bottom:562.662667pt;}
.y68{bottom:563.472000pt;}
.y49{bottom:565.921333pt;}
.yd{bottom:576.288000pt;}
.y81{bottom:579.516000pt;}
.y48{bottom:583.986667pt;}
.yc{bottom:592.228000pt;}
.y67{bottom:593.493333pt;}
.y2b{bottom:601.024000pt;}
.yb{bottom:608.168000pt;}
.y80{bottom:611.985333pt;}
.y47{bottom:614.006667pt;}
.y2a{bottom:619.090667pt;}
.ya{bottom:624.108000pt;}
.y66{bottom:625.962667pt;}
.y9{bottom:640.049333pt;}
.y46{bottom:644.028000pt;}
.y29{bottom:648.809333pt;}
.y8{bottom:655.989333pt;}
.y7f{bottom:657.814667pt;}
.y45{bottom:662.093333pt;}
.y65{bottom:671.792000pt;}
.y7{bottom:671.929333pt;}
.y44{bottom:680.158667pt;}
.y28{bottom:687.170667pt;}
.y7e{bottom:687.834667pt;}
.y64{bottom:689.857333pt;}
.y6{bottom:696.172000pt;}
.y43{bottom:710.180000pt;}
.y27{bottom:716.890667pt;}
.y7d{bottom:717.856000pt;}
.y63{bottom:719.878667pt;}
.y5{bottom:728.052000pt;}
.y42{bottom:728.245333pt;}
.y62{bottom:737.944000pt;}
.y26{bottom:746.790667pt;}
.y7c{bottom:747.877333pt;}
.y61{bottom:756.009333pt;}
.y41{bottom:758.266667pt;}
.y60{bottom:774.074667pt;}
.y40{bottom:776.332000pt;}
.y25{bottom:776.690667pt;}
.y4{bottom:783.876000pt;}
.y7b{bottom:786.296000pt;}
.y5f{bottom:792.140000pt;}
.y3f{bottom:794.397333pt;}
.y24{bottom:806.409333pt;}
.y7a{bottom:816.316000pt;}
.y5e{bottom:822.161333pt;}
.y3{bottom:824.292000pt;}
.y23{bottom:824.474667pt;}
.y3e{bottom:826.866667pt;}
.y5d{bottom:840.226667pt;}
.y22{bottom:842.541333pt;}
.y79{bottom:846.337333pt;}
.y2{bottom:851.309333pt;}
.y21{bottom:860.606667pt;}
.y5c{bottom:870.248000pt;}
.y3d{bottom:872.696000pt;}
.y78{bottom:876.358667pt;}
.y1{bottom:880.533333pt;}
.y5b{bottom:888.313333pt;}
.y20{bottom:893.076000pt;}
.y3c{bottom:902.717333pt;}
.y5a{bottom:906.378667pt;}
.y3b{bottom:920.782667pt;}
.y1f{bottom:938.848000pt;}
.h9{height:29.925069pt;}
.h5{height:39.850400pt;}
.h7{height:41.658217pt;}
.h4{height:43.636400pt;}
.h3{height:44.887791pt;}
.ha{height:49.381955pt;}
.h6{height:53.559147pt;}
.h8{height:55.274667pt;}
.h2{height:64.270827pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:157.104000pt;}
.x1{left:167.142667pt;}
.xc{left:174.300000pt;}
.xb{left:179.686667pt;}
.x3{left:189.976000pt;}
.x8{left:193.468000pt;}
.x7{left:213.393333pt;}
.x5{left:282.416000pt;}
.x2{left:319.072000pt;}
.xd{left:323.120000pt;}
.x4{left:352.528000pt;}
.x6{left:366.982667pt;}
.xe{left:372.106667pt;}
.xf{left:386.958667pt;}
.xa{left:392.570667pt;}
}




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