
    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_82b6c2081b35224f41e80991.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_41cfd3dcd46ccceeef0e6752.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_113b121fb8dbe3d16d95e065.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056152;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_bcd11e05330190950226f166.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls0{letter-spacing:0.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-9.281250px;}
._c{margin-left:-7.664038px;}
._12{margin-left:-6.609374px;}
._0{margin-left:-5.343729px;}
._2{margin-left:-3.972654px;}
._10{margin-left:-2.771040px;}
._1{margin-left:-1.300780px;}
._3{width:4.405751px;}
._b{width:5.450268px;}
._5{width:8.897995px;}
._9{width:9.918045px;}
._4{width:13.472053px;}
._6{width:17.899297px;}
._8{width:22.499995px;}
._7{width:27.000000px;}
._a{width:31.499997px;}
._11{width:36.000002px;}
._f{width:40.499999px;}
._e{width:44.999997px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:96.000003px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y5c{bottom:3.496581px;}
.y20{bottom:3.496583px;}
.y7d{bottom:89.480714px;}
.yc1{bottom:93.528073px;}
.y5a{bottom:98.050783px;}
.y9e{bottom:111.221924px;}
.yc0{bottom:114.226315px;}
.y40{bottom:120.527888px;}
.y7c{bottom:120.528070px;}
.y59{bottom:126.510868px;}
.y91{bottom:130.212163px;}
.ybf{bottom:134.924558px;}
.y9d{bottom:139.754143px;}
.y7b{bottom:151.575438px;}
.y58{bottom:154.970938px;}
.ybe{bottom:155.622803px;}
.y90{bottom:159.859132px;}
.y9c{bottom:168.213868px;}
.y3f{bottom:169.575255px;}
.ybd{bottom:176.321038px;}
.y7a{bottom:182.622801px;}
.y8f{bottom:190.906493px;}
.ybc{bottom:197.019280px;}
.y3e{bottom:200.622610px;}
.y79{bottom:213.670164px;}
.ybb{bottom:217.717523px;}
.y8e{bottom:221.953853px;}
.y3d{bottom:231.669793px;}
.yba{bottom:238.415768px;}
.y78{bottom:244.717528px;}
.y8d{bottom:251.813968px;}
.yb9{bottom:259.114021px;}
.y3c{bottom:262.717156px;}
.y77{bottom:275.764891px;}
.yb8{bottom:279.812263px;}
.y8c{bottom:281.460934px;}
.y3b{bottom:293.764519px;}
.yb7{bottom:300.510505px;}
.y76{bottom:306.812254px;}
.y8b{bottom:312.508298px;}
.yb6{bottom:321.208748px;}
.y3a{bottom:324.811883px;}
.y1e{bottom:326.371402px;}
.y75{bottom:337.859618px;}
.yb5{bottom:341.906978px;}
.y8a{bottom:343.555660px;}
.y39{bottom:355.859249px;}
.yb4{bottom:362.605228px;}
.y1d{bottom:365.069648px;}
.y74{bottom:368.906980px;}
.y89{bottom:374.603028px;}
.yb3{bottom:383.303470px;}
.y38{bottom:386.906617px;}
.y9b{bottom:388.331543px;}
.y1c{bottom:394.118958px;}
.y73{bottom:399.954348px;}
.yb2{bottom:404.001713px;}
.y88{bottom:405.650391px;}
.y37{bottom:417.953984px;}
.y9a{bottom:418.192378px;}
.y1b{bottom:420.367490px;}
.yb1{bottom:424.699957px;}
.y72{bottom:431.001711px;}
.y57{bottom:433.588628px;}
.y87{bottom:436.697754px;}
.y1a{bottom:437.616026px;}
.yb0{bottom:445.398188px;}
.y99{bottom:447.839356px;}
.y36{bottom:449.001340px;}
.y19{bottom:454.864558px;}
.y71{bottom:462.049074px;}
.y56{bottom:463.449463px;}
.y86{bottom:467.745118px;}
.y18{bottom:472.113093px;}
.yaf{bottom:475.096432px;}
.y98{bottom:478.886719px;}
.y35{bottom:480.048708px;}
.y55{bottom:493.096431px;}
.y70{bottom:493.096438px;}
.yde{bottom:498.210943px;}
.y17{bottom:498.361683px;}
.y85{bottom:498.792481px;}
.y97{bottom:509.934082px;}
.y34{bottom:511.096064px;}
.y54{bottom:524.143794px;}
.yae{bottom:524.143798px;}
.y6f{bottom:524.143801px;}
.y16{bottom:524.610213px;}
.ydd{bottom:526.670653px;}
.y84{bottom:529.839844px;}
.y96{bottom:539.794183px;}
.y33{bottom:542.143432px;}
.ydc{bottom:545.644048px;}
.y15{bottom:550.858745px;}
.y53{bottom:555.191158px;}
.yad{bottom:555.191161px;}
.y6e{bottom:555.191164px;}
.y83{bottom:560.887207px;}
.ydb{bottom:564.617428px;}
.y14{bottom:568.107281px;}
.y95{bottom:569.441167px;}
.y32{bottom:573.190799px;}
.yda{bottom:583.590823px;}
.y13{bottom:585.355813px;}
.y52{bottom:586.238521px;}
.yac{bottom:586.238524px;}
.y6d{bottom:586.238528px;}
.y82{bottom:590.748043px;}
.y94{bottom:599.302014px;}
.y12{bottom:602.604348px;}
.yd9{bottom:602.888677px;}
.y31{bottom:604.238155px;}
.y51{bottom:617.285884px;}
.yab{bottom:617.285888px;}
.y6c{bottom:617.285889px;}
.y81{bottom:619.207768px;}
.yd8{bottom:623.586918px;}
.y30{bottom:635.285523px;}
.y11{bottom:638.501812px;}
.yd7{bottom:644.285161px;}
.y80{bottom:647.668222px;}
.yaa{bottom:648.333239px;}
.y50{bottom:648.333247px;}
.y6b{bottom:648.333253px;}
.yd6{bottom:664.983403px;}
.y2f{bottom:666.332886px;}
.y10{bottom:677.200103px;}
.ya9{bottom:679.380607px;}
.y4f{bottom:679.380613px;}
.y6a{bottom:679.380616px;}
.yd5{bottom:685.681645px;}
.y2e{bottom:697.380249px;}
.yd4{bottom:706.379887px;}
.ya8{bottom:710.427974px;}
.y69{bottom:710.427979px;}
.y4e{bottom:710.427985px;}
.yf{bottom:715.898348px;}
.yd3{bottom:727.078118px;}
.y2d{bottom:728.427613px;}
.y4d{bottom:741.475159px;}
.ya7{bottom:741.475330px;}
.y68{bottom:741.475343px;}
.yd2{bottom:747.776368px;}
.ye{bottom:754.596593px;}
.y2c{bottom:759.474976px;}
.yd1{bottom:768.474610px;}
.y4c{bottom:772.522523px;}
.ya6{bottom:772.522698px;}
.y67{bottom:772.522701px;}
.yd0{bottom:789.172852px;}
.y2b{bottom:790.522339px;}
.yd{bottom:793.294825px;}
.y4b{bottom:802.220768px;}
.ya5{bottom:803.570061px;}
.y66{bottom:803.570064px;}
.ycf{bottom:809.871098px;}
.yc{bottom:813.993067px;}
.y2a{bottom:821.569703px;}
.yce{bottom:830.569342px;}
.ya4{bottom:834.617424px;}
.y65{bottom:834.617428px;}
.ycd{bottom:851.267578px;}
.y4a{bottom:851.268130px;}
.y29{bottom:852.617061px;}
.yb{bottom:852.691315px;}
.ya3{bottom:865.664788px;}
.y64{bottom:865.664791px;}
.ycc{bottom:871.965820px;}
.ya{bottom:873.389558px;}
.y49{bottom:882.315486px;}
.y28{bottom:883.664428px;}
.ycb{bottom:892.664062px;}
.ya2{bottom:896.712151px;}
.y63{bottom:896.712154px;}
.y9{bottom:912.087805px;}
.yca{bottom:913.362308px;}
.y48{bottom:913.362853px;}
.y27{bottom:914.711791px;}
.ya1{bottom:927.759514px;}
.y62{bottom:927.759518px;}
.y8{bottom:932.786047px;}
.yc9{bottom:934.060552px;}
.y47{bottom:944.410216px;}
.y26{bottom:945.759154px;}
.yc8{bottom:954.758783px;}
.y61{bottom:957.457762px;}
.ya0{bottom:958.806877px;}
.y7{bottom:971.484277px;}
.y46{bottom:975.457579px;}
.yc7{bottom:975.457762px;}
.y25{bottom:976.806518px;}
.y93{bottom:978.044678px;}
.y9f{bottom:988.505127px;}
.yc6{bottom:996.156006px;}
.y45{bottom:1006.504943px;}
.y60{bottom:1006.505128px;}
.y24{bottom:1007.853881px;}
.y92{bottom:1007.905518px;}
.y6{bottom:1010.182525px;}
.yc5{bottom:1016.854247px;}
.y44{bottom:1037.552306px;}
.yc4{bottom:1037.552489px;}
.y5f{bottom:1037.552491px;}
.y23{bottom:1038.901244px;}
.y5{bottom:1039.880768px;}
.yc3{bottom:1058.250732px;}
.y4{bottom:1063.823628px;}
.y43{bottom:1068.599669px;}
.y5e{bottom:1068.599854px;}
.y22{bottom:1069.948608px;}
.y7f{bottom:1071.186768px;}
.yc2{bottom:1078.948974px;}
.y21{bottom:1099.646850px;}
.y42{bottom:1099.647033px;}
.y5d{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.y7e{bottom:1101.047608px;}
.y1f{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y41{bottom:1116.451720px;}
.y5b{bottom:1116.451905px;}
.h2{height:43.989259px;}
.h8{height:49.992188px;}
.ha{height:53.291014px;}
.h9{height:53.789061px;}
.hd{height:59.167970px;}
.h7{height:62.824219px;}
.h6{height:63.949219px;}
.h4{height:64.546875px;}
.h5{height:85.265628px;}
.h3{height:118.335940px;}
.he{height:146.548095px;}
.hc{height:146.548280px;}
.h1{height:146.548382px;}
.hb{height:146.548462px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:127.575005px;}
.x8{left:133.339315px;}
.x6{left:144.492634px;}
.x3{left:147.028279px;}
.x5{left:153.602498px;}
.xf{left:180.450005px;}
.x15{left:191.700005px;}
.xe{left:213.075005px;}
.x7{left:215.407185px;}
.x13{left:243.018027px;}
.x12{left:244.575005px;}
.x17{left:254.700005px;}
.x14{left:275.462843px;}
.x2{left:282.239210px;}
.x9{left:289.837362px;}
.xd{left:301.950005px;}
.x10{left:356.146441px;}
.xb{left:422.981543px;}
.x4{left:467.719205px;}
.xc{left:718.803837px;}
.x16{left:734.906705px;}
.x11{left:747.281705px;}
.xa{left:807.863416px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-8.250000pt;}
._c{margin-left:-6.812478pt;}
._12{margin-left:-5.875000pt;}
._0{margin-left:-4.749981pt;}
._2{margin-left:-3.531248pt;}
._10{margin-left:-2.463146pt;}
._1{margin-left:-1.156249pt;}
._3{width:3.916223pt;}
._b{width:4.844682pt;}
._5{width:7.909328pt;}
._9{width:8.816040pt;}
._4{width:11.975158pt;}
._6{width:15.910486pt;}
._8{width:19.999996pt;}
._7{width:24.000000pt;}
._a{width:27.999998pt;}
._11{width:32.000001pt;}
._f{width:35.999999pt;}
._e{width:39.999998pt;}
.fs4{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.333336pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y5c{bottom:3.108072pt;}
.y20{bottom:3.108073pt;}
.y7d{bottom:79.538413pt;}
.yc1{bottom:83.136065pt;}
.y5a{bottom:87.156252pt;}
.y9e{bottom:98.863932pt;}
.yc0{bottom:101.534503pt;}
.y40{bottom:107.135900pt;}
.y7c{bottom:107.136063pt;}
.y59{bottom:112.454105pt;}
.y91{bottom:115.744145pt;}
.ybf{bottom:119.932940pt;}
.y9d{bottom:124.225905pt;}
.y7b{bottom:134.733723pt;}
.y58{bottom:137.751945pt;}
.ybe{bottom:138.331380pt;}
.y90{bottom:142.097007pt;}
.y9c{bottom:149.523438pt;}
.y3f{bottom:150.733560pt;}
.ybd{bottom:156.729811pt;}
.y7a{bottom:162.331379pt;}
.y8f{bottom:169.694660pt;}
.ybc{bottom:175.128249pt;}
.y3e{bottom:178.331209pt;}
.y79{bottom:189.929035pt;}
.ybb{bottom:193.526687pt;}
.y8e{bottom:197.292313pt;}
.y3d{bottom:205.928705pt;}
.yba{bottom:211.925127pt;}
.y78{bottom:217.526692pt;}
.y8d{bottom:223.834639pt;}
.yb9{bottom:230.323574pt;}
.y3c{bottom:233.526361pt;}
.y77{bottom:245.124348pt;}
.yb8{bottom:248.722011pt;}
.y8c{bottom:250.187497pt;}
.y3b{bottom:261.124017pt;}
.yb7{bottom:267.120449pt;}
.y76{bottom:272.722004pt;}
.y8b{bottom:277.785153pt;}
.yb6{bottom:285.518887pt;}
.y3a{bottom:288.721673pt;}
.y1e{bottom:290.107913pt;}
.y75{bottom:300.319660pt;}
.yb5{bottom:303.917313pt;}
.y8a{bottom:305.382809pt;}
.y39{bottom:316.319332pt;}
.yb4{bottom:322.315758pt;}
.y1d{bottom:324.506353pt;}
.y74{bottom:327.917316pt;}
.y89{bottom:332.980469pt;}
.yb3{bottom:340.714196pt;}
.y38{bottom:343.916992pt;}
.y9b{bottom:345.183593pt;}
.y1c{bottom:350.327963pt;}
.y73{bottom:355.514976pt;}
.yb2{bottom:359.112633pt;}
.y88{bottom:360.578125pt;}
.y37{bottom:371.514653pt;}
.y9a{bottom:371.726559pt;}
.y1b{bottom:373.659991pt;}
.yb1{bottom:377.511073pt;}
.y72{bottom:383.112632pt;}
.y57{bottom:385.412113pt;}
.y87{bottom:388.175781pt;}
.y1a{bottom:388.992023pt;}
.yb0{bottom:395.909500pt;}
.y99{bottom:398.079427pt;}
.y36{bottom:399.112302pt;}
.y19{bottom:404.324052pt;}
.y71{bottom:410.710288pt;}
.y56{bottom:411.955079pt;}
.y86{bottom:415.773438pt;}
.y18{bottom:419.656083pt;}
.yaf{bottom:422.307940pt;}
.y98{bottom:425.677083pt;}
.y35{bottom:426.709963pt;}
.y55{bottom:438.307938pt;}
.y70{bottom:438.307945pt;}
.yde{bottom:442.854172pt;}
.y17{bottom:442.988163pt;}
.y85{bottom:443.371094pt;}
.y97{bottom:453.274740pt;}
.y34{bottom:454.307613pt;}
.y54{bottom:465.905595pt;}
.yae{bottom:465.905598pt;}
.y6f{bottom:465.905601pt;}
.y16{bottom:466.320190pt;}
.ydd{bottom:468.151692pt;}
.y84{bottom:470.968750pt;}
.y96{bottom:479.817052pt;}
.y33{bottom:481.905273pt;}
.ydc{bottom:485.016932pt;}
.y15{bottom:489.652217pt;}
.y53{bottom:493.503251pt;}
.yad{bottom:493.503254pt;}
.y6e{bottom:493.503257pt;}
.y83{bottom:498.566407pt;}
.ydb{bottom:501.882159pt;}
.y14{bottom:504.984249pt;}
.y95{bottom:506.169927pt;}
.y32{bottom:509.502932pt;}
.yda{bottom:518.747399pt;}
.y13{bottom:520.316278pt;}
.y52{bottom:521.100907pt;}
.yac{bottom:521.100910pt;}
.y6d{bottom:521.100913pt;}
.y82{bottom:525.109372pt;}
.y94{bottom:532.712901pt;}
.y12{bottom:535.648310pt;}
.yd9{bottom:535.901046pt;}
.y31{bottom:537.100582pt;}
.y51{bottom:548.698563pt;}
.yab{bottom:548.698567pt;}
.y6c{bottom:548.698568pt;}
.y81{bottom:550.406905pt;}
.yd8{bottom:554.299483pt;}
.y30{bottom:564.698242pt;}
.y11{bottom:567.557167pt;}
.yd7{bottom:572.697921pt;}
.y80{bottom:575.705087pt;}
.yaa{bottom:576.296212pt;}
.y50{bottom:576.296220pt;}
.y6b{bottom:576.296225pt;}
.yd6{bottom:591.096358pt;}
.y2f{bottom:592.295899pt;}
.y10{bottom:601.955647pt;}
.ya9{bottom:603.893872pt;}
.y4f{bottom:603.893878pt;}
.y6a{bottom:603.893881pt;}
.yd5{bottom:609.494796pt;}
.y2e{bottom:619.893554pt;}
.yd4{bottom:627.893233pt;}
.ya8{bottom:631.491532pt;}
.y69{bottom:631.491537pt;}
.y4e{bottom:631.491542pt;}
.yf{bottom:636.354087pt;}
.yd3{bottom:646.291660pt;}
.y2d{bottom:647.491211pt;}
.y4d{bottom:659.089030pt;}
.ya7{bottom:659.089182pt;}
.y68{bottom:659.089193pt;}
.yd2{bottom:664.690104pt;}
.ye{bottom:670.752527pt;}
.y2c{bottom:675.088867pt;}
.yd1{bottom:683.088542pt;}
.y4c{bottom:686.686687pt;}
.ya6{bottom:686.686842pt;}
.y67{bottom:686.686845pt;}
.yd0{bottom:701.486980pt;}
.y2b{bottom:702.686524pt;}
.yd{bottom:705.150956pt;}
.y4b{bottom:713.085127pt;}
.ya5{bottom:714.284498pt;}
.y66{bottom:714.284501pt;}
.ycf{bottom:719.885420pt;}
.yc{bottom:723.549393pt;}
.y2a{bottom:730.284180pt;}
.yce{bottom:738.283860pt;}
.ya4{bottom:741.882154pt;}
.y65{bottom:741.882158pt;}
.ycd{bottom:756.682291pt;}
.y4a{bottom:756.682782pt;}
.y29{bottom:757.881832pt;}
.yb{bottom:757.947836pt;}
.ya3{bottom:769.479811pt;}
.y64{bottom:769.479814pt;}
.ycc{bottom:775.080729pt;}
.ya{bottom:776.346273pt;}
.y49{bottom:784.280432pt;}
.y28{bottom:785.479492pt;}
.ycb{bottom:793.479167pt;}
.ya2{bottom:797.077467pt;}
.y63{bottom:797.077470pt;}
.y9{bottom:810.744716pt;}
.yca{bottom:811.877607pt;}
.y48{bottom:811.878092pt;}
.y27{bottom:813.077148pt;}
.ya1{bottom:824.675123pt;}
.y62{bottom:824.675127pt;}
.y8{bottom:829.143153pt;}
.yc9{bottom:830.276047pt;}
.y47{bottom:839.475748pt;}
.y26{bottom:840.674804pt;}
.yc8{bottom:848.674473pt;}
.y61{bottom:851.073567pt;}
.ya0{bottom:852.272780pt;}
.y7{bottom:863.541580pt;}
.y46{bottom:867.073404pt;}
.yc7{bottom:867.073567pt;}
.y25{bottom:868.272461pt;}
.y93{bottom:869.373047pt;}
.y9f{bottom:878.671224pt;}
.yc6{bottom:885.472005pt;}
.y45{bottom:894.671061pt;}
.y60{bottom:894.671225pt;}
.y24{bottom:895.870117pt;}
.y92{bottom:895.916016pt;}
.y6{bottom:897.940023pt;}
.yc5{bottom:903.870442pt;}
.y44{bottom:922.268717pt;}
.yc4{bottom:922.268879pt;}
.y5f{bottom:922.268881pt;}
.y23{bottom:923.467773pt;}
.y5{bottom:924.338460pt;}
.yc3{bottom:940.667317pt;}
.y4{bottom:945.621003pt;}
.y43{bottom:949.866373pt;}
.y5e{bottom:949.866537pt;}
.y22{bottom:951.065429pt;}
.y7f{bottom:952.166016pt;}
.yc2{bottom:959.065755pt;}
.y21{bottom:977.463867pt;}
.y42{bottom:977.464029pt;}
.y5d{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.y7e{bottom:978.708985pt;}
.y1f{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y41{bottom:992.401529pt;}
.y5b{bottom:992.401693pt;}
.h2{height:39.101563pt;}
.h8{height:44.437500pt;}
.ha{height:47.369790pt;}
.h9{height:47.812499pt;}
.hd{height:52.593751pt;}
.h7{height:55.843750pt;}
.h6{height:56.843750pt;}
.h4{height:57.375000pt;}
.h5{height:75.791669pt;}
.h3{height:105.187502pt;}
.he{height:130.264973pt;}
.hc{height:130.265137pt;}
.h1{height:130.265228pt;}
.hb{height:130.265300pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:113.400004pt;}
.x8{left:118.523835pt;}
.x6{left:128.437897pt;}
.x3{left:130.691804pt;}
.x5{left:136.535554pt;}
.xf{left:160.400004pt;}
.x15{left:170.400004pt;}
.xe{left:189.400004pt;}
.x7{left:191.473053pt;}
.x13{left:216.016024pt;}
.x12{left:217.400004pt;}
.x17{left:226.400004pt;}
.x14{left:244.855860pt;}
.x2{left:250.879298pt;}
.x9{left:257.633210pt;}
.xd{left:268.400004pt;}
.x10{left:316.574614pt;}
.xb{left:375.983594pt;}
.x4{left:415.750404pt;}
.xc{left:638.936744pt;}
.x16{left:653.250404pt;}
.x11{left:664.250404pt;}
.xa{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; }
  