
    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_3358ee90d9a66ae67af0bf6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_e38abaf63ecd50ec7e158534.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_8326b0005468c94f640e360e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767090;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_9a7c4a05b21ae0c1e1fa4ebc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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_3ddf6d5f91fa72c94a75e64c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948500;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_1d1c23251350e51fe2c17fbc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_7a956c262df8ef9127d07933.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_c0bd8796183e57c1016a9765.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937012;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_cb6c4419609ac053ade00774.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.030273;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_57f540c4ad0cef852bb829e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.030273;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_f9a6ffe16e60f0745b8e04c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.030273;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_e4cee9f7f16ad03867968887.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.030273;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_f978307e4bce5a93e9048aea.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v5{vertical-align:-138.240000px;}
.v4{vertical-align:-32.880000px;}
.v2{vertical-align:-30.540000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.v1{vertical-align:15.540000px;}
.ls17{letter-spacing:-8.220000px;}
.ls1c{letter-spacing:-0.756000px;}
.ls9{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.042600px;}
.ls1d{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.050700px;}
.ls1{letter-spacing:0.058740px;}
.lsb{letter-spacing:0.063936px;}
.ls14{letter-spacing:0.101376px;}
.ls1f{letter-spacing:0.101400px;}
.ls19{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.134400px;}
.ls13{letter-spacing:0.181440px;}
.ls7{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.489888px;}
.ls18{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.576720px;}
.lse{letter-spacing:0.616320px;}
.ls15{letter-spacing:0.770688px;}
.ls6{letter-spacing:0.936000px;}
.ls5{letter-spacing:2.376000px;}
.ls8{letter-spacing:43.509600px;}
.ls4{letter-spacing:43.560000px;}
.ls1b{letter-spacing:43.584000px;}
.lsc{letter-spacing:47.793600px;}
.lsf{letter-spacing:47.844000px;}
.ls2{letter-spacing:97.560000px;}
.ls3{letter-spacing:102.024000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,102,0),0 0.015em rgb(0,102,0),0.015em 0 rgb(0,102,0),0 -0.015em  rgb(0,102,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,97,152),0 0.015em rgb(0,97,152),0.015em 0 rgb(0,97,152),0 -0.015em  rgb(0,97,152);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,102,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,97,152);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-167.904000px;}
.ws7{word-spacing:-108.000000px;}
.ws12{word-spacing:-95.760000px;}
.ws2{word-spacing:-53.442720px;}
.ws15{word-spacing:-50.544000px;}
.ws17{word-spacing:-50.080032px;}
.wse{word-spacing:-50.040000px;}
.wsa{word-spacing:-43.877232px;}
.ws8{word-spacing:-40.032000px;}
.ws1a{word-spacing:-36.770712px;}
.ws16{word-spacing:-36.629280px;}
.wsd{word-spacing:-34.055280px;}
.ws0{word-spacing:-33.426720px;}
.ws3{word-spacing:-30.024000px;}
.ws18{word-spacing:-29.988000px;}
.ws19{word-spacing:-29.808000px;}
.ws9{word-spacing:-29.736000px;}
.wsf{word-spacing:-26.661312px;}
.ws13{word-spacing:-26.658720px;}
.ws11{word-spacing:-26.621280px;}
.ws10{word-spacing:-26.618712px;}
.ws14{word-spacing:-21.924000px;}
.ws6{word-spacing:-18.270000px;}
.ws4{word-spacing:-0.131904px;}
.ws5{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:1292.976960px;}
._12{margin-left:-29.690496px;}
._3{margin-left:-14.021280px;}
._0{margin-left:-10.957680px;}
._5{margin-left:-8.657280px;}
._6{margin-left:-7.488000px;}
._7{margin-left:-5.566320px;}
._11{margin-left:-4.378320px;}
._4{margin-left:-3.044400px;}
._1{margin-left:-1.345680px;}
._2{width:1.777680px;}
._8{width:3.460800px;}
._10{width:4.970880px;}
._d{width:97.560000px;}
._a{width:427.180800px;}
._b{width:580.965168px;}
._9{width:588.351792px;}
._e{width:976.270320px;}
._f{width:1134.193680px;}
._c{width:1190.170560px;}
.fca{color:rgb(0,102,0);}
.fc9{color:rgb(172,113,0);}
.fc4{color:transparent;}
.fc7{color:rgb(0,176,80);}
.fc3{color:rgb(253,253,253);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(83,86,89);}
.fc8{color:rgb(186,12,47);}
.fc6{color:rgb(0,69,196);}
.fc5{color:rgb(255,0,0);}
.fc0{color:rgb(0,97,152);}
.fsb{font-size:7.200000px;}
.fsc{font-size:90.000000px;}
.fsa{font-size:95.760000px;}
.fs13{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs3{font-size:120.240000px;}
.fs2{font-size:126.000000px;}
.fs8{font-size:131.760000px;}
.fs6{font-size:131.904000px;}
.fs1{font-size:144.000000px;}
.fs11{font-size:167.760000px;}
.fs12{font-size:167.904000px;}
.fsd{font-size:180.000000px;}
.fs14{font-size:180.144000px;}
.fs0{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs10{font-size:216.000000px;}
.fse{font-size:216.144000px;}
.fsf{font-size:239.760000px;}
.fs4{font-size:288.000000px;}
.fs15{font-size:396.144000px;}
.y0{bottom:0.000000px;}
.y10{bottom:30.168000px;}
.y20{bottom:50.940000px;}
.y63{bottom:121.356000px;}
.y89{bottom:127.512000px;}
.y85{bottom:133.560000px;}
.y6d{bottom:137.052000px;}
.y2e{bottom:147.600000px;}
.y7{bottom:149.220000px;}
.yf{bottom:158.070000px;}
.y14{bottom:159.375000px;}
.y62{bottom:163.410000px;}
.y84{bottom:172.440000px;}
.y79{bottom:175.350000px;}
.y88{bottom:176.145000px;}
.y77{bottom:176.295000px;}
.y1e{bottom:177.015000px;}
.y3a{bottom:177.585000px;}
.y46{bottom:180.075000px;}
.y48{bottom:183.495000px;}
.y6c{bottom:185.685000px;}
.y2d{bottom:196.230000px;}
.ye{bottom:204.630000px;}
.y78{bottom:207.750000px;}
.y76{bottom:208.695000px;}
.y6{bottom:214.050000px;}
.y81{bottom:215.565000px;}
.y91{bottom:217.155000px;}
.y1d{bottom:224.355000px;}
.y87{bottom:224.745000px;}
.y39{bottom:226.185000px;}
.y45{bottom:228.675000px;}
.y32{bottom:228.930000px;}
.y6e{bottom:235.185000px;}
.y59{bottom:235.290000px;}
.y2c{bottom:237.495000px;}
.y24{bottom:268.590000px;}
.y1c{bottom:268.815000px;}
.y86{bottom:273.345000px;}
.y3d{bottom:273.420000px;}
.y38{bottom:274.785000px;}
.y83{bottom:276.480000px;}
.y58{bottom:278.490000px;}
.y4{bottom:300.525000px;}
.y2b{bottom:303.120000px;}
.y6a{bottom:306.900000px;}
.y61{bottom:309.315000px;}
.y70{bottom:309.345000px;}
.y1b{bottom:311.610000px;}
.y82{bottom:315.360000px;}
.yd{bottom:319.470000px;}
.y57{bottom:321.735000px;}
.y37{bottom:323.430000px;}
.y3b{bottom:328.965000px;}
.y8a{bottom:330.585000px;}
.y3f{bottom:346.140000px;}
.y4a{bottom:350.715000px;}
.y2a{bottom:351.720000px;}
.y80{bottom:354.600000px;}
.y3{bottom:355.245000px;}
.y69{bottom:355.530000px;}
.y60{bottom:357.945000px;}
.y56{bottom:364.935000px;}
.y90{bottom:378.720000px;}
.yc{bottom:386.355000px;}
.y8d{bottom:388.695000px;}
.y3e{bottom:394.770000px;}
.y29{bottom:395.535000px;}
.y36{bottom:404.355000px;}
.y6b{bottom:405.030000px;}
.y5f{bottom:406.545000px;}
.y71{bottom:407.880000px;}
.y55{bottom:408.135000px;}
.y19{bottom:410.730000px;}
.y7f{bottom:412.740000px;}
.y2{bottom:413.970000px;}
.y49{bottom:415.515000px;}
.y4e{bottom:424.590000px;}
.y8c{bottom:437.295000px;}
.yb{bottom:442.590000px;}
.y40{bottom:444.600000px;}
.y54{bottom:451.365000px;}
.y7e{bottom:451.800000px;}
.y35{bottom:452.985000px;}
.y5e{bottom:455.145000px;}
.y31{bottom:457.665000px;}
.y8f{bottom:458.025000px;}
.y18{bottom:459.330000px;}
.y28{bottom:463.680000px;}
.y4d{bottom:475.020000px;}
.y67{bottom:477.255000px;}
.y75{bottom:485.895000px;}
.y7d{bottom:490.860000px;}
.y23{bottom:492.510000px;}
.y53{bottom:495.825000px;}
.y34{bottom:501.585000px;}
.y5d{bottom:503.790000px;}
.y17{bottom:507.930000px;}
.y44{bottom:510.375000px;}
.y27{bottom:512.280000px;}
.ya{bottom:517.860000px;}
.y66{bottom:525.855000px;}
.y7c{bottom:529.740000px;}
.y74{bottom:534.495000px;}
.y52{bottom:544.425000px;}
.y1{bottom:548.535000px;}
.y33{bottom:550.185000px;}
.y5c{bottom:552.390000px;}
.y43{bottom:559.005000px;}
.y4c{bottom:559.980000px;}
.y26{bottom:560.130000px;}
.y9{bottom:562.605000px;}
.y1a{bottom:565.020000px;}
.y7b{bottom:573.225000px;}
.y15{bottom:574.200000px;}
.y65{bottom:574.455000px;}
.y13{bottom:582.585000px;}
.y73{bottom:583.125000px;}
.y51{bottom:593.025000px;}
.y5b{bottom:600.990000px;}
.y42{bottom:607.605000px;}
.y4b{bottom:610.380000px;}
.y1f{bottom:614.310000px;}
.y22{bottom:624.240000px;}
.y68{bottom:624.315000px;}
.y30{bottom:630.210000px;}
.y21{bottom:634.170000px;}
.y72{bottom:634.860000px;}
.y50{bottom:641.670000px;}
.y8b{bottom:642.165000px;}
.y12{bottom:647.925000px;}
.y5a{bottom:649.620000px;}
.y8{bottom:652.035000px;}
.y41{bottom:655.050000px;}
.y8e{bottom:658.695000px;}
.y5{bottom:677.985000px;}
.y25{bottom:680.400000px;}
.y7a{bottom:702.465000px;}
.y11{bottom:705.525000px;}
.y2f{bottom:710.715000px;}
.y64{bottom:711.255000px;}
.y3c{bottom:713.985000px;}
.y16{bottom:728.175000px;}
.y47{bottom:728.790000px;}
.y6f{bottom:735.405000px;}
.y4f{bottom:741.600000px;}
.he{height:5.466797px;}
.hd{height:52.560000px;}
.hc{height:69.996445px;}
.h1d{height:72.007031px;}
.h1c{height:72.115313px;}
.hf{height:76.069336px;}
.h6{height:78.943359px;}
.h14{height:79.048617px;}
.h1b{height:81.210938px;}
.h1e{height:81.319219px;}
.h4{height:90.414844px;}
.h11{height:91.283203px;}
.h10{height:91.404914px;}
.h3{height:92.100586px;}
.h8{height:99.077344px;}
.h7{height:99.185625px;}
.h2{height:108.281250px;}
.hb{height:109.744128px;}
.ha{height:111.129120px;}
.h13{height:121.710938px;}
.h12{height:135.351562px;}
.h1f{height:135.459844px;}
.h19{height:141.793242px;}
.h1a{height:141.914953px;}
.h1{height:144.555469px;}
.h9{height:144.663750px;}
.h15{height:162.530156px;}
.h17{height:182.566406px;}
.h18{height:182.688117px;}
.h16{height:202.648711px;}
.h5{height:217.265625px;}
.h20{height:297.881719px;}
.h0{height:810.000000px;}
.w2{width:430.410000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x38{left:39.347979px;}
.x3e{left:66.275979px;}
.x13{left:79.631979px;}
.x27{left:90.395979px;}
.x39{left:93.383979px;}
.x12{left:101.231979px;}
.x1d{left:106.055979px;}
.x22{left:110.555979px;}
.x3a{left:113.723979px;}
.x1e{left:116.963979px;}
.x28{left:124.595979px;}
.x20{left:126.215979px;}
.x21{left:130.535979px;}
.x42{left:138.383979px;}
.x4a{left:141.443979px;}
.x1{left:147.239979px;}
.x2c{left:155.984979px;}
.x2a{left:158.654979px;}
.x4b{left:161.789979px;}
.xe{left:174.029979px;}
.x41{left:182.189979px;}
.x32{left:183.239979px;}
.x2b{left:185.654979px;}
.xc{left:189.104979px;}
.x4d{left:194.294979px;}
.x40{left:205.994979px;}
.x2d{left:208.649979px;}
.x3{left:213.404979px;}
.x30{left:245.489979px;}
.x9{left:251.849979px;}
.x6{left:258.764979px;}
.x1b{left:262.724979px;}
.x29{left:265.034979px;}
.x2e{left:272.594979px;}
.x1f{left:287.489979px;}
.x44{left:292.349979px;}
.x36{left:294.734979px;}
.x43{left:308.009979px;}
.x49{left:312.629979px;}
.x11{left:326.009979px;}
.x33{left:335.009979px;}
.xf{left:344.054979px;}
.x31{left:347.759979px;}
.x25{left:361.229979px;}
.x1c{left:362.669979px;}
.x26{left:381.569979px;}
.x23{left:383.009979px;}
.x4f{left:399.524979px;}
.xd{left:404.564979px;}
.x3f{left:414.434979px;}
.x4e{left:450.974979px;}
.x2f{left:459.794979px;}
.x5{left:474.764979px;}
.x14{left:476.279979px;}
.x7{left:481.109979px;}
.x17{left:484.455000px;}
.x2{left:485.969979px;}
.x15{left:488.084979px;}
.x50{left:521.894979px;}
.x18{left:529.199979px;}
.x16{left:542.084979px;}
.x4c{left:571.064979px;}
.x8{left:592.814979px;}
.x4{left:604.229979px;}
.x51{left:628.274979px;}
.x45{left:651.089979px;}
.x46{left:660.809979px;}
.x19{left:689.249979px;}
.xa{left:747.509979px;}
.x34{left:756.149979px;}
.x10{left:833.834979px;}
.x3c{left:844.484979px;}
.x3d{left:864.824979px;}
.x1a{left:884.519979px;}
.x24{left:905.789979px;}
.x35{left:925.379979px;}
.x3b{left:952.484979px;}
.x47{left:976.064979px;}
.x48{left:1000.364979px;}
.x37{left:1387.589979px;}
.xb{left:1394.969979px;}
@media print{
.v5{vertical-align:-122.880000pt;}
.v4{vertical-align:-29.226667pt;}
.v2{vertical-align:-27.146667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.v1{vertical-align:13.813333pt;}
.ls17{letter-spacing:-7.306667pt;}
.ls1c{letter-spacing:-0.672000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.037867pt;}
.ls1d{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.045067pt;}
.ls1{letter-spacing:0.052213pt;}
.lsb{letter-spacing:0.056832pt;}
.ls14{letter-spacing:0.090112pt;}
.ls1f{letter-spacing:0.090133pt;}
.ls19{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.119467pt;}
.ls13{letter-spacing:0.161280pt;}
.ls7{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.435456pt;}
.ls18{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.512640pt;}
.lse{letter-spacing:0.547840pt;}
.ls15{letter-spacing:0.685056pt;}
.ls6{letter-spacing:0.832000pt;}
.ls5{letter-spacing:2.112000pt;}
.ls8{letter-spacing:38.675200pt;}
.ls4{letter-spacing:38.720000pt;}
.ls1b{letter-spacing:38.741333pt;}
.lsc{letter-spacing:42.483200pt;}
.lsf{letter-spacing:42.528000pt;}
.ls2{letter-spacing:86.720000pt;}
.ls3{letter-spacing:90.688000pt;}
.wsc{word-spacing:-149.248000pt;}
.ws7{word-spacing:-96.000000pt;}
.ws12{word-spacing:-85.120000pt;}
.ws2{word-spacing:-47.504640pt;}
.ws15{word-spacing:-44.928000pt;}
.ws17{word-spacing:-44.515584pt;}
.wse{word-spacing:-44.480000pt;}
.wsa{word-spacing:-39.001984pt;}
.ws8{word-spacing:-35.584000pt;}
.ws1a{word-spacing:-32.685077pt;}
.ws16{word-spacing:-32.559360pt;}
.wsd{word-spacing:-30.271360pt;}
.ws0{word-spacing:-29.712640pt;}
.ws3{word-spacing:-26.688000pt;}
.ws18{word-spacing:-26.656000pt;}
.ws19{word-spacing:-26.496000pt;}
.ws9{word-spacing:-26.432000pt;}
.wsf{word-spacing:-23.698944pt;}
.ws13{word-spacing:-23.696640pt;}
.ws11{word-spacing:-23.663360pt;}
.ws10{word-spacing:-23.661077pt;}
.ws14{word-spacing:-19.488000pt;}
.ws6{word-spacing:-16.240000pt;}
.ws4{word-spacing:-0.117248pt;}
.ws5{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:1149.312853pt;}
._12{margin-left:-26.391552pt;}
._3{margin-left:-12.463360pt;}
._0{margin-left:-9.740160pt;}
._5{margin-left:-7.695360pt;}
._6{margin-left:-6.656000pt;}
._7{margin-left:-4.947840pt;}
._11{margin-left:-3.891840pt;}
._4{margin-left:-2.706133pt;}
._1{margin-left:-1.196160pt;}
._2{width:1.580160pt;}
._8{width:3.076267pt;}
._10{width:4.418560pt;}
._d{width:86.720000pt;}
._a{width:379.716267pt;}
._b{width:516.413483pt;}
._9{width:522.979371pt;}
._e{width:867.795840pt;}
._f{width:1008.172160pt;}
._c{width:1057.929387pt;}
.fsb{font-size:6.400000pt;}
.fsc{font-size:80.000000pt;}
.fsa{font-size:85.120000pt;}
.fs13{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs3{font-size:106.880000pt;}
.fs2{font-size:112.000000pt;}
.fs8{font-size:117.120000pt;}
.fs6{font-size:117.248000pt;}
.fs1{font-size:128.000000pt;}
.fs11{font-size:149.120000pt;}
.fs12{font-size:149.248000pt;}
.fsd{font-size:160.000000pt;}
.fs14{font-size:160.128000pt;}
.fs0{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs10{font-size:192.000000pt;}
.fse{font-size:192.128000pt;}
.fsf{font-size:213.120000pt;}
.fs4{font-size:256.000000pt;}
.fs15{font-size:352.128000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:26.816000pt;}
.y20{bottom:45.280000pt;}
.y63{bottom:107.872000pt;}
.y89{bottom:113.344000pt;}
.y85{bottom:118.720000pt;}
.y6d{bottom:121.824000pt;}
.y2e{bottom:131.200000pt;}
.y7{bottom:132.640000pt;}
.yf{bottom:140.506667pt;}
.y14{bottom:141.666667pt;}
.y62{bottom:145.253333pt;}
.y84{bottom:153.280000pt;}
.y79{bottom:155.866667pt;}
.y88{bottom:156.573333pt;}
.y77{bottom:156.706667pt;}
.y1e{bottom:157.346667pt;}
.y3a{bottom:157.853333pt;}
.y46{bottom:160.066667pt;}
.y48{bottom:163.106667pt;}
.y6c{bottom:165.053333pt;}
.y2d{bottom:174.426667pt;}
.ye{bottom:181.893333pt;}
.y78{bottom:184.666667pt;}
.y76{bottom:185.506667pt;}
.y6{bottom:190.266667pt;}
.y81{bottom:191.613333pt;}
.y91{bottom:193.026667pt;}
.y1d{bottom:199.426667pt;}
.y87{bottom:199.773333pt;}
.y39{bottom:201.053333pt;}
.y45{bottom:203.266667pt;}
.y32{bottom:203.493333pt;}
.y6e{bottom:209.053333pt;}
.y59{bottom:209.146667pt;}
.y2c{bottom:211.106667pt;}
.y24{bottom:238.746667pt;}
.y1c{bottom:238.946667pt;}
.y86{bottom:242.973333pt;}
.y3d{bottom:243.040000pt;}
.y38{bottom:244.253333pt;}
.y83{bottom:245.760000pt;}
.y58{bottom:247.546667pt;}
.y4{bottom:267.133333pt;}
.y2b{bottom:269.440000pt;}
.y6a{bottom:272.800000pt;}
.y61{bottom:274.946667pt;}
.y70{bottom:274.973333pt;}
.y1b{bottom:276.986667pt;}
.y82{bottom:280.320000pt;}
.yd{bottom:283.973333pt;}
.y57{bottom:285.986667pt;}
.y37{bottom:287.493333pt;}
.y3b{bottom:292.413333pt;}
.y8a{bottom:293.853333pt;}
.y3f{bottom:307.680000pt;}
.y4a{bottom:311.746667pt;}
.y2a{bottom:312.640000pt;}
.y80{bottom:315.200000pt;}
.y3{bottom:315.773333pt;}
.y69{bottom:316.026667pt;}
.y60{bottom:318.173333pt;}
.y56{bottom:324.386667pt;}
.y90{bottom:336.640000pt;}
.yc{bottom:343.426667pt;}
.y8d{bottom:345.506667pt;}
.y3e{bottom:350.906667pt;}
.y29{bottom:351.586667pt;}
.y36{bottom:359.426667pt;}
.y6b{bottom:360.026667pt;}
.y5f{bottom:361.373333pt;}
.y71{bottom:362.560000pt;}
.y55{bottom:362.786667pt;}
.y19{bottom:365.093333pt;}
.y7f{bottom:366.880000pt;}
.y2{bottom:367.973333pt;}
.y49{bottom:369.346667pt;}
.y4e{bottom:377.413333pt;}
.y8c{bottom:388.706667pt;}
.yb{bottom:393.413333pt;}
.y40{bottom:395.200000pt;}
.y54{bottom:401.213333pt;}
.y7e{bottom:401.600000pt;}
.y35{bottom:402.653333pt;}
.y5e{bottom:404.573333pt;}
.y31{bottom:406.813333pt;}
.y8f{bottom:407.133333pt;}
.y18{bottom:408.293333pt;}
.y28{bottom:412.160000pt;}
.y4d{bottom:422.240000pt;}
.y67{bottom:424.226667pt;}
.y75{bottom:431.906667pt;}
.y7d{bottom:436.320000pt;}
.y23{bottom:437.786667pt;}
.y53{bottom:440.733333pt;}
.y34{bottom:445.853333pt;}
.y5d{bottom:447.813333pt;}
.y17{bottom:451.493333pt;}
.y44{bottom:453.666667pt;}
.y27{bottom:455.360000pt;}
.ya{bottom:460.320000pt;}
.y66{bottom:467.426667pt;}
.y7c{bottom:470.880000pt;}
.y74{bottom:475.106667pt;}
.y52{bottom:483.933333pt;}
.y1{bottom:487.586667pt;}
.y33{bottom:489.053333pt;}
.y5c{bottom:491.013333pt;}
.y43{bottom:496.893333pt;}
.y4c{bottom:497.760000pt;}
.y26{bottom:497.893333pt;}
.y9{bottom:500.093333pt;}
.y1a{bottom:502.240000pt;}
.y7b{bottom:509.533333pt;}
.y15{bottom:510.400000pt;}
.y65{bottom:510.626667pt;}
.y13{bottom:517.853333pt;}
.y73{bottom:518.333333pt;}
.y51{bottom:527.133333pt;}
.y5b{bottom:534.213333pt;}
.y42{bottom:540.093333pt;}
.y4b{bottom:542.560000pt;}
.y1f{bottom:546.053333pt;}
.y22{bottom:554.880000pt;}
.y68{bottom:554.946667pt;}
.y30{bottom:560.186667pt;}
.y21{bottom:563.706667pt;}
.y72{bottom:564.320000pt;}
.y50{bottom:570.373333pt;}
.y8b{bottom:570.813333pt;}
.y12{bottom:575.933333pt;}
.y5a{bottom:577.440000pt;}
.y8{bottom:579.586667pt;}
.y41{bottom:582.266667pt;}
.y8e{bottom:585.506667pt;}
.y5{bottom:602.653333pt;}
.y25{bottom:604.800000pt;}
.y7a{bottom:624.413333pt;}
.y11{bottom:627.133333pt;}
.y2f{bottom:631.746667pt;}
.y64{bottom:632.226667pt;}
.y3c{bottom:634.653333pt;}
.y16{bottom:647.266667pt;}
.y47{bottom:647.813333pt;}
.y6f{bottom:653.693333pt;}
.y4f{bottom:659.200000pt;}
.he{height:4.859375pt;}
.hd{height:46.720000pt;}
.hc{height:62.219062pt;}
.h1d{height:64.006250pt;}
.h1c{height:64.102500pt;}
.hf{height:67.617188pt;}
.h6{height:70.171875pt;}
.h14{height:70.265437pt;}
.h1b{height:72.187500pt;}
.h1e{height:72.283750pt;}
.h4{height:80.368750pt;}
.h11{height:81.140625pt;}
.h10{height:81.248812pt;}
.h3{height:81.867188pt;}
.h8{height:88.068750pt;}
.h7{height:88.165000pt;}
.h2{height:96.250000pt;}
.hb{height:97.550336pt;}
.ha{height:98.781440pt;}
.h13{height:108.187500pt;}
.h12{height:120.312500pt;}
.h1f{height:120.408750pt;}
.h19{height:126.038437pt;}
.h1a{height:126.146625pt;}
.h1{height:128.493750pt;}
.h9{height:128.590000pt;}
.h15{height:144.471250pt;}
.h17{height:162.281250pt;}
.h18{height:162.389438pt;}
.h16{height:180.132187pt;}
.h5{height:193.125000pt;}
.h20{height:264.783750pt;}
.h0{height:720.000000pt;}
.w2{width:382.586667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x38{left:34.975981pt;}
.x3e{left:58.911981pt;}
.x13{left:70.783981pt;}
.x27{left:80.351981pt;}
.x39{left:83.007981pt;}
.x12{left:89.983981pt;}
.x1d{left:94.271981pt;}
.x22{left:98.271981pt;}
.x3a{left:101.087981pt;}
.x1e{left:103.967981pt;}
.x28{left:110.751981pt;}
.x20{left:112.191981pt;}
.x21{left:116.031981pt;}
.x42{left:123.007981pt;}
.x4a{left:125.727981pt;}
.x1{left:130.879981pt;}
.x2c{left:138.653314pt;}
.x2a{left:141.026648pt;}
.x4b{left:143.813314pt;}
.xe{left:154.693314pt;}
.x41{left:161.946648pt;}
.x32{left:162.879981pt;}
.x2b{left:165.026648pt;}
.xc{left:168.093314pt;}
.x4d{left:172.706648pt;}
.x40{left:183.106648pt;}
.x2d{left:185.466648pt;}
.x3{left:189.693314pt;}
.x30{left:218.213314pt;}
.x9{left:223.866648pt;}
.x6{left:230.013314pt;}
.x1b{left:233.533314pt;}
.x29{left:235.586648pt;}
.x2e{left:242.306648pt;}
.x1f{left:255.546648pt;}
.x44{left:259.866648pt;}
.x36{left:261.986648pt;}
.x43{left:273.786648pt;}
.x49{left:277.893314pt;}
.x11{left:289.786648pt;}
.x33{left:297.786648pt;}
.xf{left:305.826648pt;}
.x31{left:309.119981pt;}
.x25{left:321.093314pt;}
.x1c{left:322.373314pt;}
.x26{left:339.173314pt;}
.x23{left:340.453314pt;}
.x4f{left:355.133314pt;}
.xd{left:359.613314pt;}
.x3f{left:368.386648pt;}
.x4e{left:400.866648pt;}
.x2f{left:408.706648pt;}
.x5{left:422.013314pt;}
.x14{left:423.359981pt;}
.x7{left:427.653314pt;}
.x17{left:430.626667pt;}
.x2{left:431.973314pt;}
.x15{left:433.853314pt;}
.x50{left:463.906648pt;}
.x18{left:470.399981pt;}
.x16{left:481.853314pt;}
.x4c{left:507.613314pt;}
.x8{left:526.946648pt;}
.x4{left:537.093314pt;}
.x51{left:558.466648pt;}
.x45{left:578.746648pt;}
.x46{left:587.386648pt;}
.x19{left:612.666648pt;}
.xa{left:664.453314pt;}
.x34{left:672.133314pt;}
.x10{left:741.186648pt;}
.x3c{left:750.653314pt;}
.x3d{left:768.733314pt;}
.x1a{left:786.239981pt;}
.x24{left:805.146648pt;}
.x35{left:822.559981pt;}
.x3b{left:846.653314pt;}
.x47{left:867.613314pt;}
.x48{left:889.213314pt;}
.x37{left:1233.413314pt;}
.xb{left:1239.973314pt;}
}




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