
    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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.237029;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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.256000;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_e028ff3258e86485251331c0.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_501e01ef30918cc598dfe5bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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;}
.m4{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:67.679819px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.068897px;}
.ls6{letter-spacing:65.855110px;}
.ls8{letter-spacing:91.522203px;}
.ls5{letter-spacing:96.103585px;}
.ls7{letter-spacing:106.958981px;}
.ls2{letter-spacing:106.961980px;}
.lsa{letter-spacing:119.850613px;}
.ls9{letter-spacing:120.570220px;}
.ls3{letter-spacing:331.902719px;}
.ls4{letter-spacing:331.902843px;}
.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;}
}
.ws4{word-spacing:-40.031984px;}
.ws7{word-spacing:-33.426707px;}
.ws6{word-spacing:-30.023988px;}
.ws1{word-spacing:-21.617271px;}
.ws2{word-spacing:-17.237105px;}
.ws5{word-spacing:-0.068462px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:47.314343px;}
._18{margin-left:-10.660218px;}
._13{margin-left:-8.957632px;}
._1a{margin-left:-6.801387px;}
._12{margin-left:-5.290031px;}
._19{margin-left:-2.426979px;}
._1{margin-left:-1.229328px;}
._0{width:1.513583px;}
._15{width:2.953339px;}
._16{width:4.333160px;}
._8{width:5.433523px;}
._b{width:6.668267px;}
._c{width:8.012911px;}
._2{width:11.247836px;}
._3{width:12.503659px;}
._2d{width:14.297266px;}
._6{width:16.364657px;}
._7{width:17.655671px;}
._1f{width:18.749081px;}
._2f{width:19.893580px;}
._4{width:21.095560px;}
._5{width:22.120551px;}
._9{width:23.421901px;}
._a{width:25.069542px;}
._e{width:26.804879px;}
._d{width:27.874982px;}
._26{width:30.114564px;}
._25{width:31.849668px;}
._2e{width:35.401287px;}
._28{width:36.927945px;}
._27{width:38.139752px;}
._24{width:42.377743px;}
._21{width:45.492030px;}
._20{width:46.962557px;}
._23{width:48.251501px;}
._22{width:50.181100px;}
._2a{width:53.644038px;}
._29{width:55.528367px;}
._1e{width:57.682345px;}
._2b{width:72.305369px;}
._11{width:73.933983px;}
._f{width:75.439989px;}
._10{width:76.531521px;}
._1d{width:77.853121px;}
._2c{width:105.850115px;}
._1b{width:506.459787px;}
._17{width:813.826905px;}
._14{width:823.162430px;}
._1c{width:1993.247794px;}
.fca{color:rgb(50,101,255);}
.fc8{color:rgb(153,71,6);}
.fcb{color:rgb(0,154,154);}
.fc6{color:rgb(23,55,92);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(154,50,0);}
.fc9{color:rgb(0,101,205);}
.fc7{color:rgb(152,71,6);}
.fc2{color:rgb(14,81,252);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:59.759976px;}
.fs6{font-size:62.003975px;}
.fs3{font-size:77.759969px;}
.fs5{font-size:84.552566px;}
.fs1{font-size:95.759962px;}
.fs9{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.fsb{font-size:131.759947px;}
.fs0{font-size:143.999942px;}
.fs8{font-size:156.239938px;}
.fs4{font-size:185.759926px;}
.fsa{font-size:192.239923px;}
.y0{bottom:0.000000px;}
.y6f{bottom:65.220331px;}
.y72{bottom:79.440197px;}
.y21{bottom:93.660320px;}
.y3b{bottom:97.080318px;}
.y4a{bottom:100.680461px;}
.y57{bottom:102.301216px;}
.y6{bottom:104.280292px;}
.y6e{bottom:110.220457px;}
.y2e{bottom:114.720311px;}
.y71{bottom:122.640308px;}
.y16{bottom:129.300449px;}
.y49{bottom:136.680302px;}
.y5{bottom:138.840301px;}
.y3a{bottom:142.080300px;}
.y6d{bottom:146.220299px;}
.y50{bottom:154.500295px;}
.y20{bottom:164.220280px;}
.y15{bottom:165.300579px;}
.y2d{bottom:175.920287px;}
.y48{bottom:181.680284px;}
.y39{bottom:187.080282px;}
.y1f{bottom:188.160282px;}
.y6c{bottom:191.220425px;}
.y61{bottom:197.700278px;}
.y14{bottom:201.300420px;}
.y54{bottom:215.880181px;}
.y2c{bottom:219.120269px;}
.y47{bottom:226.680410px;}
.y6b{bottom:227.220266px;}
.y13{bottom:237.300510px;}
.y60{bottom:245.220259px;}
.y53{bottom:248.460258px;}
.y38{bottom:259.440253px;}
.y2b{bottom:262.140252px;}
.y46{bottom:262.680252px;}
.y6a{bottom:272.220536px;}
.y52{bottom:280.860245px;}
.y1e{bottom:291.120279px;}
.y5f{bottom:297.420238px;}
.y36{bottom:303.000040px;}
.y37{bottom:303.000236px;}
.y73{bottom:304.800235px;}
.y2a{bottom:305.340235px;}
.y8{bottom:305.880222px;}
.y45{bottom:307.680234px;}
.y1d{bottom:308.040234px;}
.y69{bottom:308.220378px;}
.y51{bottom:313.260232px;}
.y12{bottom:323.520372px;}
.y68{bottom:344.220219px;}
.y1c{bottom:344.580134px;}
.y5e{bottom:349.620217px;}
.y35{bottom:349.980217px;}
.y44{bottom:352.680504px;}
.y11{bottom:359.520213px;}
.y29{bottom:366.360210px;}
.y1b{bottom:371.400208px;}
.y7{bottom:377.880206px;}
.y43{bottom:388.680346px;}
.y67{bottom:389.220633px;}
.y5d{bottom:401.640196px;}
.y10{bottom:402.720484px;}
.y28{bottom:409.560193px;}
.y56{bottom:415.860191px;}
.y58{bottom:424.500187px;}
.y42{bottom:424.680187px;}
.y66{bottom:425.220475px;}
.yf{bottom:438.720326px;}
.y55{bottom:448.260178px;}
.y27{bottom:452.760176px;}
.y5c{bottom:453.840175px;}
.y34{bottom:457.440174px;}
.y65{bottom:461.220317px;}
.y41{bottom:469.680313px;}
.ye{bottom:474.720167px;}
.y1a{bottom:481.380019px;}
.y4f{bottom:490.200161px;}
.y26{bottom:495.780159px;}
.y64{bottom:497.220302px;}
.y33{bottom:500.460157px;}
.y40{bottom:505.680155px;}
.y5b{bottom:505.860155px;}
.y19{bottom:509.460138px;}
.y4{bottom:517.740150px;}
.yd{bottom:517.740294px;}
.y4e{bottom:524.760147px;}
.y63{bottom:533.220144px;}
.y18{bottom:537.720142px;}
.y31{bottom:544.200010px;}
.y32{bottom:544.200139px;}
.y3f{bottom:550.680425px;}
.yc{bottom:553.740136px;}
.y25{bottom:556.980134px;}
.y5a{bottom:558.060134px;}
.y4d{bottom:559.500133px;}
.y3{bottom:560.940133px;}
.y70{bottom:577.860126px;}
.y62{bottom:578.220270px;}
.y3e{bottom:586.680266px;}
.y30{bottom:591.000121px;}
.y17{bottom:592.620120px;}
.y4c{bottom:594.960119px;}
.y24{bottom:600.000117px;}
.y2{bottom:603.960115px;}
.y59{bottom:610.260113px;}
.yb{bottom:614.220111px;}
.y3d{bottom:622.680108px;}
.y4b{bottom:633.840103px;}
.y1{bottom:647.160098px;}
.y9{bottom:705.480075px;}
.y3c{bottom:717.000070px;}
.y2f{bottom:717.540070px;}
.y23{bottom:724.200067px;}
.ya{bottom:730.500065px;}
.y22{bottom:751.560056px;}
.ha{height:56.951257px;}
.h8{height:58.841772px;}
.h4{height:73.794210px;}
.h7{height:80.240385px;}
.hf{height:87.818520px;}
.h2{height:91.259243px;}
.hc{height:102.923959px;}
.h11{height:114.107714px;}
.h6{height:114.588098px;}
.h3{height:114.588674px;}
.h9{height:126.521592px;}
.h1{height:137.231945px;}
.hb{height:148.271701px;}
.h5{height:176.286169px;}
.hd{height:182.435687px;}
.h10{height:183.204647px;}
.h0{height:892.500000px;}
.he{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x6{left:106.365707px;}
.xb{left:132.465697px;}
.x8{left:136.065696px;}
.x22{left:144.525692px;}
.x24{left:149.385690px;}
.x19{left:152.986439px;}
.x20{left:161.446435px;}
.xf{left:171.886258px;}
.x9{left:176.567753px;}
.xd{left:188.805579px;}
.xa{left:194.386422px;}
.x23{left:198.526421px;}
.x21{left:201.945771px;}
.x27{left:204.106418px;}
.x1a{left:226.606409px;}
.x1f{left:281.146388px;}
.x17{left:284.026386px;}
.x18{left:289.066384px;}
.x7{left:304.726378px;}
.x1c{left:318.586373px;}
.x4{left:349.726360px;}
.x1{left:355.486358px;}
.x25{left:363.946354px;}
.x28{left:418.126333px;}
.x10{left:492.646303px;}
.xc{left:501.645419px;}
.xe{left:504.526298px;}
.x11{left:509.566323px;}
.x15{left:548.986237px;}
.x14{left:556.186278px;}
.x1e{left:579.406268px;}
.x29{left:583.005129px;}
.x3{left:590.566349px;}
.x12{left:618.106249px;}
.x1d{left:657.166237px;}
.x2a{left:696.766221px;}
.x13{left:726.646205px;}
.x5{left:863.446416px;}
.x26{left:870.106152px;}
.x1b{left:896.026142px;}
.x2{left:981.886107px;}
.x16{left:1029.046088px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.159839pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.061242pt;}
.ls6{letter-spacing:58.537875pt;}
.ls8{letter-spacing:81.353069pt;}
.ls5{letter-spacing:85.425409pt;}
.ls7{letter-spacing:95.074650pt;}
.ls2{letter-spacing:95.077315pt;}
.lsa{letter-spacing:106.533879pt;}
.ls9{letter-spacing:107.173529pt;}
.ls3{letter-spacing:295.024639pt;}
.ls4{letter-spacing:295.024750pt;}
.ws4{word-spacing:-35.583986pt;}
.ws7{word-spacing:-29.712628pt;}
.ws6{word-spacing:-26.687989pt;}
.ws1{word-spacing:-19.215352pt;}
.ws2{word-spacing:-15.321871pt;}
.ws5{word-spacing:-0.060855pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:42.057194pt;}
._18{margin-left:-9.475750pt;}
._13{margin-left:-7.962340pt;}
._1a{margin-left:-6.045678pt;}
._12{margin-left:-4.702250pt;}
._19{margin-left:-2.157314pt;}
._1{margin-left:-1.092736pt;}
._0{width:1.345407pt;}
._15{width:2.625190pt;}
._16{width:3.851698pt;}
._8{width:4.829798pt;}
._b{width:5.927349pt;}
._c{width:7.122587pt;}
._2{width:9.998076pt;}
._3{width:11.114364pt;}
._2d{width:12.708681pt;}
._6{width:14.546362pt;}
._7{width:15.693930pt;}
._1f{width:16.665849pt;}
._2f{width:17.683182pt;}
._4{width:18.751608pt;}
._5{width:19.662712pt;}
._9{width:20.819468pt;}
._a{width:22.284037pt;}
._e{width:23.826559pt;}
._d{width:24.777762pt;}
._26{width:26.768501pt;}
._25{width:28.310816pt;}
._2e{width:31.467811pt;}
._28{width:32.824840pt;}
._27{width:33.902002pt;}
._24{width:37.669105pt;}
._21{width:40.437360pt;}
._20{width:41.744495pt;}
._23{width:42.890223pt;}
._22{width:44.605422pt;}
._2a{width:47.683589pt;}
._29{width:49.358549pt;}
._1e{width:51.273195pt;}
._2b{width:64.271439pt;}
._11{width:65.719096pt;}
._f{width:67.057768pt;}
._10{width:68.028019pt;}
._1d{width:69.202774pt;}
._2c{width:94.088991pt;}
._1b{width:450.186477pt;}
._17{width:723.401693pt;}
._14{width:731.699938pt;}
._1c{width:1771.775817pt;}
.fs7{font-size:53.119979pt;}
.fs6{font-size:55.114645pt;}
.fs3{font-size:69.119972pt;}
.fs5{font-size:75.157837pt;}
.fs1{font-size:85.119966pt;}
.fs9{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.fsb{font-size:117.119953pt;}
.fs0{font-size:127.999949pt;}
.fs8{font-size:138.879944pt;}
.fs4{font-size:165.119934pt;}
.fsa{font-size:170.879932pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:57.973627pt;}
.y72{bottom:70.613509pt;}
.y21{bottom:83.253617pt;}
.y3b{bottom:86.293616pt;}
.y4a{bottom:89.493743pt;}
.y57{bottom:90.934414pt;}
.y6{bottom:92.693593pt;}
.y6e{bottom:97.973739pt;}
.y2e{bottom:101.973610pt;}
.y71{bottom:109.013607pt;}
.y16{bottom:114.933733pt;}
.y49{bottom:121.493602pt;}
.y5{bottom:123.413601pt;}
.y3a{bottom:126.293600pt;}
.y6d{bottom:129.973599pt;}
.y50{bottom:137.333596pt;}
.y20{bottom:145.973582pt;}
.y15{bottom:146.933848pt;}
.y2d{bottom:156.373588pt;}
.y48{bottom:161.493586pt;}
.y39{bottom:166.293584pt;}
.y1f{bottom:167.253584pt;}
.y6c{bottom:169.973711pt;}
.y61{bottom:175.733580pt;}
.y14{bottom:178.933707pt;}
.y54{bottom:191.893494pt;}
.y2c{bottom:194.773573pt;}
.y47{bottom:201.493698pt;}
.y6b{bottom:201.973570pt;}
.y13{bottom:210.933787pt;}
.y60{bottom:217.973563pt;}
.y53{bottom:220.853562pt;}
.y38{bottom:230.613558pt;}
.y2b{bottom:233.013557pt;}
.y46{bottom:233.493557pt;}
.y6a{bottom:241.973810pt;}
.y52{bottom:249.653551pt;}
.y1e{bottom:258.773581pt;}
.y5f{bottom:264.373545pt;}
.y36{bottom:269.333369pt;}
.y37{bottom:269.333543pt;}
.y73{bottom:270.933542pt;}
.y2a{bottom:271.413542pt;}
.y8{bottom:271.893531pt;}
.y45{bottom:273.493541pt;}
.y1d{bottom:273.813541pt;}
.y69{bottom:273.973669pt;}
.y51{bottom:278.453539pt;}
.y12{bottom:287.573664pt;}
.y68{bottom:305.973528pt;}
.y1c{bottom:306.293453pt;}
.y5e{bottom:310.773526pt;}
.y35{bottom:311.093526pt;}
.y44{bottom:313.493781pt;}
.y11{bottom:319.573523pt;}
.y29{bottom:325.653520pt;}
.y1b{bottom:330.133519pt;}
.y7{bottom:335.893516pt;}
.y43{bottom:345.493640pt;}
.y67{bottom:345.973896pt;}
.y5d{bottom:357.013508pt;}
.y10{bottom:357.973763pt;}
.y28{bottom:364.053505pt;}
.y56{bottom:369.653503pt;}
.y58{bottom:377.333500pt;}
.y42{bottom:377.493500pt;}
.y66{bottom:377.973755pt;}
.yf{bottom:389.973623pt;}
.y55{bottom:398.453491pt;}
.y27{bottom:402.453490pt;}
.y5c{bottom:403.413489pt;}
.y34{bottom:406.613488pt;}
.y65{bottom:409.973615pt;}
.y41{bottom:417.493612pt;}
.ye{bottom:421.973482pt;}
.y1a{bottom:427.893350pt;}
.y4f{bottom:435.733476pt;}
.y26{bottom:440.693474pt;}
.y64{bottom:441.973602pt;}
.y33{bottom:444.853473pt;}
.y40{bottom:449.493471pt;}
.y5b{bottom:449.653471pt;}
.y19{bottom:452.853456pt;}
.y4{bottom:460.213467pt;}
.yd{bottom:460.213595pt;}
.y4e{bottom:466.453464pt;}
.y63{bottom:473.973461pt;}
.y18{bottom:477.973459pt;}
.y31{bottom:483.733342pt;}
.y32{bottom:483.733457pt;}
.y3f{bottom:489.493711pt;}
.yc{bottom:492.213454pt;}
.y25{bottom:495.093453pt;}
.y5a{bottom:496.053452pt;}
.y4d{bottom:497.333452pt;}
.y3{bottom:498.613451pt;}
.y70{bottom:513.653445pt;}
.y62{bottom:513.973573pt;}
.y3e{bottom:521.493570pt;}
.y30{bottom:525.333441pt;}
.y17{bottom:526.773440pt;}
.y4c{bottom:528.853439pt;}
.y24{bottom:533.333437pt;}
.y2{bottom:536.853436pt;}
.y59{bottom:542.453434pt;}
.yb{bottom:545.973432pt;}
.y3d{bottom:553.493429pt;}
.y4b{bottom:563.413425pt;}
.y1{bottom:575.253421pt;}
.y9{bottom:627.093400pt;}
.y3c{bottom:637.333396pt;}
.y2f{bottom:637.813396pt;}
.y23{bottom:643.733393pt;}
.ya{bottom:649.333391pt;}
.y22{bottom:668.053383pt;}
.ha{height:50.623340pt;}
.h8{height:52.303798pt;}
.h4{height:65.594854pt;}
.h7{height:71.324787pt;}
.hf{height:78.060906pt;}
.h2{height:81.119328pt;}
.hc{height:91.487963pt;}
.h11{height:101.429079pt;}
.h6{height:101.856087pt;}
.h3{height:101.856599pt;}
.h9{height:112.463637pt;}
.h1{height:121.983951pt;}
.hb{height:131.797067pt;}
.h5{height:156.698817pt;}
.hd{height:162.165055pt;}
.h10{height:162.848575pt;}
.h0{height:793.333333pt;}
.he{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x6{left:94.547296pt;}
.xb{left:117.747286pt;}
.x8{left:120.947285pt;}
.x22{left:128.467282pt;}
.x24{left:132.787280pt;}
.x19{left:135.987946pt;}
.x20{left:143.507943pt;}
.xf{left:152.787785pt;}
.x9{left:156.949114pt;}
.xd{left:167.827182pt;}
.xa{left:172.787931pt;}
.x23{left:176.467929pt;}
.x21{left:179.507352pt;}
.x27{left:181.427927pt;}
.x1a{left:201.427919pt;}
.x1f{left:249.907900pt;}
.x17{left:252.467899pt;}
.x18{left:256.947897pt;}
.x7{left:270.867892pt;}
.x1c{left:283.187887pt;}
.x4{left:310.867876pt;}
.x1{left:315.987874pt;}
.x25{left:323.507871pt;}
.x28{left:371.667851pt;}
.x10{left:437.907825pt;}
.xc{left:445.907039pt;}
.xe{left:448.467821pt;}
.x11{left:452.947843pt;}
.x15{left:487.987767pt;}
.x14{left:494.387802pt;}
.x1e{left:515.027794pt;}
.x29{left:518.226781pt;}
.x3{left:524.947866pt;}
.x12{left:549.427777pt;}
.x1d{left:584.147766pt;}
.x2a{left:619.347752pt;}
.x13{left:645.907738pt;}
.x5{left:767.507925pt;}
.x26{left:773.427691pt;}
.x1b{left:796.467681pt;}
.x2{left:872.787651pt;}
.x16{left:914.707634pt;}
}




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