
    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_3477ce73ebb1387ab52a140f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_245cb65fe45ac11b07551156.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_1af53b4fab7fa566380720aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_1ae3ca70523c2b29295b2663.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_cf6b4e7505e6bf8f707e87be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895000;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;}
.m1{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009900px;}
.ls1{letter-spacing:0.019831px;}
.ls4{letter-spacing:0.127103px;}
.ls3{letter-spacing:1.450739px;}
.ls6{letter-spacing:12.257215px;}
.ls5{letter-spacing:20.181952px;}
.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;}
}
.ws3{word-spacing:-16.579825px;}
.ws0{word-spacing:-16.559993px;}
.ws2{word-spacing:-10.439996px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.184766px;}
._5{width:1.096619px;}
._12{width:2.107498px;}
._2{width:3.109397px;}
._1{width:4.202586px;}
._4{width:5.666215px;}
._3{width:6.770637px;}
._6{width:8.118418px;}
._9{width:9.395305px;}
._8{width:10.551785px;}
._7{width:11.850444px;}
._b{width:13.421250px;}
._a{width:14.565474px;}
._11{width:17.971402px;}
._13{width:19.687737px;}
._f{width:21.621819px;}
._e{width:23.210652px;}
._1d{width:26.163709px;}
._c{width:27.205684px;}
._d{width:28.253612px;}
._10{width:29.645259px;}
._16{width:30.840072px;}
._1a{width:32.734399px;}
._17{width:34.925467px;}
._18{width:35.993548px;}
._15{width:42.866439px;}
._14{width:44.122968px;}
._1c{width:96.673142px;}
._1b{width:182.152018px;}
._19{width:195.966987px;}
.fc2{color:rgb(0,87,63);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.759983px;}
.fs0{font-size:66.239974px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.900277px;}
.y1{bottom:77.880269px;}
.y68{bottom:133.320247px;}
.y74{bottom:141.240244px;}
.y3c{bottom:150.239940px;}
.y6e{bottom:156.360237px;}
.y8b{bottom:164.279934px;}
.y1c{bottom:171.300231px;}
.y73{bottom:179.220228px;}
.y3b{bottom:188.219925px;}
.y3a{bottom:194.159922px;}
.y6d{bottom:194.160222px;}
.y8a{bottom:202.079919px;}
.y61{bottom:208.199917px;}
.y1b{bottom:209.280216px;}
.y72{bottom:217.200213px;}
.y39{bottom:226.019910px;}
.y43{bottom:231.959907px;}
.y6c{bottom:232.140207px;}
.y89{bottom:240.059904px;}
.y60{bottom:247.079901px;}
.y1a{bottom:247.080201px;}
.y71{bottom:255.180198px;}
.y38{bottom:263.999894px;}
.y49{bottom:269.939892px;}
.y88{bottom:278.039889px;}
.y94{bottom:283.979886px;}
.y5f{bottom:285.059886px;}
.y19{bottom:285.060186px;}
.y70{bottom:292.980183px;}
.y37{bottom:301.979879px;}
.y56{bottom:307.919877px;}
.y87{bottom:316.019874px;}
.y8d{bottom:321.959871px;}
.y5e{bottom:323.039871px;}
.y18{bottom:323.040171px;}
.y36{bottom:339.959864px;}
.y35{bottom:345.899862px;}
.y6f{bottom:346.080162px;}
.y86{bottom:353.999858px;}
.y67{bottom:359.939856px;}
.y5d{bottom:361.019856px;}
.y17{bottom:361.020156px;}
.y8c{bottom:366.959853px;}
.y34{bottom:377.939849px;}
.y55{bottom:383.879846px;}
.y85{bottom:391.979843px;}
.y6a{bottom:397.919841px;}
.y5c{bottom:398.999840px;}
.y16{bottom:399.000140px;}
.y33{bottom:415.739834px;}
.y64{bottom:421.679831px;}
.y84{bottom:429.779828px;}
.y90{bottom:435.719826px;}
.y5b{bottom:436.979825px;}
.y15{bottom:436.980125px;}
.y69{bottom:442.919823px;}
.y32{bottom:453.719819px;}
.y31{bottom:459.659816px;}
.y83{bottom:467.759813px;}
.y5a{bottom:474.779810px;}
.y14{bottom:474.780110px;}
.y30{bottom:491.699803px;}
.y54{bottom:497.639801px;}
.y82{bottom:505.739798px;}
.y93{bottom:511.679795px;}
.y59{bottom:512.759795px;}
.y13{bottom:512.760095px;}
.y2f{bottom:529.679788px;}
.y53{bottom:535.619786px;}
.y52{bottom:549.659780px;}
.y58{bottom:550.739780px;}
.y12{bottom:550.740080px;}
.y81{bottom:558.660077px;}
.y2e{bottom:567.659773px;}
.y2d{bottom:573.599771px;}
.y57{bottom:588.719765px;}
.y11{bottom:588.720065px;}
.y92{bottom:594.659762px;}
.y80{bottom:596.640061px;}
.y2c{bottom:605.639758px;}
.y63{bottom:611.579755px;}
.y62{bottom:625.619750px;}
.y50{bottom:626.699749px;}
.y10{bottom:626.700049px;}
.y51{bottom:632.639747px;}
.y7f{bottom:634.620046px;}
.y2b{bottom:643.439743px;}
.y8e{bottom:649.379740px;}
.y42{bottom:663.419735px;}
.y6b{bottom:663.420035px;}
.y4f{bottom:664.499734px;}
.yf{bottom:664.500034px;}
.y91{bottom:670.439732px;}
.y7e{bottom:672.600031px;}
.y2a{bottom:681.419727px;}
.y66{bottom:687.359725px;}
.y65{bottom:701.399719px;}
.y4e{bottom:702.479719px;}
.ye{bottom:702.480019px;}
.y8f{bottom:708.419717px;}
.y7d{bottom:710.400016px;}
.y29{bottom:719.399712px;}
.y48{bottom:725.339710px;}
.y4c{bottom:740.459704px;}
.yd{bottom:740.460004px;}
.y4d{bottom:746.399701px;}
.y7c{bottom:748.380001px;}
.y28{bottom:757.379697px;}
.y41{bottom:778.439689px;}
.yc{bottom:778.439989px;}
.y7b{bottom:786.359985px;}
.y27{bottom:795.359682px;}
.y47{bottom:801.299679px;}
.y26{bottom:815.339674px;}
.y40{bottom:816.419673px;}
.yb{bottom:816.419973px;}
.y4b{bottom:822.359671px;}
.y7a{bottom:824.339970px;}
.y24{bottom:854.399658px;}
.ya{bottom:854.399958px;}
.y25{bottom:860.339656px;}
.y79{bottom:862.319955px;}
.y22{bottom:892.199643px;}
.y9{bottom:892.199943px;}
.y23{bottom:898.139641px;}
.y78{bottom:900.299940px;}
.y21{bottom:930.179628px;}
.y8{bottom:930.179928px;}
.y4a{bottom:936.119626px;}
.y77{bottom:938.099925px;}
.y1f{bottom:968.159613px;}
.y7{bottom:968.159913px;}
.y20{bottom:974.099610px;}
.y76{bottom:991.019904px;}
.y1e{bottom:1006.139598px;}
.y6{bottom:1006.139898px;}
.y1d{bottom:1012.079595px;}
.y75{bottom:1028.999888px;}
.y3f{bottom:1044.119582px;}
.y5{bottom:1044.119882px;}
.y46{bottom:1050.059580px;}
.y3e{bottom:1081.919567px;}
.y4{bottom:1081.919867px;}
.y3d{bottom:1087.859565px;}
.y45{bottom:1119.899552px;}
.y3{bottom:1119.899852px;}
.y44{bottom:1125.839550px;}
.h4{height:28.730869px;}
.h1{height:44.149201px;}
.h5{height:45.440622px;}
.h3{height:45.573102px;}
.h2{height:47.229101px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620091px;}
.x12{left:132.839947px;}
.x1f{left:138.059945px;}
.x3{left:149.580142px;}
.x14{left:180.719449px;}
.x56{left:182.699927px;}
.x4a{left:188.459925px;}
.x48{left:191.159924px;}
.x57{left:193.139923px;}
.x4b{left:198.899920px;}
.x3b{left:204.659918px;}
.x21{left:210.599916px;}
.x3c{left:215.099914px;}
.x22{left:221.039912px;}
.x40{left:233.818342px;}
.x4e{left:249.479900px;}
.x4{left:251.100856px;}
.x35{left:257.399897px;}
.x4f{left:259.919896px;}
.x4c{left:263.159895px;}
.x36{left:267.839893px;}
.x4d{left:273.599891px;}
.x3f{left:285.119464px;}
.x3e{left:286.559463px;}
.x7{left:313.920742px;}
.x30{left:316.799873px;}
.x29{left:322.379871px;}
.x31{left:327.239869px;}
.x2a{left:332.819867px;}
.x44{left:335.159866px;}
.x8{left:340.380799px;}
.x11{left:343.620496px;}
.x45{left:345.599862px;}
.x49{left:350.819860px;}
.x6{left:366.300729px;}
.x50{left:386.099846px;}
.x23{left:395.099842px;}
.x51{left:396.539841px;}
.x52{left:397.979841px;}
.x24{left:405.539838px;}
.x53{left:408.419837px;}
.x37{left:413.099835px;}
.x43{left:419.039832px;}
.x38{left:423.539831px;}
.x27{left:424.619830px;}
.x5c{left:428.219829px;}
.x39{left:430.199828px;}
.x46{left:432.179827px;}
.x28{left:435.059826px;}
.x5d{left:438.659825px;}
.x3a{left:440.639824px;}
.x47{left:442.619823px;}
.x5{left:446.400619px;}
.xd{left:447.659821px;}
.xe{left:452.879819px;}
.x33{left:456.659817px;}
.x34{left:467.099813px;}
.x2b{left:500.579800px;}
.x2c{left:511.019796px;}
.x17{left:516.059794px;}
.x18{left:521.279791px;}
.x15{left:523.079791px;}
.x16{left:528.299789px;}
.x9{left:531.539787px;}
.x1d{left:533.159787px;}
.xa{left:536.759785px;}
.x1e{left:543.599783px;}
.x25{left:554.579778px;}
.x26{left:565.019774px;}
.x58{left:591.659763px;}
.x54{left:600.839760px;}
.x59{left:602.099759px;}
.x13{left:605.879758px;}
.xf{left:610.199756px;}
.x55{left:611.279755px;}
.x10{left:615.419754px;}
.x20{left:620.099752px;}
.x2d{left:626.219750px;}
.x5a{left:645.119742px;}
.x5b{left:655.559738px;}
.x41{left:693.899722px;}
.x42{left:704.339718px;}
.x2e{left:709.919716px;}
.x2f{left:720.359712px;}
.x1b{left:740.339704px;}
.x19{left:744.119702px;}
.x1c{left:745.559702px;}
.x1a{left:749.339700px;}
.x3d{left:751.499699px;}
.x32{left:754.919698px;}
.x1{left:757.079697px;}
.xb{left:760.139696px;}
.xc{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008800pt;}
.ls1{letter-spacing:0.017628pt;}
.ls4{letter-spacing:0.112981pt;}
.ls3{letter-spacing:1.289546pt;}
.ls6{letter-spacing:10.895302pt;}
.ls5{letter-spacing:17.939513pt;}
.ws3{word-spacing:-14.737622pt;}
.ws0{word-spacing:-14.719994pt;}
.ws2{word-spacing:-9.279996pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.053126pt;}
._5{width:0.974772pt;}
._12{width:1.873331pt;}
._2{width:2.763908pt;}
._1{width:3.735632pt;}
._4{width:5.036636pt;}
._3{width:6.018344pt;}
._6{width:7.216371pt;}
._9{width:8.351382pt;}
._8{width:9.379364pt;}
._7{width:10.533728pt;}
._b{width:11.930000pt;}
._a{width:12.947088pt;}
._11{width:15.974580pt;}
._13{width:17.500211pt;}
._f{width:19.219395pt;}
._e{width:20.631691pt;}
._1d{width:23.256630pt;}
._c{width:24.182831pt;}
._d{width:25.114322pt;}
._10{width:26.351341pt;}
._16{width:27.413398pt;}
._1a{width:29.097243pt;}
._17{width:31.044860pt;}
._18{width:31.994265pt;}
._15{width:38.103501pt;}
._14{width:39.220416pt;}
._1c{width:85.931682pt;}
._1b{width:161.912905pt;}
._19{width:174.192878pt;}
.fs1{font-size:37.119985pt;}
.fs0{font-size:58.879976pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.466913pt;}
.y1{bottom:69.226906pt;}
.y68{bottom:118.506886pt;}
.y74{bottom:125.546883pt;}
.y3c{bottom:133.546613pt;}
.y6e{bottom:138.986878pt;}
.y8b{bottom:146.026608pt;}
.y1c{bottom:152.266872pt;}
.y73{bottom:159.306870pt;}
.y3b{bottom:167.306600pt;}
.y3a{bottom:172.586598pt;}
.y6d{bottom:172.586864pt;}
.y8a{bottom:179.626595pt;}
.y61{bottom:185.066593pt;}
.y1b{bottom:186.026859pt;}
.y72{bottom:193.066856pt;}
.y39{bottom:200.906586pt;}
.y43{bottom:206.186584pt;}
.y6c{bottom:206.346851pt;}
.y89{bottom:213.386581pt;}
.y60{bottom:219.626579pt;}
.y1a{bottom:219.626845pt;}
.y71{bottom:226.826843pt;}
.y38{bottom:234.666573pt;}
.y49{bottom:239.946571pt;}
.y88{bottom:247.146568pt;}
.y94{bottom:252.426566pt;}
.y5f{bottom:253.386565pt;}
.y19{bottom:253.386832pt;}
.y70{bottom:260.426829pt;}
.y37{bottom:268.426559pt;}
.y56{bottom:273.706557pt;}
.y87{bottom:280.906554pt;}
.y8d{bottom:286.186552pt;}
.y5e{bottom:287.146552pt;}
.y18{bottom:287.146818pt;}
.y36{bottom:302.186546pt;}
.y35{bottom:307.466544pt;}
.y6f{bottom:307.626810pt;}
.y86{bottom:314.666541pt;}
.y67{bottom:319.946539pt;}
.y5d{bottom:320.906538pt;}
.y17{bottom:320.906805pt;}
.y8c{bottom:326.186536pt;}
.y34{bottom:335.946532pt;}
.y55{bottom:341.226530pt;}
.y85{bottom:348.426527pt;}
.y6a{bottom:353.706525pt;}
.y5c{bottom:354.666525pt;}
.y16{bottom:354.666791pt;}
.y33{bottom:369.546519pt;}
.y64{bottom:374.826517pt;}
.y84{bottom:382.026514pt;}
.y90{bottom:387.306512pt;}
.y5b{bottom:388.426511pt;}
.y15{bottom:388.426778pt;}
.y69{bottom:393.706509pt;}
.y32{bottom:403.306505pt;}
.y31{bottom:408.586503pt;}
.y83{bottom:415.786500pt;}
.y5a{bottom:422.026498pt;}
.y14{bottom:422.026765pt;}
.y30{bottom:437.066492pt;}
.y54{bottom:442.346490pt;}
.y82{bottom:449.546487pt;}
.y93{bottom:454.826485pt;}
.y59{bottom:455.786484pt;}
.y13{bottom:455.786751pt;}
.y2f{bottom:470.826478pt;}
.y53{bottom:476.106476pt;}
.y52{bottom:488.586471pt;}
.y58{bottom:489.546471pt;}
.y12{bottom:489.546738pt;}
.y81{bottom:496.586735pt;}
.y2e{bottom:504.586465pt;}
.y2d{bottom:509.866463pt;}
.y57{bottom:523.306457pt;}
.y11{bottom:523.306724pt;}
.y92{bottom:528.586455pt;}
.y80{bottom:530.346721pt;}
.y2c{bottom:538.346451pt;}
.y63{bottom:543.626449pt;}
.y62{bottom:556.106444pt;}
.y50{bottom:557.066444pt;}
.y10{bottom:557.066711pt;}
.y51{bottom:562.346442pt;}
.y7f{bottom:564.106708pt;}
.y2b{bottom:571.946438pt;}
.y8e{bottom:577.226436pt;}
.y42{bottom:589.706431pt;}
.y6b{bottom:589.706697pt;}
.y4f{bottom:590.666430pt;}
.yf{bottom:590.666697pt;}
.y91{bottom:595.946428pt;}
.y7e{bottom:597.866694pt;}
.y2a{bottom:605.706424pt;}
.y66{bottom:610.986422pt;}
.y65{bottom:623.466417pt;}
.y4e{bottom:624.426417pt;}
.ye{bottom:624.426684pt;}
.y8f{bottom:629.706415pt;}
.y7d{bottom:631.466681pt;}
.y29{bottom:639.466411pt;}
.y48{bottom:644.746409pt;}
.y4c{bottom:658.186403pt;}
.yd{bottom:658.186670pt;}
.y4d{bottom:663.466401pt;}
.y7c{bottom:665.226667pt;}
.y28{bottom:673.226397pt;}
.y41{bottom:691.946390pt;}
.yc{bottom:691.946657pt;}
.y7b{bottom:698.986654pt;}
.y27{bottom:706.986384pt;}
.y47{bottom:712.266382pt;}
.y26{bottom:724.746377pt;}
.y40{bottom:725.706376pt;}
.yb{bottom:725.706643pt;}
.y4b{bottom:730.986374pt;}
.y7a{bottom:732.746640pt;}
.y24{bottom:759.466363pt;}
.ya{bottom:759.466630pt;}
.y25{bottom:764.746361pt;}
.y79{bottom:766.506627pt;}
.y22{bottom:793.066349pt;}
.y9{bottom:793.066616pt;}
.y23{bottom:798.346347pt;}
.y78{bottom:800.266613pt;}
.y21{bottom:826.826336pt;}
.y8{bottom:826.826603pt;}
.y4a{bottom:832.106334pt;}
.y77{bottom:833.866600pt;}
.y1f{bottom:860.586322pt;}
.y7{bottom:860.586589pt;}
.y20{bottom:865.866320pt;}
.y76{bottom:880.906581pt;}
.y1e{bottom:894.346309pt;}
.y6{bottom:894.346576pt;}
.y1d{bottom:899.626307pt;}
.y75{bottom:914.666567pt;}
.y3f{bottom:928.106295pt;}
.y5{bottom:928.106562pt;}
.y46{bottom:933.386293pt;}
.y3e{bottom:961.706282pt;}
.y4{bottom:961.706549pt;}
.y3d{bottom:966.986280pt;}
.y45{bottom:995.466268pt;}
.y3{bottom:995.466535pt;}
.y44{bottom:1000.746266pt;}
.h4{height:25.538550pt;}
.h1{height:39.243734pt;}
.h5{height:40.391664pt;}
.h3{height:40.509424pt;}
.h2{height:41.981423pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440081pt;}
.x12{left:118.079953pt;}
.x1f{left:122.719951pt;}
.x3{left:132.960127pt;}
.x14{left:160.639510pt;}
.x56{left:162.399935pt;}
.x4a{left:167.519933pt;}
.x48{left:169.919932pt;}
.x57{left:171.679931pt;}
.x4b{left:176.799929pt;}
.x3b{left:181.919927pt;}
.x21{left:187.199925pt;}
.x3c{left:191.199924pt;}
.x22{left:196.479921pt;}
.x40{left:207.838526pt;}
.x4e{left:221.759911pt;}
.x4{left:223.200761pt;}
.x35{left:228.799908pt;}
.x4f{left:231.039908pt;}
.x4c{left:233.919906pt;}
.x36{left:238.079905pt;}
.x4d{left:243.199903pt;}
.x3f{left:253.439524pt;}
.x3e{left:254.719523pt;}
.x7{left:279.040660pt;}
.x30{left:281.599887pt;}
.x29{left:286.559885pt;}
.x31{left:290.879884pt;}
.x2a{left:295.839882pt;}
.x44{left:297.919881pt;}
.x8{left:302.560710pt;}
.x11{left:305.440441pt;}
.x45{left:307.199877pt;}
.x49{left:311.839875pt;}
.x6{left:325.600648pt;}
.x50{left:343.199863pt;}
.x23{left:351.199860pt;}
.x51{left:352.479859pt;}
.x52{left:353.759858pt;}
.x24{left:360.479856pt;}
.x53{left:363.039855pt;}
.x37{left:367.199853pt;}
.x43{left:372.479851pt;}
.x38{left:376.479849pt;}
.x27{left:377.439849pt;}
.x5c{left:380.639848pt;}
.x39{left:382.399847pt;}
.x46{left:384.159846pt;}
.x28{left:386.719845pt;}
.x5d{left:389.919844pt;}
.x3a{left:391.679843pt;}
.x47{left:393.439843pt;}
.x5{left:396.800550pt;}
.xd{left:397.919841pt;}
.xe{left:402.559839pt;}
.x33{left:405.919838pt;}
.x34{left:415.199834pt;}
.x2b{left:444.959822pt;}
.x2c{left:454.239818pt;}
.x17{left:458.719817pt;}
.x18{left:463.359815pt;}
.x15{left:464.959814pt;}
.x16{left:469.599812pt;}
.x9{left:472.479811pt;}
.x1d{left:473.919810pt;}
.xa{left:477.119809pt;}
.x1e{left:483.199807pt;}
.x25{left:492.959803pt;}
.x26{left:502.239799pt;}
.x58{left:525.919790pt;}
.x54{left:534.079786pt;}
.x59{left:535.199786pt;}
.x13{left:538.559785pt;}
.xf{left:542.399783pt;}
.x55{left:543.359783pt;}
.x10{left:547.039781pt;}
.x20{left:551.199780pt;}
.x2d{left:556.639777pt;}
.x5a{left:573.439771pt;}
.x5b{left:582.719767pt;}
.x41{left:616.799753pt;}
.x42{left:626.079750pt;}
.x2e{left:631.039748pt;}
.x2f{left:640.319744pt;}
.x1b{left:658.079737pt;}
.x19{left:661.439735pt;}
.x1c{left:662.719735pt;}
.x1a{left:666.079734pt;}
.x3d{left:667.999733pt;}
.x32{left:671.039732pt;}
.x1{left:672.959731pt;}
.xb{left:675.679730pt;}
.xc{left:680.319728pt;}
}




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