
    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_46ce4891fe85e7d3cadc348e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_5791734c03bba3fe944706ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_1e2ce281c0089369cf114b8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_69be64ff7f0e62833185a9dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_6722bf6a9769471e742d0802.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_9ab58ab6f1a63340449f6082.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891602;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_4c30feda0249ff1043e98e43.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v3{vertical-align:-31.679901px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:30.960023px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.079079px;}
.ls1{letter-spacing:0.094301px;}
.ls2{letter-spacing:0.358830px;}
.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;}
}
.ws1{word-spacing:-79.204500px;}
.ws4{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws5{word-spacing:-13.860563px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-13.647595px;}
._1{margin-left:-12.545684px;}
._6{margin-left:-10.644889px;}
._1a{margin-left:-9.634198px;}
._4{margin-left:-8.537467px;}
._3{margin-left:-7.146935px;}
._2{margin-left:-5.420927px;}
._f{margin-left:-4.198491px;}
._5{margin-left:-3.045860px;}
._7{margin-left:-1.901270px;}
._0{width:1.048595px;}
._9{width:2.186119px;}
._12{width:3.553740px;}
._11{width:4.767402px;}
._c{width:5.797810px;}
._13{width:6.811210px;}
._14{width:8.148323px;}
._1b{width:9.318749px;}
._d{width:10.446500px;}
._15{width:11.574402px;}
._b{width:12.599216px;}
._a{width:14.158430px;}
._17{width:15.169850px;}
._16{width:16.838400px;}
._1c{width:17.840711px;}
._19{width:18.990049px;}
._e{width:25.661920px;}
._18{width:365.091048px;}
._1d{width:1093.453965px;}
._10{width:1695.568988px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:55.442250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs8{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1c{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y37{bottom:41.040115px;}
.y84{bottom:97.920043px;}
.y1a{bottom:98.100000px;}
.yb3{bottom:99.900055px;}
.yaa{bottom:102.780121px;}
.y98{bottom:107.280121px;}
.y8e{bottom:120.600083px;}
.y71{bottom:121.320099px;}
.y83{bottom:121.680039px;}
.y61{bottom:121.860077px;}
.y19{bottom:126.540000px;}
.yb2{bottom:127.620072px;}
.ya9{bottom:131.220085px;}
.y36{bottom:149.940033px;}
.y52{bottom:151.020058px;}
.y18{bottom:155.160000px;}
.yb1{bottom:155.520058px;}
.ya8{bottom:158.940033px;}
.y82{bottom:169.200096px;}
.y70{bottom:178.560036px;}
.y51{bottom:179.460091px;}
.ya7{bottom:186.840088px;}
.y95{bottom:206.100083px;}
.y35{bottom:207.000068px;}
.y60{bottom:207.360077px;}
.yb0{bottom:210.960091px;}
.ya6{bottom:214.560036px;}
.y81{bottom:226.800041px;}
.y34{bottom:235.620072px;}
.y17{bottom:240.660000px;}
.y80{bottom:247.500068px;}
.y50{bottom:256.680039px;}
.y33{bottom:264.060036px;}
.yaf{bottom:266.400055px;}
.y16{bottom:269.280000px;}
.y7f{bottom:275.040047px;}
.y4f{bottom:282.420043px;}
.y90{bottom:292.680039px;}
.y5f{bottom:293.040047px;}
.yae{bottom:294.120072px;}
.y7e{bottom:302.760064px;}
.y4e{bottom:308.160049px;}
.y8f{bottom:321.120072px;}
.y5e{bottom:321.480079px;}
.yad{bottom:321.840088px;}
.y15{bottom:326.340150px;}
.y7d{bottom:330.480079px;}
.y4d{bottom:334.080093px;}
.y32{bottom:349.740074px;}
.y5d{bottom:350.100083px;}
.y7c{bottom:358.200096px;}
.y4c{bottom:359.820099px;}
.y31{bottom:378.180039px;}
.y5c{bottom:378.540047px;}
.y14{bottom:383.400150px;}
.y7b{bottom:386.100083px;}
.yb4{bottom:406.800041px;}
.ya5{bottom:409.500068px;}
.y4b{bottom:411.300041px;}
.y13{bottom:411.840150px;}
.y7a{bottom:413.820099px;}
.y8d{bottom:434.340088px;}
.yac{bottom:435.240074px;}
.y4a{bottom:437.040047px;}
.y12{bottom:440.460150px;}
.y79{bottom:441.540047px;}
.y49{bottom:462.780052px;}
.yab{bottom:463.860077px;}
.y5b{bottom:464.220085px;}
.ya4{bottom:466.560036px;}
.y97{bottom:470.520058px;}
.y6d{bottom:483.840088px;}
.y8c{bottom:491.400055px;}
.y86{bottom:492.300041px;}
.y5a{bottom:492.660049px;}
.y78{bottom:496.980079px;}
.y11{bottom:497.520000px;}
.y6c{bottom:512.820099px;}
.y48{bottom:514.260064px;}
.y8b{bottom:520.020058px;}
.y30{bottom:520.920043px;}
.ya3{bottom:523.620072px;}
.y77{bottom:524.700096px;}
.y47{bottom:540.000068px;}
.y6b{bottom:541.620072px;}
.y8a{bottom:548.460091px;}
.y2f{bottom:549.360077px;}
.ya2{bottom:552.060036px;}
.y76{bottom:552.600083px;}
.y6a{bottom:570.600083px;}
.y89{bottom:577.080093px;}
.y2e{bottom:577.980079px;}
.y59{bottom:578.340088px;}
.y75{bottom:580.320099px;}
.ya1{bottom:580.680039px;}
.y10{bottom:583.020000px;}
.y46{bottom:591.480079px;}
.y88{bottom:605.700096px;}
.y2d{bottom:606.420043px;}
.y58{bottom:606.780052px;}
.y74{bottom:608.040047px;}
.ya0{bottom:609.120072px;}
.yf{bottom:611.640000px;}
.y45{bottom:617.220085px;}
.y94{bottom:634.140060px;}
.y2c{bottom:635.040047px;}
.y57{bottom:635.400055px;}
.y73{bottom:635.760064px;}
.y9f{bottom:637.740074px;}
.ye{bottom:640.080000px;}
.y44{bottom:642.960091px;}
.y87{bottom:662.760064px;}
.y2b{bottom:663.480079px;}
.y9e{bottom:666.180039px;}
.y43{bottom:668.700096px;}
.y69{bottom:686.340088px;}
.y2a{bottom:692.100083px;}
.y56{bottom:692.460056px;}
.y9d{bottom:694.800076px;}
.yd{bottom:697.140000px;}
.y6e{bottom:710.100083px;}
.y93{bottom:719.820065px;}
.y29{bottom:720.540081px;}
.y55{bottom:720.900055px;}
.yc{bottom:725.760000px;}
.y68{bottom:744.300076px;}
.y42{bottom:745.920078px;}
.y28{bottom:749.160049px;}
.y54{bottom:749.520058px;}
.y9c{bottom:751.860077px;}
.yb{bottom:754.200000px;}
.y41{bottom:771.660049px;}
.y67{bottom:773.100083px;}
.y27{bottom:777.600083px;}
.y9b{bottom:780.300076px;}
.y40{bottom:797.400055px;}
.y6f{bottom:806.220051px;}
.ya{bottom:811.260000px;}
.y3f{bottom:823.140060px;}
.y92{bottom:833.940067px;}
.y26{bottom:834.660049px;}
.y9a{bottom:837.360077px;}
.y3e{bottom:849.060070px;}
.y25{bottom:863.280052px;}
.y53{bottom:863.640060px;}
.y96{bottom:869.940067px;}
.y66{bottom:888.840054px;}
.y91{bottom:891.000068px;}
.y24{bottom:891.720051px;}
.y99{bottom:894.420078px;}
.y3d{bottom:900.540081px;}
.y9{bottom:908.820000px;}
.y65{bottom:917.820065px;}
.y23{bottom:920.340054px;}
.y8{bottom:937.260000px;}
.y64{bottom:946.800076px;}
.y72{bottom:948.780053px;}
.y7{bottom:965.880000px;}
.y22{bottom:977.400072px;}
.y3c{bottom:977.760064px;}
.y6{bottom:994.320000px;}
.y85{bottom:1005.840070px;}
.y3b{bottom:1006.200061px;}
.y21{bottom:1034.460074px;}
.y3a{bottom:1034.820065px;}
.y63{bottom:1062.540064px;}
.y20{bottom:1062.900072px;}
.y5{bottom:1063.260000px;}
.y1f{bottom:1091.520058px;}
.y39{bottom:1091.880066px;}
.y1b{bottom:1096.920000px;}
.y1e{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y62{bottom:1120.320065px;}
.y1d{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y38{bottom:1148.940067px;}
.h11{height:51.715289px;}
.h6{height:55.303923px;}
.hd{height:55.596662px;}
.h3{height:55.598636px;}
.hc{height:57.534328px;}
.h2{height:57.535781px;}
.h13{height:63.312125px;}
.h12{height:63.346931px;}
.ha{height:64.414315px;}
.hb{height:65.992187px;}
.h7{height:67.837080px;}
.hf{height:69.496123px;}
.he{height:70.346938px;}
.h8{height:83.395190px;}
.h5{height:83.395980px;}
.h10{height:84.115343px;}
.h9{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x25{left:93.959997px;}
.x7{left:97.200000px;}
.x4{left:109.800000px;}
.x26{left:111.599997px;}
.x24{left:118.799998px;}
.x3{left:132.660000px;}
.x11{left:140.939999px;}
.x23{left:160.020006px;}
.x27{left:162.180005px;}
.x14{left:174.240006px;}
.x19{left:179.639992px;}
.xa{left:213.120000px;}
.x6{left:214.380000px;}
.x16{left:224.639992px;}
.xd{left:230.940000px;}
.x5{left:239.400000px;}
.x1f{left:241.379998px;}
.x1b{left:252.719999px;}
.xb{left:253.980000px;}
.x21{left:255.240006px;}
.xc{left:267.300000px;}
.x9{left:278.640000px;}
.x17{left:281.520006px;}
.xe{left:305.640000px;}
.x1a{left:313.019989px;}
.x18{left:314.639992px;}
.x8{left:317.160000px;}
.xf{left:320.220000px;}
.x1e{left:327.600014px;}
.x13{left:334.980011px;}
.x28{left:336.060001px;}
.x10{left:369.000000px;}
.x22{left:374.399987px;}
.x20{left:388.980011px;}
.x12{left:410.939999px;}
.x15{left:421.560001px;}
.x1c{left:474.480011px;}
.x1{left:532.800000px;}
.x2a{left:680.759994px;}
.x29{left:727.919975px;}
.x1d{left:803.159981px;}
@media print{
.v3{vertical-align:-28.159912pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:27.520020pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.070293pt;}
.ls1{letter-spacing:0.083823pt;}
.ls2{letter-spacing:0.318960pt;}
.ws1{word-spacing:-70.404000pt;}
.ws4{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws5{word-spacing:-12.320500pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-12.131195pt;}
._1{margin-left:-11.151719pt;}
._6{margin-left:-9.462124pt;}
._1a{margin-left:-8.563731pt;}
._4{margin-left:-7.588860pt;}
._3{margin-left:-6.352831pt;}
._2{margin-left:-4.818602pt;}
._f{margin-left:-3.731992pt;}
._5{margin-left:-2.707431pt;}
._7{margin-left:-1.690018pt;}
._0{width:0.932084pt;}
._9{width:1.943216pt;}
._12{width:3.158880pt;}
._11{width:4.237690pt;}
._c{width:5.153608pt;}
._13{width:6.054409pt;}
._14{width:7.242954pt;}
._1b{width:8.283333pt;}
._d{width:9.285778pt;}
._15{width:10.288357pt;}
._b{width:11.199304pt;}
._a{width:12.585271pt;}
._17{width:13.484311pt;}
._16{width:14.967467pt;}
._1c{width:15.858410pt;}
._19{width:16.880043pt;}
._e{width:22.810596pt;}
._18{width:324.525376pt;}
._1d{width:971.959080pt;}
._10{width:1507.172434pt;}
.fs7{font-size:49.282000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs8{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1c{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y37{bottom:36.480103pt;}
.y84{bottom:87.040039pt;}
.y1a{bottom:87.200000pt;}
.yb3{bottom:88.800049pt;}
.yaa{bottom:91.360108pt;}
.y98{bottom:95.360108pt;}
.y8e{bottom:107.200074pt;}
.y71{bottom:107.840088pt;}
.y83{bottom:108.160035pt;}
.y61{bottom:108.320069pt;}
.y19{bottom:112.480000pt;}
.yb2{bottom:113.440064pt;}
.ya9{bottom:116.640076pt;}
.y36{bottom:133.280030pt;}
.y52{bottom:134.240052pt;}
.y18{bottom:137.920000pt;}
.yb1{bottom:138.240052pt;}
.ya8{bottom:141.280030pt;}
.y82{bottom:150.400086pt;}
.y70{bottom:158.720032pt;}
.y51{bottom:159.520081pt;}
.ya7{bottom:166.080079pt;}
.y95{bottom:183.200074pt;}
.y35{bottom:184.000061pt;}
.y60{bottom:184.320069pt;}
.yb0{bottom:187.520081pt;}
.ya6{bottom:190.720032pt;}
.y81{bottom:201.600037pt;}
.y34{bottom:209.440064pt;}
.y17{bottom:213.920000pt;}
.y80{bottom:220.000061pt;}
.y50{bottom:228.160035pt;}
.y33{bottom:234.720032pt;}
.yaf{bottom:236.800049pt;}
.y16{bottom:239.360000pt;}
.y7f{bottom:244.480042pt;}
.y4f{bottom:251.040039pt;}
.y90{bottom:260.160035pt;}
.y5f{bottom:260.480042pt;}
.yae{bottom:261.440064pt;}
.y7e{bottom:269.120057pt;}
.y4e{bottom:273.920044pt;}
.y8f{bottom:285.440064pt;}
.y5e{bottom:285.760071pt;}
.yad{bottom:286.080079pt;}
.y15{bottom:290.080133pt;}
.y7d{bottom:293.760071pt;}
.y4d{bottom:296.960083pt;}
.y32{bottom:310.880066pt;}
.y5d{bottom:311.200074pt;}
.y7c{bottom:318.400086pt;}
.y4c{bottom:319.840088pt;}
.y31{bottom:336.160035pt;}
.y5c{bottom:336.480042pt;}
.y14{bottom:340.800133pt;}
.y7b{bottom:343.200074pt;}
.yb4{bottom:361.600037pt;}
.ya5{bottom:364.000061pt;}
.y4b{bottom:365.600037pt;}
.y13{bottom:366.080133pt;}
.y7a{bottom:367.840088pt;}
.y8d{bottom:386.080079pt;}
.yac{bottom:386.880066pt;}
.y4a{bottom:388.480042pt;}
.y12{bottom:391.520133pt;}
.y79{bottom:392.480042pt;}
.y49{bottom:411.360047pt;}
.yab{bottom:412.320069pt;}
.y5b{bottom:412.640076pt;}
.ya4{bottom:414.720032pt;}
.y97{bottom:418.240052pt;}
.y6d{bottom:430.080079pt;}
.y8c{bottom:436.800049pt;}
.y86{bottom:437.600037pt;}
.y5a{bottom:437.920044pt;}
.y78{bottom:441.760071pt;}
.y11{bottom:442.240000pt;}
.y6c{bottom:455.840088pt;}
.y48{bottom:457.120057pt;}
.y8b{bottom:462.240052pt;}
.y30{bottom:463.040039pt;}
.ya3{bottom:465.440064pt;}
.y77{bottom:466.400086pt;}
.y47{bottom:480.000061pt;}
.y6b{bottom:481.440064pt;}
.y8a{bottom:487.520081pt;}
.y2f{bottom:488.320069pt;}
.ya2{bottom:490.720032pt;}
.y76{bottom:491.200074pt;}
.y6a{bottom:507.200074pt;}
.y89{bottom:512.960083pt;}
.y2e{bottom:513.760071pt;}
.y59{bottom:514.080079pt;}
.y75{bottom:515.840088pt;}
.ya1{bottom:516.160035pt;}
.y10{bottom:518.240000pt;}
.y46{bottom:525.760071pt;}
.y88{bottom:538.400086pt;}
.y2d{bottom:539.040039pt;}
.y58{bottom:539.360047pt;}
.y74{bottom:540.480042pt;}
.ya0{bottom:541.440064pt;}
.yf{bottom:543.680000pt;}
.y45{bottom:548.640076pt;}
.y94{bottom:563.680054pt;}
.y2c{bottom:564.480042pt;}
.y57{bottom:564.800049pt;}
.y73{bottom:565.120057pt;}
.y9f{bottom:566.880066pt;}
.ye{bottom:568.960000pt;}
.y44{bottom:571.520081pt;}
.y87{bottom:589.120057pt;}
.y2b{bottom:589.760071pt;}
.y9e{bottom:592.160035pt;}
.y43{bottom:594.400086pt;}
.y69{bottom:610.080079pt;}
.y2a{bottom:615.200074pt;}
.y56{bottom:615.520050pt;}
.y9d{bottom:617.600068pt;}
.yd{bottom:619.680000pt;}
.y6e{bottom:631.200074pt;}
.y93{bottom:639.840058pt;}
.y29{bottom:640.480072pt;}
.y55{bottom:640.800049pt;}
.yc{bottom:645.120000pt;}
.y68{bottom:661.600068pt;}
.y42{bottom:663.040070pt;}
.y28{bottom:665.920044pt;}
.y54{bottom:666.240052pt;}
.y9c{bottom:668.320069pt;}
.yb{bottom:670.400000pt;}
.y41{bottom:685.920044pt;}
.y67{bottom:687.200074pt;}
.y27{bottom:691.200074pt;}
.y9b{bottom:693.600068pt;}
.y40{bottom:708.800049pt;}
.y6f{bottom:716.640046pt;}
.ya{bottom:721.120000pt;}
.y3f{bottom:731.680054pt;}
.y92{bottom:741.280060pt;}
.y26{bottom:741.920044pt;}
.y9a{bottom:744.320069pt;}
.y3e{bottom:754.720063pt;}
.y25{bottom:767.360047pt;}
.y53{bottom:767.680054pt;}
.y96{bottom:773.280060pt;}
.y66{bottom:790.080048pt;}
.y91{bottom:792.000061pt;}
.y24{bottom:792.640046pt;}
.y99{bottom:795.040070pt;}
.y3d{bottom:800.480072pt;}
.y9{bottom:807.840000pt;}
.y65{bottom:815.840058pt;}
.y23{bottom:818.080048pt;}
.y8{bottom:833.120000pt;}
.y64{bottom:841.600068pt;}
.y72{bottom:843.360047pt;}
.y7{bottom:858.560000pt;}
.y22{bottom:868.800064pt;}
.y3c{bottom:869.120057pt;}
.y6{bottom:883.840000pt;}
.y85{bottom:894.080063pt;}
.y3b{bottom:894.400055pt;}
.y21{bottom:919.520066pt;}
.y3a{bottom:919.840058pt;}
.y63{bottom:944.480057pt;}
.y20{bottom:944.800064pt;}
.y5{bottom:945.120000pt;}
.y1f{bottom:970.240052pt;}
.y39{bottom:970.560059pt;}
.y1b{bottom:975.040000pt;}
.y1e{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y62{bottom:995.840058pt;}
.y1d{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y38{bottom:1021.280060pt;}
.h11{height:45.969146pt;}
.h6{height:49.159043pt;}
.hd{height:49.419255pt;}
.h3{height:49.421010pt;}
.hc{height:51.141625pt;}
.h2{height:51.142916pt;}
.h13{height:56.277444pt;}
.h12{height:56.308383pt;}
.ha{height:57.257169pt;}
.hb{height:58.659722pt;}
.h7{height:60.299627pt;}
.hf{height:61.774332pt;}
.he{height:62.530612pt;}
.h8{height:74.129058pt;}
.h5{height:74.129760pt;}
.h10{height:74.769194pt;}
.h9{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x25{left:83.519997pt;}
.x7{left:86.400000pt;}
.x4{left:97.600000pt;}
.x26{left:99.199997pt;}
.x24{left:105.599998pt;}
.x3{left:117.920000pt;}
.x11{left:125.279999pt;}
.x23{left:142.240005pt;}
.x27{left:144.160004pt;}
.x14{left:154.880005pt;}
.x19{left:159.679993pt;}
.xa{left:189.440000pt;}
.x6{left:190.560000pt;}
.x16{left:199.679993pt;}
.xd{left:205.280000pt;}
.x5{left:212.800000pt;}
.x1f{left:214.559998pt;}
.x1b{left:224.639999pt;}
.xb{left:225.760000pt;}
.x21{left:226.880005pt;}
.xc{left:237.600000pt;}
.x9{left:247.680000pt;}
.x17{left:250.240005pt;}
.xe{left:271.680000pt;}
.x1a{left:278.239990pt;}
.x18{left:279.679993pt;}
.x8{left:281.920000pt;}
.xf{left:284.640000pt;}
.x1e{left:291.200012pt;}
.x13{left:297.760010pt;}
.x28{left:298.720001pt;}
.x10{left:328.000000pt;}
.x22{left:332.799988pt;}
.x20{left:345.760010pt;}
.x12{left:365.279999pt;}
.x15{left:374.720001pt;}
.x1c{left:421.760010pt;}
.x1{left:473.600000pt;}
.x2a{left:605.119995pt;}
.x29{left:647.039978pt;}
.x1d{left:713.919983pt;}
}




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