
    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_18a762019840de74675a7968.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_24c207dbf5ab44fbc3d867ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_63e8681b924e338fb350ec50.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_729d932ea027fe267ddf3187.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_6611c1c88dacab39c229c406.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_f47820d40b6ea6d33e3fe106.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.055000;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_aaafe2e9823e1dc5b98cabdc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.879999px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.057866px;}
.ls13{letter-spacing:0.332100px;}
.lse{letter-spacing:2.047986px;}
.ls1{letter-spacing:2.115295px;}
.ls6{letter-spacing:2.338545px;}
.lsa{letter-spacing:2.633795px;}
.lsc{letter-spacing:2.679779px;}
.lsf{letter-spacing:2.739059px;}
.ls3{letter-spacing:2.768412px;}
.ls7{letter-spacing:2.892367px;}
.lsd{letter-spacing:2.924354px;}
.ls8{letter-spacing:2.970338px;}
.ls2{letter-spacing:3.058971px;}
.ls4{letter-spacing:3.126280px;}
.ls9{letter-spacing:3.193588px;}
.lsb{letter-spacing:3.488839px;}
.ls5{letter-spacing:3.690764px;}
.ls11{letter-spacing:5.232418px;}
.ls10{letter-spacing:16.039014px;}
.ls14{letter-spacing:58.312897px;}
.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:-18.039559px;}
.ws1{word-spacing:-14.939994px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.110915px;}
._0{width:1.558951px;}
._6{width:3.123292px;}
._5{width:4.329268px;}
._3{width:5.437890px;}
._2{width:7.088596px;}
._4{width:8.290963px;}
._e{width:9.494462px;}
._f{width:10.511229px;}
._d{width:11.524041px;}
._b{width:12.553629px;}
._a{width:13.887589px;}
._8{width:16.529119px;}
._9{width:17.536831px;}
._7{width:19.220299px;}
._c{width:21.315353px;}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.759976px;}
.fs0{font-size:71.926771px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.139909px;}
.y2{bottom:223.110000px;}
.y1{bottom:227.249909px;}
.y3d{bottom:267.210643px;}
.y77{bottom:269.370642px;}
.y95{bottom:278.910638px;}
.y3c{bottom:282.690637px;}
.y76{bottom:284.850636px;}
.y94{bottom:294.390632px;}
.y3b{bottom:298.350631px;}
.y75{bottom:300.330630px;}
.y93{bottom:309.870626px;}
.y3a{bottom:313.830624px;}
.y74{bottom:321.930621px;}
.y92{bottom:325.350620px;}
.y39{bottom:329.310618px;}
.y73{bottom:337.410615px;}
.y91{bottom:341.010614px;}
.y38{bottom:344.790612px;}
.y72{bottom:359.010606px;}
.y37{bottom:360.450606px;}
.y90{bottom:362.430605px;}
.y71{bottom:374.490600px;}
.y36{bottom:375.930600px;}
.y8f{bottom:377.910599px;}
.y70{bottom:389.970594px;}
.y8e{bottom:393.570593px;}
.y35{bottom:397.350591px;}
.y6f{bottom:405.630588px;}
.y8d{bottom:409.050586px;}
.y34{bottom:413.010585px;}
.y6e{bottom:421.110582px;}
.y8c{bottom:424.530580px;}
.y33{bottom:428.490579px;}
.y6d{bottom:442.530573px;}
.y32{bottom:443.970572px;}
.y8b{bottom:446.130572px;}
.y6c{bottom:458.190567px;}
.y31{bottom:459.450566px;}
.y8a{bottom:461.610565px;}
.y6b{bottom:473.670561px;}
.y30{bottom:475.110560px;}
.y89{bottom:477.090559px;}
.y6a{bottom:489.150554px;}
.y2f{bottom:490.590554px;}
.y88{bottom:498.690551px;}
.y69{bottom:504.630548px;}
.y2e{bottom:506.070548px;}
.y87{bottom:514.170544px;}
.y68{bottom:520.290542px;}
.y2d{bottom:521.550541px;}
.y86{bottom:529.650538px;}
.y67{bottom:535.770536px;}
.y2c{bottom:537.210535px;}
.y85{bottom:545.310532px;}
.y2b{bottom:552.690529px;}
.y66{bottom:557.190527px;}
.y84{bottom:560.790526px;}
.y2a{bottom:568.170523px;}
.y65{bottom:572.850521px;}
.y83{bottom:582.210517px;}
.y29{bottom:583.650517px;}
.y64{bottom:588.330515px;}
.y28{bottom:599.130510px;}
.y82{bottom:600.570510px;}
.y63{bottom:603.810508px;}
.y27{bottom:614.790504px;}
.y62{bottom:619.290502px;}
.y26{bottom:630.270498px;}
.y61{bottom:634.950496px;}
.y25{bottom:645.750492px;}
.y60{bottom:650.430490px;}
.y24{bottom:661.230486px;}
.y5f{bottom:671.850481px;}
.y23{bottom:682.830477px;}
.y5e{bottom:687.510475px;}
.y22{bottom:698.310471px;}
.y5d{bottom:702.990469px;}
.y21{bottom:713.970464px;}
.y5c{bottom:718.470463px;}
.y20{bottom:729.450458px;}
.y5b{bottom:733.950456px;}
.y1f{bottom:744.930452px;}
.y5a{bottom:749.610450px;}
.y1e{bottom:760.410446px;}
.y59{bottom:771.030442px;}
.y1d{bottom:775.890440px;}
.y58{bottom:786.510435px;}
.y1c{bottom:791.550433px;}
.y57{bottom:802.170429px;}
.y1b{bottom:807.030427px;}
.y56{bottom:817.650423px;}
.y1a{bottom:822.510421px;}
.y55{bottom:833.130417px;}
.y19{bottom:844.110412px;}
.y54{bottom:848.610411px;}
.y18{bottom:859.590406px;}
.y53{bottom:864.270404px;}
.y17{bottom:875.070400px;}
.y52{bottom:885.690396px;}
.y16{bottom:890.730394px;}
.y51{bottom:901.170390px;}
.y15{bottom:906.210388px;}
.y50{bottom:916.830383px;}
.y14{bottom:921.690381px;}
.y4f{bottom:932.310377px;}
.y13{bottom:937.170375px;}
.y4e{bottom:947.790371px;}
.y12{bottom:952.830369px;}
.y4d{bottom:963.270365px;}
.y11{bottom:968.310363px;}
.y4c{bottom:978.930358px;}
.y10{bottom:991.530353px;}
.y4b{bottom:994.410352px;}
.yf{bottom:1006.830347px;}
.y81{bottom:1009.170346px;}
.y4a{bottom:1009.890346px;}
.ye{bottom:1022.310341px;}
.y49{bottom:1025.370340px;}
.y80{bottom:1030.590338px;}
.yd{bottom:1037.790335px;}
.y48{bottom:1041.030334px;}
.y7f{bottom:1046.250331px;}
.yc{bottom:1053.450329px;}
.y47{bottom:1056.510327px;}
.y9b{bottom:1061.010326px;}
.y7e{bottom:1067.670323px;}
.yb{bottom:1069.110322px;}
.y46{bottom:1077.930319px;}
.y7d{bottom:1083.150317px;}
.y9a{bottom:1084.050316px;}
.ya{bottom:1091.610313px;}
.y45{bottom:1093.590313px;}
.y7c{bottom:1098.810310px;}
.y99{bottom:1099.530310px;}
.y44{bottom:1109.070306px;}
.y9{bottom:1111.770305px;}
.y98{bottom:1115.009554px;}
.y7b{bottom:1120.229552px;}
.y43{bottom:1124.549550px;}
.y97{bottom:1130.669548px;}
.y8{bottom:1131.569547px;}
.y7a{bottom:1136.789545px;}
.y42{bottom:1140.029544px;}
.y96{bottom:1146.149542px;}
.y79{bottom:1153.529539px;}
.y41{bottom:1161.629535px;}
.y6{bottom:1165.229534px;}
.y7{bottom:1165.949534px;}
.y78{bottom:1170.089532px;}
.y40{bottom:1177.109529px;}
.y4{bottom:1183.769526px;}
.y5{bottom:1184.489526px;}
.y3f{bottom:1192.769523px;}
.y3e{bottom:1208.249517px;}
.h3{height:18.720000px;}
.h7{height:40.816064px;}
.h6{height:41.772223px;}
.h5{height:42.608863px;}
.h4{height:51.335979px;}
.h8{height:53.186379px;}
.h2{height:64.014826px;}
.h1{height:1262.970000px;}
.h0{height:1263.000000px;}
.w2{width:27.000000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4b{left:101.669659px;}
.x1{left:144.149642px;}
.x4c{left:171.149543px;}
.x3{left:182.129927px;}
.x4{left:192.209923px;}
.x5{left:206.249918px;}
.x6{left:219.209912px;}
.x7{left:231.269907px;}
.x8{left:238.469905px;}
.x9{left:252.329899px;}
.xa{left:265.289894px;}
.xb{left:269.789892px;}
.xc{left:276.809889px;}
.xd{left:289.769884px;}
.xe{left:302.729879px;}
.xf{left:314.789874px;}
.x10{left:324.869870px;}
.x11{left:336.929865px;}
.x39{left:341.249864px;}
.x3a{left:352.589859px;}
.x12{left:353.849858px;}
.x13{left:365.909854px;}
.x3b{left:376.349849px;}
.x14{left:378.869848px;}
.x3c{left:389.309844px;}
.x15{left:390.929844px;}
.x16{left:395.429842px;}
.x17{left:402.449839px;}
.x3d{left:412.349835px;}
.x18{left:415.409834px;}
.x19{left:419.909832px;}
.x1a{left:433.949826px;}
.x1b{left:446.909821px;}
.x3e{left:450.869820px;}
.x2{left:453.929400px;}
.x1c{left:459.869816px;}
.x1d{left:464.369814px;}
.x3f{left:468.869812px;}
.x40{left:475.889810px;}
.x1e{left:477.329809px;}
.x41{left:487.949805px;}
.x1f{left:489.389804px;}
.x42{left:501.989799px;}
.x20{left:503.249799px;}
.x43{left:509.009796px;}
.x21{left:510.269796px;}
.x44{left:521.969791px;}
.x22{left:524.309790px;}
.x45{left:526.469789px;}
.x23{left:537.449785px;}
.x46{left:538.529785px;}
.x24{left:543.389783px;}
.x25{left:547.889781px;}
.x47{left:552.569779px;}
.x26{left:560.849776px;}
.x27{left:565.349774px;}
.x48{left:569.129772px;}
.x28{left:578.309769px;}
.x49{left:581.189768px;}
.x29{left:591.269763px;}
.x4a{left:593.969762px;}
.x2a{left:601.349759px;}
.x2b{left:613.409755px;}
.x2c{left:617.909753px;}
.x2d{left:627.989749px;}
.x2e{left:640.049744px;}
.x2f{left:653.009739px;}
.x30{left:665.969734px;}
.x31{left:678.929728px;}
.x32{left:683.429727px;}
.x33{left:697.469721px;}
.x34{left:710.429716px;}
.x35{left:714.929714px;}
.x36{left:726.989709px;}
.x37{left:741.029704px;}
.x38{left:753.089699px;}
.x4d{left:765.330794px;}
@media print{
.v1{vertical-align:-2.559999pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.051436pt;}
.ls13{letter-spacing:0.295200pt;}
.lse{letter-spacing:1.820432pt;}
.ls1{letter-spacing:1.880262pt;}
.ls6{letter-spacing:2.078707pt;}
.lsa{letter-spacing:2.341151pt;}
.lsc{letter-spacing:2.382026pt;}
.lsf{letter-spacing:2.434719pt;}
.ls3{letter-spacing:2.460811pt;}
.ls7{letter-spacing:2.570993pt;}
.lsd{letter-spacing:2.599426pt;}
.ls8{letter-spacing:2.640300pt;}
.ls2{letter-spacing:2.719085pt;}
.ls4{letter-spacing:2.778915pt;}
.ls9{letter-spacing:2.838745pt;}
.lsb{letter-spacing:3.101190pt;}
.ls5{letter-spacing:3.280679pt;}
.ls11{letter-spacing:4.651038pt;}
.ls10{letter-spacing:14.256901pt;}
.ls14{letter-spacing:51.833686pt;}
.ws0{word-spacing:-16.035163pt;}
.ws1{word-spacing:-13.279995pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-0.987480pt;}
._0{width:1.385734pt;}
._6{width:2.776260pt;}
._5{width:3.848238pt;}
._3{width:4.833680pt;}
._2{width:6.300974pt;}
._4{width:7.369745pt;}
._e{width:8.439521pt;}
._f{width:9.343315pt;}
._d{width:10.243592pt;}
._b{width:11.158782pt;}
._a{width:12.344524pt;}
._8{width:14.692551pt;}
._9{width:15.588294pt;}
._7{width:17.084710pt;}
._c{width:18.946981pt;}
.fs2{font-size:53.119979pt;}
.fs0{font-size:63.934908pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.679919pt;}
.y2{bottom:198.320000pt;}
.y1{bottom:201.999919pt;}
.y3d{bottom:237.520572pt;}
.y77{bottom:239.440571pt;}
.y95{bottom:247.920567pt;}
.y3c{bottom:251.280566pt;}
.y76{bottom:253.200565pt;}
.y94{bottom:261.680562pt;}
.y3b{bottom:265.200561pt;}
.y75{bottom:266.960560pt;}
.y93{bottom:275.440556pt;}
.y3a{bottom:278.960555pt;}
.y74{bottom:286.160552pt;}
.y92{bottom:289.200551pt;}
.y39{bottom:292.720550pt;}
.y73{bottom:299.920547pt;}
.y91{bottom:303.120545pt;}
.y38{bottom:306.480544pt;}
.y72{bottom:319.120539pt;}
.y37{bottom:320.400539pt;}
.y90{bottom:322.160538pt;}
.y71{bottom:332.880534pt;}
.y36{bottom:334.160533pt;}
.y8f{bottom:335.920532pt;}
.y70{bottom:346.640528pt;}
.y8e{bottom:349.840527pt;}
.y35{bottom:353.200525pt;}
.y6f{bottom:360.560522pt;}
.y8d{bottom:363.600521pt;}
.y34{bottom:367.120520pt;}
.y6e{bottom:374.320517pt;}
.y8c{bottom:377.360516pt;}
.y33{bottom:380.880514pt;}
.y6d{bottom:393.360509pt;}
.y32{bottom:394.640509pt;}
.y8b{bottom:396.560508pt;}
.y6c{bottom:407.280504pt;}
.y31{bottom:408.400503pt;}
.y8a{bottom:410.320503pt;}
.y6b{bottom:421.040498pt;}
.y30{bottom:422.320498pt;}
.y89{bottom:424.080497pt;}
.y6a{bottom:434.800493pt;}
.y2f{bottom:436.080492pt;}
.y88{bottom:443.280489pt;}
.y69{bottom:448.560487pt;}
.y2e{bottom:449.840487pt;}
.y87{bottom:457.040484pt;}
.y68{bottom:462.480482pt;}
.y2d{bottom:463.600481pt;}
.y86{bottom:470.800478pt;}
.y67{bottom:476.240476pt;}
.y2c{bottom:477.520476pt;}
.y85{bottom:484.720473pt;}
.y2b{bottom:491.280470pt;}
.y66{bottom:495.280469pt;}
.y84{bottom:498.480467pt;}
.y2a{bottom:505.040465pt;}
.y65{bottom:509.200463pt;}
.y83{bottom:517.520460pt;}
.y29{bottom:518.800459pt;}
.y64{bottom:522.960457pt;}
.y28{bottom:532.560454pt;}
.y82{bottom:533.840453pt;}
.y63{bottom:536.720452pt;}
.y27{bottom:546.480448pt;}
.y62{bottom:550.480446pt;}
.y26{bottom:560.240443pt;}
.y61{bottom:564.400441pt;}
.y25{bottom:574.000437pt;}
.y60{bottom:578.160435pt;}
.y24{bottom:587.760432pt;}
.y5f{bottom:597.200428pt;}
.y23{bottom:606.960424pt;}
.y5e{bottom:611.120422pt;}
.y22{bottom:620.720418pt;}
.y5d{bottom:624.880417pt;}
.y21{bottom:634.640413pt;}
.y5c{bottom:638.640411pt;}
.y20{bottom:648.400407pt;}
.y5b{bottom:652.400406pt;}
.y1f{bottom:662.160402pt;}
.y5a{bottom:666.320400pt;}
.y1e{bottom:675.920396pt;}
.y59{bottom:685.360393pt;}
.y1d{bottom:689.680391pt;}
.y58{bottom:699.120387pt;}
.y1c{bottom:703.600385pt;}
.y57{bottom:713.040381pt;}
.y1b{bottom:717.360380pt;}
.y56{bottom:726.800376pt;}
.y1a{bottom:731.120374pt;}
.y55{bottom:740.560370pt;}
.y19{bottom:750.320367pt;}
.y54{bottom:754.320365pt;}
.y18{bottom:764.080361pt;}
.y53{bottom:768.240359pt;}
.y17{bottom:777.840356pt;}
.y52{bottom:787.280352pt;}
.y16{bottom:791.760350pt;}
.y51{bottom:801.040346pt;}
.y15{bottom:805.520344pt;}
.y50{bottom:814.960341pt;}
.y14{bottom:819.280339pt;}
.y4f{bottom:828.720335pt;}
.y13{bottom:833.040333pt;}
.y4e{bottom:842.480330pt;}
.y12{bottom:846.960328pt;}
.y4d{bottom:856.240324pt;}
.y11{bottom:860.720322pt;}
.y4c{bottom:870.160319pt;}
.y10{bottom:881.360314pt;}
.y4b{bottom:883.920313pt;}
.yf{bottom:894.960309pt;}
.y81{bottom:897.040308pt;}
.y4a{bottom:897.680308pt;}
.ye{bottom:908.720303pt;}
.y49{bottom:911.440302pt;}
.y80{bottom:916.080300pt;}
.yd{bottom:922.480298pt;}
.y48{bottom:925.360297pt;}
.y7f{bottom:930.000295pt;}
.yc{bottom:936.400292pt;}
.y47{bottom:939.120291pt;}
.y9b{bottom:943.120289pt;}
.y7e{bottom:949.040287pt;}
.yb{bottom:950.320287pt;}
.y46{bottom:958.160283pt;}
.y7d{bottom:962.800282pt;}
.y9a{bottom:963.600281pt;}
.ya{bottom:970.320279pt;}
.y45{bottom:972.080278pt;}
.y7c{bottom:976.720276pt;}
.y99{bottom:977.360276pt;}
.y44{bottom:985.840272pt;}
.y9{bottom:988.240271pt;}
.y98{bottom:991.119604pt;}
.y7b{bottom:995.759602pt;}
.y43{bottom:999.599600pt;}
.y97{bottom:1005.039598pt;}
.y8{bottom:1005.839598pt;}
.y7a{bottom:1010.479596pt;}
.y42{bottom:1013.359595pt;}
.y96{bottom:1018.799592pt;}
.y79{bottom:1025.359590pt;}
.y41{bottom:1032.559587pt;}
.y6{bottom:1035.759586pt;}
.y7{bottom:1036.399585pt;}
.y78{bottom:1040.079584pt;}
.y40{bottom:1046.319581pt;}
.y4{bottom:1052.239579pt;}
.y5{bottom:1052.879579pt;}
.y3f{bottom:1060.239576pt;}
.y3e{bottom:1073.999570pt;}
.h3{height:16.640000pt;}
.h7{height:36.280945pt;}
.h6{height:37.130865pt;}
.h5{height:37.874545pt;}
.h4{height:45.631982pt;}
.h8{height:47.276781pt;}
.h2{height:56.902068pt;}
.h1{height:1122.640000pt;}
.h0{height:1122.666667pt;}
.w2{width:24.000000pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4b{left:90.373031pt;}
.x1{left:128.133015pt;}
.x4c{left:152.132927pt;}
.x3{left:161.893269pt;}
.x4{left:170.853265pt;}
.x5{left:183.333260pt;}
.x6{left:194.853255pt;}
.x7{left:205.573251pt;}
.x8{left:211.973249pt;}
.x9{left:224.293244pt;}
.xa{left:235.813239pt;}
.xb{left:239.813237pt;}
.xc{left:246.053235pt;}
.xd{left:257.573230pt;}
.xe{left:269.093226pt;}
.xf{left:279.813221pt;}
.x10{left:288.773218pt;}
.x11{left:299.493214pt;}
.x39{left:303.333212pt;}
.x3a{left:313.413208pt;}
.x12{left:314.533208pt;}
.x13{left:325.253203pt;}
.x3b{left:334.533200pt;}
.x14{left:336.773199pt;}
.x3c{left:346.053195pt;}
.x15{left:347.493194pt;}
.x16{left:351.493193pt;}
.x17{left:357.733190pt;}
.x3d{left:366.533187pt;}
.x18{left:369.253186pt;}
.x19{left:373.253184pt;}
.x1a{left:385.733179pt;}
.x1b{left:397.253174pt;}
.x3e{left:400.773173pt;}
.x2{left:403.492800pt;}
.x1c{left:408.773170pt;}
.x1d{left:412.773168pt;}
.x3f{left:416.773167pt;}
.x40{left:423.013164pt;}
.x1e{left:424.293164pt;}
.x41{left:433.733160pt;}
.x1f{left:435.013159pt;}
.x42{left:446.213155pt;}
.x20{left:447.333154pt;}
.x43{left:452.453152pt;}
.x21{left:453.573152pt;}
.x44{left:463.973148pt;}
.x22{left:466.053147pt;}
.x45{left:467.973146pt;}
.x23{left:477.733142pt;}
.x46{left:478.693142pt;}
.x24{left:483.013140pt;}
.x25{left:487.013139pt;}
.x47{left:491.173137pt;}
.x26{left:498.533134pt;}
.x27{left:502.533132pt;}
.x48{left:505.893131pt;}
.x28{left:514.053128pt;}
.x49{left:516.613127pt;}
.x29{left:525.573123pt;}
.x4a{left:527.973122pt;}
.x2a{left:534.533120pt;}
.x2b{left:545.253115pt;}
.x2c{left:549.253114pt;}
.x2d{left:558.213110pt;}
.x2e{left:568.933106pt;}
.x2f{left:580.453101pt;}
.x30{left:591.973097pt;}
.x31{left:603.493092pt;}
.x32{left:607.493090pt;}
.x33{left:619.973085pt;}
.x34{left:631.493081pt;}
.x35{left:635.493079pt;}
.x36{left:646.213075pt;}
.x37{left:658.693070pt;}
.x38{left:669.413066pt;}
.x4d{left:680.294039pt;}
}




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