
    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_1dde710ccf461de4c4083a23.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d00ebdeae5cbe2014bf1791.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_11d677dc838332645d41827a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_f29c56f8b245a2287ebc5d3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9cf61eb64d09effa460e57c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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);}
.v3{vertical-align:-47.519981px;}
.v2{vertical-align:-39.599984px;}
.v7{vertical-align:-7.919997px;}
.v5{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.359996px;}
.v4{vertical-align:57.599977px;}
.v1{vertical-align:61.199976px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.023040px;}
.ls4{letter-spacing:0.064080px;}
.ls0{letter-spacing:0.120960px;}
.ls1{letter-spacing:24.600950px;}
.ls5{letter-spacing:51.863019px;}
.ls2{letter-spacing:154.334818px;}
.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:-60.047976px;}
.wsb{word-spacing:-53.442699px;}
.ws9{word-spacing:-40.031984px;}
.ws3{word-spacing:-37.830225px;}
.wsa{word-spacing:-1.208228px;}
.ws2{word-spacing:-0.636546px;}
.ws10{word-spacing:0.000000px;}
.ws7{word-spacing:0.134263px;}
.ws4{word-spacing:0.503695px;}
.ws5{word-spacing:1.223986px;}
.ws6{word-spacing:1.712221px;}
.ws1{word-spacing:3.167999px;}
.ws0{word-spacing:9.647708px;}
.wsd{word-spacing:113.435156px;}
.wse{word-spacing:295.595359px;}
.wsc{word-spacing:1212.874502px;}
.wsf{word-spacing:5976.619493px;}
._c{margin-left:-16.141121px;}
._f{margin-left:-14.736730px;}
._d{margin-left:-10.943996px;}
._6{margin-left:-9.894469px;}
._12{margin-left:-8.639161px;}
._10{margin-left:-7.298427px;}
._5{margin-left:-2.986679px;}
._2{margin-left:-1.008140px;}
._0{width:1.007997px;}
._11{width:2.304140px;}
._8{width:36.226673px;}
._7{width:37.270852px;}
._a{width:38.489141px;}
._9{width:39.901536px;}
._b{width:51.455411px;}
._e{width:53.499883px;}
._3{width:73.007407px;}
._4{width:81.791539px;}
._1{width:91.292324px;}
.fc3{color:rgb(0,51,101);}
.fc2{color:rgb(0,51,101);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,45,84);}
.fs4{font-size:87.839965px;}
.fs1{font-size:120.239952px;}
.fsa{font-size:125.999950px;}
.fsb{font-size:128.159949px;}
.fs5{font-size:131.759947px;}
.fs7{font-size:134.639946px;}
.fs3{font-size:136.079946px;}
.fs9{font-size:143.999942px;}
.fs8{font-size:192.239923px;}
.fs2{font-size:203.759918px;}
.fs6{font-size:215.999914px;}
.fs0{font-size:287.999885px;}
.y0{bottom:0.000000px;}
.y12{bottom:211.919915px;}
.y11{bottom:249.719900px;}
.y10{bottom:437.279825px;}
.yf{bottom:480.479808px;}
.ye{bottom:558.059777px;}
.y17{bottom:586.499765px;}
.yd{bottom:615.659754px;}
.y16{bottom:644.099742px;}
.yc{bottom:684.779726px;}
.y15{bottom:713.219715px;}
.yb{bottom:742.379703px;}
.y14{bottom:782.339687px;}
.ya{bottom:799.979680px;}
.y13{bottom:852.719659px;}
.y9{bottom:870.359652px;}
.y84{bottom:1055.939578px;}
.y87{bottom:1073.039571px;}
.y83{bottom:1099.139560px;}
.y65{bottom:1102.919559px;}
.y86{bottom:1116.239554px;}
.y50{bottom:1141.799543px;}
.y82{bottom:1142.339543px;}
.y85{bottom:1159.439536px;}
.y6f{bottom:1161.419535px;}
.y4f{bottom:1199.399520px;}
.y63{bottom:1216.859513px;}
.y4e{bottom:1256.999497px;}
.y72{bottom:1283.819486px;}
.y75{bottom:1284.719486px;}
.y6e{bottom:1293.359483px;}
.y4d{bottom:1314.599474px;}
.y6d{bottom:1350.959460px;}
.y67{bottom:1366.619453px;}
.y4c{bottom:1372.199451px;}
.y89{bottom:1413.599435px;}
.y66{bottom:1424.219430px;}
.y74{bottom:1428.719429px;}
.y4b{bottom:1429.799428px;}
.y88{bottom:1456.799417px;}
.y4a{bottom:1487.399405px;}
.y77{bottom:1543.919382px;}
.y49{bottom:1544.999382px;}
.y71{bottom:1553.639379px;}
.y48{bottom:1602.599359px;}
.y68{bottom:1608.539357px;}
.y6a{bottom:1654.799338px;}
.y47{bottom:1660.199336px;}
.y6c{bottom:1673.699331px;}
.y73{bottom:1687.379325px;}
.y46{bottom:1717.799313px;}
.y6b{bottom:1731.299307px;}
.y70{bottom:1810.859276px;}
.y62{bottom:1818.059273px;}
.y64{bottom:1818.419273px;}
.y69{bottom:1824.359270px;}
.y45{bottom:1854.419258px;}
.y76{bottom:1953.059219px;}
.y78{bottom:1954.139218px;}
.y44{bottom:2133.239147px;}
.y5b{bottom:2156.279137px;}
.y35{bottom:2181.119128px;}
.y43{bottom:2190.839124px;}
.y54{bottom:2201.279119px;}
.y81{bottom:2222.879111px;}
.y34{bottom:2238.719105px;}
.y42{bottom:2248.439101px;}
.y61{bottom:2263.199095px;}
.y80{bottom:2266.079094px;}
.y33{bottom:2296.319081px;}
.y41{bottom:2306.039078px;}
.y7f{bottom:2309.279076px;}
.y57{bottom:2334.119066px;}
.y32{bottom:2353.919058px;}
.y40{bottom:2363.639055px;}
.y5f{bottom:2381.639047px;}
.y31{bottom:2411.519035px;}
.y3f{bottom:2421.239032px;}
.y7b{bottom:2428.079029px;}
.y5e{bottom:2439.239024px;}
.y7e{bottom:2445.179022px;}
.y53{bottom:2449.139020px;}
.y30{bottom:2469.119012px;}
.y7a{bottom:2471.279011px;}
.y3e{bottom:2478.839008px;}
.y7d{bottom:2488.379005px;}
.y79{bottom:2514.478994px;}
.y2f{bottom:2526.718989px;}
.y7c{bottom:2531.578987px;}
.y3d{bottom:2536.438985px;}
.y60{bottom:2544.178982px;}
.y56{bottom:2582.518967px;}
.y2e{bottom:2584.318966px;}
.y3c{bottom:2594.038962px;}
.y2d{bottom:2641.918943px;}
.y3b{bottom:2651.638939px;}
.y5a{bottom:2664.238934px;}
.y2c{bottom:2699.518920px;}
.y52{bottom:2705.098918px;}
.y3a{bottom:2709.238916px;}
.y5d{bottom:2715.898914px;}
.y59{bottom:2721.838911px;}
.y2b{bottom:2757.118897px;}
.y39{bottom:2766.838893px;}
.y2a{bottom:2814.718874px;}
.y38{bottom:2824.438870px;}
.y55{bottom:2829.298868px;}
.y5c{bottom:2853.058859px;}
.y29{bottom:2872.318851px;}
.y37{bottom:2882.038847px;}
.y51{bottom:2962.318815px;}
.y58{bottom:2969.338812px;}
.y28{bottom:3008.938796px;}
.y36{bottom:3018.658793px;}
.y8a{bottom:3091.018764px;}
.y27{bottom:3254.458698px;}
.y26{bottom:3312.058675px;}
.y25{bottom:3369.658652px;}
.y24{bottom:3427.258629px;}
.y23{bottom:3484.858606px;}
.y22{bottom:3542.458583px;}
.y21{bottom:3601.318559px;}
.y8{bottom:3753.418499px;}
.y20{bottom:3805.078478px;}
.y4{bottom:3827.578469px;}
.y1f{bottom:3862.678455px;}
.y3{bottom:3870.778452px;}
.y1e{bottom:3920.278432px;}
.y1d{bottom:3990.658404px;}
.y1c{bottom:4117.558353px;}
.y1b{bottom:4175.158330px;}
.y1a{bottom:4232.758307px;}
.y19{bottom:4290.358284px;}
.y18{bottom:4349.218260px;}
.y7{bottom:4531.378187px;}
.y6{bottom:4570.978172px;}
.y5{bottom:4604.638158px;}
.y2{bottom:4705.798118px;}
.y1{bottom:4792.198083px;}
.h4{height:64.035678px;}
.h2{height:87.596684px;}
.h9{height:91.792932px;}
.h7{height:104.835896px;}
.hf{height:104.906208px;}
.h8{height:104.976521px;}
.he{height:139.955921px;}
.h6{height:140.049788px;}
.hb{height:140.143655px;}
.hd{height:149.503651px;}
.ha{height:150.966502px;}
.h5{height:157.253843px;}
.hc{height:157.359312px;}
.h3{height:160.402787px;}
.h1{height:209.671791px;}
.h0{height:5055.000000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:91.979963px;}
.x4{left:110.879956px;}
.x5{left:164.879934px;}
.x12{left:819.899672px;}
.x1{left:821.519671px;}
.xf{left:891.359643px;}
.xe{left:892.619643px;}
.x11{left:946.979621px;}
.x22{left:951.839619px;}
.x1d{left:982.079607px;}
.xc{left:1009.259596px;}
.x1c{left:1087.379565px;}
.x10{left:1098.539561px;}
.x3b{left:1111.859555px;}
.xd{left:1123.739551px;}
.x3a{left:1216.079514px;}
.x34{left:1274.939490px;}
.x28{left:1486.979405px;}
.x7{left:1493.099403px;}
.x23{left:1523.519391px;}
.x26{left:1542.779383px;}
.x27{left:1544.399382px;}
.x2{left:1591.559363px;}
.x25{left:1604.159358px;}
.x2f{left:1626.659349px;}
.xa{left:1835.999266px;}
.xb{left:1889.999244px;}
.x8{left:1904.039238px;}
.x9{left:1958.039217px;}
.x20{left:1959.299216px;}
.x1f{left:1991.699203px;}
.x1e{left:2014.199194px;}
.x24{left:2057.219177px;}
.x21{left:2063.159175px;}
.x3{left:2423.519031px;}
.x30{left:2534.038986px;}
.x14{left:2547.868981px;}
.x15{left:2599.552360px;}
.x2a{left:2625.298950px;}
.x13{left:2690.098924px;}
.x39{left:2712.058915px;}
.x38{left:2753.098899px;}
.x2c{left:2775.958890px;}
.x2b{left:2801.878879px;}
.x1b{left:2841.478863px;}
.x19{left:2842.558863px;}
.x17{left:2852.098859px;}
.x29{left:2860.918856px;}
.x18{left:2870.998852px;}
.x16{left:2877.478849px;}
.x2e{left:2893.318843px;}
.x35{left:3104.998758px;}
.x36{left:3127.138749px;}
.x37{left:3145.138742px;}
.x2d{left:3156.118738px;}
.x32{left:3167.458733px;}
.x33{left:3170.518732px;}
.x31{left:3188.518725px;}
.x1a{left:3247.738701px;}
@media print{
.v3{vertical-align:-42.239983pt;}
.v2{vertical-align:-35.199986pt;}
.v7{vertical-align:-7.039997pt;}
.v5{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.319997pt;}
.v4{vertical-align:51.199980pt;}
.v1{vertical-align:54.399978pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.020480pt;}
.ls4{letter-spacing:0.056960pt;}
.ls0{letter-spacing:0.107520pt;}
.ls1{letter-spacing:21.867511pt;}
.ls5{letter-spacing:46.100462pt;}
.ls2{letter-spacing:137.186505pt;}
.ws8{word-spacing:-53.375979pt;}
.wsb{word-spacing:-47.504621pt;}
.ws9{word-spacing:-35.583986pt;}
.ws3{word-spacing:-33.626867pt;}
.wsa{word-spacing:-1.073980pt;}
.ws2{word-spacing:-0.565819pt;}
.ws10{word-spacing:0.000000pt;}
.ws7{word-spacing:0.119345pt;}
.ws4{word-spacing:0.447728pt;}
.ws5{word-spacing:1.087987pt;}
.ws6{word-spacing:1.521974pt;}
.ws1{word-spacing:2.815999pt;}
.ws0{word-spacing:8.575741pt;}
.wsd{word-spacing:100.831250pt;}
.wse{word-spacing:262.751430pt;}
.wsc{word-spacing:1078.110669pt;}
.wsf{word-spacing:5312.550660pt;}
._c{margin-left:-14.347663pt;}
._f{margin-left:-13.099316pt;}
._d{margin-left:-9.727996pt;}
._6{margin-left:-8.795084pt;}
._12{margin-left:-7.679255pt;}
._10{margin-left:-6.487491pt;}
._5{margin-left:-2.654826pt;}
._2{margin-left:-0.896125pt;}
._0{width:0.895998pt;}
._11{width:2.048124pt;}
._8{width:32.201487pt;}
._7{width:33.129646pt;}
._a{width:34.212570pt;}
._9{width:35.468032pt;}
._b{width:45.738143pt;}
._e{width:47.555452pt;}
._3{width:64.895473pt;}
._4{width:72.703590pt;}
._1{width:81.148732pt;}
.fs4{font-size:78.079969pt;}
.fs1{font-size:106.879957pt;}
.fsa{font-size:111.999955pt;}
.fsb{font-size:113.919954pt;}
.fs5{font-size:117.119953pt;}
.fs7{font-size:119.679952pt;}
.fs3{font-size:120.959952pt;}
.fs9{font-size:127.999949pt;}
.fs8{font-size:170.879932pt;}
.fs2{font-size:181.119928pt;}
.fs6{font-size:191.999923pt;}
.fs0{font-size:255.999898pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:188.373258pt;}
.y11{bottom:221.973245pt;}
.y10{bottom:388.693178pt;}
.yf{bottom:427.093162pt;}
.ye{bottom:496.053135pt;}
.y17{bottom:521.333125pt;}
.yd{bottom:547.253114pt;}
.y16{bottom:572.533104pt;}
.yc{bottom:608.693090pt;}
.y15{bottom:633.973080pt;}
.yb{bottom:659.893069pt;}
.y14{bottom:695.413055pt;}
.ya{bottom:711.093049pt;}
.y13{bottom:757.973030pt;}
.y9{bottom:773.653024pt;}
.y84{bottom:938.612958pt;}
.y87{bottom:953.812952pt;}
.y83{bottom:977.012943pt;}
.y65{bottom:980.372941pt;}
.y86{bottom:992.212936pt;}
.y50{bottom:1014.932927pt;}
.y82{bottom:1015.412927pt;}
.y85{bottom:1030.612921pt;}
.y6f{bottom:1032.372920pt;}
.y4f{bottom:1066.132907pt;}
.y63{bottom:1081.652901pt;}
.y4e{bottom:1117.332886pt;}
.y72{bottom:1141.172877pt;}
.y75{bottom:1141.972877pt;}
.y6e{bottom:1149.652873pt;}
.y4d{bottom:1168.532866pt;}
.y6d{bottom:1200.852853pt;}
.y67{bottom:1214.772847pt;}
.y4c{bottom:1219.732845pt;}
.y89{bottom:1256.532831pt;}
.y66{bottom:1265.972827pt;}
.y74{bottom:1269.972825pt;}
.y4b{bottom:1270.932825pt;}
.y88{bottom:1294.932815pt;}
.y4a{bottom:1322.132804pt;}
.y77{bottom:1372.372784pt;}
.y49{bottom:1373.332784pt;}
.y71{bottom:1381.012781pt;}
.y48{bottom:1424.532764pt;}
.y68{bottom:1429.812761pt;}
.y6a{bottom:1470.932745pt;}
.y47{bottom:1475.732743pt;}
.y6c{bottom:1487.732738pt;}
.y73{bottom:1499.892733pt;}
.y46{bottom:1526.932723pt;}
.y6b{bottom:1538.932718pt;}
.y70{bottom:1609.652689pt;}
.y62{bottom:1616.052687pt;}
.y64{bottom:1616.372687pt;}
.y69{bottom:1621.652685pt;}
.y45{bottom:1648.372674pt;}
.y76{bottom:1736.052639pt;}
.y78{bottom:1737.012639pt;}
.y44{bottom:1896.212575pt;}
.y5b{bottom:1916.692567pt;}
.y35{bottom:1938.772558pt;}
.y43{bottom:1947.412554pt;}
.y54{bottom:1956.692551pt;}
.y81{bottom:1975.892543pt;}
.y34{bottom:1989.972537pt;}
.y42{bottom:1998.612534pt;}
.y61{bottom:2011.732529pt;}
.y80{bottom:2014.292528pt;}
.y33{bottom:2041.172517pt;}
.y41{bottom:2049.812513pt;}
.y7f{bottom:2052.692512pt;}
.y57{bottom:2074.772503pt;}
.y32{bottom:2092.372496pt;}
.y40{bottom:2101.012493pt;}
.y5f{bottom:2117.012487pt;}
.y31{bottom:2143.572476pt;}
.y3f{bottom:2152.212472pt;}
.y7b{bottom:2158.292470pt;}
.y5e{bottom:2168.212466pt;}
.y7e{bottom:2173.492464pt;}
.y53{bottom:2177.012463pt;}
.y30{bottom:2194.772455pt;}
.y7a{bottom:2196.692455pt;}
.y3e{bottom:2203.412452pt;}
.y7d{bottom:2211.892449pt;}
.y79{bottom:2235.092439pt;}
.y2f{bottom:2245.972435pt;}
.y7c{bottom:2250.292433pt;}
.y3d{bottom:2254.612431pt;}
.y60{bottom:2261.492429pt;}
.y56{bottom:2295.572415pt;}
.y2e{bottom:2297.172414pt;}
.y3c{bottom:2305.812411pt;}
.y2d{bottom:2348.372394pt;}
.y3b{bottom:2357.012391pt;}
.y5a{bottom:2368.212386pt;}
.y2c{bottom:2399.572374pt;}
.y52{bottom:2404.532372pt;}
.y3a{bottom:2408.212370pt;}
.y5d{bottom:2414.132368pt;}
.y59{bottom:2419.412366pt;}
.y2b{bottom:2450.772353pt;}
.y39{bottom:2459.412350pt;}
.y2a{bottom:2501.972333pt;}
.y38{bottom:2510.612329pt;}
.y55{bottom:2514.932327pt;}
.y5c{bottom:2536.052319pt;}
.y29{bottom:2553.172312pt;}
.y37{bottom:2561.812309pt;}
.y51{bottom:2633.172280pt;}
.y58{bottom:2639.412278pt;}
.y28{bottom:2674.612263pt;}
.y36{bottom:2683.252260pt;}
.y8a{bottom:2747.572234pt;}
.y27{bottom:2892.852176pt;}
.y26{bottom:2944.052156pt;}
.y25{bottom:2995.252135pt;}
.y24{bottom:3046.452115pt;}
.y23{bottom:3097.652094pt;}
.y22{bottom:3148.852074pt;}
.y21{bottom:3201.172053pt;}
.y8{bottom:3336.371999pt;}
.y20{bottom:3382.291980pt;}
.y4{bottom:3402.291972pt;}
.y1f{bottom:3433.491960pt;}
.y3{bottom:3440.691957pt;}
.y1e{bottom:3484.691939pt;}
.y1d{bottom:3547.251914pt;}
.y1c{bottom:3660.051869pt;}
.y1b{bottom:3711.251849pt;}
.y1a{bottom:3762.451828pt;}
.y19{bottom:3813.651808pt;}
.y18{bottom:3865.971787pt;}
.y7{bottom:4027.891722pt;}
.y6{bottom:4063.091708pt;}
.y5{bottom:4093.011696pt;}
.y2{bottom:4182.931660pt;}
.y1{bottom:4259.731629pt;}
.h4{height:56.920602pt;}
.h2{height:77.863719pt;}
.h9{height:81.593717pt;}
.h7{height:93.187463pt;}
.hf{height:93.249963pt;}
.h8{height:93.312463pt;}
.he{height:124.405263pt;}
.h6{height:124.488700pt;}
.hb{height:124.572138pt;}
.hd{height:132.892134pt;}
.ha{height:134.192446pt;}
.h5{height:139.781194pt;}
.hc{height:139.874944pt;}
.h3{height:142.580255pt;}
.h1{height:186.374925pt;}
.h0{height:4493.333333pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:81.759967pt;}
.x4{left:98.559961pt;}
.x5{left:146.559941pt;}
.x12{left:728.799708pt;}
.x1{left:730.239708pt;}
.xf{left:792.319683pt;}
.xe{left:793.439683pt;}
.x11{left:841.759663pt;}
.x22{left:846.079662pt;}
.x1d{left:872.959651pt;}
.xc{left:897.119641pt;}
.x1c{left:966.559613pt;}
.x10{left:976.479609pt;}
.x3b{left:988.319605pt;}
.xd{left:998.879600pt;}
.x3a{left:1080.959568pt;}
.x34{left:1133.279547pt;}
.x28{left:1321.759471pt;}
.x7{left:1327.199469pt;}
.x23{left:1354.239458pt;}
.x26{left:1371.359451pt;}
.x27{left:1372.799451pt;}
.x2{left:1414.719434pt;}
.x25{left:1425.919430pt;}
.x2f{left:1445.919422pt;}
.xa{left:1631.999347pt;}
.xb{left:1679.999328pt;}
.x8{left:1692.479323pt;}
.x9{left:1740.479304pt;}
.x20{left:1741.599303pt;}
.x1f{left:1770.399292pt;}
.x1e{left:1790.399284pt;}
.x24{left:1828.639269pt;}
.x21{left:1833.919266pt;}
.x3{left:2154.239138pt;}
.x30{left:2252.479099pt;}
.x14{left:2264.772427pt;}
.x15{left:2310.713209pt;}
.x2a{left:2333.599067pt;}
.x13{left:2391.199044pt;}
.x39{left:2410.719036pt;}
.x38{left:2447.199021pt;}
.x2c{left:2467.519013pt;}
.x2b{left:2490.559004pt;}
.x1b{left:2525.758990pt;}
.x19{left:2526.718989pt;}
.x17{left:2535.198986pt;}
.x29{left:2543.038983pt;}
.x18{left:2551.998979pt;}
.x16{left:2557.758977pt;}
.x2e{left:2571.838971pt;}
.x35{left:2759.998896pt;}
.x36{left:2779.678888pt;}
.x37{left:2795.678882pt;}
.x2d{left:2805.438878pt;}
.x32{left:2815.518874pt;}
.x33{left:2818.238873pt;}
.x31{left:2834.238866pt;}
.x1a{left:2886.878845pt;}
}




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