
    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_a5cda192ddfa72d35f74074c.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_6b083d780313b5433fb1f4a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_eda0a0eaf668703fec4d253b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_16f6c5b586d03404cc2e2a42.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_709f65b61975407e94de6b92.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_c06b9e962d4ce6f58ea5c1a1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_92182813b0fce692de50489d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_af94ab9c5e6b31385db251d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.870117;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;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:9.000000px;}
.ls0{letter-spacing:193.500000px;}
.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:-40.605468px;}
.ws3{word-spacing:-18.336914px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-112.500000px;}
._8{margin-left:-9.281250px;}
._3{margin-left:-7.776135px;}
._2{margin-left:-5.462853px;}
._9{margin-left:-2.611981px;}
._1{margin-left:-1.024490px;}
._b{width:4.500000px;}
._7{width:6.036458px;}
._a{width:9.000003px;}
._6{width:10.009113px;}
._c{width:13.500002px;}
._10{width:22.500002px;}
._14{width:27.000222px;}
._11{width:31.499953px;}
._e{width:36.000012px;}
._d{width:40.500000px;}
._f{width:45.000000px;}
._12{width:49.289066px;}
._13{width:50.497997px;}
._4{width:54.210936px;}
._18{width:116.999997px;}
._17{width:121.500000px;}
._5{width:198.000000px;}
._16{width:292.499988px;}
._15{width:296.999999px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.999997px;}
.fs1{font-size:90.000000px;}
.fs2{font-size:101.999997px;}
.y0{bottom:0.000000px;}
.y9b{bottom:14.791992px;}
.y12{bottom:37.195312px;}
.y2{bottom:38.523194px;}
.y91{bottom:132.821783px;}
.y74{bottom:139.869139px;}
.y11{bottom:150.661017px;}
.y58{bottom:152.916503px;}
.y73{bottom:170.916503px;}
.y94{bottom:175.662597px;}
.y90{bottom:178.869142px;}
.y3c{bottom:179.282234px;}
.y57{bottom:195.963874px;}
.y98{bottom:201.007317px;}
.y3b{bottom:201.101444px;}
.y10{bottom:207.882942px;}
.y72{bottom:213.963863px;}
.y3a{bottom:222.921014px;}
.y56{bottom:227.011238px;}
.y8f{bottom:227.916503px;}
.y39{bottom:244.740239px;}
.y71{bottom:257.011238px;}
.y8e{bottom:258.963863px;}
.yf{bottom:265.104852px;}
.y38{bottom:266.559629px;}
.y55{bottom:270.058588px;}
.y70{bottom:288.058598px;}
.y37{bottom:288.379034px;}
.y8d{bottom:290.011238px;}
.y54{bottom:301.105951px;}
.y36{bottom:310.198424px;}
.ye{bottom:322.326777px;}
.y9d{bottom:324.757317px;}
.y6f{bottom:331.105954px;}
.y35{bottom:332.017829px;}
.y53{bottom:332.153314px;}
.y8c{bottom:333.058594px;}
.y96{bottom:340.507317px;}
.y34{bottom:353.837219px;}
.y6e{bottom:362.153318px;}
.y52{bottom:363.200677px;}
.y8b{bottom:364.105957px;}
.y33{bottom:375.656624px;}
.yd{bottom:379.548702px;}
.y32{bottom:397.476014px;}
.y6d{bottom:405.200686px;}
.y51{bottom:406.248043px;}
.y8a{bottom:407.153326px;}
.y9a{bottom:408.007319px;}
.y31{bottom:419.295404px;}
.y6c{bottom:436.248049px;}
.y50{bottom:437.295406px;}
.y89{bottom:438.200689px;}
.yc{bottom:440.331293px;}
.y30{bottom:441.114809px;}
.y2f{bottom:462.934199px;}
.y6b{bottom:467.295413px;}
.y4f{bottom:468.342769px;}
.y88{bottom:469.248053px;}
.y2e{bottom:484.753604px;}
.y4e{bottom:499.390133px;}
.yb{bottom:505.315058px;}
.y2d{bottom:506.572994px;}
.y6a{bottom:510.342775px;}
.y87{bottom:512.295412px;}
.y2c{bottom:528.392399px;}
.y69{bottom:541.390143px;}
.y4d{bottom:542.437492px;}
.y86{bottom:543.342779px;}
.ya{bottom:549.298823px;}
.y2b{bottom:550.211789px;}
.y97{bottom:566.624997px;}
.y2a{bottom:572.031194px;}
.y68{bottom:572.437506px;}
.y85{bottom:574.390135px;}
.y4c{bottom:585.484868px;}
.y29{bottom:593.850584px;}
.y67{bottom:603.484869px;}
.y84{bottom:605.437503px;}
.y9{bottom:610.721922px;}
.y28{bottom:615.669989px;}
.y9c{bottom:617.249997px;}
.y4b{bottom:628.532228px;}
.y99{bottom:631.874997px;}
.y66{bottom:634.532233px;}
.y83{bottom:636.484866px;}
.y27{bottom:637.489379px;}
.y26{bottom:659.308784px;}
.y65{bottom:665.579596px;}
.y82{bottom:667.532229px;}
.ya1{bottom:670.412849px;}
.y8{bottom:671.504513px;}
.y4a{bottom:671.579588px;}
.y25{bottom:681.128174px;}
.ya0{bottom:692.233154px;}
.y64{bottom:696.626959px;}
.y81{bottom:698.579593px;}
.y24{bottom:702.947564px;}
.y95{bottom:707.249997px;}
.y49{bottom:714.626948px;}
.y23{bottom:724.766969px;}
.y63{bottom:727.674322px;}
.y80{bottom:729.626956px;}
.y7{bottom:736.488278px;}
.y9f{bottom:736.952633px;}
.y93{bottom:746.030271px;}
.y22{bottom:746.586359px;}
.y48{bottom:757.674309px;}
.y7f{bottom:760.674319px;}
.y21{bottom:768.405764px;}
.y62{bottom:770.721676px;}
.y9e{bottom:785.999997px;}
.y47{bottom:788.721673px;}
.y20{bottom:790.225154px;}
.y7e{bottom:791.721683px;}
.y6{bottom:801.472043px;}
.y61{bottom:801.769039px;}
.y1f{bottom:812.044559px;}
.y46{bottom:819.769036px;}
.y60{bottom:832.816399px;}
.y1e{bottom:833.863949px;}
.y7d{bottom:834.769044px;}
.y45{bottom:850.816399px;}
.y1d{bottom:855.683354px;}
.y5f{bottom:863.863762px;}
.y7c{bottom:865.816408px;}
.y5{bottom:866.455808px;}
.y1c{bottom:877.502744px;}
.y44{bottom:881.863762px;}
.y7b{bottom:896.863771px;}
.y1b{bottom:899.322149px;}
.y5e{bottom:906.911132px;}
.y1a{bottom:921.141539px;}
.y43{bottom:924.911133px;}
.y7a{bottom:927.911134px;}
.y4{bottom:929.065792px;}
.y5d{bottom:937.958495px;}
.y19{bottom:942.960944px;}
.y42{bottom:955.958497px;}
.y79{bottom:958.958498px;}
.y18{bottom:962.331293px;}
.y5c{bottom:969.005858px;}
.y41{bottom:987.005860px;}
.y17{bottom:987.529538px;}
.y3{bottom:988.874994px;}
.y5b{bottom:1000.053222px;}
.y78{bottom:1002.005860px;}
.y16{bottom:1012.727783px;}
.y40{bottom:1018.053223px;}
.y77{bottom:1033.053223px;}
.y15{bottom:1037.926026px;}
.y5a{bottom:1043.100586px;}
.y3f{bottom:1049.100586px;}
.y76{bottom:1064.100586px;}
.y14{bottom:1083.973390px;}
.y59{bottom:1089.147949px;}
.y3e{bottom:1092.147950px;}
.y75{bottom:1095.147950px;}
.y92{bottom:1107.147949px;}
.y13{bottom:1135.394531px;}
.y3d{bottom:1138.195312px;}
.y1{bottom:1155.000000px;}
.h2{height:43.989259px;}
.hd{height:48.082032px;}
.h9{height:48.796875px;}
.ha{height:49.992188px;}
.h7{height:56.929685px;}
.hc{height:59.167970px;}
.h8{height:64.546875px;}
.hb{height:64.546889px;}
.h6{height:69.128904px;}
.h5{height:75.304685px;}
.h3{height:80.683594px;}
.h4{height:91.441404px;}
.h1{height:108.000000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x6{left:121.413970px;}
.xb{left:135.000000px;}
.xc{left:137.929838px;}
.x4{left:145.251918px;}
.x7{left:159.552175px;}
.x5{left:333.117248px;}
.xd{left:348.445463px;}
.x8{left:360.066600px;}
.x2{left:418.523726px;}
.x3{left:446.456700px;}
.x9{left:507.505286px;}
.x12{left:563.625000px;}
.x10{left:594.000000px;}
.x16{left:630.000000px;}
.x15{left:632.250000px;}
.xf{left:633.375000px;}
.x11{left:639.000000px;}
.x14{left:643.500000px;}
.xe{left:648.000000px;}
.x17{left:655.875000px;}
.x13{left:672.750000px;}
.xa{left:784.913411px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:8.000000pt;}
.ls0{letter-spacing:172.000000pt;}
.ws2{word-spacing:-36.093750pt;}
.ws3{word-spacing:-16.299479pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-100.000000pt;}
._8{margin-left:-8.250000pt;}
._3{margin-left:-6.912120pt;}
._2{margin-left:-4.855870pt;}
._9{margin-left:-2.321761pt;}
._1{margin-left:-0.910658pt;}
._b{width:4.000000pt;}
._7{width:5.365740pt;}
._a{width:8.000002pt;}
._6{width:8.896989pt;}
._c{width:12.000002pt;}
._10{width:20.000002pt;}
._14{width:24.000198pt;}
._11{width:27.999958pt;}
._e{width:32.000010pt;}
._d{width:36.000000pt;}
._f{width:40.000000pt;}
._12{width:43.812503pt;}
._13{width:44.887109pt;}
._4{width:48.187499pt;}
._18{width:103.999997pt;}
._17{width:108.000000pt;}
._5{width:176.000000pt;}
._16{width:259.999990pt;}
._15{width:263.999999pt;}
.fs0{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666664pt;}
.fs1{font-size:80.000000pt;}
.fs2{font-size:90.666664pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:13.148437pt;}
.y12{bottom:33.062500pt;}
.y2{bottom:34.242839pt;}
.y91{bottom:118.063807pt;}
.y74{bottom:124.328124pt;}
.y11{bottom:133.920904pt;}
.y58{bottom:135.925780pt;}
.y73{bottom:151.925780pt;}
.y94{bottom:156.144531pt;}
.y90{bottom:158.994793pt;}
.y3c{bottom:159.361985pt;}
.y57{bottom:174.190110pt;}
.y98{bottom:178.673171pt;}
.y3b{bottom:178.756839pt;}
.y10{bottom:184.784837pt;}
.y72{bottom:190.190100pt;}
.y3a{bottom:198.152012pt;}
.y56{bottom:201.787767pt;}
.y8f{bottom:202.592447pt;}
.y39{bottom:217.546879pt;}
.y71{bottom:228.454433pt;}
.y8e{bottom:230.190100pt;}
.yf{bottom:235.648757pt;}
.y38{bottom:236.941892pt;}
.y55{bottom:240.052078pt;}
.y70{bottom:256.052087pt;}
.y37{bottom:256.336919pt;}
.y8d{bottom:257.787767pt;}
.y54{bottom:267.649734pt;}
.y36{bottom:275.731932pt;}
.ye{bottom:286.512691pt;}
.y9d{bottom:288.673171pt;}
.y6f{bottom:294.316404pt;}
.y35{bottom:295.126959pt;}
.y53{bottom:295.247390pt;}
.y8c{bottom:296.052083pt;}
.y96{bottom:302.673171pt;}
.y34{bottom:314.521972pt;}
.y6e{bottom:321.914060pt;}
.y52{bottom:322.845047pt;}
.y8b{bottom:323.649740pt;}
.y33{bottom:333.916999pt;}
.yd{bottom:337.376624pt;}
.y32{bottom:353.312012pt;}
.y6d{bottom:360.178388pt;}
.y51{bottom:361.109372pt;}
.y8a{bottom:361.914068pt;}
.y9a{bottom:362.673173pt;}
.y31{bottom:372.707025pt;}
.y6c{bottom:387.776044pt;}
.y50{bottom:388.707028pt;}
.y89{bottom:389.511724pt;}
.yc{bottom:391.405594pt;}
.y30{bottom:392.102052pt;}
.y2f{bottom:411.497065pt;}
.y6b{bottom:415.373700pt;}
.y4f{bottom:416.304684pt;}
.y88{bottom:417.109380pt;}
.y2e{bottom:430.892092pt;}
.y4e{bottom:443.902340pt;}
.yb{bottom:449.168941pt;}
.y2d{bottom:450.287105pt;}
.y6a{bottom:453.638022pt;}
.y87{bottom:455.373699pt;}
.y2c{bottom:469.682132pt;}
.y69{bottom:481.235682pt;}
.y4d{bottom:482.166660pt;}
.y86{bottom:482.971359pt;}
.ya{bottom:488.265621pt;}
.y2b{bottom:489.077145pt;}
.y97{bottom:503.666664pt;}
.y2a{bottom:508.472172pt;}
.y68{bottom:508.833338pt;}
.y85{bottom:510.569009pt;}
.y4c{bottom:520.430993pt;}
.y29{bottom:527.867185pt;}
.y67{bottom:536.430994pt;}
.y84{bottom:538.166669pt;}
.y9{bottom:542.863931pt;}
.y28{bottom:547.262212pt;}
.y9c{bottom:548.666664pt;}
.y4b{bottom:558.695313pt;}
.y99{bottom:561.666664pt;}
.y66{bottom:564.028651pt;}
.y83{bottom:565.764325pt;}
.y27{bottom:566.657225pt;}
.y26{bottom:586.052252pt;}
.y65{bottom:591.626307pt;}
.y82{bottom:593.361981pt;}
.ya1{bottom:595.922532pt;}
.y8{bottom:596.892901pt;}
.y4a{bottom:596.959633pt;}
.y25{bottom:605.447265pt;}
.ya0{bottom:615.318359pt;}
.y64{bottom:619.223963pt;}
.y81{bottom:620.959638pt;}
.y24{bottom:624.842279pt;}
.y95{bottom:628.666664pt;}
.y49{bottom:635.223953pt;}
.y23{bottom:644.237305pt;}
.y63{bottom:646.821620pt;}
.y80{bottom:648.557294pt;}
.y7{bottom:654.656248pt;}
.y9f{bottom:655.069007pt;}
.y93{bottom:663.138019pt;}
.y22{bottom:663.632319pt;}
.y48{bottom:673.488274pt;}
.y7f{bottom:676.154950pt;}
.y21{bottom:683.027345pt;}
.y62{bottom:685.085934pt;}
.y9e{bottom:698.666664pt;}
.y47{bottom:701.085931pt;}
.y20{bottom:702.422359pt;}
.y7e{bottom:703.752607pt;}
.y6{bottom:712.419594pt;}
.y61{bottom:712.683590pt;}
.y1f{bottom:721.817385pt;}
.y46{bottom:728.683587pt;}
.y60{bottom:740.281243pt;}
.y1e{bottom:741.212399pt;}
.y7d{bottom:742.016928pt;}
.y45{bottom:756.281243pt;}
.y1d{bottom:760.607425pt;}
.y5f{bottom:767.878900pt;}
.y7c{bottom:769.614585pt;}
.y5{bottom:770.182941pt;}
.y1c{bottom:780.002439pt;}
.y44{bottom:783.878900pt;}
.y7b{bottom:797.212241pt;}
.y1b{bottom:799.397465pt;}
.y5e{bottom:806.143229pt;}
.y1a{bottom:818.792479pt;}
.y43{bottom:822.143229pt;}
.y7a{bottom:824.809897pt;}
.y4{bottom:825.836259pt;}
.y5d{bottom:833.740885pt;}
.y19{bottom:838.187505pt;}
.y42{bottom:849.740886pt;}
.y79{bottom:852.407553pt;}
.y18{bottom:855.405593pt;}
.y5c{bottom:861.338541pt;}
.y41{bottom:877.338542pt;}
.y17{bottom:877.804033pt;}
.y3{bottom:878.999995pt;}
.y5b{bottom:888.936197pt;}
.y78{bottom:890.671876pt;}
.y16{bottom:900.202473pt;}
.y40{bottom:904.936198pt;}
.y77{bottom:918.269532pt;}
.y15{bottom:922.600912pt;}
.y5a{bottom:927.200521pt;}
.y3f{bottom:932.533855pt;}
.y76{bottom:945.867188pt;}
.y14{bottom:963.531902pt;}
.y59{bottom:968.131510pt;}
.y3e{bottom:970.798177pt;}
.y75{bottom:973.464844pt;}
.y92{bottom:984.131510pt;}
.y13{bottom:1009.239583pt;}
.y3d{bottom:1011.729167pt;}
.y1{bottom:1026.666667pt;}
.h2{height:39.101563pt;}
.hd{height:42.739584pt;}
.h9{height:43.375000pt;}
.ha{height:44.437500pt;}
.h7{height:50.604165pt;}
.hc{height:52.593751pt;}
.h8{height:57.375000pt;}
.hb{height:57.375013pt;}
.h6{height:61.447915pt;}
.h5{height:66.937498pt;}
.h3{height:71.718750pt;}
.h4{height:81.281248pt;}
.h1{height:96.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x6{left:107.923529pt;}
.xb{left:120.000000pt;}
.xc{left:122.604300pt;}
.x4{left:129.112816pt;}
.x7{left:141.824156pt;}
.x5{left:296.104220pt;}
.xd{left:309.729300pt;}
.x8{left:320.059200pt;}
.x2{left:372.021090pt;}
.x3{left:396.850400pt;}
.x9{left:451.115810pt;}
.x12{left:501.000000pt;}
.x10{left:528.000000pt;}
.x16{left:560.000000pt;}
.x15{left:562.000000pt;}
.xf{left:563.000000pt;}
.x11{left:568.000000pt;}
.x14{left:572.000000pt;}
.xe{left:576.000000pt;}
.x17{left:583.000000pt;}
.x13{left:598.000000pt;}
.xa{left:697.700810pt;}
}




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