
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_dc094c505a27646a15be90d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_e8640b53262f0f3cb0a64387.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_315c7c9b00b882b4cea638c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_66fbc0af5c1636178f662c0c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5e16d838f7d2075f73884fba.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a98a3949c6cf50e25cbcb85f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_66196c9b227de5134d855ce9.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.226200px;}
.lsc{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.234000px;}
.ls5{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.lsf{letter-spacing:46.026720px;}
.lse{letter-spacing:64.026720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.392000px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.350600px;}
.ws4{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.374480px;}
._2{width:2.851680px;}
._e{width:4.157040px;}
._10{width:5.550240px;}
._13{width:6.582480px;}
._6{width:7.614000px;}
._8{width:9.018000px;}
._7{width:10.098000px;}
._9{width:11.291040px;}
._f{width:12.499920px;}
._c{width:13.801680px;}
._d{width:16.687920px;}
._b{width:17.694000px;}
._a{width:18.900000px;}
._12{width:20.057760px;}
._11{width:21.155040px;}
._4{width:396.269760px;}
._5{width:978.089760px;}
._3{width:1389.185760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.765000px;}
.y5{bottom:3.780000px;}
.y5c{bottom:5.010000px;}
.y2{bottom:8.280000px;}
.y5a{bottom:17.100000px;}
.y42{bottom:21.045000px;}
.y4{bottom:21.060000px;}
.y4d{bottom:29.700000px;}
.y59{bottom:35.640000px;}
.y4c{bottom:37.260000px;}
.y41{bottom:38.325000px;}
.y3{bottom:44.670000px;}
.y58{bottom:54.360000px;}
.y40{bottom:55.425000px;}
.y7{bottom:57.600000px;}
.y4b{bottom:67.320000px;}
.y3f{bottom:72.705000px;}
.y57{bottom:75.960000px;}
.y4a{bottom:79.020000px;}
.y3e{bottom:89.985000px;}
.y44{bottom:91.440000px;}
.y49{bottom:91.980000px;}
.y56{bottom:95.040000px;}
.y93{bottom:98.280000px;}
.y48{bottom:104.940000px;}
.y3d{bottom:107.265000px;}
.y55{bottom:110.520000px;}
.yc3{bottom:113.580000px;}
.y92{bottom:115.560000px;}
.y3c{bottom:124.590000px;}
.y54{bottom:126.210000px;}
.y47{bottom:126.930000px;}
.yc2{bottom:131.760000px;}
.y91{bottom:132.840000px;}
.y53{bottom:135.570000px;}
.y3b{bottom:141.690000px;}
.y90{bottom:150.120000px;}
.y52{bottom:154.470000px;}
.y3a{bottom:158.970000px;}
.y8f{bottom:168.480000px;}
.y51{bottom:169.950000px;}
.y39{bottom:176.250000px;}
.y50{bottom:185.430000px;}
.y8e{bottom:186.660000px;}
.yc1{bottom:186.840000px;}
.y46{bottom:189.030000px;}
.y38{bottom:193.530000px;}
.y45{bottom:199.650000px;}
.y4f{bottom:201.090000px;}
.y8d{bottom:205.020000px;}
.yc0{bottom:205.200000px;}
.y37{bottom:210.810000px;}
.y4e{bottom:216.210000px;}
.y8c{bottom:223.410000px;}
.y36{bottom:228.090000px;}
.y8b{bottom:240.690000px;}
.ybf{bottom:241.770000px;}
.y35{bottom:245.190000px;}
.y8a{bottom:257.970000px;}
.ybe{bottom:259.050000px;}
.y34{bottom:262.470000px;}
.y89{bottom:275.070000px;}
.ybd{bottom:275.970000px;}
.y33{bottom:279.750000px;}
.y88{bottom:292.350000px;}
.y32{bottom:297.030000px;}
.ybc{bottom:302.610000px;}
.y87{bottom:309.270000px;}
.y31{bottom:314.310000px;}
.y1d{bottom:315.210000px;}
.ybb{bottom:319.890000px;}
.yf{bottom:320.985000px;}
.y30{bottom:331.590000px;}
.y86{bottom:335.550000px;}
.yba{bottom:338.070000px;}
.y1c{bottom:339.330000px;}
.y2f{bottom:348.690000px;}
.yb9{bottom:356.430000px;}
.y85{bottom:362.190000px;}
.y1b{bottom:363.480000px;}
.y2e{bottom:366.000000px;}
.yb8{bottom:374.430000px;}
.y84{bottom:379.470000px;}
.y2d{bottom:383.280000px;}
.y1a{bottom:387.600000px;}
.yb7{bottom:392.070000px;}
.y83{bottom:396.570000px;}
.y2c{bottom:399.660000px;}
.yb6{bottom:410.430000px;}
.y19{bottom:411.720000px;}
.y82{bottom:413.850000px;}
.y2b{bottom:424.680000px;}
.yb5{bottom:428.610000px;}
.y81{bottom:431.130000px;}
.y18{bottom:435.840000px;}
.y2a{bottom:440.160000px;}
.yb4{bottom:446.655000px;}
.y80{bottom:448.095000px;}
.y29{bottom:455.640000px;}
.y17{bottom:460.140000px;}
.ye5{bottom:460.155000px;}
.yb3{bottom:464.295000px;}
.y28{bottom:471.120000px;}
.y7f{bottom:474.735000px;}
.ye4{bottom:480.135000px;}
.yb2{bottom:482.655000px;}
.y16{bottom:484.260000px;}
.y27{bottom:486.600000px;}
.y7e{bottom:492.015000px;}
.ye3{bottom:497.415000px;}
.yb1{bottom:500.655000px;}
.y26{bottom:502.260000px;}
.y15{bottom:508.380000px;}
.y7d{bottom:509.115000px;}
.ye2{bottom:514.695000px;}
.y25{bottom:517.740000px;}
.yb0{bottom:518.115000px;}
.y7c{bottom:526.395000px;}
.ye1{bottom:531.795000px;}
.y14{bottom:532.500000px;}
.y24{bottom:533.220000px;}
.yaf{bottom:536.475000px;}
.y7b{bottom:543.675000px;}
.y23{bottom:548.700000px;}
.ye0{bottom:549.075000px;}
.yae{bottom:554.835000px;}
.y13{bottom:556.620000px;}
.y7a{bottom:560.595000px;}
.y22{bottom:564.360000px;}
.ydf{bottom:566.355000px;}
.yad{bottom:572.835000px;}
.y21{bottom:579.840000px;}
.y12{bottom:580.740000px;}
.yde{bottom:583.635000px;}
.y79{bottom:587.235000px;}
.yac{bottom:590.475000px;}
.y20{bottom:595.320000px;}
.ydd{bottom:600.915000px;}
.y78{bottom:604.335000px;}
.y11{bottom:605.085000px;}
.yab{bottom:607.395000px;}
.y1f{bottom:610.845000px;}
.ydc{bottom:618.195000px;}
.y77{bottom:621.615000px;}
.y1e{bottom:626.145000px;}
.y10{bottom:629.205000px;}
.yaa{bottom:633.855000px;}
.ydb{bottom:635.295000px;}
.y76{bottom:638.895000px;}
.ya9{bottom:651.135000px;}
.yda{bottom:652.575000px;}
.y75{bottom:655.815000px;}
.ya8{bottom:669.495000px;}
.y74{bottom:682.485000px;}
.ya7{bottom:687.885000px;}
.yd9{bottom:696.165000px;}
.y73{bottom:699.765000px;}
.ya6{bottom:705.885000px;}
.yd8{bottom:713.445000px;}
.y72{bottom:716.865000px;}
.yd7{bottom:730.725000px;}
.ya5{bottom:732.345000px;}
.y71{bottom:734.145000px;}
.yd6{bottom:747.825000px;}
.ya4{bottom:750.705000px;}
.y70{bottom:751.425000px;}
.yd5{bottom:765.105000px;}
.y6f{bottom:768.705000px;}
.ya3{bottom:769.065000px;}
.yd4{bottom:782.385000px;}
.y6e{bottom:785.625000px;}
.ya2{bottom:787.425000px;}
.yd3{bottom:799.665000px;}
.ya1{bottom:804.705000px;}
.y6d{bottom:812.265000px;}
.yd2{bottom:816.945000px;}
.ya0{bottom:821.985000px;}
.y6c{bottom:829.365000px;}
.yd1{bottom:834.045000px;}
.y9f{bottom:838.725000px;}
.y6b{bottom:846.645000px;}
.yd0{bottom:851.325000px;}
.y6a{bottom:863.925000px;}
.y9e{bottom:865.365000px;}
.ycf{bottom:868.605000px;}
.y69{bottom:881.205000px;}
.y9d{bottom:882.645000px;}
.yce{bottom:885.885000px;}
.y68{bottom:898.125000px;}
.y9c{bottom:899.925000px;}
.ycd{bottom:903.165000px;}
.y9b{bottom:918.330000px;}
.ycc{bottom:920.490000px;}
.y67{bottom:924.810000px;}
.y9a{bottom:936.510000px;}
.ycb{bottom:937.590000px;}
.y66{bottom:941.910000px;}
.yca{bottom:954.510000px;}
.y99{bottom:954.870000px;}
.y65{bottom:959.190000px;}
.ye{bottom:970.710000px;}
.y98{bottom:972.870000px;}
.y64{bottom:976.470000px;}
.yc9{bottom:981.150000px;}
.yd{bottom:982.950000px;}
.y63{bottom:993.750000px;}
.yc8{bottom:998.430000px;}
.y97{bottom:999.510000px;}
.yc{bottom:1000.230000px;}
.y62{bottom:1010.670000px;}
.yc7{bottom:1015.710000px;}
.yb{bottom:1016.970000px;}
.y96{bottom:1017.870000px;}
.yc6{bottom:1034.070000px;}
.ya{bottom:1035.690000px;}
.y95{bottom:1036.050000px;}
.y61{bottom:1037.130000px;}
.yc5{bottom:1052.250000px;}
.y60{bottom:1054.410000px;}
.y9{bottom:1059.810000px;}
.yc4{bottom:1070.610000px;}
.y5f{bottom:1071.690000px;}
.y8{bottom:1088.250000px;}
.y5e{bottom:1088.970000px;}
.y5b{bottom:1091.700000px;}
.y94{bottom:1105.890000px;}
.y5d{bottom:1106.250000px;}
.y6{bottom:1121.370000px;}
.y1{bottom:1126.950000px;}
.h18{height:5.650313px;}
.h7{height:23.632383px;}
.h1a{height:27.540000px;}
.h17{height:29.678906px;}
.h16{height:35.332031px;}
.hc{height:38.158594px;}
.hf{height:40.985156px;}
.h13{height:41.726953px;}
.he{height:42.086250px;}
.h11{height:44.507812px;}
.h10{height:52.971680px;}
.h12{height:54.421875px;}
.h8{height:57.324375px;}
.h19{height:58.621992px;}
.h5{height:58.651172px;}
.hb{height:59.038594px;}
.h6{height:59.439023px;}
.ha{height:60.226875px;}
.h1c{height:61.423863px;}
.h1b{height:64.002656px;}
.h3{height:65.884219px;}
.h14{height:70.664062px;}
.h2{height:81.570000px;}
.h9{height:84.898125px;}
.h4{height:117.180000px;}
.h15{height:228.810000px;}
.hd{height:638.730000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.876000px;}
.x15{left:8.085000px;}
.x4{left:12.765000px;}
.x12{left:16.911000px;}
.x5{left:18.885000px;}
.x13{left:23.391000px;}
.x19{left:29.151000px;}
.x6{left:35.985000px;}
.xc{left:43.731000px;}
.x18{left:47.691000px;}
.xd{left:50.751000px;}
.xb{left:55.071000px;}
.x1b{left:57.051000px;}
.x16{left:62.130000px;}
.x1a{left:66.225000px;}
.xf{left:67.485000px;}
.x1{left:78.300000px;}
.x11{left:79.545000px;}
.x10{left:83.685000px;}
.x7{left:86.436000px;}
.x2{left:95.790000px;}
.x1c{left:102.765000px;}
.x17{left:106.725000px;}
.x1f{left:113.436000px;}
.xe{left:124.545000px;}
.x1e{left:140.436000px;}
.x3{left:182.385000px;}
.x14{left:219.105000px;}
.xa{left:364.215000px;}
.x9{left:548.745000px;}
.x8{left:766.050000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.201067pt;}
.lsc{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.208000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsf{letter-spacing:40.912640pt;}
.lse{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:-9.200533pt;}
.ws4{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.221760pt;}
._2{width:2.534827pt;}
._e{width:3.695147pt;}
._10{width:4.933547pt;}
._13{width:5.851093pt;}
._6{width:6.768000pt;}
._8{width:8.016000pt;}
._7{width:8.976000pt;}
._9{width:10.036480pt;}
._f{width:11.111040pt;}
._c{width:12.268160pt;}
._d{width:14.833707pt;}
._b{width:15.728000pt;}
._a{width:16.800000pt;}
._12{width:17.829120pt;}
._11{width:18.804480pt;}
._4{width:352.239787pt;}
._5{width:869.413120pt;}
._3{width:1234.831787pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:3.346667pt;}
.y5{bottom:3.360000pt;}
.y5c{bottom:4.453333pt;}
.y2{bottom:7.360000pt;}
.y5a{bottom:15.200000pt;}
.y42{bottom:18.706667pt;}
.y4{bottom:18.720000pt;}
.y4d{bottom:26.400000pt;}
.y59{bottom:31.680000pt;}
.y4c{bottom:33.120000pt;}
.y41{bottom:34.066667pt;}
.y3{bottom:39.706667pt;}
.y58{bottom:48.320000pt;}
.y40{bottom:49.266667pt;}
.y7{bottom:51.200000pt;}
.y4b{bottom:59.840000pt;}
.y3f{bottom:64.626667pt;}
.y57{bottom:67.520000pt;}
.y4a{bottom:70.240000pt;}
.y3e{bottom:79.986667pt;}
.y44{bottom:81.280000pt;}
.y49{bottom:81.760000pt;}
.y56{bottom:84.480000pt;}
.y93{bottom:87.360000pt;}
.y48{bottom:93.280000pt;}
.y3d{bottom:95.346667pt;}
.y55{bottom:98.240000pt;}
.yc3{bottom:100.960000pt;}
.y92{bottom:102.720000pt;}
.y3c{bottom:110.746667pt;}
.y54{bottom:112.186667pt;}
.y47{bottom:112.826667pt;}
.yc2{bottom:117.120000pt;}
.y91{bottom:118.080000pt;}
.y53{bottom:120.506667pt;}
.y3b{bottom:125.946667pt;}
.y90{bottom:133.440000pt;}
.y52{bottom:137.306667pt;}
.y3a{bottom:141.306667pt;}
.y8f{bottom:149.760000pt;}
.y51{bottom:151.066667pt;}
.y39{bottom:156.666667pt;}
.y50{bottom:164.826667pt;}
.y8e{bottom:165.920000pt;}
.yc1{bottom:166.080000pt;}
.y46{bottom:168.026667pt;}
.y38{bottom:172.026667pt;}
.y45{bottom:177.466667pt;}
.y4f{bottom:178.746667pt;}
.y8d{bottom:182.240000pt;}
.yc0{bottom:182.400000pt;}
.y37{bottom:187.386667pt;}
.y4e{bottom:192.186667pt;}
.y8c{bottom:198.586667pt;}
.y36{bottom:202.746667pt;}
.y8b{bottom:213.946667pt;}
.ybf{bottom:214.906667pt;}
.y35{bottom:217.946667pt;}
.y8a{bottom:229.306667pt;}
.ybe{bottom:230.266667pt;}
.y34{bottom:233.306667pt;}
.y89{bottom:244.506667pt;}
.ybd{bottom:245.306667pt;}
.y33{bottom:248.666667pt;}
.y88{bottom:259.866667pt;}
.y32{bottom:264.026667pt;}
.ybc{bottom:268.986667pt;}
.y87{bottom:274.906667pt;}
.y31{bottom:279.386667pt;}
.y1d{bottom:280.186667pt;}
.ybb{bottom:284.346667pt;}
.yf{bottom:285.320000pt;}
.y30{bottom:294.746667pt;}
.y86{bottom:298.266667pt;}
.yba{bottom:300.506667pt;}
.y1c{bottom:301.626667pt;}
.y2f{bottom:309.946667pt;}
.yb9{bottom:316.826667pt;}
.y85{bottom:321.946667pt;}
.y1b{bottom:323.093333pt;}
.y2e{bottom:325.333333pt;}
.yb8{bottom:332.826667pt;}
.y84{bottom:337.306667pt;}
.y2d{bottom:340.693333pt;}
.y1a{bottom:344.533333pt;}
.yb7{bottom:348.506667pt;}
.y83{bottom:352.506667pt;}
.y2c{bottom:355.253333pt;}
.yb6{bottom:364.826667pt;}
.y19{bottom:365.973333pt;}
.y82{bottom:367.866667pt;}
.y2b{bottom:377.493333pt;}
.yb5{bottom:380.986667pt;}
.y81{bottom:383.226667pt;}
.y18{bottom:387.413333pt;}
.y2a{bottom:391.253333pt;}
.yb4{bottom:397.026667pt;}
.y80{bottom:398.306667pt;}
.y29{bottom:405.013333pt;}
.y17{bottom:409.013333pt;}
.ye5{bottom:409.026667pt;}
.yb3{bottom:412.706667pt;}
.y28{bottom:418.773333pt;}
.y7f{bottom:421.986667pt;}
.ye4{bottom:426.786667pt;}
.yb2{bottom:429.026667pt;}
.y16{bottom:430.453333pt;}
.y27{bottom:432.533333pt;}
.y7e{bottom:437.346667pt;}
.ye3{bottom:442.146667pt;}
.yb1{bottom:445.026667pt;}
.y26{bottom:446.453333pt;}
.y15{bottom:451.893333pt;}
.y7d{bottom:452.546667pt;}
.ye2{bottom:457.506667pt;}
.y25{bottom:460.213333pt;}
.yb0{bottom:460.546667pt;}
.y7c{bottom:467.906667pt;}
.ye1{bottom:472.706667pt;}
.y14{bottom:473.333333pt;}
.y24{bottom:473.973333pt;}
.yaf{bottom:476.866667pt;}
.y7b{bottom:483.266667pt;}
.y23{bottom:487.733333pt;}
.ye0{bottom:488.066667pt;}
.yae{bottom:493.186667pt;}
.y13{bottom:494.773333pt;}
.y7a{bottom:498.306667pt;}
.y22{bottom:501.653333pt;}
.ydf{bottom:503.426667pt;}
.yad{bottom:509.186667pt;}
.y21{bottom:515.413333pt;}
.y12{bottom:516.213333pt;}
.yde{bottom:518.786667pt;}
.y79{bottom:521.986667pt;}
.yac{bottom:524.866667pt;}
.y20{bottom:529.173333pt;}
.ydd{bottom:534.146667pt;}
.y78{bottom:537.186667pt;}
.y11{bottom:537.853333pt;}
.yab{bottom:539.906667pt;}
.y1f{bottom:542.973333pt;}
.ydc{bottom:549.506667pt;}
.y77{bottom:552.546667pt;}
.y1e{bottom:556.573333pt;}
.y10{bottom:559.293333pt;}
.yaa{bottom:563.426667pt;}
.ydb{bottom:564.706667pt;}
.y76{bottom:567.906667pt;}
.ya9{bottom:578.786667pt;}
.yda{bottom:580.066667pt;}
.y75{bottom:582.946667pt;}
.ya8{bottom:595.106667pt;}
.y74{bottom:606.653333pt;}
.ya7{bottom:611.453333pt;}
.yd9{bottom:618.813333pt;}
.y73{bottom:622.013333pt;}
.ya6{bottom:627.453333pt;}
.yd8{bottom:634.173333pt;}
.y72{bottom:637.213333pt;}
.yd7{bottom:649.533333pt;}
.ya5{bottom:650.973333pt;}
.y71{bottom:652.573333pt;}
.yd6{bottom:664.733333pt;}
.ya4{bottom:667.293333pt;}
.y70{bottom:667.933333pt;}
.yd5{bottom:680.093333pt;}
.y6f{bottom:683.293333pt;}
.ya3{bottom:683.613333pt;}
.yd4{bottom:695.453333pt;}
.y6e{bottom:698.333333pt;}
.ya2{bottom:699.933333pt;}
.yd3{bottom:710.813333pt;}
.ya1{bottom:715.293333pt;}
.y6d{bottom:722.013333pt;}
.yd2{bottom:726.173333pt;}
.ya0{bottom:730.653333pt;}
.y6c{bottom:737.213333pt;}
.yd1{bottom:741.373333pt;}
.y9f{bottom:745.533333pt;}
.y6b{bottom:752.573333pt;}
.yd0{bottom:756.733333pt;}
.y6a{bottom:767.933333pt;}
.y9e{bottom:769.213333pt;}
.ycf{bottom:772.093333pt;}
.y69{bottom:783.293333pt;}
.y9d{bottom:784.573333pt;}
.yce{bottom:787.453333pt;}
.y68{bottom:798.333333pt;}
.y9c{bottom:799.933333pt;}
.ycd{bottom:802.813333pt;}
.y9b{bottom:816.293333pt;}
.ycc{bottom:818.213333pt;}
.y67{bottom:822.053333pt;}
.y9a{bottom:832.453333pt;}
.ycb{bottom:833.413333pt;}
.y66{bottom:837.253333pt;}
.yca{bottom:848.453333pt;}
.y99{bottom:848.773333pt;}
.y65{bottom:852.613333pt;}
.ye{bottom:862.853333pt;}
.y98{bottom:864.773333pt;}
.y64{bottom:867.973333pt;}
.yc9{bottom:872.133333pt;}
.yd{bottom:873.733333pt;}
.y63{bottom:883.333333pt;}
.yc8{bottom:887.493333pt;}
.y97{bottom:888.453333pt;}
.yc{bottom:889.093333pt;}
.y62{bottom:898.373333pt;}
.yc7{bottom:902.853333pt;}
.yb{bottom:903.973333pt;}
.y96{bottom:904.773333pt;}
.yc6{bottom:919.173333pt;}
.ya{bottom:920.613333pt;}
.y95{bottom:920.933333pt;}
.y61{bottom:921.893333pt;}
.yc5{bottom:935.333333pt;}
.y60{bottom:937.253333pt;}
.y9{bottom:942.053333pt;}
.yc4{bottom:951.653333pt;}
.y5f{bottom:952.613333pt;}
.y8{bottom:967.333333pt;}
.y5e{bottom:967.973333pt;}
.y5b{bottom:970.400000pt;}
.y94{bottom:983.013333pt;}
.y5d{bottom:983.333333pt;}
.y6{bottom:996.773333pt;}
.y1{bottom:1001.733333pt;}
.h18{height:5.022500pt;}
.h7{height:21.006562pt;}
.h1a{height:24.480000pt;}
.h17{height:26.381250pt;}
.h16{height:31.406250pt;}
.hc{height:33.918750pt;}
.hf{height:36.431250pt;}
.h13{height:37.090625pt;}
.he{height:37.410000pt;}
.h11{height:39.562500pt;}
.h10{height:47.085938pt;}
.h12{height:48.375000pt;}
.h8{height:50.955000pt;}
.h19{height:52.108438pt;}
.h5{height:52.134375pt;}
.hb{height:52.478750pt;}
.h6{height:52.834688pt;}
.ha{height:53.535000pt;}
.h1c{height:54.598989pt;}
.h1b{height:56.891250pt;}
.h3{height:58.563750pt;}
.h14{height:62.812500pt;}
.h2{height:72.506667pt;}
.h9{height:75.465000pt;}
.h4{height:104.160000pt;}
.h15{height:203.386667pt;}
.hd{height:567.760000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.112000pt;}
.x15{left:7.186667pt;}
.x4{left:11.346667pt;}
.x12{left:15.032000pt;}
.x5{left:16.786667pt;}
.x13{left:20.792000pt;}
.x19{left:25.912000pt;}
.x6{left:31.986667pt;}
.xc{left:38.872000pt;}
.x18{left:42.392000pt;}
.xd{left:45.112000pt;}
.xb{left:48.952000pt;}
.x1b{left:50.712000pt;}
.x16{left:55.226667pt;}
.x1a{left:58.866667pt;}
.xf{left:59.986667pt;}
.x1{left:69.600000pt;}
.x11{left:70.706667pt;}
.x10{left:74.386667pt;}
.x7{left:76.832000pt;}
.x2{left:85.146667pt;}
.x1c{left:91.346667pt;}
.x17{left:94.866667pt;}
.x1f{left:100.832000pt;}
.xe{left:110.706667pt;}
.x1e{left:124.832000pt;}
.x3{left:162.120000pt;}
.x14{left:194.760000pt;}
.xa{left:323.746667pt;}
.x9{left:487.773333pt;}
.x8{left:680.933333pt;}
}




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