
    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_f8fb7c8009296fdeb0b4ba45.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_19f6ea548c7842e3bf854191.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693359;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_7fa8e835b21874c92d40fc24.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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;}
.m5{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m6{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,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);}
.m2{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);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-26.640021px;}
.v3{vertical-align:-19.440016px;}
.v2{vertical-align:-15.840013px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.271859px;}
.ls2{letter-spacing:0.378514px;}
.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:-21.060017px;}
.ws0{word-spacing:-18.000014px;}
.ws6{word-spacing:-16.560013px;}
.ws5{word-spacing:-15.318526px;}
.ws4{word-spacing:-14.940012px;}
.ws3{word-spacing:-12.060010px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-2.281365px;}
._1{margin-left:-1.241473px;}
._0{width:1.210594px;}
._7{width:3.113008px;}
._d{width:4.922783px;}
._3{width:6.678935px;}
._4{width:7.696173px;}
._9{width:9.116602px;}
._a{width:10.207482px;}
._8{width:11.635731px;}
._5{width:12.909219px;}
._6{width:14.078569px;}
._b{width:15.658846px;}
._c{width:16.775938px;}
._2{width:19.198470px;}
._11{width:20.233054px;}
._12{width:21.272688px;}
._e{width:22.542278px;}
._f{width:23.790438px;}
._15{width:47.359725px;}
._16{width:56.725323px;}
._14{width:62.488758px;}
._17{width:177.867805px;}
._1a{width:188.574151px;}
._13{width:228.964382px;}
._19{width:247.549968px;}
._1d{width:300.624240px;}
._1b{width:320.543474px;}
._18{width:393.522305px;}
._20{width:490.974772px;}
._1f{width:1098.997053px;}
._1c{width:1191.407542px;}
._1e{width:1381.812385px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760005px;}
.fs4{font-size:48.240039px;}
.fs3{font-size:54.000043px;}
.fs5{font-size:59.760048px;}
.fs7{font-size:66.240053px;}
.fs0{font-size:72.000058px;}
.fs2{font-size:84.240067px;}
.fs1{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.y76{bottom:0.359509px;}
.y7b{bottom:3.599496px;}
.y7e{bottom:3.599497px;}
.y74{bottom:3.599518px;}
.y71{bottom:3.599542px;}
.y6e{bottom:3.599565px;}
.y6a{bottom:3.599586px;}
.y62{bottom:3.599607px;}
.y5e{bottom:3.599629px;}
.y31{bottom:58.801547px;}
.y30{bottom:82.561566px;}
.y2f{bottom:106.321585px;}
.ya5{bottom:107.401586px;}
.y56{bottom:111.001589px;}
.ya4{bottom:126.301601px;}
.y2e{bottom:130.081604px;}
.y55{bottom:134.941608px;}
.y2d{bottom:153.841623px;}
.ya3{bottom:154.381624px;}
.y54{bottom:158.701627px;}
.ya2{bottom:173.281639px;}
.y2c{bottom:178.681643px;}
.y53{bottom:182.461646px;}
.ya1{bottom:201.181661px;}
.y52{bottom:206.221665px;}
.y2b{bottom:214.501672px;}
.ya0{bottom:220.261676px;}
.y51{bottom:230.161684px;}
.y2a{bottom:238.261691px;}
.y9f{bottom:248.161699px;}
.y29{bottom:262.021710px;}
.y50{bottom:262.921710px;}
.y9e{bottom:267.241714px;}
.y28{bottom:285.961729px;}
.y4f{bottom:286.681729px;}
.y9d{bottom:295.141736px;}
.y27{bottom:309.721748px;}
.y4e{bottom:310.441748px;}
.y9c{bottom:314.221751px;}
.y26{bottom:333.481767px;}
.y9b{bottom:342.121774px;}
.y4c{bottom:343.381775px;}
.y4d{bottom:351.661781px;}
.y25{bottom:357.241786px;}
.y9a{bottom:361.021789px;}
.y4b{bottom:367.141794px;}
.y99{bottom:380.101804px;}
.y24{bottom:381.181805px;}
.y4a{bottom:390.901813px;}
.y23{bottom:404.941824px;}
.y98{bottom:408.001826px;}
.y49{bottom:423.661839px;}
.y97{bottom:427.081842px;}
.y22{bottom:437.701850px;}
.y96{bottom:445.981857px;}
.y48{bottom:447.601858px;}
.y21{bottom:461.461869px;}
.y47{bottom:464.341871px;}
.y46{bottom:466.141873px;}
.y45{bottom:467.761874px;}
.y44{bottom:469.561876px;}
.y43{bottom:471.361877px;}
.y95{bottom:473.881879px;}
.y20{bottom:485.401888px;}
.y7a{bottom:490.802400px;}
.y7d{bottom:492.242400px;}
.y94{bottom:492.961894px;}
.y79{bottom:494.401896px;}
.y7c{bottom:495.841897px;}
.y78{bottom:508.261907px;}
.y1f{bottom:509.161907px;}
.y77{bottom:510.061908px;}
.y75{bottom:511.502400px;}
.y73{bottom:519.062400px;}
.y93{bottom:521.581917px;}
.y72{bottom:522.661918px;}
.y1e{bottom:532.921926px;}
.y68{bottom:543.721935px;}
.y70{bottom:548.762400px;}
.y6f{bottom:552.361942px;}
.y1d{bottom:556.681945px;}
.y92{bottom:557.401946px;}
.y67{bottom:560.821949px;}
.y6d{bottom:577.202400px;}
.y66{bottom:578.101962px;}
.y6c{bottom:580.801965px;}
.y91{bottom:581.161965px;}
.y1c{bottom:581.521965px;}
.y65{bottom:595.381976px;}
.y69{bottom:604.202400px;}
.y6b{bottom:607.801986px;}
.y90{bottom:611.401989px;}
.y64{bottom:612.661990px;}
.y1b{bottom:618.241995px;}
.y61{bottom:630.122400px;}
.y63{bottom:633.722007px;}
.y60{bottom:637.682010px;}
.y8f{bottom:647.222018px;}
.y1a{bottom:651.182021px;}
.y5d{bottom:658.022400px;}
.y5f{bottom:661.622029px;}
.y5c{bottom:668.282035px;}
.y8e{bottom:670.982037px;}
.y19{bottom:680.882045px;}
.y59{bottom:691.322053px;}
.y5b{bottom:692.042054px;}
.y8d{bottom:694.742056px;}
.y18{bottom:701.582061px;}
.y57{bottom:708.602067px;}
.y8c{bottom:718.682075px;}
.y17{bottom:722.282078px;}
.y5a{bottom:724.082079px;}
.y58{bottom:725.882081px;}
.y8b{bottom:742.442094px;}
.y16{bottom:742.982094px;}
.y42{bottom:751.802101px;}
.y15{bottom:763.682111px;}
.y8a{bottom:766.202113px;}
.y41{bottom:769.082115px;}
.y14{bottom:784.382128px;}
.y89{bottom:789.962132px;}
.y40{bottom:798.962139px;}
.y13{bottom:805.082144px;}
.y88{bottom:813.722151px;}
.y3f{bottom:822.722158px;}
.y12{bottom:825.782161px;}
.y87{bottom:837.662170px;}
.y11{bottom:846.482177px;}
.y3e{bottom:846.662177px;}
.y86{bottom:861.422189px;}
.y10{bottom:867.182194px;}
.y3d{bottom:870.422196px;}
.y85{bottom:885.182208px;}
.yf{bottom:887.882210px;}
.y3c{bottom:900.482220px;}
.ye{bottom:908.582227px;}
.y84{bottom:908.942227px;}
.yd{bottom:929.282243px;}
.y83{bottom:932.882246px;}
.y3b{bottom:936.302249px;}
.yc{bottom:949.982260px;}
.y3a{bottom:960.242268px;}
.y82{bottom:962.942270px;}
.yb{bottom:970.682277px;}
.y39{bottom:984.002287px;}
.ya{bottom:991.382293px;}
.y81{bottom:998.762299px;}
.y38{bottom:1007.762306px;}
.y9{bottom:1012.082310px;}
.y80{bottom:1022.522318px;}
.y37{bottom:1031.522325px;}
.y8{bottom:1032.782326px;}
.y7{bottom:1041.062333px;}
.y7f{bottom:1046.462337px;}
.y5{bottom:1054.022343px;}
.y36{bottom:1055.462344px;}
.y6{bottom:1063.742351px;}
.y35{bottom:1079.222363px;}
.y4{bottom:1087.322370px;}
.y34{bottom:1102.982382px;}
.y3{bottom:1115.042392px;}
.y33{bottom:1126.742401px;}
.y32{bottom:1150.682421px;}
.y2{bottom:1150.862421px;}
.y1{bottom:1167.062434px;}
.hc{height:1.620000px;}
.ha{height:4.002191px;}
.hb{height:16.920000px;}
.h5{height:33.518347px;}
.h9{height:41.522729px;}
.hf{height:46.025193px;}
.h4{height:47.513710px;}
.h8{height:48.796914px;}
.h1{height:50.027384px;}
.h7{height:57.092389px;}
.he{height:58.283484px;}
.hd{height:58.532039px;}
.h6{height:63.351613px;}
.h2{height:64.899896px;}
.h3{height:74.121387px;}
.h0{height:1263.000000px;}
.w3{width:0.720000px;}
.w2{width:5.040000px;}
.w1{width:5.220000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:54.180043px;}
.x15{left:59.400048px;}
.x3{left:69.300055px;}
.x5{left:71.640057px;}
.x2b{left:96.652364px;}
.x16{left:117.720114px;}
.x13{left:120.060096px;}
.x14{left:129.600104px;}
.xc{left:144.360115px;}
.xd{left:150.480120px;}
.x11{left:161.460129px;}
.x12{left:179.100143px;}
.x4{left:204.300507px;}
.x24{left:219.780176px;}
.x10{left:222.300178px;}
.x6{left:286.920230px;}
.x7{left:293.749735px;}
.x17{left:329.221042px;}
.xf{left:446.580357px;}
.x27{left:522.180418px;}
.x26{left:553.860000px;}
.x19{left:570.420456px;}
.x18{left:589.861619px;}
.x8{left:595.080476px;}
.x9{left:601.740481px;}
.x28{left:609.480488px;}
.x1a{left:624.420000px;}
.x1b{left:673.380539px;}
.x21{left:680.760545px;}
.x1c{left:688.320000px;}
.x1d{left:725.580580px;}
.x29{left:729.360583px;}
.x22{left:733.140587px;}
.xe{left:748.980599px;}
.x1e{left:751.860000px;}
.x1f{left:793.440635px;}
.x2a{left:797.220638px;}
.x23{left:801.000641px;}
.x25{left:812.160650px;}
.xa{left:814.680652px;}
.x20{left:819.720000px;}
.xb{left:821.520657px;}
.x1{left:839.160671px;}
@media print{
.v1{vertical-align:-23.680019pt;}
.v3{vertical-align:-17.280014pt;}
.v2{vertical-align:-14.080011pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.241653pt;}
.ls2{letter-spacing:0.336457pt;}
.ws1{word-spacing:-18.720015pt;}
.ws0{word-spacing:-16.000013pt;}
.ws6{word-spacing:-14.720012pt;}
.ws5{word-spacing:-13.616468pt;}
.ws4{word-spacing:-13.280011pt;}
.ws3{word-spacing:-10.720009pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-2.027880pt;}
._1{margin-left:-1.103532pt;}
._0{width:1.076084pt;}
._7{width:2.767118pt;}
._d{width:4.375807pt;}
._3{width:5.936831pt;}
._4{width:6.841043pt;}
._9{width:8.103646pt;}
._a{width:9.073318pt;}
._8{width:10.342872pt;}
._5{width:11.474862pt;}
._6{width:12.514284pt;}
._b{width:13.918974pt;}
._c{width:14.911945pt;}
._2{width:17.065307pt;}
._11{width:17.984936pt;}
._12{width:18.909056pt;}
._e{width:20.037580pt;}
._f{width:21.147056pt;}
._15{width:42.097533pt;}
._16{width:50.422509pt;}
._14{width:55.545563pt;}
._17{width:158.104715pt;}
._1a{width:167.621467pt;}
._13{width:203.523895pt;}
._19{width:220.044416pt;}
._1d{width:267.221547pt;}
._1b{width:284.927533pt;}
._18{width:349.797605pt;}
._20{width:436.422019pt;}
._1f{width:976.886269pt;}
._1c{width:1059.028927pt;}
._1e{width:1228.277676pt;}
.fs6{font-size:5.120004pt;}
.fs4{font-size:42.880034pt;}
.fs3{font-size:48.000038pt;}
.fs5{font-size:53.120042pt;}
.fs7{font-size:58.880047pt;}
.fs0{font-size:64.000051pt;}
.fs2{font-size:74.880060pt;}
.fs1{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:0.319564pt;}
.y7b{bottom:3.199552pt;}
.y7e{bottom:3.199553pt;}
.y74{bottom:3.199572pt;}
.y71{bottom:3.199593pt;}
.y6e{bottom:3.199613pt;}
.y6a{bottom:3.199632pt;}
.y62{bottom:3.199651pt;}
.y5e{bottom:3.199670pt;}
.y31{bottom:52.268042pt;}
.y30{bottom:73.388059pt;}
.y2f{bottom:94.508076pt;}
.ya5{bottom:95.468076pt;}
.y56{bottom:98.668079pt;}
.ya4{bottom:112.268090pt;}
.y2e{bottom:115.628093pt;}
.y55{bottom:119.948096pt;}
.y2d{bottom:136.748109pt;}
.ya3{bottom:137.228110pt;}
.y54{bottom:141.068113pt;}
.ya2{bottom:154.028123pt;}
.y2c{bottom:158.828127pt;}
.y53{bottom:162.188130pt;}
.ya1{bottom:178.828143pt;}
.y52{bottom:183.308147pt;}
.y2b{bottom:190.668153pt;}
.ya0{bottom:195.788157pt;}
.y51{bottom:204.588164pt;}
.y2a{bottom:211.788169pt;}
.y9f{bottom:220.588176pt;}
.y29{bottom:232.908186pt;}
.y50{bottom:233.708187pt;}
.y9e{bottom:237.548190pt;}
.y28{bottom:254.188203pt;}
.y4f{bottom:254.828204pt;}
.y9d{bottom:262.348210pt;}
.y27{bottom:275.308220pt;}
.y4e{bottom:275.948221pt;}
.y9c{bottom:279.308223pt;}
.y26{bottom:296.428237pt;}
.y9b{bottom:304.108243pt;}
.y4c{bottom:305.228244pt;}
.y4d{bottom:312.588250pt;}
.y25{bottom:317.548254pt;}
.y9a{bottom:320.908257pt;}
.y4b{bottom:326.348261pt;}
.y99{bottom:337.868270pt;}
.y24{bottom:338.828271pt;}
.y4a{bottom:347.468278pt;}
.y23{bottom:359.948288pt;}
.y98{bottom:362.668290pt;}
.y49{bottom:376.588301pt;}
.y97{bottom:379.628304pt;}
.y22{bottom:389.068311pt;}
.y96{bottom:396.428317pt;}
.y48{bottom:397.868318pt;}
.y21{bottom:410.188328pt;}
.y47{bottom:412.748330pt;}
.y46{bottom:414.348331pt;}
.y45{bottom:415.788333pt;}
.y44{bottom:417.388334pt;}
.y43{bottom:418.988335pt;}
.y95{bottom:421.228337pt;}
.y20{bottom:431.468345pt;}
.y7a{bottom:436.268800pt;}
.y7d{bottom:437.548800pt;}
.y94{bottom:438.188351pt;}
.y79{bottom:439.468352pt;}
.y7c{bottom:440.748353pt;}
.y78{bottom:451.788361pt;}
.y1f{bottom:452.588362pt;}
.y77{bottom:453.388363pt;}
.y75{bottom:454.668800pt;}
.y73{bottom:461.388800pt;}
.y93{bottom:463.628371pt;}
.y72{bottom:464.588372pt;}
.y1e{bottom:473.708379pt;}
.y68{bottom:483.308387pt;}
.y70{bottom:487.788800pt;}
.y6f{bottom:490.988393pt;}
.y1d{bottom:494.828396pt;}
.y92{bottom:495.468396pt;}
.y67{bottom:498.508399pt;}
.y6d{bottom:513.068800pt;}
.y66{bottom:513.868411pt;}
.y6c{bottom:516.268413pt;}
.y91{bottom:516.588413pt;}
.y1c{bottom:516.908414pt;}
.y65{bottom:529.228423pt;}
.y69{bottom:537.068800pt;}
.y6b{bottom:540.268432pt;}
.y90{bottom:543.468435pt;}
.y64{bottom:544.588436pt;}
.y1b{bottom:549.548440pt;}
.y61{bottom:560.108800pt;}
.y63{bottom:563.308451pt;}
.y60{bottom:566.828453pt;}
.y8f{bottom:575.308460pt;}
.y1a{bottom:578.828463pt;}
.y5d{bottom:584.908800pt;}
.y5f{bottom:588.108470pt;}
.y5c{bottom:594.028475pt;}
.y8e{bottom:596.428477pt;}
.y19{bottom:605.228484pt;}
.y59{bottom:614.508492pt;}
.y5b{bottom:615.148492pt;}
.y8d{bottom:617.548494pt;}
.y18{bottom:623.628499pt;}
.y57{bottom:629.868504pt;}
.y8c{bottom:638.828511pt;}
.y17{bottom:642.028514pt;}
.y5a{bottom:643.628515pt;}
.y58{bottom:645.228516pt;}
.y8b{bottom:659.948528pt;}
.y16{bottom:660.428528pt;}
.y42{bottom:668.268535pt;}
.y15{bottom:678.828543pt;}
.y8a{bottom:681.068545pt;}
.y41{bottom:683.628547pt;}
.y14{bottom:697.228558pt;}
.y89{bottom:702.188562pt;}
.y40{bottom:710.188568pt;}
.y13{bottom:715.628573pt;}
.y88{bottom:723.308579pt;}
.y3f{bottom:731.308585pt;}
.y12{bottom:734.028587pt;}
.y87{bottom:744.588596pt;}
.y11{bottom:752.428602pt;}
.y3e{bottom:752.588602pt;}
.y86{bottom:765.708613pt;}
.y10{bottom:770.828617pt;}
.y3d{bottom:773.708619pt;}
.y85{bottom:786.828629pt;}
.yf{bottom:789.228631pt;}
.y3c{bottom:800.428640pt;}
.ye{bottom:807.628646pt;}
.y84{bottom:807.948646pt;}
.yd{bottom:826.028661pt;}
.y83{bottom:829.228663pt;}
.y3b{bottom:832.268666pt;}
.yc{bottom:844.428676pt;}
.y3a{bottom:853.548683pt;}
.y82{bottom:855.948685pt;}
.yb{bottom:862.828690pt;}
.y39{bottom:874.668700pt;}
.ya{bottom:881.228705pt;}
.y81{bottom:887.788710pt;}
.y38{bottom:895.788717pt;}
.y9{bottom:899.628720pt;}
.y80{bottom:908.908727pt;}
.y37{bottom:916.908734pt;}
.y8{bottom:918.028734pt;}
.y7{bottom:925.388740pt;}
.y7f{bottom:930.188744pt;}
.y5{bottom:936.908750pt;}
.y36{bottom:938.188751pt;}
.y6{bottom:945.548756pt;}
.y35{bottom:959.308767pt;}
.y4{bottom:966.508773pt;}
.y34{bottom:980.428784pt;}
.y3{bottom:991.148793pt;}
.y33{bottom:1001.548801pt;}
.y32{bottom:1022.828818pt;}
.y2{bottom:1022.988818pt;}
.y1{bottom:1037.388830pt;}
.hc{height:1.440000pt;}
.ha{height:3.557503pt;}
.hb{height:15.040000pt;}
.h5{height:29.794086pt;}
.h9{height:36.909092pt;}
.hf{height:40.911283pt;}
.h4{height:42.234409pt;}
.h8{height:43.375035pt;}
.h1{height:44.468786pt;}
.h7{height:50.748791pt;}
.he{height:51.807541pt;}
.hd{height:52.028479pt;}
.h6{height:56.312545pt;}
.h2{height:57.688796pt;}
.h3{height:65.885678pt;}
.h0{height:1122.666667pt;}
.w3{width:0.640000pt;}
.w2{width:4.480000pt;}
.w1{width:4.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:48.160039pt;}
.x15{left:52.800042pt;}
.x3{left:61.600049pt;}
.x5{left:63.680051pt;}
.x2b{left:85.913212pt;}
.x16{left:104.640101pt;}
.x13{left:106.720085pt;}
.x14{left:115.200092pt;}
.xc{left:128.320103pt;}
.xd{left:133.760107pt;}
.x11{left:143.520115pt;}
.x12{left:159.200127pt;}
.x4{left:181.600451pt;}
.x24{left:195.360156pt;}
.x10{left:197.600158pt;}
.x6{left:255.040204pt;}
.x7{left:261.110876pt;}
.x17{left:292.640926pt;}
.xf{left:396.960318pt;}
.x27{left:464.160371pt;}
.x26{left:492.320000pt;}
.x19{left:507.040406pt;}
.x18{left:524.321439pt;}
.x8{left:528.960423pt;}
.x9{left:534.880428pt;}
.x28{left:541.760433pt;}
.x1a{left:555.040000pt;}
.x1b{left:598.560479pt;}
.x21{left:605.120484pt;}
.x1c{left:611.840000pt;}
.x1d{left:644.960516pt;}
.x29{left:648.320519pt;}
.x22{left:651.680521pt;}
.xe{left:665.760533pt;}
.x1e{left:668.320000pt;}
.x1f{left:705.280564pt;}
.x2a{left:708.640567pt;}
.x23{left:712.000570pt;}
.x25{left:721.920578pt;}
.xa{left:724.160579pt;}
.x20{left:728.640000pt;}
.xb{left:730.240584pt;}
.x1{left:745.920597pt;}
}




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