
    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_081c659a8df6c6a33ba02171.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_52945f7043e864a48fd47350.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_726bd606765855063e794765.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dd5c275caef0b54df9b69157.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_19538e528fbc5502fd66a313.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c5e8495e58e035d9e09e7017.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.223800px;}
.lsb{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.lse{letter-spacing:0.864000px;}
.lsd{letter-spacing:7.200000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-18.864000px;}
.ws8{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.208000px;}
.ws0{word-spacing:-15.300000px;}
.wsd{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.836200px;}
.ws9{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-4.896000px;}
._b{margin-left:-3.603840px;}
._10{margin-left:-2.263920px;}
._1{margin-left:-1.135440px;}
._2{width:1.015920px;}
._0{width:2.031840px;}
._f{width:3.157680px;}
._11{width:4.896000px;}
._d{width:6.871440px;}
._c{width:8.112000px;}
._e{width:9.193680px;}
._12{width:10.366320px;}
._18{width:11.706240px;}
._17{width:12.710880px;}
._6{width:13.752000px;}
._7{width:14.824080px;}
._5{width:16.632000px;}
._19{width:19.264080px;}
._14{width:20.882880px;}
._13{width:22.080000px;}
._1a{width:23.093760px;}
._1b{width:24.276480px;}
._8{width:25.992000px;}
._9{width:27.288000px;}
._1e{width:28.440000px;}
._1f{width:29.448000px;}
._16{width:30.667440px;}
._15{width:31.944000px;}
._27{width:41.112000px;}
._28{width:42.240000px;}
._1d{width:48.151440px;}
._23{width:50.376000px;}
._4{width:62.472000px;}
._3{width:63.859440px;}
._25{width:77.400000px;}
._26{width:78.496080px;}
._20{width:221.688000px;}
._24{width:255.528000px;}
._21{width:454.440000px;}
._22{width:455.796000px;}
._1c{width:929.856000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:23.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.ya{bottom:5.970000px;}
.y7{bottom:7.950000px;}
.y9{bottom:23.250000px;}
.y5{bottom:25.230000px;}
.y6{bottom:33.150000px;}
.y8{bottom:40.530000px;}
.y4{bottom:42.510000px;}
.yd{bottom:60.660000px;}
.yc{bottom:97.380000px;}
.y4f{bottom:126.216000px;}
.y45{bottom:136.656000px;}
.y81{bottom:140.616000px;}
.y4e{bottom:157.350000px;}
.y86{bottom:167.250000px;}
.y44{bottom:167.610000px;}
.y80{bottom:171.570000px;}
.y28{bottom:183.270000px;}
.y4d{bottom:188.310000px;}
.y61{bottom:192.990000px;}
.y43{bottom:198.750000px;}
.y7f{bottom:202.710000px;}
.y27{bottom:214.230000px;}
.y4c{bottom:219.450000px;}
.y42{bottom:229.710000px;}
.y7e{bottom:233.670000px;}
.y26{bottom:245.370000px;}
.y4b{bottom:250.410000px;}
.y41{bottom:260.850000px;}
.y7d{bottom:264.810000px;}
.y25{bottom:275.970000px;}
.y4a{bottom:281.550000px;}
.y82{bottom:286.050000px;}
.y40{bottom:291.810000px;}
.y7c{bottom:300.270000px;}
.y24{bottom:307.470000px;}
.y49{bottom:312.510000px;}
.y3f{bottom:322.950000px;}
.y60{bottom:327.450000px;}
.y7b{bottom:337.170000px;}
.y23{bottom:338.430000px;}
.y48{bottom:343.650000px;}
.y3e{bottom:353.910000px;}
.y5f{bottom:364.395000px;}
.y7a{bottom:368.175000px;}
.y22{bottom:369.615000px;}
.y47{bottom:374.655000px;}
.y85{bottom:384.735000px;}
.y3d{bottom:385.095000px;}
.y5e{bottom:395.355000px;}
.y79{bottom:399.315000px;}
.y21{bottom:400.575000px;}
.y69{bottom:405.795000px;}
.y46{bottom:410.295000px;}
.y3c{bottom:415.695000px;}
.y62{bottom:416.055000px;}
.y5d{bottom:426.495000px;}
.y78{bottom:430.275000px;}
.y20{bottom:431.535000px;}
.y68{bottom:436.755000px;}
.y3b{bottom:447.195000px;}
.y5c{bottom:457.455000px;}
.y70{bottom:457.635000px;}
.y77{bottom:461.415000px;}
.y67{bottom:467.895000px;}
.y1f{bottom:469.515000px;}
.y84{bottom:477.795000px;}
.y3a{bottom:478.155000px;}
.y5b{bottom:488.595000px;}
.y6f{bottom:488.775000px;}
.y76{bottom:492.375000px;}
.y1e{bottom:493.635000px;}
.y66{bottom:498.855000px;}
.y39{bottom:509.295000px;}
.y5a{bottom:519.555000px;}
.y6e{bottom:519.735000px;}
.y75{bottom:523.515000px;}
.y1d{bottom:524.775000px;}
.y65{bottom:529.995000px;}
.y38{bottom:540.255000px;}
.y59{bottom:550.695000px;}
.y6d{bottom:550.875000px;}
.y74{bottom:554.475000px;}
.y64{bottom:560.955000px;}
.y1c{bottom:562.575000px;}
.y37{bottom:571.395000px;}
.y6c{bottom:580.755000px;}
.y73{bottom:585.615000px;}
.y58{bottom:586.335000px;}
.y1b{bottom:586.875000px;}
.y63{bottom:592.095000px;}
.y36{bottom:602.385000px;}
.y6b{bottom:609.225000px;}
.y72{bottom:615.525000px;}
.y1a{bottom:617.865000px;}
.y57{bottom:623.085000px;}
.y35{bottom:633.525000px;}
.y6a{bottom:634.425000px;}
.y71{bottom:640.725000px;}
.y56{bottom:654.225000px;}
.y19{bottom:655.845000px;}
.y34{bottom:664.485000px;}
.y18{bottom:679.965000px;}
.y55{bottom:685.185000px;}
.y33{bottom:695.625000px;}
.y17{bottom:711.105000px;}
.y54{bottom:716.325000px;}
.y32{bottom:726.585000px;}
.y16{bottom:742.065000px;}
.y53{bottom:747.285000px;}
.y31{bottom:757.725000px;}
.y15{bottom:773.205000px;}
.y52{bottom:778.425000px;}
.y83{bottom:782.925000px;}
.y30{bottom:788.685000px;}
.y14{bottom:804.165000px;}
.y51{bottom:809.385000px;}
.y2f{bottom:819.825000px;}
.y13{bottom:837.465000px;}
.y50{bottom:845.070000px;}
.y2e{bottom:850.830000px;}
.y12{bottom:873.690000px;}
.y2d{bottom:881.970000px;}
.y11{bottom:909.870000px;}
.y2c{bottom:912.930000px;}
.y2b{bottom:943.890000px;}
.y10{bottom:946.050000px;}
.y2a{bottom:975.030000px;}
.yf{bottom:980.250000px;}
.y29{bottom:1005.990000px;}
.ye{bottom:1008.510000px;}
.yb{bottom:1040.190000px;}
.y3{bottom:1072.230000px;}
.y1{bottom:1128.420000px;}
.h2{height:17.280000px;}
.h6{height:23.632383px;}
.hc{height:47.344922px;}
.h4{height:56.196000px;}
.h3{height:58.651172px;}
.h8{height:60.226875px;}
.h11{height:64.546875px;}
.h10{height:65.010937px;}
.h7{height:65.884219px;}
.hf{height:66.757500px;}
.h9{height:70.664062px;}
.hd{height:72.562500px;}
.hb{height:74.704922px;}
.h5{height:77.837760px;}
.ha{height:84.898125px;}
.he{height:96.508125px;}
.h1{height:1188.000000px;}
.h0{height:1188.180000px;}
.w4{width:86.436000px;}
.w7{width:90.216000px;}
.w6{width:118.836000px;}
.w3{width:209.055000px;}
.w5{width:469.875000px;}
.w2{width:556.305000px;}
.w1{width:918.000000px;}
.w8{width:918.179986px;}
.w0{width:918.180000px;}
.x0{left:0.000000px;}
.x9{left:13.365000px;}
.x3{left:23.085000px;}
.x8{left:25.065000px;}
.x6{left:42.120000px;}
.x4{left:43.236000px;}
.xb{left:45.000000px;}
.x1{left:76.500000px;}
.xc{left:84.959986px;}
.x11{left:91.295986px;}
.x37{left:93.815986px;}
.x1d{left:99.935986px;}
.x1e{left:101.915986px;}
.x54{left:102.995986px;}
.x55{left:104.075986px;}
.x13{left:132.695986px;}
.x7{left:148.545000px;}
.x5{left:162.930000px;}
.x3a{left:166.349986px;}
.x43{left:190.469986px;}
.x44{left:192.269986px;}
.x2f{left:194.249986px;}
.x30{left:199.109986px;}
.x19{left:200.549986px;}
.xe{left:203.969986px;}
.x2d{left:206.669986px;}
.x2e{left:208.649986px;}
.x31{left:213.149986px;}
.x52{left:242.489986px;}
.x53{left:244.649986px;}
.x3c{left:265.169986px;}
.x3d{left:266.609986px;}
.x14{left:272.054986px;}
.x18{left:276.374986px;}
.x49{left:277.454986px;}
.x1a{left:281.594986px;}
.x25{left:287.894986px;}
.x12{left:291.134986px;}
.x32{left:307.874986px;}
.x33{left:309.134986px;}
.x34{left:318.314986px;}
.x35{left:319.574986px;}
.x16{left:320.834986px;}
.x17{left:322.274986px;}
.x38{left:340.274986px;}
.x5b{left:352.694986px;}
.x3e{left:357.374986px;}
.x3f{left:358.994986px;}
.x15{left:362.414986px;}
.x5a{left:376.454986px;}
.x3b{left:392.294986px;}
.x26{left:400.394986px;}
.x27{left:404.894986px;}
.x5c{left:409.574986px;}
.x28{left:414.074986px;}
.x29{left:418.574986px;}
.x4a{left:451.514986px;}
.xd{left:455.324986px;}
.x10{left:459.104986px;}
.x45{left:476.744986px;}
.x46{left:478.544986px;}
.x4c{left:540.824986px;}
.x4d{left:542.804986px;}
.x1f{left:546.404986px;}
.x20{left:547.844986px;}
.x50{left:574.304986px;}
.x51{left:577.364986px;}
.x21{left:613.724986px;}
.x22{left:614.984986px;}
.x58{left:616.964986px;}
.x59{left:618.224986px;}
.x40{left:620.744986px;}
.x41{left:623.084986px;}
.x2{left:632.805000px;}
.x56{left:645.989986px;}
.x57{left:650.849986px;}
.x2a{left:661.289986px;}
.x2b{left:665.789986px;}
.x23{left:691.169986px;}
.x24{left:692.609986px;}
.x39{left:700.709986px;}
.x36{left:707.009986px;}
.x4e{left:720.869986px;}
.x4f{left:722.849986px;}
.xf{left:730.769986px;}
.xa{left:751.650000px;}
.x47{left:791.249986px;}
.x48{left:793.229986px;}
.x42{left:805.649986px;}
.x2c{left:808.709986px;}
.x1b{left:812.309986px;}
.x1c{left:813.569986px;}
.x4b{left:833.219986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.198933pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.768000pt;}
.lsd{letter-spacing:6.400000pt;}
.wse{word-spacing:-16.768000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.296000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.521067pt;}
.ws9{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-4.352000pt;}
._b{margin-left:-3.203413pt;}
._10{margin-left:-2.012373pt;}
._1{margin-left:-1.009280pt;}
._2{width:0.903040pt;}
._0{width:1.806080pt;}
._f{width:2.806827pt;}
._11{width:4.352000pt;}
._d{width:6.107947pt;}
._c{width:7.210667pt;}
._e{width:8.172160pt;}
._12{width:9.214507pt;}
._18{width:10.405547pt;}
._17{width:11.298560pt;}
._6{width:12.224000pt;}
._7{width:13.176960pt;}
._5{width:14.784000pt;}
._19{width:17.123627pt;}
._14{width:18.562560pt;}
._13{width:19.626667pt;}
._1a{width:20.527787pt;}
._1b{width:21.579093pt;}
._8{width:23.104000pt;}
._9{width:24.256000pt;}
._1e{width:25.280000pt;}
._1f{width:26.176000pt;}
._16{width:27.259947pt;}
._15{width:28.394667pt;}
._27{width:36.544000pt;}
._28{width:37.546667pt;}
._1d{width:42.801280pt;}
._23{width:44.778667pt;}
._4{width:55.530667pt;}
._3{width:56.763947pt;}
._25{width:68.800000pt;}
._26{width:69.774293pt;}
._20{width:197.056000pt;}
._24{width:227.136000pt;}
._21{width:403.946667pt;}
._22{width:405.152000pt;}
._1c{width:826.538667pt;}
.fs2{font-size:21.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.ya{bottom:5.306667pt;}
.y7{bottom:7.066667pt;}
.y9{bottom:20.666667pt;}
.y5{bottom:22.426667pt;}
.y6{bottom:29.466667pt;}
.y8{bottom:36.026667pt;}
.y4{bottom:37.786667pt;}
.yd{bottom:53.920000pt;}
.yc{bottom:86.560000pt;}
.y4f{bottom:112.192000pt;}
.y45{bottom:121.472000pt;}
.y81{bottom:124.992000pt;}
.y4e{bottom:139.866667pt;}
.y86{bottom:148.666667pt;}
.y44{bottom:148.986667pt;}
.y80{bottom:152.506667pt;}
.y28{bottom:162.906667pt;}
.y4d{bottom:167.386667pt;}
.y61{bottom:171.546667pt;}
.y43{bottom:176.666667pt;}
.y7f{bottom:180.186667pt;}
.y27{bottom:190.426667pt;}
.y4c{bottom:195.066667pt;}
.y42{bottom:204.186667pt;}
.y7e{bottom:207.706667pt;}
.y26{bottom:218.106667pt;}
.y4b{bottom:222.586667pt;}
.y41{bottom:231.866667pt;}
.y7d{bottom:235.386667pt;}
.y25{bottom:245.306667pt;}
.y4a{bottom:250.266667pt;}
.y82{bottom:254.266667pt;}
.y40{bottom:259.386667pt;}
.y7c{bottom:266.906667pt;}
.y24{bottom:273.306667pt;}
.y49{bottom:277.786667pt;}
.y3f{bottom:287.066667pt;}
.y60{bottom:291.066667pt;}
.y7b{bottom:299.706667pt;}
.y23{bottom:300.826667pt;}
.y48{bottom:305.466667pt;}
.y3e{bottom:314.586667pt;}
.y5f{bottom:323.906667pt;}
.y7a{bottom:327.266667pt;}
.y22{bottom:328.546667pt;}
.y47{bottom:333.026667pt;}
.y85{bottom:341.986667pt;}
.y3d{bottom:342.306667pt;}
.y5e{bottom:351.426667pt;}
.y79{bottom:354.946667pt;}
.y21{bottom:356.066667pt;}
.y69{bottom:360.706667pt;}
.y46{bottom:364.706667pt;}
.y3c{bottom:369.506667pt;}
.y62{bottom:369.826667pt;}
.y5d{bottom:379.106667pt;}
.y78{bottom:382.466667pt;}
.y20{bottom:383.586667pt;}
.y68{bottom:388.226667pt;}
.y3b{bottom:397.506667pt;}
.y5c{bottom:406.626667pt;}
.y70{bottom:406.786667pt;}
.y77{bottom:410.146667pt;}
.y67{bottom:415.906667pt;}
.y1f{bottom:417.346667pt;}
.y84{bottom:424.706667pt;}
.y3a{bottom:425.026667pt;}
.y5b{bottom:434.306667pt;}
.y6f{bottom:434.466667pt;}
.y76{bottom:437.666667pt;}
.y1e{bottom:438.786667pt;}
.y66{bottom:443.426667pt;}
.y39{bottom:452.706667pt;}
.y5a{bottom:461.826667pt;}
.y6e{bottom:461.986667pt;}
.y75{bottom:465.346667pt;}
.y1d{bottom:466.466667pt;}
.y65{bottom:471.106667pt;}
.y38{bottom:480.226667pt;}
.y59{bottom:489.506667pt;}
.y6d{bottom:489.666667pt;}
.y74{bottom:492.866667pt;}
.y64{bottom:498.626667pt;}
.y1c{bottom:500.066667pt;}
.y37{bottom:507.906667pt;}
.y6c{bottom:516.226667pt;}
.y73{bottom:520.546667pt;}
.y58{bottom:521.186667pt;}
.y1b{bottom:521.666667pt;}
.y63{bottom:526.306667pt;}
.y36{bottom:535.453333pt;}
.y6b{bottom:541.533333pt;}
.y72{bottom:547.133333pt;}
.y1a{bottom:549.213333pt;}
.y57{bottom:553.853333pt;}
.y35{bottom:563.133333pt;}
.y6a{bottom:563.933333pt;}
.y71{bottom:569.533333pt;}
.y56{bottom:581.533333pt;}
.y19{bottom:582.973333pt;}
.y34{bottom:590.653333pt;}
.y18{bottom:604.413333pt;}
.y55{bottom:609.053333pt;}
.y33{bottom:618.333333pt;}
.y17{bottom:632.093333pt;}
.y54{bottom:636.733333pt;}
.y32{bottom:645.853333pt;}
.y16{bottom:659.613333pt;}
.y53{bottom:664.253333pt;}
.y31{bottom:673.533333pt;}
.y15{bottom:687.293333pt;}
.y52{bottom:691.933333pt;}
.y83{bottom:695.933333pt;}
.y30{bottom:701.053333pt;}
.y14{bottom:714.813333pt;}
.y51{bottom:719.453333pt;}
.y2f{bottom:728.733333pt;}
.y13{bottom:744.413333pt;}
.y50{bottom:751.173333pt;}
.y2e{bottom:756.293333pt;}
.y12{bottom:776.613333pt;}
.y2d{bottom:783.973333pt;}
.y11{bottom:808.773333pt;}
.y2c{bottom:811.493333pt;}
.y2b{bottom:839.013333pt;}
.y10{bottom:840.933333pt;}
.y2a{bottom:866.693333pt;}
.yf{bottom:871.333333pt;}
.y29{bottom:894.213333pt;}
.ye{bottom:896.453333pt;}
.yb{bottom:924.613333pt;}
.y3{bottom:953.093333pt;}
.y1{bottom:1003.040000pt;}
.h2{height:15.360000pt;}
.h6{height:21.006562pt;}
.hc{height:42.084375pt;}
.h4{height:49.952000pt;}
.h3{height:52.134375pt;}
.h8{height:53.535000pt;}
.h11{height:57.375000pt;}
.h10{height:57.787500pt;}
.h7{height:58.563750pt;}
.hf{height:59.340000pt;}
.h9{height:62.812500pt;}
.hd{height:64.500000pt;}
.hb{height:66.404375pt;}
.h5{height:69.189120pt;}
.ha{height:75.465000pt;}
.he{height:85.785000pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.160000pt;}
.w4{width:76.832000pt;}
.w7{width:80.192000pt;}
.w6{width:105.632000pt;}
.w3{width:185.826667pt;}
.w5{width:417.666667pt;}
.w2{width:494.493333pt;}
.w1{width:816.000000pt;}
.w8{width:816.159988pt;}
.w0{width:816.160000pt;}
.x0{left:0.000000pt;}
.x9{left:11.880000pt;}
.x3{left:20.520000pt;}
.x8{left:22.280000pt;}
.x6{left:37.440000pt;}
.x4{left:38.432000pt;}
.xb{left:40.000000pt;}
.x1{left:68.000000pt;}
.xc{left:75.519988pt;}
.x11{left:81.151988pt;}
.x37{left:83.391988pt;}
.x1d{left:88.831988pt;}
.x1e{left:90.591988pt;}
.x54{left:91.551988pt;}
.x55{left:92.511988pt;}
.x13{left:117.951988pt;}
.x7{left:132.040000pt;}
.x5{left:144.826667pt;}
.x3a{left:147.866655pt;}
.x43{left:169.306655pt;}
.x44{left:170.906655pt;}
.x2f{left:172.666655pt;}
.x30{left:176.986655pt;}
.x19{left:178.266655pt;}
.xe{left:181.306655pt;}
.x2d{left:183.706655pt;}
.x2e{left:185.466655pt;}
.x31{left:189.466655pt;}
.x52{left:215.546655pt;}
.x53{left:217.466655pt;}
.x3c{left:235.706655pt;}
.x3d{left:236.986655pt;}
.x14{left:241.826655pt;}
.x18{left:245.666655pt;}
.x49{left:246.626655pt;}
.x1a{left:250.306655pt;}
.x25{left:255.906655pt;}
.x12{left:258.786655pt;}
.x32{left:273.666655pt;}
.x33{left:274.786655pt;}
.x34{left:282.946655pt;}
.x35{left:284.066655pt;}
.x16{left:285.186655pt;}
.x17{left:286.466655pt;}
.x38{left:302.466655pt;}
.x5b{left:313.506655pt;}
.x3e{left:317.666655pt;}
.x3f{left:319.106655pt;}
.x15{left:322.146655pt;}
.x5a{left:334.626655pt;}
.x3b{left:348.706655pt;}
.x26{left:355.906655pt;}
.x27{left:359.906655pt;}
.x5c{left:364.066655pt;}
.x28{left:368.066655pt;}
.x29{left:372.066655pt;}
.x4a{left:401.346655pt;}
.xd{left:404.733321pt;}
.x10{left:408.093321pt;}
.x45{left:423.773321pt;}
.x46{left:425.373321pt;}
.x4c{left:480.733321pt;}
.x4d{left:482.493321pt;}
.x1f{left:485.693321pt;}
.x20{left:486.973321pt;}
.x50{left:510.493321pt;}
.x51{left:513.213321pt;}
.x21{left:545.533321pt;}
.x22{left:546.653321pt;}
.x58{left:548.413321pt;}
.x59{left:549.533321pt;}
.x40{left:551.773321pt;}
.x41{left:553.853321pt;}
.x2{left:562.493333pt;}
.x56{left:574.213321pt;}
.x57{left:578.533321pt;}
.x2a{left:587.813321pt;}
.x2b{left:591.813321pt;}
.x23{left:614.373321pt;}
.x24{left:615.653321pt;}
.x39{left:622.853321pt;}
.x36{left:628.453321pt;}
.x4e{left:640.773321pt;}
.x4f{left:642.533321pt;}
.xf{left:649.573321pt;}
.xa{left:668.133333pt;}
.x47{left:703.333321pt;}
.x48{left:705.093321pt;}
.x42{left:716.133321pt;}
.x2c{left:718.853321pt;}
.x1b{left:722.053321pt;}
.x1c{left:723.173321pt;}
.x4b{left:740.639988pt;}
}




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