
    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_d4f777c1fcc7254c544992fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_b990b893ea6acbf800046b14.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_1caf6033c32889baf59a4410.woff2')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_605846de071aca1cea95d88a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b1758edfeef24964d4b677e3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_2869e5ed1e213e3d77358ed6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_1a8734561dcfa74f8215a3ad.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')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;}
.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;}
.ls5{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.240000px;}
.ls0{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.078000px;}
.ls4{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.384000px;}
.lsb{letter-spacing:10.200000px;}
.lsd{letter-spacing:15.720000px;}
.lsc{letter-spacing:45.720000px;}
.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;}
}
.ws5{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws0{word-spacing:-15.204000px;}
.ws2{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.760000px;}
.ws4{word-spacing:-12.900000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-1.338000px;}
._0{width:1.158000px;}
._9{width:2.166000px;}
._6{width:3.312000px;}
._c{width:4.926000px;}
._b{width:6.480000px;}
._1a{width:7.620000px;}
._d{width:8.700000px;}
._e{width:9.918000px;}
._8{width:11.634000px;}
._7{width:12.780000px;}
._f{width:13.998000px;}
._1d{width:15.174000px;}
._a{width:16.260000px;}
._12{width:17.940000px;}
._11{width:19.014000px;}
._10{width:20.100000px;}
._13{width:21.360000px;}
._1b{width:22.500000px;}
._1c{width:24.060000px;}
._1f{width:25.200000px;}
._20{width:26.280000px;}
._15{width:27.300000px;}
._14{width:29.280000px;}
._19{width:30.420000px;}
._17{width:31.500000px;}
._18{width:32.514000px;}
._16{width:33.774000px;}
._1e{width:188.520000px;}
._4{width:336.180000px;}
._1{width:559.950000px;}
._2{width:642.780000px;}
._5{width:1180.080000px;}
.fc5{color:transparent;}
.fc6{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(238,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:3.285000px;}
.y40{bottom:3.300000px;}
.y82{bottom:3.600000px;}
.y7f{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y7d{bottom:12.000000px;}
.y5{bottom:12.337500px;}
.y7e{bottom:20.700000px;}
.y3f{bottom:21.000000px;}
.y84{bottom:38.100000px;}
.y3e{bottom:40.500000px;}
.y4{bottom:46.800000px;}
.y3d{bottom:55.200000px;}
.y1{bottom:57.037500px;}
.y3c{bottom:72.300000px;}
.y42{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y3b{bottom:89.685000px;}
.y3a{bottom:106.785000px;}
.y36{bottom:117.037500px;}
.y39{bottom:124.230000px;}
.ydf{bottom:125.737500px;}
.y35{bottom:134.137500px;}
.yac{bottom:134.437500px;}
.y38{bottom:141.930000px;}
.yde{bottom:143.137500px;}
.y77{bottom:148.237500px;}
.y34{bottom:151.530000px;}
.yab{bottom:151.830000px;}
.ydd{bottom:160.245000px;}
.y33{bottom:168.630000px;}
.yaa{bottom:169.230000px;}
.y76{bottom:176.430000px;}
.ydc{bottom:177.675000px;}
.y32{bottom:186.075000px;}
.ya9{bottom:186.375000px;}
.ydb{bottom:194.775000px;}
.y31{bottom:203.175000px;}
.y75{bottom:204.675000px;}
.yda{bottom:212.175000px;}
.ya8{bottom:215.475000px;}
.y30{bottom:220.875000px;}
.yd9{bottom:229.275000px;}
.y74{bottom:232.875000px;}
.y2f{bottom:240.375000px;}
.yd8{bottom:246.675000px;}
.ya7{bottom:250.275000px;}
.y73{bottom:253.275000px;}
.y2e{bottom:255.075000px;}
.yd7{bottom:263.775000px;}
.y72{bottom:270.375000px;}
.y2d{bottom:272.175000px;}
.ya6{bottom:279.075000px;}
.yd6{bottom:281.175000px;}
.y71{bottom:287.775000px;}
.y2c{bottom:289.575000px;}
.ya5{bottom:296.775000px;}
.yd5{bottom:298.275000px;}
.y70{bottom:304.875000px;}
.y2b{bottom:306.075000px;}
.ya4{bottom:313.875000px;}
.yd4{bottom:315.675000px;}
.y2a{bottom:320.475000px;}
.y6f{bottom:322.275000px;}
.ya3{bottom:331.275000px;}
.yd3{bottom:332.775000px;}
.y29{bottom:337.875000px;}
.ya2{bottom:348.420000px;}
.yd2{bottom:350.205000px;}
.y6e{bottom:351.105000px;}
.y28{bottom:355.020000px;}
.ya1{bottom:365.820000px;}
.yd1{bottom:367.320000px;}
.y6d{bottom:368.820000px;}
.y27{bottom:372.420000px;}
.ya0{bottom:383.505000px;}
.yd0{bottom:384.705000px;}
.y26{bottom:389.520000px;}
.y6c{bottom:393.120000px;}
.ycf{bottom:401.820000px;}
.y9f{bottom:403.620000px;}
.y25{bottom:407.205000px;}
.y6b{bottom:410.820000px;}
.yce{bottom:419.205000px;}
.y9e{bottom:421.005000px;}
.y24{bottom:426.705000px;}
.y6a{bottom:430.620000px;}
.ycd{bottom:436.320000px;}
.y9d{bottom:438.120000px;}
.y23{bottom:441.420000px;}
.y69{bottom:451.005000px;}
.ycc{bottom:453.705000px;}
.y9c{bottom:455.505000px;}
.y22{bottom:458.505000px;}
.y68{bottom:468.420000px;}
.ycb{bottom:470.820000px;}
.y9b{bottom:472.620000px;}
.y21{bottom:475.920000px;}
.y67{bottom:485.820000px;}
.yca{bottom:488.205000px;}
.y9a{bottom:490.005000px;}
.y20{bottom:493.005000px;}
.yc9{bottom:505.320000px;}
.y99{bottom:507.120000px;}
.y1f{bottom:509.505000px;}
.y66{bottom:514.650000px;}
.yc8{bottom:522.750000px;}
.y1e{bottom:524.250000px;}
.y98{bottom:524.550000px;}
.y65{bottom:532.350000px;}
.yc7{bottom:539.850000px;}
.y1d{bottom:541.350000px;}
.y97{bottom:542.250000px;}
.y64{bottom:549.450000px;}
.yc6{bottom:557.250000px;}
.y1c{bottom:558.750000px;}
.y63{bottom:566.850000px;}
.yc5{bottom:574.350000px;}
.y1b{bottom:575.850000px;}
.y96{bottom:577.050000px;}
.y62{bottom:583.950000px;}
.yc4{bottom:591.750000px;}
.y1a{bottom:593.250000px;}
.y95{bottom:594.750000px;}
.y61{bottom:601.350000px;}
.yc3{bottom:608.850000px;}
.y19{bottom:610.350000px;}
.y94{bottom:623.550000px;}
.yc2{bottom:626.250000px;}
.y18{bottom:627.750000px;}
.y60{bottom:630.150000px;}
.y93{bottom:641.250000px;}
.yc1{bottom:643.350000px;}
.y17{bottom:644.850000px;}
.y5f{bottom:647.850000px;}
.y92{bottom:658.350000px;}
.yc0{bottom:660.750000px;}
.y16{bottom:662.550000px;}
.y5e{bottom:664.950000px;}
.y91{bottom:675.750000px;}
.ybf{bottom:677.850000px;}
.y15{bottom:682.095000px;}
.y5d{bottom:682.380000px;}
.y90{bottom:692.880000px;}
.ybe{bottom:695.295000px;}
.y5c{bottom:699.495000px;}
.ybd{bottom:712.395000px;}
.y5b{bottom:715.995000px;}
.y8f{bottom:721.980000px;}
.ybc{bottom:729.780000px;}
.y5a{bottom:730.695000px;}
.y37{bottom:736.695000px;}
.y8e{bottom:739.395000px;}
.ybb{bottom:746.880000px;}
.y59{bottom:747.795000px;}
.y8d{bottom:756.780000px;}
.yba{bottom:764.595000px;}
.y58{bottom:765.195000px;}
.y57{bottom:782.295000px;}
.y8c{bottom:785.580000px;}
.y56{bottom:798.795000px;}
.yb9{bottom:799.695000px;}
.y8b{bottom:803.295000px;}
.y55{bottom:813.495000px;}
.yb8{bottom:817.080000px;}
.y8a{bottom:820.395000px;}
.y54{bottom:830.580000px;}
.yb7{bottom:846.195000px;}
.y53{bottom:847.995000px;}
.y89{bottom:849.525000px;}
.yb6{bottom:863.625000px;}
.y52{bottom:865.125000px;}
.y88{bottom:866.925000px;}
.y51{bottom:882.525000px;}
.y87{bottom:884.325000px;}
.yb5{bottom:892.725000px;}
.y50{bottom:899.625000px;}
.y86{bottom:901.425000px;}
.yb4{bottom:910.125000px;}
.y4f{bottom:917.025000px;}
.y85{bottom:918.825000px;}
.yb3{bottom:927.525000px;}
.y83{bottom:933.225000px;}
.y4e{bottom:934.125000px;}
.y14{bottom:936.525000px;}
.yb2{bottom:944.625000px;}
.y4d{bottom:951.525000px;}
.y13{bottom:958.125000px;}
.yb1{bottom:962.025000px;}
.y4c{bottom:968.625000px;}
.y12{bottom:975.525000px;}
.y81{bottom:985.725000px;}
.y4b{bottom:986.025000px;}
.yb0{bottom:990.825000px;}
.y11{bottom:995.925000px;}
.y4a{bottom:1003.125000px;}
.yaf{bottom:1008.525000px;}
.y10{bottom:1016.670000px;}
.ye0{bottom:1017.570000px;}
.y49{bottom:1020.570000px;}
.y80{bottom:1021.170000px;}
.yae{bottom:1025.670000px;}
.y48{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.yad{bottom:1054.755000px;}
.y47{bottom:1055.070000px;}
.y7c{bottom:1056.255000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y46{bottom:1072.170000px;}
.ya{bottom:1083.570000px;}
.y45{bottom:1089.570000px;}
.y7a{bottom:1091.670000px;}
.y9{bottom:1097.955000px;}
.y44{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y79{bottom:1120.755000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y78{bottom:1139.670000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h15{height:17.100000px;}
.ha{height:21.000000px;}
.hd{height:33.515625px;}
.h7{height:33.867188px;}
.h17{height:34.485000px;}
.h16{height:34.500000px;}
.h18{height:34.537500px;}
.h11{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hc{height:38.100586px;}
.hb{height:41.894531px;}
.h4{height:42.333984px;}
.h1a{height:43.681641px;}
.h12{height:44.507812px;}
.h14{height:46.567383px;}
.h10{height:49.453125px;}
.h13{height:50.273438px;}
.h6{height:50.800781px;}
.h19{height:51.900000px;}
.hf{height:51.996094px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.he{height:158.730000px;}
.h0{height:1263.000000px;}
.w8{width:30.600000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w9{width:127.837500px;}
.w6{width:253.275000px;}
.w5{width:483.450000px;}
.wa{width:578.595000px;}
.w7{width:730.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.800000px;}
.x2{left:10.799998px;}
.x15{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.xb{left:78.337500px;}
.x14{left:79.537500px;}
.x1{left:81.037487px;}
.xf{left:98.137487px;}
.x13{left:108.037487px;}
.x18{left:112.837500px;}
.xe{left:116.745000px;}
.x12{left:141.337487px;}
.x9{left:153.629987px;}
.xc{left:241.567500px;}
.x10{left:352.019987px;}
.x6{left:405.119987px;}
.x11{left:446.549987px;}
.xd{left:561.780000px;}
.x16{left:588.494987px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x5{left:698.624987px;}
.xa{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.069333pt;}
.ls4{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.341333pt;}
.lsb{letter-spacing:9.066667pt;}
.lsd{letter-spacing:13.973333pt;}
.lsc{letter-spacing:40.640000pt;}
.ws5{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws0{word-spacing:-13.514667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws6{word-spacing:-13.120000pt;}
.ws4{word-spacing:-11.466667pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-1.189333pt;}
._0{width:1.029333pt;}
._9{width:1.925333pt;}
._6{width:2.944000pt;}
._c{width:4.378667pt;}
._b{width:5.760000pt;}
._1a{width:6.773333pt;}
._d{width:7.733333pt;}
._e{width:8.816000pt;}
._8{width:10.341333pt;}
._7{width:11.360000pt;}
._f{width:12.442667pt;}
._1d{width:13.488000pt;}
._a{width:14.453333pt;}
._12{width:15.946667pt;}
._11{width:16.901333pt;}
._10{width:17.866667pt;}
._13{width:18.986667pt;}
._1b{width:20.000000pt;}
._1c{width:21.386667pt;}
._1f{width:22.400000pt;}
._20{width:23.360000pt;}
._15{width:24.266667pt;}
._14{width:26.026667pt;}
._19{width:27.040000pt;}
._17{width:28.000000pt;}
._18{width:28.901333pt;}
._16{width:30.021333pt;}
._1e{width:167.573333pt;}
._4{width:298.826667pt;}
._1{width:497.733333pt;}
._2{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.920000pt;}
.y40{bottom:2.933333pt;}
.y82{bottom:3.200000pt;}
.y7f{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y7d{bottom:10.666667pt;}
.y5{bottom:10.966667pt;}
.y7e{bottom:18.400000pt;}
.y3f{bottom:18.666667pt;}
.y84{bottom:33.866667pt;}
.y3e{bottom:36.000000pt;}
.y4{bottom:41.600000pt;}
.y3d{bottom:49.066667pt;}
.y1{bottom:50.700000pt;}
.y3c{bottom:64.266667pt;}
.y42{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:79.720000pt;}
.y3a{bottom:94.920000pt;}
.y36{bottom:104.033333pt;}
.y39{bottom:110.426667pt;}
.ydf{bottom:111.766667pt;}
.y35{bottom:119.233333pt;}
.yac{bottom:119.500000pt;}
.y38{bottom:126.160000pt;}
.yde{bottom:127.233333pt;}
.y77{bottom:131.766667pt;}
.y34{bottom:134.693333pt;}
.yab{bottom:134.960000pt;}
.ydd{bottom:142.440000pt;}
.y33{bottom:149.893333pt;}
.yaa{bottom:150.426667pt;}
.y76{bottom:156.826667pt;}
.ydc{bottom:157.933333pt;}
.y32{bottom:165.400000pt;}
.ya9{bottom:165.666667pt;}
.ydb{bottom:173.133333pt;}
.y31{bottom:180.600000pt;}
.y75{bottom:181.933333pt;}
.yda{bottom:188.600000pt;}
.ya8{bottom:191.533333pt;}
.y30{bottom:196.333333pt;}
.yd9{bottom:203.800000pt;}
.y74{bottom:207.000000pt;}
.y2f{bottom:213.666667pt;}
.yd8{bottom:219.266667pt;}
.ya7{bottom:222.466667pt;}
.y73{bottom:225.133333pt;}
.y2e{bottom:226.733333pt;}
.yd7{bottom:234.466667pt;}
.y72{bottom:240.333333pt;}
.y2d{bottom:241.933333pt;}
.ya6{bottom:248.066667pt;}
.yd6{bottom:249.933333pt;}
.y71{bottom:255.800000pt;}
.y2c{bottom:257.400000pt;}
.ya5{bottom:263.800000pt;}
.yd5{bottom:265.133333pt;}
.y70{bottom:271.000000pt;}
.y2b{bottom:272.066667pt;}
.ya4{bottom:279.000000pt;}
.yd4{bottom:280.600000pt;}
.y2a{bottom:284.866667pt;}
.y6f{bottom:286.466667pt;}
.ya3{bottom:294.466667pt;}
.yd3{bottom:295.800000pt;}
.y29{bottom:300.333333pt;}
.ya2{bottom:309.706667pt;}
.yd2{bottom:311.293333pt;}
.y6e{bottom:312.093333pt;}
.y28{bottom:315.573333pt;}
.ya1{bottom:325.173333pt;}
.yd1{bottom:326.506667pt;}
.y6d{bottom:327.840000pt;}
.y27{bottom:331.040000pt;}
.ya0{bottom:340.893333pt;}
.yd0{bottom:341.960000pt;}
.y26{bottom:346.240000pt;}
.y6c{bottom:349.440000pt;}
.ycf{bottom:357.173333pt;}
.y9f{bottom:358.773333pt;}
.y25{bottom:361.960000pt;}
.y6b{bottom:365.173333pt;}
.yce{bottom:372.626667pt;}
.y9e{bottom:374.226667pt;}
.y24{bottom:379.293333pt;}
.y6a{bottom:382.773333pt;}
.ycd{bottom:387.840000pt;}
.y9d{bottom:389.440000pt;}
.y23{bottom:392.373333pt;}
.y69{bottom:400.893333pt;}
.ycc{bottom:403.293333pt;}
.y9c{bottom:404.893333pt;}
.y22{bottom:407.560000pt;}
.y68{bottom:416.373333pt;}
.ycb{bottom:418.506667pt;}
.y9b{bottom:420.106667pt;}
.y21{bottom:423.040000pt;}
.y67{bottom:431.840000pt;}
.yca{bottom:433.960000pt;}
.y9a{bottom:435.560000pt;}
.y20{bottom:438.226667pt;}
.yc9{bottom:449.173333pt;}
.y99{bottom:450.773333pt;}
.y1f{bottom:452.893333pt;}
.y66{bottom:457.466667pt;}
.yc8{bottom:464.666667pt;}
.y1e{bottom:466.000000pt;}
.y98{bottom:466.266667pt;}
.y65{bottom:473.200000pt;}
.yc7{bottom:479.866667pt;}
.y1d{bottom:481.200000pt;}
.y97{bottom:482.000000pt;}
.y64{bottom:488.400000pt;}
.yc6{bottom:495.333333pt;}
.y1c{bottom:496.666667pt;}
.y63{bottom:503.866667pt;}
.yc5{bottom:510.533333pt;}
.y1b{bottom:511.866667pt;}
.y96{bottom:512.933333pt;}
.y62{bottom:519.066667pt;}
.yc4{bottom:526.000000pt;}
.y1a{bottom:527.333333pt;}
.y95{bottom:528.666667pt;}
.y61{bottom:534.533333pt;}
.yc3{bottom:541.200000pt;}
.y19{bottom:542.533333pt;}
.y94{bottom:554.266667pt;}
.yc2{bottom:556.666667pt;}
.y18{bottom:558.000000pt;}
.y60{bottom:560.133333pt;}
.y93{bottom:570.000000pt;}
.yc1{bottom:571.866667pt;}
.y17{bottom:573.200000pt;}
.y5f{bottom:575.866667pt;}
.y92{bottom:585.200000pt;}
.yc0{bottom:587.333333pt;}
.y16{bottom:588.933333pt;}
.y5e{bottom:591.066667pt;}
.y91{bottom:600.666667pt;}
.ybf{bottom:602.533333pt;}
.y15{bottom:606.306667pt;}
.y5d{bottom:606.560000pt;}
.y90{bottom:615.893333pt;}
.ybe{bottom:618.040000pt;}
.y5c{bottom:621.773333pt;}
.ybd{bottom:633.240000pt;}
.y5b{bottom:636.440000pt;}
.y8f{bottom:641.760000pt;}
.ybc{bottom:648.693333pt;}
.y5a{bottom:649.506667pt;}
.y37{bottom:654.840000pt;}
.y8e{bottom:657.240000pt;}
.ybb{bottom:663.893333pt;}
.y59{bottom:664.706667pt;}
.y8d{bottom:672.693333pt;}
.yba{bottom:679.640000pt;}
.y58{bottom:680.173333pt;}
.y57{bottom:695.373333pt;}
.y8c{bottom:698.293333pt;}
.y56{bottom:710.040000pt;}
.yb9{bottom:710.840000pt;}
.y8b{bottom:714.040000pt;}
.y55{bottom:723.106667pt;}
.yb8{bottom:726.293333pt;}
.y8a{bottom:729.240000pt;}
.y54{bottom:738.293333pt;}
.yb7{bottom:752.173333pt;}
.y53{bottom:753.773333pt;}
.y89{bottom:755.133333pt;}
.yb6{bottom:767.666667pt;}
.y52{bottom:769.000000pt;}
.y88{bottom:770.600000pt;}
.y51{bottom:784.466667pt;}
.y87{bottom:786.066667pt;}
.yb5{bottom:793.533333pt;}
.y50{bottom:799.666667pt;}
.y86{bottom:801.266667pt;}
.yb4{bottom:809.000000pt;}
.y4f{bottom:815.133333pt;}
.y85{bottom:816.733333pt;}
.yb3{bottom:824.466667pt;}
.y83{bottom:829.533333pt;}
.y4e{bottom:830.333333pt;}
.y14{bottom:832.466667pt;}
.yb2{bottom:839.666667pt;}
.y4d{bottom:845.800000pt;}
.y13{bottom:851.666667pt;}
.yb1{bottom:855.133333pt;}
.y4c{bottom:861.000000pt;}
.y12{bottom:867.133333pt;}
.y81{bottom:876.200000pt;}
.y4b{bottom:876.466667pt;}
.yb0{bottom:880.733333pt;}
.y11{bottom:885.266667pt;}
.y4a{bottom:891.666667pt;}
.yaf{bottom:896.466667pt;}
.y10{bottom:903.706667pt;}
.ye0{bottom:904.506667pt;}
.y49{bottom:907.173333pt;}
.y80{bottom:907.706667pt;}
.yae{bottom:911.706667pt;}
.y48{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.yad{bottom:937.560000pt;}
.y47{bottom:937.840000pt;}
.y7c{bottom:938.893333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y46{bottom:953.040000pt;}
.ya{bottom:963.173333pt;}
.y45{bottom:968.506667pt;}
.y7a{bottom:970.373333pt;}
.y9{bottom:975.960000pt;}
.y44{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y79{bottom:996.226667pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y78{bottom:1013.040000pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h15{height:15.200000pt;}
.ha{height:18.666667pt;}
.hd{height:29.791667pt;}
.h7{height:30.104167pt;}
.h17{height:30.653333pt;}
.h16{height:30.666667pt;}
.h18{height:30.700000pt;}
.h11{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hc{height:33.867188pt;}
.hb{height:37.239583pt;}
.h4{height:37.630208pt;}
.h1a{height:38.828125pt;}
.h12{height:39.562500pt;}
.h14{height:41.393229pt;}
.h10{height:43.958333pt;}
.h13{height:44.687500pt;}
.h6{height:45.156250pt;}
.h19{height:46.133333pt;}
.hf{height:46.218750pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.he{height:141.093333pt;}
.h0{height:1122.666667pt;}
.w8{width:27.200000pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w9{width:113.633333pt;}
.w6{width:225.133333pt;}
.w5{width:429.733333pt;}
.wa{width:514.306667pt;}
.w7{width:649.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.933333pt;}
.x2{left:9.599999pt;}
.x15{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.xb{left:69.633333pt;}
.x14{left:70.700000pt;}
.x1{left:72.033322pt;}
.xf{left:87.233322pt;}
.x13{left:96.033322pt;}
.x18{left:100.300000pt;}
.xe{left:103.773333pt;}
.x12{left:125.633322pt;}
.x9{left:136.559988pt;}
.xc{left:214.726667pt;}
.x10{left:312.906655pt;}
.x6{left:360.106655pt;}
.x11{left:396.933322pt;}
.xd{left:499.360000pt;}
.x16{left:523.106655pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x5{left:620.999988pt;}
.xa{left:722.106655pt;}
}




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