
    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_835febf2da23c71bf602dee4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.246000;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_48f8cbdfb43c6a69d14eec7f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_58d4f52f8f94ee94c1f9b054.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_a2b63547bf890c778b701bd2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.378906;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_5a3a11b4f0b1c52c147ee4e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a34978f467432c8859a3aa16.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.250000;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_89a06f716d03faa2c4964978.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.250000;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_da156327cbeaa70bba10c635.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_d81c8297bf4dc906d29282cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_69b5f537b1c449cc9aa293e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948242;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);}
.v1{vertical-align:-127.260000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:31.680000px;}
.v3{vertical-align:114.900000px;}
.ls14{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.157800px;}
.ls9{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.021300px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018720px;}
.lse{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.097800px;}
.ls13{letter-spacing:0.208200px;}
.lsc{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.341400px;}
.ls6{letter-spacing:34.905024px;}
.ls5{letter-spacing:34.992000px;}
.ls8{letter-spacing:42.105024px;}
.ls7{letter-spacing:42.192000px;}
.ls1{letter-spacing:71.077248px;}
.ls2{letter-spacing:71.205120px;}
.ls15{letter-spacing:96.768000px;}
.ls10{letter-spacing:98.400960px;}
.lsa{letter-spacing:98.879040px;}
.ls12{letter-spacing:124.327920px;}
.lsf{letter-spacing:126.180000px;}
.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;}
}
.ws1d{word-spacing:-95.760000px;}
.ws1{word-spacing:-82.440000px;}
.ws8{word-spacing:-78.462720px;}
.ws4{word-spacing:-54.938016px;}
.ws6{word-spacing:-38.430720px;}
.wsc{word-spacing:-31.885920px;}
.ws3{word-spacing:-30.064032px;}
.wsf{word-spacing:-30.024000px;}
.wsd{word-spacing:-27.461952px;}
.ws5{word-spacing:-26.640012px;}
.ws2{word-spacing:-26.621280px;}
.wsb{word-spacing:-23.418720px;}
.wsa{word-spacing:-20.016000px;}
.ws9{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.041840px;}
.ws19{word-spacing:-0.936720px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.096960px;}
.ws12{word-spacing:0.290160px;}
.wse{word-spacing:0.506640px;}
.ws11{word-spacing:0.619920px;}
.ws13{word-spacing:0.682560px;}
.ws1a{word-spacing:0.701280px;}
.ws10{word-spacing:0.757440px;}
.ws14{word-spacing:0.946800px;}
.ws18{word-spacing:28.173240px;}
.ws16{word-spacing:28.762560px;}
.ws15{word-spacing:29.090160px;}
.ws17{word-spacing:29.465040px;}
.ws7{word-spacing:768.619680px;}
._4{margin-left:-2.772000px;}
._1{margin-left:-1.296000px;}
._0{width:1.080000px;}
._2{width:2.484000px;}
._b{width:3.741744px;}
._5{width:22.385280px;}
._a{width:27.669024px;}
._3{width:28.724256px;}
._6{width:98.879040px;}
._8{width:126.180000px;}
._9{width:590.460000px;}
._7{width:2790.825600px;}
.fc5{color:rgb(0,151,167);}
.fc4{color:transparent;}
.fc3{color:rgb(152,0,0);}
.fc6{color:rgb(31,73,125);}
.fc1{color:rgb(0,112,192);}
.fc8{color:rgb(127,127,127);}
.fc7{color:rgb(255,255,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:54.000000px;}
.fse{font-size:72.000000px;}
.fsf{font-size:72.144000px;}
.fsd{font-size:84.240000px;}
.fs10{font-size:84.384000px;}
.fs14{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:95.904000px;}
.fs13{font-size:98.784000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs11{font-size:131.760000px;}
.fs12{font-size:131.904000px;}
.fsa{font-size:138.240000px;}
.fs9{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs15{font-size:156.240000px;}
.fs16{font-size:239.760000px;}
.fs7{font-size:239.904000px;}
.fsb{font-size:282.240000px;}
.fs0{font-size:360.000000px;}
.fs1{font-size:360.144000px;}
.fs17{font-size:480.384000px;}
.y22{bottom:-3.780000px;}
.y0{bottom:0.000000px;}
.y23{bottom:7.956000px;}
.y79{bottom:33.804000px;}
.y78{bottom:62.640000px;}
.y37{bottom:73.656000px;}
.y77{bottom:91.440000px;}
.y9d{bottom:93.348000px;}
.y36{bottom:98.496000px;}
.ya2{bottom:106.920000px;}
.y86{bottom:113.616000px;}
.y93{bottom:113.724000px;}
.y76{bottom:120.240000px;}
.y54{bottom:122.436000px;}
.y35{bottom:123.336000px;}
.y9c{bottom:125.748000px;}
.y7c{bottom:130.068000px;}
.y1a{bottom:133.236000px;}
.y92{bottom:135.324000px;}
.y66{bottom:136.548000px;}
.y14{bottom:138.600000px;}
.y4e{bottom:141.012000px;}
.y43{bottom:145.440000px;}
.y85{bottom:146.052000px;}
.y34{bottom:148.176000px;}
.y75{bottom:149.040000px;}
.y53{bottom:151.950000px;}
.y91{bottom:156.960000px;}
.y9b{bottom:158.145000px;}
.y1c{bottom:161.175000px;}
.y7b{bottom:162.465000px;}
.y65{bottom:165.345000px;}
.ya0{bottom:167.295000px;}
.y13{bottom:167.400000px;}
.y42{bottom:170.640000px;}
.y33{bottom:173.010000px;}
.y19{bottom:176.475000px;}
.y74{bottom:177.840000px;}
.y84{bottom:178.455000px;}
.y90{bottom:178.560000px;}
.y4d{bottom:180.645000px;}
.y52{bottom:183.630000px;}
.y9a{bottom:190.545000px;}
.y64{bottom:194.145000px;}
.y41{bottom:195.840000px;}
.y12{bottom:196.230000px;}
.y32{bottom:197.850000px;}
.y8f{bottom:201.420000px;}
.y73{bottom:206.670000px;}
.y1d{bottom:208.800000px;}
.y83{bottom:210.855000px;}
.y4c{bottom:220.245000px;}
.y40{bottom:221.070000px;}
.y31{bottom:222.735000px;}
.y63{bottom:222.945000px;}
.y99{bottom:222.990000px;}
.y11{bottom:225.030000px;}
.y72{bottom:235.470000px;}
.y9f{bottom:239.325000px;}
.y51{bottom:241.275000px;}
.y82{bottom:243.255000px;}
.y3f{bottom:246.270000px;}
.y30{bottom:247.575000px;}
.y8e{bottom:250.560000px;}
.y62{bottom:251.790000px;}
.y6c{bottom:253.800000px;}
.y10{bottom:253.830000px;}
.y98{bottom:255.390000px;}
.y3{bottom:257.040000px;}
.y71{bottom:264.270000px;}
.y21{bottom:266.610000px;}
.y50{bottom:270.075000px;}
.y8d{bottom:272.160000px;}
.y2f{bottom:272.415000px;}
.y81{bottom:275.685000px;}
.y61{bottom:280.590000px;}
.yf{bottom:283.350000px;}
.y16{bottom:284.970000px;}
.y6b{bottom:286.230000px;}
.y97{bottom:287.790000px;}
.y8c{bottom:293.790000px;}
.y3e{bottom:296.670000px;}
.y2e{bottom:297.255000px;}
.y47{bottom:303.690000px;}
.y80{bottom:308.085000px;}
.y5a{bottom:308.625000px;}
.y60{bottom:309.390000px;}
.y9e{bottom:311.325000px;}
.y8b{bottom:316.650000px;}
.y6a{bottom:318.630000px;}
.y96{bottom:320.190000px;}
.y3d{bottom:321.870000px;}
.y2d{bottom:322.095000px;}
.y4b{bottom:322.635000px;}
.y20{bottom:323.025000px;}
.y4f{bottom:327.885000px;}
.y9{bottom:335.010000px;}
.y15{bottom:335.190000px;}
.y46{bottom:336.090000px;}
.y5f{bottom:338.190000px;}
.y7f{bottom:340.485000px;}
.y59{bottom:341.025000px;}
.y2c{bottom:346.965000px;}
.y3c{bottom:347.115000px;}
.ye{bottom:348.195000px;}
.y70{bottom:350.715000px;}
.y69{bottom:351.030000px;}
.y4a{bottom:362.625000px;}
.y2{bottom:365.040000px;}
.y8a{bottom:365.790000px;}
.y45{bottom:368.490000px;}
.y2b{bottom:371.805000px;}
.y3b{bottom:372.315000px;}
.y7e{bottom:372.885000px;}
.y58{bottom:373.470000px;}
.y6f{bottom:379.515000px;}
.y68{bottom:383.430000px;}
.y95{bottom:385.020000px;}
.y1e{bottom:386.670000px;}
.y55{bottom:386.715000px;}
.y89{bottom:387.390000px;}
.y5d{bottom:390.420000px;}
.y5e{bottom:393.660000px;}
.y8{bottom:394.095000px;}
.y5c{bottom:394.125000px;}
.y2a{bottom:396.645000px;}
.y3a{bottom:397.515000px;}
.y44{bottom:400.890000px;}
.y49{bottom:402.225000px;}
.y7d{bottom:405.330000px;}
.y57{bottom:405.870000px;}
.y6e{bottom:408.315000px;}
.y88{bottom:408.990000px;}
.yd{bottom:412.275000px;}
.y67{bottom:415.875000px;}
.y94{bottom:417.420000px;}
.y29{bottom:421.485000px;}
.y39{bottom:422.715000px;}
.y7{bottom:426.495000px;}
.y5b{bottom:426.525000px;}
.y87{bottom:431.895000px;}
.y1f{bottom:436.575000px;}
.y6d{bottom:437.115000px;}
.y56{bottom:438.270000px;}
.yc{bottom:441.075000px;}
.y7a{bottom:446.145000px;}
.y28{bottom:446.325000px;}
.y38{bottom:447.915000px;}
.y6{bottom:458.925000px;}
.ya1{bottom:467.175000px;}
.yb{bottom:469.905000px;}
.y27{bottom:471.165000px;}
.y1{bottom:473.070000px;}
.y5{bottom:491.325000px;}
.y18{bottom:492.810000px;}
.y1b{bottom:492.990000px;}
.y26{bottom:496.050000px;}
.ya{bottom:499.425000px;}
.y48{bottom:502.665000px;}
.y25{bottom:520.890000px;}
.y4{bottom:523.725000px;}
.y17{bottom:530.250000px;}
.y24{bottom:562.470000px;}
.hf{height:56.320312px;}
.h13{height:61.575820px;}
.h15{height:61.681078px;}
.h1c{height:70.651055px;}
.h11{height:75.093750px;}
.h12{height:75.243937px;}
.h10{height:87.859687px;}
.h14{height:88.009875px;}
.h7{height:99.874688px;}
.ha{height:100.024875px;}
.h19{height:103.028625px;}
.h6{height:105.672656px;}
.h5{height:105.831562px;}
.h3{height:112.640625px;}
.h4{height:112.790813px;}
.h8{height:125.406562px;}
.h16{height:126.489600px;}
.h17{height:126.627840px;}
.h18{height:135.498240px;}
.hd{height:144.180000px;}
.hc{height:150.187500px;}
.hb{height:150.337688px;}
.h1a{height:162.953438px;}
.h1b{height:227.540625px;}
.h1d{height:253.186560px;}
.h9{height:253.338624px;}
.he{height:294.367500px;}
.h1{height:380.160000px;}
.h2{height:380.312064px;}
.h1e{height:507.285504px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x35{left:10.799984px;}
.x14{left:17.711984px;}
.x1d{left:34.235984px;}
.xb{left:41.795984px;}
.x4{left:43.631984px;}
.x24{left:47.555984px;}
.x3a{left:51.119984px;}
.x5{left:52.991984px;}
.x19{left:58.355984px;}
.x29{left:74.195984px;}
.x3b{left:78.695984px;}
.x3c{left:92.195984px;}
.x1a{left:95.795984px;}
.x1e{left:101.411984px;}
.x2f{left:104.039984px;}
.x22{left:107.675984px;}
.x30{left:110.699984px;}
.x32{left:112.859984px;}
.x33{left:115.775984px;}
.x2e{left:118.619984px;}
.x31{left:119.879984px;}
.x11{left:123.443984px;}
.x3d{left:132.695984px;}
.x34{left:154.829984px;}
.x37{left:164.054984px;}
.x2a{left:188.069984px;}
.xe{left:217.799984px;}
.x25{left:219.494984px;}
.x26{left:221.504984px;}
.x20{left:223.994984px;}
.x13{left:233.609984px;}
.x21{left:283.574984px;}
.x23{left:330.914984px;}
.xf{left:349.664984px;}
.x3{left:389.234984px;}
.x12{left:464.009984px;}
.x2c{left:482.864984px;}
.x1c{left:502.454984px;}
.x2{left:504.434984px;}
.x38{left:513.794984px;}
.x2d{left:521.924984px;}
.x2b{left:543.524984px;}
.x39{left:561.344984px;}
.x15{left:570.809984px;}
.x6{left:582.509984px;}
.x10{left:583.949984px;}
.x16{left:593.669984px;}
.x7{left:597.449984px;}
.x17{left:613.109984px;}
.x9{left:626.504984px;}
.x40{left:631.979984px;}
.x18{left:634.529984px;}
.x8{left:636.509984px;}
.x1{left:656.924984px;}
.x28{left:688.784984px;}
.x27{left:696.524984px;}
.x3f{left:708.689984px;}
.xc{left:757.544984px;}
.x36{left:758.729984px;}
.xa{left:802.949984px;}
.x3e{left:810.929984px;}
.xd{left:854.609984px;}
.x1b{left:876.929984px;}
.x1f{left:878.969984px;}
.x41{left:888.944984px;}
@media print{
.v1{vertical-align:-113.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.160000pt;}
.v3{vertical-align:102.133333pt;}
.ls14{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.140267pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.018933pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.086933pt;}
.ls13{letter-spacing:0.185067pt;}
.lsc{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.303467pt;}
.ls6{letter-spacing:31.026688pt;}
.ls5{letter-spacing:31.104000pt;}
.ls8{letter-spacing:37.426688pt;}
.ls7{letter-spacing:37.504000pt;}
.ls1{letter-spacing:63.179776pt;}
.ls2{letter-spacing:63.293440pt;}
.ls15{letter-spacing:86.016000pt;}
.ls10{letter-spacing:87.467520pt;}
.lsa{letter-spacing:87.892480pt;}
.ls12{letter-spacing:110.513707pt;}
.lsf{letter-spacing:112.160000pt;}
.ws1d{word-spacing:-85.120000pt;}
.ws1{word-spacing:-73.280000pt;}
.ws8{word-spacing:-69.744640pt;}
.ws4{word-spacing:-48.833792pt;}
.ws6{word-spacing:-34.160640pt;}
.wsc{word-spacing:-28.343040pt;}
.ws3{word-spacing:-26.723584pt;}
.wsf{word-spacing:-26.688000pt;}
.wsd{word-spacing:-24.410624pt;}
.ws5{word-spacing:-23.680011pt;}
.ws2{word-spacing:-23.663360pt;}
.wsb{word-spacing:-20.816640pt;}
.wsa{word-spacing:-17.792000pt;}
.ws9{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-0.926080pt;}
.ws19{word-spacing:-0.832640pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.086187pt;}
.ws12{word-spacing:0.257920pt;}
.wse{word-spacing:0.450347pt;}
.ws11{word-spacing:0.551040pt;}
.ws13{word-spacing:0.606720pt;}
.ws1a{word-spacing:0.623360pt;}
.ws10{word-spacing:0.673280pt;}
.ws14{word-spacing:0.841600pt;}
.ws18{word-spacing:25.042880pt;}
.ws16{word-spacing:25.566720pt;}
.ws15{word-spacing:25.857920pt;}
.ws17{word-spacing:26.191147pt;}
.ws7{word-spacing:683.217493pt;}
._4{margin-left:-2.464000pt;}
._1{margin-left:-1.152000pt;}
._0{width:0.960000pt;}
._2{width:2.208000pt;}
._b{width:3.325995pt;}
._5{width:19.898027pt;}
._a{width:24.594688pt;}
._3{width:25.532672pt;}
._6{width:87.892480pt;}
._8{width:112.160000pt;}
._9{width:524.853333pt;}
._7{width:2480.733867pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:64.000000pt;}
.fsf{font-size:64.128000pt;}
.fsd{font-size:74.880000pt;}
.fs10{font-size:75.008000pt;}
.fs14{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:85.248000pt;}
.fs13{font-size:87.808000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs11{font-size:117.120000pt;}
.fs12{font-size:117.248000pt;}
.fsa{font-size:122.880000pt;}
.fs9{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs15{font-size:138.880000pt;}
.fs16{font-size:213.120000pt;}
.fs7{font-size:213.248000pt;}
.fsb{font-size:250.880000pt;}
.fs0{font-size:320.000000pt;}
.fs1{font-size:320.128000pt;}
.fs17{font-size:427.008000pt;}
.y22{bottom:-3.360000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:7.072000pt;}
.y79{bottom:30.048000pt;}
.y78{bottom:55.680000pt;}
.y37{bottom:65.472000pt;}
.y77{bottom:81.280000pt;}
.y9d{bottom:82.976000pt;}
.y36{bottom:87.552000pt;}
.ya2{bottom:95.040000pt;}
.y86{bottom:100.992000pt;}
.y93{bottom:101.088000pt;}
.y76{bottom:106.880000pt;}
.y54{bottom:108.832000pt;}
.y35{bottom:109.632000pt;}
.y9c{bottom:111.776000pt;}
.y7c{bottom:115.616000pt;}
.y1a{bottom:118.432000pt;}
.y92{bottom:120.288000pt;}
.y66{bottom:121.376000pt;}
.y14{bottom:123.200000pt;}
.y4e{bottom:125.344000pt;}
.y43{bottom:129.280000pt;}
.y85{bottom:129.824000pt;}
.y34{bottom:131.712000pt;}
.y75{bottom:132.480000pt;}
.y53{bottom:135.066667pt;}
.y91{bottom:139.520000pt;}
.y9b{bottom:140.573333pt;}
.y1c{bottom:143.266667pt;}
.y7b{bottom:144.413333pt;}
.y65{bottom:146.973333pt;}
.ya0{bottom:148.706667pt;}
.y13{bottom:148.800000pt;}
.y42{bottom:151.680000pt;}
.y33{bottom:153.786667pt;}
.y19{bottom:156.866667pt;}
.y74{bottom:158.080000pt;}
.y84{bottom:158.626667pt;}
.y90{bottom:158.720000pt;}
.y4d{bottom:160.573333pt;}
.y52{bottom:163.226667pt;}
.y9a{bottom:169.373333pt;}
.y64{bottom:172.573333pt;}
.y41{bottom:174.080000pt;}
.y12{bottom:174.426667pt;}
.y32{bottom:175.866667pt;}
.y8f{bottom:179.040000pt;}
.y73{bottom:183.706667pt;}
.y1d{bottom:185.600000pt;}
.y83{bottom:187.426667pt;}
.y4c{bottom:195.773333pt;}
.y40{bottom:196.506667pt;}
.y31{bottom:197.986667pt;}
.y63{bottom:198.173333pt;}
.y99{bottom:198.213333pt;}
.y11{bottom:200.026667pt;}
.y72{bottom:209.306667pt;}
.y9f{bottom:212.733333pt;}
.y51{bottom:214.466667pt;}
.y82{bottom:216.226667pt;}
.y3f{bottom:218.906667pt;}
.y30{bottom:220.066667pt;}
.y8e{bottom:222.720000pt;}
.y62{bottom:223.813333pt;}
.y6c{bottom:225.600000pt;}
.y10{bottom:225.626667pt;}
.y98{bottom:227.013333pt;}
.y3{bottom:228.480000pt;}
.y71{bottom:234.906667pt;}
.y21{bottom:236.986667pt;}
.y50{bottom:240.066667pt;}
.y8d{bottom:241.920000pt;}
.y2f{bottom:242.146667pt;}
.y81{bottom:245.053333pt;}
.y61{bottom:249.413333pt;}
.yf{bottom:251.866667pt;}
.y16{bottom:253.306667pt;}
.y6b{bottom:254.426667pt;}
.y97{bottom:255.813333pt;}
.y8c{bottom:261.146667pt;}
.y3e{bottom:263.706667pt;}
.y2e{bottom:264.226667pt;}
.y47{bottom:269.946667pt;}
.y80{bottom:273.853333pt;}
.y5a{bottom:274.333333pt;}
.y60{bottom:275.013333pt;}
.y9e{bottom:276.733333pt;}
.y8b{bottom:281.466667pt;}
.y6a{bottom:283.226667pt;}
.y96{bottom:284.613333pt;}
.y3d{bottom:286.106667pt;}
.y2d{bottom:286.306667pt;}
.y4b{bottom:286.786667pt;}
.y20{bottom:287.133333pt;}
.y4f{bottom:291.453333pt;}
.y9{bottom:297.786667pt;}
.y15{bottom:297.946667pt;}
.y46{bottom:298.746667pt;}
.y5f{bottom:300.613333pt;}
.y7f{bottom:302.653333pt;}
.y59{bottom:303.133333pt;}
.y2c{bottom:308.413333pt;}
.y3c{bottom:308.546667pt;}
.ye{bottom:309.506667pt;}
.y70{bottom:311.746667pt;}
.y69{bottom:312.026667pt;}
.y4a{bottom:322.333333pt;}
.y2{bottom:324.480000pt;}
.y8a{bottom:325.146667pt;}
.y45{bottom:327.546667pt;}
.y2b{bottom:330.493333pt;}
.y3b{bottom:330.946667pt;}
.y7e{bottom:331.453333pt;}
.y58{bottom:331.973333pt;}
.y6f{bottom:337.346667pt;}
.y68{bottom:340.826667pt;}
.y95{bottom:342.240000pt;}
.y1e{bottom:343.706667pt;}
.y55{bottom:343.746667pt;}
.y89{bottom:344.346667pt;}
.y5d{bottom:347.040000pt;}
.y5e{bottom:349.920000pt;}
.y8{bottom:350.306667pt;}
.y5c{bottom:350.333333pt;}
.y2a{bottom:352.573333pt;}
.y3a{bottom:353.346667pt;}
.y44{bottom:356.346667pt;}
.y49{bottom:357.533333pt;}
.y7d{bottom:360.293333pt;}
.y57{bottom:360.773333pt;}
.y6e{bottom:362.946667pt;}
.y88{bottom:363.546667pt;}
.yd{bottom:366.466667pt;}
.y67{bottom:369.666667pt;}
.y94{bottom:371.040000pt;}
.y29{bottom:374.653333pt;}
.y39{bottom:375.746667pt;}
.y7{bottom:379.106667pt;}
.y5b{bottom:379.133333pt;}
.y87{bottom:383.906667pt;}
.y1f{bottom:388.066667pt;}
.y6d{bottom:388.546667pt;}
.y56{bottom:389.573333pt;}
.yc{bottom:392.066667pt;}
.y7a{bottom:396.573333pt;}
.y28{bottom:396.733333pt;}
.y38{bottom:398.146667pt;}
.y6{bottom:407.933333pt;}
.ya1{bottom:415.266667pt;}
.yb{bottom:417.693333pt;}
.y27{bottom:418.813333pt;}
.y1{bottom:420.506667pt;}
.y5{bottom:436.733333pt;}
.y18{bottom:438.053333pt;}
.y1b{bottom:438.213333pt;}
.y26{bottom:440.933333pt;}
.ya{bottom:443.933333pt;}
.y48{bottom:446.813333pt;}
.y25{bottom:463.013333pt;}
.y4{bottom:465.533333pt;}
.y17{bottom:471.333333pt;}
.y24{bottom:499.973333pt;}
.hf{height:50.062500pt;}
.h13{height:54.734062pt;}
.h15{height:54.827625pt;}
.h1c{height:62.800938pt;}
.h11{height:66.750000pt;}
.h12{height:66.883500pt;}
.h10{height:78.097500pt;}
.h14{height:78.231000pt;}
.h7{height:88.777500pt;}
.ha{height:88.911000pt;}
.h19{height:91.581000pt;}
.h6{height:93.931250pt;}
.h5{height:94.072500pt;}
.h3{height:100.125000pt;}
.h4{height:100.258500pt;}
.h8{height:111.472500pt;}
.h16{height:112.435200pt;}
.h17{height:112.558080pt;}
.h18{height:120.442880pt;}
.hd{height:128.160000pt;}
.hc{height:133.500000pt;}
.hb{height:133.633500pt;}
.h1a{height:144.847500pt;}
.h1b{height:202.258333pt;}
.h1d{height:225.054720pt;}
.h9{height:225.189888pt;}
.he{height:261.660000pt;}
.h1{height:337.920000pt;}
.h2{height:338.055168pt;}
.h1e{height:450.920448pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x35{left:9.599986pt;}
.x14{left:15.743986pt;}
.x1d{left:30.431986pt;}
.xb{left:37.151986pt;}
.x4{left:38.783986pt;}
.x24{left:42.271986pt;}
.x3a{left:45.439986pt;}
.x5{left:47.103986pt;}
.x19{left:51.871986pt;}
.x29{left:65.951986pt;}
.x3b{left:69.951986pt;}
.x3c{left:81.951986pt;}
.x1a{left:85.151986pt;}
.x1e{left:90.143986pt;}
.x2f{left:92.479986pt;}
.x22{left:95.711986pt;}
.x30{left:98.399986pt;}
.x32{left:100.319986pt;}
.x33{left:102.911986pt;}
.x2e{left:105.439986pt;}
.x31{left:106.559986pt;}
.x11{left:109.727986pt;}
.x3d{left:117.951986pt;}
.x34{left:137.626652pt;}
.x37{left:145.826652pt;}
.x2a{left:167.173319pt;}
.xe{left:193.599986pt;}
.x25{left:195.106652pt;}
.x26{left:196.893319pt;}
.x20{left:199.106652pt;}
.x13{left:207.653319pt;}
.x21{left:252.066652pt;}
.x23{left:294.146652pt;}
.xf{left:310.813319pt;}
.x3{left:345.986652pt;}
.x12{left:412.453319pt;}
.x2c{left:429.213319pt;}
.x1c{left:446.626652pt;}
.x2{left:448.386652pt;}
.x38{left:456.706652pt;}
.x2d{left:463.933319pt;}
.x2b{left:483.133319pt;}
.x39{left:498.973319pt;}
.x15{left:507.386652pt;}
.x6{left:517.786652pt;}
.x10{left:519.066652pt;}
.x16{left:527.706652pt;}
.x7{left:531.066652pt;}
.x17{left:544.986652pt;}
.x9{left:556.893319pt;}
.x40{left:561.759986pt;}
.x18{left:564.026652pt;}
.x8{left:565.786652pt;}
.x1{left:583.933319pt;}
.x28{left:612.253319pt;}
.x27{left:619.133319pt;}
.x3f{left:629.946652pt;}
.xc{left:673.373319pt;}
.x36{left:674.426652pt;}
.xa{left:713.733319pt;}
.x3e{left:720.826652pt;}
.xd{left:759.653319pt;}
.x1b{left:779.493319pt;}
.x1f{left:781.306652pt;}
.x41{left:790.173319pt;}
}




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