
    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_741e947e9e428e7bc446b938.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_76b72f91e54bc5f1ddb068a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_a2366e677c7f7ac0210dde4e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f287f7d64ea97c55ae540a80.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.439999px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.189289px;}
.ls3{letter-spacing:0.272340px;}
.ls1{letter-spacing:0.332100px;}
.ls5{letter-spacing:0.378514px;}
.ls4{letter-spacing:0.378600px;}
.ls2{letter-spacing:1.052580px;}
.ls0{letter-spacing:10.275476px;}
.ls6{letter-spacing:15.318573px;}
.ls8{letter-spacing:22.520631px;}
.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:-15.318508px;}
.ws0{word-spacing:-14.939994px;}
.ws2{word-spacing:0.000000px;}
._2b{margin-left:-15.816577px;}
._1{margin-left:-1.099040px;}
._0{width:1.352364px;}
._2{width:2.510909px;}
._6{width:3.549622px;}
._9{width:4.857800px;}
._c{width:5.967176px;}
._f{width:7.281100px;}
._e{width:8.503085px;}
._d{width:9.664729px;}
._3{width:10.700114px;}
._4{width:11.901727px;}
._a{width:13.531011px;}
._8{width:16.692774px;}
._5{width:18.011889px;}
._2c{width:19.847104px;}
._b{width:21.525046px;}
._7{width:23.090662px;}
._13{width:24.140700px;}
._10{width:25.142815px;}
._14{width:31.071575px;}
._15{width:32.437914px;}
._2a{width:37.952779px;}
._22{width:39.245843px;}
._2d{width:42.289976px;}
._2e{width:43.612912px;}
._12{width:45.412273px;}
._11{width:46.514168px;}
._25{width:59.149471px;}
._20{width:70.753412px;}
._23{width:84.020126px;}
._1b{width:99.237373px;}
._28{width:127.226589px;}
._26{width:137.146745px;}
._1d{width:138.322369px;}
._1c{width:157.106577px;}
._27{width:161.568267px;}
._1e{width:167.026733px;}
._21{width:204.655518px;}
._29{width:214.635749px;}
._24{width:217.922537px;}
._19{width:241.726703px;}
._1a{width:289.275751px;}
._18{width:295.846287px;}
._16{width:365.447164px;}
._1f{width:368.328886px;}
._17{width:433.260102px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,1,1);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs4{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.599011px;}
.y49{bottom:3.599022px;}
.y4d{bottom:3.599033px;}
.y51{bottom:3.599044px;}
.y55{bottom:3.599055px;}
.y5b{bottom:3.599066px;}
.y5e{bottom:3.599076px;}
.y75{bottom:3.599284px;}
.y80{bottom:104.700258px;}
.y7f{bottom:120.180252px;}
.y3f{bottom:120.539952px;}
.y7e{bottom:135.660246px;}
.y3e{bottom:143.399943px;}
.y7d{bottom:151.319939px;}
.y3d{bottom:160.499936px;}
.y7c{bottom:168.599933px;}
.y3c{bottom:177.779929px;}
.y7b{bottom:186.239926px;}
.y3b{bottom:195.059922px;}
.y7a{bottom:203.519919px;}
.y3a{bottom:212.339915px;}
.y79{bottom:220.619912px;}
.y39{bottom:229.259908px;}
.y78{bottom:237.899905px;}
.y38{bottom:246.899901px;}
.y77{bottom:255.179898px;}
.y37{bottom:263.999894px;}
.y76{bottom:272.459891px;}
.y36{bottom:281.279887px;}
.y74{bottom:286.140600px;}
.y73{bottom:289.739884px;}
.y35{bottom:298.559881px;}
.y72{bottom:307.019877px;}
.y34{bottom:315.839874px;}
.y71{bottom:324.119870px;}
.y33{bottom:333.119867px;}
.y70{bottom:341.399863px;}
.y32{bottom:350.399860px;}
.y6f{bottom:358.319857px;}
.y31{bottom:367.499853px;}
.y6e{bottom:375.599850px;}
.y30{bottom:384.779846px;}
.y6d{bottom:393.239843px;}
.y2f{bottom:402.059839px;}
.y6c{bottom:410.339836px;}
.y2e{bottom:419.339832px;}
.y6b{bottom:427.619829px;}
.y2d{bottom:436.619825px;}
.y6a{bottom:444.899822px;}
.y2c{bottom:453.899818px;}
.y69{bottom:462.179815px;}
.y2b{bottom:470.999812px;}
.y68{bottom:479.459808px;}
.y2a{bottom:488.279805px;}
.y67{bottom:496.379801px;}
.y29{bottom:505.559798px;}
.y66{bottom:513.479795px;}
.y28{bottom:522.839791px;}
.y65{bottom:527.699789px;}
.y27{bottom:540.299784px;}
.y26{bottom:559.379776px;}
.y25{bottom:577.919769px;}
.y24{bottom:595.199762px;}
.y23{bottom:612.479755px;}
.y22{bottom:629.759748px;}
.y21{bottom:647.039741px;}
.y20{bottom:664.319734px;}
.y1f{bottom:681.419727px;}
.y1e{bottom:698.699721px;}
.y1d{bottom:715.619714px;}
.y64{bottom:719.759712px;}
.y1c{bottom:733.259707px;}
.y63{bottom:737.039705px;}
.y1b{bottom:750.539700px;}
.y62{bottom:754.679698px;}
.y1a{bottom:767.819693px;}
.y61{bottom:771.959691px;}
.y19{bottom:784.919686px;}
.y60{bottom:788.339685px;}
.y18{bottom:802.199679px;}
.y5d{bottom:805.440600px;}
.y5c{bottom:808.679677px;}
.y5f{bottom:809.039676px;}
.y17{bottom:819.479672px;}
.y5a{bottom:832.440600px;}
.y57{bottom:835.679666px;}
.y59{bottom:836.039666px;}
.y16{bottom:836.759665px;}
.y58{bottom:842.879663px;}
.y15{bottom:854.039658px;}
.y54{bottom:859.440600px;}
.y53{bottom:862.679655px;}
.y56{bottom:863.039655px;}
.y14{bottom:871.139652px;}
.y50{bottom:886.440600px;}
.y13{bottom:888.419645px;}
.y4f{bottom:889.679644px;}
.y52{bottom:890.039644px;}
.y12{bottom:905.699638px;}
.y4c{bottom:913.440600px;}
.y4b{bottom:916.679633px;}
.y4e{bottom:917.039633px;}
.y11{bottom:922.979631px;}
.y10{bottom:940.259624px;}
.y48{bottom:940.440600px;}
.y47{bottom:943.679623px;}
.y4a{bottom:944.039622px;}
.yf{bottom:957.539617px;}
.y44{bottom:968.880600px;}
.y43{bottom:972.119611px;}
.y46{bottom:972.479611px;}
.ye{bottom:974.639610px;}
.yd{bottom:991.919603px;}
.y42{bottom:999.839600px;}
.yc{bottom:1009.199596px;}
.yb{bottom:1026.479589px;}
.y41{bottom:1027.199589px;}
.y8b{bottom:1033.139587px;}
.ya{bottom:1043.759582px;}
.y8a{bottom:1046.999581px;}
.y40{bottom:1055.459578px;}
.y9{bottom:1060.679576px;}
.y89{bottom:1074.539570px;}
.y8{bottom:1078.139569px;}
.y88{bottom:1088.399565px;}
.y7{bottom:1095.419562px;}
.y87{bottom:1102.079559px;}
.y6{bottom:1102.259559px;}
.y4{bottom:1112.699555px;}
.y85{bottom:1116.299553px;}
.y5{bottom:1119.539552px;}
.y3{bottom:1129.979548px;}
.y84{bottom:1133.579547px;}
.y2{bottom:1146.899541px;}
.y86{bottom:1150.859540px;}
.y83{bottom:1151.219540px;}
.y1{bottom:1164.179534px;}
.y82{bottom:1168.499533px;}
.y81{bottom:1185.599526px;}
.h6{height:16.920000px;}
.h3{height:38.158578px;}
.h5{height:47.344903px;}
.h8{height:52.998026px;}
.h9{height:54.421853px;}
.h7{height:58.621969px;}
.h2{height:58.651148px;}
.h1{height:60.226851px;}
.h4{height:65.010911px;}
.h0{height:1263.000000px;}
.w1{width:5.220000px;}
.w2{width:5.400000px;}
.w3{width:5.580000px;}
.w4{width:5.760000px;}
.w5{width:106.920000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xf{left:63.899658px;}
.x13{left:69.120065px;}
.x1{left:73.979970px;}
.xd{left:148.859940px;}
.xe{left:153.719939px;}
.x2{left:197.998726px;}
.x4{left:282.958995px;}
.x10{left:344.159862px;}
.x5{left:345.779862px;}
.x6{left:350.639860px;}
.x12{left:371.339851px;}
.x11{left:412.379835px;}
.x7{left:415.799834px;}
.x8{left:420.659832px;}
.x3{left:446.578905px;}
.x24{left:462.419815px;}
.x14{left:467.639813px;}
.x9{left:520.379792px;}
.xa{left:525.239790px;}
.x22{left:566.099774px;}
.x23{left:571.139772px;}
.xb{left:601.739759px;}
.x20{left:604.620000px;}
.xc{left:606.599757px;}
.x27{left:638.999744px;}
.x19{left:649.080000px;}
.x15{left:650.339993px;}
.x16{left:659.879736px;}
.x1a{left:668.160000px;}
.x1b{left:678.599729px;}
.x1c{left:704.880000px;}
.x1d{left:726.299709px;}
.x17{left:760.500000px;}
.x18{left:771.119692px;}
.x1e{left:779.400000px;}
.x26{left:785.520000px;}
.x1f{left:789.839684px;}
.x21{left:823.680000px;}
.x25{left:833.399667px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.279999pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.168257pt;}
.ls3{letter-spacing:0.242080pt;}
.ls1{letter-spacing:0.295200pt;}
.ls5{letter-spacing:0.336457pt;}
.ls4{letter-spacing:0.336533pt;}
.ls2{letter-spacing:0.935626pt;}
.ls0{letter-spacing:9.133756pt;}
.ls6{letter-spacing:13.616510pt;}
.ls8{letter-spacing:20.018339pt;}
.ws1{word-spacing:-13.616451pt;}
.ws0{word-spacing:-13.279995pt;}
.ws2{word-spacing:0.000000pt;}
._2b{margin-left:-14.059180pt;}
._1{margin-left:-0.976925pt;}
._0{width:1.202101pt;}
._2{width:2.231919pt;}
._6{width:3.155220pt;}
._9{width:4.318044pt;}
._c{width:5.304157pt;}
._f{width:6.472088pt;}
._e{width:7.558298pt;}
._d{width:8.590870pt;}
._3{width:9.511212pt;}
._4{width:10.579313pt;}
._a{width:12.027566pt;}
._8{width:14.838021pt;}
._5{width:16.010568pt;}
._2c{width:17.641870pt;}
._b{width:19.133374pt;}
._7{width:20.525033pt;}
._13{width:21.458400pt;}
._10{width:22.349169pt;}
._14{width:27.619178pt;}
._15{width:28.833701pt;}
._2a{width:33.735804pt;}
._22{width:34.885194pt;}
._2d{width:37.591090pt;}
._2e{width:38.767033pt;}
._12{width:40.366465pt;}
._11{width:41.345928pt;}
._25{width:52.577308pt;}
._20{width:62.891922pt;}
._23{width:74.684557pt;}
._1b{width:88.210998pt;}
._28{width:113.090301pt;}
._26{width:121.908218pt;}
._1d{width:122.953217pt;}
._1c{width:139.650291pt;}
._27{width:143.616237pt;}
._1e{width:148.468207pt;}
._21{width:181.916016pt;}
._29{width:190.787332pt;}
._24{width:193.708921pt;}
._19{width:214.868181pt;}
._1a{width:257.134001pt;}
._18{width:262.974477pt;}
._16{width:324.841924pt;}
._1f{width:327.403454pt;}
._17{width:385.120091pt;}
.fs1{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs4{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.199121pt;}
.y49{bottom:3.199131pt;}
.y4d{bottom:3.199141pt;}
.y51{bottom:3.199150pt;}
.y55{bottom:3.199160pt;}
.y5b{bottom:3.199169pt;}
.y5e{bottom:3.199179pt;}
.y75{bottom:3.199364pt;}
.y80{bottom:93.066896pt;}
.y7f{bottom:106.826891pt;}
.y3f{bottom:107.146624pt;}
.y7e{bottom:120.586885pt;}
.y3e{bottom:127.466616pt;}
.y7d{bottom:134.506613pt;}
.y3d{bottom:142.666610pt;}
.y7c{bottom:149.866607pt;}
.y3c{bottom:158.026603pt;}
.y7b{bottom:165.546600pt;}
.y3b{bottom:173.386597pt;}
.y7a{bottom:180.906594pt;}
.y3a{bottom:188.746591pt;}
.y79{bottom:196.106588pt;}
.y39{bottom:203.786585pt;}
.y78{bottom:211.466582pt;}
.y38{bottom:219.466579pt;}
.y77{bottom:226.826576pt;}
.y37{bottom:234.666573pt;}
.y76{bottom:242.186570pt;}
.y36{bottom:250.026567pt;}
.y74{bottom:254.347200pt;}
.y73{bottom:257.546564pt;}
.y35{bottom:265.386561pt;}
.y72{bottom:272.906558pt;}
.y34{bottom:280.746554pt;}
.y71{bottom:288.106551pt;}
.y33{bottom:296.106548pt;}
.y70{bottom:303.466545pt;}
.y32{bottom:311.466542pt;}
.y6f{bottom:318.506539pt;}
.y31{bottom:326.666536pt;}
.y6e{bottom:333.866533pt;}
.y30{bottom:342.026530pt;}
.y6d{bottom:349.546527pt;}
.y2f{bottom:357.386524pt;}
.y6c{bottom:364.746521pt;}
.y2e{bottom:372.746518pt;}
.y6b{bottom:380.106515pt;}
.y2d{bottom:388.106511pt;}
.y6a{bottom:395.466508pt;}
.y2c{bottom:403.466505pt;}
.y69{bottom:410.826502pt;}
.y2b{bottom:418.666499pt;}
.y68{bottom:426.186496pt;}
.y2a{bottom:434.026493pt;}
.y67{bottom:441.226490pt;}
.y29{bottom:449.386487pt;}
.y66{bottom:456.426484pt;}
.y28{bottom:464.746481pt;}
.y65{bottom:469.066479pt;}
.y27{bottom:480.266475pt;}
.y26{bottom:497.226468pt;}
.y25{bottom:513.706461pt;}
.y24{bottom:529.066455pt;}
.y23{bottom:544.426449pt;}
.y22{bottom:559.786443pt;}
.y21{bottom:575.146437pt;}
.y20{bottom:590.506430pt;}
.y1f{bottom:605.706424pt;}
.y1e{bottom:621.066418pt;}
.y1d{bottom:636.106412pt;}
.y64{bottom:639.786411pt;}
.y1c{bottom:651.786406pt;}
.y63{bottom:655.146405pt;}
.y1b{bottom:667.146400pt;}
.y62{bottom:670.826398pt;}
.y1a{bottom:682.506394pt;}
.y61{bottom:686.186392pt;}
.y19{bottom:697.706388pt;}
.y60{bottom:700.746386pt;}
.y18{bottom:713.066381pt;}
.y5d{bottom:715.947200pt;}
.y5c{bottom:718.826379pt;}
.y5f{bottom:719.146379pt;}
.y17{bottom:728.426375pt;}
.y5a{bottom:739.947200pt;}
.y57{bottom:742.826370pt;}
.y59{bottom:743.146369pt;}
.y16{bottom:743.786369pt;}
.y58{bottom:749.226367pt;}
.y15{bottom:759.146363pt;}
.y54{bottom:763.947200pt;}
.y53{bottom:766.826360pt;}
.y56{bottom:767.146360pt;}
.y14{bottom:774.346357pt;}
.y50{bottom:787.947200pt;}
.y13{bottom:789.706351pt;}
.y4f{bottom:790.826350pt;}
.y52{bottom:791.146350pt;}
.y12{bottom:805.066345pt;}
.y4c{bottom:811.947200pt;}
.y4b{bottom:814.826341pt;}
.y4e{bottom:815.146341pt;}
.y11{bottom:820.426338pt;}
.y10{bottom:835.786332pt;}
.y48{bottom:835.947200pt;}
.y47{bottom:838.826331pt;}
.y4a{bottom:839.146331pt;}
.yf{bottom:851.146326pt;}
.y44{bottom:861.227200pt;}
.y43{bottom:864.106321pt;}
.y46{bottom:864.426321pt;}
.ye{bottom:866.346320pt;}
.yd{bottom:881.706314pt;}
.y42{bottom:888.746311pt;}
.yc{bottom:897.066308pt;}
.yb{bottom:912.426302pt;}
.y41{bottom:913.066301pt;}
.y8b{bottom:918.346299pt;}
.ya{bottom:927.786296pt;}
.y8a{bottom:930.666294pt;}
.y40{bottom:938.186291pt;}
.y9{bottom:942.826290pt;}
.y89{bottom:955.146285pt;}
.y8{bottom:958.346283pt;}
.y88{bottom:967.466280pt;}
.y7{bottom:973.706277pt;}
.y87{bottom:979.626275pt;}
.y6{bottom:979.786275pt;}
.y4{bottom:989.066271pt;}
.y85{bottom:992.266270pt;}
.y5{bottom:995.146269pt;}
.y3{bottom:1004.426265pt;}
.y84{bottom:1007.626264pt;}
.y2{bottom:1019.466259pt;}
.y86{bottom:1022.986257pt;}
.y83{bottom:1023.306257pt;}
.y1{bottom:1034.826253pt;}
.y82{bottom:1038.666251pt;}
.y81{bottom:1053.866245pt;}
.h6{height:15.040000pt;}
.h3{height:33.918736pt;}
.h5{height:42.084358pt;}
.h8{height:47.109356pt;}
.h9{height:48.374981pt;}
.h7{height:52.108417pt;}
.h2{height:52.134354pt;}
.h1{height:53.534979pt;}
.h4{height:57.787477pt;}
.h0{height:1122.666667pt;}
.w1{width:4.640000pt;}
.w2{width:4.800000pt;}
.w3{width:4.960000pt;}
.w4{width:5.120000pt;}
.w5{width:95.040000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xf{left:56.799696pt;}
.x13{left:61.440058pt;}
.x1{left:65.759974pt;}
.xd{left:132.319947pt;}
.xe{left:136.639945pt;}
.x2{left:175.998868pt;}
.x4{left:251.519106pt;}
.x10{left:305.919878pt;}
.x5{left:307.359877pt;}
.x6{left:311.679875pt;}
.x12{left:330.079868pt;}
.x11{left:366.559853pt;}
.x7{left:369.599852pt;}
.x8{left:373.919850pt;}
.x3{left:396.959027pt;}
.x24{left:411.039836pt;}
.x14{left:415.679834pt;}
.x9{left:462.559815pt;}
.xa{left:466.879813pt;}
.x22{left:503.199799pt;}
.x23{left:507.679797pt;}
.xb{left:534.879786pt;}
.x20{left:537.440000pt;}
.xc{left:539.199784pt;}
.x27{left:567.999773pt;}
.x19{left:576.960000pt;}
.x15{left:578.079994pt;}
.x16{left:586.559765pt;}
.x1a{left:593.920000pt;}
.x1b{left:603.199759pt;}
.x1c{left:626.560000pt;}
.x1d{left:645.599742pt;}
.x17{left:676.000000pt;}
.x18{left:685.439726pt;}
.x1e{left:692.800000pt;}
.x26{left:698.240000pt;}
.x1f{left:702.079719pt;}
.x21{left:732.160000pt;}
.x25{left:740.799704pt;}
}




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