
    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_f241f1d9758ee8849744b738.woff')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_456e9ccd256998ebf61f281a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_a65d9e58366aa1998f32b097.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_0819d862a1a2d1bf1d5b0bbd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.968000;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_9a1fd3c32e4934bc5319afb9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_6e34cbc2bf47cc2fbeeb14ee.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_051069d5b3ce8050c1fb8fda.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-14.208000px;}
.v4{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.856000px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.339000px;}
.ls5{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.936000px;}
.lsf{letter-spacing:1.008000px;}
.ls15{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.152000px;}
.ls1d{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.440000px;}
.ls1a{letter-spacing:1.512000px;}
.ls12{letter-spacing:1.584000px;}
.ls18{letter-spacing:1.656000px;}
.ls17{letter-spacing:1.800000px;}
.ls7{letter-spacing:1.872000px;}
.ls1f{letter-spacing:4.752000px;}
.ls16{letter-spacing:5.976000px;}
.ls2{letter-spacing:7.380000px;}
.ls0{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.lsa{letter-spacing:11.952000px;}
.ls19{letter-spacing:13.032000px;}
.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;}
}
.ws1c{word-spacing:-61.560000px;}
.ws17{word-spacing:-61.344000px;}
.ws8{word-spacing:-60.480000px;}
.ws1a{word-spacing:-50.328000px;}
.ws1b{word-spacing:-50.184000px;}
.ws11{word-spacing:-50.112000px;}
.ws1f{word-spacing:-50.040000px;}
.ws1d{word-spacing:-49.968000px;}
.ws24{word-spacing:-49.824000px;}
.ws14{word-spacing:-49.608000px;}
.wsf{word-spacing:-49.536000px;}
.ws12{word-spacing:-49.464000px;}
.ws15{word-spacing:-49.392000px;}
.ws13{word-spacing:-49.320000px;}
.ws7{word-spacing:-49.248000px;}
.ws3{word-spacing:-49.176000px;}
.ws25{word-spacing:-49.104000px;}
.ws1e{word-spacing:-49.032000px;}
.wsa{word-spacing:-48.960000px;}
.ws16{word-spacing:-48.888000px;}
.ws23{word-spacing:-48.816000px;}
.wsd{word-spacing:-48.744000px;}
.ws10{word-spacing:-48.672000px;}
.ws4{word-spacing:-48.528000px;}
.ws2{word-spacing:-47.820000px;}
.ws1{word-spacing:-40.440000px;}
.ws19{word-spacing:-37.296000px;}
.ws18{word-spacing:-37.008000px;}
.wsb{word-spacing:-36.936000px;}
.wsc{word-spacing:-36.576000px;}
.wse{word-spacing:-36.288000px;}
.ws9{word-spacing:-36.144000px;}
.ws22{word-spacing:-35.928000px;}
.ws27{word-spacing:-32.352000px;}
.ws6{word-spacing:-25.320000px;}
.ws26{word-spacing:-20.592000px;}
.ws21{word-spacing:-20.232000px;}
.ws20{word-spacing:-14.162400px;}
.ws28{word-spacing:-9.441600px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:129.300000px;}
._16{margin-left:-15.180000px;}
._15{margin-left:-13.956000px;}
._4{margin-left:-11.880000px;}
._8{margin-left:-10.740000px;}
._13{margin-left:-9.468000px;}
._12{margin-left:-8.460000px;}
._a{margin-left:-7.200000px;}
._2{margin-left:-5.580000px;}
._10{margin-left:-3.588000px;}
._0{margin-left:-2.400000px;}
._7{margin-left:-1.260000px;}
._6{width:1.200000px;}
._3{width:2.700000px;}
._1{width:4.200000px;}
._f{width:5.208000px;}
._c{width:6.252000px;}
._5{width:8.040000px;}
._d{width:9.888000px;}
._b{width:11.160000px;}
._14{width:12.180000px;}
._9{width:13.200000px;}
._e{width:14.544000px;}
._11{width:166.260000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:33.600000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.257850px;}
.ydb{bottom:139.319850px;}
.yac{bottom:142.157850px;}
.y66{bottom:143.105250px;}
.y42{bottom:144.557850px;}
.y1e{bottom:144.776250px;}
.y8a{bottom:145.307850px;}
.yda{bottom:155.063850px;}
.yab{bottom:165.107850px;}
.y65{bottom:166.055250px;}
.y41{bottom:167.507850px;}
.y1d{bottom:167.870250px;}
.y89{bottom:168.257850px;}
.yd9{bottom:170.807850px;}
.yd8{bottom:186.551850px;}
.yaa{bottom:188.057850px;}
.y64{bottom:189.005250px;}
.y40{bottom:190.457850px;}
.y1c{bottom:190.964250px;}
.y88{bottom:191.207850px;}
.yd7{bottom:202.295850px;}
.ya9{bottom:211.007850px;}
.y63{bottom:211.955250px;}
.y3f{bottom:213.407850px;}
.y1b{bottom:214.058250px;}
.y87{bottom:214.157850px;}
.yd6{bottom:218.039850px;}
.yd5{bottom:233.783850px;}
.ya8{bottom:233.957850px;}
.y62{bottom:234.905250px;}
.y3e{bottom:236.357850px;}
.y86{bottom:237.083850px;}
.y1a{bottom:237.152250px;}
.yd4{bottom:249.527850px;}
.ya7{bottom:256.907850px;}
.y61{bottom:257.855250px;}
.y3d{bottom:259.307850px;}
.y85{bottom:260.033850px;}
.y19{bottom:260.246250px;}
.yd3{bottom:265.271850px;}
.ya6{bottom:279.857850px;}
.y60{bottom:280.805250px;}
.yd2{bottom:281.015850px;}
.y3c{bottom:282.257850px;}
.y84{bottom:282.983850px;}
.y18{bottom:283.340250px;}
.yd1{bottom:296.759850px;}
.ya5{bottom:302.807850px;}
.y5f{bottom:303.755250px;}
.y3b{bottom:305.207850px;}
.y83{bottom:305.933850px;}
.y17{bottom:306.434250px;}
.yd0{bottom:312.503850px;}
.ya4{bottom:325.757850px;}
.y5e{bottom:326.705250px;}
.y3a{bottom:328.157850px;}
.ycf{bottom:328.247850px;}
.y82{bottom:328.883850px;}
.y16{bottom:329.528250px;}
.yce{bottom:343.991850px;}
.ya3{bottom:348.707850px;}
.y5d{bottom:349.655250px;}
.y39{bottom:351.107850px;}
.y81{bottom:351.833850px;}
.y15{bottom:352.622250px;}
.ycd{bottom:359.735850px;}
.ya2{bottom:371.657850px;}
.y5c{bottom:372.605250px;}
.y38{bottom:374.057850px;}
.y80{bottom:374.783850px;}
.ycc{bottom:375.485850px;}
.y14{bottom:375.716250px;}
.ycb{bottom:391.349850px;}
.ya1{bottom:394.607850px;}
.y5b{bottom:395.555250px;}
.y37{bottom:397.007850px;}
.y7f{bottom:397.733850px;}
.y13{bottom:398.810250px;}
.yca{bottom:407.093850px;}
.y5a{bottom:418.505250px;}
.y36{bottom:419.957850px;}
.y7e{bottom:420.683850px;}
.y12{bottom:421.904250px;}
.yc9{bottom:422.837850px;}
.yc8{bottom:438.581850px;}
.ya0{bottom:440.507850px;}
.y59{bottom:441.455250px;}
.y35{bottom:442.907850px;}
.y7d{bottom:443.633850px;}
.y11{bottom:444.998250px;}
.yc7{bottom:454.325850px;}
.y9f{bottom:463.457850px;}
.y58{bottom:464.405250px;}
.y34{bottom:465.857850px;}
.y7c{bottom:466.583850px;}
.y10{bottom:468.092250px;}
.yc6{bottom:470.069850px;}
.yc5{bottom:485.813850px;}
.y9e{bottom:486.407850px;}
.y57{bottom:487.355250px;}
.y33{bottom:488.807850px;}
.y7b{bottom:489.533850px;}
.yf{bottom:491.186250px;}
.yc4{bottom:501.557850px;}
.y9d{bottom:509.357850px;}
.y56{bottom:510.305250px;}
.y32{bottom:511.757850px;}
.y7a{bottom:512.483850px;}
.ye{bottom:514.280250px;}
.yc3{bottom:517.301850px;}
.y9c{bottom:532.307850px;}
.yc2{bottom:533.045850px;}
.y55{bottom:533.255250px;}
.y31{bottom:534.707850px;}
.y79{bottom:535.433850px;}
.yd{bottom:537.374250px;}
.yc1{bottom:548.789850px;}
.y9b{bottom:555.257850px;}
.y54{bottom:556.205250px;}
.y30{bottom:557.657850px;}
.y78{bottom:558.383850px;}
.yc{bottom:560.468250px;}
.yc0{bottom:564.533850px;}
.y9a{bottom:578.159850px;}
.y53{bottom:579.155250px;}
.ybf{bottom:580.277850px;}
.y2f{bottom:580.607850px;}
.y77{bottom:581.333850px;}
.yb{bottom:583.562250px;}
.ybe{bottom:596.021850px;}
.y99{bottom:601.109850px;}
.y52{bottom:602.105250px;}
.y2e{bottom:603.557850px;}
.y76{bottom:604.283850px;}
.ya{bottom:606.656250px;}
.ybd{bottom:611.765850px;}
.y98{bottom:624.059850px;}
.y51{bottom:625.055250px;}
.y2d{bottom:626.507850px;}
.y75{bottom:627.233850px;}
.ybc{bottom:627.509850px;}
.y9{bottom:629.750250px;}
.ybb{bottom:643.253850px;}
.y97{bottom:647.009850px;}
.y50{bottom:648.005250px;}
.y2c{bottom:649.457850px;}
.y74{bottom:650.183850px;}
.y8{bottom:652.844250px;}
.yba{bottom:658.997850px;}
.y96{bottom:669.959850px;}
.y4f{bottom:670.955250px;}
.y2b{bottom:672.407850px;}
.y73{bottom:673.133850px;}
.yb9{bottom:674.741850px;}
.y7{bottom:675.938250px;}
.yb8{bottom:690.485850px;}
.y95{bottom:692.909850px;}
.y4e{bottom:693.905250px;}
.y2a{bottom:695.357850px;}
.y72{bottom:696.083850px;}
.y6{bottom:699.032250px;}
.yb7{bottom:706.229850px;}
.y94{bottom:715.859850px;}
.y4d{bottom:716.855250px;}
.y29{bottom:718.307850px;}
.y71{bottom:719.033850px;}
.yb6{bottom:721.973850px;}
.y5{bottom:722.126250px;}
.yb5{bottom:737.717850px;}
.y93{bottom:738.809850px;}
.y4c{bottom:739.805250px;}
.y28{bottom:741.257850px;}
.y70{bottom:741.983850px;}
.y4{bottom:745.227150px;}
.yb4{bottom:753.173850px;}
.y92{bottom:761.759850px;}
.y4b{bottom:762.755250px;}
.y27{bottom:764.207850px;}
.y6f{bottom:764.933850px;}
.ye4{bottom:767.103900px;}
.yb3{bottom:768.629850px;}
.y91{bottom:785.015850px;}
.y4a{bottom:785.705250px;}
.ye3{bottom:785.853900px;}
.y26{bottom:787.157850px;}
.y6e{bottom:787.883850px;}
.yb2{bottom:790.457850px;}
.ye2{bottom:804.603900px;}
.y90{bottom:808.271850px;}
.y49{bottom:808.655250px;}
.y25{bottom:810.107850px;}
.y6d{bottom:810.833850px;}
.y3{bottom:813.612150px;}
.y8f{bottom:831.527850px;}
.y48{bottom:831.605250px;}
.y24{bottom:833.057850px;}
.y6c{bottom:833.783850px;}
.yb1{bottom:835.457850px;}
.ye1{bottom:842.103900px;}
.y47{bottom:854.555250px;}
.y8e{bottom:854.783850px;}
.y23{bottom:856.007850px;}
.y6b{bottom:856.733850px;}
.yb0{bottom:857.957850px;}
.y46{bottom:877.505250px;}
.y8d{bottom:878.039850px;}
.y22{bottom:878.957850px;}
.y6a{bottom:879.539850px;}
.yaf{bottom:880.457850px;}
.y2{bottom:880.757850px;}
.ye0{bottom:883.373850px;}
.ydf{bottom:899.117850px;}
.y45{bottom:900.455250px;}
.y8c{bottom:901.295850px;}
.y21{bottom:901.907850px;}
.y69{bottom:902.345850px;}
.yae{bottom:902.957850px;}
.yde{bottom:923.369850px;}
.y44{bottom:923.549250px;}
.y8b{bottom:924.551850px;}
.y20{bottom:924.857850px;}
.y68{bottom:925.151850px;}
.yad{bottom:925.457850px;}
.ydd{bottom:939.113850px;}
.y43{bottom:946.643250px;}
.y1f{bottom:947.807850px;}
.y67{bottom:947.957850px;}
.ydc{bottom:954.857850px;}
.h8{height:39.072000px;}
.h9{height:40.757812px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h5{height:61.136719px;}
.h6{height:61.232719px;}
.h7{height:61.328719px;}
.h3{height:101.894531px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x2{left:103.641750px;}
.x4{left:112.500000px;}
.x5{left:127.332000px;}
.x6{left:156.791250px;}
.x3{left:417.403050px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-12.629333pt;}
.v4{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.205333pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.301333pt;}
.ls5{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.832000pt;}
.lsf{letter-spacing:0.896000pt;}
.ls15{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.024000pt;}
.ls1d{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.344000pt;}
.ls12{letter-spacing:1.408000pt;}
.ls18{letter-spacing:1.472000pt;}
.ls17{letter-spacing:1.600000pt;}
.ls7{letter-spacing:1.664000pt;}
.ls1f{letter-spacing:4.224000pt;}
.ls16{letter-spacing:5.312000pt;}
.ls2{letter-spacing:6.560000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.lsa{letter-spacing:10.624000pt;}
.ls19{letter-spacing:11.584000pt;}
.ws1c{word-spacing:-54.720000pt;}
.ws17{word-spacing:-54.528000pt;}
.ws8{word-spacing:-53.760000pt;}
.ws1a{word-spacing:-44.736000pt;}
.ws1b{word-spacing:-44.608000pt;}
.ws11{word-spacing:-44.544000pt;}
.ws1f{word-spacing:-44.480000pt;}
.ws1d{word-spacing:-44.416000pt;}
.ws24{word-spacing:-44.288000pt;}
.ws14{word-spacing:-44.096000pt;}
.wsf{word-spacing:-44.032000pt;}
.ws12{word-spacing:-43.968000pt;}
.ws15{word-spacing:-43.904000pt;}
.ws13{word-spacing:-43.840000pt;}
.ws7{word-spacing:-43.776000pt;}
.ws3{word-spacing:-43.712000pt;}
.ws25{word-spacing:-43.648000pt;}
.ws1e{word-spacing:-43.584000pt;}
.wsa{word-spacing:-43.520000pt;}
.ws16{word-spacing:-43.456000pt;}
.ws23{word-spacing:-43.392000pt;}
.wsd{word-spacing:-43.328000pt;}
.ws10{word-spacing:-43.264000pt;}
.ws4{word-spacing:-43.136000pt;}
.ws2{word-spacing:-42.506667pt;}
.ws1{word-spacing:-35.946667pt;}
.ws19{word-spacing:-33.152000pt;}
.ws18{word-spacing:-32.896000pt;}
.wsb{word-spacing:-32.832000pt;}
.wsc{word-spacing:-32.512000pt;}
.wse{word-spacing:-32.256000pt;}
.ws9{word-spacing:-32.128000pt;}
.ws22{word-spacing:-31.936000pt;}
.ws27{word-spacing:-28.757333pt;}
.ws6{word-spacing:-22.506667pt;}
.ws26{word-spacing:-18.304000pt;}
.ws21{word-spacing:-17.984000pt;}
.ws20{word-spacing:-12.588800pt;}
.ws28{word-spacing:-8.392533pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:114.933333pt;}
._16{margin-left:-13.493333pt;}
._15{margin-left:-12.405333pt;}
._4{margin-left:-10.560000pt;}
._8{margin-left:-9.546667pt;}
._13{margin-left:-8.416000pt;}
._12{margin-left:-7.520000pt;}
._a{margin-left:-6.400000pt;}
._2{margin-left:-4.960000pt;}
._10{margin-left:-3.189333pt;}
._0{margin-left:-2.133333pt;}
._7{margin-left:-1.120000pt;}
._6{width:1.066667pt;}
._3{width:2.400000pt;}
._1{width:3.733333pt;}
._f{width:4.629333pt;}
._c{width:5.557333pt;}
._5{width:7.146667pt;}
._d{width:8.789333pt;}
._b{width:9.920000pt;}
._14{width:10.826667pt;}
._9{width:11.733333pt;}
._e{width:12.928000pt;}
._11{width:147.786667pt;}
.fs5{font-size:29.866667pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:82.895867pt;}
.ydb{bottom:123.839867pt;}
.yac{bottom:126.362533pt;}
.y66{bottom:127.204667pt;}
.y42{bottom:128.495867pt;}
.y1e{bottom:128.690000pt;}
.y8a{bottom:129.162533pt;}
.yda{bottom:137.834533pt;}
.yab{bottom:146.762533pt;}
.y65{bottom:147.604667pt;}
.y41{bottom:148.895867pt;}
.y1d{bottom:149.218000pt;}
.y89{bottom:149.562533pt;}
.yd9{bottom:151.829200pt;}
.yd8{bottom:165.823867pt;}
.yaa{bottom:167.162533pt;}
.y64{bottom:168.004667pt;}
.y40{bottom:169.295867pt;}
.y1c{bottom:169.746000pt;}
.y88{bottom:169.962533pt;}
.yd7{bottom:179.818533pt;}
.ya9{bottom:187.562533pt;}
.y63{bottom:188.404667pt;}
.y3f{bottom:189.695867pt;}
.y1b{bottom:190.274000pt;}
.y87{bottom:190.362533pt;}
.yd6{bottom:193.813200pt;}
.yd5{bottom:207.807867pt;}
.ya8{bottom:207.962533pt;}
.y62{bottom:208.804667pt;}
.y3e{bottom:210.095867pt;}
.y86{bottom:210.741200pt;}
.y1a{bottom:210.802000pt;}
.yd4{bottom:221.802533pt;}
.ya7{bottom:228.362533pt;}
.y61{bottom:229.204667pt;}
.y3d{bottom:230.495867pt;}
.y85{bottom:231.141200pt;}
.y19{bottom:231.330000pt;}
.yd3{bottom:235.797200pt;}
.ya6{bottom:248.762533pt;}
.y60{bottom:249.604667pt;}
.yd2{bottom:249.791867pt;}
.y3c{bottom:250.895867pt;}
.y84{bottom:251.541200pt;}
.y18{bottom:251.858000pt;}
.yd1{bottom:263.786533pt;}
.ya5{bottom:269.162533pt;}
.y5f{bottom:270.004667pt;}
.y3b{bottom:271.295867pt;}
.y83{bottom:271.941200pt;}
.y17{bottom:272.386000pt;}
.yd0{bottom:277.781200pt;}
.ya4{bottom:289.562533pt;}
.y5e{bottom:290.404667pt;}
.y3a{bottom:291.695867pt;}
.ycf{bottom:291.775867pt;}
.y82{bottom:292.341200pt;}
.y16{bottom:292.914000pt;}
.yce{bottom:305.770533pt;}
.ya3{bottom:309.962533pt;}
.y5d{bottom:310.804667pt;}
.y39{bottom:312.095867pt;}
.y81{bottom:312.741200pt;}
.y15{bottom:313.442000pt;}
.ycd{bottom:319.765200pt;}
.ya2{bottom:330.362533pt;}
.y5c{bottom:331.204667pt;}
.y38{bottom:332.495867pt;}
.y80{bottom:333.141200pt;}
.ycc{bottom:333.765200pt;}
.y14{bottom:333.970000pt;}
.ycb{bottom:347.866533pt;}
.ya1{bottom:350.762533pt;}
.y5b{bottom:351.604667pt;}
.y37{bottom:352.895867pt;}
.y7f{bottom:353.541200pt;}
.y13{bottom:354.498000pt;}
.yca{bottom:361.861200pt;}
.y5a{bottom:372.004667pt;}
.y36{bottom:373.295867pt;}
.y7e{bottom:373.941200pt;}
.y12{bottom:375.026000pt;}
.yc9{bottom:375.855867pt;}
.yc8{bottom:389.850533pt;}
.ya0{bottom:391.562533pt;}
.y59{bottom:392.404667pt;}
.y35{bottom:393.695867pt;}
.y7d{bottom:394.341200pt;}
.y11{bottom:395.554000pt;}
.yc7{bottom:403.845200pt;}
.y9f{bottom:411.962533pt;}
.y58{bottom:412.804667pt;}
.y34{bottom:414.095867pt;}
.y7c{bottom:414.741200pt;}
.y10{bottom:416.082000pt;}
.yc6{bottom:417.839867pt;}
.yc5{bottom:431.834533pt;}
.y9e{bottom:432.362533pt;}
.y57{bottom:433.204667pt;}
.y33{bottom:434.495867pt;}
.y7b{bottom:435.141200pt;}
.yf{bottom:436.610000pt;}
.yc4{bottom:445.829200pt;}
.y9d{bottom:452.762533pt;}
.y56{bottom:453.604667pt;}
.y32{bottom:454.895867pt;}
.y7a{bottom:455.541200pt;}
.ye{bottom:457.138000pt;}
.yc3{bottom:459.823867pt;}
.y9c{bottom:473.162533pt;}
.yc2{bottom:473.818533pt;}
.y55{bottom:474.004667pt;}
.y31{bottom:475.295867pt;}
.y79{bottom:475.941200pt;}
.yd{bottom:477.666000pt;}
.yc1{bottom:487.813200pt;}
.y9b{bottom:493.562533pt;}
.y54{bottom:494.404667pt;}
.y30{bottom:495.695867pt;}
.y78{bottom:496.341200pt;}
.yc{bottom:498.194000pt;}
.yc0{bottom:501.807867pt;}
.y9a{bottom:513.919867pt;}
.y53{bottom:514.804667pt;}
.ybf{bottom:515.802533pt;}
.y2f{bottom:516.095867pt;}
.y77{bottom:516.741200pt;}
.yb{bottom:518.722000pt;}
.ybe{bottom:529.797200pt;}
.y99{bottom:534.319867pt;}
.y52{bottom:535.204667pt;}
.y2e{bottom:536.495867pt;}
.y76{bottom:537.141200pt;}
.ya{bottom:539.250000pt;}
.ybd{bottom:543.791867pt;}
.y98{bottom:554.719867pt;}
.y51{bottom:555.604667pt;}
.y2d{bottom:556.895867pt;}
.y75{bottom:557.541200pt;}
.ybc{bottom:557.786533pt;}
.y9{bottom:559.778000pt;}
.ybb{bottom:571.781200pt;}
.y97{bottom:575.119867pt;}
.y50{bottom:576.004667pt;}
.y2c{bottom:577.295867pt;}
.y74{bottom:577.941200pt;}
.y8{bottom:580.306000pt;}
.yba{bottom:585.775867pt;}
.y96{bottom:595.519867pt;}
.y4f{bottom:596.404667pt;}
.y2b{bottom:597.695867pt;}
.y73{bottom:598.341200pt;}
.yb9{bottom:599.770533pt;}
.y7{bottom:600.834000pt;}
.yb8{bottom:613.765200pt;}
.y95{bottom:615.919867pt;}
.y4e{bottom:616.804667pt;}
.y2a{bottom:618.095867pt;}
.y72{bottom:618.741200pt;}
.y6{bottom:621.362000pt;}
.yb7{bottom:627.759867pt;}
.y94{bottom:636.319867pt;}
.y4d{bottom:637.204667pt;}
.y29{bottom:638.495867pt;}
.y71{bottom:639.141200pt;}
.yb6{bottom:641.754533pt;}
.y5{bottom:641.890000pt;}
.yb5{bottom:655.749200pt;}
.y93{bottom:656.719867pt;}
.y4c{bottom:657.604667pt;}
.y28{bottom:658.895867pt;}
.y70{bottom:659.541200pt;}
.y4{bottom:662.424133pt;}
.yb4{bottom:669.487867pt;}
.y92{bottom:677.119867pt;}
.y4b{bottom:678.004667pt;}
.y27{bottom:679.295867pt;}
.y6f{bottom:679.941200pt;}
.ye4{bottom:681.870133pt;}
.yb3{bottom:683.226533pt;}
.y91{bottom:697.791867pt;}
.y4a{bottom:698.404667pt;}
.ye3{bottom:698.536800pt;}
.y26{bottom:699.695867pt;}
.y6e{bottom:700.341200pt;}
.yb2{bottom:702.629200pt;}
.ye2{bottom:715.203467pt;}
.y90{bottom:718.463867pt;}
.y49{bottom:718.804667pt;}
.y25{bottom:720.095867pt;}
.y6d{bottom:720.741200pt;}
.y3{bottom:723.210800pt;}
.y8f{bottom:739.135867pt;}
.y48{bottom:739.204667pt;}
.y24{bottom:740.495867pt;}
.y6c{bottom:741.141200pt;}
.yb1{bottom:742.629200pt;}
.ye1{bottom:748.536800pt;}
.y47{bottom:759.604667pt;}
.y8e{bottom:759.807867pt;}
.y23{bottom:760.895867pt;}
.y6b{bottom:761.541200pt;}
.yb0{bottom:762.629200pt;}
.y46{bottom:780.004667pt;}
.y8d{bottom:780.479867pt;}
.y22{bottom:781.295867pt;}
.y6a{bottom:781.813200pt;}
.yaf{bottom:782.629200pt;}
.y2{bottom:782.895867pt;}
.ye0{bottom:785.221200pt;}
.ydf{bottom:799.215867pt;}
.y45{bottom:800.404667pt;}
.y8c{bottom:801.151867pt;}
.y21{bottom:801.695867pt;}
.y69{bottom:802.085200pt;}
.yae{bottom:802.629200pt;}
.yde{bottom:820.773200pt;}
.y44{bottom:820.932667pt;}
.y8b{bottom:821.823867pt;}
.y20{bottom:822.095867pt;}
.y68{bottom:822.357200pt;}
.yad{bottom:822.629200pt;}
.ydd{bottom:834.767867pt;}
.y43{bottom:841.460667pt;}
.y1f{bottom:842.495867pt;}
.y67{bottom:842.629200pt;}
.ydc{bottom:848.762533pt;}
.h8{height:34.730667pt;}
.h9{height:36.229167pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h5{height:54.343750pt;}
.h6{height:54.429083pt;}
.h7{height:54.514417pt;}
.h3{height:90.572917pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x2{left:92.126000pt;}
.x4{left:100.000000pt;}
.x5{left:113.184000pt;}
.x6{left:139.370000pt;}
.x3{left:371.024933pt;}
}




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