
    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_c18ca3ec49c65a639284fafe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_d48a93c33a9c04abfcc38ee4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_0d01e7b63bd6edc1ea8f28d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_ad719868dd008580b4df9c36.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_68f7ca82314792df245ea062.woff2')format("woff");}.ff5{font-family:ff5;line-height:2.230469;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);}
.v1{vertical-align:-43.949112px;}
.vb{vertical-align:-17.280117px;}
.v4{vertical-align:-14.400058px;}
.v6{vertical-align:-9.360077px;}
.vd{vertical-align:-7.199892px;}
.v2{vertical-align:-5.759991px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.439897px;}
.vf{vertical-align:15.119937px;}
.v9{vertical-align:18.000000px;}
.ve{vertical-align:25.199888px;}
.v10{vertical-align:36.000000px;}
.va{vertical-align:42.480009px;}
.v5{vertical-align:48.240004px;}
.v8{vertical-align:49.679901px;}
.v3{vertical-align:56.880067px;}
.vc{vertical-align:64.079960px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.206453px;}
.lsd{letter-spacing:0.299749px;}
.ls11{letter-spacing:0.299894px;}
.lsc{letter-spacing:0.371174px;}
.ls7{letter-spacing:0.405414px;}
.ls5{letter-spacing:0.405684px;}
.ls4{letter-spacing:0.405688px;}
.ls9{letter-spacing:0.411152px;}
.lsb{letter-spacing:0.439888px;}
.ls8{letter-spacing:0.469766px;}
.ls6{letter-spacing:2.997048px;}
.ls12{letter-spacing:3.084116px;}
.lsa{letter-spacing:15.741205px;}
.lse{letter-spacing:17.479661px;}
.ls13{letter-spacing:28.521673px;}
.ls2{letter-spacing:34.093769px;}
.ls1{letter-spacing:38.413800px;}
.ls10{letter-spacing:123.672062px;}
.ls0{letter-spacing:2991.794637px;}
.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:-84.080250px;}
.ws3{word-spacing:-71.863650px;}
.ws2{word-spacing:-68.989050px;}
.ws5{word-spacing:-59.646600px;}
.ws8{word-spacing:-51.023250px;}
.ws6{word-spacing:-30.323392px;}
.ws0{word-spacing:-17.965913px;}
.ws7{word-spacing:-12.037163px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-6.487560px;}
._4{margin-left:-4.310135px;}
._5{margin-left:-2.633691px;}
._6{margin-left:-1.001038px;}
._1{width:1.054374px;}
._8{width:2.083484px;}
._2{width:3.462649px;}
._0{width:4.492320px;}
._d{width:5.751899px;}
._a{width:7.747239px;}
._9{width:9.092717px;}
._7{width:10.840463px;}
._b{width:12.203065px;}
._3{width:13.785750px;}
._c{width:14.872687px;}
._18{width:16.555027px;}
._10{width:17.617849px;}
._e{width:19.194613px;}
._19{width:24.974022px;}
._13{width:26.384346px;}
._12{width:27.609958px;}
._15{width:28.618857px;}
._14{width:29.667617px;}
._16{width:46.511782px;}
._17{width:47.766308px;}
._f{width:154.203170px;}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.680890px;}
.fs3{font-size:48.148650px;}
.fs9{font-size:51.023250px;}
.fs7{font-size:53.897850px;}
.fs6{font-size:56.772450px;}
.fs8{font-size:59.646600px;}
.fs0{font-size:66.114450px;}
.fs1{font-size:66.240183px;}
.fs5{font-size:68.989050px;}
.fs2{font-size:71.863650px;}
.fs4{font-size:84.080250px;}
.y0{bottom:0.000000px;}
.y84{bottom:4.500000px;}
.y1{bottom:58.679970px;}
.y42{bottom:93.059967px;}
.y82{bottom:113.940033px;}
.y41{bottom:126.720017px;}
.y60{bottom:129.059967px;}
.y1f{bottom:135.360008px;}
.y40{bottom:147.419975px;}
.y81{bottom:148.320030px;}
.y5f{bottom:163.440033px;}
.y3f{bottom:168.120002px;}
.y1e{bottom:169.740006px;}
.y80{bottom:170.460022px;}
.y3e{bottom:188.820030px;}
.y1d{bottom:191.879998px;}
.y5e{bottom:197.820030px;}
.y7f{bottom:205.019989px;}
.y1c{bottom:214.200027px;}
.y7e{bottom:227.159981px;}
.y3d{bottom:230.399986px;}
.y5d{bottom:232.379998px;}
.y1b{bottom:236.519989px;}
.y3c{bottom:251.100013px;}
.y7d{bottom:261.720017px;}
.y5c{bottom:266.759994px;}
.y1a{bottom:270.720017px;}
.y3b{bottom:271.799973px;}
.y7c{bottom:283.860008px;}
.y5b{bottom:284.940033px;}
.y3a{bottom:292.500000px;}
.y5a{bottom:293.940033px;}
.y19{bottom:305.279983px;}
.y39{bottom:313.200027px;}
.y7b{bottom:318.419975px;}
.y59{bottom:332.460022px;}
.y38{bottom:333.899986px;}
.y18{bottom:339.659981px;}
.y58{bottom:346.139992px;}
.y7a{bottom:352.259994px;}
.y37{bottom:354.600013px;}
.y17{bottom:361.799973px;}
.y57{bottom:375.120002px;}
.y16{bottom:384.120002px;}
.y79{bottom:387.000000px;}
.y36{bottom:396.360008px;}
.y35{bottom:417.059967px;}
.y15{bottom:418.679970px;}
.y78{bottom:421.379998px;}
.y56{bottom:424.080025px;}
.y34{bottom:437.759994px;}
.y77{bottom:443.519989px;}
.y14{bottom:453.059967px;}
.y33{bottom:458.460022px;}
.y76{bottom:465.840019px;}
.y13{bottom:475.200027px;}
.y75{bottom:488.159981px;}
.y55{bottom:492.840019px;}
.y12{bottom:497.519989px;}
.y32{bottom:501.840019px;}
.y11{bottom:519.840019px;}
.y74{bottom:522.720017px;}
.y31{bottom:523.980011px;}
.y54{bottom:527.220017px;}
.y10{bottom:542.159981px;}
.y73{bottom:544.860008px;}
.y30{bottom:554.759994px;}
.y53{bottom:561.419975px;}
.y2f{bottom:566.820030px;}
.y72{bottom:567.179970px;}
.yf{bottom:576.360008px;}
.y71{bottom:589.500000px;}
.y52{bottom:595.799973px;}
.ye{bottom:611.100013px;}
.y70{bottom:611.820030px;}
.y51{bottom:630.180004px;}
.y2e{bottom:633.240006px;}
.yd{bottom:641.160015px;}
.y6f{bottom:646.019989px;}
.y50{bottom:664.379998px;}
.y2d{bottom:667.439999px;}
.y2c{bottom:679.500000px;}
.y6e{bottom:680.759994px;}
.y4f{bottom:699.300007px;}
.y6d{bottom:715.139992px;}
.y2b{bottom:723.779983px;}
.y4e{bottom:735.480011px;}
.y6c{bottom:737.279983px;}
.y2a{bottom:745.920010px;}
.y4d{bottom:746.100013px;}
.y6b{bottom:759.600013px;}
.y8d{bottom:768.420010px;}
.y29{bottom:780.120002px;}
.y6a{bottom:781.920010px;}
.yc{bottom:792.360008px;}
.y4c{bottom:798.839985px;}
.y8c{bottom:802.800007px;}
.y85{bottom:809.639992px;}
.yb{bottom:814.500000px;}
.y28{bottom:814.680004px;}
.y69{bottom:816.480011px;}
.y4b{bottom:820.980011px;}
.y8b{bottom:824.939999px;}
.y83{bottom:826.920010px;}
.ya{bottom:837.000000px;}
.y68{bottom:850.680004px;}
.y4a{bottom:855.180004px;}
.y9{bottom:859.319995px;}
.y8a{bottom:859.500000px;}
.y27{bottom:871.019989px;}
.y67{bottom:873.000000px;}
.y8{bottom:881.639992px;}
.y66{bottom:895.319996px;}
.y49{bottom:896.759994px;}
.y7{bottom:903.960004px;}
.y26{bottom:905.400003px;}
.y89{bottom:916.199993px;}
.y65{bottom:917.639992px;}
.y6{bottom:938.159998px;}
.y88{bottom:938.340002px;}
.y48{bottom:938.879998px;}
.y64{bottom:939.960004px;}
.y25{bottom:940.139992px;}
.y47{bottom:959.580008px;}
.y63{bottom:962.280001px;}
.y5{bottom:972.719999px;}
.y24{bottom:974.520006px;}
.y46{bottom:980.280001px;}
.y62{bottom:984.599997px;}
.y87{bottom:994.860008px;}
.y23{bottom:996.659998px;}
.y45{bottom:1000.979994px;}
.y61{bottom:1006.919992px;}
.y4{bottom:1007.099997px;}
.y22{bottom:1018.979994px;}
.y44{bottom:1021.500000px;}
.y3{bottom:1029.240006px;}
.y86{bottom:1029.419992px;}
.y21{bottom:1041.300007px;}
.y2{bottom:1063.439999px;}
.y20{bottom:1063.620002px;}
.y43{bottom:1063.799998px;}
.h11{height:19.979976px;}
.h3{height:50.178232px;}
.h2{height:50.704577px;}
.h4{height:52.318702px;}
.h1{height:65.759343px;}
.h10{height:86.178232px;}
.hb{height:101.188387px;}
.h9{height:102.918010px;}
.h6{height:106.948382px;}
.h8{height:106.948522px;}
.hf{height:115.551610px;}
.he{height:120.413756px;}
.ha{height:135.101521px;}
.h7{height:155.681001px;}
.h5{height:155.681280px;}
.hd{height:162.893765px;}
.hc{height:184.493716px;}
.h0{height:1188.000000px;}
.w2{width:8.459953px;}
.w1{width:22.860043px;}
.w3{width:29.160050px;}
.w4{width:72.000000px;}
.w5{width:109.619935px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x4{left:135.000000px;}
.x5{left:162.000000px;}
.x3{left:373.500000px;}
.xd{left:380.339985px;}
.xb{left:387.360008px;}
.x8{left:433.079990px;}
.x6{left:434.160015px;}
.xe{left:442.079990px;}
.x7{left:467.100014px;}
.x9{left:471.240006px;}
.xf{left:500.759994px;}
.xc{left:502.199993px;}
.x10{left:537.660015px;}
.x2{left:553.500000px;}
.x12{left:561.959988px;}
.x17{left:580.679970px;}
.x13{left:584.820030px;}
.x14{left:593.279983px;}
.x15{left:622.440033px;}
.xa{left:646.559967px;}
.x16{left:694.440033px;}
.x11{left:711.720017px;}
@media print{
.v1{vertical-align:-39.065877pt;}
.vb{vertical-align:-15.360104pt;}
.v4{vertical-align:-12.800052pt;}
.v6{vertical-align:-8.320068pt;}
.vd{vertical-align:-6.399904pt;}
.v2{vertical-align:-5.119992pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.279908pt;}
.vf{vertical-align:13.439944pt;}
.v9{vertical-align:16.000000pt;}
.ve{vertical-align:22.399900pt;}
.v10{vertical-align:32.000000pt;}
.va{vertical-align:37.760008pt;}
.v5{vertical-align:42.880004pt;}
.v8{vertical-align:44.159912pt;}
.v3{vertical-align:50.560060pt;}
.vc{vertical-align:56.959964pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.183514pt;}
.lsd{letter-spacing:0.266444pt;}
.ls11{letter-spacing:0.266572pt;}
.lsc{letter-spacing:0.329932pt;}
.ls7{letter-spacing:0.360368pt;}
.ls5{letter-spacing:0.360608pt;}
.ls4{letter-spacing:0.360612pt;}
.ls9{letter-spacing:0.365468pt;}
.lsb{letter-spacing:0.391012pt;}
.ls8{letter-spacing:0.417570pt;}
.ls6{letter-spacing:2.664042pt;}
.ls12{letter-spacing:2.741436pt;}
.lsa{letter-spacing:13.992182pt;}
.lse{letter-spacing:15.537477pt;}
.ls13{letter-spacing:25.352598pt;}
.ls2{letter-spacing:30.305572pt;}
.ls1{letter-spacing:34.145600pt;}
.ls10{letter-spacing:109.930722pt;}
.ls0{letter-spacing:2659.373011pt;}
.ws4{word-spacing:-74.738000pt;}
.ws3{word-spacing:-63.878800pt;}
.ws2{word-spacing:-61.323600pt;}
.ws5{word-spacing:-53.019200pt;}
.ws8{word-spacing:-45.354000pt;}
.ws6{word-spacing:-26.954126pt;}
.ws0{word-spacing:-15.969700pt;}
.ws7{word-spacing:-10.699700pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-5.766720pt;}
._4{margin-left:-3.831231pt;}
._5{margin-left:-2.341058pt;}
._6{margin-left:-0.889812pt;}
._1{width:0.937222pt;}
._8{width:1.851986pt;}
._2{width:3.077910pt;}
._0{width:3.993174pt;}
._d{width:5.112799pt;}
._a{width:6.886434pt;}
._9{width:8.082415pt;}
._7{width:9.635967pt;}
._b{width:10.847169pt;}
._3{width:12.254000pt;}
._c{width:13.220167pt;}
._18{width:14.715579pt;}
._10{width:15.660310pt;}
._e{width:17.061878pt;}
._19{width:22.199130pt;}
._13{width:23.452752pt;}
._12{width:24.542185pt;}
._15{width:25.438984pt;}
._14{width:26.371215pt;}
._16{width:41.343806pt;}
._17{width:42.458941pt;}
._f{width:137.069484pt;}
.fsa{font-size:37.049680pt;}
.fs3{font-size:42.798800pt;}
.fs9{font-size:45.354000pt;}
.fs7{font-size:47.909200pt;}
.fs6{font-size:50.464400pt;}
.fs8{font-size:53.019200pt;}
.fs0{font-size:58.768400pt;}
.fs1{font-size:58.880163pt;}
.fs5{font-size:61.323600pt;}
.fs2{font-size:63.878800pt;}
.fs4{font-size:74.738000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:4.000000pt;}
.y1{bottom:52.159973pt;}
.y42{bottom:82.719971pt;}
.y82{bottom:101.280029pt;}
.y41{bottom:112.640015pt;}
.y60{bottom:114.719971pt;}
.y1f{bottom:120.320007pt;}
.y40{bottom:131.039978pt;}
.y81{bottom:131.840027pt;}
.y5f{bottom:145.280029pt;}
.y3f{bottom:149.440002pt;}
.y1e{bottom:150.880005pt;}
.y80{bottom:151.520020pt;}
.y3e{bottom:167.840027pt;}
.y1d{bottom:170.559998pt;}
.y5e{bottom:175.840027pt;}
.y7f{bottom:182.239990pt;}
.y1c{bottom:190.400024pt;}
.y7e{bottom:201.919983pt;}
.y3d{bottom:204.799988pt;}
.y5d{bottom:206.559998pt;}
.y1b{bottom:210.239990pt;}
.y3c{bottom:223.200012pt;}
.y7d{bottom:232.640015pt;}
.y5c{bottom:237.119995pt;}
.y1a{bottom:240.640015pt;}
.y3b{bottom:241.599976pt;}
.y7c{bottom:252.320007pt;}
.y5b{bottom:253.280029pt;}
.y3a{bottom:260.000000pt;}
.y5a{bottom:261.280029pt;}
.y19{bottom:271.359985pt;}
.y39{bottom:278.400024pt;}
.y7b{bottom:283.039978pt;}
.y59{bottom:295.520020pt;}
.y38{bottom:296.799988pt;}
.y18{bottom:301.919983pt;}
.y58{bottom:307.679993pt;}
.y7a{bottom:313.119995pt;}
.y37{bottom:315.200012pt;}
.y17{bottom:321.599976pt;}
.y57{bottom:333.440002pt;}
.y16{bottom:341.440002pt;}
.y79{bottom:344.000000pt;}
.y36{bottom:352.320007pt;}
.y35{bottom:370.719971pt;}
.y15{bottom:372.159973pt;}
.y78{bottom:374.559998pt;}
.y56{bottom:376.960022pt;}
.y34{bottom:389.119995pt;}
.y77{bottom:394.239990pt;}
.y14{bottom:402.719971pt;}
.y33{bottom:407.520020pt;}
.y76{bottom:414.080017pt;}
.y13{bottom:422.400024pt;}
.y75{bottom:433.919983pt;}
.y55{bottom:438.080017pt;}
.y12{bottom:442.239990pt;}
.y32{bottom:446.080017pt;}
.y11{bottom:462.080017pt;}
.y74{bottom:464.640015pt;}
.y31{bottom:465.760010pt;}
.y54{bottom:468.640015pt;}
.y10{bottom:481.919983pt;}
.y73{bottom:484.320007pt;}
.y30{bottom:493.119995pt;}
.y53{bottom:499.039978pt;}
.y2f{bottom:503.840027pt;}
.y72{bottom:504.159973pt;}
.yf{bottom:512.320007pt;}
.y71{bottom:524.000000pt;}
.y52{bottom:529.599976pt;}
.ye{bottom:543.200012pt;}
.y70{bottom:543.840027pt;}
.y51{bottom:560.160004pt;}
.y2e{bottom:562.880005pt;}
.yd{bottom:569.920013pt;}
.y6f{bottom:574.239990pt;}
.y50{bottom:590.559998pt;}
.y2d{bottom:593.279999pt;}
.y2c{bottom:604.000000pt;}
.y6e{bottom:605.119995pt;}
.y4f{bottom:621.600006pt;}
.y6d{bottom:635.679993pt;}
.y2b{bottom:643.359985pt;}
.y4e{bottom:653.760010pt;}
.y6c{bottom:655.359985pt;}
.y2a{bottom:663.040009pt;}
.y4d{bottom:663.200012pt;}
.y6b{bottom:675.200012pt;}
.y8d{bottom:683.040009pt;}
.y29{bottom:693.440002pt;}
.y6a{bottom:695.040009pt;}
.yc{bottom:704.320007pt;}
.y4c{bottom:710.079987pt;}
.y8c{bottom:713.600006pt;}
.y85{bottom:719.679993pt;}
.yb{bottom:724.000000pt;}
.y28{bottom:724.160004pt;}
.y69{bottom:725.760010pt;}
.y4b{bottom:729.760010pt;}
.y8b{bottom:733.279999pt;}
.y83{bottom:735.040009pt;}
.ya{bottom:744.000000pt;}
.y68{bottom:756.160004pt;}
.y4a{bottom:760.160004pt;}
.y9{bottom:763.839996pt;}
.y8a{bottom:764.000000pt;}
.y27{bottom:774.239990pt;}
.y67{bottom:776.000000pt;}
.y8{bottom:783.679993pt;}
.y66{bottom:795.839996pt;}
.y49{bottom:797.119995pt;}
.y7{bottom:803.520004pt;}
.y26{bottom:804.800003pt;}
.y89{bottom:814.399994pt;}
.y65{bottom:815.679993pt;}
.y6{bottom:833.919998pt;}
.y88{bottom:834.080002pt;}
.y48{bottom:834.559998pt;}
.y64{bottom:835.520004pt;}
.y25{bottom:835.679993pt;}
.y47{bottom:852.960007pt;}
.y63{bottom:855.360001pt;}
.y5{bottom:864.639999pt;}
.y24{bottom:866.240005pt;}
.y46{bottom:871.360001pt;}
.y62{bottom:875.199997pt;}
.y87{bottom:884.320007pt;}
.y23{bottom:885.919998pt;}
.y45{bottom:889.759995pt;}
.y61{bottom:895.039993pt;}
.y4{bottom:895.199997pt;}
.y22{bottom:905.759995pt;}
.y44{bottom:908.000000pt;}
.y3{bottom:914.880005pt;}
.y86{bottom:915.039993pt;}
.y21{bottom:925.600006pt;}
.y2{bottom:945.279999pt;}
.y20{bottom:945.440002pt;}
.y43{bottom:945.599998pt;}
.h11{height:17.759979pt;}
.h3{height:44.602873pt;}
.h2{height:45.070735pt;}
.h4{height:46.505513pt;}
.h1{height:58.452749pt;}
.h10{height:76.602873pt;}
.hb{height:89.945233pt;}
.h9{height:91.482676pt;}
.h6{height:95.065229pt;}
.h8{height:95.065353pt;}
.hf{height:102.712542pt;}
.he{height:107.034450pt;}
.ha{height:120.090241pt;}
.h7{height:138.383112pt;}
.h5{height:138.383360pt;}
.hd{height:144.794458pt;}
.hc{height:163.994414pt;}
.h0{height:1056.000000pt;}
.w2{width:7.519958pt;}
.w1{width:20.320038pt;}
.w3{width:25.920044pt;}
.w4{width:64.000000pt;}
.w5{width:97.439942pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x4{left:120.000000pt;}
.x5{left:144.000000pt;}
.x3{left:332.000000pt;}
.xd{left:338.079987pt;}
.xb{left:344.320007pt;}
.x8{left:384.959991pt;}
.x6{left:385.920013pt;}
.xe{left:392.959991pt;}
.x7{left:415.200012pt;}
.x9{left:418.880005pt;}
.xf{left:445.119995pt;}
.xc{left:446.399994pt;}
.x10{left:477.920013pt;}
.x2{left:492.000000pt;}
.x12{left:499.519989pt;}
.x17{left:516.159973pt;}
.x13{left:519.840027pt;}
.x14{left:527.359985pt;}
.x15{left:553.280029pt;}
.xa{left:574.719971pt;}
.x16{left:617.280029pt;}
.x11{left:632.640015pt;}
}




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