
    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_5b4c84c2ae8a6903224538cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_5845b49db5d357876d8baf93.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.792480;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_998b1c83cd8c8f1edd8f3edd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_d9b7759222307f7e814bef4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_37b3a3056ee0ee92ba13c76b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-2.160000px;}
.lsb{letter-spacing:-1.728000px;}
.lsd{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.402600px;}
.ls4{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.576000px;}
.ls11{letter-spacing:1.182000px;}
.ls2{letter-spacing:4.176000px;}
.ls0{letter-spacing:35.856000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(197,90,17),0 0.015em rgb(197,90,17),0.015em 0 rgb(197,90,17),0 -0.015em  rgb(197,90,17);}
.sc3{text-shadow:-0.015em 0 rgb(46,117,182),0 0.015em rgb(46,117,182),0.015em 0 rgb(46,117,182),0 -0.015em  rgb(46,117,182);}
.sc2{text-shadow:-0.015em 0 rgb(84,130,53),0 0.015em rgb(84,130,53),0.015em 0 rgb(84,130,53),0 -0.015em  rgb(84,130,53);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc5{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(197,90,17);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(46,117,182);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(84,130,53);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-144.000000px;}
.ws11{word-spacing:-59.718240px;}
.ws4{word-spacing:-32.832000px;}
.ws9{word-spacing:-32.688000px;}
.ws2{word-spacing:-32.544000px;}
.ws0{word-spacing:-32.400000px;}
.ws3{word-spacing:-32.256000px;}
.ws8{word-spacing:-32.112000px;}
.wse{word-spacing:-31.968000px;}
.wsc{word-spacing:-31.824000px;}
.ws5{word-spacing:-31.680000px;}
.ws1{word-spacing:-31.536000px;}
.wsa{word-spacing:-31.104000px;}
.ws6{word-spacing:-30.816000px;}
.wsd{word-spacing:-30.384000px;}
.ws10{word-spacing:-30.180360px;}
.wsf{word-spacing:-29.777760px;}
.ws12{word-spacing:0.000000px;}
.wsb{word-spacing:75.204000px;}
._0{margin-left:-81.000000px;}
._1{margin-left:-39.960000px;}
._a{margin-left:-35.712000px;}
._30{margin-left:-21.599040px;}
._1e{margin-left:-18.288000px;}
._1b{margin-left:-15.252000px;}
._1a{margin-left:-12.828000px;}
._c{margin-left:-11.232000px;}
._18{margin-left:-9.492000px;}
._1f{margin-left:-7.512000px;}
._d{margin-left:-5.724000px;}
._4{margin-left:-4.320000px;}
._2{margin-left:-3.240000px;}
._7{margin-left:-2.160000px;}
._b{margin-left:-1.080000px;}
._6{width:1.908000px;}
._3{width:3.240000px;}
._19{width:4.320000px;}
._12{width:6.300000px;}
._e{width:7.920000px;}
._17{width:9.360000px;}
._9{width:10.944000px;}
._5{width:12.672000px;}
._15{width:14.580000px;}
._16{width:15.708000px;}
._8{width:17.460000px;}
._2e{width:20.304000px;}
._2f{width:21.312000px;}
._11{width:25.632000px;}
._20{width:28.800000px;}
._21{width:29.916000px;}
._22{width:31.284000px;}
._10{width:35.856000px;}
._25{width:37.440000px;}
._26{width:38.628000px;}
._23{width:41.040000px;}
._24{width:42.588000px;}
._27{width:43.812000px;}
._1c{width:45.360000px;}
._1d{width:46.488000px;}
._f{width:48.240000px;}
._28{width:56.664000px;}
._29{width:57.780000px;}
._14{width:67.464000px;}
._13{width:68.832000px;}
._2c{width:76.068000px;}
._2d{width:77.148000px;}
._2a{width:124.344000px;}
._2b{width:125.388000px;}
.fc6{color:transparent;}
.fc4{color:rgb(118,113,113);}
.fc3{color:rgb(197,90,17);}
.fc2{color:rgb(46,117,182);}
.fc1{color:rgb(84,130,53);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:131.760000px;}
.fsa{font-size:144.000000px;}
.fs6{font-size:239.760000px;}
.fsc{font-size:264.240000px;}
.fs7{font-size:288.000000px;}
.fs8{font-size:360.000000px;}
.fs0{font-size:388.080000px;}
.fs1{font-size:388.224000px;}
.fs4{font-size:396.000000px;}
.fs5{font-size:396.144000px;}
.fs9{font-size:432.000000px;}
.fs3{font-size:576.000000px;}
.fs2{font-size:1080.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:84.060000px;}
.y71{bottom:129.744000px;}
.y70{bottom:172.410000px;}
.y23{bottom:200.340000px;}
.y6f{bottom:216.150000px;}
.y6e{bottom:259.350000px;}
.y6d{bottom:302.010000px;}
.y22{bottom:316.620000px;}
.y6c{bottom:345.210000px;}
.y6b{bottom:388.410000px;}
.y63{bottom:423.150000px;}
.y6a{bottom:431.640000px;}
.y21{bottom:433.110000px;}
.y97{bottom:434.490000px;}
.y62{bottom:466.380000px;}
.y69{bottom:474.840000px;}
.y96{bottom:477.690000px;}
.y61{bottom:509.580000px;}
.y68{bottom:518.040000px;}
.y95{bottom:520.890000px;}
.y20{bottom:549.390000px;}
.y60{bottom:552.780000px;}
.y67{bottom:561.240000px;}
.y94{bottom:564.090000px;}
.y5f{bottom:595.980000px;}
.y66{bottom:604.440000px;}
.y93{bottom:607.290000px;}
.y5e{bottom:639.180000px;}
.y65{bottom:647.640000px;}
.y92{bottom:650.490000px;}
.y1f{bottom:665.670000px;}
.y5d{bottom:682.380000px;}
.y64{bottom:690.840000px;}
.y91{bottom:693.690000px;}
.y5c{bottom:725.580000px;}
.y90{bottom:736.920000px;}
.y31{bottom:743.580000px;}
.y8f{bottom:780.120000px;}
.y1e{bottom:781.950000px;}
.y8e{bottom:823.320000px;}
.y5b{bottom:864.540000px;}
.y1d{bottom:898.410000px;}
.y5a{bottom:907.740000px;}
.y59{bottom:950.940000px;}
.y83{bottom:976.425000px;}
.y58{bottom:994.140000px;}
.y1c{bottom:1014.690000px;}
.y82{bottom:1019.625000px;}
.y57{bottom:1037.340000px;}
.y81{bottom:1062.825000px;}
.y56{bottom:1080.540000px;}
.y80{bottom:1106.025000px;}
.y55{bottom:1123.740000px;}
.y1b{bottom:1130.970000px;}
.y7f{bottom:1149.225000px;}
.y54{bottom:1166.940000px;}
.y7e{bottom:1192.425000px;}
.y53{bottom:1210.140000px;}
.y7d{bottom:1235.625000px;}
.y1a{bottom:1247.430000px;}
.y52{bottom:1253.340000px;}
.y7c{bottom:1278.825000px;}
.y51{bottom:1296.540000px;}
.y7b{bottom:1322.025000px;}
.y50{bottom:1339.740000px;}
.y19{bottom:1363.755000px;}
.y7a{bottom:1365.225000px;}
.y4f{bottom:1382.940000px;}
.y79{bottom:1408.425000px;}
.y4e{bottom:1426.140000px;}
.y78{bottom:1451.625000px;}
.y4d{bottom:1469.340000px;}
.y8d{bottom:1477.620000px;}
.y18{bottom:1480.035000px;}
.y77{bottom:1494.825000px;}
.y87{bottom:1495.695000px;}
.y4c{bottom:1512.540000px;}
.y89{bottom:1513.725000px;}
.y8c{bottom:1513.800000px;}
.y86{bottom:1531.875000px;}
.y76{bottom:1538.025000px;}
.y8b{bottom:1549.980000px;}
.y88{bottom:1550.085000px;}
.y4b{bottom:1555.740000px;}
.y85{bottom:1568.235000px;}
.y75{bottom:1581.225000px;}
.y8a{bottom:1586.340000px;}
.y17{bottom:1596.315000px;}
.y4a{bottom:1598.970000px;}
.y74{bottom:1624.425000px;}
.y73{bottom:1667.670000px;}
.y16{bottom:1712.775000px;}
.y84{bottom:1721.340000px;}
.y2b{bottom:1780.275000px;}
.y2a{bottom:1785.210000px;}
.y15{bottom:1829.055000px;}
.y14{bottom:1945.335000px;}
.y49{bottom:1967.970000px;}
.y48{bottom:2011.170000px;}
.y47{bottom:2054.370000px;}
.y13{bottom:2061.795000px;}
.y46{bottom:2097.615000px;}
.y45{bottom:2140.815000px;}
.y12{bottom:2178.105000px;}
.y44{bottom:2184.015000px;}
.y30{bottom:2227.170000px;}
.y43{bottom:2227.215000px;}
.y2e{bottom:2227.965000px;}
.y42{bottom:2270.415000px;}
.y11{bottom:2294.385000px;}
.y2d{bottom:2310.225000px;}
.y41{bottom:2313.615000px;}
.y2f{bottom:2330.490000px;}
.y40{bottom:2386.650000px;}
.y10{bottom:2410.665000px;}
.y3f{bottom:2429.850000px;}
.y3e{bottom:2473.050000px;}
.y3d{bottom:2516.250000px;}
.yf{bottom:2527.125000px;}
.y3c{bottom:2559.450000px;}
.y3b{bottom:2602.650000px;}
.ye{bottom:2643.405000px;}
.y3a{bottom:2645.850000px;}
.y39{bottom:2689.050000px;}
.y2c{bottom:2733.405000px;}
.yd{bottom:2759.685000px;}
.y38{bottom:2794.425000px;}
.y37{bottom:2837.625000px;}
.yc{bottom:2876.145000px;}
.y36{bottom:2880.825000px;}
.y35{bottom:2924.025000px;}
.y34{bottom:2967.225000px;}
.yb{bottom:2992.470000px;}
.y33{bottom:3010.425000px;}
.y32{bottom:3053.670000px;}
.ya{bottom:3108.750000px;}
.y29{bottom:3191.655000px;}
.y9{bottom:3225.210000px;}
.y8{bottom:3341.490000px;}
.y27{bottom:3418.125000px;}
.y7{bottom:3457.770000px;}
.y72{bottom:3486.780000px;}
.y6{bottom:3574.050000px;}
.y26{bottom:3590.925000px;}
.y28{bottom:3630.990000px;}
.y5{bottom:3690.510000px;}
.y4{bottom:3806.790000px;}
.y98{bottom:3909.210000px;}
.y3{bottom:3923.100000px;}
.y25{bottom:4001.730000px;}
.y2{bottom:4039.560000px;}
.y1{bottom:4155.840000px;}
.h10{height:94.573828px;}
.hd{height:100.125000px;}
.he{height:103.359375px;}
.h9{height:172.093359px;}
.ha{height:206.718750px;}
.hf{height:251.367188px;}
.hb{height:258.398438px;}
.h7{height:276.503906px;}
.h3{height:278.553516px;}
.h4{height:278.656875px;}
.h8{height:284.341641px;}
.hc{height:301.640625px;}
.h6{height:402.187500px;}
.h5{height:754.101562px;}
.h1{height:4251.750000px;}
.h2{height:4251.959634px;}
.h0{height:4251.960000px;}
.w1{width:3826.500000px;}
.w2{width:3826.619997px;}
.w0{width:3826.620000px;}
.x0{left:0.000000px;}
.x1{left:10.799997px;}
.x2{left:87.947997px;}
.x6{left:157.604997px;}
.x42{left:232.349997px;}
.x2a{left:237.239997px;}
.x2b{left:245.339997px;}
.x2c{left:250.199997px;}
.x27{left:253.439997px;}
.x28{left:259.919997px;}
.x2f{left:263.699997px;}
.x29{left:264.959997px;}
.x26{left:284.039997px;}
.x2e{left:293.759997px;}
.x2d{left:351.179997px;}
.x3{left:380.909997px;}
.x7{left:382.649997px;}
.x4{left:574.049997px;}
.x9{left:984.059997px;}
.x36{left:1046.624997px;}
.x35{left:1053.644997px;}
.x37{left:1060.304997px;}
.x41{left:1098.899997px;}
.x8{left:1134.569997px;}
.x1d{left:1169.849997px;}
.x1a{left:1179.029997px;}
.x17{left:1197.029997px;}
.x1c{left:1198.829997px;}
.x19{left:1200.989997px;}
.x18{left:1210.349997px;}
.x1b{left:1216.109997px;}
.x39{left:1244.624997px;}
.x38{left:1278.464997px;}
.x3a{left:1297.364997px;}
.x3b{left:1469.624997px;}
.x3c{left:1500.764997px;}
.x14{left:1503.644997px;}
.x13{left:1510.844997px;}
.x15{left:1518.944997px;}
.x16{left:1528.304997px;}
.x12{left:1539.284997px;}
.x10{left:1543.604997px;}
.x11{left:1552.964997px;}
.x22{left:1557.029997px;}
.x20{left:1558.289997px;}
.x23{left:1562.249997px;}
.x24{left:1568.189997px;}
.x1e{left:1586.369997px;}
.x21{left:1595.009997px;}
.x25{left:1601.309997px;}
.x1f{left:1618.049997px;}
.x3e{left:1709.744997px;}
.x3f{left:1720.184997px;}
.x40{left:1736.384997px;}
.x3d{left:1741.424997px;}
.x30{left:1981.589997px;}
.x32{left:2008.109997px;}
.x33{left:2062.154997px;}
.xc{left:2080.259997px;}
.xb{left:2152.259997px;}
.x5{left:2316.344997px;}
.xf{left:2333.954997px;}
.x34{left:2397.854997px;}
.xa{left:2496.629997px;}
.x31{left:2508.014997px;}
.xe{left:3206.234997px;}
.xd{left:3230.894997px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.920000pt;}
.lsb{letter-spacing:-1.536000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.357867pt;}
.ls4{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.512000pt;}
.ls11{letter-spacing:1.050667pt;}
.ls2{letter-spacing:3.712000pt;}
.ls0{letter-spacing:31.872000pt;}
.ws7{word-spacing:-128.000000pt;}
.ws11{word-spacing:-53.082880pt;}
.ws4{word-spacing:-29.184000pt;}
.ws9{word-spacing:-29.056000pt;}
.ws2{word-spacing:-28.928000pt;}
.ws0{word-spacing:-28.800000pt;}
.ws3{word-spacing:-28.672000pt;}
.ws8{word-spacing:-28.544000pt;}
.wse{word-spacing:-28.416000pt;}
.wsc{word-spacing:-28.288000pt;}
.ws5{word-spacing:-28.160000pt;}
.ws1{word-spacing:-28.032000pt;}
.wsa{word-spacing:-27.648000pt;}
.ws6{word-spacing:-27.392000pt;}
.wsd{word-spacing:-27.008000pt;}
.ws10{word-spacing:-26.826987pt;}
.wsf{word-spacing:-26.469120pt;}
.ws12{word-spacing:0.000000pt;}
.wsb{word-spacing:66.848000pt;}
._0{margin-left:-72.000000pt;}
._1{margin-left:-35.520000pt;}
._a{margin-left:-31.744000pt;}
._30{margin-left:-19.199147pt;}
._1e{margin-left:-16.256000pt;}
._1b{margin-left:-13.557333pt;}
._1a{margin-left:-11.402667pt;}
._c{margin-left:-9.984000pt;}
._18{margin-left:-8.437333pt;}
._1f{margin-left:-6.677333pt;}
._d{margin-left:-5.088000pt;}
._4{margin-left:-3.840000pt;}
._2{margin-left:-2.880000pt;}
._7{margin-left:-1.920000pt;}
._b{margin-left:-0.960000pt;}
._6{width:1.696000pt;}
._3{width:2.880000pt;}
._19{width:3.840000pt;}
._12{width:5.600000pt;}
._e{width:7.040000pt;}
._17{width:8.320000pt;}
._9{width:9.728000pt;}
._5{width:11.264000pt;}
._15{width:12.960000pt;}
._16{width:13.962667pt;}
._8{width:15.520000pt;}
._2e{width:18.048000pt;}
._2f{width:18.944000pt;}
._11{width:22.784000pt;}
._20{width:25.600000pt;}
._21{width:26.592000pt;}
._22{width:27.808000pt;}
._10{width:31.872000pt;}
._25{width:33.280000pt;}
._26{width:34.336000pt;}
._23{width:36.480000pt;}
._24{width:37.856000pt;}
._27{width:38.944000pt;}
._1c{width:40.320000pt;}
._1d{width:41.322667pt;}
._f{width:42.880000pt;}
._28{width:50.368000pt;}
._29{width:51.360000pt;}
._14{width:59.968000pt;}
._13{width:61.184000pt;}
._2c{width:67.616000pt;}
._2d{width:68.576000pt;}
._2a{width:110.528000pt;}
._2b{width:111.456000pt;}
.fsb{font-size:117.120000pt;}
.fsa{font-size:128.000000pt;}
.fs6{font-size:213.120000pt;}
.fsc{font-size:234.880000pt;}
.fs7{font-size:256.000000pt;}
.fs8{font-size:320.000000pt;}
.fs0{font-size:344.960000pt;}
.fs1{font-size:345.088000pt;}
.fs4{font-size:352.000000pt;}
.fs5{font-size:352.128000pt;}
.fs9{font-size:384.000000pt;}
.fs3{font-size:512.000000pt;}
.fs2{font-size:960.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:74.720000pt;}
.y71{bottom:115.328000pt;}
.y70{bottom:153.253333pt;}
.y23{bottom:178.080000pt;}
.y6f{bottom:192.133333pt;}
.y6e{bottom:230.533333pt;}
.y6d{bottom:268.453333pt;}
.y22{bottom:281.440000pt;}
.y6c{bottom:306.853333pt;}
.y6b{bottom:345.253333pt;}
.y63{bottom:376.133333pt;}
.y6a{bottom:383.680000pt;}
.y21{bottom:384.986667pt;}
.y97{bottom:386.213333pt;}
.y62{bottom:414.560000pt;}
.y69{bottom:422.080000pt;}
.y96{bottom:424.613333pt;}
.y61{bottom:452.960000pt;}
.y68{bottom:460.480000pt;}
.y95{bottom:463.013333pt;}
.y20{bottom:488.346667pt;}
.y60{bottom:491.360000pt;}
.y67{bottom:498.880000pt;}
.y94{bottom:501.413333pt;}
.y5f{bottom:529.760000pt;}
.y66{bottom:537.280000pt;}
.y93{bottom:539.813333pt;}
.y5e{bottom:568.160000pt;}
.y65{bottom:575.680000pt;}
.y92{bottom:578.213333pt;}
.y1f{bottom:591.706667pt;}
.y5d{bottom:606.560000pt;}
.y64{bottom:614.080000pt;}
.y91{bottom:616.613333pt;}
.y5c{bottom:644.960000pt;}
.y90{bottom:655.040000pt;}
.y31{bottom:660.960000pt;}
.y8f{bottom:693.440000pt;}
.y1e{bottom:695.066667pt;}
.y8e{bottom:731.840000pt;}
.y5b{bottom:768.480000pt;}
.y1d{bottom:798.586667pt;}
.y5a{bottom:806.880000pt;}
.y59{bottom:845.280000pt;}
.y83{bottom:867.933333pt;}
.y58{bottom:883.680000pt;}
.y1c{bottom:901.946667pt;}
.y82{bottom:906.333333pt;}
.y57{bottom:922.080000pt;}
.y81{bottom:944.733333pt;}
.y56{bottom:960.480000pt;}
.y80{bottom:983.133333pt;}
.y55{bottom:998.880000pt;}
.y1b{bottom:1005.306667pt;}
.y7f{bottom:1021.533333pt;}
.y54{bottom:1037.280000pt;}
.y7e{bottom:1059.933333pt;}
.y53{bottom:1075.680000pt;}
.y7d{bottom:1098.333333pt;}
.y1a{bottom:1108.826667pt;}
.y52{bottom:1114.080000pt;}
.y7c{bottom:1136.733333pt;}
.y51{bottom:1152.480000pt;}
.y7b{bottom:1175.133333pt;}
.y50{bottom:1190.880000pt;}
.y19{bottom:1212.226667pt;}
.y7a{bottom:1213.533333pt;}
.y4f{bottom:1229.280000pt;}
.y79{bottom:1251.933333pt;}
.y4e{bottom:1267.680000pt;}
.y78{bottom:1290.333333pt;}
.y4d{bottom:1306.080000pt;}
.y8d{bottom:1313.440000pt;}
.y18{bottom:1315.586667pt;}
.y77{bottom:1328.733333pt;}
.y87{bottom:1329.506667pt;}
.y4c{bottom:1344.480000pt;}
.y89{bottom:1345.533333pt;}
.y8c{bottom:1345.600000pt;}
.y86{bottom:1361.666667pt;}
.y76{bottom:1367.133333pt;}
.y8b{bottom:1377.760000pt;}
.y88{bottom:1377.853333pt;}
.y4b{bottom:1382.880000pt;}
.y85{bottom:1393.986667pt;}
.y75{bottom:1405.533333pt;}
.y8a{bottom:1410.080000pt;}
.y17{bottom:1418.946667pt;}
.y4a{bottom:1421.306667pt;}
.y74{bottom:1443.933333pt;}
.y73{bottom:1482.373333pt;}
.y16{bottom:1522.466667pt;}
.y84{bottom:1530.080000pt;}
.y2b{bottom:1582.466667pt;}
.y2a{bottom:1586.853333pt;}
.y15{bottom:1625.826667pt;}
.y14{bottom:1729.186667pt;}
.y49{bottom:1749.306667pt;}
.y48{bottom:1787.706667pt;}
.y47{bottom:1826.106667pt;}
.y13{bottom:1832.706667pt;}
.y46{bottom:1864.546667pt;}
.y45{bottom:1902.946667pt;}
.y12{bottom:1936.093333pt;}
.y44{bottom:1941.346667pt;}
.y30{bottom:1979.706667pt;}
.y43{bottom:1979.746667pt;}
.y2e{bottom:1980.413333pt;}
.y42{bottom:2018.146667pt;}
.y11{bottom:2039.453333pt;}
.y2d{bottom:2053.533333pt;}
.y41{bottom:2056.546667pt;}
.y2f{bottom:2071.546667pt;}
.y40{bottom:2121.466667pt;}
.y10{bottom:2142.813333pt;}
.y3f{bottom:2159.866667pt;}
.y3e{bottom:2198.266667pt;}
.y3d{bottom:2236.666667pt;}
.yf{bottom:2246.333333pt;}
.y3c{bottom:2275.066667pt;}
.y3b{bottom:2313.466667pt;}
.ye{bottom:2349.693333pt;}
.y3a{bottom:2351.866667pt;}
.y39{bottom:2390.266667pt;}
.y2c{bottom:2429.693333pt;}
.yd{bottom:2453.053333pt;}
.y38{bottom:2483.933333pt;}
.y37{bottom:2522.333333pt;}
.yc{bottom:2556.573333pt;}
.y36{bottom:2560.733333pt;}
.y35{bottom:2599.133333pt;}
.y34{bottom:2637.533333pt;}
.yb{bottom:2659.973333pt;}
.y33{bottom:2675.933333pt;}
.y32{bottom:2714.373333pt;}
.ya{bottom:2763.333333pt;}
.y29{bottom:2837.026667pt;}
.y9{bottom:2866.853333pt;}
.y8{bottom:2970.213333pt;}
.y27{bottom:3038.333333pt;}
.y7{bottom:3073.573333pt;}
.y72{bottom:3099.360000pt;}
.y6{bottom:3176.933333pt;}
.y26{bottom:3191.933333pt;}
.y28{bottom:3227.546667pt;}
.y5{bottom:3280.453333pt;}
.y4{bottom:3383.813333pt;}
.y98{bottom:3474.853333pt;}
.y3{bottom:3487.200000pt;}
.y25{bottom:3557.093333pt;}
.y2{bottom:3590.720000pt;}
.y1{bottom:3694.080000pt;}
.h10{height:84.065625pt;}
.hd{height:89.000000pt;}
.he{height:91.875000pt;}
.h9{height:152.971875pt;}
.ha{height:183.750000pt;}
.hf{height:223.437500pt;}
.hb{height:229.687500pt;}
.h7{height:245.781250pt;}
.h3{height:247.603125pt;}
.h4{height:247.695000pt;}
.h8{height:252.748125pt;}
.hc{height:268.125000pt;}
.h6{height:357.500000pt;}
.h5{height:670.312500pt;}
.h1{height:3779.333333pt;}
.h2{height:3779.519674pt;}
.h0{height:3779.520000pt;}
.w1{width:3401.333333pt;}
.w2{width:3401.439998pt;}
.w0{width:3401.440000pt;}
.x0{left:0.000000pt;}
.x1{left:9.599998pt;}
.x2{left:78.175998pt;}
.x6{left:140.093331pt;}
.x42{left:206.533331pt;}
.x2a{left:210.879998pt;}
.x2b{left:218.079998pt;}
.x2c{left:222.399998pt;}
.x27{left:225.279998pt;}
.x28{left:231.039998pt;}
.x2f{left:234.399998pt;}
.x29{left:235.519998pt;}
.x26{left:252.479998pt;}
.x2e{left:261.119998pt;}
.x2d{left:312.159998pt;}
.x3{left:338.586664pt;}
.x7{left:340.133331pt;}
.x4{left:510.266664pt;}
.x9{left:874.719998pt;}
.x36{left:930.333331pt;}
.x35{left:936.573331pt;}
.x37{left:942.493331pt;}
.x41{left:976.799998pt;}
.x8{left:1008.506664pt;}
.x1d{left:1039.866664pt;}
.x1a{left:1048.026664pt;}
.x17{left:1064.026664pt;}
.x1c{left:1065.626664pt;}
.x19{left:1067.546664pt;}
.x18{left:1075.866664pt;}
.x1b{left:1080.986664pt;}
.x39{left:1106.333331pt;}
.x38{left:1136.413331pt;}
.x3a{left:1153.213331pt;}
.x3b{left:1306.333331pt;}
.x3c{left:1334.013331pt;}
.x14{left:1336.573331pt;}
.x13{left:1342.973331pt;}
.x15{left:1350.173331pt;}
.x16{left:1358.493331pt;}
.x12{left:1368.253331pt;}
.x10{left:1372.093331pt;}
.x11{left:1380.413331pt;}
.x22{left:1384.026664pt;}
.x20{left:1385.146664pt;}
.x23{left:1388.666664pt;}
.x24{left:1393.946664pt;}
.x1e{left:1410.106664pt;}
.x21{left:1417.786664pt;}
.x25{left:1423.386664pt;}
.x1f{left:1438.266664pt;}
.x3e{left:1519.773331pt;}
.x3f{left:1529.053331pt;}
.x40{left:1543.453331pt;}
.x3d{left:1547.933331pt;}
.x30{left:1761.413331pt;}
.x32{left:1784.986664pt;}
.x33{left:1833.026664pt;}
.xc{left:1849.119998pt;}
.xb{left:1913.119998pt;}
.x5{left:2058.973331pt;}
.xf{left:2074.626664pt;}
.x34{left:2131.426664pt;}
.xa{left:2219.226664pt;}
.x31{left:2229.346664pt;}
.xe{left:2849.986664pt;}
.xd{left:2871.906664pt;}
}




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