
    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_aafd9cd601c90ce36b7bc45c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_a84053d2f9a14910bb23d55c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.832520;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_a1c3017b11c797ce41b7551a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_313e6bfdaaa5a1cf925f7b3d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0c66f1ed2788d46214fa911a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.874023;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_790f95ebc4cd869c449f093e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_17016d0eacf6df9cd71c5778.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.694336;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;}
.m1{transform:matrix(0.227153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227153,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-36.000000px;}
.v3{vertical-align:-23.760960px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760960px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-19.002170px;}
.ws3{word-spacing:-16.241219px;}
.ws0{word-spacing:-14.941900px;}
.ws1{word-spacing:-9.419874px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-10.653054px;}
._20{margin-left:-9.608583px;}
._b{margin-left:-7.405954px;}
._9{margin-left:-6.166915px;}
._6{margin-left:-4.993954px;}
._1{margin-left:-3.801718px;}
._3{margin-left:-2.422523px;}
._0{margin-left:-1.388585px;}
._4{width:1.890109px;}
._2{width:3.358854px;}
._e{width:4.402436px;}
._8{width:5.874967px;}
._7{width:7.538782px;}
._c{width:8.925021px;}
._d{width:10.037708px;}
._10{width:11.830064px;}
._11{width:12.860505px;}
._12{width:14.083604px;}
._f{width:17.568976px;}
._24{width:18.846432px;}
._1d{width:23.800503px;}
._21{width:24.878061px;}
._22{width:26.049746px;}
._1c{width:27.271962px;}
._19{width:28.994857px;}
._1f{width:31.439474px;}
._23{width:33.254730px;}
._1a{width:36.202706px;}
._14{width:37.781614px;}
._18{width:38.926893px;}
._13{width:40.314712px;}
._17{width:43.529838px;}
._1b{width:44.768262px;}
._16{width:58.880547px;}
._15{width:59.930486px;}
._1e{width:61.570839px;}
._5{width:1180.143351px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:33.119940px;}
.fs3{font-size:35.931840px;}
.fs5{font-size:41.680860px;}
.fs8{font-size:53.897880px;}
.fs0{font-size:66.114600px;}
.fs4{font-size:71.863800px;}
.fs7{font-size:84.080400px;}
.fs6{font-size:95.578800px;}
.fs1{font-size:107.795400px;}
.y0{bottom:0.000000px;}
.y1{bottom:61.920150px;}
.y97{bottom:86.579250px;}
.y6b{bottom:86.580000px;}
.y2c{bottom:98.464800px;}
.y3f{bottom:100.804350px;}
.y96{bottom:107.639550px;}
.y6a{bottom:107.640300px;}
.y2b{bottom:119.524500px;}
.y3e{bottom:121.864650px;}
.y95{bottom:128.519400px;}
.y69{bottom:132.840300px;}
.y2a{bottom:140.404350px;}
.y3d{bottom:142.924950px;}
.y94{bottom:153.899250px;}
.y68{bottom:158.040300px;}
.y29{bottom:161.464050px;}
.y3c{bottom:163.804800px;}
.y93{bottom:174.779100px;}
.y67{bottom:179.100000px;}
.y28{bottom:182.523750px;}
.y3b{bottom:184.865100px;}
.y92{bottom:195.838800px;}
.y66{bottom:200.159700px;}
.y27{bottom:203.403600px;}
.y3a{bottom:205.925400px;}
.y91{bottom:216.898500px;}
.y65{bottom:221.040150px;}
.y26{bottom:224.463300px;}
.y39{bottom:231.125400px;}
.y90{bottom:237.778350px;}
.y64{bottom:242.099850px;}
.y25{bottom:245.523000px;}
.y38{bottom:256.505250px;}
.y8f{bottom:258.838650px;}
.y63{bottom:263.159550px;}
.y24{bottom:266.402850px;}
.y8e{bottom:279.898350px;}
.y37{bottom:281.705250px;}
.y62{bottom:284.040000px;}
.y23{bottom:287.463150px;}
.y36{bottom:302.764950px;}
.y8d{bottom:305.098350px;}
.y61{bottom:305.099700px;}
.y22{bottom:308.522850px;}
.y35{bottom:323.645400px;}
.y8c{bottom:326.158050px;}
.y60{bottom:326.159400px;}
.y21{bottom:329.402700px;}
.y34{bottom:344.705100px;}
.y8b{bottom:347.038500px;}
.y5f{bottom:347.039850px;}
.y20{bottom:350.462400px;}
.y33{bottom:365.764800px;}
.y8a{bottom:368.098800px;}
.y5e{bottom:368.099550px;}
.y1f{bottom:371.522100px;}
.y32{bottom:386.645250px;}
.y89{bottom:389.158500px;}
.y1e{bottom:392.401950px;}
.y5d{bottom:393.299550px;}
.y31{bottom:407.704950px;}
.y1d{bottom:413.461650px;}
.y88{bottom:414.358500px;}
.y5c{bottom:418.679400px;}
.yc7{bottom:424.624350px;}
.y30{bottom:428.764650px;}
.y1c{bottom:434.521350px;}
.y87{bottom:435.418800px;}
.y5b{bottom:439.739700px;}
.y2f{bottom:449.645100px;}
.y1b{bottom:455.401200px;}
.y86{bottom:456.298650px;}
.y5a{bottom:460.619550px;}
.y2e{bottom:470.704800px;}
.y1a{bottom:476.460900px;}
.y85{bottom:477.358950px;}
.y59{bottom:481.679850px;}
.y2d{bottom:495.904800px;}
.y19{bottom:497.520600px;}
.y84{bottom:498.419250px;}
.y58{bottom:502.740150px;}
.yad{bottom:515.521950px;}
.yc6{bottom:515.524350px;}
.y83{bottom:519.299100px;}
.y18{bottom:522.720600px;}
.y57{bottom:523.620000px;}
.yac{bottom:536.401800px;}
.yc5{bottom:536.404200px;}
.y82{bottom:544.678950px;}
.y56{bottom:548.999850px;}
.y17{bottom:556.380300px;}
.yab{bottom:557.462100px;}
.yc4{bottom:557.463900px;}
.y81{bottom:565.739250px;}
.y55{bottom:574.199850px;}
.yaa{bottom:578.522400px;}
.yc3{bottom:578.523600px;}
.y16{bottom:581.580300px;}
.y80{bottom:586.619100px;}
.y54{bottom:595.259550px;}
.ya9{bottom:599.582100px;}
.yc2{bottom:599.583300px;}
.y15{bottom:606.960150px;}
.y7f{bottom:607.678800px;}
.y53{bottom:616.140000px;}
.yc1{bottom:620.463150px;}
.ya8{bottom:624.782100px;}
.y14{bottom:627.840600px;}
.y7e{bottom:628.739100px;}
.y52{bottom:637.199700px;}
.yc0{bottom:641.523450px;}
.ya7{bottom:645.842400px;}
.y13{bottom:648.900300px;}
.y7d{bottom:653.939100px;}
.y51{bottom:658.259400px;}
.ybf{bottom:662.583150px;}
.ya6{bottom:666.722250px;}
.y12{bottom:669.960000px;}
.y7c{bottom:679.139100px;}
.y50{bottom:679.139850px;}
.ya5{bottom:687.782550px;}
.ybe{bottom:687.783150px;}
.y11{bottom:690.840450px;}
.y7b{bottom:700.198800px;}
.y4f{bottom:700.199550px;}
.ya4{bottom:708.842850px;}
.ybd{bottom:708.843450px;}
.y10{bottom:711.900150px;}
.y7a{bottom:725.578650px;}
.y4e{bottom:725.579400px;}
.ya3{bottom:729.722700px;}
.ybc{bottom:729.723300px;}
.yf{bottom:732.959850px;}
.y4d{bottom:746.459250px;}
.y79{bottom:750.778650px;}
.ya2{bottom:750.782400px;}
.ybb{bottom:750.783000px;}
.ye{bottom:753.840300px;}
.y78{bottom:771.838950px;}
.y4c{bottom:771.839700px;}
.yba{bottom:771.843300px;}
.ya1{bottom:775.982400px;}
.yd{bottom:780.300000px;}
.y77{bottom:792.718800px;}
.y4b{bottom:792.719550px;}
.ya0{bottom:797.042100px;}
.yb9{bottom:797.043300px;}
.yb{bottom:813.240495px;}
.y76{bottom:813.779100px;}
.y4a{bottom:813.779850px;}
.y9f{bottom:818.101800px;}
.yb8{bottom:818.103000px;}
.ya{bottom:834.300195px;}
.y75{bottom:834.839400px;}
.y49{bottom:834.840150px;}
.y9e{bottom:838.981650px;}
.yb7{bottom:838.982850px;}
.y74{bottom:855.719250px;}
.y48{bottom:855.720000px;}
.y9d{bottom:860.041350px;}
.yb6{bottom:860.042550px;}
.y73{bottom:876.779550px;}
.y47{bottom:876.780300px;}
.y9c{bottom:881.101050px;}
.yb5{bottom:881.102250px;}
.y9{bottom:882.180150px;}
.y72{bottom:897.839850px;}
.y46{bottom:897.840600px;}
.y9b{bottom:901.980900px;}
.yb4{bottom:901.982100px;}
.y8{bottom:903.240540px;}
.y7{bottom:918.360000px;}
.y45{bottom:918.720450px;}
.y71{bottom:923.039850px;}
.y9a{bottom:923.040600px;}
.yb3{bottom:923.042400px;}
.y44{bottom:944.100300px;}
.y70{bottom:948.239850px;}
.yb2{bottom:948.242400px;}
.y99{bottom:964.980150px;}
.y6f{bottom:969.299550px;}
.y43{bottom:969.300300px;}
.yb1{bottom:969.302100px;}
.yc{bottom:978.300000px;}
.y6e{bottom:990.359250px;}
.y42{bottom:990.360000px;}
.yb0{bottom:990.361800px;}
.y6d{bottom:1011.239700px;}
.y41{bottom:1011.240450px;}
.yaf{bottom:1011.242250px;}
.y6c{bottom:1032.300000px;}
.y40{bottom:1032.300150px;}
.yae{bottom:1032.301950px;}
.y4{bottom:1052.820120px;}
.y3{bottom:1065.600000px;}
.y2{bottom:1078.380000px;}
.y6{bottom:1079.640000px;}
.y5{bottom:1089.540000px;}
.y98{bottom:1092.059250px;}
.yc8{bottom:1092.064350px;}
.h3{height:24.112222px;}
.h4{height:26.159362px;}
.h6{height:29.917414px;}
.hc{height:38.686467px;}
.h1{height:47.455304px;}
.hd{height:49.897619px;}
.hb{height:50.002888px;}
.h8{height:51.581927px;}
.h5{height:52.762535px;}
.h7{height:53.678374px;}
.ha{height:58.503208px;}
.h9{height:69.583980px;}
.h2{height:87.741666px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:97.199850px;}
.xb{left:131.400000px;}
.xf{left:148.320000px;}
.x2{left:158.940000px;}
.x4{left:184.140000px;}
.x5{left:218.520510px;}
.x7{left:221.941665px;}
.x6{left:226.440630px;}
.x9{left:253.440000px;}
.x3{left:266.580000px;}
.x8{left:296.641725px;}
.xa{left:422.640000px;}
.x1{left:451.800000px;}
.x10{left:455.939700px;}
.xd{left:478.439400px;}
.xe{left:529.379550px;}
@media print{
.v1{vertical-align:-32.000000pt;}
.v3{vertical-align:-21.120853pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120853pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-16.890818pt;}
.ws3{word-spacing:-14.436639pt;}
.ws0{word-spacing:-13.281689pt;}
.ws1{word-spacing:-8.373222pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-9.469382pt;}
._20{margin-left:-8.540963pt;}
._b{margin-left:-6.583070pt;}
._9{margin-left:-5.481702pt;}
._6{margin-left:-4.439070pt;}
._1{margin-left:-3.379305pt;}
._3{margin-left:-2.153353pt;}
._0{margin-left:-1.234298pt;}
._4{width:1.680097pt;}
._2{width:2.985648pt;}
._e{width:3.913277pt;}
._8{width:5.222193pt;}
._7{width:6.701140pt;}
._c{width:7.933352pt;}
._d{width:8.922407pt;}
._10{width:10.515613pt;}
._11{width:11.431560pt;}
._12{width:12.518760pt;}
._f{width:15.616867pt;}
._24{width:16.752384pt;}
._1d{width:21.156003pt;}
._21{width:22.113832pt;}
._22{width:23.155330pt;}
._1c{width:24.241744pt;}
._19{width:25.773207pt;}
._1f{width:27.946199pt;}
._23{width:29.559760pt;}
._1a{width:32.180183pt;}
._14{width:33.583657pt;}
._18{width:34.601683pt;}
._13{width:35.835299pt;}
._17{width:38.693189pt;}
._1b{width:39.794011pt;}
._16{width:52.338264pt;}
._15{width:53.271543pt;}
._1e{width:54.729634pt;}
._5{width:1049.016312pt;}
.fs2{font-size:29.439947pt;}
.fs3{font-size:31.939413pt;}
.fs5{font-size:37.049653pt;}
.fs8{font-size:47.909227pt;}
.fs0{font-size:58.768533pt;}
.fs4{font-size:63.878933pt;}
.fs7{font-size:74.738133pt;}
.fs6{font-size:84.958933pt;}
.fs1{font-size:95.818133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:55.040133pt;}
.y97{bottom:76.959333pt;}
.y6b{bottom:76.960000pt;}
.y2c{bottom:87.524267pt;}
.y3f{bottom:89.603867pt;}
.y96{bottom:95.679600pt;}
.y6a{bottom:95.680267pt;}
.y2b{bottom:106.244000pt;}
.y3e{bottom:108.324133pt;}
.y95{bottom:114.239467pt;}
.y69{bottom:118.080267pt;}
.y2a{bottom:124.803867pt;}
.y3d{bottom:127.044400pt;}
.y94{bottom:136.799333pt;}
.y68{bottom:140.480267pt;}
.y29{bottom:143.523600pt;}
.y3c{bottom:145.604267pt;}
.y93{bottom:155.359200pt;}
.y67{bottom:159.200000pt;}
.y28{bottom:162.243333pt;}
.y3b{bottom:164.324533pt;}
.y92{bottom:174.078933pt;}
.y66{bottom:177.919733pt;}
.y27{bottom:180.803200pt;}
.y3a{bottom:183.044800pt;}
.y91{bottom:192.798667pt;}
.y65{bottom:196.480133pt;}
.y26{bottom:199.522933pt;}
.y39{bottom:205.444800pt;}
.y90{bottom:211.358533pt;}
.y64{bottom:215.199867pt;}
.y25{bottom:218.242667pt;}
.y38{bottom:228.004667pt;}
.y8f{bottom:230.078800pt;}
.y63{bottom:233.919600pt;}
.y24{bottom:236.802533pt;}
.y8e{bottom:248.798533pt;}
.y37{bottom:250.404667pt;}
.y62{bottom:252.480000pt;}
.y23{bottom:255.522800pt;}
.y36{bottom:269.124400pt;}
.y8d{bottom:271.198533pt;}
.y61{bottom:271.199733pt;}
.y22{bottom:274.242533pt;}
.y35{bottom:287.684800pt;}
.y8c{bottom:289.918267pt;}
.y60{bottom:289.919467pt;}
.y21{bottom:292.802400pt;}
.y34{bottom:306.404533pt;}
.y8b{bottom:308.478667pt;}
.y5f{bottom:308.479867pt;}
.y20{bottom:311.522133pt;}
.y33{bottom:325.124267pt;}
.y8a{bottom:327.198933pt;}
.y5e{bottom:327.199600pt;}
.y1f{bottom:330.241867pt;}
.y32{bottom:343.684667pt;}
.y89{bottom:345.918667pt;}
.y1e{bottom:348.801733pt;}
.y5d{bottom:349.599600pt;}
.y31{bottom:362.404400pt;}
.y1d{bottom:367.521467pt;}
.y88{bottom:368.318667pt;}
.y5c{bottom:372.159467pt;}
.yc7{bottom:377.443867pt;}
.y30{bottom:381.124133pt;}
.y1c{bottom:386.241200pt;}
.y87{bottom:387.038933pt;}
.y5b{bottom:390.879733pt;}
.y2f{bottom:399.684533pt;}
.y1b{bottom:404.801067pt;}
.y86{bottom:405.598800pt;}
.y5a{bottom:409.439600pt;}
.y2e{bottom:418.404267pt;}
.y1a{bottom:423.520800pt;}
.y85{bottom:424.319067pt;}
.y59{bottom:428.159867pt;}
.y2d{bottom:440.804267pt;}
.y19{bottom:442.240533pt;}
.y84{bottom:443.039333pt;}
.y58{bottom:446.880133pt;}
.yad{bottom:458.241733pt;}
.yc6{bottom:458.243867pt;}
.y83{bottom:461.599200pt;}
.y18{bottom:464.640533pt;}
.y57{bottom:465.440000pt;}
.yac{bottom:476.801600pt;}
.yc5{bottom:476.803733pt;}
.y82{bottom:484.159067pt;}
.y56{bottom:487.999867pt;}
.y17{bottom:494.560267pt;}
.yab{bottom:495.521867pt;}
.yc4{bottom:495.523467pt;}
.y81{bottom:502.879333pt;}
.y55{bottom:510.399867pt;}
.yaa{bottom:514.242133pt;}
.yc3{bottom:514.243200pt;}
.y16{bottom:516.960267pt;}
.y80{bottom:521.439200pt;}
.y54{bottom:529.119600pt;}
.ya9{bottom:532.961867pt;}
.yc2{bottom:532.962933pt;}
.y15{bottom:539.520133pt;}
.y7f{bottom:540.158933pt;}
.y53{bottom:547.680000pt;}
.yc1{bottom:551.522800pt;}
.ya8{bottom:555.361867pt;}
.y14{bottom:558.080533pt;}
.y7e{bottom:558.879200pt;}
.y52{bottom:566.399733pt;}
.yc0{bottom:570.243067pt;}
.ya7{bottom:574.082133pt;}
.y13{bottom:576.800267pt;}
.y7d{bottom:581.279200pt;}
.y51{bottom:585.119467pt;}
.ybf{bottom:588.962800pt;}
.ya6{bottom:592.642000pt;}
.y12{bottom:595.520000pt;}
.y7c{bottom:603.679200pt;}
.y50{bottom:603.679867pt;}
.ya5{bottom:611.362267pt;}
.ybe{bottom:611.362800pt;}
.y11{bottom:614.080400pt;}
.y7b{bottom:622.398933pt;}
.y4f{bottom:622.399600pt;}
.ya4{bottom:630.082533pt;}
.ybd{bottom:630.083067pt;}
.y10{bottom:632.800133pt;}
.y7a{bottom:644.958800pt;}
.y4e{bottom:644.959467pt;}
.ya3{bottom:648.642400pt;}
.ybc{bottom:648.642933pt;}
.yf{bottom:651.519867pt;}
.y4d{bottom:663.519333pt;}
.y79{bottom:667.358800pt;}
.ya2{bottom:667.362133pt;}
.ybb{bottom:667.362667pt;}
.ye{bottom:670.080267pt;}
.y78{bottom:686.079067pt;}
.y4c{bottom:686.079733pt;}
.yba{bottom:686.082933pt;}
.ya1{bottom:689.762133pt;}
.yd{bottom:693.600000pt;}
.y77{bottom:704.638933pt;}
.y4b{bottom:704.639600pt;}
.ya0{bottom:708.481867pt;}
.yb9{bottom:708.482933pt;}
.yb{bottom:722.880440pt;}
.y76{bottom:723.359200pt;}
.y4a{bottom:723.359867pt;}
.y9f{bottom:727.201600pt;}
.yb8{bottom:727.202667pt;}
.ya{bottom:741.600173pt;}
.y75{bottom:742.079467pt;}
.y49{bottom:742.080133pt;}
.y9e{bottom:745.761467pt;}
.yb7{bottom:745.762533pt;}
.y74{bottom:760.639333pt;}
.y48{bottom:760.640000pt;}
.y9d{bottom:764.481200pt;}
.yb6{bottom:764.482267pt;}
.y73{bottom:779.359600pt;}
.y47{bottom:779.360267pt;}
.y9c{bottom:783.200933pt;}
.yb5{bottom:783.202000pt;}
.y9{bottom:784.160133pt;}
.y72{bottom:798.079867pt;}
.y46{bottom:798.080533pt;}
.y9b{bottom:801.760800pt;}
.yb4{bottom:801.761867pt;}
.y8{bottom:802.880480pt;}
.y7{bottom:816.320000pt;}
.y45{bottom:816.640400pt;}
.y71{bottom:820.479867pt;}
.y9a{bottom:820.480533pt;}
.yb3{bottom:820.482133pt;}
.y44{bottom:839.200267pt;}
.y70{bottom:842.879867pt;}
.yb2{bottom:842.882133pt;}
.y99{bottom:857.760133pt;}
.y6f{bottom:861.599600pt;}
.y43{bottom:861.600267pt;}
.yb1{bottom:861.601867pt;}
.yc{bottom:869.600000pt;}
.y6e{bottom:880.319333pt;}
.y42{bottom:880.320000pt;}
.yb0{bottom:880.321600pt;}
.y6d{bottom:898.879733pt;}
.y41{bottom:898.880400pt;}
.yaf{bottom:898.882000pt;}
.y6c{bottom:917.600000pt;}
.y40{bottom:917.600133pt;}
.yae{bottom:917.601733pt;}
.y4{bottom:935.840107pt;}
.y3{bottom:947.200000pt;}
.y2{bottom:958.560000pt;}
.y6{bottom:959.680000pt;}
.y5{bottom:968.480000pt;}
.y98{bottom:970.719333pt;}
.yc8{bottom:970.723867pt;}
.h3{height:21.433086pt;}
.h4{height:23.252766pt;}
.h6{height:26.593257pt;}
.hc{height:34.387970pt;}
.h1{height:42.182492pt;}
.hd{height:44.353439pt;}
.hb{height:44.447012pt;}
.h8{height:45.850602pt;}
.h5{height:46.900031pt;}
.h7{height:47.714110pt;}
.ha{height:52.002852pt;}
.h9{height:61.852427pt;}
.h2{height:77.992592pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:86.399867pt;}
.xb{left:116.800000pt;}
.xf{left:131.840000pt;}
.x2{left:141.280000pt;}
.x4{left:163.680000pt;}
.x5{left:194.240453pt;}
.x7{left:197.281480pt;}
.x6{left:201.280560pt;}
.x9{left:225.280000pt;}
.x3{left:236.960000pt;}
.x8{left:263.681533pt;}
.xa{left:375.680000pt;}
.x1{left:401.600000pt;}
.x10{left:405.279733pt;}
.xd{left:425.279467pt;}
.xe{left:470.559600pt;}
}




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