
    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_614c17d8af6d979f1572b297.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_23cb37a59603fc81a98c83dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956000;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_18b9f4f8e90ffa5dd705f79a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_d8ecf125e452de2061ea7dcd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.746094;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_6ac547de35ff77b01f7067a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_6f4553f95f98797f31e879b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_21fc0f20f9fb2b241e25c8c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_ef702c9cee9d0c6c9c19a5f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.681151px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:3.679713px;}
.ls6{letter-spacing:107.972075px;}
.ls5{letter-spacing:107.972093px;}
.ls3{letter-spacing:107.985051px;}
.ls2{letter-spacing:107.986253px;}
.ls1{letter-spacing:108.000120px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-33.600000px;}
.ws2{word-spacing:-28.800001px;}
.ws4{word-spacing:-26.592002px;}
.ws6{word-spacing:-23.268000px;}
.ws8{word-spacing:-20.400000px;}
.ws3{word-spacing:-0.144000px;}
.ws1{word-spacing:-0.090000px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:81.394251px;}
._8{margin-left:-14.886000px;}
._d{margin-left:-13.344000px;}
._6{margin-left:-9.936472px;}
._9{margin-left:-7.650000px;}
._7{margin-left:-6.408000px;}
._5{margin-left:-4.950000px;}
._1{margin-left:-3.510000px;}
._0{margin-left:-2.430000px;}
._2{margin-left:-1.284000px;}
._4{width:1.408050px;}
._3{width:2.533365px;}
._a{width:107.986253px;}
._b{width:219.836397px;}
._c{width:1042.261302px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(44,56,65);}
.fc0{color:rgb(54,63,73);}
.fs4{font-size:60.000000px;}
.fs3{font-size:78.000005px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:90.000003px;}
.fs6{font-size:96.000006px;}
.fs9{font-size:102.000000px;}
.fsa{font-size:114.000007px;}
.fs8{font-size:120.000001px;}
.fs2{font-size:144.000005px;}
.fs1{font-size:167.999999px;}
.fs0{font-size:270.000009px;}
.y0{bottom:0.000000px;}
.y17{bottom:19.723786px;}
.y7{bottom:28.082245px;}
.y9c{bottom:31.725713px;}
.y8e{bottom:46.266350px;}
.y49{bottom:51.157067px;}
.y6d{bottom:59.437560px;}
.y34{bottom:61.541353px;}
.y9b{bottom:62.325714px;}
.y54{bottom:62.846499px;}
.y78{bottom:68.437560px;}
.y5{bottom:73.562462px;}
.y11{bottom:75.380675px;}
.y8d{bottom:76.866373px;}
.y76{bottom:79.237558px;}
.y48{bottom:80.137090px;}
.y6c{bottom:88.237558px;}
.y4{bottom:92.449829px;}
.y9a{bottom:92.925709px;}
.y33{bottom:94.661354px;}
.y77{bottom:97.237559px;}
.y8c{bottom:107.466374px;}
.y47{bottom:109.117102px;}
.y24{bottom:109.248700px;}
.y5e{bottom:109.421388px;}
.y3b{bottom:110.582647px;}
.y1e{bottom:110.701447px;}
.y2d{bottom:119.326822px;}
.y53{bottom:119.726501px;}
.y99{bottom:123.525705px;}
.y10{bottom:124.430688px;}
.y32{bottom:127.781366px;}
.ya3{bottom:129.337938px;}
.y75{bottom:131.774981px;}
.y8b{bottom:138.066397px;}
.y46{bottom:138.097114px;}
.y5d{bottom:142.541389px;}
.y3a{bottom:143.702636px;}
.y2c{bottom:152.446812px;}
.y52{bottom:152.846502px;}
.y1d{bottom:153.901448px;}
.y98{bottom:154.125700px;}
.yf{bottom:155.480701px;}
.y74{bottom:158.774982px;}
.y16{bottom:160.224454px;}
.ya2{bottom:163.537940px;}
.y45{bottom:167.077127px;}
.y80{bottom:167.774982px;}
.y8a{bottom:168.666410px;}
.y5c{bottom:175.661390px;}
.y39{bottom:176.822626px;}
.y3{bottom:177.918178px;}
.y97{bottom:184.725697px;}
.y2b{bottom:185.566801px;}
.y73{bottom:185.774983px;}
.y51{bottom:185.966492px;}
.y7f{bottom:194.774983px;}
.y23{bottom:195.648669px;}
.y44{bottom:196.057128px;}
.y1c{bottom:197.101416px;}
.ya1{bottom:197.737941px;}
.y89{bottom:199.266411px;}
.y15{bottom:203.424456px;}
.ye{bottom:204.530702px;}
.y5b{bottom:208.781380px;}
.y72{bottom:212.774984px;}
.y2a{bottom:218.686780px;}
.y50{bottom:219.086481px;}
.y62{bottom:219.640153px;}
.y7e{bottom:221.774984px;}
.y43{bottom:225.037117px;}
.y6a{bottom:229.723818px;}
.y88{bottom:229.866412px;}
.y31{bottom:230.021358px;}
.ya0{bottom:231.937930px;}
.yd{bottom:235.580692px;}
.y22{bottom:238.848671px;}
.y71{bottom:239.774984px;}
.y1b{bottom:240.301417px;}
.y5a{bottom:241.901370px;}
.y14{bottom:246.624446px;}
.y61{bottom:246.640152px;}
.y96{bottom:248.003392px;}
.y7d{bottom:248.774985px;}
.y29{bottom:251.806770px;}
.y4f{bottom:252.206460px;}
.y42{bottom:254.017107px;}
.y69{bottom:256.723822px;}
.y87{bottom:260.466401px;}
.y30{bottom:263.141336px;}
.y9f{bottom:266.137938px;}
.yc{bottom:266.630682px;}
.y70{bottom:266.774985px;}
.y2{bottom:269.115345px;}
.y68{bottom:274.053533px;}
.y59{bottom:275.021359px;}
.y7c{bottom:275.774986px;}
.y95{bottom:278.603382px;}
.y38{bottom:279.062596px;}
.y21{bottom:282.048661px;}
.y41{bottom:282.997108px;}
.y1a{bottom:283.501407px;}
.y28{bottom:284.926771px;}
.y4e{bottom:285.326450px;}
.y86{bottom:291.066402px;}
.y6f{bottom:293.774986px;}
.y2f{bottom:296.261326px;}
.y9e{bottom:300.337944px;}
.y67{bottom:301.053534px;}
.y7b{bottom:302.774986px;}
.y58{bottom:308.141338px;}
.y94{bottom:309.203383px;}
.y40{bottom:311.977098px;}
.y37{bottom:312.182602px;}
.y60{bottom:315.226772px;}
.yb{bottom:315.680678px;}
.y27{bottom:318.046778px;}
.y4d{bottom:318.446451px;}
.y85{bottom:321.666403px;}
.y66{bottom:328.053535px;}
.y7a{bottom:329.774987px;}
.y13{bottom:333.024449px;}
.y93{bottom:339.803384px;}
.y3f{bottom:340.957098px;}
.y5f{bottom:342.226770px;}
.y36{bottom:345.302593px;}
.y6e{bottom:347.774989px;}
.y1{bottom:350.115337px;}
.y26{bottom:351.166769px;}
.y4c{bottom:351.566457px;}
.y84{bottom:352.266399px;}
.y65{bottom:355.053536px;}
.y57{bottom:359.261345px;}
.ya{bottom:364.730669px;}
.y20{bottom:368.448664px;}
.y9d{bottom:368.737946px;}
.y19{bottom:369.901410px;}
.y3e{bottom:369.937088px;}
.y92{bottom:370.403379px;}
.y12{bottom:376.224450px;}
.y35{bottom:378.422588px;}
.y64{bottom:382.053540px;}
.y83{bottom:382.866394px;}
.y79{bottom:383.774990px;}
.y25{bottom:384.286763px;}
.y4b{bottom:384.686448px;}
.y56{bottom:392.381336px;}
.y9{bottom:395.780669px;}
.y2e{bottom:398.501330px;}
.y3d{bottom:398.917089px;}
.y91{bottom:401.003375px;}
.y63{bottom:409.053539px;}
.y1f{bottom:411.648665px;}
.y18{bottom:413.101411px;}
.y82{bottom:413.466389px;}
.y4a{bottom:417.806443px;}
.y55{bottom:425.501330px;}
.y8{bottom:426.830665px;}
.y90{bottom:431.603370px;}
.y81{bottom:444.066387px;}
.y3c{bottom:445.897082px;}
.y8f{bottom:462.203368px;}
.y6b{bottom:534.769722px;}
.y6{bottom:536.255788px;}
.h6{height:43.920000px;}
.h4{height:57.096004px;}
.hd{height:61.236328px;}
.h9{height:65.522463px;}
.h7{height:65.610354px;}
.h8{height:65.742190px;}
.ha{height:65.880002px;}
.hc{height:69.937504px;}
.hb{height:69.984379px;}
.h10{height:70.272004px;}
.h11{height:73.746000px;}
.h12{height:74.664000px;}
.h14{height:83.334005px;}
.h13{height:83.448005px;}
.he{height:87.656251px;}
.hf{height:104.203614px;}
.h3{height:105.408003px;}
.h5{height:121.464000px;}
.h2{height:122.976000px;}
.h1{height:195.210006px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb{left:10.125000px;}
.x19{left:19.939961px;}
.x1{left:21.469488px;}
.x18{left:24.200788px;}
.x3{left:29.329725px;}
.x6{left:31.120635px;}
.x2{left:32.527559px;}
.x3b{left:33.584646px;}
.x16{left:36.708226px;}
.x4{left:46.939963px;}
.x14{left:49.146353px;}
.x10{left:50.447400px;}
.x3c{left:51.722954px;}
.x9{left:55.356314px;}
.xc{left:62.743934px;}
.x35{left:64.125002px;}
.xa{left:71.250407px;}
.x1a{left:73.939962px;}
.x17{left:78.200790px;}
.x15{left:83.135616px;}
.x3d{left:87.584648px;}
.xf{left:88.635829px;}
.x11{left:91.939964px;}
.xd{left:100.939964px;}
.x1c{left:105.857837px;}
.x7{left:118.500461px;}
.x31{left:157.231891px;}
.x2e{left:166.231891px;}
.x2a{left:175.010435px;}
.x8{left:195.612655px;}
.x1e{left:210.378967px;}
.x1d{left:244.760681px;}
.xe{left:316.939971px;}
.x24{left:359.660381px;}
.x20{left:389.642072px;}
.x21{left:400.304303px;}
.x22{left:401.545757px;}
.x23{left:417.794537px;}
.x1f{left:421.568338px;}
.x3a{left:436.064189px;}
.x33{left:485.694358px;}
.x2c{left:512.694358px;}
.x34{left:539.694355px;}
.x12{left:562.386755px;}
.x2d{left:566.694356px;}
.x39{left:579.047909px;}
.x26{left:587.077371px;}
.x13{left:603.879319px;}
.x36{left:605.592807px;}
.x32{left:610.759977px;}
.x37{left:617.197790px;}
.x29{left:621.496032px;}
.x25{left:626.496318px;}
.x2f{left:640.826773px;}
.x2b{left:657.692508px;}
.x38{left:659.592809px;}
.x30{left:666.692508px;}
.x28{left:795.411453px;}
.x27{left:799.784011px;}
.x1b{left:1040.462012px;}
.x5{left:1047.914073px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.383245pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:3.270856pt;}
.ls6{letter-spacing:95.975178pt;}
.ls5{letter-spacing:95.975194pt;}
.ls3{letter-spacing:95.986712pt;}
.ls2{letter-spacing:95.987780pt;}
.ls1{letter-spacing:96.000107pt;}
.ws5{word-spacing:-29.866667pt;}
.ws2{word-spacing:-25.600001pt;}
.ws4{word-spacing:-23.637335pt;}
.ws6{word-spacing:-20.682667pt;}
.ws8{word-spacing:-18.133333pt;}
.ws3{word-spacing:-0.128000pt;}
.ws1{word-spacing:-0.080000pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:72.350445pt;}
._8{margin-left:-13.232000pt;}
._d{margin-left:-11.861334pt;}
._6{margin-left:-8.832419pt;}
._9{margin-left:-6.800000pt;}
._7{margin-left:-5.696000pt;}
._5{margin-left:-4.400000pt;}
._1{margin-left:-3.120000pt;}
._0{margin-left:-2.160000pt;}
._2{margin-left:-1.141333pt;}
._4{width:1.251600pt;}
._3{width:2.251880pt;}
._a{width:95.987780pt;}
._b{width:195.410130pt;}
._c{width:926.454490pt;}
.fs4{font-size:53.333334pt;}
.fs3{font-size:69.333338pt;}
.fs7{font-size:74.666666pt;}
.fs5{font-size:80.000003pt;}
.fs6{font-size:85.333339pt;}
.fs9{font-size:90.666667pt;}
.fsa{font-size:101.333339pt;}
.fs8{font-size:106.666667pt;}
.fs2{font-size:128.000004pt;}
.fs1{font-size:149.333333pt;}
.fs0{font-size:240.000008pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:17.532254pt;}
.y7{bottom:24.961996pt;}
.y9c{bottom:28.200634pt;}
.y8e{bottom:41.125644pt;}
.y49{bottom:45.472948pt;}
.y6d{bottom:52.833386pt;}
.y34{bottom:54.703424pt;}
.y9b{bottom:55.400634pt;}
.y54{bottom:55.863555pt;}
.y78{bottom:60.833387pt;}
.y5{bottom:65.388855pt;}
.y11{bottom:67.005045pt;}
.y8d{bottom:68.325665pt;}
.y76{bottom:70.433385pt;}
.y48{bottom:71.232969pt;}
.y6c{bottom:78.433385pt;}
.y4{bottom:82.177625pt;}
.y9a{bottom:82.600630pt;}
.y33{bottom:84.143425pt;}
.y77{bottom:86.433385pt;}
.y8c{bottom:95.525666pt;}
.y47{bottom:96.992980pt;}
.y24{bottom:97.109956pt;}
.y5e{bottom:97.263456pt;}
.y3b{bottom:98.295686pt;}
.y1e{bottom:98.401286pt;}
.y2d{bottom:106.068286pt;}
.y53{bottom:106.423556pt;}
.y99{bottom:109.800626pt;}
.y10{bottom:110.605056pt;}
.y32{bottom:113.583436pt;}
.ya3{bottom:114.967056pt;}
.y75{bottom:117.133316pt;}
.y8b{bottom:122.725687pt;}
.y46{bottom:122.752991pt;}
.y5d{bottom:126.703457pt;}
.y3a{bottom:127.735677pt;}
.y2c{bottom:135.508277pt;}
.y52{bottom:135.863557pt;}
.y1d{bottom:136.801287pt;}
.y98{bottom:137.000622pt;}
.yf{bottom:138.205067pt;}
.y74{bottom:141.133317pt;}
.y16{bottom:142.421737pt;}
.ya2{bottom:145.367057pt;}
.y45{bottom:148.513001pt;}
.y80{bottom:149.133317pt;}
.y8a{bottom:149.925698pt;}
.y5c{bottom:156.143458pt;}
.y39{bottom:157.175668pt;}
.y3{bottom:158.149492pt;}
.y97{bottom:164.200620pt;}
.y2b{bottom:164.948268pt;}
.y73{bottom:165.133318pt;}
.y51{bottom:165.303548pt;}
.y7f{bottom:173.133318pt;}
.y23{bottom:173.909928pt;}
.y44{bottom:174.273002pt;}
.y1c{bottom:175.201258pt;}
.ya1{bottom:175.767058pt;}
.y89{bottom:177.125698pt;}
.y15{bottom:180.821739pt;}
.ye{bottom:181.805069pt;}
.y5b{bottom:185.583449pt;}
.y72{bottom:189.133319pt;}
.y2a{bottom:194.388249pt;}
.y50{bottom:194.743539pt;}
.y62{bottom:195.235692pt;}
.y7e{bottom:197.133319pt;}
.y43{bottom:200.032993pt;}
.y6a{bottom:204.198949pt;}
.y88{bottom:204.325699pt;}
.y31{bottom:204.463429pt;}
.ya0{bottom:206.167049pt;}
.yd{bottom:209.405059pt;}
.y22{bottom:212.309930pt;}
.y71{bottom:213.133320pt;}
.y1b{bottom:213.601260pt;}
.y5a{bottom:215.023440pt;}
.y14{bottom:219.221730pt;}
.y61{bottom:219.235691pt;}
.y96{bottom:220.447460pt;}
.y7d{bottom:221.133320pt;}
.y29{bottom:223.828240pt;}
.y4f{bottom:224.183520pt;}
.y42{bottom:225.792984pt;}
.y69{bottom:228.198953pt;}
.y87{bottom:231.525690pt;}
.y30{bottom:233.903410pt;}
.y9f{bottom:236.567056pt;}
.yc{bottom:237.005050pt;}
.y70{bottom:237.133320pt;}
.y2{bottom:239.213640pt;}
.y68{bottom:243.603141pt;}
.y59{bottom:244.463431pt;}
.y7c{bottom:245.133321pt;}
.y95{bottom:247.647451pt;}
.y38{bottom:248.055641pt;}
.y21{bottom:250.709921pt;}
.y41{bottom:251.552985pt;}
.y1a{bottom:252.001251pt;}
.y28{bottom:253.268241pt;}
.y4e{bottom:253.623511pt;}
.y86{bottom:258.725691pt;}
.y6f{bottom:261.133321pt;}
.y2f{bottom:263.343401pt;}
.y9e{bottom:266.967061pt;}
.y67{bottom:267.603141pt;}
.y7b{bottom:269.133321pt;}
.y58{bottom:273.903411pt;}
.y94{bottom:274.847452pt;}
.y40{bottom:277.312976pt;}
.y37{bottom:277.495647pt;}
.y60{bottom:280.201575pt;}
.yb{bottom:280.605047pt;}
.y27{bottom:282.708247pt;}
.y4d{bottom:283.063512pt;}
.y85{bottom:285.925692pt;}
.y66{bottom:291.603142pt;}
.y7a{bottom:293.133322pt;}
.y13{bottom:296.021732pt;}
.y93{bottom:302.047452pt;}
.y3f{bottom:303.072976pt;}
.y5f{bottom:304.201573pt;}
.y36{bottom:306.935639pt;}
.y6e{bottom:309.133324pt;}
.y1{bottom:311.213633pt;}
.y26{bottom:312.148239pt;}
.y4c{bottom:312.503518pt;}
.y84{bottom:313.125688pt;}
.y65{bottom:315.603143pt;}
.y57{bottom:319.343418pt;}
.ya{bottom:324.205039pt;}
.y20{bottom:327.509923pt;}
.y9d{bottom:327.767063pt;}
.y19{bottom:328.801253pt;}
.y3e{bottom:328.832967pt;}
.y92{bottom:329.247448pt;}
.y12{bottom:334.421733pt;}
.y35{bottom:336.375633pt;}
.y64{bottom:339.603147pt;}
.y83{bottom:340.325684pt;}
.y79{bottom:341.133325pt;}
.y25{bottom:341.588234pt;}
.y4b{bottom:341.943510pt;}
.y56{bottom:348.783410pt;}
.y9{bottom:351.805039pt;}
.y2e{bottom:354.223404pt;}
.y3d{bottom:354.592968pt;}
.y91{bottom:356.447444pt;}
.y63{bottom:363.603145pt;}
.y1f{bottom:365.909924pt;}
.y18{bottom:367.201254pt;}
.y82{bottom:367.525679pt;}
.y4a{bottom:371.383505pt;}
.y55{bottom:378.223405pt;}
.y8{bottom:379.405036pt;}
.y90{bottom:383.647440pt;}
.y81{bottom:394.725677pt;}
.y3c{bottom:396.352961pt;}
.y8f{bottom:410.847438pt;}
.y6b{bottom:475.350864pt;}
.y6{bottom:476.671812pt;}
.h6{height:39.040000pt;}
.h4{height:50.752004pt;}
.hd{height:54.432291pt;}
.h9{height:58.242189pt;}
.h7{height:58.320314pt;}
.h8{height:58.437502pt;}
.ha{height:58.560002pt;}
.hc{height:62.166671pt;}
.hb{height:62.208337pt;}
.h10{height:62.464004pt;}
.h11{height:65.552000pt;}
.h12{height:66.368000pt;}
.h14{height:74.074671pt;}
.h13{height:74.176004pt;}
.he{height:77.916667pt;}
.hf{height:92.625434pt;}
.h3{height:93.696003pt;}
.h5{height:107.968000pt;}
.h2{height:109.312000pt;}
.h1{height:173.520006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.000000pt;}
.x19{left:17.724410pt;}
.x1{left:19.083990pt;}
.x18{left:21.511812pt;}
.x3{left:26.070867pt;}
.x6{left:27.662787pt;}
.x2{left:28.913386pt;}
.x3b{left:29.853019pt;}
.x16{left:32.629534pt;}
.x4{left:41.724411pt;}
.x14{left:43.685647pt;}
.x10{left:44.842133pt;}
.x3c{left:45.975959pt;}
.x9{left:49.205613pt;}
.xc{left:55.772386pt;}
.x35{left:57.000002pt;}
.xa{left:63.333695pt;}
.x1a{left:65.724411pt;}
.x17{left:69.511813pt;}
.x15{left:73.898325pt;}
.x3d{left:77.853020pt;}
.xf{left:78.787404pt;}
.x11{left:81.724413pt;}
.xd{left:89.724413pt;}
.x1c{left:94.095855pt;}
.x7{left:105.333743pt;}
.x31{left:139.761680pt;}
.x2e{left:147.761681pt;}
.x2a{left:155.564831pt;}
.x8{left:173.877916pt;}
.x1e{left:187.003526pt;}
.x1d{left:217.565050pt;}
.xe{left:281.724419pt;}
.x24{left:319.698116pt;}
.x20{left:346.348508pt;}
.x21{left:355.826047pt;}
.x22{left:356.929561pt;}
.x23{left:371.372922pt;}
.x1f{left:374.727412pt;}
.x3a{left:387.612612pt;}
.x33{left:431.728318pt;}
.x2c{left:455.728319pt;}
.x34{left:479.728315pt;}
.x12{left:499.899338pt;}
.x2d{left:503.728316pt;}
.x39{left:514.709252pt;}
.x26{left:521.846552pt;}
.x13{left:536.781617pt;}
.x36{left:538.304717pt;}
.x32{left:542.897757pt;}
.x37{left:548.620258pt;}
.x29{left:552.440918pt;}
.x25{left:556.885616pt;}
.x2f{left:569.623798pt;}
.x2b{left:584.615563pt;}
.x38{left:586.304719pt;}
.x30{left:592.615563pt;}
.x28{left:707.032403pt;}
.x27{left:710.919121pt;}
.x1b{left:924.855122pt;}
.x5{left:931.479176pt;}
}




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