
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_6eee746b048ed9795da11651.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_55f561757505469911a73b8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_8eb27e37e0ca999ee2cafa2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_f7089368eb682fad510d2eec.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9781ea487ab6db00ab7e4312.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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:ff7;src:url('chunks/assets/font_495d862db37710bb72c4140c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321678px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:4.494180px;}
.ls3{letter-spacing:4.500000px;}
.ls2{letter-spacing:9.000000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws3{word-spacing:-10.800000px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-8.813123px;}
._12{margin-left:-7.780614px;}
._2{margin-left:-6.609373px;}
._0{margin-left:-5.343753px;}
._8{margin-left:-3.911740px;}
._11{margin-left:-2.671874px;}
._1{margin-left:-1.300791px;}
._5{width:3.562569px;}
._4{width:4.629920px;}
._3{width:8.905751px;}
._9{width:9.942515px;}
._7{width:13.182717px;}
._d{width:14.451848px;}
._6{width:17.960452px;}
._c{width:22.499999px;}
._f{width:27.000002px;}
._e{width:31.500000px;}
._b{width:40.500010px;}
._a{width:45.000000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.200002px;}
.fs4{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.999997px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y6d{bottom:3.496581px;}
.y29{bottom:3.496583px;}
.y8d{bottom:100.273688px;}
.y4a{bottom:107.480524px;}
.yd4{bottom:117.812260px;}
.yb1{bottom:120.510493px;}
.y6b{bottom:120.528078px;}
.yd3{bottom:138.510503px;}
.y49{bottom:138.527888px;}
.y8c{bottom:138.971923px;}
.yb0{bottom:141.208735px;}
.y27{bottom:142.557502px;}
.y6a{bottom:151.575441px;}
.y8b{bottom:159.670165px;}
.yaf{bottom:161.906978px;}
.y48{bottom:169.575250px;}
.yd2{bottom:177.208738px;}
.y8a{bottom:180.368408px;}
.y69{bottom:182.622804px;}
.y26{bottom:190.255733px;}
.yd1{bottom:197.906980px;}
.yae{bottom:200.605225px;}
.y47{bottom:200.622613px;}
.y89{bottom:210.066653px;}
.y25{bottom:210.953978px;}
.y68{bottom:213.670168px;}
.yd0{bottom:218.605223px;}
.yad{bottom:221.303468px;}
.y24{bottom:231.652223px;}
.y46{bottom:231.669796px;}
.y67{bottom:244.717531px;}
.y23{bottom:252.350468px;}
.ycf{bottom:257.303461px;}
.y88{bottom:259.114013px;}
.yac{bottom:260.001715px;}
.y45{bottom:262.717159px;}
.y22{bottom:273.048712px;}
.y66{bottom:275.764894px;}
.yce{bottom:278.001703px;}
.yab{bottom:280.699957px;}
.y87{bottom:290.161384px;}
.y21{bottom:293.746943px;}
.y44{bottom:293.764523px;}
.ycd{bottom:298.699945px;}
.y65{bottom:306.812257px;}
.y20{bottom:314.445187px;}
.ycc{bottom:319.398188px;}
.yaa{bottom:319.398190px;}
.y86{bottom:321.208748px;}
.y43{bottom:324.811893px;}
.y1f{bottom:335.143433px;}
.y64{bottom:337.859623px;}
.ya9{bottom:340.096433px;}
.y85{bottom:352.256101px;}
.y1e{bottom:355.841678px;}
.y42{bottom:355.859256px;}
.ycb{bottom:358.096438px;}
.y63{bottom:368.906986px;}
.y1d{bottom:376.539922px;}
.ya8{bottom:378.794680px;}
.y84{bottom:383.303464px;}
.y41{bottom:386.906619px;}
.y1c{bottom:397.238152px;}
.ya7{bottom:399.492923px;}
.y62{bottom:399.954349px;}
.y83{bottom:414.350828px;}
.y1b{bottom:417.936398px;}
.y40{bottom:417.953983px;}
.y61{bottom:431.001713px;}
.y1a{bottom:437.985724px;}
.yca{bottom:438.191155px;}
.ya6{bottom:438.191163px;}
.y82{bottom:445.398199px;}
.y3f{bottom:449.001346px;}
.yc9{bottom:458.889398px;}
.ya5{bottom:458.889406px;}
.y60{bottom:462.049068px;}
.y19{bottom:473.234244px;}
.y81{bottom:476.445563px;}
.ya4{bottom:479.587648px;}
.y3e{bottom:480.048709px;}
.y18{bottom:490.482831px;}
.y5f{bottom:493.096431px;}
.yc8{bottom:497.587651px;}
.ya3{bottom:500.285890px;}
.y80{bottom:506.143792px;}
.y17{bottom:507.731367px;}
.y3d{bottom:511.096072px;}
.yc7{bottom:518.285893px;}
.ya2{bottom:520.984132px;}
.y5e{bottom:524.143794px;}
.y16{bottom:524.979899px;}
.yc6{bottom:538.984135px;}
.y3c{bottom:542.143431px;}
.y15{bottom:542.228434px;}
.y5d{bottom:555.191158px;}
.y7f{bottom:555.191164px;}
.ya1{bottom:559.682371px;}
.yc5{bottom:559.682378px;}
.y3b{bottom:573.190794px;}
.y14{bottom:577.476979px;}
.ya0{bottom:580.380613px;}
.y5c{bottom:586.238521px;}
.y7e{bottom:586.238528px;}
.yc4{bottom:598.380622px;}
.y9f{bottom:601.078855px;}
.y3a{bottom:604.238158px;}
.y13{bottom:612.725508px;}
.y5b{bottom:617.285884px;}
.y7d{bottom:617.285896px;}
.y9e{bottom:621.777098px;}
.y39{bottom:635.285521px;}
.yc3{bottom:637.078852px;}
.y12{bottom:638.974047px;}
.y5a{bottom:648.333247px;}
.y7c{bottom:648.333259px;}
.y11{bottom:656.222573px;}
.yc2{bottom:657.777098px;}
.y9d{bottom:660.475348px;}
.y38{bottom:666.332884px;}
.y10{bottom:673.471109px;}
.yc1{bottom:678.475348px;}
.y59{bottom:679.380615px;}
.y7b{bottom:679.380622px;}
.y9c{bottom:681.173590px;}
.yf{bottom:690.719696px;}
.y37{bottom:697.380248px;}
.yc0{bottom:699.173590px;}
.y9b{bottom:701.871832px;}
.ye{bottom:707.968228px;}
.y58{bottom:710.427970px;}
.y7a{bottom:710.427978px;}
.ybf{bottom:719.871832px;}
.yd{bottom:725.216763px;}
.y36{bottom:728.427618px;}
.y9a{bottom:740.570068px;}
.y57{bottom:741.475153px;}
.y79{bottom:741.475341px;}
.ybe{bottom:758.570068px;}
.y35{bottom:759.474981px;}
.yc{bottom:761.114227px;}
.y99{bottom:761.268310px;}
.y56{bottom:772.522516px;}
.y78{bottom:772.522704px;}
.ybd{bottom:779.268310px;}
.y98{bottom:781.966553px;}
.y34{bottom:790.522344px;}
.yb{bottom:799.812473px;}
.ybc{bottom:799.966553px;}
.y55{bottom:803.569879px;}
.y77{bottom:803.570068px;}
.y97{bottom:820.664788px;}
.y33{bottom:821.569708px;}
.y54{bottom:834.617242px;}
.y76{bottom:834.617431px;}
.ya{bottom:838.510718px;}
.ybb{bottom:838.664800px;}
.y96{bottom:841.363030px;}
.y32{bottom:852.617071px;}
.yba{bottom:859.363042px;}
.y95{bottom:862.061272px;}
.y53{bottom:865.664614px;}
.y75{bottom:865.664794px;}
.y9{bottom:877.208948px;}
.y31{bottom:883.664434px;}
.y52{bottom:896.711977px;}
.y74{bottom:896.712157px;}
.yb9{bottom:898.061275px;}
.y94{bottom:900.759520px;}
.y30{bottom:914.711797px;}
.y8{bottom:915.907193px;}
.yb8{bottom:918.759518px;}
.y93{bottom:921.457762px;}
.y51{bottom:926.410223px;}
.y73{bottom:927.759526px;}
.y2f{bottom:945.759154px;}
.y7{bottom:954.605438px;}
.yb7{bottom:957.457763px;}
.y72{bottom:958.806889px;}
.y92{bottom:960.156005px;}
.y50{bottom:975.457579px;}
.y2e{bottom:976.806518px;}
.yb6{bottom:978.156006px;}
.y91{bottom:980.854248px;}
.y71{bottom:989.854253px;}
.y6{bottom:993.303681px;}
.yb5{bottom:998.854248px;}
.y90{bottom:1001.552490px;}
.y4f{bottom:1006.504943px;}
.y2d{bottom:1007.853881px;}
.y70{bottom:1019.552490px;}
.y5{bottom:1032.001923px;}
.y4e{bottom:1037.552306px;}
.yb4{bottom:1037.552490px;}
.y2c{bottom:1038.901244px;}
.y8f{bottom:1040.250732px;}
.yb3{bottom:1058.250732px;}
.y8e{bottom:1060.948974px;}
.y4{bottom:1061.700153px;}
.y4d{bottom:1068.599669px;}
.y6f{bottom:1068.599854px;}
.y2b{bottom:1069.948608px;}
.yb2{bottom:1078.948975px;}
.y3{bottom:1085.643026px;}
.y2a{bottom:1099.646850px;}
.y4c{bottom:1099.647033px;}
.y6e{bottom:1099.647217px;}
.y28{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y4b{bottom:1116.451720px;}
.y6c{bottom:1116.451905px;}
.h2{height:43.989259px;}
.h7{height:48.796875px;}
.h9{height:53.291014px;}
.h8{height:53.789061px;}
.h6{height:62.999998px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.hd{height:66.049805px;}
.h3{height:118.335940px;}
.hc{height:146.548095px;}
.hb{height:146.548280px;}
.h1{height:146.548382px;}
.ha{height:146.548462px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:127.575005px;}
.x3{left:147.028279px;}
.xa{left:213.075005px;}
.x5{left:217.437461px;}
.x6{left:241.677695px;}
.x2{left:282.239210px;}
.x4{left:467.719205px;}
.x8{left:642.514741px;}
.x9{left:673.320413px;}
.x7{left:807.863416px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285936pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.994827pt;}
.ls3{letter-spacing:4.000000pt;}
.ls2{letter-spacing:8.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws3{word-spacing:-9.600000pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-7.833887pt;}
._12{margin-left:-6.916101pt;}
._2{margin-left:-5.874998pt;}
._0{margin-left:-4.750002pt;}
._8{margin-left:-3.477103pt;}
._11{margin-left:-2.374999pt;}
._1{margin-left:-1.156259pt;}
._5{width:3.166728pt;}
._4{width:4.115485pt;}
._3{width:7.916223pt;}
._9{width:8.837791pt;}
._7{width:11.717971pt;}
._d{width:12.846087pt;}
._6{width:15.964846pt;}
._c{width:19.999999pt;}
._f{width:24.000002pt;}
._e{width:28.000000pt;}
._b{width:36.000009pt;}
._a{width:40.000000pt;}
.fs5{font-size:38.400002pt;}
.fs4{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666664pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y6d{bottom:3.108072pt;}
.y29{bottom:3.108073pt;}
.y8d{bottom:89.132167pt;}
.y4a{bottom:95.538244pt;}
.yd4{bottom:104.722009pt;}
.yb1{bottom:107.120438pt;}
.y6b{bottom:107.136069pt;}
.yd3{bottom:123.120447pt;}
.y49{bottom:123.135900pt;}
.y8c{bottom:123.530598pt;}
.yb0{bottom:125.518876pt;}
.y27{bottom:126.717779pt;}
.y6a{bottom:134.733725pt;}
.y8b{bottom:141.929036pt;}
.yaf{bottom:143.917313pt;}
.y48{bottom:150.733556pt;}
.yd2{bottom:157.518878pt;}
.y8a{bottom:160.327473pt;}
.y69{bottom:162.331381pt;}
.y26{bottom:169.116207pt;}
.yd1{bottom:175.917316pt;}
.yae{bottom:178.315756pt;}
.y47{bottom:178.331212pt;}
.y89{bottom:186.725913pt;}
.y25{bottom:187.514647pt;}
.y68{bottom:189.929038pt;}
.yd0{bottom:194.315753pt;}
.yad{bottom:196.714193pt;}
.y24{bottom:205.913087pt;}
.y46{bottom:205.928708pt;}
.y67{bottom:217.526694pt;}
.y23{bottom:224.311527pt;}
.ycf{bottom:228.714188pt;}
.y88{bottom:230.323567pt;}
.yac{bottom:231.112636pt;}
.y45{bottom:233.526364pt;}
.y22{bottom:242.709967pt;}
.y66{bottom:245.124350pt;}
.yce{bottom:247.112625pt;}
.yab{bottom:249.511073pt;}
.y87{bottom:257.921230pt;}
.y21{bottom:261.108393pt;}
.y44{bottom:261.124020pt;}
.ycd{bottom:265.511063pt;}
.y65{bottom:272.722007pt;}
.y20{bottom:279.506833pt;}
.ycc{bottom:283.909500pt;}
.yaa{bottom:283.909503pt;}
.y86{bottom:285.518887pt;}
.y43{bottom:288.721682pt;}
.y1f{bottom:297.905273pt;}
.y64{bottom:300.319665pt;}
.ya9{bottom:302.307940pt;}
.y85{bottom:313.116534pt;}
.y1e{bottom:316.303713pt;}
.y42{bottom:316.319339pt;}
.ycb{bottom:318.307945pt;}
.y63{bottom:327.917321pt;}
.y1d{bottom:334.702153pt;}
.ya8{bottom:336.706383pt;}
.y84{bottom:340.714190pt;}
.y41{bottom:343.916994pt;}
.y1c{bottom:353.100580pt;}
.ya7{bottom:355.104820pt;}
.y62{bottom:355.514977pt;}
.y83{bottom:368.311847pt;}
.y1b{bottom:371.499020pt;}
.y40{bottom:371.514651pt;}
.y61{bottom:383.112633pt;}
.y1a{bottom:389.320644pt;}
.yca{bottom:389.503249pt;}
.ya6{bottom:389.503256pt;}
.y82{bottom:395.909510pt;}
.y3f{bottom:399.112307pt;}
.yc9{bottom:407.901687pt;}
.ya5{bottom:407.901694pt;}
.y60{bottom:410.710282pt;}
.y19{bottom:420.652661pt;}
.y81{bottom:423.507167pt;}
.ya4{bottom:426.300131pt;}
.y3e{bottom:426.709963pt;}
.y18{bottom:435.984738pt;}
.y5f{bottom:438.307938pt;}
.yc8{bottom:442.300134pt;}
.ya3{bottom:444.698569pt;}
.y80{bottom:449.905593pt;}
.y17{bottom:451.316770pt;}
.y3d{bottom:454.307620pt;}
.yc7{bottom:460.698571pt;}
.ya2{bottom:463.097007pt;}
.y5e{bottom:465.905595pt;}
.y16{bottom:466.648799pt;}
.yc6{bottom:479.097009pt;}
.y3c{bottom:481.905272pt;}
.y15{bottom:481.980831pt;}
.y5d{bottom:493.503251pt;}
.y7f{bottom:493.503257pt;}
.ya1{bottom:497.495441pt;}
.yc5{bottom:497.495447pt;}
.y3b{bottom:509.502928pt;}
.y14{bottom:513.312871pt;}
.ya0{bottom:515.893878pt;}
.y5c{bottom:521.100907pt;}
.y7e{bottom:521.100913pt;}
.yc4{bottom:531.893887pt;}
.y9f{bottom:534.292316pt;}
.y3a{bottom:537.100585pt;}
.y13{bottom:544.644896pt;}
.y5b{bottom:548.698563pt;}
.y7d{bottom:548.698574pt;}
.y9e{bottom:552.690753pt;}
.y39{bottom:564.698241pt;}
.yc3{bottom:566.292313pt;}
.y12{bottom:567.976931pt;}
.y5a{bottom:576.296220pt;}
.y7c{bottom:576.296230pt;}
.y11{bottom:583.308954pt;}
.yc2{bottom:584.690753pt;}
.y9d{bottom:587.089198pt;}
.y38{bottom:592.295897pt;}
.y10{bottom:598.640986pt;}
.yc1{bottom:603.089198pt;}
.y59{bottom:603.893880pt;}
.y7b{bottom:603.893887pt;}
.y9c{bottom:605.487636pt;}
.yf{bottom:613.973063pt;}
.y37{bottom:619.893553pt;}
.yc0{bottom:621.487636pt;}
.y9b{bottom:623.886073pt;}
.ye{bottom:629.305092pt;}
.y58{bottom:631.491529pt;}
.y7a{bottom:631.491536pt;}
.ybf{bottom:639.886073pt;}
.yd{bottom:644.637123pt;}
.y36{bottom:647.491216pt;}
.y9a{bottom:658.284505pt;}
.y57{bottom:659.089025pt;}
.y79{bottom:659.089192pt;}
.ybe{bottom:674.284505pt;}
.y35{bottom:675.088872pt;}
.yc{bottom:676.545980pt;}
.y99{bottom:676.682942pt;}
.y56{bottom:686.686681pt;}
.y78{bottom:686.686848pt;}
.ybd{bottom:692.682942pt;}
.y98{bottom:695.081380pt;}
.y34{bottom:702.686528pt;}
.yb{bottom:710.944420pt;}
.ybc{bottom:711.081380pt;}
.y55{bottom:714.284337pt;}
.y77{bottom:714.284505pt;}
.y97{bottom:729.479811pt;}
.y33{bottom:730.284185pt;}
.y54{bottom:741.881993pt;}
.y76{bottom:741.882161pt;}
.ya{bottom:745.342860pt;}
.ybb{bottom:745.479822pt;}
.y96{bottom:747.878249pt;}
.y32{bottom:757.881841pt;}
.yba{bottom:763.878260pt;}
.y95{bottom:766.276687pt;}
.y53{bottom:769.479657pt;}
.y75{bottom:769.479817pt;}
.y9{bottom:779.741287pt;}
.y31{bottom:785.479497pt;}
.y52{bottom:797.077313pt;}
.y74{bottom:797.077473pt;}
.yb9{bottom:798.276689pt;}
.y94{bottom:800.675129pt;}
.y30{bottom:813.077153pt;}
.y8{bottom:814.139727pt;}
.yb8{bottom:816.675127pt;}
.y93{bottom:819.073567pt;}
.y51{bottom:823.475753pt;}
.y73{bottom:824.675134pt;}
.y2f{bottom:840.674804pt;}
.y7{bottom:848.538167pt;}
.yb7{bottom:851.073567pt;}
.y72{bottom:852.272790pt;}
.y92{bottom:853.472005pt;}
.y50{bottom:867.073404pt;}
.y2e{bottom:868.272461pt;}
.yb6{bottom:869.472005pt;}
.y91{bottom:871.870442pt;}
.y71{bottom:879.870447pt;}
.y6{bottom:882.936605pt;}
.yb5{bottom:887.870443pt;}
.y90{bottom:890.268880pt;}
.y4f{bottom:894.671061pt;}
.y2d{bottom:895.870117pt;}
.y70{bottom:906.268880pt;}
.y5{bottom:917.335043pt;}
.y4e{bottom:922.268717pt;}
.yb4{bottom:922.268880pt;}
.y2c{bottom:923.467773pt;}
.y8f{bottom:924.667317pt;}
.yb3{bottom:940.667317pt;}
.y8e{bottom:943.065755pt;}
.y4{bottom:943.733469pt;}
.y4d{bottom:949.866373pt;}
.y6f{bottom:949.866537pt;}
.y2b{bottom:951.065429pt;}
.yb2{bottom:959.065756pt;}
.y3{bottom:965.016023pt;}
.y2a{bottom:977.463867pt;}
.y4c{bottom:977.464029pt;}
.y6e{bottom:977.464193pt;}
.y28{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y4b{bottom:992.401529pt;}
.y6c{bottom:992.401693pt;}
.h2{height:39.101563pt;}
.h7{height:43.375000pt;}
.h9{height:47.369790pt;}
.h8{height:47.812499pt;}
.h6{height:55.999998pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.hd{height:58.710937pt;}
.h3{height:105.187502pt;}
.hc{height:130.264973pt;}
.hb{height:130.265137pt;}
.h1{height:130.265228pt;}
.ha{height:130.265300pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:113.400004pt;}
.x3{left:130.691804pt;}
.xa{left:189.400004pt;}
.x5{left:193.277743pt;}
.x6{left:214.824618pt;}
.x2{left:250.879298pt;}
.x4{left:415.750404pt;}
.x8{left:571.124214pt;}
.x9{left:598.507034pt;}
.x7{left:718.100814pt;}
}




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