
    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_03b7d1c228551d4b819827cb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_584a2d4a7f08e40e22bb3f8c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_7de2b42553515b87835c5df3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_1fab23e6fd696b561262e7ab.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_683464d1658ff8f9206faaaf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_d5155fcc199b012b03d94e77.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_c4f0cc3576d8aae36879cb05.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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_da5ae56baea0928bf712650b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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_e00652f2cc00355d2992d667.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;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_f03c4626c76cdd465203bdd4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902344;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_31d8ff3acd241f85a1827366.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-1.512000px;}
.ls22{letter-spacing:-1.152000px;}
.ls28{letter-spacing:-0.960000px;}
.ls17{letter-spacing:-0.900000px;}
.ls13{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.420000px;}
.ls10{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.120000px;}
.ls27{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.060000px;}
.ls9{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.060000px;}
.ls20{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.480000px;}
.ls2b{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.792000px;}
.ls2d{letter-spacing:0.864000px;}
.ls2e{letter-spacing:0.900000px;}
.ls1d{letter-spacing:1.020000px;}
.ls1b{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.140000px;}
.ls19{letter-spacing:1.224000px;}
.ls21{letter-spacing:1.260000px;}
.ls0{letter-spacing:8.436000px;}
.ls2{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws29{word-spacing:-20.232000px;}
.ws1d{word-spacing:-16.860000px;}
.ws2{word-spacing:-14.580000px;}
.ws0{word-spacing:-8.496000px;}
.ws6{word-spacing:-8.460000px;}
.ws24{word-spacing:-1.260000px;}
.ws1e{word-spacing:-1.224000px;}
.ws23{word-spacing:-1.140000px;}
.ws22{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.020000px;}
.ws34{word-spacing:-0.900000px;}
.ws31{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.792000px;}
.wsa{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.648000px;}
.ws21{word-spacing:-0.600000px;}
.ws28{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.504000px;}
.wsd{word-spacing:-0.480000px;}
.ws1{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.360000px;}
.ws33{word-spacing:-0.300000px;}
.ws17{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.240000px;}
.ws30{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.144000px;}
.ws2a{word-spacing:-0.120000px;}
.ws20{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws1a{word-spacing:0.060000px;}
.ws2d{word-spacing:0.072000px;}
.ws2b{word-spacing:0.120000px;}
.ws2c{word-spacing:0.144000px;}
.wse{word-spacing:0.300000px;}
.ws13{word-spacing:0.360000px;}
.ws19{word-spacing:0.420000px;}
.ws10{word-spacing:0.480000px;}
.ws18{word-spacing:0.540000px;}
.ws27{word-spacing:0.576000px;}
.wsf{word-spacing:0.600000px;}
.ws1c{word-spacing:0.720000px;}
.ws15{word-spacing:0.792000px;}
.ws1b{word-spacing:0.900000px;}
.ws2e{word-spacing:0.960000px;}
.ws26{word-spacing:1.152000px;}
.ws2f{word-spacing:1.512000px;}
.ws5{word-spacing:1.800000px;}
.ws3{word-spacing:4.200000px;}
.ws9{word-spacing:5.040000px;}
.ws14{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._f{margin-left:-11.419200px;}
._10{margin-left:-8.451600px;}
._8{margin-left:-7.262400px;}
._1{margin-left:-5.964000px;}
._c{margin-left:-3.937200px;}
._b{margin-left:-2.800800px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.432000px;}
._e{width:4.456800px;}
._6{width:5.467200px;}
._a{width:7.147200px;}
._4{width:8.568000px;}
._d{width:9.724800px;}
._9{width:10.796400px;}
._7{width:12.600000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y1f{bottom:117.154650px;}
.y44{bottom:120.242100px;}
.y88{bottom:121.488150px;}
.ya5{bottom:121.742100px;}
.y1e{bottom:139.510650px;}
.y65{bottom:140.492100px;}
.y43{bottom:142.742100px;}
.y87{bottom:150.512100px;}
.ya4{bottom:159.242100px;}
.y64{bottom:160.742100px;}
.y42{bottom:162.992100px;}
.y86{bottom:173.318100px;}
.ya3{bottom:177.992100px;}
.y63{bottom:180.992100px;}
.y41{bottom:183.242100px;}
.y1d{bottom:184.210650px;}
.y85{bottom:196.124100px;}
.y62{bottom:201.242100px;}
.y40{bottom:203.492100px;}
.y1c{bottom:204.310650px;}
.ya2{bottom:215.492100px;}
.y84{bottom:218.930100px;}
.y61{bottom:221.492100px;}
.y3f{bottom:223.742100px;}
.y1b{bottom:224.410650px;}
.y83{bottom:241.736100px;}
.y60{bottom:241.742100px;}
.y3e{bottom:243.992100px;}
.y1a{bottom:244.510650px;}
.ya1{bottom:252.992100px;}
.y5f{bottom:261.992100px;}
.y3d{bottom:264.242100px;}
.y82{bottom:264.542100px;}
.y19{bottom:264.610650px;}
.ya0{bottom:273.242100px;}
.y5e{bottom:282.242100px;}
.y3c{bottom:284.492100px;}
.y18{bottom:284.710650px;}
.y9f{bottom:293.492100px;}
.y5d{bottom:302.492100px;}
.y3b{bottom:304.742100px;}
.y17{bottom:304.810650px;}
.y81{bottom:310.142100px;}
.y9e{bottom:313.742100px;}
.y5c{bottom:322.742100px;}
.y16{bottom:324.910650px;}
.y3a{bottom:324.992100px;}
.y80{bottom:330.692100px;}
.y9d{bottom:333.992100px;}
.y15{bottom:345.010650px;}
.y39{bottom:345.242100px;}
.y7f{bottom:351.242100px;}
.y5b{bottom:351.496050px;}
.y9c{bottom:354.242100px;}
.y38{bottom:365.492100px;}
.y7e{bottom:371.792100px;}
.y14{bottom:373.602600px;}
.y5a{bottom:373.996050px;}
.y9b{bottom:374.492100px;}
.y37{bottom:385.742100px;}
.y7d{bottom:392.342100px;}
.y9a{bottom:394.742100px;}
.y13{bottom:395.958600px;}
.y59{bottom:396.496050px;}
.y36{bottom:405.992100px;}
.y7c{bottom:412.892100px;}
.y99{bottom:414.992100px;}
.y12{bottom:418.314600px;}
.y58{bottom:418.996050px;}
.y35{bottom:426.242100px;}
.y7b{bottom:433.442100px;}
.y98{bottom:435.242100px;}
.y34{bottom:446.492100px;}
.y97{bottom:455.492100px;}
.y7a{bottom:462.472050px;}
.y11{bottom:463.014600px;}
.y57{bottom:463.996050px;}
.y33{bottom:466.742100px;}
.y96{bottom:475.742100px;}
.y10{bottom:483.114600px;}
.y56{bottom:484.246050px;}
.y79{bottom:485.278050px;}
.y32{bottom:486.992100px;}
.y95{bottom:495.992100px;}
.yf{bottom:503.214600px;}
.y55{bottom:504.496050px;}
.y78{bottom:508.084050px;}
.y31{bottom:515.746050px;}
.ye{bottom:523.314600px;}
.y54{bottom:524.746050px;}
.y77{bottom:530.890050px;}
.y30{bottom:538.246050px;}
.yd{bottom:543.414600px;}
.y53{bottom:544.996050px;}
.y94{bottom:547.246050px;}
.y76{bottom:553.696050px;}
.y2f{bottom:560.746050px;}
.yc{bottom:563.514600px;}
.y52{bottom:565.246050px;}
.y93{bottom:569.746050px;}
.y2e{bottom:583.246050px;}
.yb{bottom:583.614600px;}
.y51{bottom:585.496050px;}
.y92{bottom:592.246050px;}
.y75{bottom:599.296050px;}
.y50{bottom:605.746050px;}
.ya{bottom:612.194550px;}
.y91{bottom:614.746050px;}
.y74{bottom:619.996050px;}
.y4f{bottom:625.996050px;}
.y2d{bottom:628.246050px;}
.y9{bottom:634.550550px;}
.y73{bottom:640.696050px;}
.y4e{bottom:646.246050px;}
.y2c{bottom:648.496050px;}
.y8{bottom:656.906550px;}
.y90{bottom:659.746050px;}
.y72{bottom:661.396050px;}
.y4d{bottom:666.496050px;}
.y2b{bottom:668.746050px;}
.y7{bottom:679.262550px;}
.y8f{bottom:679.996050px;}
.y71{bottom:682.096050px;}
.y4c{bottom:686.746050px;}
.y2a{bottom:688.996050px;}
.y8e{bottom:700.246050px;}
.y6{bottom:701.618550px;}
.y70{bottom:702.796050px;}
.y4b{bottom:706.996050px;}
.y29{bottom:709.246050px;}
.y8d{bottom:720.496050px;}
.y6f{bottom:723.496050px;}
.y5{bottom:723.968550px;}
.y4a{bottom:727.246050px;}
.y28{bottom:729.496050px;}
.y8c{bottom:740.746050px;}
.y6e{bottom:744.196050px;}
.y49{bottom:747.496050px;}
.y27{bottom:749.746050px;}
.y6d{bottom:764.896050px;}
.y48{bottom:767.746050px;}
.y8b{bottom:769.500000px;}
.y4{bottom:769.854300px;}
.y26{bottom:769.996050px;}
.y6c{bottom:785.596050px;}
.y47{bottom:787.996050px;}
.y25{bottom:790.246050px;}
.y8a{bottom:792.000000px;}
.y3{bottom:792.354300px;}
.y6b{bottom:806.296050px;}
.y46{bottom:808.246050px;}
.y24{bottom:810.496050px;}
.y89{bottom:814.500000px;}
.y23{bottom:830.746050px;}
.y6a{bottom:835.476000px;}
.y45{bottom:837.000000px;}
.y69{bottom:858.282000px;}
.y2{bottom:859.500000px;}
.y68{bottom:881.088000px;}
.y22{bottom:882.000000px;}
.y67{bottom:903.894000px;}
.y21{bottom:904.500000px;}
.y66{bottom:926.700000px;}
.y20{bottom:927.000000px;}
.h1{height:39.990234px;}
.h4{height:47.988281px;}
.h3{height:50.580000px;}
.h6{height:50.947266px;}
.h5{height:61.136719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x7{left:82.381950px;}
.x6{left:97.263750px;}
.x2{left:112.500000px;}
.x3{left:127.381950px;}
.x4{left:142.263750px;}
.x8{left:180.528750px;}
.x1{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-1.344000pt;}
.ls22{letter-spacing:-1.024000pt;}
.ls28{letter-spacing:-0.853333pt;}
.ls17{letter-spacing:-0.800000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.053333pt;}
.ls20{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls2d{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.906667pt;}
.ls1b{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.013333pt;}
.ls19{letter-spacing:1.088000pt;}
.ls21{letter-spacing:1.120000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls2{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws29{word-spacing:-17.984000pt;}
.ws1d{word-spacing:-14.986667pt;}
.ws2{word-spacing:-12.960000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws6{word-spacing:-7.520000pt;}
.ws24{word-spacing:-1.120000pt;}
.ws1e{word-spacing:-1.088000pt;}
.ws23{word-spacing:-1.013333pt;}
.ws22{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.906667pt;}
.ws34{word-spacing:-0.800000pt;}
.ws31{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.704000pt;}
.wsa{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.576000pt;}
.ws21{word-spacing:-0.533333pt;}
.ws28{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.448000pt;}
.wsd{word-spacing:-0.426667pt;}
.ws1{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.320000pt;}
.ws33{word-spacing:-0.266667pt;}
.ws17{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.213333pt;}
.ws30{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.128000pt;}
.ws2a{word-spacing:-0.106667pt;}
.ws20{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.053333pt;}
.ws2d{word-spacing:0.064000pt;}
.ws2b{word-spacing:0.106667pt;}
.ws2c{word-spacing:0.128000pt;}
.wse{word-spacing:0.266667pt;}
.ws13{word-spacing:0.320000pt;}
.ws19{word-spacing:0.373333pt;}
.ws10{word-spacing:0.426667pt;}
.ws18{word-spacing:0.480000pt;}
.ws27{word-spacing:0.512000pt;}
.wsf{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.640000pt;}
.ws15{word-spacing:0.704000pt;}
.ws1b{word-spacing:0.800000pt;}
.ws2e{word-spacing:0.853333pt;}
.ws26{word-spacing:1.024000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws5{word-spacing:1.600000pt;}
.ws3{word-spacing:3.733333pt;}
.ws9{word-spacing:4.480000pt;}
.ws14{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._f{margin-left:-10.150400pt;}
._10{margin-left:-7.512533pt;}
._8{margin-left:-6.455467pt;}
._1{margin-left:-5.301333pt;}
._c{margin-left:-3.499733pt;}
._b{margin-left:-2.489600pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.050667pt;}
._e{width:3.961600pt;}
._6{width:4.859733pt;}
._a{width:6.353067pt;}
._4{width:7.616000pt;}
._d{width:8.644267pt;}
._9{width:9.596800pt;}
._7{width:11.200000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y1f{bottom:104.137467pt;}
.y44{bottom:106.881867pt;}
.y88{bottom:107.989467pt;}
.ya5{bottom:108.215200pt;}
.y1e{bottom:124.009467pt;}
.y65{bottom:124.881867pt;}
.y43{bottom:126.881867pt;}
.y87{bottom:133.788533pt;}
.ya4{bottom:141.548533pt;}
.y64{bottom:142.881867pt;}
.y42{bottom:144.881867pt;}
.y86{bottom:154.060533pt;}
.ya3{bottom:158.215200pt;}
.y63{bottom:160.881867pt;}
.y41{bottom:162.881867pt;}
.y1d{bottom:163.742800pt;}
.y85{bottom:174.332533pt;}
.y62{bottom:178.881867pt;}
.y40{bottom:180.881867pt;}
.y1c{bottom:181.609467pt;}
.ya2{bottom:191.548533pt;}
.y84{bottom:194.604533pt;}
.y61{bottom:196.881867pt;}
.y3f{bottom:198.881867pt;}
.y1b{bottom:199.476133pt;}
.y83{bottom:214.876533pt;}
.y60{bottom:214.881867pt;}
.y3e{bottom:216.881867pt;}
.y1a{bottom:217.342800pt;}
.ya1{bottom:224.881867pt;}
.y5f{bottom:232.881867pt;}
.y3d{bottom:234.881867pt;}
.y82{bottom:235.148533pt;}
.y19{bottom:235.209467pt;}
.ya0{bottom:242.881867pt;}
.y5e{bottom:250.881867pt;}
.y3c{bottom:252.881867pt;}
.y18{bottom:253.076133pt;}
.y9f{bottom:260.881867pt;}
.y5d{bottom:268.881867pt;}
.y3b{bottom:270.881867pt;}
.y17{bottom:270.942800pt;}
.y81{bottom:275.681867pt;}
.y9e{bottom:278.881867pt;}
.y5c{bottom:286.881867pt;}
.y16{bottom:288.809467pt;}
.y3a{bottom:288.881867pt;}
.y80{bottom:293.948533pt;}
.y9d{bottom:296.881867pt;}
.y15{bottom:306.676133pt;}
.y39{bottom:306.881867pt;}
.y7f{bottom:312.215200pt;}
.y5b{bottom:312.440933pt;}
.y9c{bottom:314.881867pt;}
.y38{bottom:324.881867pt;}
.y7e{bottom:330.481867pt;}
.y14{bottom:332.091200pt;}
.y5a{bottom:332.440933pt;}
.y9b{bottom:332.881867pt;}
.y37{bottom:342.881867pt;}
.y7d{bottom:348.748533pt;}
.y9a{bottom:350.881867pt;}
.y13{bottom:351.963200pt;}
.y59{bottom:352.440933pt;}
.y36{bottom:360.881867pt;}
.y7c{bottom:367.015200pt;}
.y99{bottom:368.881867pt;}
.y12{bottom:371.835200pt;}
.y58{bottom:372.440933pt;}
.y35{bottom:378.881867pt;}
.y7b{bottom:385.281867pt;}
.y98{bottom:386.881867pt;}
.y34{bottom:396.881867pt;}
.y97{bottom:404.881867pt;}
.y7a{bottom:411.086267pt;}
.y11{bottom:411.568533pt;}
.y57{bottom:412.440933pt;}
.y33{bottom:414.881867pt;}
.y96{bottom:422.881867pt;}
.y10{bottom:429.435200pt;}
.y56{bottom:430.440933pt;}
.y79{bottom:431.358267pt;}
.y32{bottom:432.881867pt;}
.y95{bottom:440.881867pt;}
.yf{bottom:447.301867pt;}
.y55{bottom:448.440933pt;}
.y78{bottom:451.630267pt;}
.y31{bottom:458.440933pt;}
.ye{bottom:465.168533pt;}
.y54{bottom:466.440933pt;}
.y77{bottom:471.902267pt;}
.y30{bottom:478.440933pt;}
.yd{bottom:483.035200pt;}
.y53{bottom:484.440933pt;}
.y94{bottom:486.440933pt;}
.y76{bottom:492.174267pt;}
.y2f{bottom:498.440933pt;}
.yc{bottom:500.901867pt;}
.y52{bottom:502.440933pt;}
.y93{bottom:506.440933pt;}
.y2e{bottom:518.440933pt;}
.yb{bottom:518.768533pt;}
.y51{bottom:520.440933pt;}
.y92{bottom:526.440933pt;}
.y75{bottom:532.707600pt;}
.y50{bottom:538.440933pt;}
.ya{bottom:544.172933pt;}
.y91{bottom:546.440933pt;}
.y74{bottom:551.107600pt;}
.y4f{bottom:556.440933pt;}
.y2d{bottom:558.440933pt;}
.y9{bottom:564.044933pt;}
.y73{bottom:569.507600pt;}
.y4e{bottom:574.440933pt;}
.y2c{bottom:576.440933pt;}
.y8{bottom:583.916933pt;}
.y90{bottom:586.440933pt;}
.y72{bottom:587.907600pt;}
.y4d{bottom:592.440933pt;}
.y2b{bottom:594.440933pt;}
.y7{bottom:603.788933pt;}
.y8f{bottom:604.440933pt;}
.y71{bottom:606.307600pt;}
.y4c{bottom:610.440933pt;}
.y2a{bottom:612.440933pt;}
.y8e{bottom:622.440933pt;}
.y6{bottom:623.660933pt;}
.y70{bottom:624.707600pt;}
.y4b{bottom:628.440933pt;}
.y29{bottom:630.440933pt;}
.y8d{bottom:640.440933pt;}
.y6f{bottom:643.107600pt;}
.y5{bottom:643.527600pt;}
.y4a{bottom:646.440933pt;}
.y28{bottom:648.440933pt;}
.y8c{bottom:658.440933pt;}
.y6e{bottom:661.507600pt;}
.y49{bottom:664.440933pt;}
.y27{bottom:666.440933pt;}
.y6d{bottom:679.907600pt;}
.y48{bottom:682.440933pt;}
.y8b{bottom:684.000000pt;}
.y4{bottom:684.314933pt;}
.y26{bottom:684.440933pt;}
.y6c{bottom:698.307600pt;}
.y47{bottom:700.440933pt;}
.y25{bottom:702.440933pt;}
.y8a{bottom:704.000000pt;}
.y3{bottom:704.314933pt;}
.y6b{bottom:716.707600pt;}
.y46{bottom:718.440933pt;}
.y24{bottom:720.440933pt;}
.y89{bottom:724.000000pt;}
.y23{bottom:738.440933pt;}
.y6a{bottom:742.645333pt;}
.y45{bottom:744.000000pt;}
.y69{bottom:762.917333pt;}
.y2{bottom:764.000000pt;}
.y68{bottom:783.189333pt;}
.y22{bottom:784.000000pt;}
.y67{bottom:803.461333pt;}
.y21{bottom:804.000000pt;}
.y66{bottom:823.733333pt;}
.y20{bottom:824.000000pt;}
.h1{height:35.546875pt;}
.h4{height:42.656250pt;}
.h3{height:44.960000pt;}
.h6{height:45.286458pt;}
.h5{height:54.343750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x7{left:73.228400pt;}
.x6{left:86.456667pt;}
.x2{left:100.000000pt;}
.x3{left:113.228400pt;}
.x4{left:126.456667pt;}
.x8{left:160.470000pt;}
.x1{left:556.250000pt;}
}




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