
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7dd43539f8b8b2b0fbc7595e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.985352;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_7cc0de0dbc45c58ce60f0617.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.907715;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_d89de25c855faa9c08f2ea20.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.219898,-0.118932,0.118932,0.219898,0,0);-ms-transform:matrix(0.219898,-0.118932,0.118932,0.219898,0,0);-webkit-transform:matrix(0.219898,-0.118932,0.118932,0.219898,0,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);}
.m2{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:18.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:-25.848196px;}
.ws3{word-spacing:-16.130651px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:1105.832250px;}
._1{margin-left:-7.887150px;}
._0{margin-left:-6.594525px;}
.fc5{color:transparent;}
.fc3{color:rgb(33,128,18);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(16,16,16);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:41.265000px;}
.fsb{font-size:50.670000px;}
.fsc{font-size:53.055000px;}
.fsa{font-size:61.290000px;}
.fsd{font-size:68.355000px;}
.fs7{font-size:70.740000px;}
.fs2{font-size:78.975000px;}
.fs1{font-size:83.115000px;}
.fs5{font-size:87.795000px;}
.fs0{font-size:94.320000px;}
.fs8{font-size:106.110000px;}
.fs6{font-size:106.110974px;}
.fs3{font-size:117.900000px;}
.fse{font-size:141.480000px;}
.fs4{font-size:165.060000px;}
.fs9{font-size:188.640000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:21.375000px;}
.y1c{bottom:46.125000px;}
.y20{bottom:114.750000px;}
.y11{bottom:135.000000px;}
.y1f{bottom:151.875000px;}
.yf{bottom:249.750000px;}
.y10{bottom:254.250000px;}
.ye{bottom:316.125000px;}
.y1{bottom:382.500000px;}
.y37{bottom:456.750000px;}
.y2f{bottom:457.875000px;}
.y3b{bottom:471.375000px;}
.y2e{bottom:475.875000px;}
.y2d{bottom:493.875000px;}
.y2c{bottom:511.875000px;}
.y2b{bottom:589.500000px;}
.y2a{bottom:606.375000px;}
.y29{bottom:623.250000px;}
.y28{bottom:640.125000px;}
.y27{bottom:657.000000px;}
.y36{bottom:704.250000px;}
.y24{bottom:747.000000px;}
.y26{bottom:749.250000px;}
.y32{bottom:767.250000px;}
.y25{bottom:770.625000px;}
.y23{bottom:771.750000px;}
.y31{bottom:790.875000px;}
.y22{bottom:796.500000px;}
.y30{bottom:814.500000px;}
.y35{bottom:833.625000px;}
.y3a{bottom:859.500000px;}
.y33{bottom:865.125000px;}
.y39{bottom:883.125000px;}
.y38{bottom:906.750000px;}
.y34{bottom:956.250000px;}
.y1e{bottom:1150.875000px;}
.y21{bottom:1181.250000px;}
.y15{bottom:1208.250000px;}
.y1b{bottom:1217.250000px;}
.y14{bottom:1240.875000px;}
.y1a{bottom:1273.500000px;}
.y17{bottom:1279.145951px;}
.y16{bottom:1322.243334px;}
.y18{bottom:1327.931143px;}
.y19{bottom:1330.875000px;}
.y13{bottom:1408.500000px;}
.y12{bottom:1464.750000px;}
.yd{bottom:1569.375000px;}
.yc{bottom:1597.500000px;}
.yb{bottom:1625.625000px;}
.ya{bottom:1653.750000px;}
.y9{bottom:1798.875000px;}
.y8{bottom:1822.500000px;}
.y7{bottom:1869.750000px;}
.y6{bottom:1893.375000px;}
.y5{bottom:1940.625000px;}
.y4{bottom:1969.875000px;}
.y3{bottom:1993.500000px;}
.y2{bottom:2017.125000px;}
.h12{height:39.201750px;}
.he{height:48.136500px;}
.hf{height:50.402250px;}
.h9{height:51.984229px;}
.hd{height:58.225500px;}
.h10{height:64.937250px;}
.hc{height:67.203000px;}
.h7{height:67.775339px;}
.h3{height:75.026250px;}
.h2{height:78.959250px;}
.ha{height:81.914019px;}
.h1{height:89.604000px;}
.h5{height:91.015576px;}
.h8{height:100.805426px;}
.h4{height:107.604000px;}
.hb{height:131.716406px;}
.h11{height:134.406000px;}
.h6{height:156.807000px;}
.h0{height:2248.500000px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.xa9{left:10.396913px;}
.x7b{left:23.625000px;}
.xa2{left:27.607050px;}
.x7d{left:36.925650px;}
.x98{left:40.271175px;}
.x99{left:56.281838px;}
.x9a{left:59.701275px;}
.x7e{left:68.845500px;}
.xaa{left:76.361400px;}
.xab{left:79.780950px;}
.x75{left:86.227967px;}
.x74{left:87.873378px;}
.xac{left:90.993713px;}
.xb1{left:98.780288px;}
.x1{left:105.431288px;}
.x62{left:108.394200px;}
.x54{left:109.418963px;}
.x9b{left:112.544438px;}
.x9c{left:115.963988px;}
.x2{left:117.594563px;}
.xa3{left:130.258238px;}
.xa4{left:133.677788px;}
.xb2{left:138.661200px;}
.x63{left:141.254100px;}
.x55{left:142.278863px;}
.xa5{left:145.380938px;}
.x64{left:147.335738px;}
.x56{left:148.360500px;}
.x3{left:150.454463px;}
.xad{left:153.021713px;}
.x4{left:156.536100px;}
.xe{left:165.907463px;}
.x71{left:168.874763px;}
.x9d{left:169.893900px;}
.x9e{left:173.313450px;}
.x76{left:176.428616px;}
.x65{left:178.993350px;}
.x57{left:180.018113px;}
.x5{left:183.589088px;}
.x66{left:187.667888px;}
.x58{left:188.692763px;}
.x6{left:192.793500px;}
.x82{left:202.677638px;}
.xae{left:204.049125px;}
.x80{left:206.178975px;}
.xaf{left:207.468675px;}
.x72{left:208.794488px;}
.xa6{left:212.339475px;}
.x84{left:218.919938px;}
.xa7{left:220.132800px;}
.xa8{left:223.552238px;}
.xd{left:227.710013px;}
.x73{left:239.155650px;}
.x7{left:240.166125px;}
.x9f{left:241.782975px;}
.x8{left:245.526638px;}
.x3d{left:246.686175px;}
.x85{left:248.027062px;}
.xa0{left:249.430388px;}
.xf{left:250.450987px;}
.x86{left:252.589388px;}
.x10{left:255.811500px;}
.xa1{left:267.906263px;}
.x34{left:270.109800px;}
.xb0{left:274.387500px;}
.x6b{left:277.711313px;}
.x81{left:282.660188px;}
.x9{left:285.481800px;}
.xa{left:290.842313px;}
.x87{left:292.996238px;}
.x83{left:294.649650px;}
.xb{left:327.369150px;}
.x27{left:328.928625px;}
.xc{left:332.729663px;}
.x3e{left:336.435975px;}
.x4b{left:349.723125px;}
.x4c{left:354.052913px;}
.x7c{left:355.338113px;}
.x11{left:363.147863px;}
.x4d{left:366.114262px;}
.x70{left:369.087300px;}
.x4e{left:370.444050px;}
.x28{left:373.332038px;}
.x29{left:377.661713px;}
.x88{left:382.012763px;}
.x6c{left:386.544263px;}
.x35{left:392.335425px;}
.x36{left:396.052313px;}
.x6d{left:397.188338px;}
.x2a{left:399.050213px;}
.x2b{left:403.379887px;}
.x3f{left:415.696050px;}
.xc2{left:418.360500px;}
.x40{left:420.025725px;}
.xc1{left:421.743488px;}
.x7f{left:425.156850px;}
.x8f{left:426.819263px;}
.x41{left:432.134325px;}
.x37{left:434.075175px;}
.x42{left:436.464000px;}
.x38{left:437.792063px;}
.x89{left:441.953775px;}
.x8a{left:445.903875px;}
.x6e{left:449.583300px;}
.x92{left:455.095462px;}
.x6f{left:460.227263px;}
.x96{left:462.119737px;}
.x93{left:463.334738px;}
.xc3{left:466.585650px;}
.x4f{left:473.937075px;}
.x8b{left:475.346137px;}
.x50{left:478.266750px;}
.x8c{left:479.296238px;}
.x2c{left:482.458950px;}
.xc4{left:484.189425px;}
.x95{left:485.286975px;}
.x90{left:487.847250px;}
.x2d{left:490.104788px;}
.x91{left:491.797350px;}
.x8d{left:495.494888px;}
.x8e{left:499.444988px;}
.x94{left:503.480363px;}
.x51{left:504.699750px;}
.x59{left:507.396488px;}
.x52{left:509.029425px;}
.x39{left:523.086638px;}
.x43{left:525.781800px;}
.x3a{left:527.416313px;}
.x44{left:530.111475px;}
.x97{left:531.273600px;}
.x67{left:533.929613px;}
.x5d{left:537.635025px;}
.x12{left:539.789062px;}
.x5e{left:543.716662px;}
.x5a{left:546.337913px;}
.xc5{left:554.130000px;}
.xc6{left:557.549550px;}
.x2e{left:569.230987px;}
.x68{left:571.668863px;}
.x2f{left:572.947762px;}
.x45{left:575.387100px;}
.xc7{left:576.515813px;}
.x5b{left:577.995525px;}
.x46{left:579.716888px;}
.x5f{left:584.048925px;}
.x5c{left:586.670175px;}
.x30{left:600.087937px;}
.x31{left:603.804713px;}
.x69{left:615.442725px;}
.x60{left:619.148138px;}
.x6a{left:624.117375px;}
.x61{left:627.822675px;}
.x47{left:628.881863px;}
.x53{left:632.299950px;}
.x1d{left:633.847612px;}
.xb3{left:638.490600px;}
.x1e{left:640.741612px;}
.x23{left:643.517438px;}
.x77{left:648.109688px;}
.x13{left:649.923638px;}
.x14{left:653.370638px;}
.x19{left:655.961400px;}
.x1f{left:658.295438px;}
.x1a{left:659.408400px;}
.x20{left:661.742438px;}
.xb4{left:663.837638px;}
.x48{left:666.866138px;}
.x1b{left:676.962225px;}
.x1c{left:680.409225px;}
.x15{left:684.991800px;}
.x16{left:688.438800px;}
.xb5{left:691.961063px;}
.x3b{left:693.715388px;}
.xb6{left:696.369262px;}
.x3c{left:698.045063px;}
.x49{left:703.498275px;}
.x4a{left:707.828063px;}
.x32{left:713.064825px;}
.x33{left:716.781600px;}
.x78{left:719.133188px;}
.x24{left:722.798100px;}
.x79{left:725.214825px;}
.x25{left:726.245100px;}
.x7a{left:729.547763px;}
.xb8{left:733.960013px;}
.xb7{left:735.410588px;}
.xb9{left:736.617600px;}
.x17{left:745.948800px;}
.x18{left:749.395800px;}
.x21{left:752.353988px;}
.x22{left:755.800988px;}
.x26{left:759.062813px;}
.xba{left:790.542113px;}
.xbb{left:792.787613px;}
.xbc{left:809.866350px;}
.xbd{left:815.809838px;}
.xbe{left:830.169113px;}
.xbf{left:833.959800px;}
.xc0{left:847.793700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-22.976174pt;}
.ws3{word-spacing:-14.338357pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:982.962000pt;}
._1{margin-left:-7.010800pt;}
._0{margin-left:-5.861800pt;}
.fsf{font-size:36.680000pt;}
.fsb{font-size:45.040000pt;}
.fsc{font-size:47.160000pt;}
.fsa{font-size:54.480000pt;}
.fsd{font-size:60.760000pt;}
.fs7{font-size:62.880000pt;}
.fs2{font-size:70.200000pt;}
.fs1{font-size:73.880000pt;}
.fs5{font-size:78.040000pt;}
.fs0{font-size:83.840000pt;}
.fs8{font-size:94.320000pt;}
.fs6{font-size:94.320866pt;}
.fs3{font-size:104.800000pt;}
.fse{font-size:125.760000pt;}
.fs4{font-size:146.720000pt;}
.fs9{font-size:167.680000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:19.000000pt;}
.y1c{bottom:41.000000pt;}
.y20{bottom:102.000000pt;}
.y11{bottom:120.000000pt;}
.y1f{bottom:135.000000pt;}
.yf{bottom:222.000000pt;}
.y10{bottom:226.000000pt;}
.ye{bottom:281.000000pt;}
.y1{bottom:340.000000pt;}
.y37{bottom:406.000000pt;}
.y2f{bottom:407.000000pt;}
.y3b{bottom:419.000000pt;}
.y2e{bottom:423.000000pt;}
.y2d{bottom:439.000000pt;}
.y2c{bottom:455.000000pt;}
.y2b{bottom:524.000000pt;}
.y2a{bottom:539.000000pt;}
.y29{bottom:554.000000pt;}
.y28{bottom:569.000000pt;}
.y27{bottom:584.000000pt;}
.y36{bottom:626.000000pt;}
.y24{bottom:664.000000pt;}
.y26{bottom:666.000000pt;}
.y32{bottom:682.000000pt;}
.y25{bottom:685.000000pt;}
.y23{bottom:686.000000pt;}
.y31{bottom:703.000000pt;}
.y22{bottom:708.000000pt;}
.y30{bottom:724.000000pt;}
.y35{bottom:741.000000pt;}
.y3a{bottom:764.000000pt;}
.y33{bottom:769.000000pt;}
.y39{bottom:785.000000pt;}
.y38{bottom:806.000000pt;}
.y34{bottom:850.000000pt;}
.y1e{bottom:1023.000000pt;}
.y21{bottom:1050.000000pt;}
.y15{bottom:1074.000000pt;}
.y1b{bottom:1082.000000pt;}
.y14{bottom:1103.000000pt;}
.y1a{bottom:1132.000000pt;}
.y17{bottom:1137.018623pt;}
.y16{bottom:1175.327408pt;}
.y18{bottom:1180.383239pt;}
.y19{bottom:1183.000000pt;}
.y13{bottom:1252.000000pt;}
.y12{bottom:1302.000000pt;}
.yd{bottom:1395.000000pt;}
.yc{bottom:1420.000000pt;}
.yb{bottom:1445.000000pt;}
.ya{bottom:1470.000000pt;}
.y9{bottom:1599.000000pt;}
.y8{bottom:1620.000000pt;}
.y7{bottom:1662.000000pt;}
.y6{bottom:1683.000000pt;}
.y5{bottom:1725.000000pt;}
.y4{bottom:1751.000000pt;}
.y3{bottom:1772.000000pt;}
.y2{bottom:1793.000000pt;}
.h12{height:34.846000pt;}
.he{height:42.788000pt;}
.hf{height:44.802000pt;}
.h9{height:46.208203pt;}
.hd{height:51.756000pt;}
.h10{height:57.722000pt;}
.hc{height:59.736000pt;}
.h7{height:60.244746pt;}
.h3{height:66.690000pt;}
.h2{height:70.186000pt;}
.ha{height:72.812461pt;}
.h1{height:79.648000pt;}
.h5{height:80.902734pt;}
.h8{height:89.604823pt;}
.h4{height:95.648000pt;}
.hb{height:117.081250pt;}
.h11{height:119.472000pt;}
.h6{height:139.384000pt;}
.h0{height:1998.666667pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.xa9{left:9.241700pt;}
.x7b{left:21.000000pt;}
.xa2{left:24.539600pt;}
.x7d{left:32.822800pt;}
.x98{left:35.796600pt;}
.x99{left:50.028300pt;}
.x9a{left:53.067800pt;}
.x7e{left:61.196000pt;}
.xaa{left:67.876800pt;}
.xab{left:70.916400pt;}
.x75{left:76.647082pt;}
.x74{left:78.109669pt;}
.xac{left:80.883300pt;}
.xb1{left:87.804700pt;}
.x1{left:93.716700pt;}
.x62{left:96.350400pt;}
.x54{left:97.261300pt;}
.x9b{left:100.039500pt;}
.x9c{left:103.079100pt;}
.x2{left:104.528500pt;}
.xa3{left:115.785100pt;}
.xa4{left:118.824700pt;}
.xb2{left:123.254400pt;}
.x63{left:125.559200pt;}
.x55{left:126.470100pt;}
.xa5{left:129.227500pt;}
.x64{left:130.965100pt;}
.x56{left:131.876000pt;}
.x3{left:133.737300pt;}
.xad{left:136.019300pt;}
.x4{left:139.143200pt;}
.xe{left:147.473300pt;}
.x71{left:150.110900pt;}
.x9d{left:151.016800pt;}
.x9e{left:154.056400pt;}
.x76{left:156.825436pt;}
.x65{left:159.105200pt;}
.x57{left:160.016100pt;}
.x5{left:163.190300pt;}
.x66{left:166.815900pt;}
.x58{left:167.726900pt;}
.x6{left:171.372000pt;}
.x82{left:180.157900pt;}
.xae{left:181.377000pt;}
.x80{left:183.270200pt;}
.xaf{left:184.416600pt;}
.x72{left:185.595100pt;}
.xa6{left:188.746200pt;}
.x84{left:194.595500pt;}
.xa7{left:195.673600pt;}
.xa8{left:198.713100pt;}
.xd{left:202.408900pt;}
.x73{left:212.582800pt;}
.x7{left:213.481000pt;}
.x9f{left:214.918200pt;}
.x8{left:218.245900pt;}
.x3d{left:219.276600pt;}
.x85{left:220.468500pt;}
.xa0{left:221.715900pt;}
.xf{left:222.623100pt;}
.x86{left:224.523900pt;}
.x10{left:227.388000pt;}
.xa1{left:238.138900pt;}
.x34{left:240.097600pt;}
.xb0{left:243.900000pt;}
.x6b{left:246.854500pt;}
.x81{left:251.253500pt;}
.x9{left:253.761600pt;}
.xa{left:258.526500pt;}
.x87{left:260.441100pt;}
.x83{left:261.910800pt;}
.xb{left:290.994800pt;}
.x27{left:292.381000pt;}
.xc{left:295.759700pt;}
.x3e{left:299.054200pt;}
.x4b{left:310.865000pt;}
.x4c{left:314.713700pt;}
.x7c{left:315.856100pt;}
.x11{left:322.798100pt;}
.x4d{left:325.434900pt;}
.x70{left:328.077600pt;}
.x4e{left:329.283600pt;}
.x28{left:331.850700pt;}
.x29{left:335.699300pt;}
.x88{left:339.566900pt;}
.x6c{left:343.594900pt;}
.x35{left:348.742600pt;}
.x36{left:352.046500pt;}
.x6d{left:353.056300pt;}
.x2a{left:354.711300pt;}
.x2b{left:358.559900pt;}
.x3f{left:369.507600pt;}
.xc2{left:371.876000pt;}
.x40{left:373.356200pt;}
.xc1{left:374.883100pt;}
.x7f{left:377.917200pt;}
.x8f{left:379.394900pt;}
.x41{left:384.119400pt;}
.x37{left:385.844600pt;}
.x42{left:387.968000pt;}
.x38{left:389.148500pt;}
.x89{left:392.847800pt;}
.x8a{left:396.359000pt;}
.x6e{left:399.629600pt;}
.x92{left:404.529300pt;}
.x6f{left:409.090900pt;}
.x96{left:410.773100pt;}
.x93{left:411.853100pt;}
.xc3{left:414.742800pt;}
.x4f{left:421.277400pt;}
.x8b{left:422.529900pt;}
.x50{left:425.126000pt;}
.x8c{left:426.041100pt;}
.x2c{left:428.852400pt;}
.xc4{left:430.390600pt;}
.x95{left:431.366200pt;}
.x90{left:433.642000pt;}
.x2d{left:435.648700pt;}
.x91{left:437.153200pt;}
.x8d{left:440.439900pt;}
.x8e{left:443.951100pt;}
.x94{left:447.538100pt;}
.x51{left:448.622000pt;}
.x59{left:451.019100pt;}
.x52{left:452.470600pt;}
.x39{left:464.965900pt;}
.x43{left:467.361600pt;}
.x3a{left:468.814500pt;}
.x44{left:471.210200pt;}
.x97{left:472.243200pt;}
.x67{left:474.604100pt;}
.x5d{left:477.897800pt;}
.x12{left:479.812500pt;}
.x5e{left:483.303700pt;}
.x5a{left:485.633700pt;}
.xc5{left:492.560000pt;}
.xc6{left:495.599600pt;}
.x2e{left:505.983100pt;}
.x68{left:508.150100pt;}
.x2f{left:509.286900pt;}
.x45{left:511.455200pt;}
.xc7{left:512.458500pt;}
.x5b{left:513.773800pt;}
.x46{left:515.303900pt;}
.x5f{left:519.154600pt;}
.x5c{left:521.484600pt;}
.x30{left:533.411500pt;}
.x31{left:536.715300pt;}
.x69{left:547.060200pt;}
.x60{left:550.353900pt;}
.x6a{left:554.771000pt;}
.x61{left:558.064600pt;}
.x47{left:559.006100pt;}
.x53{left:562.044400pt;}
.x1d{left:563.420100pt;}
.xb3{left:567.547200pt;}
.x1e{left:569.548100pt;}
.x23{left:572.015500pt;}
.x77{left:576.097500pt;}
.x13{left:577.709900pt;}
.x14{left:580.773900pt;}
.x19{left:583.076800pt;}
.x1f{left:585.151500pt;}
.x1a{left:586.140800pt;}
.x20{left:588.215500pt;}
.xb4{left:590.077900pt;}
.x48{left:592.769900pt;}
.x1b{left:601.744200pt;}
.x1c{left:604.808200pt;}
.x15{left:608.881600pt;}
.x16{left:611.945600pt;}
.xb5{left:615.076500pt;}
.x3b{left:616.635900pt;}
.xb6{left:618.994900pt;}
.x3c{left:620.484500pt;}
.x49{left:625.331800pt;}
.x4a{left:629.180500pt;}
.x32{left:633.835400pt;}
.x33{left:637.139200pt;}
.x78{left:639.229500pt;}
.x24{left:642.487200pt;}
.x79{left:644.635400pt;}
.x25{left:645.551200pt;}
.x7a{left:648.486900pt;}
.xb8{left:652.408900pt;}
.xb7{left:653.698300pt;}
.xb9{left:654.771200pt;}
.x17{left:663.065600pt;}
.x18{left:666.129600pt;}
.x21{left:668.759100pt;}
.x22{left:671.823100pt;}
.x26{left:674.722500pt;}
.xba{left:702.704100pt;}
.xbb{left:704.700100pt;}
.xbc{left:719.881200pt;}
.xbd{left:725.164300pt;}
.xbe{left:737.928100pt;}
.xbf{left:741.297600pt;}
.xc0{left:753.594400pt;}
}




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