
    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_81ea12f1544818fbab5b841a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ae2e33c96adb9ff7033bc343.woff')format("woff");}.ff2{font-family:ff2;line-height:0.915000;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_9d6c122680e06790d49bfa7c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.759000;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_849df9d582ab81ff4d7d85b2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_3b9646f7887563b198131c3e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.677734;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_fb45cc64f61a4619cdc0dad5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.041000;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);}
.v2{vertical-align:-43.200000px;}
.v6{vertical-align:-32.400600px;}
.v4{vertical-align:-9.464400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.465000px;}
.v7{vertical-align:43.200000px;}
.v1{vertical-align:90.000000px;}
.v5{vertical-align:314.700600px;}
.ls1a{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.192240px;}
.ls11{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.120240px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.119880px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.148320px;}
.ls1{letter-spacing:0.148920px;}
.lse{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.192240px;}
.lsc{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.239760px;}
.lsa{letter-spacing:0.264240px;}
.ls18{letter-spacing:0.287400px;}
.ls20{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300240px;}
.ls10{letter-spacing:0.342000px;}
.lsf{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.360720px;}
.ls17{letter-spacing:0.756000px;}
.ls15{letter-spacing:1.512000px;}
.ls1f{letter-spacing:123.400080px;}
.ls1e{letter-spacing:123.516000px;}
.ls14{letter-spacing:140.400000px;}
.ls6{letter-spacing:148.793760px;}
.ls1b{letter-spacing:153.000000px;}
.ls1c{letter-spacing:172.080000px;}
.ls9{letter-spacing:194.400000px;}
.ls13{letter-spacing:6055.854360px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 rgb(68,101,148),0 0.015em rgb(68,101,148),0.015em 0 rgb(68,101,148),0 -0.015em  rgb(68,101,148);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(125,150,206),0 0.015em rgb(125,150,206),0.015em 0 rgb(125,150,206),0 -0.015em  rgb(125,150,206);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(68,101,148);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(125,150,206);text-shadow:none;}
}
.ws10{word-spacing:-150.120000px;}
.ws34{word-spacing:-120.096000px;}
.ws0{word-spacing:-73.558800px;}
.ws12{word-spacing:-59.982480px;}
.ws35{word-spacing:-52.920000px;}
.ws36{word-spacing:-52.704000px;}
.ws13{word-spacing:-49.032000px;}
.ws1{word-spacing:-48.839040px;}
.ws25{word-spacing:-48.816000px;}
.ws14{word-spacing:-48.384000px;}
.ws3f{word-spacing:-46.714320px;}
.ws2e{word-spacing:-43.740000px;}
.wsf{word-spacing:-43.254000px;}
.ws3b{word-spacing:-40.860000px;}
.ws19{word-spacing:-40.500000px;}
.ws41{word-spacing:-35.280000px;}
.ws43{word-spacing:-35.136000px;}
.ws40{word-spacing:-34.992000px;}
.ws42{word-spacing:-34.848000px;}
.ws28{word-spacing:-32.544000px;}
.ws4b{word-spacing:-25.089120px;}
.ws26{word-spacing:-24.084000px;}
.ws27{word-spacing:-23.760000px;}
.ws2{word-spacing:-21.641760px;}
.ws45{word-spacing:-2.525040px;}
.ws6{word-spacing:-2.164320px;}
.ws18{word-spacing:-2.160000px;}
.ws3c{word-spacing:-1.980000px;}
.ws21{word-spacing:-1.918080px;}
.ws46{word-spacing:-1.803600px;}
.ws39{word-spacing:-1.728000px;}
.ws3e{word-spacing:-1.585440px;}
.ws17{word-spacing:-1.512000px;}
.ws1f{word-spacing:-1.198800px;}
.ws49{word-spacing:-1.082160px;}
.ws37{word-spacing:-1.080000px;}
.ws29{word-spacing:-1.056960px;}
.ws7{word-spacing:-1.008000px;}
.ws1d{word-spacing:-0.900000px;}
.ws2a{word-spacing:-0.864000px;}
.wsc{word-spacing:-0.768960px;}
.ws33{word-spacing:-0.720000px;}
.ws4{word-spacing:-0.600480px;}
.ws47{word-spacing:-0.576720px;}
.ws1b{word-spacing:-0.540000px;}
.ws20{word-spacing:-0.479520px;}
.ws38{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.384480px;}
.ws4a{word-spacing:-0.360720px;}
.ws31{word-spacing:-0.360000px;}
.ws3a{word-spacing:-0.359640px;}
.ws8{word-spacing:-0.288000px;}
.ws15{word-spacing:-0.264240px;}
.ws23{word-spacing:-0.239760px;}
.ws1e{word-spacing:-0.180000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.180000px;}
.ws44{word-spacing:0.192240px;}
.ws24{word-spacing:0.239760px;}
.ws5{word-spacing:0.300240px;}
.ws2c{word-spacing:0.324000px;}
.ws30{word-spacing:0.360000px;}
.wsd{word-spacing:0.384480px;}
.ws1c{word-spacing:0.540000px;}
.wsb{word-spacing:0.576720px;}
.ws2b{word-spacing:0.648000px;}
.ws32{word-spacing:0.720000px;}
.ws2d{word-spacing:0.756000px;}
.ws2f{word-spacing:0.900000px;}
.ws22{word-spacing:0.959040px;}
.ws16{word-spacing:1.080000px;}
.ws3d{word-spacing:1.260000px;}
.wse{word-spacing:1.345680px;}
.ws4c{word-spacing:1.532160px;}
.ws48{word-spacing:2.304000px;}
.wsa{word-spacing:634.843680px;}
.ws9{word-spacing:877.184280px;}
._13{margin-left:-99.647400px;}
._c{margin-left:-39.960000px;}
._0{margin-left:-25.776000px;}
._f{margin-left:-17.953632px;}
._9{margin-left:-16.705656px;}
._11{margin-left:-12.744000px;}
._4{margin-left:-9.512640px;}
._12{margin-left:-7.632792px;}
._14{margin-left:-5.528376px;}
._e{margin-left:-4.450752px;}
._2{margin-left:-3.059424px;}
._3{margin-left:-1.130256px;}
._a{width:1.441800px;}
._b{width:2.537568px;}
._10{width:6.897456px;}
._1{width:31.824000px;}
._d{width:41.220000px;}
._7{width:704.768280px;}
._6{width:746.921760px;}
._8{width:929.605560px;}
._5{width:1065.681480px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(31,73,125);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(68,101,148);}
.fc0{color:rgb(125,150,206);}
.fse{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fsf{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs5{font-size:144.000000px;}
.fsb{font-size:180.000000px;}
.fs8{font-size:192.240000px;}
.fs2{font-size:200.160000px;}
.fs7{font-size:210.240000px;}
.fsa{font-size:216.000000px;}
.fsc{font-size:239.760000px;}
.fs9{font-size:264.240000px;}
.fs1{font-size:300.240000px;}
.fs10{font-size:396.000000px;}
.fs0{font-size:432.000000px;}
.fs6{font-size:540.000000px;}
.fs11{font-size:750.240000px;}
.fsd{font-size:948.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:23.225400px;}
.y40{bottom:63.725250px;}
.y3f{bottom:105.125400px;}
.y2d{bottom:112.301850px;}
.y30{bottom:113.649750px;}
.y80{bottom:136.614330px;}
.y8{bottom:139.189200px;}
.y7f{bottom:165.414150px;}
.y62{bottom:181.614450px;}
.y7{bottom:182.389200px;}
.y2c{bottom:182.848350px;}
.y2f{bottom:203.141070px;}
.y57{bottom:203.867250px;}
.y22{bottom:207.945000px;}
.y2b{bottom:236.848350px;}
.y1a{bottom:253.155900px;}
.y61{bottom:255.432450px;}
.y56{bottom:257.867250px;}
.y2e{bottom:260.716950px;}
.y21{bottom:272.745000px;}
.y2a{bottom:290.848350px;}
.y19{bottom:310.779840px;}
.y55{bottom:311.867250px;}
.y44{bottom:314.640450px;}
.y60{bottom:329.250450px;}
.y6d{bottom:336.535860px;}
.y20{bottom:337.545000px;}
.y50{bottom:339.531000px;}
.y4a{bottom:359.828700px;}
.y54{bottom:365.867250px;}
.y18{bottom:368.355720px;}
.y43{bottom:368.640450px;}
.y11{bottom:371.956710px;}
.y7b{bottom:382.315950px;}
.y4f{bottom:393.531000px;}
.y73{bottom:400.140000px;}
.y1f{bottom:402.345000px;}
.y5f{bottom:403.068450px;}
.y49{bottom:413.828700px;}
.y53{bottom:419.867250px;}
.y42{bottom:422.640450px;}
.y10{bottom:429.532590px;}
.y75{bottom:436.140000px;}
.yb{bottom:440.461350px;}
.y3a{bottom:443.941740px;}
.y5{bottom:444.509070px;}
.y7a{bottom:447.115950px;}
.y4e{bottom:447.531000px;}
.y6c{bottom:455.311740px;}
.y72{bottom:464.940000px;}
.y1e{bottom:467.145000px;}
.y35{bottom:467.209950px;}
.y48{bottom:467.828700px;}
.y5e{bottom:476.886450px;}
.y34{bottom:480.045780px;}
.y17{bottom:483.555540px;}
.yf{bottom:487.108470px;}
.y3e{bottom:494.745000px;}
.y39{bottom:497.947680px;}
.y74{bottom:500.940000px;}
.y4d{bottom:501.531000px;}
.y79{bottom:509.012190px;}
.y7d{bottom:509.352900px;}
.y59{bottom:515.391300px;}
.y47{bottom:521.828700px;}
.y71{bottom:526.848120px;}
.y1d{bottom:531.945000px;}
.y33{bottom:534.051720px;}
.y16{bottom:541.131420px;}
.y52{bottom:542.370150px;}
.y78{bottom:545.024070px;}
.y4{bottom:549.442950px;}
.y5d{bottom:550.704450px;}
.y38{bottom:551.953620px;}
.y4c{bottom:555.531000px;}
.y70{bottom:562.860000px;}
.y7c{bottom:563.352900px;}
.y6b{bottom:574.087620px;}
.y68{bottom:575.613750px;}
.y3d{bottom:577.545000px;}
.y77{bottom:581.035950px;}
.y46{bottom:584.828700px;}
.y32{bottom:588.057660px;}
.y26{bottom:597.529350px;}
.y15{bottom:598.755360px;}
.ye{bottom:602.308290px;}
.y37{bottom:605.959560px;}
.y69{bottom:607.113750px;}
.y65{bottom:607.432350px;}
.y6f{bottom:607.680000px;}
.y4b{bottom:609.531000px;}
.y67{bottom:621.153600px;}
.y5c{bottom:624.522450px;}
.y76{bottom:625.855800px;}
.y29{bottom:634.017750px;}
.y31{bottom:642.063600px;}
.y14{bottom:656.331240px;}
.yd{bottom:659.884170px;}
.y36{bottom:659.965500px;}
.y3c{bottom:660.345000px;}
.y7e{bottom:671.338950px;}
.y66{bottom:675.153600px;}
.y64{bottom:675.472350px;}
.y25{bottom:675.662250px;}
.y1c{bottom:679.179060px;}
.y3{bottom:688.150050px;}
.y6a{bottom:692.863500px;}
.y5b{bottom:698.340450px;}
.y58{bottom:704.391300px;}
.y13{bottom:713.907120px;}
.yc{bottom:717.460050px;}
.ya{bottom:723.627450px;}
.y24{bottom:729.662250px;}
.y45{bottom:742.569300px;}
.y51{bottom:745.395000px;}
.y28{bottom:757.831650px;}
.y1b{bottom:758.385000px;}
.y12{bottom:771.483000px;}
.y3b{bottom:782.385000px;}
.y23{bottom:783.662250px;}
.y27{bottom:805.171650px;}
.y5a{bottom:816.780450px;}
.y2{bottom:817.750050px;}
.y6e{bottom:907.810200px;}
.y9{bottom:934.395000px;}
.y1{bottom:947.350050px;}
.y63{bottom:1072.190550px;}
.y6{bottom:1104.330000px;}
.h12{height:51.679688px;}
.h5{height:68.733984px;}
.h13{height:77.519531px;}
.h21{height:80.629920px;}
.h1f{height:86.332320px;}
.h4{height:89.458560px;}
.h15{height:103.359375px;}
.h20{height:103.392000px;}
.h14{height:111.933984px;}
.he{height:129.199219px;}
.h16{height:129.240000px;}
.h17{height:131.132812px;}
.ha{height:137.984766px;}
.h1e{height:138.028320px;}
.h9{height:140.049844px;}
.hf{height:153.163125px;}
.hc{height:155.039062px;}
.h19{height:155.088000px;}
.hd{height:157.359375px;}
.h1b{height:159.800977px;}
.h8{height:162.627525px;}
.h7{height:162.628125px;}
.h10{height:172.147680px;}
.hb{height:189.664453px;}
.h18{height:189.724320px;}
.h1c{height:192.502969px;}
.h3{height:233.691000px;}
.h2{height:233.714880px;}
.h1a{height:288.492188px;}
.h1{height:314.718750px;}
.h6{height:393.398438px;}
.h1d{height:546.561563px;}
.h11{height:1005.508256px;}
.h0{height:1215.000000px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x39{left:22.587450px;}
.x2b{left:30.646800px;}
.x47{left:80.469300px;}
.x3a{left:94.407450px;}
.x3d{left:106.441050px;}
.x46{left:119.406900px;}
.x2{left:121.500000px;}
.x1b{left:123.343500px;}
.x3{left:131.881350px;}
.x45{left:140.749800px;}
.x1{left:143.999850px;}
.x6{left:162.065850px;}
.x5{left:173.874450px;}
.x2f{left:190.297350px;}
.x30{left:194.561550px;}
.x22{left:209.297400px;}
.x31{left:248.561550px;}
.x3e{left:320.597250px;}
.x3b{left:332.561250px;}
.x18{left:353.806650px;}
.x11{left:355.511550px;}
.x10{left:372.611550px;}
.x17{left:383.146650px;}
.x20{left:408.683220px;}
.x21{left:410.301600px;}
.x1f{left:426.485400px;}
.x1a{left:448.932900px;}
.x1e{left:454.237500px;}
.x13{left:476.853600px;}
.x12{left:478.451550px;}
.x19{left:484.846650px;}
.x3c{left:516.166350px;}
.x28{left:547.901250px;}
.x2e{left:553.061250px;}
.xa{left:576.637500px;}
.xc{left:598.961250px;}
.x29{left:601.901250px;}
.x48{left:605.689650px;}
.x44{left:684.821250px;}
.xf{left:707.501100px;}
.x36{left:710.351550px;}
.x37{left:714.615750px;}
.x4{left:717.937350px;}
.xb{left:724.173000px;}
.x7{left:730.732800px;}
.x4b{left:762.284550px;}
.x38{left:768.615750px;}
.x8{left:784.752240px;}
.x2a{left:813.697500px;}
.xd{left:820.852500px;}
.x35{left:826.121250px;}
.x9{left:838.819740px;}
.x40{left:843.640200px;}
.xe{left:874.852500px;}
.x3f{left:897.820200px;}
.x2d{left:903.854850px;}
.x41{left:1047.400200px;}
.x4c{left:1054.797900px;}
.x2c{left:1063.334850px;}
.x49{left:1116.029550px;}
.x26{left:1137.373620px;}
.x25{left:1162.068900px;}
.x23{left:1177.953000px;}
.x33{left:1204.681650px;}
.x27{left:1221.948960px;}
.x32{left:1231.543650px;}
.x34{left:1258.681650px;}
.x24{left:1260.190680px;}
.x1c{left:1377.220890px;}
.x15{left:1440.154500px;}
.x14{left:1445.014500px;}
.x16{left:1513.973550px;}
.x1d{left:1534.525500px;}
.x42{left:1559.156550px;}
.x4a{left:1640.678850px;}
.x43{left:1765.256700px;}
@media print{
.v2{vertical-align:-38.400000pt;}
.v6{vertical-align:-28.800533pt;}
.v4{vertical-align:-8.412800pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.413333pt;}
.v7{vertical-align:38.400000pt;}
.v1{vertical-align:80.000000pt;}
.v5{vertical-align:279.733867pt;}
.ls1a{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.170880pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.106880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.106560pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.131840pt;}
.ls1{letter-spacing:0.132373pt;}
.lse{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.170880pt;}
.lsc{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.213120pt;}
.lsa{letter-spacing:0.234880pt;}
.ls18{letter-spacing:0.255467pt;}
.ls20{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266880pt;}
.ls10{letter-spacing:0.304000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.320640pt;}
.ls17{letter-spacing:0.672000pt;}
.ls15{letter-spacing:1.344000pt;}
.ls1f{letter-spacing:109.688960pt;}
.ls1e{letter-spacing:109.792000pt;}
.ls14{letter-spacing:124.800000pt;}
.ls6{letter-spacing:132.261120pt;}
.ls1b{letter-spacing:136.000000pt;}
.ls1c{letter-spacing:152.960000pt;}
.ls9{letter-spacing:172.800000pt;}
.ls13{letter-spacing:5382.981653pt;}
.ws10{word-spacing:-133.440000pt;}
.ws34{word-spacing:-106.752000pt;}
.ws0{word-spacing:-65.385600pt;}
.ws12{word-spacing:-53.317760pt;}
.ws35{word-spacing:-47.040000pt;}
.ws36{word-spacing:-46.848000pt;}
.ws13{word-spacing:-43.584000pt;}
.ws1{word-spacing:-43.412480pt;}
.ws25{word-spacing:-43.392000pt;}
.ws14{word-spacing:-43.008000pt;}
.ws3f{word-spacing:-41.523840pt;}
.ws2e{word-spacing:-38.880000pt;}
.wsf{word-spacing:-38.448000pt;}
.ws3b{word-spacing:-36.320000pt;}
.ws19{word-spacing:-36.000000pt;}
.ws41{word-spacing:-31.360000pt;}
.ws43{word-spacing:-31.232000pt;}
.ws40{word-spacing:-31.104000pt;}
.ws42{word-spacing:-30.976000pt;}
.ws28{word-spacing:-28.928000pt;}
.ws4b{word-spacing:-22.301440pt;}
.ws26{word-spacing:-21.408000pt;}
.ws27{word-spacing:-21.120000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws45{word-spacing:-2.244480pt;}
.ws6{word-spacing:-1.923840pt;}
.ws18{word-spacing:-1.920000pt;}
.ws3c{word-spacing:-1.760000pt;}
.ws21{word-spacing:-1.704960pt;}
.ws46{word-spacing:-1.603200pt;}
.ws39{word-spacing:-1.536000pt;}
.ws3e{word-spacing:-1.409280pt;}
.ws17{word-spacing:-1.344000pt;}
.ws1f{word-spacing:-1.065600pt;}
.ws49{word-spacing:-0.961920pt;}
.ws37{word-spacing:-0.960000pt;}
.ws29{word-spacing:-0.939520pt;}
.ws7{word-spacing:-0.896000pt;}
.ws1d{word-spacing:-0.800000pt;}
.ws2a{word-spacing:-0.768000pt;}
.wsc{word-spacing:-0.683520pt;}
.ws33{word-spacing:-0.640000pt;}
.ws4{word-spacing:-0.533760pt;}
.ws47{word-spacing:-0.512640pt;}
.ws1b{word-spacing:-0.480000pt;}
.ws20{word-spacing:-0.426240pt;}
.ws38{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.341760pt;}
.ws4a{word-spacing:-0.320640pt;}
.ws31{word-spacing:-0.320000pt;}
.ws3a{word-spacing:-0.319680pt;}
.ws8{word-spacing:-0.256000pt;}
.ws15{word-spacing:-0.234880pt;}
.ws23{word-spacing:-0.213120pt;}
.ws1e{word-spacing:-0.160000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.160000pt;}
.ws44{word-spacing:0.170880pt;}
.ws24{word-spacing:0.213120pt;}
.ws5{word-spacing:0.266880pt;}
.ws2c{word-spacing:0.288000pt;}
.ws30{word-spacing:0.320000pt;}
.wsd{word-spacing:0.341760pt;}
.ws1c{word-spacing:0.480000pt;}
.wsb{word-spacing:0.512640pt;}
.ws2b{word-spacing:0.576000pt;}
.ws32{word-spacing:0.640000pt;}
.ws2d{word-spacing:0.672000pt;}
.ws2f{word-spacing:0.800000pt;}
.ws22{word-spacing:0.852480pt;}
.ws16{word-spacing:0.960000pt;}
.ws3d{word-spacing:1.120000pt;}
.wse{word-spacing:1.196160pt;}
.ws4c{word-spacing:1.361920pt;}
.ws48{word-spacing:2.048000pt;}
.wsa{word-spacing:564.305493pt;}
.ws9{word-spacing:779.719360pt;}
._13{margin-left:-88.575467pt;}
._c{margin-left:-35.520000pt;}
._0{margin-left:-22.912000pt;}
._f{margin-left:-15.958784pt;}
._9{margin-left:-14.849472pt;}
._11{margin-left:-11.328000pt;}
._4{margin-left:-8.455680pt;}
._12{margin-left:-6.784704pt;}
._14{margin-left:-4.914112pt;}
._e{margin-left:-3.956224pt;}
._2{margin-left:-2.719488pt;}
._3{margin-left:-1.004672pt;}
._a{width:1.281600pt;}
._b{width:2.255616pt;}
._10{width:6.131072pt;}
._1{width:28.288000pt;}
._d{width:36.640000pt;}
._7{width:626.460693pt;}
._6{width:663.930453pt;}
._8{width:826.316053pt;}
._5{width:947.272427pt;}
.fse{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fsf{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs5{font-size:128.000000pt;}
.fsb{font-size:160.000000pt;}
.fs8{font-size:170.880000pt;}
.fs2{font-size:177.920000pt;}
.fs7{font-size:186.880000pt;}
.fsa{font-size:192.000000pt;}
.fsc{font-size:213.120000pt;}
.fs9{font-size:234.880000pt;}
.fs1{font-size:266.880000pt;}
.fs10{font-size:352.000000pt;}
.fs0{font-size:384.000000pt;}
.fs6{font-size:480.000000pt;}
.fs11{font-size:666.880000pt;}
.fsd{font-size:842.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:20.644800pt;}
.y40{bottom:56.644667pt;}
.y3f{bottom:93.444800pt;}
.y2d{bottom:99.823867pt;}
.y30{bottom:101.022000pt;}
.y80{bottom:121.434960pt;}
.y8{bottom:123.723733pt;}
.y7f{bottom:147.034800pt;}
.y62{bottom:161.435067pt;}
.y7{bottom:162.123733pt;}
.y2c{bottom:162.531867pt;}
.y2f{bottom:180.569840pt;}
.y57{bottom:181.215333pt;}
.y22{bottom:184.840000pt;}
.y2b{bottom:210.531867pt;}
.y1a{bottom:225.027467pt;}
.y61{bottom:227.051067pt;}
.y56{bottom:229.215333pt;}
.y2e{bottom:231.748400pt;}
.y21{bottom:242.440000pt;}
.y2a{bottom:258.531867pt;}
.y19{bottom:276.248747pt;}
.y55{bottom:277.215333pt;}
.y44{bottom:279.680400pt;}
.y60{bottom:292.667067pt;}
.y6d{bottom:299.142987pt;}
.y20{bottom:300.040000pt;}
.y50{bottom:301.805333pt;}
.y4a{bottom:319.847733pt;}
.y54{bottom:325.215333pt;}
.y18{bottom:327.427307pt;}
.y43{bottom:327.680400pt;}
.y11{bottom:330.628187pt;}
.y7b{bottom:339.836400pt;}
.y4f{bottom:349.805333pt;}
.y73{bottom:355.680000pt;}
.y1f{bottom:357.640000pt;}
.y5f{bottom:358.283067pt;}
.y49{bottom:367.847733pt;}
.y53{bottom:373.215333pt;}
.y42{bottom:375.680400pt;}
.y10{bottom:381.806747pt;}
.y75{bottom:387.680000pt;}
.yb{bottom:391.521200pt;}
.y3a{bottom:394.614880pt;}
.y5{bottom:395.119173pt;}
.y7a{bottom:397.436400pt;}
.y4e{bottom:397.805333pt;}
.y6c{bottom:404.721547pt;}
.y72{bottom:413.280000pt;}
.y1e{bottom:415.240000pt;}
.y35{bottom:415.297733pt;}
.y48{bottom:415.847733pt;}
.y5e{bottom:423.899067pt;}
.y34{bottom:426.707360pt;}
.y17{bottom:429.827147pt;}
.yf{bottom:432.985307pt;}
.y3e{bottom:439.773333pt;}
.y39{bottom:442.620160pt;}
.y74{bottom:445.280000pt;}
.y4d{bottom:445.805333pt;}
.y79{bottom:452.455280pt;}
.y7d{bottom:452.758133pt;}
.y59{bottom:458.125600pt;}
.y47{bottom:463.847733pt;}
.y71{bottom:468.309440pt;}
.y1d{bottom:472.840000pt;}
.y33{bottom:474.712640pt;}
.y16{bottom:481.005707pt;}
.y52{bottom:482.106800pt;}
.y78{bottom:484.465840pt;}
.y4{bottom:488.393733pt;}
.y5d{bottom:489.515067pt;}
.y38{bottom:490.625440pt;}
.y4c{bottom:493.805333pt;}
.y70{bottom:500.320000pt;}
.y7c{bottom:500.758133pt;}
.y6b{bottom:510.300107pt;}
.y68{bottom:511.656667pt;}
.y3d{bottom:513.373333pt;}
.y77{bottom:516.476400pt;}
.y46{bottom:519.847733pt;}
.y32{bottom:522.717920pt;}
.y26{bottom:531.137200pt;}
.y15{bottom:532.226987pt;}
.ye{bottom:535.385147pt;}
.y37{bottom:538.630720pt;}
.y69{bottom:539.656667pt;}
.y65{bottom:539.939867pt;}
.y6f{bottom:540.160000pt;}
.y4b{bottom:541.805333pt;}
.y67{bottom:552.136533pt;}
.y5c{bottom:555.131067pt;}
.y76{bottom:556.316267pt;}
.y29{bottom:563.571333pt;}
.y31{bottom:570.723200pt;}
.y14{bottom:583.405547pt;}
.yd{bottom:586.563707pt;}
.y36{bottom:586.636000pt;}
.y3c{bottom:586.973333pt;}
.y7e{bottom:596.745733pt;}
.y66{bottom:600.136533pt;}
.y64{bottom:600.419867pt;}
.y25{bottom:600.588667pt;}
.y1c{bottom:603.714720pt;}
.y3{bottom:611.688933pt;}
.y6a{bottom:615.878667pt;}
.y5b{bottom:620.747067pt;}
.y58{bottom:626.125600pt;}
.y13{bottom:634.584107pt;}
.yc{bottom:637.742267pt;}
.ya{bottom:643.224400pt;}
.y24{bottom:648.588667pt;}
.y45{bottom:660.061600pt;}
.y51{bottom:662.573333pt;}
.y28{bottom:673.628133pt;}
.y1b{bottom:674.120000pt;}
.y12{bottom:685.762667pt;}
.y3b{bottom:695.453333pt;}
.y23{bottom:696.588667pt;}
.y27{bottom:715.708133pt;}
.y5a{bottom:726.027067pt;}
.y2{bottom:726.888933pt;}
.y6e{bottom:806.942400pt;}
.y9{bottom:830.573333pt;}
.y1{bottom:842.088933pt;}
.y63{bottom:953.058267pt;}
.y6{bottom:981.626667pt;}
.h12{height:45.937500pt;}
.h5{height:61.096875pt;}
.h13{height:68.906250pt;}
.h21{height:71.671040pt;}
.h1f{height:76.739840pt;}
.h4{height:79.518720pt;}
.h15{height:91.875000pt;}
.h20{height:91.904000pt;}
.h14{height:99.496875pt;}
.he{height:114.843750pt;}
.h16{height:114.880000pt;}
.h17{height:116.562500pt;}
.ha{height:122.653125pt;}
.h1e{height:122.691840pt;}
.h9{height:124.488750pt;}
.hf{height:136.145000pt;}
.hc{height:137.812500pt;}
.h19{height:137.856000pt;}
.hd{height:139.875000pt;}
.h1b{height:142.045312pt;}
.h8{height:144.557800pt;}
.h7{height:144.558333pt;}
.h10{height:153.020160pt;}
.hb{height:168.590625pt;}
.h18{height:168.643840pt;}
.h1c{height:171.113750pt;}
.h3{height:207.725333pt;}
.h2{height:207.746560pt;}
.h1a{height:256.437500pt;}
.h1{height:279.750000pt;}
.h6{height:349.687500pt;}
.h1d{height:485.832500pt;}
.h11{height:893.785117pt;}
.h0{height:1080.000000pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x39{left:20.077733pt;}
.x2b{left:27.241600pt;}
.x47{left:71.528267pt;}
.x3a{left:83.917733pt;}
.x3d{left:94.614267pt;}
.x46{left:106.139467pt;}
.x2{left:108.000000pt;}
.x1b{left:109.638667pt;}
.x3{left:117.227867pt;}
.x45{left:125.110933pt;}
.x1{left:127.999867pt;}
.x6{left:144.058533pt;}
.x5{left:154.555067pt;}
.x2f{left:169.153200pt;}
.x30{left:172.943600pt;}
.x22{left:186.042133pt;}
.x31{left:220.943600pt;}
.x3e{left:284.975333pt;}
.x3b{left:295.610000pt;}
.x18{left:314.494800pt;}
.x11{left:316.010267pt;}
.x10{left:331.210267pt;}
.x17{left:340.574800pt;}
.x20{left:363.273973pt;}
.x21{left:364.712533pt;}
.x1f{left:379.098133pt;}
.x1a{left:399.051467pt;}
.x1e{left:403.766667pt;}
.x13{left:423.869867pt;}
.x12{left:425.290267pt;}
.x19{left:430.974800pt;}
.x3c{left:458.814533pt;}
.x28{left:487.023333pt;}
.x2e{left:491.610000pt;}
.xa{left:512.566667pt;}
.xc{left:532.410000pt;}
.x29{left:535.023333pt;}
.x48{left:538.390800pt;}
.x44{left:608.730000pt;}
.xf{left:628.889867pt;}
.x36{left:631.423600pt;}
.x37{left:635.214000pt;}
.x4{left:638.166533pt;}
.xb{left:643.709333pt;}
.x7{left:649.540267pt;}
.x4b{left:677.586267pt;}
.x38{left:683.214000pt;}
.x8{left:697.557547pt;}
.x2a{left:723.286667pt;}
.xd{left:729.646667pt;}
.x35{left:734.330000pt;}
.x9{left:745.617547pt;}
.x40{left:749.902400pt;}
.xe{left:777.646667pt;}
.x3f{left:798.062400pt;}
.x2d{left:803.426533pt;}
.x41{left:931.022400pt;}
.x4c{left:937.598133pt;}
.x2c{left:945.186533pt;}
.x49{left:992.026267pt;}
.x26{left:1010.998773pt;}
.x25{left:1032.950133pt;}
.x23{left:1047.069333pt;}
.x33{left:1070.828133pt;}
.x27{left:1086.176853pt;}
.x32{left:1094.705467pt;}
.x34{left:1118.828133pt;}
.x24{left:1120.169493pt;}
.x1c{left:1224.196347pt;}
.x15{left:1280.137333pt;}
.x14{left:1284.457333pt;}
.x16{left:1345.754267pt;}
.x1d{left:1364.022667pt;}
.x42{left:1385.916933pt;}
.x4a{left:1458.381200pt;}
.x43{left:1569.117067pt;}
}




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