
    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_5d41984f85697227df26c644.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_8f83f8e371b477f75f1a17ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_3e1829f49dd17e738af6959b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0000ced433bf501c4efefacb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_5bc0caab8c740ca5ceef1d8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_12ceefccb9842078228a8d44.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.000000px;}
.v1{vertical-align:25.200000px;}
.v2{vertical-align:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.300000px;}
.ls4{letter-spacing:1.800000px;}
.ls2{letter-spacing:6.600000px;}
.ls6{letter-spacing:14.250000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws2{word-spacing:-17.850000px;}
.ws3{word-spacing:-15.750000px;}
.ws6{word-spacing:-10.500000px;}
.ws4{word-spacing:-9.150000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:1500.300000px;}
._4{margin-left:-360.601200px;}
._8{margin-left:-329.037000px;}
._18{margin-left:-308.887200px;}
._1a{margin-left:-281.814000px;}
._c{margin-left:-126.852000px;}
._1d{margin-left:-108.000000px;}
._a{margin-left:-31.560000px;}
._1c{margin-left:-26.664000px;}
._6{margin-left:-17.559000px;}
._7{margin-left:-13.923000px;}
._2{margin-left:-7.353600px;}
._20{margin-left:-5.508000px;}
._3{margin-left:-4.284000px;}
._21{margin-left:-3.142800px;}
._1{margin-left:-1.996800px;}
._b{width:1.152000px;}
._12{width:2.178000px;}
._11{width:3.402000px;}
._e{width:4.515600px;}
._0{width:5.587200px;}
._14{width:6.645600px;}
._13{width:7.678800px;}
._10{width:8.910000px;}
._15{width:10.232400px;}
._f{width:11.622000px;}
._16{width:12.939600px;}
._24{width:14.238000px;}
._22{width:17.434800px;}
._23{width:19.151400px;}
._27{width:20.334600px;}
._2a{width:23.262600px;}
._29{width:25.326000px;}
._2c{width:27.075000px;}
._28{width:38.797800px;}
._2b{width:40.779000px;}
._25{width:50.526000px;}
._26{width:51.723000px;}
._2d{width:52.965600px;}
._17{width:74.400000px;}
._1e{width:80.622000px;}
._d{width:95.193000px;}
._1b{width:254.664000px;}
._19{width:281.070000px;}
._9{width:297.360000px;}
._5{width:328.608000px;}
._1f{width:1519.578000px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.600000px;}
.fs9{font-size:42.000000px;}
.fsa{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:71.400000px;}
.fsb{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y38{bottom:93.600000px;}
.y14{bottom:99.795000px;}
.y18{bottom:113.670000px;}
.y37{bottom:130.350000px;}
.y69{bottom:131.700000px;}
.y10{bottom:133.935000px;}
.y9c{bottom:134.100000px;}
.y17{bottom:135.750000px;}
.y64{bottom:140.250000px;}
.yea{bottom:141.450000px;}
.y36{bottom:145.800000px;}
.y90{bottom:147.300000px;}
.y68{bottom:149.850000px;}
.y9b{bottom:152.250000px;}
.y10e{bottom:153.750000px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y63{bottom:158.400000px;}
.ye0{bottom:159.600000px;}
.y35{bottom:161.400000px;}
.y8f{bottom:165.450000px;}
.y67{bottom:168.000000px;}
.y9a{bottom:170.400000px;}
.y10d{bottom:174.450000px;}
.y62{bottom:176.550000px;}
.yc7{bottom:176.850000px;}
.ydf{bottom:177.750000px;}
.y8e{bottom:183.600000px;}
.y66{bottom:186.150000px;}
.y99{bottom:188.550000px;}
.y7b{bottom:192.150000px;}
.yc6{bottom:192.450000px;}
.y61{bottom:194.700000px;}
.yde{bottom:195.900000px;}
.y8d{bottom:201.750000px;}
.y65{bottom:204.300000px;}
.y98{bottom:206.700000px;}
.yc5{bottom:207.900000px;}
.y7a{bottom:210.300000px;}
.y34{bottom:210.600000px;}
.y60{bottom:212.850000px;}
.ydd{bottom:214.050000px;}
.y10b{bottom:215.250000px;}
.y8c{bottom:219.900000px;}
.ya7{bottom:222.450000px;}
.yc4{bottom:223.500000px;}
.y97{bottom:224.850000px;}
.y79{bottom:228.450000px;}
.y33{bottom:228.750000px;}
.y5f{bottom:231.000000px;}
.ydc{bottom:232.200000px;}
.y8b{bottom:238.050000px;}
.yc3{bottom:238.950000px;}
.ya6{bottom:240.600000px;}
.y96{bottom:243.000000px;}
.y78{bottom:246.600000px;}
.y32{bottom:246.900000px;}
.y5e{bottom:249.150000px;}
.ydb{bottom:250.350000px;}
.y10a{bottom:251.550000px;}
.y8a{bottom:256.200000px;}
.ya5{bottom:258.750000px;}
.y95{bottom:261.150000px;}
.y77{bottom:264.750000px;}
.y31{bottom:265.050000px;}
.y5d{bottom:267.300000px;}
.yda{bottom:268.500000px;}
.y109{bottom:269.700000px;}
.y89{bottom:274.350000px;}
.ya4{bottom:276.900000px;}
.y94{bottom:279.300000px;}
.y76{bottom:282.900000px;}
.y5c{bottom:285.450000px;}
.yd9{bottom:286.650000px;}
.y108{bottom:287.850000px;}
.yc2{bottom:290.400000px;}
.y30{bottom:291.750000px;}
.y88{bottom:292.500000px;}
.ya3{bottom:295.050000px;}
.y75{bottom:301.050000px;}
.y5b{bottom:303.600000px;}
.yd8{bottom:304.800000px;}
.y107{bottom:306.000000px;}
.y87{bottom:310.650000px;}
.ya2{bottom:313.200000px;}
.y93{bottom:315.600000px;}
.y74{bottom:319.200000px;}
.y5a{bottom:321.750000px;}
.yd7{bottom:322.950000px;}
.y106{bottom:324.150000px;}
.y2f{bottom:327.000000px;}
.y86{bottom:328.800000px;}
.ya1{bottom:331.350000px;}
.y73{bottom:337.350000px;}
.y59{bottom:339.900000px;}
.ye9{bottom:341.100000px;}
.y105{bottom:342.300000px;}
.ya{bottom:344.680500px;}
.y2e{bottom:346.050000px;}
.y85{bottom:346.950000px;}
.ya0{bottom:349.500000px;}
.y72{bottom:355.500000px;}
.y58{bottom:358.050000px;}
.ye8{bottom:359.250000px;}
.y104{bottom:360.450000px;}
.y2d{bottom:364.950000px;}
.yc1{bottom:365.100000px;}
.y9f{bottom:367.650000px;}
.y71{bottom:373.650000px;}
.y57{bottom:376.200000px;}
.ye7{bottom:377.400000px;}
.y103{bottom:378.600000px;}
.y84{bottom:383.250000px;}
.y2c{bottom:384.000000px;}
.y9e{bottom:385.800000px;}
.yd{bottom:386.490000px;}
.y70{bottom:391.800000px;}
.y56{bottom:394.350000px;}
.ye6{bottom:395.550000px;}
.y9{bottom:395.689500px;}
.y102{bottom:396.750000px;}
.yc0{bottom:401.400000px;}
.y2b{bottom:402.900000px;}
.y9d{bottom:403.950000px;}
.y6f{bottom:409.950000px;}
.y55{bottom:412.500000px;}
.ye5{bottom:413.700000px;}
.y101{bottom:414.900000px;}
.ybf{bottom:419.550000px;}
.y2a{bottom:421.950000px;}
.yd4{bottom:422.100000px;}
.y6e{bottom:428.100000px;}
.y54{bottom:430.650000px;}
.ye4{bottom:431.850000px;}
.y100{bottom:433.050000px;}
.yb{bottom:434.850000px;}
.ybe{bottom:437.700000px;}
.yd3{bottom:440.250000px;}
.y29{bottom:440.850000px;}
.y6d{bottom:446.250000px;}
.y8{bottom:446.698500px;}
.y53{bottom:448.800000px;}
.ye3{bottom:450.000000px;}
.yff{bottom:451.200000px;}
.ybd{bottom:455.850000px;}
.yd2{bottom:458.400000px;}
.y28{bottom:459.900000px;}
.y6c{bottom:464.400000px;}
.y52{bottom:466.950000px;}
.ye2{bottom:468.150000px;}
.yfe{bottom:469.350000px;}
.ybc{bottom:474.000000px;}
.yd1{bottom:476.550000px;}
.y27{bottom:478.800000px;}
.y6b{bottom:482.550000px;}
.y51{bottom:485.100000px;}
.ye1{bottom:486.300000px;}
.yfd{bottom:487.500000px;}
.y11{bottom:488.055000px;}
.ybb{bottom:492.150000px;}
.yd0{bottom:494.700000px;}
.y7{bottom:497.707500px;}
.y26{bottom:497.850000px;}
.y6a{bottom:501.150000px;}
.y50{bottom:503.250000px;}
.yfc{bottom:505.650000px;}
.yba{bottom:510.300000px;}
.ycf{bottom:512.850000px;}
.y25{bottom:516.750000px;}
.y4f{bottom:521.400000px;}
.yb9{bottom:528.450000px;}
.yce{bottom:531.000000px;}
.yfb{bottom:532.200000px;}
.y24{bottom:535.800000px;}
.y12{bottom:538.230000px;}
.y4e{bottom:539.550000px;}
.yb8{bottom:546.600000px;}
.y6{bottom:548.716500px;}
.ycd{bottom:549.150000px;}
.yfa{bottom:550.350000px;}
.y23{bottom:554.700000px;}
.y4d{bottom:557.700000px;}
.yb7{bottom:564.750000px;}
.ycc{bottom:567.300000px;}
.yf9{bottom:568.500000px;}
.y22{bottom:573.750000px;}
.y4c{bottom:575.850000px;}
.yb6{bottom:582.900000px;}
.ycb{bottom:585.450000px;}
.yf8{bottom:586.650000px;}
.y19{bottom:589.605000px;}
.y21{bottom:592.650000px;}
.y4b{bottom:594.000000px;}
.y5{bottom:599.725500px;}
.yb5{bottom:601.050000px;}
.yca{bottom:603.600000px;}
.y4a{bottom:612.150000px;}
.yf7{bottom:613.350000px;}
.yb4{bottom:619.200000px;}
.yc9{bottom:621.750000px;}
.y49{bottom:630.300000px;}
.yf6{bottom:631.500000px;}
.ye{bottom:631.920000px;}
.yb3{bottom:637.350000px;}
.y20{bottom:638.100000px;}
.yc8{bottom:639.900000px;}
.y48{bottom:648.450000px;}
.yf5{bottom:649.650000px;}
.yb2{bottom:655.500000px;}
.yd6{bottom:658.050000px;}
.y47{bottom:666.600000px;}
.yf4{bottom:667.800000px;}
.yb1{bottom:674.100000px;}
.yd5{bottom:676.200000px;}
.y46{bottom:684.750000px;}
.y1f{bottom:685.350000px;}
.yf3{bottom:685.950000px;}
.yb0{bottom:694.350000px;}
.y45{bottom:702.900000px;}
.yf2{bottom:704.100000px;}
.yaf{bottom:712.500000px;}
.y1e{bottom:716.400000px;}
.y44{bottom:721.050000px;}
.yf1{bottom:722.250000px;}
.yae{bottom:730.650000px;}
.y43{bottom:739.200000px;}
.yf0{bottom:740.400000px;}
.y1d{bottom:747.450000px;}
.yad{bottom:748.800000px;}
.y92{bottom:754.350000px;}
.y42{bottom:757.350000px;}
.yef{bottom:758.550000px;}
.yac{bottom:766.950000px;}
.y91{bottom:772.500000px;}
.y41{bottom:775.500000px;}
.yee{bottom:776.700000px;}
.y4{bottom:778.225500px;}
.yab{bottom:785.100000px;}
.y83{bottom:790.650000px;}
.y40{bottom:793.650000px;}
.yed{bottom:794.850000px;}
.yaa{bottom:803.250000px;}
.y82{bottom:808.800000px;}
.y3f{bottom:811.800000px;}
.y13{bottom:815.670000px;}
.ya9{bottom:821.400000px;}
.y81{bottom:826.950000px;}
.y3e{bottom:829.950000px;}
.y1c{bottom:834.150000px;}
.ya8{bottom:839.550000px;}
.y80{bottom:845.100000px;}
.y3d{bottom:848.100000px;}
.y1b{bottom:854.700000px;}
.yec{bottom:857.700000px;}
.y7f{bottom:863.250000px;}
.y3c{bottom:866.250000px;}
.yeb{bottom:875.850000px;}
.y7e{bottom:881.400000px;}
.y3b{bottom:884.400000px;}
.y10c{bottom:894.000000px;}
.y7d{bottom:899.550000px;}
.y3a{bottom:902.550000px;}
.y3{bottom:905.716500px;}
.y7c{bottom:917.700000px;}
.y39{bottom:920.700000px;}
.y1a{bottom:963.750000px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.h4{height:33.000000px;}
.hc{height:41.660156px;}
.hf{height:42.697266px;}
.he{height:43.743164px;}
.h13{height:45.035156px;}
.h10{height:45.826172px;}
.h17{height:49.992188px;}
.h12{height:52.541016px;}
.h11{height:55.723828px;}
.h3{height:58.406250px;}
.h16{height:60.046875px;}
.h14{height:63.227344px;}
.h15{height:66.032813px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hd{height:73.195312px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:1062.750000px;}
.hb{height:1062.900000px;}
.h9{height:1062.949606px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wb{width:748.200000px;}
.w9{width:748.303937px;}
.wa{width:748.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xf{left:63.900000px;}
.x10{left:85.200000px;}
.x12{left:89.400000px;}
.xa{left:106.500000px;}
.xb{left:117.000000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xe{left:131.850000px;}
.x13{left:148.950000px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xc{left:297.000000px;}
.x11{left:316.800000px;}
.xd{left:337.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.333333pt;}
.v1{vertical-align:22.400000pt;}
.v2{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls4{letter-spacing:1.600000pt;}
.ls2{letter-spacing:5.866667pt;}
.ls6{letter-spacing:12.666667pt;}
.ws0{word-spacing:-16.874667pt;}
.ws2{word-spacing:-15.866667pt;}
.ws3{word-spacing:-14.000000pt;}
.ws6{word-spacing:-9.333333pt;}
.ws4{word-spacing:-8.133333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:1333.600000pt;}
._4{margin-left:-320.534400pt;}
._8{margin-left:-292.477333pt;}
._18{margin-left:-274.566400pt;}
._1a{margin-left:-250.501333pt;}
._c{margin-left:-112.757333pt;}
._1d{margin-left:-96.000000pt;}
._a{margin-left:-28.053333pt;}
._1c{margin-left:-23.701333pt;}
._6{margin-left:-15.608000pt;}
._7{margin-left:-12.376000pt;}
._2{margin-left:-6.536533pt;}
._20{margin-left:-4.896000pt;}
._3{margin-left:-3.808000pt;}
._21{margin-left:-2.793600pt;}
._1{margin-left:-1.774933pt;}
._b{width:1.024000pt;}
._12{width:1.936000pt;}
._11{width:3.024000pt;}
._e{width:4.013867pt;}
._0{width:4.966400pt;}
._14{width:5.907200pt;}
._13{width:6.825600pt;}
._10{width:7.920000pt;}
._15{width:9.095467pt;}
._f{width:10.330667pt;}
._16{width:11.501867pt;}
._24{width:12.656000pt;}
._22{width:15.497600pt;}
._23{width:17.023467pt;}
._27{width:18.075200pt;}
._2a{width:20.677867pt;}
._29{width:22.512000pt;}
._2c{width:24.066667pt;}
._28{width:34.486933pt;}
._2b{width:36.248000pt;}
._25{width:44.912000pt;}
._26{width:45.976000pt;}
._2d{width:47.080533pt;}
._17{width:66.133333pt;}
._1e{width:71.664000pt;}
._d{width:84.616000pt;}
._1b{width:226.368000pt;}
._19{width:249.840000pt;}
._9{width:264.320000pt;}
._5{width:292.096000pt;}
._1f{width:1350.736000pt;}
.fs7{font-size:32.533333pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:63.466667pt;}
.fsb{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y38{bottom:83.200000pt;}
.y14{bottom:88.706667pt;}
.y18{bottom:101.040000pt;}
.y37{bottom:115.866667pt;}
.y69{bottom:117.066667pt;}
.y10{bottom:119.053333pt;}
.y9c{bottom:119.200000pt;}
.y17{bottom:120.666667pt;}
.y64{bottom:124.666667pt;}
.yea{bottom:125.733333pt;}
.y36{bottom:129.600000pt;}
.y90{bottom:130.933333pt;}
.y68{bottom:133.200000pt;}
.y9b{bottom:135.333333pt;}
.y10e{bottom:136.666667pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y63{bottom:140.800000pt;}
.ye0{bottom:141.866667pt;}
.y35{bottom:143.466667pt;}
.y8f{bottom:147.066667pt;}
.y67{bottom:149.333333pt;}
.y9a{bottom:151.466667pt;}
.y10d{bottom:155.066667pt;}
.y62{bottom:156.933333pt;}
.yc7{bottom:157.200000pt;}
.ydf{bottom:158.000000pt;}
.y8e{bottom:163.200000pt;}
.y66{bottom:165.466667pt;}
.y99{bottom:167.600000pt;}
.y7b{bottom:170.800000pt;}
.yc6{bottom:171.066667pt;}
.y61{bottom:173.066667pt;}
.yde{bottom:174.133333pt;}
.y8d{bottom:179.333333pt;}
.y65{bottom:181.600000pt;}
.y98{bottom:183.733333pt;}
.yc5{bottom:184.800000pt;}
.y7a{bottom:186.933333pt;}
.y34{bottom:187.200000pt;}
.y60{bottom:189.200000pt;}
.ydd{bottom:190.266667pt;}
.y10b{bottom:191.333333pt;}
.y8c{bottom:195.466667pt;}
.ya7{bottom:197.733333pt;}
.yc4{bottom:198.666667pt;}
.y97{bottom:199.866667pt;}
.y79{bottom:203.066667pt;}
.y33{bottom:203.333333pt;}
.y5f{bottom:205.333333pt;}
.ydc{bottom:206.400000pt;}
.y8b{bottom:211.600000pt;}
.yc3{bottom:212.400000pt;}
.ya6{bottom:213.866667pt;}
.y96{bottom:216.000000pt;}
.y78{bottom:219.200000pt;}
.y32{bottom:219.466667pt;}
.y5e{bottom:221.466667pt;}
.ydb{bottom:222.533333pt;}
.y10a{bottom:223.600000pt;}
.y8a{bottom:227.733333pt;}
.ya5{bottom:230.000000pt;}
.y95{bottom:232.133333pt;}
.y77{bottom:235.333333pt;}
.y31{bottom:235.600000pt;}
.y5d{bottom:237.600000pt;}
.yda{bottom:238.666667pt;}
.y109{bottom:239.733333pt;}
.y89{bottom:243.866667pt;}
.ya4{bottom:246.133333pt;}
.y94{bottom:248.266667pt;}
.y76{bottom:251.466667pt;}
.y5c{bottom:253.733333pt;}
.yd9{bottom:254.800000pt;}
.y108{bottom:255.866667pt;}
.yc2{bottom:258.133333pt;}
.y30{bottom:259.333333pt;}
.y88{bottom:260.000000pt;}
.ya3{bottom:262.266667pt;}
.y75{bottom:267.600000pt;}
.y5b{bottom:269.866667pt;}
.yd8{bottom:270.933333pt;}
.y107{bottom:272.000000pt;}
.y87{bottom:276.133333pt;}
.ya2{bottom:278.400000pt;}
.y93{bottom:280.533333pt;}
.y74{bottom:283.733333pt;}
.y5a{bottom:286.000000pt;}
.yd7{bottom:287.066667pt;}
.y106{bottom:288.133333pt;}
.y2f{bottom:290.666667pt;}
.y86{bottom:292.266667pt;}
.ya1{bottom:294.533333pt;}
.y73{bottom:299.866667pt;}
.y59{bottom:302.133333pt;}
.ye9{bottom:303.200000pt;}
.y105{bottom:304.266667pt;}
.ya{bottom:306.382667pt;}
.y2e{bottom:307.600000pt;}
.y85{bottom:308.400000pt;}
.ya0{bottom:310.666667pt;}
.y72{bottom:316.000000pt;}
.y58{bottom:318.266667pt;}
.ye8{bottom:319.333333pt;}
.y104{bottom:320.400000pt;}
.y2d{bottom:324.400000pt;}
.yc1{bottom:324.533333pt;}
.y9f{bottom:326.800000pt;}
.y71{bottom:332.133333pt;}
.y57{bottom:334.400000pt;}
.ye7{bottom:335.466667pt;}
.y103{bottom:336.533333pt;}
.y84{bottom:340.666667pt;}
.y2c{bottom:341.333333pt;}
.y9e{bottom:342.933333pt;}
.yd{bottom:343.546667pt;}
.y70{bottom:348.266667pt;}
.y56{bottom:350.533333pt;}
.ye6{bottom:351.600000pt;}
.y9{bottom:351.724000pt;}
.y102{bottom:352.666667pt;}
.yc0{bottom:356.800000pt;}
.y2b{bottom:358.133333pt;}
.y9d{bottom:359.066667pt;}
.y6f{bottom:364.400000pt;}
.y55{bottom:366.666667pt;}
.ye5{bottom:367.733333pt;}
.y101{bottom:368.800000pt;}
.ybf{bottom:372.933333pt;}
.y2a{bottom:375.066667pt;}
.yd4{bottom:375.200000pt;}
.y6e{bottom:380.533333pt;}
.y54{bottom:382.800000pt;}
.ye4{bottom:383.866667pt;}
.y100{bottom:384.933333pt;}
.yb{bottom:386.533333pt;}
.ybe{bottom:389.066667pt;}
.yd3{bottom:391.333333pt;}
.y29{bottom:391.866667pt;}
.y6d{bottom:396.666667pt;}
.y8{bottom:397.065333pt;}
.y53{bottom:398.933333pt;}
.ye3{bottom:400.000000pt;}
.yff{bottom:401.066667pt;}
.ybd{bottom:405.200000pt;}
.yd2{bottom:407.466667pt;}
.y28{bottom:408.800000pt;}
.y6c{bottom:412.800000pt;}
.y52{bottom:415.066667pt;}
.ye2{bottom:416.133333pt;}
.yfe{bottom:417.200000pt;}
.ybc{bottom:421.333333pt;}
.yd1{bottom:423.600000pt;}
.y27{bottom:425.600000pt;}
.y6b{bottom:428.933333pt;}
.y51{bottom:431.200000pt;}
.ye1{bottom:432.266667pt;}
.yfd{bottom:433.333333pt;}
.y11{bottom:433.826667pt;}
.ybb{bottom:437.466667pt;}
.yd0{bottom:439.733333pt;}
.y7{bottom:442.406667pt;}
.y26{bottom:442.533333pt;}
.y6a{bottom:445.466667pt;}
.y50{bottom:447.333333pt;}
.yfc{bottom:449.466667pt;}
.yba{bottom:453.600000pt;}
.ycf{bottom:455.866667pt;}
.y25{bottom:459.333333pt;}
.y4f{bottom:463.466667pt;}
.yb9{bottom:469.733333pt;}
.yce{bottom:472.000000pt;}
.yfb{bottom:473.066667pt;}
.y24{bottom:476.266667pt;}
.y12{bottom:478.426667pt;}
.y4e{bottom:479.600000pt;}
.yb8{bottom:485.866667pt;}
.y6{bottom:487.748000pt;}
.ycd{bottom:488.133333pt;}
.yfa{bottom:489.200000pt;}
.y23{bottom:493.066667pt;}
.y4d{bottom:495.733333pt;}
.yb7{bottom:502.000000pt;}
.ycc{bottom:504.266667pt;}
.yf9{bottom:505.333333pt;}
.y22{bottom:510.000000pt;}
.y4c{bottom:511.866667pt;}
.yb6{bottom:518.133333pt;}
.ycb{bottom:520.400000pt;}
.yf8{bottom:521.466667pt;}
.y19{bottom:524.093333pt;}
.y21{bottom:526.800000pt;}
.y4b{bottom:528.000000pt;}
.y5{bottom:533.089333pt;}
.yb5{bottom:534.266667pt;}
.yca{bottom:536.533333pt;}
.y4a{bottom:544.133333pt;}
.yf7{bottom:545.200000pt;}
.yb4{bottom:550.400000pt;}
.yc9{bottom:552.666667pt;}
.y49{bottom:560.266667pt;}
.yf6{bottom:561.333333pt;}
.ye{bottom:561.706667pt;}
.yb3{bottom:566.533333pt;}
.y20{bottom:567.200000pt;}
.yc8{bottom:568.800000pt;}
.y48{bottom:576.400000pt;}
.yf5{bottom:577.466667pt;}
.yb2{bottom:582.666667pt;}
.yd6{bottom:584.933333pt;}
.y47{bottom:592.533333pt;}
.yf4{bottom:593.600000pt;}
.yb1{bottom:599.200000pt;}
.yd5{bottom:601.066667pt;}
.y46{bottom:608.666667pt;}
.y1f{bottom:609.200000pt;}
.yf3{bottom:609.733333pt;}
.yb0{bottom:617.200000pt;}
.y45{bottom:624.800000pt;}
.yf2{bottom:625.866667pt;}
.yaf{bottom:633.333333pt;}
.y1e{bottom:636.800000pt;}
.y44{bottom:640.933333pt;}
.yf1{bottom:642.000000pt;}
.yae{bottom:649.466667pt;}
.y43{bottom:657.066667pt;}
.yf0{bottom:658.133333pt;}
.y1d{bottom:664.400000pt;}
.yad{bottom:665.600000pt;}
.y92{bottom:670.533333pt;}
.y42{bottom:673.200000pt;}
.yef{bottom:674.266667pt;}
.yac{bottom:681.733333pt;}
.y91{bottom:686.666667pt;}
.y41{bottom:689.333333pt;}
.yee{bottom:690.400000pt;}
.y4{bottom:691.756000pt;}
.yab{bottom:697.866667pt;}
.y83{bottom:702.800000pt;}
.y40{bottom:705.466667pt;}
.yed{bottom:706.533333pt;}
.yaa{bottom:714.000000pt;}
.y82{bottom:718.933333pt;}
.y3f{bottom:721.600000pt;}
.y13{bottom:725.040000pt;}
.ya9{bottom:730.133333pt;}
.y81{bottom:735.066667pt;}
.y3e{bottom:737.733333pt;}
.y1c{bottom:741.466667pt;}
.ya8{bottom:746.266667pt;}
.y80{bottom:751.200000pt;}
.y3d{bottom:753.866667pt;}
.y1b{bottom:759.733333pt;}
.yec{bottom:762.400000pt;}
.y7f{bottom:767.333333pt;}
.y3c{bottom:770.000000pt;}
.yeb{bottom:778.533333pt;}
.y7e{bottom:783.466667pt;}
.y3b{bottom:786.133333pt;}
.y10c{bottom:794.666667pt;}
.y7d{bottom:799.600000pt;}
.y3a{bottom:802.266667pt;}
.y3{bottom:805.081333pt;}
.y7c{bottom:815.733333pt;}
.y39{bottom:818.400000pt;}
.y1a{bottom:856.666667pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.h4{height:29.333333pt;}
.hc{height:37.031250pt;}
.hf{height:37.953125pt;}
.he{height:38.882812pt;}
.h13{height:40.031250pt;}
.h10{height:40.734375pt;}
.h17{height:44.437500pt;}
.h12{height:46.703125pt;}
.h11{height:49.532292pt;}
.h3{height:51.916667pt;}
.h16{height:53.375000pt;}
.h14{height:56.202083pt;}
.h15{height:58.695833pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hd{height:65.062500pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:944.666667pt;}
.hb{height:944.800000pt;}
.h9{height:944.844094pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wb{width:665.066667pt;}
.w9{width:665.159055pt;}
.wa{width:665.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xf{left:56.800000pt;}
.x10{left:75.733333pt;}
.x12{left:79.466667pt;}
.xa{left:94.666667pt;}
.xb{left:104.000000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xe{left:117.200000pt;}
.x13{left:132.400000pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xc{left:264.000000pt;}
.x11{left:281.600000pt;}
.xd{left:299.733333pt;}
}




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