
    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_b270c1a5def7c6cd37deebf5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7d488aabc689fb52c2b69838.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1f4c0bf5c46da9a26e8317ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_e3b65911a1da56b2f0ad0208.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913574;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-3.109615px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:1.014269px;}
.ls9{letter-spacing:1.529755px;}
.ls8{letter-spacing:7.748986px;}
.ls7{letter-spacing:8.264471px;}
.lsb{letter-spacing:125.958860px;}
.lse{letter-spacing:185.041553px;}
.lsa{letter-spacing:231.685785px;}
.ls1{letter-spacing:235.966365px;}
.lsc{letter-spacing:264.871212px;}
.ls2{letter-spacing:366.570214px;}
.ls4{letter-spacing:369.679829px;}
.lsd{letter-spacing:464.906943px;}
.ls0{letter-spacing:590.462526px;}
.ls3{letter-spacing:1119.097150px;}
.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;}
}
.ws8{word-spacing:-74.630771px;}
.ws13{word-spacing:-48.976443px;}
.ws6{word-spacing:-46.644232px;}
.wsd{word-spacing:-43.534616px;}
.ws14{word-spacing:-43.509563px;}
.wsc{word-spacing:-41.979808px;}
.ws4{word-spacing:-41.046923px;}
.ws12{word-spacing:-40.425001px;}
.ws9{word-spacing:-38.329654px;}
.ws3{word-spacing:-37.315385px;}
.wsb{word-spacing:-34.205770px;}
.ws5{word-spacing:-10.393221px;}
.wsa{word-spacing:-10.367409px;}
.ws7{word-spacing:-9.313663px;}
.ws16{word-spacing:-5.204962px;}
.ws11{word-spacing:0.000000px;}
.ws15{word-spacing:64.263361px;}
.wse{word-spacing:124.399801px;}
.wsf{word-spacing:125.939425px;}
.ws10{word-spacing:152.359010px;}
.ws2{word-spacing:161.179203px;}
.ws0{word-spacing:458.929688px;}
.ws1{word-spacing:2260.664063px;}
._9{margin-left:-522.936194px;}
._a{margin-left:-12.959262px;}
._b{margin-left:-6.319250px;}
._4{margin-left:-4.710939px;}
._0{margin-left:-2.695312px;}
._1{margin-left:-1.335937px;}
._2{width:1.359375px;}
._3{width:2.671875px;}
._10{width:160.661440px;}
._d{width:207.305672px;}
._e{width:240.491099px;}
._6{width:338.427283px;}
._8{width:341.536899px;}
._f{width:440.526830px;}
._5{width:562.319595px;}
._c{width:578.365034px;}
._7{width:654.053250px;}
.fc8{color:rgb(162,111,40);}
.fc7{color:transparent;}
.fca{color:rgb(131,144,152);}
.fc6{color:rgb(0,102,0);}
.fc9{color:rgb(69,69,69);}
.fc5{color:rgb(171,171,171);}
.fc4{color:rgb(120,120,120);}
.fc3{color:rgb(86,86,86);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.852309px;}
.fs6{font-size:34.205770px;}
.fs2{font-size:37.315385px;}
.fs9{font-size:40.425001px;}
.fs3{font-size:41.046923px;}
.fs7{font-size:41.979808px;}
.fs8{font-size:43.534616px;}
.fs1{font-size:46.644232px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:48.976443px;}
.fs5{font-size:55.973078px;}
.fs4{font-size:74.630771px;}
.y0{bottom:0.000000px;}
.y40{bottom:0.777369px;}
.y32{bottom:6.219196px;}
.y92{bottom:10.106180px;}
.y4a{bottom:18.998058px;}
.y2{bottom:25.500000px;}
.y8c{bottom:27.986470px;}
.y90{bottom:30.318680px;}
.y3f{bottom:41.979773px;}
.y94{bottom:44.010315px;}
.y3{bottom:44.010591px;}
.y8f{bottom:51.308585px;}
.y31{bottom:57.527851px;}
.y3e{bottom:59.082658px;}
.y91{bottom:77.740316px;}
.y8e{bottom:78.517720px;}
.y3d{bottom:87.846601px;}
.y30{bottom:99.507659px;}
.y8d{bottom:118.165317px;}
.y93{bottom:118.942720px;}
.y48{bottom:127.494198px;}
.y3c{bottom:139.155256px;}
.y3b{bottom:156.258141px;}
.y47{bottom:164.032179px;}
.y49{bottom:166.500000px;}
.y3a{bottom:173.361026px;}
.y2f{bottom:183.467276px;}
.y8b{bottom:197.936555px;}
.y46{bottom:200.570161px;}
.y39{bottom:214.563430px;}
.y2e{bottom:224.669680px;}
.y38{bottom:231.666315px;}
.y45{bottom:237.108142px;}
.y86{bottom:244.104742px;}
.y85{bottom:256.543204px;}
.y2d{bottom:265.872085px;}
.y84{bottom:268.204262px;}
.y37{bottom:272.868720px;}
.y44{bottom:273.646124px;}
.y83{bottom:280.642723px;}
.y36{bottom:289.971605px;}
.y82{bottom:293.081185px;}
.y81{bottom:305.519647px;}
.y2c{bottom:307.074490px;}
.y43{bottom:310.184105px;}
.y35{bottom:317.958144px;}
.y80{bottom:342.057628px;}
.y42{bottom:346.722087px;}
.y2b{bottom:349.054298px;}
.y7f{bottom:354.496090px;}
.y7e{bottom:366.157148px;}
.y7d{bottom:378.595610px;}
.y34{bottom:380.150452px;}
.y2a{bottom:390.256703px;}
.y7c{bottom:391.034071px;}
.y41{bottom:391.034107px;}
.y33{bottom:402.695164px;}
.y7b{bottom:403.472533px;}
.y7a{bottom:440.010515px;}
.y79{bottom:452.448976px;}
.y29{bottom:462.555262px;}
.y78{bottom:464.110034px;}
.y77{bottom:476.548496px;}
.y76{bottom:488.986958px;}
.y28{bottom:491.319204px;}
.y75{bottom:501.425420px;}
.y27{bottom:508.422089px;}
.y26{bottom:525.524974px;}
.y74{bottom:537.963401px;}
.y73{bottom:550.401863px;}
.y25{bottom:554.288917px;}
.y72{bottom:562.062921px;}
.y71{bottom:574.501382px;}
.y24{bottom:583.052860px;}
.y70{bottom:586.939844px;}
.y6f{bottom:599.378306px;}
.y23{bottom:623.477861px;}
.y6e{bottom:635.916287px;}
.y6d{bottom:648.354749px;}
.y22{bottom:652.241803px;}
.y6c{bottom:660.015807px;}
.y21{bottom:669.344688px;}
.y6b{bottom:672.454269px;}
.y6a{bottom:684.892731px;}
.y20{bottom:686.447573px;}
.y69{bottom:697.331192px;}
.y1f{bottom:703.550458px;}
.y1e{bottom:720.653343px;}
.y68{bottom:733.869174px;}
.y1d{bottom:737.756228px;}
.y67{bottom:746.307636px;}
.y1c{bottom:754.859113px;}
.y66{bottom:757.968693px;}
.y65{bottom:770.407155px;}
.y1b{bottom:771.961998px;}
.y64{bottom:782.845617px;}
.y1a{bottom:789.064883px;}
.y63{bottom:795.284079px;}
.y62{bottom:831.822060px;}
.y4b{bottom:837.263922px;}
.y61{bottom:844.260522px;}
.y60{bottom:855.921580px;}
.y5f{bottom:868.360042px;}
.y5e{bottom:880.798503px;}
.y17{bottom:883.908154px;}
.y19{bottom:894.791808px;}
.y16{bottom:900.233635px;}
.y18{bottom:904.898058px;}
.y5d{bottom:917.336485px;}
.y5c{bottom:929.774946px;}
.y5b{bottom:941.436004px;}
.ye{bottom:948.432674px;}
.y15{bottom:950.764886px;}
.y5a{bottom:953.874466px;}
.y14{bottom:960.871136px;}
.y59{bottom:966.312928px;}
.y13{bottom:970.977386px;}
.y12{bottom:981.083636px;}
.y11{bottom:991.189886px;}
.yd{bottom:992.744694px;}
.y58{bottom:1002.850909px;}
.y57{bottom:1015.289371px;}
.y10{bottom:1015.289406px;}
.yc{bottom:1016.844214px;}
.y56{bottom:1026.950429px;}
.yf{bottom:1030.837483px;}
.y55{bottom:1039.388891px;}
.yb{bottom:1047.162964px;}
.y54{bottom:1051.827352px;}
.y53{bottom:1064.265814px;}
.y4c{bottom:1069.707676px;}
.y6{bottom:1093.029792px;}
.y97{bottom:1100.026630px;}
.y52{bottom:1100.803796px;}
.y8a{bottom:1102.358603px;}
.y7{bottom:1105.468254px;}
.y51{bottom:1113.242257px;}
.y96{bottom:1114.019899px;}
.y89{bottom:1119.461488px;}
.y9{bottom:1119.461523px;}
.y50{bottom:1124.903315px;}
.y8{bottom:1133.454793px;}
.y4f{bottom:1137.341777px;}
.y95{bottom:1137.342015px;}
.y98{bottom:1138.119419px;}
.y5{bottom:1147.448062px;}
.y4e{bottom:1149.780239px;}
.y88{bottom:1160.663893px;}
.y4d{bottom:1162.218701px;}
.y4{bottom:1164.550947px;}
.ya{bottom:1165.328351px;}
.y87{bottom:1177.766778px;}
.y1{bottom:1231.500000px;}
.h15{height:21.747874px;}
.h14{height:24.075226px;}
.ha{height:24.919438px;}
.he{height:27.166621px;}
.h4{height:27.184841px;}
.hf{height:29.450245px;}
.h5{height:29.883282px;}
.hb{height:30.562448px;}
.h12{height:30.582946px;}
.h6{height:30.871436px;}
.hc{height:31.715648px;}
.h8{height:33.958276px;}
.h3{height:33.981052px;}
.h1{height:34.968750px;}
.h11{height:35.656190px;}
.h10{height:40.424926px;}
.h9{height:40.749931px;}
.hd{height:43.500000px;}
.h7{height:54.333242px;}
.h2{height:1176.989409px;}
.h13{height:1176.989685px;}
.h0{height:1264.500000px;}
.w2{width:114.000000px;}
.w1{width:808.500000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x9{left:4.664423px;}
.x10{left:11.661058px;}
.x29{left:15.154327px;}
.x17{left:16.702036px;}
.x1f{left:22.156010px;}
.x1c{left:23.322116px;}
.x1e{left:26.431731px;}
.x11{left:27.986539px;}
.x2a{left:29.541347px;}
.x16{left:32.250113px;}
.x1{left:39.000000px;}
.x2{left:43.500000px;}
.x3{left:50.531251px;}
.xa{left:53.640866px;}
.x18{left:69.954200px;}
.x19{left:83.947470px;}
.x2f{left:90.178848px;}
.x30{left:92.511059px;}
.x20{left:134.745953px;}
.x31{left:146.929330px;}
.x22{left:148.350521px;}
.x32{left:174.915868px;}
.x21{left:177.891868px;}
.xb{left:197.460580px;}
.x4{left:201.869918px;}
.x2d{left:207.700447px;}
.x33{left:237.630496px;}
.xc{left:252.656254px;}
.x2b{left:269.491907px;}
.xd{left:340.502891px;}
.x5{left:345.009404px;}
.x34{left:350.354055px;}
.x7{left:360.557481px;}
.x6{left:369.886327px;}
.x35{left:393.111268px;}
.x1d{left:404.250007px;}
.x12{left:535.108941px;}
.x13{left:546.769999px;}
.x2e{left:599.779225px;}
.x8{left:606.119925px;}
.xe{left:625.810107px;}
.x14{left:635.491215px;}
.x1a{left:671.664788px;}
.x23{left:673.741914px;}
.x1b{left:678.661423px;}
.x2c{left:708.214916px;}
.x27{left:711.567471px;}
.xf{left:714.434147px;}
.x28{left:715.454490px;}
.x25{left:719.730211px;}
.x26{left:721.285019px;}
.x15{left:723.398586px;}
.x24{left:739.554010px;}
@media print{
.v1{vertical-align:-2.764103pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.901573pt;}
.ls9{letter-spacing:1.359782pt;}
.ls8{letter-spacing:6.887987pt;}
.ls7{letter-spacing:7.346197pt;}
.lsb{letter-spacing:111.963431pt;}
.lse{letter-spacing:164.481381pt;}
.lsa{letter-spacing:205.942920pt;}
.ls1{letter-spacing:209.747880pt;}
.lsc{letter-spacing:235.441078pt;}
.ls2{letter-spacing:325.840190pt;}
.ls4{letter-spacing:328.604293pt;}
.lsd{letter-spacing:413.250616pt;}
.ls0{letter-spacing:524.855578pt;}
.ls3{letter-spacing:994.753023pt;}
.ws8{word-spacing:-66.338463pt;}
.ws13{word-spacing:-43.534616pt;}
.ws6{word-spacing:-41.461539pt;}
.wsd{word-spacing:-38.697437pt;}
.ws14{word-spacing:-38.675167pt;}
.wsc{word-spacing:-37.315385pt;}
.ws4{word-spacing:-36.486154pt;}
.ws12{word-spacing:-35.933334pt;}
.ws9{word-spacing:-34.070804pt;}
.ws3{word-spacing:-33.169231pt;}
.wsb{word-spacing:-30.405129pt;}
.ws5{word-spacing:-9.238419pt;}
.wsa{word-spacing:-9.215475pt;}
.ws7{word-spacing:-8.278811pt;}
.ws16{word-spacing:-4.626633pt;}
.ws11{word-spacing:0.000000pt;}
.ws15{word-spacing:57.122988pt;}
.wse{word-spacing:110.577601pt;}
.wsf{word-spacing:111.946156pt;}
.ws10{word-spacing:135.430231pt;}
.ws2{word-spacing:143.270403pt;}
.ws0{word-spacing:407.937500pt;}
.ws1{word-spacing:2009.479167pt;}
._9{margin-left:-464.832172pt;}
._a{margin-left:-11.519344pt;}
._b{margin-left:-5.617111pt;}
._4{margin-left:-4.187501pt;}
._0{margin-left:-2.395833pt;}
._1{margin-left:-1.187500pt;}
._2{width:1.208333pt;}
._3{width:2.375000pt;}
._10{width:142.810169pt;}
._d{width:184.271708pt;}
._e{width:213.769866pt;}
._6{width:300.824252pt;}
._8{width:303.588354pt;}
._f{width:391.579404pt;}
._5{width:499.839640pt;}
._c{width:514.102253pt;}
._7{width:581.380667pt;}
.fsb{font-size:26.535386pt;}
.fs6{font-size:30.405129pt;}
.fs2{font-size:33.169231pt;}
.fs9{font-size:35.933334pt;}
.fs3{font-size:36.486154pt;}
.fs7{font-size:37.315385pt;}
.fs8{font-size:38.697437pt;}
.fs1{font-size:41.461539pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:43.534616pt;}
.fs5{font-size:49.753847pt;}
.fs4{font-size:66.338463pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:0.690995pt;}
.y32{bottom:5.528174pt;}
.y92{bottom:8.983271pt;}
.y4a{bottom:16.887163pt;}
.y2{bottom:22.666667pt;}
.y8c{bottom:24.876862pt;}
.y90{bottom:26.949938pt;}
.y3f{bottom:37.315354pt;}
.y94{bottom:39.120280pt;}
.y3{bottom:39.120525pt;}
.y8f{bottom:45.607631pt;}
.y31{bottom:51.135867pt;}
.y3e{bottom:52.517919pt;}
.y91{bottom:69.102503pt;}
.y8e{bottom:69.793529pt;}
.y3d{bottom:78.085868pt;}
.y30{bottom:88.451252pt;}
.y8d{bottom:105.035837pt;}
.y93{bottom:105.726863pt;}
.y48{bottom:113.328176pt;}
.y3c{bottom:123.693561pt;}
.y3b{bottom:138.896125pt;}
.y47{bottom:145.806382pt;}
.y49{bottom:148.000000pt;}
.y3a{bottom:154.098690pt;}
.y2f{bottom:163.082023pt;}
.y8b{bottom:175.943604pt;}
.y46{bottom:178.284587pt;}
.y39{bottom:190.723049pt;}
.y2e{bottom:199.706383pt;}
.y38{bottom:205.925614pt;}
.y45{bottom:210.762793pt;}
.y86{bottom:216.981993pt;}
.y85{bottom:228.038403pt;}
.y2d{bottom:236.330742pt;}
.y84{bottom:238.403788pt;}
.y37{bottom:242.549973pt;}
.y44{bottom:243.240999pt;}
.y83{bottom:249.460199pt;}
.y36{bottom:257.752538pt;}
.y82{bottom:260.516609pt;}
.y81{bottom:271.573019pt;}
.y2c{bottom:272.955102pt;}
.y43{bottom:275.719205pt;}
.y35{bottom:282.629461pt;}
.y80{bottom:304.051225pt;}
.y42{bottom:308.197410pt;}
.y2b{bottom:310.270487pt;}
.y7f{bottom:315.107636pt;}
.y7e{bottom:325.473020pt;}
.y7d{bottom:336.529431pt;}
.y34{bottom:337.911513pt;}
.y2a{bottom:346.894847pt;}
.y7c{bottom:347.585841pt;}
.y41{bottom:347.585872pt;}
.y33{bottom:357.951257pt;}
.y7b{bottom:358.642252pt;}
.y7a{bottom:391.120457pt;}
.y79{bottom:402.176868pt;}
.y29{bottom:411.160233pt;}
.y78{bottom:412.542253pt;}
.y77{bottom:423.598663pt;}
.y76{bottom:434.655074pt;}
.y28{bottom:436.728182pt;}
.y75{bottom:445.711484pt;}
.y27{bottom:451.930746pt;}
.y26{bottom:467.133311pt;}
.y74{bottom:478.189690pt;}
.y73{bottom:489.246100pt;}
.y25{bottom:492.701260pt;}
.y72{bottom:499.611485pt;}
.y71{bottom:510.667896pt;}
.y24{bottom:518.269209pt;}
.y70{bottom:521.724306pt;}
.y6f{bottom:532.780716pt;}
.y23{bottom:554.202543pt;}
.y6e{bottom:565.258922pt;}
.y6d{bottom:576.315333pt;}
.y22{bottom:579.770492pt;}
.y6c{bottom:586.680717pt;}
.y21{bottom:594.973056pt;}
.y6b{bottom:597.737128pt;}
.y6a{bottom:608.793538pt;}
.y20{bottom:610.175621pt;}
.y69{bottom:619.849949pt;}
.y1f{bottom:625.378185pt;}
.y1e{bottom:640.580749pt;}
.y68{bottom:652.328154pt;}
.y1d{bottom:655.783314pt;}
.y67{bottom:663.384565pt;}
.y1c{bottom:670.985878pt;}
.y66{bottom:673.749950pt;}
.y65{bottom:684.806360pt;}
.y1b{bottom:686.188443pt;}
.y64{bottom:695.862771pt;}
.y1a{bottom:701.391007pt;}
.y63{bottom:706.919181pt;}
.y62{bottom:739.397387pt;}
.y4b{bottom:744.234597pt;}
.y61{bottom:750.453797pt;}
.y60{bottom:760.819182pt;}
.y5f{bottom:771.875592pt;}
.y5e{bottom:782.932003pt;}
.y17{bottom:785.696137pt;}
.y19{bottom:795.370496pt;}
.y16{bottom:800.207675pt;}
.y18{bottom:804.353829pt;}
.y5d{bottom:815.410209pt;}
.y5c{bottom:826.466619pt;}
.y5b{bottom:836.832004pt;}
.ye{bottom:843.051266pt;}
.y15{bottom:845.124343pt;}
.y5a{bottom:847.888414pt;}
.y14{bottom:854.107676pt;}
.y59{bottom:858.944825pt;}
.y13{bottom:863.091010pt;}
.y12{bottom:872.074343pt;}
.y11{bottom:881.057677pt;}
.yd{bottom:882.439728pt;}
.y58{bottom:891.423031pt;}
.y57{bottom:902.479441pt;}
.y10{bottom:902.479472pt;}
.yc{bottom:903.861523pt;}
.y56{bottom:912.844826pt;}
.yf{bottom:916.299985pt;}
.y55{bottom:923.901236pt;}
.yb{bottom:930.811524pt;}
.y54{bottom:934.957647pt;}
.y53{bottom:946.014057pt;}
.y4c{bottom:950.851268pt;}
.y6{bottom:971.582037pt;}
.y97{bottom:977.801449pt;}
.y52{bottom:978.492263pt;}
.y8a{bottom:979.874314pt;}
.y7{bottom:982.638448pt;}
.y51{bottom:989.548673pt;}
.y96{bottom:990.239910pt;}
.y89{bottom:995.076879pt;}
.y9{bottom:995.076910pt;}
.y50{bottom:999.914058pt;}
.y8{bottom:1007.515371pt;}
.y4f{bottom:1010.970469pt;}
.y95{bottom:1010.970680pt;}
.y98{bottom:1011.661706pt;}
.y5{bottom:1019.953833pt;}
.y4e{bottom:1022.026879pt;}
.y88{bottom:1031.701238pt;}
.y4d{bottom:1033.083289pt;}
.y4{bottom:1035.156398pt;}
.ya{bottom:1035.847423pt;}
.y87{bottom:1046.903803pt;}
.y1{bottom:1094.666667pt;}
.h15{height:19.331443pt;}
.h14{height:21.400201pt;}
.ha{height:22.150611pt;}
.he{height:24.148107pt;}
.h4{height:24.164303pt;}
.hf{height:26.177995pt;}
.h5{height:26.562918pt;}
.hb{height:27.166621pt;}
.h12{height:27.184841pt;}
.h6{height:27.441277pt;}
.hc{height:28.191687pt;}
.h8{height:30.185134pt;}
.h3{height:30.205379pt;}
.h1{height:31.083333pt;}
.h11{height:31.694391pt;}
.h10{height:35.933268pt;}
.h9{height:36.222161pt;}
.hd{height:38.666667pt;}
.h7{height:48.296215pt;}
.h2{height:1046.212808pt;}
.h13{height:1046.213053pt;}
.h0{height:1124.000000pt;}
.w2{width:101.333333pt;}
.w1{width:718.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x9{left:4.146154pt;}
.x10{left:10.365385pt;}
.x29{left:13.470513pt;}
.x17{left:14.846254pt;}
.x1f{left:19.694231pt;}
.x1c{left:20.730770pt;}
.x1e{left:23.494872pt;}
.x11{left:24.876924pt;}
.x2a{left:26.258975pt;}
.x16{left:28.666767pt;}
.x1{left:34.666667pt;}
.x2{left:38.666667pt;}
.x3{left:44.916667pt;}
.xa{left:47.680770pt;}
.x18{left:62.181512pt;}
.x19{left:74.619973pt;}
.x2f{left:80.158976pt;}
.x30{left:82.232053pt;}
.x20{left:119.774181pt;}
.x31{left:130.603848pt;}
.x22{left:131.867130pt;}
.x32{left:155.480772pt;}
.x21{left:158.126105pt;}
.xb{left:175.520516pt;}
.x4{left:179.439927pt;}
.x2d{left:184.622619pt;}
.x33{left:211.227107pt;}
.xc{left:224.583337pt;}
.x2b{left:239.548362pt;}
.xd{left:302.669236pt;}
.x5{left:306.675025pt;}
.x34{left:311.425827pt;}
.x7{left:320.495539pt;}
.x6{left:328.787846pt;}
.x35{left:349.432238pt;}
.x1d{left:359.333340pt;}
.x12{left:475.652392pt;}
.x13{left:486.017777pt;}
.x2e{left:533.137089pt;}
.x8{left:538.773267pt;}
.xe{left:556.275651pt;}
.x14{left:564.881080pt;}
.x1a{left:597.035367pt;}
.x23{left:598.881701pt;}
.x1b{left:603.254598pt;}
.x2c{left:629.524370pt;}
.x27{left:632.504418pt;}
.xf{left:635.052575pt;}
.x28{left:635.959547pt;}
.x25{left:639.760188pt;}
.x26{left:641.142239pt;}
.x15{left:643.020965pt;}
.x24{left:657.381342pt;}
}




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