
    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_9ee62e67a9cc292b999f0fe8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995117;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_9e9ce357437e7e493693c761.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853027;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_e25977c76dca38fad71f9243.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_3481e6331595776755e5ea2d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8874b483fc4b9f8042318f9b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_eb3aecf1ff4cb84e63f62b8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_60be50d4caa73496260b8d0e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f1b4234b2c2c5f602e74f9d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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:ff9;src:url('chunks/assets/font_f9999c2ded029e5378397f78.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937500;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:ffa;src:url('chunks/assets/font_8720b4e47e4b4e3648c6bf6c.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-29.519991px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.679901px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000548px;}
.ls6{letter-spacing:0.015057px;}
.ls1{letter-spacing:0.151344px;}
.ls5{letter-spacing:0.282371px;}
.ls7{letter-spacing:0.290585px;}
.ls3{letter-spacing:0.479362px;}
.ls8{letter-spacing:0.863520px;}
.ls2{letter-spacing:1.199376px;}
.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:-26.281014px;}
.ws0{word-spacing:-20.506168px;}
.ws2{word-spacing:-20.499188px;}
.ws5{word-spacing:-17.521185px;}
.ws3{word-spacing:-17.520638px;}
.ws4{word-spacing:0.000000px;}
._2f{margin-left:-4.173659px;}
._2{margin-left:-2.842404px;}
._0{margin-left:-1.323018px;}
._1{width:1.160568px;}
._6{width:2.444152px;}
._3{width:3.583698px;}
._b{width:5.574574px;}
._11{width:6.579785px;}
._9{width:7.837474px;}
._c{width:9.083017px;}
._7{width:10.512383px;}
._8{width:12.182876px;}
._a{width:14.063433px;}
._19{width:15.080370px;}
._f{width:16.388092px;}
._12{width:18.563582px;}
._10{width:19.657927px;}
._4{width:21.047213px;}
._5{width:22.490103px;}
._16{width:23.764963px;}
._1c{width:24.795471px;}
._1a{width:26.069898px;}
._15{width:27.822772px;}
._14{width:29.200332px;}
._17{width:30.778476px;}
._1f{width:31.830427px;}
._3c{width:33.640719px;}
._30{width:34.739911px;}
._27{width:36.421025px;}
._28{width:37.660063px;}
._d{width:38.944544px;}
._e{width:40.512268px;}
._23{width:41.921520px;}
._24{width:42.925189px;}
._26{width:44.236277px;}
._2a{width:45.524056px;}
._33{width:47.354450px;}
._2d{width:49.736710px;}
._2e{width:50.741483px;}
._25{width:55.482931px;}
._1b{width:56.826271px;}
._3a{width:65.709409px;}
._39{width:69.441130px;}
._38{width:70.990101px;}
._2c{width:73.964421px;}
._2b{width:76.322634px;}
._31{width:79.310998px;}
._32{width:80.736960px;}
._22{width:86.877578px;}
._13{width:88.421730px;}
._37{width:91.072182px;}
._20{width:92.860474px;}
._21{width:94.863103px;}
._1e{width:99.760649px;}
._1d{width:100.838113px;}
._35{width:123.877925px;}
._34{width:142.882025px;}
._3b{width:155.087872px;}
._29{width:171.702248px;}
._18{width:250.194704px;}
._36{width:1845.531423px;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(84,141,212);}
.fc2{color:rgb(31,73,125);}
.fc4{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs7{font-size:37.844685px;}
.fs6{font-size:46.955250px;}
.fs5{font-size:52.562250px;}
.fs8{font-size:58.168800px;}
.fs2{font-size:64.476000px;}
.fs1{font-size:70.082550px;}
.fs4{font-size:81.996750px;}
.fs0{font-size:93.209855px;}
.fs3{font-size:105.124055px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.960021px;}
.y28{bottom:5.220016px;}
.y2{bottom:5.220017px;}
.y5{bottom:109.260132px;}
.y27{bottom:126.180039px;}
.y2a{bottom:130.680039px;}
.y26{bottom:131.400055px;}
.y4{bottom:132.300041px;}
.y29{bottom:134.640060px;}
.y1{bottom:147.420043px;}
.y3{bottom:158.040047px;}
.ya2{bottom:162.900055px;}
.y7a{bottom:163.080093px;}
.ybc{bottom:180.900055px;}
.y7b{bottom:183.240074px;}
.ya1{bottom:183.420043px;}
.y87{bottom:185.760064px;}
.ya0{bottom:189.360077px;}
.y7e{bottom:189.900055px;}
.y4a{bottom:192.960091px;}
.y79{bottom:193.500068px;}
.y9f{bottom:199.620072px;}
.y9e{bottom:202.860077px;}
.ybb{bottom:204.300041px;}
.y5a{bottom:213.660049px;}
.y86{bottom:216.000068px;}
.y25{bottom:216.360077px;}
.y7d{bottom:217.620072px;}
.y49{bottom:223.200096px;}
.y78{bottom:223.560036px;}
.yba{bottom:227.700096px;}
.y9d{bottom:233.100083px;}
.y59{bottom:243.720085px;}
.y7c{bottom:245.340088px;}
.y85{bottom:246.240074px;}
.y24{bottom:246.600083px;}
.yb9{bottom:251.280052px;}
.y48{bottom:253.260064px;}
.y77{bottom:253.620072px;}
.y9c{bottom:263.340088px;}
.y58{bottom:273.780052px;}
.yb8{bottom:274.860077px;}
.y84{bottom:276.480079px;}
.y23{bottom:276.840088px;}
.y47{bottom:283.680039px;}
.y76{bottom:284.040047px;}
.y9b{bottom:293.400055px;}
.yb7{bottom:298.440033px;}
.y57{bottom:304.200096px;}
.y83{bottom:305.640060px;}
.y22{bottom:306.900055px;}
.y46{bottom:313.740074px;}
.y75{bottom:314.100083px;}
.yb6{bottom:321.840088px;}
.y9a{bottom:323.820099px;}
.y56{bottom:334.260064px;}
.y21{bottom:337.320099px;}
.y45{bottom:344.160049px;}
.y74{bottom:344.520058px;}
.yb5{bottom:345.240074px;}
.y99{bottom:353.880066px;}
.y55{bottom:364.680039px;}
.y20{bottom:367.380066px;}
.yb4{bottom:368.820099px;}
.y44{bottom:374.220085px;}
.y73{bottom:374.580093px;}
.y98{bottom:384.300041px;}
.yb3{bottom:392.220085px;}
.y54{bottom:394.740074px;}
.y1f{bottom:397.620072px;}
.y43{bottom:404.460091px;}
.y72{bottom:404.820099px;}
.y97{bottom:414.360077px;}
.yb2{bottom:415.980079px;}
.y53{bottom:424.980079px;}
.y1e{bottom:427.860077px;}
.y42{bottom:434.700096px;}
.y71{bottom:435.060036px;}
.yb1{bottom:439.380066px;}
.y96{bottom:444.600083px;}
.y52{bottom:455.220085px;}
.y1d{bottom:458.100083px;}
.yb0{bottom:462.960091px;}
.y41{bottom:464.940033px;}
.y70{bottom:465.300041px;}
.y95{bottom:474.480079px;}
.y51{bottom:485.460091px;}
.yaf{bottom:486.360077px;}
.y1c{bottom:488.340088px;}
.y40{bottom:495.180039px;}
.y6f{bottom:495.540047px;}
.y94{bottom:504.720085px;}
.yae{bottom:509.760064px;}
.y50{bottom:515.700096px;}
.y1b{bottom:518.580093px;}
.y3f{bottom:525.420043px;}
.y6e{bottom:525.780052px;}
.yad{bottom:533.340088px;}
.y93{bottom:534.960091px;}
.y4f{bottom:545.940033px;}
.y1a{bottom:548.820099px;}
.y3e{bottom:555.480079px;}
.y6d{bottom:555.840088px;}
.yac{bottom:556.920043px;}
.y4e{bottom:576.000068px;}
.y19{bottom:579.060036px;}
.yab{bottom:580.500068px;}
.y82{bottom:585.180039px;}
.y3d{bottom:585.900055px;}
.y6c{bottom:586.260064px;}
.yaa{bottom:603.900055px;}
.y4d{bottom:606.420043px;}
.y18{bottom:609.120072px;}
.y81{bottom:613.080093px;}
.y3c{bottom:615.960091px;}
.y92{bottom:616.140060px;}
.y6b{bottom:616.320099px;}
.y3b{bottom:635.760064px;}
.y4c{bottom:636.480079px;}
.y17{bottom:639.540047px;}
.y80{bottom:640.800041px;}
.y91{bottom:646.380066px;}
.y6a{bottom:646.740074px;}
.y4b{bottom:666.540047px;}
.y3a{bottom:666.900055px;}
.y7f{bottom:668.340088px;}
.y16{bottom:669.600083px;}
.y90{bottom:676.620072px;}
.y69{bottom:676.800041px;}
.y39{bottom:696.960056px;}
.y15{bottom:699.840054px;}
.y8a{bottom:706.680073px;}
.y68{bottom:707.040081px;}
.y14{bottom:719.460056px;}
.y38{bottom:727.200061px;}
.y13{bottom:736.380066px;}
.y89{bottom:736.920078px;}
.y8f{bottom:737.100083px;}
.y67{bottom:737.280052px;}
.y88{bottom:757.260064px;}
.y37{bottom:757.440067px;}
.y12{bottom:758.340054px;}
.y8e{bottom:767.160049px;}
.y66{bottom:767.520058px;}
.y11{bottom:781.920078px;}
.ya9{bottom:787.320065px;}
.y36{bottom:787.680073px;}
.y8d{bottom:797.580059px;}
.y65{bottom:797.760064px;}
.y10{bottom:805.320065px;}
.ya8{bottom:817.560070px;}
.y35{bottom:817.920078px;}
.y8c{bottom:827.640060px;}
.y64{bottom:828.000068px;}
.yf{bottom:828.900055px;}
.y34{bottom:848.160049px;}
.ye{bottom:852.840054px;}
.y8b{bottom:857.700061px;}
.y63{bottom:858.060070px;}
.y33{bottom:878.220051px;}
.yd{bottom:879.840054px;}
.y62{bottom:888.480079px;}
.yc{bottom:906.660049px;}
.y32{bottom:908.640060px;}
.y61{bottom:918.540081px;}
.yb{bottom:933.480079px;}
.y31{bottom:938.700061px;}
.y60{bottom:948.960056px;}
.ya{bottom:960.660049px;}
.y30{bottom:969.120072px;}
.ya7{bottom:978.660067px;}
.y5f{bottom:979.020058px;}
.y9{bottom:990.720068px;}
.y2f{bottom:999.180073px;}
.y5e{bottom:1008.360060px;}
.ya6{bottom:1009.260064px;}
.y8{bottom:1021.140060px;}
.y2e{bottom:1029.420061px;}
.y5d{bottom:1035.900072px;}
.ya5{bottom:1039.500068px;}
.y7{bottom:1051.200061px;}
.y2d{bottom:1059.660067px;}
.y5c{bottom:1063.620072px;}
.ya4{bottom:1069.740074px;}
.y6{bottom:1081.440067px;}
.ya3{bottom:1089.720068px;}
.y2c{bottom:1089.900072px;}
.y5b{bottom:1091.520058px;}
.hf{height:20.520057px;}
.h2{height:27.180039px;}
.hd{height:27.360008px;}
.h13{height:28.734612px;}
.hb{height:39.909326px;}
.h5{height:47.129186px;}
.ha{height:52.938332px;}
.h14{height:57.763352px;}
.h11{height:57.801727px;}
.h4{height:59.063712px;}
.he{height:59.936101px;}
.h10{height:62.246171px;}
.hc{height:62.827911px;}
.h9{height:73.508805px;}
.h12{height:73.774549px;}
.h7{height:76.825310px;}
.h3{height:78.554789px;}
.h8{height:83.561178px;}
.h6{height:93.369461px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:6.300007px;}
.w4{width:7.919975px;}
.w2{width:27.720000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:124.200002px;}
.x4{left:128.340002px;}
.x1{left:149.219999px;}
.xf{left:150.479994px;}
.xb{left:175.680005px;}
.x2{left:176.939999px;}
.x10{left:180.360008px;}
.x11{left:182.879998px;}
.x6{left:188.280001px;}
.x3{left:192.780001px;}
.xe{left:227.159998px;}
.x7{left:276.659998px;}
.x8{left:280.080008px;}
.xa{left:332.100014px;}
.x9{left:446.759994px;}
.xc{left:549.899987px;}
.xd{left:769.320030px;}
@media print{
.v2{vertical-align:-26.239992pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.159912pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000487pt;}
.ls6{letter-spacing:0.013384pt;}
.ls1{letter-spacing:0.134528pt;}
.ls5{letter-spacing:0.250996pt;}
.ls7{letter-spacing:0.258298pt;}
.ls3{letter-spacing:0.426100pt;}
.ls8{letter-spacing:0.767573pt;}
.ls2{letter-spacing:1.066112pt;}
.ws1{word-spacing:-23.360901pt;}
.ws0{word-spacing:-18.227705pt;}
.ws2{word-spacing:-18.221500pt;}
.ws5{word-spacing:-15.574387pt;}
.ws3{word-spacing:-15.573900pt;}
.ws4{word-spacing:0.000000pt;}
._2f{margin-left:-3.709919pt;}
._2{margin-left:-2.526581pt;}
._0{margin-left:-1.176016pt;}
._1{width:1.031616pt;}
._6{width:2.172579pt;}
._3{width:3.185510pt;}
._b{width:4.955177pt;}
._11{width:5.848698pt;}
._9{width:6.966643pt;}
._c{width:8.073793pt;}
._7{width:9.344340pt;}
._8{width:10.829223pt;}
._a{width:12.500829pt;}
._19{width:13.404774pt;}
._f{width:14.567193pt;}
._12{width:16.500962pt;}
._10{width:17.473713pt;}
._4{width:18.708634pt;}
._5{width:19.991202pt;}
._16{width:21.124412pt;}
._1c{width:22.040419pt;}
._1a{width:23.173242pt;}
._15{width:24.731353pt;}
._14{width:25.955851pt;}
._17{width:27.358645pt;}
._1f{width:28.293713pt;}
._3c{width:29.902861pt;}
._30{width:30.879921pt;}
._27{width:32.374245pt;}
._28{width:33.475611pt;}
._d{width:34.617373pt;}
._e{width:36.010905pt;}
._23{width:37.263573pt;}
._24{width:38.155723pt;}
._26{width:39.321135pt;}
._2a{width:40.465827pt;}
._33{width:42.092845pt;}
._2d{width:44.210409pt;}
._2e{width:45.103541pt;}
._25{width:49.318161pt;}
._1b{width:50.512241pt;}
._3a{width:58.408363pt;}
._39{width:61.725449pt;}
._38{width:63.102312pt;}
._2c{width:65.746152pt;}
._2b{width:67.842342pt;}
._31{width:70.498665pt;}
._32{width:71.766186pt;}
._22{width:77.224514pt;}
._13{width:78.597093pt;}
._37{width:80.953051pt;}
._20{width:82.542643pt;}
._21{width:84.322758pt;}
._1e{width:88.676133pt;}
._1d{width:89.633878pt;}
._35{width:110.113711pt;}
._34{width:127.006244pt;}
._3b{width:137.855886pt;}
._29{width:152.624220pt;}
._18{width:222.395292pt;}
._36{width:1640.472376pt;}
.fs7{font-size:33.639720pt;}
.fs6{font-size:41.738000pt;}
.fs5{font-size:46.722000pt;}
.fs8{font-size:51.705600pt;}
.fs2{font-size:57.312000pt;}
.fs1{font-size:62.295600pt;}
.fs4{font-size:72.886000pt;}
.fs0{font-size:82.853204pt;}
.fs3{font-size:93.443604pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.520019pt;}
.y28{bottom:4.640014pt;}
.y2{bottom:4.640015pt;}
.y5{bottom:97.120118pt;}
.y27{bottom:112.160035pt;}
.y2a{bottom:116.160035pt;}
.y26{bottom:116.800049pt;}
.y4{bottom:117.600037pt;}
.y29{bottom:119.680054pt;}
.y1{bottom:131.040039pt;}
.y3{bottom:140.480042pt;}
.ya2{bottom:144.800049pt;}
.y7a{bottom:144.960083pt;}
.ybc{bottom:160.800049pt;}
.y7b{bottom:162.880066pt;}
.ya1{bottom:163.040039pt;}
.y87{bottom:165.120057pt;}
.ya0{bottom:168.320069pt;}
.y7e{bottom:168.800049pt;}
.y4a{bottom:171.520081pt;}
.y79{bottom:172.000061pt;}
.y9f{bottom:177.440064pt;}
.y9e{bottom:180.320069pt;}
.ybb{bottom:181.600037pt;}
.y5a{bottom:189.920044pt;}
.y86{bottom:192.000061pt;}
.y25{bottom:192.320069pt;}
.y7d{bottom:193.440064pt;}
.y49{bottom:198.400086pt;}
.y78{bottom:198.720032pt;}
.yba{bottom:202.400086pt;}
.y9d{bottom:207.200074pt;}
.y59{bottom:216.640076pt;}
.y7c{bottom:218.080079pt;}
.y85{bottom:218.880066pt;}
.y24{bottom:219.200074pt;}
.yb9{bottom:223.360047pt;}
.y48{bottom:225.120057pt;}
.y77{bottom:225.440064pt;}
.y9c{bottom:234.080079pt;}
.y58{bottom:243.360047pt;}
.yb8{bottom:244.320069pt;}
.y84{bottom:245.760071pt;}
.y23{bottom:246.080079pt;}
.y47{bottom:252.160035pt;}
.y76{bottom:252.480042pt;}
.y9b{bottom:260.800049pt;}
.yb7{bottom:265.280030pt;}
.y57{bottom:270.400086pt;}
.y83{bottom:271.680054pt;}
.y22{bottom:272.800049pt;}
.y46{bottom:278.880066pt;}
.y75{bottom:279.200074pt;}
.yb6{bottom:286.080079pt;}
.y9a{bottom:287.840088pt;}
.y56{bottom:297.120057pt;}
.y21{bottom:299.840088pt;}
.y45{bottom:305.920044pt;}
.y74{bottom:306.240052pt;}
.yb5{bottom:306.880066pt;}
.y99{bottom:314.560059pt;}
.y55{bottom:324.160035pt;}
.y20{bottom:326.560059pt;}
.yb4{bottom:327.840088pt;}
.y44{bottom:332.640076pt;}
.y73{bottom:332.960083pt;}
.y98{bottom:341.600037pt;}
.yb3{bottom:348.640076pt;}
.y54{bottom:350.880066pt;}
.y1f{bottom:353.440064pt;}
.y43{bottom:359.520081pt;}
.y72{bottom:359.840088pt;}
.y97{bottom:368.320069pt;}
.yb2{bottom:369.760071pt;}
.y53{bottom:377.760071pt;}
.y1e{bottom:380.320069pt;}
.y42{bottom:386.400086pt;}
.y71{bottom:386.720032pt;}
.yb1{bottom:390.560059pt;}
.y96{bottom:395.200074pt;}
.y52{bottom:404.640076pt;}
.y1d{bottom:407.200074pt;}
.yb0{bottom:411.520081pt;}
.y41{bottom:413.280030pt;}
.y70{bottom:413.600037pt;}
.y95{bottom:421.760071pt;}
.y51{bottom:431.520081pt;}
.yaf{bottom:432.320069pt;}
.y1c{bottom:434.080079pt;}
.y40{bottom:440.160035pt;}
.y6f{bottom:440.480042pt;}
.y94{bottom:448.640076pt;}
.yae{bottom:453.120057pt;}
.y50{bottom:458.400086pt;}
.y1b{bottom:460.960083pt;}
.y3f{bottom:467.040039pt;}
.y6e{bottom:467.360047pt;}
.yad{bottom:474.080079pt;}
.y93{bottom:475.520081pt;}
.y4f{bottom:485.280030pt;}
.y1a{bottom:487.840088pt;}
.y3e{bottom:493.760071pt;}
.y6d{bottom:494.080079pt;}
.yac{bottom:495.040039pt;}
.y4e{bottom:512.000061pt;}
.y19{bottom:514.720032pt;}
.yab{bottom:516.000061pt;}
.y82{bottom:520.160035pt;}
.y3d{bottom:520.800049pt;}
.y6c{bottom:521.120057pt;}
.yaa{bottom:536.800049pt;}
.y4d{bottom:539.040039pt;}
.y18{bottom:541.440064pt;}
.y81{bottom:544.960083pt;}
.y3c{bottom:547.520081pt;}
.y92{bottom:547.680054pt;}
.y6b{bottom:547.840088pt;}
.y3b{bottom:565.120057pt;}
.y4c{bottom:565.760071pt;}
.y17{bottom:568.480042pt;}
.y80{bottom:569.600037pt;}
.y91{bottom:574.560059pt;}
.y6a{bottom:574.880066pt;}
.y4b{bottom:592.480042pt;}
.y3a{bottom:592.800049pt;}
.y7f{bottom:594.080079pt;}
.y16{bottom:595.200074pt;}
.y90{bottom:601.440064pt;}
.y69{bottom:601.600037pt;}
.y39{bottom:619.520050pt;}
.y15{bottom:622.080048pt;}
.y8a{bottom:628.160065pt;}
.y68{bottom:628.480072pt;}
.y14{bottom:639.520050pt;}
.y38{bottom:646.400055pt;}
.y13{bottom:654.560059pt;}
.y89{bottom:655.040070pt;}
.y8f{bottom:655.200074pt;}
.y67{bottom:655.360047pt;}
.y88{bottom:673.120057pt;}
.y37{bottom:673.280060pt;}
.y12{bottom:674.080048pt;}
.y8e{bottom:681.920044pt;}
.y66{bottom:682.240052pt;}
.y11{bottom:695.040070pt;}
.ya9{bottom:699.840058pt;}
.y36{bottom:700.160065pt;}
.y8d{bottom:708.960053pt;}
.y65{bottom:709.120057pt;}
.y10{bottom:715.840058pt;}
.ya8{bottom:726.720063pt;}
.y35{bottom:727.040070pt;}
.y8c{bottom:735.680054pt;}
.y64{bottom:736.000061pt;}
.yf{bottom:736.800049pt;}
.y34{bottom:753.920044pt;}
.ye{bottom:758.080048pt;}
.y8b{bottom:762.400055pt;}
.y63{bottom:762.720063pt;}
.y33{bottom:780.640046pt;}
.yd{bottom:782.080048pt;}
.y62{bottom:789.760071pt;}
.yc{bottom:805.920044pt;}
.y32{bottom:807.680054pt;}
.y61{bottom:816.480072pt;}
.yb{bottom:829.760071pt;}
.y31{bottom:834.400055pt;}
.y60{bottom:843.520050pt;}
.ya{bottom:853.920044pt;}
.y30{bottom:861.440064pt;}
.ya7{bottom:869.920060pt;}
.y5f{bottom:870.240052pt;}
.y9{bottom:880.640061pt;}
.y2f{bottom:888.160065pt;}
.y5e{bottom:896.320054pt;}
.ya6{bottom:897.120057pt;}
.y8{bottom:907.680054pt;}
.y2e{bottom:915.040055pt;}
.y5d{bottom:920.800064pt;}
.ya5{bottom:924.000061pt;}
.y7{bottom:934.400055pt;}
.y2d{bottom:941.920060pt;}
.y5c{bottom:945.440064pt;}
.ya4{bottom:950.880066pt;}
.y6{bottom:961.280060pt;}
.ya3{bottom:968.640061pt;}
.y2c{bottom:968.800064pt;}
.y5b{bottom:970.240052pt;}
.hf{height:18.240051pt;}
.h2{height:24.160035pt;}
.hd{height:24.320007pt;}
.h13{height:25.541877pt;}
.hb{height:35.474956pt;}
.h5{height:41.892609pt;}
.ha{height:47.056296pt;}
.h14{height:51.345202pt;}
.h11{height:51.379313pt;}
.h4{height:52.501077pt;}
.he{height:53.276534pt;}
.h10{height:55.329930pt;}
.hc{height:55.847032pt;}
.h9{height:65.341160pt;}
.h12{height:65.577377pt;}
.h7{height:68.289164pt;}
.h3{height:69.826480pt;}
.h8{height:74.276603pt;}
.h6{height:82.995076pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:5.600006pt;}
.w4{width:7.039978pt;}
.w2{width:24.640000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:110.400002pt;}
.x4{left:114.080002pt;}
.x1{left:132.639999pt;}
.xf{left:133.759995pt;}
.xb{left:156.160004pt;}
.x2{left:157.279999pt;}
.x10{left:160.320007pt;}
.x11{left:162.559998pt;}
.x6{left:167.360001pt;}
.x3{left:171.360001pt;}
.xe{left:201.919998pt;}
.x7{left:245.919998pt;}
.x8{left:248.960007pt;}
.xa{left:295.200012pt;}
.x9{left:397.119995pt;}
.xc{left:488.799988pt;}
.xd{left:683.840027pt;}
}




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