
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_c0c0896b48633213b10d2143.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_930f43b14aa64bf27c72f4c4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3c40fd49d94ad5a3fb38abde.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_195ad2e00d9541b69534d077.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.934082;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_2c0494b58914240ed9fe29c2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a996ac056df8775a599a40ec.woff2')format("woff");}.ff7{font-family:ff7;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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls13{letter-spacing:-0.431400px;}
.ls18{letter-spacing:-0.326400px;}
.ls11{letter-spacing:-0.204600px;}
.ls10{letter-spacing:-0.155400px;}
.lsd{letter-spacing:-0.107400px;}
.ls6{letter-spacing:-0.067200px;}
.ls19{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.096480px;}
.lsa{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.175200px;}
.ls9{letter-spacing:0.175680px;}
.ls16{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.427680px;}
.ls17{letter-spacing:0.780000px;}
.lse{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls15{letter-spacing:12.186720px;}
.ls14{letter-spacing:42.570720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.685760px;}
.wsd{word-spacing:-13.685040px;}
.ws8{word-spacing:-13.566360px;}
.ws4{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.398360px;}
.wsc{word-spacing:-13.179360px;}
.ws3{word-spacing:-9.437760px;}
.wsa{word-spacing:-8.786880px;}
.wsb{word-spacing:-8.582280px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.641560px;}
._10{margin-left:-4.690560px;}
._6{margin-left:-3.312000px;}
._e{margin-left:-2.284800px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:2.487600px;}
._d{width:3.764880px;}
._7{width:5.554080px;}
._8{width:6.894720px;}
._a{width:8.187120px;}
._13{width:9.630240px;}
._b{width:10.637280px;}
._c{width:11.912160px;}
._f{width:13.645440px;}
._11{width:14.681040px;}
._18{width:16.998720px;}
._17{width:18.006000px;}
._12{width:19.780560px;}
._14{width:22.589280px;}
._16{width:26.055360px;}
._15{width:27.131040px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y59{bottom:6.660000px;}
.y99{bottom:6.705000px;}
.yce{bottom:7.020000px;}
.ycd{bottom:28.080000px;}
.y66{bottom:28.440000px;}
.yca{bottom:35.460000px;}
.ycc{bottom:49.500000px;}
.y7f{bottom:50.430000px;}
.y6{bottom:61.416000px;}
.ycb{bottom:70.554000px;}
.y5b{bottom:72.225000px;}
.yc8{bottom:92.196000px;}
.yc9{bottom:93.096000px;}
.ybc{bottom:107.316000px;}
.y64{bottom:108.036000px;}
.yc7{bottom:113.256000px;}
.ybb{bottom:128.376000px;}
.y63{bottom:129.096000px;}
.yc6{bottom:134.316000px;}
.y94{bottom:138.096000px;}
.y2e{bottom:145.476000px;}
.yba{bottom:149.436000px;}
.y62{bottom:150.150000px;}
.yc5{bottom:155.370000px;}
.y93{bottom:159.150000px;}
.y2d{bottom:166.530000px;}
.yb9{bottom:170.490000px;}
.y61{bottom:171.210000px;}
.yc4{bottom:176.430000px;}
.y92{bottom:180.210000px;}
.y2c{bottom:187.590000px;}
.yb8{bottom:191.550000px;}
.y60{bottom:192.270000px;}
.yc3{bottom:197.490000px;}
.y91{bottom:201.270000px;}
.y5f{bottom:207.390000px;}
.y2b{bottom:208.650000px;}
.yb7{bottom:212.610000px;}
.y90{bottom:216.570000px;}
.yc2{bottom:218.550000px;}
.y5a{bottom:229.170000px;}
.y2a{bottom:229.710000px;}
.yb6{bottom:233.670000px;}
.y8f{bottom:238.350000px;}
.yc1{bottom:239.610000px;}
.y29{bottom:250.770000px;}
.y5e{bottom:250.950000px;}
.yb5{bottom:254.730000px;}
.y8e{bottom:260.130000px;}
.yc0{bottom:260.670000px;}
.y28{bottom:271.830000px;}
.y5d{bottom:272.730000px;}
.yb4{bottom:275.790000px;}
.ybf{bottom:281.775000px;}
.y8d{bottom:281.955000px;}
.y27{bottom:292.935000px;}
.y5c{bottom:294.735000px;}
.yb3{bottom:296.895000px;}
.ybe{bottom:302.835000px;}
.y8c{bottom:310.395000px;}
.y26{bottom:313.995000px;}
.y58{bottom:316.515000px;}
.yb2{bottom:317.775000px;}
.ybd{bottom:323.895000px;}
.y8b{bottom:331.455000px;}
.yb1{bottom:333.075000px;}
.y25{bottom:335.055000px;}
.y57{bottom:344.955000px;}
.y8a{bottom:352.515000px;}
.yb0{bottom:354.855000px;}
.y24{bottom:356.115000px;}
.y56{bottom:366.015000px;}
.y89{bottom:373.575000px;}
.y23{bottom:377.175000px;}
.yaf{bottom:383.295000px;}
.y55{bottom:387.075000px;}
.y88{bottom:394.635000px;}
.y22{bottom:398.055000px;}
.yae{bottom:404.355000px;}
.y54{bottom:408.135000px;}
.y21{bottom:419.115000px;}
.y87{bottom:424.695000px;}
.yad{bottom:425.415000px;}
.y53{bottom:429.195000px;}
.y20{bottom:440.175000px;}
.y86{bottom:445.755000px;}
.yac{bottom:446.475000px;}
.y52{bottom:450.255000px;}
.y1f{bottom:461.235000px;}
.y85{bottom:466.815000px;}
.yab{bottom:467.535000px;}
.y51{bottom:471.315000px;}
.y1e{bottom:482.295000px;}
.y84{bottom:487.875000px;}
.yaa{bottom:488.595000px;}
.y50{bottom:492.375000px;}
.y83{bottom:502.995000px;}
.y1d{bottom:503.355000px;}
.ya9{bottom:509.655000px;}
.y4f{bottom:513.435000px;}
.y1c{bottom:524.415000px;}
.y82{bottom:524.775000px;}
.ya8{bottom:530.715000px;}
.y4e{bottom:534.495000px;}
.y1b{bottom:545.475000px;}
.y7e{bottom:546.555000px;}
.ya7{bottom:551.775000px;}
.y4d{bottom:555.555000px;}
.y1a{bottom:566.565000px;}
.y81{bottom:568.545000px;}
.ya6{bottom:572.865000px;}
.y4c{bottom:576.645000px;}
.y19{bottom:587.625000px;}
.y80{bottom:590.325000px;}
.ya5{bottom:593.925000px;}
.y4b{bottom:597.705000px;}
.y7c{bottom:612.105000px;}
.ya4{bottom:614.985000px;}
.y4a{bottom:618.765000px;}
.y18{bottom:632.265000px;}
.y7d{bottom:633.885000px;}
.ya3{bottom:636.045000px;}
.y49{bottom:639.825000px;}
.y7b{bottom:655.665000px;}
.ya2{bottom:657.105000px;}
.y48{bottom:660.885000px;}
.y17{bottom:662.145000px;}
.y7a{bottom:677.445000px;}
.ya1{bottom:678.165000px;}
.y47{bottom:681.945000px;}
.y16{bottom:683.205000px;}
.ya0{bottom:699.225000px;}
.y46{bottom:703.005000px;}
.y15{bottom:704.265000px;}
.y79{bottom:706.065000px;}
.y9f{bottom:720.285000px;}
.y45{bottom:724.065000px;}
.y14{bottom:725.325000px;}
.y78{bottom:727.125000px;}
.y9e{bottom:741.345000px;}
.y44{bottom:745.125000px;}
.y13{bottom:746.385000px;}
.y77{bottom:748.005000px;}
.y9d{bottom:762.405000px;}
.y43{bottom:766.005000px;}
.y12{bottom:767.445000px;}
.y76{bottom:769.065000px;}
.y9c{bottom:783.465000px;}
.y42{bottom:787.065000px;}
.y11{bottom:788.505000px;}
.y75{bottom:790.125000px;}
.y9b{bottom:804.525000px;}
.y41{bottom:808.125000px;}
.y10{bottom:809.565000px;}
.y74{bottom:820.185000px;}
.y9a{bottom:825.585000px;}
.y40{bottom:829.185000px;}
.yf{bottom:830.625000px;}
.y98{bottom:840.705000px;}
.y73{bottom:841.245000px;}
.y3f{bottom:850.290000px;}
.ye{bottom:851.730000px;}
.y72{bottom:862.350000px;}
.y97{bottom:862.530000px;}
.y3e{bottom:871.350000px;}
.yd{bottom:872.790000px;}
.y71{bottom:877.650000px;}
.y96{bottom:884.310000px;}
.y3d{bottom:892.410000px;}
.yc{bottom:896.010000px;}
.y6f{bottom:899.430000px;}
.y95{bottom:906.090000px;}
.y3c{bottom:913.470000px;}
.y70{bottom:921.210000px;}
.yb{bottom:922.290000px;}
.y3b{bottom:934.530000px;}
.ya{bottom:939.030000px;}
.y6d{bottom:942.990000px;}
.y3a{bottom:955.590000px;}
.y9{bottom:961.350000px;}
.y6e{bottom:964.770000px;}
.y39{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.y6c{bottom:993.210000px;}
.y38{bottom:997.710000px;}
.y6b{bottom:1014.270000px;}
.y37{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.y6a{bottom:1029.390000px;}
.y36{bottom:1039.830000px;}
.y68{bottom:1051.350000px;}
.y5{bottom:1060.350000px;}
.y35{bottom:1060.890000px;}
.y69{bottom:1073.130000px;}
.y34{bottom:1081.950000px;}
.y4{bottom:1092.570000px;}
.y65{bottom:1094.910000px;}
.y33{bottom:1103.010000px;}
.y67{bottom:1116.690000px;}
.y32{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.y31{bottom:1145.160000px;}
.y2{bottom:1156.860000px;}
.y30{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y2f{bottom:1193.220000px;}
.h15{height:2.864531px;}
.h9{height:21.060000px;}
.hb{height:21.096000px;}
.h7{height:38.671172px;}
.hd{height:42.840000px;}
.hc{height:42.876000px;}
.he{height:45.170156px;}
.hf{height:48.088125px;}
.h10{height:52.166250px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h12{height:59.551172px;}
.h5{height:61.189805px;}
.h13{height:61.423863px;}
.h11{height:64.836000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h14{height:84.960000px;}
.ha{height:86.616000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:52.560000px;}
.w1c{width:52.740000px;}
.w1a{width:56.016000px;}
.wb{width:128.520000px;}
.wa{width:131.616000px;}
.w19{width:145.440000px;}
.w1d{width:146.556000px;}
.w3{width:151.200000px;}
.w11{width:158.580000px;}
.w7{width:167.970000px;}
.w5{width:168.150000px;}
.w10{width:168.510000px;}
.wd{width:171.030000px;}
.w1e{width:182.010000px;}
.w16{width:202.890000px;}
.w18{width:206.310000px;}
.w21{width:210.810000px;}
.w1f{width:212.790000px;}
.w20{width:221.250000px;}
.w15{width:229.935000px;}
.we{width:259.095000px;}
.w9{width:260.850000px;}
.w14{width:315.570000px;}
.wf{width:327.810000px;}
.w8{width:329.115000px;}
.w4{width:352.515000px;}
.w12{width:430.845000px;}
.w13{width:433.545000px;}
.wc{width:497.805000px;}
.w6{width:504.435000px;}
.w17{width:521.205000px;}
.w22{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1d{left:12.240000px;}
.x1{left:53.999987px;}
.x19{left:62.820000px;}
.x7{left:66.960000px;}
.x2{left:70.199987px;}
.x10{left:71.640000px;}
.x1e{left:80.999987px;}
.x13{left:82.440000px;}
.xf{left:96.515987px;}
.x3{left:110.016000px;}
.xb{left:171.029987px;}
.x1f{left:190.110000px;}
.x1a{left:210.090000px;}
.x8{left:235.650000px;}
.xc{left:238.710000px;}
.x5{left:261.930000px;}
.x20{left:264.810000px;}
.x15{left:292.215000px;}
.x12{left:302.295000px;}
.x1b{left:392.835000px;}
.x16{left:438.375000px;}
.x17{left:495.105000px;}
.xd{left:498.525000px;}
.x11{left:505.905000px;}
.x18{left:548.385000px;}
.x9{left:565.485000px;}
.x14{left:604.365000px;}
.x1c{left:606.345000px;}
.x6{left:615.165000px;}
.xe{left:667.770000px;}
.xa{left:697.830000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls13{letter-spacing:-0.383467pt;}
.ls18{letter-spacing:-0.290133pt;}
.ls11{letter-spacing:-0.181867pt;}
.ls10{letter-spacing:-0.138133pt;}
.lsd{letter-spacing:-0.095467pt;}
.ls6{letter-spacing:-0.059733pt;}
.ls19{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.085760pt;}
.lsa{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.155733pt;}
.ls9{letter-spacing:0.156160pt;}
.ls16{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.380160pt;}
.ls17{letter-spacing:0.693333pt;}
.lse{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls15{letter-spacing:10.832640pt;}
.ls14{letter-spacing:37.840640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.165120pt;}
.wsd{word-spacing:-12.164480pt;}
.ws8{word-spacing:-12.058987pt;}
.ws4{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.909653pt;}
.wsc{word-spacing:-11.714987pt;}
.ws3{word-spacing:-8.389120pt;}
.wsa{word-spacing:-7.810560pt;}
.wsb{word-spacing:-7.628693pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.014720pt;}
._10{margin-left:-4.169387pt;}
._6{margin-left:-2.944000pt;}
._e{margin-left:-2.030933pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.211200pt;}
._d{width:3.346560pt;}
._7{width:4.936960pt;}
._8{width:6.128640pt;}
._a{width:7.277440pt;}
._13{width:8.560213pt;}
._b{width:9.455360pt;}
._c{width:10.588587pt;}
._f{width:12.129280pt;}
._11{width:13.049813pt;}
._18{width:15.109973pt;}
._17{width:16.005333pt;}
._12{width:17.582720pt;}
._14{width:20.079360pt;}
._16{width:23.160320pt;}
._15{width:24.116480pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:5.920000pt;}
.y99{bottom:5.960000pt;}
.yce{bottom:6.240000pt;}
.ycd{bottom:24.960000pt;}
.y66{bottom:25.280000pt;}
.yca{bottom:31.520000pt;}
.ycc{bottom:44.000000pt;}
.y7f{bottom:44.826667pt;}
.y6{bottom:54.592000pt;}
.ycb{bottom:62.714667pt;}
.y5b{bottom:64.200000pt;}
.yc8{bottom:81.952000pt;}
.yc9{bottom:82.752000pt;}
.ybc{bottom:95.392000pt;}
.y64{bottom:96.032000pt;}
.yc7{bottom:100.672000pt;}
.ybb{bottom:114.112000pt;}
.y63{bottom:114.752000pt;}
.yc6{bottom:119.392000pt;}
.y94{bottom:122.752000pt;}
.y2e{bottom:129.312000pt;}
.yba{bottom:132.832000pt;}
.y62{bottom:133.466667pt;}
.yc5{bottom:138.106667pt;}
.y93{bottom:141.466667pt;}
.y2d{bottom:148.026667pt;}
.yb9{bottom:151.546667pt;}
.y61{bottom:152.186667pt;}
.yc4{bottom:156.826667pt;}
.y92{bottom:160.186667pt;}
.y2c{bottom:166.746667pt;}
.yb8{bottom:170.266667pt;}
.y60{bottom:170.906667pt;}
.yc3{bottom:175.546667pt;}
.y91{bottom:178.906667pt;}
.y5f{bottom:184.346667pt;}
.y2b{bottom:185.466667pt;}
.yb7{bottom:188.986667pt;}
.y90{bottom:192.506667pt;}
.yc2{bottom:194.266667pt;}
.y5a{bottom:203.706667pt;}
.y2a{bottom:204.186667pt;}
.yb6{bottom:207.706667pt;}
.y8f{bottom:211.866667pt;}
.yc1{bottom:212.986667pt;}
.y29{bottom:222.906667pt;}
.y5e{bottom:223.066667pt;}
.yb5{bottom:226.426667pt;}
.y8e{bottom:231.226667pt;}
.yc0{bottom:231.706667pt;}
.y28{bottom:241.626667pt;}
.y5d{bottom:242.426667pt;}
.yb4{bottom:245.146667pt;}
.ybf{bottom:250.466667pt;}
.y8d{bottom:250.626667pt;}
.y27{bottom:260.386667pt;}
.y5c{bottom:261.986667pt;}
.yb3{bottom:263.906667pt;}
.ybe{bottom:269.186667pt;}
.y8c{bottom:275.906667pt;}
.y26{bottom:279.106667pt;}
.y58{bottom:281.346667pt;}
.yb2{bottom:282.466667pt;}
.ybd{bottom:287.906667pt;}
.y8b{bottom:294.626667pt;}
.yb1{bottom:296.066667pt;}
.y25{bottom:297.826667pt;}
.y57{bottom:306.626667pt;}
.y8a{bottom:313.346667pt;}
.yb0{bottom:315.426667pt;}
.y24{bottom:316.546667pt;}
.y56{bottom:325.346667pt;}
.y89{bottom:332.066667pt;}
.y23{bottom:335.266667pt;}
.yaf{bottom:340.706667pt;}
.y55{bottom:344.066667pt;}
.y88{bottom:350.786667pt;}
.y22{bottom:353.826667pt;}
.yae{bottom:359.426667pt;}
.y54{bottom:362.786667pt;}
.y21{bottom:372.546667pt;}
.y87{bottom:377.506667pt;}
.yad{bottom:378.146667pt;}
.y53{bottom:381.506667pt;}
.y20{bottom:391.266667pt;}
.y86{bottom:396.226667pt;}
.yac{bottom:396.866667pt;}
.y52{bottom:400.226667pt;}
.y1f{bottom:409.986667pt;}
.y85{bottom:414.946667pt;}
.yab{bottom:415.586667pt;}
.y51{bottom:418.946667pt;}
.y1e{bottom:428.706667pt;}
.y84{bottom:433.666667pt;}
.yaa{bottom:434.306667pt;}
.y50{bottom:437.666667pt;}
.y83{bottom:447.106667pt;}
.y1d{bottom:447.426667pt;}
.ya9{bottom:453.026667pt;}
.y4f{bottom:456.386667pt;}
.y1c{bottom:466.146667pt;}
.y82{bottom:466.466667pt;}
.ya8{bottom:471.746667pt;}
.y4e{bottom:475.106667pt;}
.y1b{bottom:484.866667pt;}
.y7e{bottom:485.826667pt;}
.ya7{bottom:490.466667pt;}
.y4d{bottom:493.826667pt;}
.y1a{bottom:503.613333pt;}
.y81{bottom:505.373333pt;}
.ya6{bottom:509.213333pt;}
.y4c{bottom:512.573333pt;}
.y19{bottom:522.333333pt;}
.y80{bottom:524.733333pt;}
.ya5{bottom:527.933333pt;}
.y4b{bottom:531.293333pt;}
.y7c{bottom:544.093333pt;}
.ya4{bottom:546.653333pt;}
.y4a{bottom:550.013333pt;}
.y18{bottom:562.013333pt;}
.y7d{bottom:563.453333pt;}
.ya3{bottom:565.373333pt;}
.y49{bottom:568.733333pt;}
.y7b{bottom:582.813333pt;}
.ya2{bottom:584.093333pt;}
.y48{bottom:587.453333pt;}
.y17{bottom:588.573333pt;}
.y7a{bottom:602.173333pt;}
.ya1{bottom:602.813333pt;}
.y47{bottom:606.173333pt;}
.y16{bottom:607.293333pt;}
.ya0{bottom:621.533333pt;}
.y46{bottom:624.893333pt;}
.y15{bottom:626.013333pt;}
.y79{bottom:627.613333pt;}
.y9f{bottom:640.253333pt;}
.y45{bottom:643.613333pt;}
.y14{bottom:644.733333pt;}
.y78{bottom:646.333333pt;}
.y9e{bottom:658.973333pt;}
.y44{bottom:662.333333pt;}
.y13{bottom:663.453333pt;}
.y77{bottom:664.893333pt;}
.y9d{bottom:677.693333pt;}
.y43{bottom:680.893333pt;}
.y12{bottom:682.173333pt;}
.y76{bottom:683.613333pt;}
.y9c{bottom:696.413333pt;}
.y42{bottom:699.613333pt;}
.y11{bottom:700.893333pt;}
.y75{bottom:702.333333pt;}
.y9b{bottom:715.133333pt;}
.y41{bottom:718.333333pt;}
.y10{bottom:719.613333pt;}
.y74{bottom:729.053333pt;}
.y9a{bottom:733.853333pt;}
.y40{bottom:737.053333pt;}
.yf{bottom:738.333333pt;}
.y98{bottom:747.293333pt;}
.y73{bottom:747.773333pt;}
.y3f{bottom:755.813333pt;}
.ye{bottom:757.093333pt;}
.y72{bottom:766.533333pt;}
.y97{bottom:766.693333pt;}
.y3e{bottom:774.533333pt;}
.yd{bottom:775.813333pt;}
.y71{bottom:780.133333pt;}
.y96{bottom:786.053333pt;}
.y3d{bottom:793.253333pt;}
.yc{bottom:796.453333pt;}
.y6f{bottom:799.493333pt;}
.y95{bottom:805.413333pt;}
.y3c{bottom:811.973333pt;}
.y70{bottom:818.853333pt;}
.yb{bottom:819.813333pt;}
.y3b{bottom:830.693333pt;}
.ya{bottom:834.693333pt;}
.y6d{bottom:838.213333pt;}
.y3a{bottom:849.413333pt;}
.y9{bottom:854.533333pt;}
.y6e{bottom:857.573333pt;}
.y39{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.y6c{bottom:882.853333pt;}
.y38{bottom:886.853333pt;}
.y6b{bottom:901.573333pt;}
.y37{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.y6a{bottom:915.013333pt;}
.y36{bottom:924.293333pt;}
.y68{bottom:934.533333pt;}
.y5{bottom:942.533333pt;}
.y35{bottom:943.013333pt;}
.y69{bottom:953.893333pt;}
.y34{bottom:961.733333pt;}
.y4{bottom:971.173333pt;}
.y65{bottom:973.253333pt;}
.y33{bottom:980.453333pt;}
.y67{bottom:992.613333pt;}
.y32{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.y31{bottom:1017.920000pt;}
.y2{bottom:1028.320000pt;}
.y30{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y2f{bottom:1060.640000pt;}
.h15{height:2.546250pt;}
.h9{height:18.720000pt;}
.hb{height:18.752000pt;}
.h7{height:34.374375pt;}
.hd{height:38.080000pt;}
.hc{height:38.112000pt;}
.he{height:40.151250pt;}
.hf{height:42.745000pt;}
.h10{height:46.370000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h12{height:52.934375pt;}
.h5{height:54.390938pt;}
.h13{height:54.598989pt;}
.h11{height:57.632000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h14{height:75.520000pt;}
.ha{height:76.992000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:46.720000pt;}
.w1c{width:46.880000pt;}
.w1a{width:49.792000pt;}
.wb{width:114.240000pt;}
.wa{width:116.992000pt;}
.w19{width:129.280000pt;}
.w1d{width:130.272000pt;}
.w3{width:134.400000pt;}
.w11{width:140.960000pt;}
.w7{width:149.306667pt;}
.w5{width:149.466667pt;}
.w10{width:149.786667pt;}
.wd{width:152.026667pt;}
.w1e{width:161.786667pt;}
.w16{width:180.346667pt;}
.w18{width:183.386667pt;}
.w21{width:187.386667pt;}
.w1f{width:189.146667pt;}
.w20{width:196.666667pt;}
.w15{width:204.386667pt;}
.we{width:230.306667pt;}
.w9{width:231.866667pt;}
.w14{width:280.506667pt;}
.wf{width:291.386667pt;}
.w8{width:292.546667pt;}
.w4{width:313.346667pt;}
.w12{width:382.973333pt;}
.w13{width:385.373333pt;}
.wc{width:442.493333pt;}
.w6{width:448.386667pt;}
.w17{width:463.293333pt;}
.w22{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1d{left:10.880000pt;}
.x1{left:47.999988pt;}
.x19{left:55.840000pt;}
.x7{left:59.520000pt;}
.x2{left:62.399988pt;}
.x10{left:63.680000pt;}
.x1e{left:71.999988pt;}
.x13{left:73.280000pt;}
.xf{left:85.791988pt;}
.x3{left:97.792000pt;}
.xb{left:152.026655pt;}
.x1f{left:168.986667pt;}
.x1a{left:186.746667pt;}
.x8{left:209.466667pt;}
.xc{left:212.186667pt;}
.x5{left:232.826667pt;}
.x20{left:235.386667pt;}
.x15{left:259.746667pt;}
.x12{left:268.706667pt;}
.x1b{left:349.186667pt;}
.x16{left:389.666667pt;}
.x17{left:440.093333pt;}
.xd{left:443.133333pt;}
.x11{left:449.693333pt;}
.x18{left:487.453333pt;}
.x9{left:502.653333pt;}
.x14{left:537.213333pt;}
.x1c{left:538.973333pt;}
.x6{left:546.813333pt;}
.xe{left:593.573333pt;}
.xa{left:620.293333pt;}
}




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