
    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_946981e00aae56977a8551ce.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_6988552ef94c12213eec1517.woff')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_189b7ce4234b9c210ed5a6a0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_ef973645a47e5fd1de141e53.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_db39b3a7d550919578f7bdcb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.783691;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_fa8086cacd8b329eab664adc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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:-68.400000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls9{letter-spacing:-12.780000px;}
.ls6{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.234600px;}
.ls15{letter-spacing:-0.107400px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.008640px;}
.ls8{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.234600px;}
.lse{letter-spacing:0.243600px;}
.ls2{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.334800px;}
.ls13{letter-spacing:0.348600px;}
.ls3{letter-spacing:0.552000px;}
.ls11{letter-spacing:0.612000px;}
.ls14{letter-spacing:1.056000px;}
.lsd{letter-spacing:3.054240px;}
.lsc{letter-spacing:21.546720px;}
.ls1{letter-spacing:201.204000px;}
.ls0{letter-spacing:1317.360000px;}
.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;}
}
.ws2{word-spacing:-20.520000px;}
.ws4{word-spacing:-20.430000px;}
.ws5{word-spacing:-20.340000px;}
.ws3{word-spacing:-20.250000px;}
.ws1{word-spacing:-16.272000px;}
.wsf{word-spacing:-14.561760px;}
.wsb{word-spacing:-14.117760px;}
.wsd{word-spacing:-13.854360px;}
.wsc{word-spacing:-13.840560px;}
.wse{word-spacing:-13.749360px;}
.ws9{word-spacing:-13.740360px;}
.ws0{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.398360px;}
.wsa{word-spacing:-13.271160px;}
.ws8{word-spacing:-8.786880px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-12.001920px;}
._14{margin-left:-7.020000px;}
._d{margin-left:-3.420000px;}
._5{margin-left:-2.322000px;}
._4{margin-left:-1.008000px;}
._0{width:1.254960px;}
._9{width:2.345520px;}
._6{width:3.944160px;}
._12{width:5.079600px;}
._8{width:6.394320px;}
._7{width:7.410240px;}
._c{width:8.665200px;}
._e{width:9.681120px;}
._b{width:10.816560px;}
._f{width:12.077760px;}
._a{width:14.700960px;}
._10{width:16.194960px;}
._11{width:17.420880px;}
._15{width:18.764640px;}
._17{width:20.318400px;}
._16{width:24.083280px;}
._19{width:30.597120px;}
._18{width:31.613040px;}
._1a{width:32.856240px;}
._1{width:412.860000px;}
._2{width:732.540000px;}
._3{width:2829.660000px;}
.fc6{color:transparent;}
.fc4{color:rgb(140,114,40);}
.fc3{color:rgb(0,0,255);}
.fc8{color:rgb(38,38,38);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(63,63,63);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(17,85,204);}
.fc0{color:rgb(179,145,49);}
.fsa{font-size:38.880000px;}
.fs6{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.520000px;}
.y5{bottom:3.525000px;}
.y2{bottom:4.140000px;}
.yb0{bottom:4.170000px;}
.y4f{bottom:4.500000px;}
.y4d{bottom:7.560000px;}
.yaa{bottom:10.155000px;}
.y4c{bottom:28.260000px;}
.y1{bottom:36.180000px;}
.y109{bottom:36.900000px;}
.y4e{bottom:37.440000px;}
.y4b{bottom:46.620000px;}
.y48{bottom:53.820000px;}
.y3{bottom:55.080000px;}
.y51{bottom:55.440000px;}
.y108{bottom:74.520000px;}
.ya6{bottom:75.276000px;}
.yde{bottom:81.036000px;}
.yac{bottom:92.235000px;}
.ya5{bottom:93.636000px;}
.y83{bottom:93.816000px;}
.y106{bottom:101.016000px;}
.y44{bottom:101.376000px;}
.y47{bottom:105.120000px;}
.y65{bottom:109.476000px;}
.y69{bottom:110.310000px;}
.ydd{bottom:110.556000px;}
.ya4{bottom:111.996000px;}
.y82{bottom:113.796000px;}
.y105{bottom:120.276000px;}
.y43{bottom:122.436000px;}
.ya3{bottom:130.356000px;}
.y64{bottom:131.076000px;}
.y81{bottom:132.156000px;}
.ydc{bottom:137.016000px;}
.y104{bottom:140.076000px;}
.y42{bottom:143.316000px;}
.ya2{bottom:148.536000px;}
.y80{bottom:150.330000px;}
.y46{bottom:156.420000px;}
.y89{bottom:158.475000px;}
.ydb{bottom:159.330000px;}
.y103{bottom:159.510000px;}
.ya1{bottom:166.890000px;}
.y7f{bottom:168.690000px;}
.y41{bottom:176.970000px;}
.yda{bottom:177.510000px;}
.y102{bottom:177.690000px;}
.ya0{bottom:185.250000px;}
.y7e{bottom:187.050000px;}
.y107{bottom:192.090000px;}
.yd9{bottom:201.090000px;}
.y9f{bottom:203.430000px;}
.y7d{bottom:205.410000px;}
.y40{bottom:208.470000px;}
.y88{bottom:213.660000px;}
.y9e{bottom:221.790000px;}
.y7c{bottom:223.590000px;}
.yd8{bottom:227.550000px;}
.y3f{bottom:235.290000px;}
.y9d{bottom:240.150000px;}
.y7b{bottom:241.950000px;}
.y8e{bottom:242.670000px;}
.yd7{bottom:254.010000px;}
.y9c{bottom:258.510000px;}
.y7a{bottom:260.310000px;}
.y3e{bottom:262.830000px;}
.y8d{bottom:263.370000px;}
.y9b{bottom:276.690000px;}
.yab{bottom:277.920000px;}
.y79{bottom:278.490000px;}
.yd6{bottom:280.290000px;}
.y3d{bottom:283.890000px;}
.y8c{bottom:284.070000px;}
.y101{bottom:289.650000px;}
.y9a{bottom:295.050000px;}
.y78{bottom:296.850000px;}
.yaf{bottom:302.970000px;}
.y100{bottom:303.150000px;}
.y3c{bottom:304.950000px;}
.yd5{bottom:306.750000px;}
.y99{bottom:313.410000px;}
.y77{bottom:315.210000px;}
.yae{bottom:323.850000px;}
.yff{bottom:324.210000px;}
.y8b{bottom:325.830000px;}
.y3b{bottom:326.010000px;}
.yd4{bottom:330.375000px;}
.y98{bottom:331.635000px;}
.y76{bottom:333.615000px;}
.yad{bottom:344.595000px;}
.y8a{bottom:346.755000px;}
.y3a{bottom:347.115000px;}
.y97{bottom:349.995000px;}
.yd3{bottom:351.435000px;}
.y75{bottom:351.795000px;}
.yfe{bottom:353.415000px;}
.y39{bottom:368.175000px;}
.y96{bottom:368.355000px;}
.y74{bottom:370.155000px;}
.yd2{bottom:380.595000px;}
.yfd{bottom:382.575000px;}
.y95{bottom:386.715000px;}
.y73{bottom:388.515000px;}
.y38{bottom:389.235000px;}
.yd1{bottom:401.295000px;}
.y94{bottom:404.895000px;}
.y72{bottom:406.875000px;}
.y37{bottom:410.295000px;}
.yfc{bottom:411.915000px;}
.yd0{bottom:422.355000px;}
.y93{bottom:423.795000px;}
.y71{bottom:425.595000px;}
.y36{bottom:431.175000px;}
.yfb{bottom:441.075000px;}
.y92{bottom:442.335000px;}
.y70{bottom:444.135000px;}
.ycf{bottom:452.595000px;}
.y35{bottom:463.755000px;}
.y91{bottom:465.195000px;}
.ya7{bottom:465.480000px;}
.y6f{bottom:466.995000px;}
.y84{bottom:467.280000px;}
.yfa{bottom:470.235000px;}
.yce{bottom:474.555000px;}
.y34{bottom:490.755000px;}
.ycd{bottom:496.515000px;}
.yf9{bottom:499.575000px;}
.y33{bottom:518.115000px;}
.ycc{bottom:518.475000px;}
.yf8{bottom:528.735000px;}
.y32{bottom:539.175000px;}
.ycb{bottom:541.155000px;}
.yf7{bottom:558.075000px;}
.y31{bottom:560.235000px;}
.yca{bottom:561.135000px;}
.yf6{bottom:587.235000px;}
.yc9{bottom:588.675000px;}
.y30{bottom:592.635000px;}
.y26{bottom:594.255000px;}
.yc8{bottom:607.245000px;}
.y2f{bottom:613.725000px;}
.yf5{bottom:616.425000px;}
.y25{bottom:619.665000px;}
.yc7{bottom:629.565000px;}
.y2e{bottom:634.785000px;}
.y85{bottom:638.070000px;}
.y24{bottom:644.865000px;}
.yf4{bottom:645.765000px;}
.yc6{bottom:650.625000px;}
.y2d{bottom:655.845000px;}
.y23{bottom:670.245000px;}
.yc5{bottom:671.685000px;}
.y67{bottom:674.745000px;}
.yf3{bottom:674.925000px;}
.y2c{bottom:676.905000px;}
.yc4{bottom:692.745000px;}
.y22{bottom:695.445000px;}
.y2b{bottom:697.965000px;}
.y66{bottom:699.585000px;}
.yf2{bottom:704.085000px;}
.y2a{bottom:719.025000px;}
.y21{bottom:720.645000px;}
.yc3{bottom:722.625000px;}
.yf1{bottom:733.425000px;}
.y63{bottom:739.005000px;}
.y29{bottom:740.085000px;}
.yc2{bottom:743.685000px;}
.y20{bottom:746.025000px;}
.y28{bottom:761.145000px;}
.yf0{bottom:762.585000px;}
.y68{bottom:764.280000px;}
.yc1{bottom:764.745000px;}
.y62{bottom:766.545000px;}
.y1f{bottom:771.225000px;}
.yef{bottom:783.285000px;}
.yc0{bottom:785.805000px;}
.y6d{bottom:786.705000px;}
.y27{bottom:793.005000px;}
.y1e{bottom:796.425000px;}
.y61{bottom:796.785000px;}
.yee{bottom:804.345000px;}
.ybf{bottom:806.865000px;}
.y6c{bottom:807.405000px;}
.y1d{bottom:820.365000px;}
.y60{bottom:827.025000px;}
.ybe{bottom:827.925000px;}
.y6b{bottom:828.285000px;}
.yed{bottom:833.325000px;}
.y1c{bottom:835.305000px;}
.ybd{bottom:848.985000px;}
.y6a{bottom:849.165000px;}
.y1b{bottom:852.585000px;}
.yec{bottom:854.205000px;}
.y5f{bottom:857.445000px;}
.y4{bottom:862.740000px;}
.y1a{bottom:869.910000px;}
.yeb{bottom:875.130000px;}
.ybc{bottom:878.910000px;}
.y19{bottom:887.190000px;}
.y5e{bottom:887.730000px;}
.yea{bottom:895.830000px;}
.ybb{bottom:899.970000px;}
.y18{bottom:904.470000px;}
.ye9{bottom:916.710000px;}
.y5d{bottom:917.970000px;}
.yba{bottom:921.030000px;}
.y17{bottom:921.570000px;}
.y45{bottom:937.410000px;}
.ye8{bottom:937.770000px;}
.y16{bottom:938.850000px;}
.y5c{bottom:939.030000px;}
.yb9{bottom:942.090000px;}
.y15{bottom:956.130000px;}
.y5b{bottom:960.090000px;}
.ye7{bottom:966.750000px;}
.yb8{bottom:971.970000px;}
.y14{bottom:973.410000px;}
.y5a{bottom:981.150000px;}
.ye6{bottom:987.630000px;}
.y13{bottom:990.690000px;}
.yb7{bottom:993.030000px;}
.y12{bottom:1007.970000px;}
.ye5{bottom:1008.510000px;}
.y59{bottom:1011.390000px;}
.yb6{bottom:1014.090000px;}
.y11{bottom:1025.070000px;}
.y58{bottom:1032.450000px;}
.yb5{bottom:1035.150000px;}
.ye4{bottom:1037.670000px;}
.y10{bottom:1042.350000px;}
.y57{bottom:1053.510000px;}
.yb4{bottom:1056.210000px;}
.ye3{bottom:1058.550000px;}
.y56{bottom:1074.570000px;}
.yf{bottom:1076.910000px;}
.ya9{bottom:1078.890000px;}
.ye2{bottom:1079.430000px;}
.y87{bottom:1080.870000px;}
.yb3{bottom:1083.030000px;}
.ye{bottom:1094.190000px;}
.y55{bottom:1095.630000px;}
.ye1{bottom:1100.310000px;}
.yb2{bottom:1102.110000px;}
.ya8{bottom:1103.550000px;}
.y86{bottom:1105.350000px;}
.yd{bottom:1111.470000px;}
.y54{bottom:1116.690000px;}
.yc{bottom:1128.570000px;}
.ye0{bottom:1129.470000px;}
.y90{bottom:1136.880000px;}
.y6e{bottom:1138.680000px;}
.yb1{bottom:1140.480000px;}
.y53{bottom:1143.360000px;}
.yb{bottom:1145.880000px;}
.y8f{bottom:1157.400000px;}
.y52{bottom:1158.660000px;}
.ydf{bottom:1158.840000px;}
.ya{bottom:1163.160000px;}
.y9{bottom:1180.440000px;}
.y4a{bottom:1188.360000px;}
.y8{bottom:1197.720000px;}
.y7{bottom:1232.100000px;}
.y6{bottom:1249.380000px;}
.y50{bottom:1262.160000px;}
.h2{height:18.000000px;}
.he{height:18.180000px;}
.h1b{height:38.671172px;}
.hf{height:45.116367px;}
.h10{height:48.088125px;}
.h7{height:49.583118px;}
.h12{height:53.302500px;}
.h17{height:55.291992px;}
.h8{height:57.937500px;}
.h19{height:58.240898px;}
.h4{height:59.439023px;}
.h1a{height:59.551172px;}
.h3{height:61.189805px;}
.h6{height:61.423863px;}
.h1c{height:63.019687px;}
.hd{height:63.360000px;}
.h18{height:65.884219px;}
.h5{height:71.613281px;}
.h15{height:74.004654px;}
.h1e{height:74.477812px;}
.ha{height:83.787539px;}
.h9{height:92.153320px;}
.h1d{height:92.880000px;}
.h16{height:103.680000px;}
.h11{height:121.680000px;}
.hc{height:166.858945px;}
.h14{height:169.920000px;}
.hb{height:196.410000px;}
.h13{height:666.360000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:198.750000px;}
.w2{width:198.930000px;}
.w4{width:388.620000px;}
.w6{width:402.735000px;}
.w5{width:451.545000px;}
.w8{width:578.160000px;}
.w9{width:757.440000px;}
.wa{width:758.700000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x1a{left:13.716000px;}
.x1f{left:15.555000px;}
.x23{left:23.796000px;}
.x11{left:25.380000px;}
.x6{left:44.999987px;}
.xc{left:51.510000px;}
.x8{left:52.919987px;}
.x5{left:55.905000px;}
.x22{left:74.160000px;}
.x15{left:75.239987px;}
.xf{left:79.050000px;}
.x21{left:82.799987px;}
.x1c{left:88.235987px;}
.x16{left:90.395987px;}
.xe{left:106.590000px;}
.x13{left:123.120000px;}
.xd{left:162.390000px;}
.x1b{left:167.429987px;}
.x3{left:214.949987px;}
.xb{left:242.309987px;}
.x17{left:249.840000px;}
.xa{left:250.949987px;}
.x1d{left:252.000000px;}
.x18{left:265.394987px;}
.x12{left:267.705000px;}
.x20{left:268.814987px;}
.x9{left:270.254987px;}
.x1{left:368.535000px;}
.x14{left:371.955000px;}
.x7{left:378.074987px;}
.x10{left:425.445000px;}
.x4{left:439.920000px;}
.x1e{left:754.020000px;}
.x19{left:832.139987px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls9{letter-spacing:-11.360000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.208533pt;}
.ls15{letter-spacing:-0.095467pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.007680pt;}
.ls8{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.208533pt;}
.lse{letter-spacing:0.216533pt;}
.ls2{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.297600pt;}
.ls13{letter-spacing:0.309867pt;}
.ls3{letter-spacing:0.490667pt;}
.ls11{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.938667pt;}
.lsd{letter-spacing:2.714880pt;}
.lsc{letter-spacing:19.152640pt;}
.ls1{letter-spacing:178.848000pt;}
.ls0{letter-spacing:1170.986667pt;}
.ws2{word-spacing:-18.240000pt;}
.ws4{word-spacing:-18.160000pt;}
.ws5{word-spacing:-18.080000pt;}
.ws3{word-spacing:-18.000000pt;}
.ws1{word-spacing:-14.464000pt;}
.wsf{word-spacing:-12.943787pt;}
.wsb{word-spacing:-12.549120pt;}
.wsd{word-spacing:-12.314987pt;}
.wsc{word-spacing:-12.302720pt;}
.wse{word-spacing:-12.221653pt;}
.ws9{word-spacing:-12.213653pt;}
.ws0{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.909653pt;}
.wsa{word-spacing:-11.796587pt;}
.ws8{word-spacing:-7.810560pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-10.668373pt;}
._14{margin-left:-6.240000pt;}
._d{margin-left:-3.040000pt;}
._5{margin-left:-2.064000pt;}
._4{margin-left:-0.896000pt;}
._0{width:1.115520pt;}
._9{width:2.084907pt;}
._6{width:3.505920pt;}
._12{width:4.515200pt;}
._8{width:5.683840pt;}
._7{width:6.586880pt;}
._c{width:7.702400pt;}
._e{width:8.605440pt;}
._b{width:9.614720pt;}
._f{width:10.735787pt;}
._a{width:13.067520pt;}
._10{width:14.395520pt;}
._11{width:15.485227pt;}
._15{width:16.679680pt;}
._17{width:18.060800pt;}
._16{width:21.407360pt;}
._19{width:27.197440pt;}
._18{width:28.100480pt;}
._1a{width:29.205547pt;}
._1{width:366.986667pt;}
._2{width:651.146667pt;}
._3{width:2515.253333pt;}
.fsa{font-size:34.560000pt;}
.fs6{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.240000pt;}
.y5{bottom:3.133333pt;}
.y2{bottom:3.680000pt;}
.yb0{bottom:3.706667pt;}
.y4f{bottom:4.000000pt;}
.y4d{bottom:6.720000pt;}
.yaa{bottom:9.026667pt;}
.y4c{bottom:25.120000pt;}
.y1{bottom:32.160000pt;}
.y109{bottom:32.800000pt;}
.y4e{bottom:33.280000pt;}
.y4b{bottom:41.440000pt;}
.y48{bottom:47.840000pt;}
.y3{bottom:48.960000pt;}
.y51{bottom:49.280000pt;}
.y108{bottom:66.240000pt;}
.ya6{bottom:66.912000pt;}
.yde{bottom:72.032000pt;}
.yac{bottom:81.986667pt;}
.ya5{bottom:83.232000pt;}
.y83{bottom:83.392000pt;}
.y106{bottom:89.792000pt;}
.y44{bottom:90.112000pt;}
.y47{bottom:93.440000pt;}
.y65{bottom:97.312000pt;}
.y69{bottom:98.053333pt;}
.ydd{bottom:98.272000pt;}
.ya4{bottom:99.552000pt;}
.y82{bottom:101.152000pt;}
.y105{bottom:106.912000pt;}
.y43{bottom:108.832000pt;}
.ya3{bottom:115.872000pt;}
.y64{bottom:116.512000pt;}
.y81{bottom:117.472000pt;}
.ydc{bottom:121.792000pt;}
.y104{bottom:124.512000pt;}
.y42{bottom:127.392000pt;}
.ya2{bottom:132.032000pt;}
.y80{bottom:133.626667pt;}
.y46{bottom:139.040000pt;}
.y89{bottom:140.866667pt;}
.ydb{bottom:141.626667pt;}
.y103{bottom:141.786667pt;}
.ya1{bottom:148.346667pt;}
.y7f{bottom:149.946667pt;}
.y41{bottom:157.306667pt;}
.yda{bottom:157.786667pt;}
.y102{bottom:157.946667pt;}
.ya0{bottom:164.666667pt;}
.y7e{bottom:166.266667pt;}
.y107{bottom:170.746667pt;}
.yd9{bottom:178.746667pt;}
.y9f{bottom:180.826667pt;}
.y7d{bottom:182.586667pt;}
.y40{bottom:185.306667pt;}
.y88{bottom:189.920000pt;}
.y9e{bottom:197.146667pt;}
.y7c{bottom:198.746667pt;}
.yd8{bottom:202.266667pt;}
.y3f{bottom:209.146667pt;}
.y9d{bottom:213.466667pt;}
.y7b{bottom:215.066667pt;}
.y8e{bottom:215.706667pt;}
.yd7{bottom:225.786667pt;}
.y9c{bottom:229.786667pt;}
.y7a{bottom:231.386667pt;}
.y3e{bottom:233.626667pt;}
.y8d{bottom:234.106667pt;}
.y9b{bottom:245.946667pt;}
.yab{bottom:247.040000pt;}
.y79{bottom:247.546667pt;}
.yd6{bottom:249.146667pt;}
.y3d{bottom:252.346667pt;}
.y8c{bottom:252.506667pt;}
.y101{bottom:257.466667pt;}
.y9a{bottom:262.266667pt;}
.y78{bottom:263.866667pt;}
.yaf{bottom:269.306667pt;}
.y100{bottom:269.466667pt;}
.y3c{bottom:271.066667pt;}
.yd5{bottom:272.666667pt;}
.y99{bottom:278.586667pt;}
.y77{bottom:280.186667pt;}
.yae{bottom:287.866667pt;}
.yff{bottom:288.186667pt;}
.y8b{bottom:289.626667pt;}
.y3b{bottom:289.786667pt;}
.yd4{bottom:293.666667pt;}
.y98{bottom:294.786667pt;}
.y76{bottom:296.546667pt;}
.yad{bottom:306.306667pt;}
.y8a{bottom:308.226667pt;}
.y3a{bottom:308.546667pt;}
.y97{bottom:311.106667pt;}
.yd3{bottom:312.386667pt;}
.y75{bottom:312.706667pt;}
.yfe{bottom:314.146667pt;}
.y39{bottom:327.266667pt;}
.y96{bottom:327.426667pt;}
.y74{bottom:329.026667pt;}
.yd2{bottom:338.306667pt;}
.yfd{bottom:340.066667pt;}
.y95{bottom:343.746667pt;}
.y73{bottom:345.346667pt;}
.y38{bottom:345.986667pt;}
.yd1{bottom:356.706667pt;}
.y94{bottom:359.906667pt;}
.y72{bottom:361.666667pt;}
.y37{bottom:364.706667pt;}
.yfc{bottom:366.146667pt;}
.yd0{bottom:375.426667pt;}
.y93{bottom:376.706667pt;}
.y71{bottom:378.306667pt;}
.y36{bottom:383.266667pt;}
.yfb{bottom:392.066667pt;}
.y92{bottom:393.186667pt;}
.y70{bottom:394.786667pt;}
.ycf{bottom:402.306667pt;}
.y35{bottom:412.226667pt;}
.y91{bottom:413.506667pt;}
.ya7{bottom:413.760000pt;}
.y6f{bottom:415.106667pt;}
.y84{bottom:415.360000pt;}
.yfa{bottom:417.986667pt;}
.yce{bottom:421.826667pt;}
.y34{bottom:436.226667pt;}
.ycd{bottom:441.346667pt;}
.yf9{bottom:444.066667pt;}
.y33{bottom:460.546667pt;}
.ycc{bottom:460.866667pt;}
.yf8{bottom:469.986667pt;}
.y32{bottom:479.266667pt;}
.ycb{bottom:481.026667pt;}
.yf7{bottom:496.066667pt;}
.y31{bottom:497.986667pt;}
.yca{bottom:498.786667pt;}
.yf6{bottom:521.986667pt;}
.yc9{bottom:523.266667pt;}
.y30{bottom:526.786667pt;}
.y26{bottom:528.226667pt;}
.yc8{bottom:539.773333pt;}
.y2f{bottom:545.533333pt;}
.yf5{bottom:547.933333pt;}
.y25{bottom:550.813333pt;}
.yc7{bottom:559.613333pt;}
.y2e{bottom:564.253333pt;}
.y85{bottom:567.173333pt;}
.y24{bottom:573.213333pt;}
.yf4{bottom:574.013333pt;}
.yc6{bottom:578.333333pt;}
.y2d{bottom:582.973333pt;}
.y23{bottom:595.773333pt;}
.yc5{bottom:597.053333pt;}
.y67{bottom:599.773333pt;}
.yf3{bottom:599.933333pt;}
.y2c{bottom:601.693333pt;}
.yc4{bottom:615.773333pt;}
.y22{bottom:618.173333pt;}
.y2b{bottom:620.413333pt;}
.y66{bottom:621.853333pt;}
.yf2{bottom:625.853333pt;}
.y2a{bottom:639.133333pt;}
.y21{bottom:640.573333pt;}
.yc3{bottom:642.333333pt;}
.yf1{bottom:651.933333pt;}
.y63{bottom:656.893333pt;}
.y29{bottom:657.853333pt;}
.yc2{bottom:661.053333pt;}
.y20{bottom:663.133333pt;}
.y28{bottom:676.573333pt;}
.yf0{bottom:677.853333pt;}
.y68{bottom:679.360000pt;}
.yc1{bottom:679.773333pt;}
.y62{bottom:681.373333pt;}
.y1f{bottom:685.533333pt;}
.yef{bottom:696.253333pt;}
.yc0{bottom:698.493333pt;}
.y6d{bottom:699.293333pt;}
.y27{bottom:704.893333pt;}
.y1e{bottom:707.933333pt;}
.y61{bottom:708.253333pt;}
.yee{bottom:714.973333pt;}
.ybf{bottom:717.213333pt;}
.y6c{bottom:717.693333pt;}
.y1d{bottom:729.213333pt;}
.y60{bottom:735.133333pt;}
.ybe{bottom:735.933333pt;}
.y6b{bottom:736.253333pt;}
.yed{bottom:740.733333pt;}
.y1c{bottom:742.493333pt;}
.ybd{bottom:754.653333pt;}
.y6a{bottom:754.813333pt;}
.y1b{bottom:757.853333pt;}
.yec{bottom:759.293333pt;}
.y5f{bottom:762.173333pt;}
.y4{bottom:766.880000pt;}
.y1a{bottom:773.253333pt;}
.yeb{bottom:777.893333pt;}
.ybc{bottom:781.253333pt;}
.y19{bottom:788.613333pt;}
.y5e{bottom:789.093333pt;}
.yea{bottom:796.293333pt;}
.ybb{bottom:799.973333pt;}
.y18{bottom:803.973333pt;}
.ye9{bottom:814.853333pt;}
.y5d{bottom:815.973333pt;}
.yba{bottom:818.693333pt;}
.y17{bottom:819.173333pt;}
.y45{bottom:833.253333pt;}
.ye8{bottom:833.573333pt;}
.y16{bottom:834.533333pt;}
.y5c{bottom:834.693333pt;}
.yb9{bottom:837.413333pt;}
.y15{bottom:849.893333pt;}
.y5b{bottom:853.413333pt;}
.ye7{bottom:859.333333pt;}
.yb8{bottom:863.973333pt;}
.y14{bottom:865.253333pt;}
.y5a{bottom:872.133333pt;}
.ye6{bottom:877.893333pt;}
.y13{bottom:880.613333pt;}
.yb7{bottom:882.693333pt;}
.y12{bottom:895.973333pt;}
.ye5{bottom:896.453333pt;}
.y59{bottom:899.013333pt;}
.yb6{bottom:901.413333pt;}
.y11{bottom:911.173333pt;}
.y58{bottom:917.733333pt;}
.yb5{bottom:920.133333pt;}
.ye4{bottom:922.373333pt;}
.y10{bottom:926.533333pt;}
.y57{bottom:936.453333pt;}
.yb4{bottom:938.853333pt;}
.ye3{bottom:940.933333pt;}
.y56{bottom:955.173333pt;}
.yf{bottom:957.253333pt;}
.ya9{bottom:959.013333pt;}
.ye2{bottom:959.493333pt;}
.y87{bottom:960.773333pt;}
.yb3{bottom:962.693333pt;}
.ye{bottom:972.613333pt;}
.y55{bottom:973.893333pt;}
.ye1{bottom:978.053333pt;}
.yb2{bottom:979.653333pt;}
.ya8{bottom:980.933333pt;}
.y86{bottom:982.533333pt;}
.yd{bottom:987.973333pt;}
.y54{bottom:992.613333pt;}
.yc{bottom:1003.173333pt;}
.ye0{bottom:1003.973333pt;}
.y90{bottom:1010.560000pt;}
.y6e{bottom:1012.160000pt;}
.yb1{bottom:1013.760000pt;}
.y53{bottom:1016.320000pt;}
.yb{bottom:1018.560000pt;}
.y8f{bottom:1028.800000pt;}
.y52{bottom:1029.920000pt;}
.ydf{bottom:1030.080000pt;}
.ya{bottom:1033.920000pt;}
.y9{bottom:1049.280000pt;}
.y4a{bottom:1056.320000pt;}
.y8{bottom:1064.640000pt;}
.y7{bottom:1095.200000pt;}
.y6{bottom:1110.560000pt;}
.y50{bottom:1121.920000pt;}
.h2{height:16.000000pt;}
.he{height:16.160000pt;}
.h1b{height:34.374375pt;}
.hf{height:40.103437pt;}
.h10{height:42.745000pt;}
.h7{height:44.073883pt;}
.h12{height:47.380000pt;}
.h17{height:49.148438pt;}
.h8{height:51.500000pt;}
.h19{height:51.769687pt;}
.h4{height:52.834688pt;}
.h1a{height:52.934375pt;}
.h3{height:54.390938pt;}
.h6{height:54.598989pt;}
.h1c{height:56.017500pt;}
.hd{height:56.320000pt;}
.h18{height:58.563750pt;}
.h5{height:63.656250pt;}
.h15{height:65.781915pt;}
.h1e{height:66.202500pt;}
.ha{height:74.477812pt;}
.h9{height:81.914062pt;}
.h1d{height:82.560000pt;}
.h16{height:92.160000pt;}
.h11{height:108.160000pt;}
.hc{height:148.319063pt;}
.h14{height:151.040000pt;}
.hb{height:174.586667pt;}
.h13{height:592.320000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:176.666667pt;}
.w2{width:176.826667pt;}
.w4{width:345.440000pt;}
.w6{width:357.986667pt;}
.w5{width:401.373333pt;}
.w8{width:513.920000pt;}
.w9{width:673.280000pt;}
.wa{width:674.400000pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x1a{left:12.192000pt;}
.x1f{left:13.826667pt;}
.x23{left:21.152000pt;}
.x11{left:22.560000pt;}
.x6{left:39.999988pt;}
.xc{left:45.786667pt;}
.x8{left:47.039988pt;}
.x5{left:49.693333pt;}
.x22{left:65.920000pt;}
.x15{left:66.879988pt;}
.xf{left:70.266667pt;}
.x21{left:73.599988pt;}
.x1c{left:78.431988pt;}
.x16{left:80.351988pt;}
.xe{left:94.746667pt;}
.x13{left:109.440000pt;}
.xd{left:144.346667pt;}
.x1b{left:148.826655pt;}
.x3{left:191.066655pt;}
.xb{left:215.386655pt;}
.x17{left:222.080000pt;}
.xa{left:223.066655pt;}
.x1d{left:224.000000pt;}
.x18{left:235.906655pt;}
.x12{left:237.960000pt;}
.x20{left:238.946655pt;}
.x9{left:240.226655pt;}
.x1{left:327.586667pt;}
.x14{left:330.626667pt;}
.x7{left:336.066655pt;}
.x10{left:378.173333pt;}
.x4{left:391.040000pt;}
.x1e{left:670.240000pt;}
.x19{left:739.679988pt;}
}




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