
    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_2d61e0c776b7f3fb2f812234.woff')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_a5bc2f2567e88b6fa852c18d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_eacc1ac5d020987ddedae86e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dc339fa7213f2764ef73c949.woff')format("woff");}.ff4{font-family:ff4;line-height:0.891113;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_2d72838d3fd98b6daf279a17.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_a4ead222c02ce4a06d6811da.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_153a41b6e301685f07f62f24.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_9d3ce66b06e25418d2babcef.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_217718c02899f64c509ba6f5.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_317b815988b9def2b3e9574c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.891113;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:-24.000000px;}
.v4{vertical-align:-6.060000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.000000px;}
.v6{vertical-align:15.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:24.000000px;}
.ls15{letter-spacing:-1.500000px;}
.ls8{letter-spacing:-0.516000px;}
.ls9{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.024000px;}
.ls14{letter-spacing:-0.018000px;}
.ls11{letter-spacing:-0.012000px;}
.ls12{letter-spacing:-0.006000px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.012000px;}
.lsd{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.138000px;}
.ls16{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.342000px;}
.lsf{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.462000px;}
.ls19{letter-spacing:0.486000px;}
.ls3{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.660000px;}
.ls13{letter-spacing:0.684000px;}
.ls1{letter-spacing:1.128000px;}
.ls4{letter-spacing:1.320000px;}
.ls18{letter-spacing:4.680000px;}
.ls2{letter-spacing:40.152000px;}
.lse{letter-spacing:46.470000px;}
.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;}
}
.ws9{word-spacing:-60.000000px;}
.ws3{word-spacing:-16.500000px;}
.wsc{word-spacing:-15.180000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.820000px;}
.ws4{word-spacing:-14.640000px;}
.wsa{word-spacing:-14.520000px;}
.ws8{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws1{word-spacing:-9.750000px;}
.wsb{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-2.478000px;}
._1{margin-left:-1.152000px;}
._0{width:1.152000px;}
._2{width:2.568000px;}
._4{width:3.900000px;}
._3{width:5.142000px;}
._5{width:6.264000px;}
._6{width:7.500000px;}
._d{width:8.544000px;}
._15{width:9.558000px;}
._7{width:10.560000px;}
._e{width:12.108000px;}
._f{width:13.968000px;}
._a{width:16.980000px;}
._b{width:18.372000px;}
._8{width:20.460000px;}
._9{width:21.480000px;}
._16{width:22.680000px;}
._17{width:30.540000px;}
._13{width:88.620000px;}
._14{width:201.000000px;}
._12{width:395.130000px;}
._10{width:822.750000px;}
._11{width:919.920000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.000000px;}
.y5{bottom:19.125000px;}
.y70{bottom:215.325000px;}
.ydb{bottom:220.950000px;}
.ya4{bottom:221.700000px;}
.y8c{bottom:226.575000px;}
.y6f{bottom:232.200000px;}
.yda{bottom:237.825000px;}
.ya3{bottom:238.575000px;}
.y8b{bottom:243.075000px;}
.y49{bottom:246.075000px;}
.y6e{bottom:248.325000px;}
.yed{bottom:249.825000px;}
.y33{bottom:253.200000px;}
.yd9{bottom:254.325000px;}
.ya2{bottom:255.075000px;}
.y48{bottom:262.575000px;}
.yec{bottom:266.325000px;}
.y8a{bottom:268.575000px;}
.y6d{bottom:268.950000px;}
.yd8{bottom:270.825000px;}
.ya1{bottom:271.950000px;}
.y32{bottom:278.700000px;}
.y47{bottom:279.450000px;}
.y89{bottom:285.075000px;}
.ya0{bottom:288.450000px;}
.y31{bottom:295.575000px;}
.y46{bottom:295.950000px;}
.yd7{bottom:296.325000px;}
.yeb{bottom:301.200000px;}
.y9f{bottom:304.950000px;}
.y88{bottom:305.700000px;}
.y30{bottom:312.450000px;}
.y9e{bottom:321.450000px;}
.yd6{bottom:322.200000px;}
.yd2{bottom:325.995000px;}
.y2f{bottom:328.995000px;}
.y45{bottom:337.980000px;}
.y9d{bottom:338.370000px;}
.ybb{bottom:339.495000px;}
.yd1{bottom:342.870000px;}
.y2e{bottom:354.105000px;}
.y44{bottom:354.855000px;}
.yea{bottom:355.245000px;}
.yba{bottom:356.370000px;}
.yd5{bottom:358.620000px;}
.yd0{bottom:359.370000px;}
.y9c{bottom:363.495000px;}
.y43{bottom:371.355000px;}
.ye9{bottom:371.730000px;}
.yb9{bottom:372.870000px;}
.yd4{bottom:374.730000px;}
.y2d{bottom:379.620000px;}
.y9b{bottom:379.995000px;}
.ycf{bottom:384.855000px;}
.y42{bottom:387.855000px;}
.ye8{bottom:388.605000px;}
.yb8{bottom:389.745000px;}
.y9a{bottom:394.980000px;}
.y2c{bottom:396.870000px;}
.yce{bottom:401.370000px;}
.yb7{bottom:406.245000px;}
.yd3{bottom:410.370000px;}
.y2b{bottom:413.370000px;}
.y99{bottom:415.995000px;}
.yb6{bottom:422.745000px;}
.ye7{bottom:423.495000px;}
.y2a{bottom:429.870000px;}
.y6c{bottom:433.995000px;}
.y41{bottom:438.870000px;}
.yb5{bottom:439.620000px;}
.y29{bottom:446.745000px;}
.y6b{bottom:450.900000px;}
.yb4{bottom:456.150000px;}
.y28{bottom:463.275000px;}
.y40{bottom:464.400000px;}
.y6a{bottom:467.400000px;}
.yb3{bottom:472.650000px;}
.ye6{bottom:477.150000px;}
.y27{bottom:479.775000px;}
.y3f{bottom:480.900000px;}
.y87{bottom:482.025000px;}
.y69{bottom:484.275000px;}
.yb2{bottom:489.525000px;}
.ye5{bottom:493.650000px;}
.y26{bottom:496.275000px;}
.y86{bottom:498.900000px;}
.y3e{bottom:501.900000px;}
.ye4{bottom:508.650000px;}
.y68{bottom:509.400000px;}
.y25{bottom:513.150000px;}
.yb1{bottom:515.025000px;}
.y85{bottom:515.400000px;}
.y24{bottom:529.650000px;}
.y84{bottom:532.275000px;}
.y67{bottom:533.400000px;}
.y23{bottom:546.150000px;}
.y83{bottom:548.775000px;}
.yb0{bottom:551.025000px;}
.y22{bottom:563.025000px;}
.y82{bottom:565.275000px;}
.yaf{bottom:567.900000px;}
.y66{bottom:570.525000px;}
.y21{bottom:579.570000px;}
.y81{bottom:581.820000px;}
.yae{bottom:584.445000px;}
.y65{bottom:587.445000px;}
.ycd{bottom:591.945000px;}
.y20{bottom:596.070000px;}
.y80{bottom:598.695000px;}
.yad{bottom:600.945000px;}
.y64{bottom:604.320000px;}
.ycc{bottom:608.445000px;}
.y1f{bottom:612.945000px;}
.y7f{bottom:615.195000px;}
.ycb{bottom:624.945000px;}
.yac{bottom:626.445000px;}
.y63{bottom:629.445000px;}
.y7e{bottom:631.695000px;}
.y1e{bottom:638.445000px;}
.yca{bottom:641.820000px;}
.yab{bottom:642.945000px;}
.y7d{bottom:648.570000px;}
.yc9{bottom:658.320000px;}
.y62{bottom:660.945000px;}
.yaa{bottom:663.945000px;}
.y7c{bottom:665.070000px;}
.y1d{bottom:674.820000px;}
.y61{bottom:677.820000px;}
.y7b{bottom:681.570000px;}
.y98{bottom:684.195000px;}
.y1c{bottom:691.320000px;}
.y60{bottom:694.695000px;}
.y7a{bottom:698.070000px;}
.y97{bottom:701.100000px;}
.yc8{bottom:708.225000px;}
.y79{bottom:714.975000px;}
.y1b{bottom:716.475000px;}
.y96{bottom:717.600000px;}
.y5f{bottom:719.850000px;}
.yc7{bottom:724.725000px;}
.y78{bottom:731.475000px;}
.y1a{bottom:733.350000px;}
.y95{bottom:734.475000px;}
.y5e{bottom:736.725000px;}
.yc6{bottom:741.225000px;}
.y77{bottom:747.975000px;}
.y19{bottom:750.225000px;}
.y94{bottom:750.975000px;}
.y5d{bottom:753.600000px;}
.yc5{bottom:758.100000px;}
.y76{bottom:764.850000px;}
.y3d{bottom:765.975000px;}
.y18{bottom:766.725000px;}
.y93{bottom:767.475000px;}
.y5c{bottom:770.100000px;}
.yc4{bottom:774.600000px;}
.y3c{bottom:782.850000px;}
.y17{bottom:783.225000px;}
.y92{bottom:784.350000px;}
.y5b{bottom:786.600000px;}
.y75{bottom:789.975000px;}
.yc3{bottom:791.100000px;}
.y3b{bottom:798.975000px;}
.y16{bottom:800.100000px;}
.y91{bottom:800.850000px;}
.y5a{bottom:803.475000px;}
.yc2{bottom:807.975000px;}
.y3a{bottom:813.600000px;}
.y74{bottom:815.475000px;}
.y15{bottom:816.600000px;}
.y90{bottom:817.350000px;}
.y59{bottom:819.975000px;}
.yc1{bottom:824.475000px;}
.y73{bottom:832.005000px;}
.y14{bottom:833.130000px;}
.y39{bottom:835.020000px;}
.y58{bottom:836.505000px;}
.yc0{bottom:841.005000px;}
.y8f{bottom:842.880000px;}
.y72{bottom:847.005000px;}
.y13{bottom:850.005000px;}
.y57{bottom:853.005000px;}
.y8e{bottom:859.395000px;}
.ybf{bottom:866.145000px;}
.y12{bottom:866.505000px;}
.y71{bottom:868.005000px;}
.y56{bottom:869.880000px;}
.y8d{bottom:880.380000px;}
.ybe{bottom:882.630000px;}
.y11{bottom:883.005000px;}
.y55{bottom:886.380000px;}
.ybd{bottom:897.630000px;}
.y10{bottom:899.505000px;}
.y54{bottom:902.880000px;}
.yf{bottom:916.380000px;}
.ybc{bottom:918.630000px;}
.ye3{bottom:925.005000px;}
.y53{bottom:928.755000px;}
.ye2{bottom:941.880000px;}
.ye{bottom:950.880000px;}
.ye1{bottom:958.800000px;}
.y52{bottom:964.425000px;}
.ye0{bottom:975.300000px;}
.y51{bottom:990.300000px;}
.ydf{bottom:991.800000px;}
.yd{bottom:1005.675000px;}
.y50{bottom:1007.175000px;}
.yde{bottom:1008.675000px;}
.ya9{bottom:1015.800000px;}
.y4f{bottom:1023.675000px;}
.ydd{bottom:1025.175000px;}
.yc{bottom:1025.550000px;}
.ya8{bottom:1041.300000px;}
.ydc{bottom:1041.675000px;}
.y4e{bottom:1049.175000px;}
.yb{bottom:1051.425000px;}
.ya7{bottom:1058.550000px;}
.ya{bottom:1065.300000px;}
.y38{bottom:1065.675000px;}
.y4d{bottom:1066.050000px;}
.ya6{bottom:1075.050000px;}
.y4c{bottom:1082.580000px;}
.y9{bottom:1085.205000px;}
.y37{bottom:1091.205000px;}
.ya5{bottom:1091.580000px;}
.y4b{bottom:1099.080000px;}
.y8{bottom:1106.580000px;}
.y36{bottom:1108.080000px;}
.y4a{bottom:1124.580000px;}
.y35{bottom:1124.955000px;}
.y7{bottom:1133.205000px;}
.y34{bottom:1141.455000px;}
.y4{bottom:1201.455000px;}
.y3{bottom:1217.625000px;}
.y2{bottom:1233.000000px;}
.y1{bottom:1249.500000px;}
.h7{height:33.515625px;}
.h3{height:37.705078px;}
.hf{height:39.471680px;}
.h10{height:40.136719px;}
.h2{height:41.660156px;}
.h4{height:41.894531px;}
.hd{height:42.333984px;}
.he{height:43.681641px;}
.hb{height:43.857422px;}
.ha{height:45.231445px;}
.h9{height:46.567383px;}
.hc{height:48.049805px;}
.h8{height:50.273438px;}
.h6{height:57.515625px;}
.h5{height:67.734375px;}
.h0{height:1262.625000px;}
.h1{height:1263.000000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:82.162487px;}
.x29{left:83.287487px;}
.x7{left:85.537487px;}
.x5{left:90.412487px;}
.x14{left:94.912487px;}
.x8{left:96.787487px;}
.x3{left:104.662487px;}
.x24{left:105.787487px;}
.x2{left:109.162487px;}
.x30{left:111.037487px;}
.x1b{left:120.037487px;}
.x6{left:124.162487px;}
.x16{left:130.537487px;}
.x21{left:134.324987px;}
.x11{left:135.449987px;}
.x18{left:148.949987px;}
.xd{left:155.699987px;}
.x27{left:160.949987px;}
.x2d{left:189.824987px;}
.x10{left:230.369987px;}
.x19{left:238.619987px;}
.x22{left:246.869987px;}
.x12{left:264.494987px;}
.x4{left:270.869987px;}
.xe{left:271.994987px;}
.x1d{left:283.994987px;}
.x9{left:310.619987px;}
.x25{left:345.524987px;}
.x2e{left:349.649987px;}
.xb{left:367.274987px;}
.x2b{left:372.524987px;}
.x2a{left:374.024987px;}
.x1f{left:386.774987px;}
.x2f{left:391.274987px;}
.xa{left:401.774987px;}
.x13{left:446.819987px;}
.xf{left:534.599987px;}
.x23{left:549.974987px;}
.x26{left:567.974987px;}
.xc{left:600.629987px;}
.x1c{left:626.879987px;}
.x2c{left:646.754987px;}
.x15{left:683.924987px;}
.x20{left:688.049987px;}
.x1a{left:704.174987px;}
.x28{left:728.924987px;}
.x17{left:761.924987px;}
.x1e{left:769.844987px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v4{vertical-align:-5.386667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.333333pt;}
.v6{vertical-align:13.333333pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls15{letter-spacing:-1.333333pt;}
.ls8{letter-spacing:-0.458667pt;}
.ls9{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.021333pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls11{letter-spacing:-0.010667pt;}
.ls12{letter-spacing:-0.005333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.010667pt;}
.lsd{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.122667pt;}
.ls16{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.304000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.410667pt;}
.ls19{letter-spacing:0.432000pt;}
.ls3{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.586667pt;}
.ls13{letter-spacing:0.608000pt;}
.ls1{letter-spacing:1.002667pt;}
.ls4{letter-spacing:1.173333pt;}
.ls18{letter-spacing:4.160000pt;}
.ls2{letter-spacing:35.690667pt;}
.lse{letter-spacing:41.306667pt;}
.ws9{word-spacing:-53.333333pt;}
.ws3{word-spacing:-14.666667pt;}
.wsc{word-spacing:-13.493333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-13.173333pt;}
.ws4{word-spacing:-13.013333pt;}
.wsa{word-spacing:-12.906667pt;}
.ws8{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws1{word-spacing:-8.666667pt;}
.wsb{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-2.202667pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.024000pt;}
._2{width:2.282667pt;}
._4{width:3.466667pt;}
._3{width:4.570667pt;}
._5{width:5.568000pt;}
._6{width:6.666667pt;}
._d{width:7.594667pt;}
._15{width:8.496000pt;}
._7{width:9.386667pt;}
._e{width:10.762667pt;}
._f{width:12.416000pt;}
._a{width:15.093333pt;}
._b{width:16.330667pt;}
._8{width:18.186667pt;}
._9{width:19.093333pt;}
._16{width:20.160000pt;}
._17{width:27.146667pt;}
._13{width:78.773333pt;}
._14{width:178.666667pt;}
._12{width:351.226667pt;}
._10{width:731.333333pt;}
._11{width:817.706667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.666667pt;}
.y5{bottom:17.000000pt;}
.y70{bottom:191.400000pt;}
.ydb{bottom:196.400000pt;}
.ya4{bottom:197.066667pt;}
.y8c{bottom:201.400000pt;}
.y6f{bottom:206.400000pt;}
.yda{bottom:211.400000pt;}
.ya3{bottom:212.066667pt;}
.y8b{bottom:216.066667pt;}
.y49{bottom:218.733333pt;}
.y6e{bottom:220.733333pt;}
.yed{bottom:222.066667pt;}
.y33{bottom:225.066667pt;}
.yd9{bottom:226.066667pt;}
.ya2{bottom:226.733333pt;}
.y48{bottom:233.400000pt;}
.yec{bottom:236.733333pt;}
.y8a{bottom:238.733333pt;}
.y6d{bottom:239.066667pt;}
.yd8{bottom:240.733333pt;}
.ya1{bottom:241.733333pt;}
.y32{bottom:247.733333pt;}
.y47{bottom:248.400000pt;}
.y89{bottom:253.400000pt;}
.ya0{bottom:256.400000pt;}
.y31{bottom:262.733333pt;}
.y46{bottom:263.066667pt;}
.yd7{bottom:263.400000pt;}
.yeb{bottom:267.733333pt;}
.y9f{bottom:271.066667pt;}
.y88{bottom:271.733333pt;}
.y30{bottom:277.733333pt;}
.y9e{bottom:285.733333pt;}
.yd6{bottom:286.400000pt;}
.yd2{bottom:289.773333pt;}
.y2f{bottom:292.440000pt;}
.y45{bottom:300.426667pt;}
.y9d{bottom:300.773333pt;}
.ybb{bottom:301.773333pt;}
.yd1{bottom:304.773333pt;}
.y2e{bottom:314.760000pt;}
.y44{bottom:315.426667pt;}
.yea{bottom:315.773333pt;}
.yba{bottom:316.773333pt;}
.yd5{bottom:318.773333pt;}
.yd0{bottom:319.440000pt;}
.y9c{bottom:323.106667pt;}
.y43{bottom:330.093333pt;}
.ye9{bottom:330.426667pt;}
.yb9{bottom:331.440000pt;}
.yd4{bottom:333.093333pt;}
.y2d{bottom:337.440000pt;}
.y9b{bottom:337.773333pt;}
.ycf{bottom:342.093333pt;}
.y42{bottom:344.760000pt;}
.ye8{bottom:345.426667pt;}
.yb8{bottom:346.440000pt;}
.y9a{bottom:351.093333pt;}
.y2c{bottom:352.773333pt;}
.yce{bottom:356.773333pt;}
.yb7{bottom:361.106667pt;}
.yd3{bottom:364.773333pt;}
.y2b{bottom:367.440000pt;}
.y99{bottom:369.773333pt;}
.yb6{bottom:375.773333pt;}
.ye7{bottom:376.440000pt;}
.y2a{bottom:382.106667pt;}
.y6c{bottom:385.773333pt;}
.y41{bottom:390.106667pt;}
.yb5{bottom:390.773333pt;}
.y29{bottom:397.106667pt;}
.y6b{bottom:400.800000pt;}
.yb4{bottom:405.466667pt;}
.y28{bottom:411.800000pt;}
.y40{bottom:412.800000pt;}
.y6a{bottom:415.466667pt;}
.yb3{bottom:420.133333pt;}
.ye6{bottom:424.133333pt;}
.y27{bottom:426.466667pt;}
.y3f{bottom:427.466667pt;}
.y87{bottom:428.466667pt;}
.y69{bottom:430.466667pt;}
.yb2{bottom:435.133333pt;}
.ye5{bottom:438.800000pt;}
.y26{bottom:441.133333pt;}
.y86{bottom:443.466667pt;}
.y3e{bottom:446.133333pt;}
.ye4{bottom:452.133333pt;}
.y68{bottom:452.800000pt;}
.y25{bottom:456.133333pt;}
.yb1{bottom:457.800000pt;}
.y85{bottom:458.133333pt;}
.y24{bottom:470.800000pt;}
.y84{bottom:473.133333pt;}
.y67{bottom:474.133333pt;}
.y23{bottom:485.466667pt;}
.y83{bottom:487.800000pt;}
.yb0{bottom:489.800000pt;}
.y22{bottom:500.466667pt;}
.y82{bottom:502.466667pt;}
.yaf{bottom:504.800000pt;}
.y66{bottom:507.133333pt;}
.y21{bottom:515.173333pt;}
.y81{bottom:517.173333pt;}
.yae{bottom:519.506667pt;}
.y65{bottom:522.173333pt;}
.ycd{bottom:526.173333pt;}
.y20{bottom:529.840000pt;}
.y80{bottom:532.173333pt;}
.yad{bottom:534.173333pt;}
.y64{bottom:537.173333pt;}
.ycc{bottom:540.840000pt;}
.y1f{bottom:544.840000pt;}
.y7f{bottom:546.840000pt;}
.ycb{bottom:555.506667pt;}
.yac{bottom:556.840000pt;}
.y63{bottom:559.506667pt;}
.y7e{bottom:561.506667pt;}
.y1e{bottom:567.506667pt;}
.yca{bottom:570.506667pt;}
.yab{bottom:571.506667pt;}
.y7d{bottom:576.506667pt;}
.yc9{bottom:585.173333pt;}
.y62{bottom:587.506667pt;}
.yaa{bottom:590.173333pt;}
.y7c{bottom:591.173333pt;}
.y1d{bottom:599.840000pt;}
.y61{bottom:602.506667pt;}
.y7b{bottom:605.840000pt;}
.y98{bottom:608.173333pt;}
.y1c{bottom:614.506667pt;}
.y60{bottom:617.506667pt;}
.y7a{bottom:620.506667pt;}
.y97{bottom:623.200000pt;}
.yc8{bottom:629.533333pt;}
.y79{bottom:635.533333pt;}
.y1b{bottom:636.866667pt;}
.y96{bottom:637.866667pt;}
.y5f{bottom:639.866667pt;}
.yc7{bottom:644.200000pt;}
.y78{bottom:650.200000pt;}
.y1a{bottom:651.866667pt;}
.y95{bottom:652.866667pt;}
.y5e{bottom:654.866667pt;}
.yc6{bottom:658.866667pt;}
.y77{bottom:664.866667pt;}
.y19{bottom:666.866667pt;}
.y94{bottom:667.533333pt;}
.y5d{bottom:669.866667pt;}
.yc5{bottom:673.866667pt;}
.y76{bottom:679.866667pt;}
.y3d{bottom:680.866667pt;}
.y18{bottom:681.533333pt;}
.y93{bottom:682.200000pt;}
.y5c{bottom:684.533333pt;}
.yc4{bottom:688.533333pt;}
.y3c{bottom:695.866667pt;}
.y17{bottom:696.200000pt;}
.y92{bottom:697.200000pt;}
.y5b{bottom:699.200000pt;}
.y75{bottom:702.200000pt;}
.yc3{bottom:703.200000pt;}
.y3b{bottom:710.200000pt;}
.y16{bottom:711.200000pt;}
.y91{bottom:711.866667pt;}
.y5a{bottom:714.200000pt;}
.yc2{bottom:718.200000pt;}
.y3a{bottom:723.200000pt;}
.y74{bottom:724.866667pt;}
.y15{bottom:725.866667pt;}
.y90{bottom:726.533333pt;}
.y59{bottom:728.866667pt;}
.yc1{bottom:732.866667pt;}
.y73{bottom:739.560000pt;}
.y14{bottom:740.560000pt;}
.y39{bottom:742.240000pt;}
.y58{bottom:743.560000pt;}
.yc0{bottom:747.560000pt;}
.y8f{bottom:749.226667pt;}
.y72{bottom:752.893333pt;}
.y13{bottom:755.560000pt;}
.y57{bottom:758.226667pt;}
.y8e{bottom:763.906667pt;}
.ybf{bottom:769.906667pt;}
.y12{bottom:770.226667pt;}
.y71{bottom:771.560000pt;}
.y56{bottom:773.226667pt;}
.y8d{bottom:782.560000pt;}
.ybe{bottom:784.560000pt;}
.y11{bottom:784.893333pt;}
.y55{bottom:787.893333pt;}
.ybd{bottom:797.893333pt;}
.y10{bottom:799.560000pt;}
.y54{bottom:802.560000pt;}
.yf{bottom:814.560000pt;}
.ybc{bottom:816.560000pt;}
.ye3{bottom:822.226667pt;}
.y53{bottom:825.560000pt;}
.ye2{bottom:837.226667pt;}
.ye{bottom:845.226667pt;}
.ye1{bottom:852.266667pt;}
.y52{bottom:857.266667pt;}
.ye0{bottom:866.933333pt;}
.y51{bottom:880.266667pt;}
.ydf{bottom:881.600000pt;}
.yd{bottom:893.933333pt;}
.y50{bottom:895.266667pt;}
.yde{bottom:896.600000pt;}
.ya9{bottom:902.933333pt;}
.y4f{bottom:909.933333pt;}
.ydd{bottom:911.266667pt;}
.yc{bottom:911.600000pt;}
.ya8{bottom:925.600000pt;}
.ydc{bottom:925.933333pt;}
.y4e{bottom:932.600000pt;}
.yb{bottom:934.600000pt;}
.ya7{bottom:940.933333pt;}
.ya{bottom:946.933333pt;}
.y38{bottom:947.266667pt;}
.y4d{bottom:947.600000pt;}
.ya6{bottom:955.600000pt;}
.y4c{bottom:962.293333pt;}
.y9{bottom:964.626667pt;}
.y37{bottom:969.960000pt;}
.ya5{bottom:970.293333pt;}
.y4b{bottom:976.960000pt;}
.y8{bottom:983.626667pt;}
.y36{bottom:984.960000pt;}
.y4a{bottom:999.626667pt;}
.y35{bottom:999.960000pt;}
.y7{bottom:1007.293333pt;}
.y34{bottom:1014.626667pt;}
.y4{bottom:1067.960000pt;}
.y3{bottom:1082.333333pt;}
.y2{bottom:1096.000000pt;}
.y1{bottom:1110.666667pt;}
.h7{height:29.791667pt;}
.h3{height:33.515625pt;}
.hf{height:35.085938pt;}
.h10{height:35.677083pt;}
.h2{height:37.031250pt;}
.h4{height:37.239583pt;}
.hd{height:37.630208pt;}
.he{height:38.828125pt;}
.hb{height:38.984375pt;}
.ha{height:40.205729pt;}
.h9{height:41.393229pt;}
.hc{height:42.710938pt;}
.h8{height:44.687500pt;}
.h6{height:51.125000pt;}
.h5{height:60.208333pt;}
.h0{height:1122.333333pt;}
.h1{height:1122.666667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:73.033322pt;}
.x29{left:74.033322pt;}
.x7{left:76.033322pt;}
.x5{left:80.366655pt;}
.x14{left:84.366655pt;}
.x8{left:86.033322pt;}
.x3{left:93.033322pt;}
.x24{left:94.033322pt;}
.x2{left:97.033322pt;}
.x30{left:98.699988pt;}
.x1b{left:106.699988pt;}
.x6{left:110.366655pt;}
.x16{left:116.033322pt;}
.x21{left:119.399988pt;}
.x11{left:120.399988pt;}
.x18{left:132.399988pt;}
.xd{left:138.399988pt;}
.x27{left:143.066655pt;}
.x2d{left:168.733322pt;}
.x10{left:204.773322pt;}
.x19{left:212.106655pt;}
.x22{left:219.439988pt;}
.x12{left:235.106655pt;}
.x4{left:240.773322pt;}
.xe{left:241.773322pt;}
.x1d{left:252.439988pt;}
.x9{left:276.106655pt;}
.x25{left:307.133322pt;}
.x2e{left:310.799988pt;}
.xb{left:326.466655pt;}
.x2b{left:331.133322pt;}
.x2a{left:332.466655pt;}
.x1f{left:343.799988pt;}
.x2f{left:347.799988pt;}
.xa{left:357.133322pt;}
.x13{left:397.173322pt;}
.xf{left:475.199988pt;}
.x23{left:488.866655pt;}
.x26{left:504.866655pt;}
.xc{left:533.893322pt;}
.x1c{left:557.226655pt;}
.x2c{left:574.893322pt;}
.x15{left:607.933322pt;}
.x20{left:611.599988pt;}
.x1a{left:625.933322pt;}
.x28{left:647.933322pt;}
.x17{left:677.266655pt;}
.x1e{left:684.306655pt;}
}




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