
    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_3daaf2a59adfa485f5622b77.woff')format("woff");}.ff1{font-family:ff1;line-height:0.964844;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_f1442013e5f78ea4c722c3a2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.964844;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_f89a7b6e846901fd0e1367b0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_63a2a6a368cd253ec45ff63f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_b741245f1c30336db91ef25f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_4aa4572083527386d43b14ab.woff')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_ed3525e75e9c374c5e145fd3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_18210cf688b4b66b08880d62.woff')format("woff");}.ff8{font-family:ff8;line-height:0.773438;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_acd7dcdb2ed13396b00bc1db.woff')format("woff");}.ff9{font-family:ff9;line-height:0.937500;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_7af557185b78c29f11797e1a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.119629;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_0150294ff2d4cac9d0879adf.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_ee76531be7bac3e6a396992b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_9203be193bf338120176f515.woff')format("woff");}.ffd{font-family:ffd;line-height:1.909180;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_a7e093db2c0015f5c4bf11fb.woff')format("woff");}.ffe{font-family:ffe;line-height:1.020000;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_8b18404350fc509fd0d8cb9c.woff')format("woff");}.fff{font-family:fff;line-height:1.909180;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_8dc85521afc965893a08ee34.woff')format("woff");}.ff10{font-family:ff10;line-height:1.093262;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.739746;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.vd{vertical-align:-17.280000px;}
.v7{vertical-align:-14.400000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v8{vertical-align:14.400000px;}
.v3{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.va{vertical-align:48.240000px;}
.v9{vertical-align:54.720000px;}
.vb{vertical-align:91.440000px;}
.vc{vertical-align:121.680000px;}
.ls4{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.171600px;}
.ls13{letter-spacing:-0.144600px;}
.ls5{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.025920px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.224640px;}
.ls9{letter-spacing:0.283680px;}
.lsc{letter-spacing:0.322560px;}
.lsa{letter-spacing:0.323040px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.379440px;}
.ls2{letter-spacing:0.468000px;}
.lsb{letter-spacing:0.532080px;}
.ls6{letter-spacing:0.593400px;}
.ls11{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.756000px;}
.ls7{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.801520px;}
.ls8{letter-spacing:2.822400px;}
.ls12{letter-spacing:11.520000px;}
.ls10{letter-spacing:13.320000px;}
.lse{letter-spacing:69.680160px;}
.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;}
}
.ws2{word-spacing:-23.418720px;}
.ws10{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.wsa{word-spacing:-15.840000px;}
.ws4{word-spacing:-12.854880px;}
.wsf{word-spacing:-12.513600px;}
.ws0{word-spacing:-12.060000px;}
.wse{word-spacing:-11.767680px;}
.wsb{word-spacing:-11.246400px;}
.ws6{word-spacing:-10.857600px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:-8.136000px;}
.ws7{word-spacing:0.000000px;}
.ws9{word-spacing:5.616000px;}
.ws8{word-spacing:6.480000px;}
.wsc{word-spacing:581.355120px;}
._1f{margin-left:-10.005840px;}
._1a{margin-left:-8.300880px;}
._f{margin-left:-6.048000px;}
._1{margin-left:-4.536000px;}
._0{margin-left:-2.700000px;}
._2{margin-left:-1.404000px;}
._9{width:1.082160px;}
._5{width:2.268000px;}
._10{width:3.828000px;}
._e{width:5.088000px;}
._a{width:6.155280px;}
._8{width:7.463520px;}
._6{width:8.485920px;}
._7{width:10.007040px;}
._17{width:11.448000px;}
._19{width:13.102800px;}
._b{width:14.376000px;}
._14{width:15.984000px;}
._16{width:17.137200px;}
._23{width:19.123440px;}
._15{width:20.376000px;}
._1b{width:21.600000px;}
._1c{width:22.644000px;}
._d{width:24.300000px;}
._c{width:25.416000px;}
._21{width:26.516880px;}
._20{width:28.010160px;}
._22{width:29.297520px;}
._11{width:32.328000px;}
._4{width:37.044000px;}
._3{width:38.124000px;}
._1d{width:48.528000px;}
._12{width:52.920000px;}
._13{width:54.852000px;}
._18{width:77.256000px;}
._1e{width:78.408000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs7{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:75.893905px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:59.220000px;}
.y22{bottom:78.876000px;}
.y4a{bottom:85.176000px;}
.y7c{bottom:88.236000px;}
.y6d{bottom:104.256000px;}
.y21{bottom:104.796000px;}
.y7b{bottom:113.976000px;}
.y49{bottom:121.356000px;}
.y6c{bottom:129.996000px;}
.y20{bottom:130.716000px;}
.y7a{bottom:142.056000px;}
.y1f{bottom:156.450000px;}
.y6b{bottom:164.910000px;}
.y48{bottom:174.630000px;}
.y1e{bottom:182.370000px;}
.y79{bottom:185.970000px;}
.y6a{bottom:190.830000px;}
.y47{bottom:200.550000px;}
.y1d{bottom:210.450000px;}
.y69{bottom:216.750000px;}
.y46{bottom:226.290000px;}
.y1c{bottom:238.890000px;}
.y68{bottom:251.490000px;}
.y45{bottom:252.210000px;}
.y1b{bottom:266.970000px;}
.y67{bottom:277.410000px;}
.y44{bottom:278.130000px;}
.y1a{bottom:295.410000px;}
.y66{bottom:312.330000px;}
.y43{bottom:313.050000px;}
.y42{bottom:319.035000px;}
.y19{bottom:321.375000px;}
.y65{bottom:338.295000px;}
.y41{bottom:341.175000px;}
.y18{bottom:349.455000px;}
.y64{bottom:364.035000px;}
.y40{bottom:369.615000px;}
.y17{bottom:377.895000px;}
.y3f{bottom:395.355000px;}
.y63{bottom:398.955000px;}
.y16{bottom:403.635000px;}
.y3e{bottom:421.275000px;}
.y62{bottom:424.875000px;}
.y15{bottom:439.995000px;}
.y3d{bottom:447.195000px;}
.y78{bottom:459.615000px;}
.y61{bottom:459.795000px;}
.y85{bottom:482.835000px;}
.y60{bottom:485.535000px;}
.y3c{bottom:488.595000px;}
.y14{bottom:493.275000px;}
.y77{bottom:494.355000px;}
.y84{bottom:508.755000px;}
.y3b{bottom:514.515000px;}
.y13{bottom:519.015000px;}
.y76{bottom:520.275000px;}
.y5f{bottom:521.895000px;}
.y83{bottom:534.675000px;}
.y3a{bottom:540.435000px;}
.y89{bottom:544.755000px;}
.y12{bottom:544.935000px;}
.y75{bottom:546.195000px;}
.y82{bottom:562.755000px;}
.y39{bottom:566.175000px;}
.y88{bottom:570.705000px;}
.y11{bottom:570.885000px;}
.y74{bottom:572.145000px;}
.y5e{bottom:575.205000px;}
.y38{bottom:592.125000px;}
.y87{bottom:598.785000px;}
.y73{bottom:600.225000px;}
.y5d{bottom:601.125000px;}
.y10{bottom:605.805000px;}
.y81{bottom:606.705000px;}
.y37{bottom:618.045000px;}
.y5c{bottom:627.045000px;}
.yf{bottom:640.545000px;}
.y86{bottom:642.885000px;}
.y72{bottom:644.505000px;}
.y36{bottom:646.125000px;}
.y5b{bottom:652.965000px;}
.ye{bottom:666.465000px;}
.y5a{bottom:679.065000px;}
.y35{bottom:690.045000px;}
.yd{bottom:701.385000px;}
.y59{bottom:704.985000px;}
.y34{bottom:715.965000px;}
.y58{bottom:731.085000px;}
.yc{bottom:736.305000px;}
.y33{bottom:741.885000px;}
.y57{bottom:757.005000px;}
.yb{bottom:762.045000px;}
.y32{bottom:775.185000px;}
.y2e{bottom:786.165000px;}
.ya{bottom:787.965000px;}
.y56{bottom:793.365000px;}
.y2d{bottom:798.225000px;}
.y30{bottom:801.645000px;}
.y2f{bottom:802.545000px;}
.y9{bottom:816.045000px;}
.y31{bottom:827.250000px;}
.y55{bottom:846.690000px;}
.y2c{bottom:847.230000px;}
.y80{bottom:850.830000px;}
.y8{bottom:854.970000px;}
.y54{bottom:872.430000px;}
.y2b{bottom:873.150000px;}
.y7f{bottom:876.750000px;}
.y53{bottom:898.350000px;}
.y2a{bottom:898.890000px;}
.y7{bottom:900.150000px;}
.y7e{bottom:904.830000px;}
.y6{bottom:921.750000px;}
.y52{bottom:924.270000px;}
.y29{bottom:924.810000px;}
.y5{bottom:948.390000px;}
.y7d{bottom:948.750000px;}
.y51{bottom:950.190000px;}
.y71{bottom:959.370000px;}
.y28{bottom:959.730000px;}
.y50{bottom:975.930000px;}
.y4{bottom:984.390000px;}
.y27{bottom:995.010000px;}
.y4f{bottom:1012.290000px;}
.y70{bottom:1012.470000px;}
.y26{bottom:1020.930000px;}
.y3{bottom:1027.410000px;}
.y6f{bottom:1038.750000px;}
.y25{bottom:1046.850000px;}
.y8a{bottom:1063.230000px;}
.y6e{bottom:1064.670000px;}
.y4e{bottom:1064.850000px;}
.y2{bottom:1065.570000px;}
.y24{bottom:1074.960000px;}
.y4d{bottom:1090.800000px;}
.y1{bottom:1103.580000px;}
.y23{bottom:1113.840000px;}
.y4c{bottom:1116.720000px;}
.h3{height:28.115859px;}
.h14{height:35.622422px;}
.h5{height:43.215117px;}
.h4{height:48.995859px;}
.h8{height:52.066406px;}
.h7{height:54.703125px;}
.hd{height:56.574492px;}
.h9{height:59.382422px;}
.ha{height:61.417969px;}
.h2{height:62.244492px;}
.h6{height:63.344531px;}
.h12{height:63.400781px;}
.hb{height:64.739576px;}
.h15{height:70.544531px;}
.h11{height:72.016875px;}
.h1{height:81.474609px;}
.hc{height:89.296875px;}
.he{height:94.126230px;}
.hf{height:144.016875px;}
.h13{height:181.456875px;}
.h10{height:185.080781px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:70.919986px;}
.xe{left:83.159986px;}
.x14{left:108.035986px;}
.xc{left:238.529986px;}
.xd{left:242.309986px;}
.x6{left:333.254986px;}
.x7{left:366.554986px;}
.x4{left:370.334986px;}
.xb{left:408.494986px;}
.xa{left:416.774986px;}
.x10{left:476.894986px;}
.x8{left:480.344986px;}
.xf{left:518.684986px;}
.x9{left:558.464986px;}
.x12{left:575.024986px;}
.x11{left:599.684986px;}
.x13{left:620.384986px;}
.x2{left:652.784986px;}
.x3{left:658.004986px;}
.x5{left:665.024986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.vd{vertical-align:-15.360000pt;}
.v7{vertical-align:-12.800000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v8{vertical-align:12.800000pt;}
.v3{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.va{vertical-align:42.880000pt;}
.v9{vertical-align:48.640000pt;}
.vb{vertical-align:81.280000pt;}
.vc{vertical-align:108.160000pt;}
.ls4{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.152533pt;}
.ls13{letter-spacing:-0.128533pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.023040pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.199680pt;}
.ls9{letter-spacing:0.252160pt;}
.lsc{letter-spacing:0.286720pt;}
.lsa{letter-spacing:0.287147pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.337280pt;}
.ls2{letter-spacing:0.416000pt;}
.lsb{letter-spacing:0.472960pt;}
.ls6{letter-spacing:0.527467pt;}
.ls11{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.672000pt;}
.ls7{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.490240pt;}
.ls8{letter-spacing:2.508800pt;}
.ls12{letter-spacing:10.240000pt;}
.ls10{letter-spacing:11.840000pt;}
.lse{letter-spacing:61.937920pt;}
.ws2{word-spacing:-20.816640pt;}
.ws10{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws4{word-spacing:-11.426560pt;}
.wsf{word-spacing:-11.123200pt;}
.ws0{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.460160pt;}
.wsb{word-spacing:-9.996800pt;}
.ws6{word-spacing:-9.651200pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws7{word-spacing:0.000000pt;}
.ws9{word-spacing:4.992000pt;}
.ws8{word-spacing:5.760000pt;}
.wsc{word-spacing:516.760107pt;}
._1f{margin-left:-8.894080pt;}
._1a{margin-left:-7.378560pt;}
._f{margin-left:-5.376000pt;}
._1{margin-left:-4.032000pt;}
._0{margin-left:-2.400000pt;}
._2{margin-left:-1.248000pt;}
._9{width:0.961920pt;}
._5{width:2.016000pt;}
._10{width:3.402667pt;}
._e{width:4.522667pt;}
._a{width:5.471360pt;}
._8{width:6.634240pt;}
._6{width:7.543040pt;}
._7{width:8.895147pt;}
._17{width:10.176000pt;}
._19{width:11.646933pt;}
._b{width:12.778667pt;}
._14{width:14.208000pt;}
._16{width:15.233067pt;}
._23{width:16.998613pt;}
._15{width:18.112000pt;}
._1b{width:19.200000pt;}
._1c{width:20.128000pt;}
._d{width:21.600000pt;}
._c{width:22.592000pt;}
._21{width:23.570560pt;}
._20{width:24.897920pt;}
._22{width:26.042240pt;}
._11{width:28.736000pt;}
._4{width:32.928000pt;}
._3{width:33.888000pt;}
._1d{width:43.136000pt;}
._12{width:47.040000pt;}
._13{width:48.757333pt;}
._18{width:68.672000pt;}
._1e{width:69.696000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:67.461249pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:52.640000pt;}
.y22{bottom:70.112000pt;}
.y4a{bottom:75.712000pt;}
.y7c{bottom:78.432000pt;}
.y6d{bottom:92.672000pt;}
.y21{bottom:93.152000pt;}
.y7b{bottom:101.312000pt;}
.y49{bottom:107.872000pt;}
.y6c{bottom:115.552000pt;}
.y20{bottom:116.192000pt;}
.y7a{bottom:126.272000pt;}
.y1f{bottom:139.066667pt;}
.y6b{bottom:146.586667pt;}
.y48{bottom:155.226667pt;}
.y1e{bottom:162.106667pt;}
.y79{bottom:165.306667pt;}
.y6a{bottom:169.626667pt;}
.y47{bottom:178.266667pt;}
.y1d{bottom:187.066667pt;}
.y69{bottom:192.666667pt;}
.y46{bottom:201.146667pt;}
.y1c{bottom:212.346667pt;}
.y68{bottom:223.546667pt;}
.y45{bottom:224.186667pt;}
.y1b{bottom:237.306667pt;}
.y67{bottom:246.586667pt;}
.y44{bottom:247.226667pt;}
.y1a{bottom:262.586667pt;}
.y66{bottom:277.626667pt;}
.y43{bottom:278.266667pt;}
.y42{bottom:283.586667pt;}
.y19{bottom:285.666667pt;}
.y65{bottom:300.706667pt;}
.y41{bottom:303.266667pt;}
.y18{bottom:310.626667pt;}
.y64{bottom:323.586667pt;}
.y40{bottom:328.546667pt;}
.y17{bottom:335.906667pt;}
.y3f{bottom:351.426667pt;}
.y63{bottom:354.626667pt;}
.y16{bottom:358.786667pt;}
.y3e{bottom:374.466667pt;}
.y62{bottom:377.666667pt;}
.y15{bottom:391.106667pt;}
.y3d{bottom:397.506667pt;}
.y78{bottom:408.546667pt;}
.y61{bottom:408.706667pt;}
.y85{bottom:429.186667pt;}
.y60{bottom:431.586667pt;}
.y3c{bottom:434.306667pt;}
.y14{bottom:438.466667pt;}
.y77{bottom:439.426667pt;}
.y84{bottom:452.226667pt;}
.y3b{bottom:457.346667pt;}
.y13{bottom:461.346667pt;}
.y76{bottom:462.466667pt;}
.y5f{bottom:463.906667pt;}
.y83{bottom:475.266667pt;}
.y3a{bottom:480.386667pt;}
.y89{bottom:484.226667pt;}
.y12{bottom:484.386667pt;}
.y75{bottom:485.506667pt;}
.y82{bottom:500.226667pt;}
.y39{bottom:503.266667pt;}
.y88{bottom:507.293333pt;}
.y11{bottom:507.453333pt;}
.y74{bottom:508.573333pt;}
.y5e{bottom:511.293333pt;}
.y38{bottom:526.333333pt;}
.y87{bottom:532.253333pt;}
.y73{bottom:533.533333pt;}
.y5d{bottom:534.333333pt;}
.y10{bottom:538.493333pt;}
.y81{bottom:539.293333pt;}
.y37{bottom:549.373333pt;}
.y5c{bottom:557.373333pt;}
.yf{bottom:569.373333pt;}
.y86{bottom:571.453333pt;}
.y72{bottom:572.893333pt;}
.y36{bottom:574.333333pt;}
.y5b{bottom:580.413333pt;}
.ye{bottom:592.413333pt;}
.y5a{bottom:603.613333pt;}
.y35{bottom:613.373333pt;}
.yd{bottom:623.453333pt;}
.y59{bottom:626.653333pt;}
.y34{bottom:636.413333pt;}
.y58{bottom:649.853333pt;}
.yc{bottom:654.493333pt;}
.y33{bottom:659.453333pt;}
.y57{bottom:672.893333pt;}
.yb{bottom:677.373333pt;}
.y32{bottom:689.053333pt;}
.y2e{bottom:698.813333pt;}
.ya{bottom:700.413333pt;}
.y56{bottom:705.213333pt;}
.y2d{bottom:709.533333pt;}
.y30{bottom:712.573333pt;}
.y2f{bottom:713.373333pt;}
.y9{bottom:725.373333pt;}
.y31{bottom:735.333333pt;}
.y55{bottom:752.613333pt;}
.y2c{bottom:753.093333pt;}
.y80{bottom:756.293333pt;}
.y8{bottom:759.973333pt;}
.y54{bottom:775.493333pt;}
.y2b{bottom:776.133333pt;}
.y7f{bottom:779.333333pt;}
.y53{bottom:798.533333pt;}
.y2a{bottom:799.013333pt;}
.y7{bottom:800.133333pt;}
.y7e{bottom:804.293333pt;}
.y6{bottom:819.333333pt;}
.y52{bottom:821.573333pt;}
.y29{bottom:822.053333pt;}
.y5{bottom:843.013333pt;}
.y7d{bottom:843.333333pt;}
.y51{bottom:844.613333pt;}
.y71{bottom:852.773333pt;}
.y28{bottom:853.093333pt;}
.y50{bottom:867.493333pt;}
.y4{bottom:875.013333pt;}
.y27{bottom:884.453333pt;}
.y4f{bottom:899.813333pt;}
.y70{bottom:899.973333pt;}
.y26{bottom:907.493333pt;}
.y3{bottom:913.253333pt;}
.y6f{bottom:923.333333pt;}
.y25{bottom:930.533333pt;}
.y8a{bottom:945.093333pt;}
.y6e{bottom:946.373333pt;}
.y4e{bottom:946.533333pt;}
.y2{bottom:947.173333pt;}
.y24{bottom:955.520000pt;}
.y4d{bottom:969.600000pt;}
.y1{bottom:980.960000pt;}
.y23{bottom:990.080000pt;}
.y4c{bottom:992.640000pt;}
.h3{height:24.991875pt;}
.h14{height:31.664375pt;}
.h5{height:38.413438pt;}
.h4{height:43.551875pt;}
.h8{height:46.281250pt;}
.h7{height:48.625000pt;}
.hd{height:50.288438pt;}
.h9{height:52.784375pt;}
.ha{height:54.593750pt;}
.h2{height:55.328437pt;}
.h6{height:56.306250pt;}
.h12{height:56.356250pt;}
.hb{height:57.546290pt;}
.h15{height:62.706250pt;}
.h11{height:64.015000pt;}
.h1{height:72.421875pt;}
.hc{height:79.375000pt;}
.he{height:83.667760pt;}
.hf{height:128.015000pt;}
.h13{height:161.295000pt;}
.h10{height:164.516250pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:63.039988pt;}
.xe{left:73.919988pt;}
.x14{left:96.031988pt;}
.xc{left:212.026655pt;}
.xd{left:215.386655pt;}
.x6{left:296.226655pt;}
.x7{left:325.826655pt;}
.x4{left:329.186655pt;}
.xb{left:363.106655pt;}
.xa{left:370.466655pt;}
.x10{left:423.906655pt;}
.x8{left:426.973321pt;}
.xf{left:461.053321pt;}
.x9{left:496.413321pt;}
.x12{left:511.133321pt;}
.x11{left:533.053321pt;}
.x13{left:551.453321pt;}
.x2{left:580.253321pt;}
.x3{left:584.893321pt;}
.x5{left:591.133321pt;}
}




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