
    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_7b12b193122cb9910bdf7fbd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951000;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_548f8718425fb7a41632223e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960449;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_14cc5e3b4a28c5b180da5291.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_995bd1699a1d2ac9977b9999.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.961000;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_a53510fdb3e359badad84fe6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_74b4f8fdf7433b4078892fa3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899902;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_ea6ec0e4358596e199e24ccc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_c63e2675d3e934d86a66208a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.905762;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_a78533e929d4355c6236069f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.872559;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:ffa;src:url('chunks/assets/font_e1097a6c01b79bbe2b55bef1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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;}
.ls6{letter-spacing:-11.481600px;}
.ls2{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.031200px;}
.ls5{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.044400px;}
.ls0{letter-spacing:0.048000px;}
.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:-106.752000px;}
.ws0{word-spacing:-66.720000px;}
.ws4{word-spacing:-53.376000px;}
.ws3{word-spacing:-48.000000px;}
.ws6{word-spacing:-26.688000px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-42.624000px;}
._1{margin-left:-26.640000px;}
._b{margin-left:-21.312000px;}
._2{margin-left:-18.048000px;}
._10{margin-left:-16.872000px;}
._15{margin-left:-13.248000px;}
._a{margin-left:-11.712000px;}
._5{margin-left:-6.912000px;}
._d{margin-left:-5.826000px;}
._0{margin-left:-4.248000px;}
._4{margin-left:-3.198000px;}
._7{margin-left:-2.112000px;}
._3{margin-left:-1.029600px;}
._c{width:1.368000px;}
._8{width:2.496000px;}
._6{width:4.248000px;}
._14{width:5.670000px;}
._11{width:6.912000px;}
._12{width:216.702000px;}
._13{width:218.293200px;}
._f{width:229.795200px;}
._9{width:305.053200px;}
.fc5{color:rgb(0,0,238);}
.fc3{color:transparent;}
.fc4{color:rgb(228,228,228);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(222,106,16);}
.fs8{font-size:72.000000px;}
.fs9{font-size:96.000000px;}
.fsa{font-size:120.000000px;}
.fs7{font-size:144.000000px;}
.fs3{font-size:156.000000px;}
.fs6{font-size:180.000000px;}
.fs4{font-size:192.000000px;}
.fs2{font-size:240.000000px;}
.fs0{font-size:384.000000px;}
.fs5{font-size:444.000000px;}
.fs1{font-size:450.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:6.536955px;}
.y68{bottom:18.361995px;}
.y6a{bottom:27.361995px;}
.y54{bottom:28.801500px;}
.y51{bottom:37.285500px;}
.y67{bottom:39.361995px;}
.y76{bottom:48.361995px;}
.y66{bottom:60.361995px;}
.y58{bottom:60.362070px;}
.y5{bottom:64.036200px;}
.y53{bottom:75.271650px;}
.y50{bottom:83.755650px;}
.y4{bottom:136.037115px;}
.y7b{bottom:139.038255px;}
.y70{bottom:139.600155px;}
.y61{bottom:150.245250px;}
.y4b{bottom:166.099500px;}
.y7c{bottom:173.360100px;}
.y65{bottom:188.886600px;}
.y40{bottom:195.328950px;}
.y3{bottom:208.038000px;}
.y7a{bottom:229.338300px;}
.y64{bottom:262.986600px;}
.y3f{bottom:285.628950px;}
.y79{bottom:319.638300px;}
.y60{bottom:330.845250px;}
.y45{bottom:332.093400px;}
.y22{bottom:334.043250px;}
.y63{bottom:337.086450px;}
.y31{bottom:350.790000px;}
.y2{bottom:352.038900px;}
.y3e{bottom:359.728950px;}
.y73{bottom:404.945250px;}
.y44{bottom:407.441700px;}
.y4f{bottom:409.919700px;}
.y4e{bottom:411.186450px;}
.y18{bottom:415.944300px;}
.y11{bottom:417.037350px;}
.y5f{bottom:422.393400px;}
.y3d{bottom:433.828950px;}
.y30{bottom:441.090000px;}
.y5d{bottom:442.338300px;}
.y35{bottom:445.705200px;}
.y49{bottom:447.205200px;}
.y17{bottom:490.044300px;}
.y10{bottom:491.137350px;}
.y34{bottom:491.274600px;}
.y48{bottom:493.675350px;}
.y43{bottom:497.741700px;}
.y57{bottom:498.990000px;}
.y4d{bottom:501.485850px;}
.y62{bottom:501.486450px;}
.y5e{bottom:512.693400px;}
.y21{bottom:514.643250px;}
.y6f{bottom:517.686450px;}
.y5c{bottom:532.638300px;}
.y16{bottom:580.854450px;}
.yf{bottom:581.437350px;}
.y72{bottom:586.793400px;}
.y42{bottom:588.041700px;}
.y20{bottom:588.743250px;}
.y78{bottom:591.786450px;}
.y6d{bottom:605.092545px;}
.y75{bottom:606.738300px;}
.y6e{bottom:607.986450px;}
.y3c{bottom:614.428800px;}
.y2f{bottom:621.690000px;}
.y15{bottom:669.942450px;}
.ye{bottom:671.737350px;}
.y71{bottom:678.341700px;}
.y1f{bottom:679.043250px;}
.y2a{bottom:679.589100px;}
.y56{bottom:680.838300px;}
.y69{bottom:682.086450px;}
.y1b{bottom:683.917545px;}
.y27{bottom:694.541700px;}
.y2e{bottom:697.038300px;}
.y3b{bottom:704.728800px;}
.y5b{bottom:713.238300px;}
.y1{bottom:724.114650px;}
.y14{bottom:760.752750px;}
.yd{bottom:762.037350px;}
.y77{bottom:764.242545px;}
.y6c{bottom:764.917545px;}
.y29{bottom:769.889250px;}
.y41{bottom:769.890000px;}
.y55{bottom:771.138300px;}
.y4c{bottom:772.386450px;}
.y26{bottom:786.090000px;}
.y2d{bottom:787.338300px;}
.y3a{bottom:795.028800px;}
.y52{bottom:803.227200px;}
.y33{bottom:830.528700px;}
.y47{bottom:832.028700px;}
.y13{bottom:833.640750px;}
.yc{bottom:836.137350px;}
.y1a{bottom:843.742545px;}
.y1e{bottom:860.891550px;}
.y25{bottom:861.438300px;}
.y2c{bottom:862.686450px;}
.y39{bottom:869.128800px;}
.y32{bottom:876.097950px;}
.y74{bottom:877.638300px;}
.y46{bottom:878.498850px;}
.y6b{bottom:924.742545px;}
.y12{bottom:925.189050px;}
.yb{bottom:926.437350px;}
.y38{bottom:943.228800px;}
.y28{bottom:951.738300px;}
.y1d{bottom:952.439850px;}
.y2b{bottom:952.986450px;}
.y5a{bottom:967.938300px;}
.ya{bottom:1016.737350px;}
.y37{bottom:1033.528800px;}
.y59{bottom:1042.038300px;}
.y24{bottom:1043.286450px;}
.y9{bottom:1107.037350px;}
.y36{bottom:1123.828800px;}
.y1c{bottom:1133.039850px;}
.y23{bottom:1133.586450px;}
.y4a{bottom:1147.363050px;}
.y7{bottom:1270.526400px;}
.y6{bottom:1494.915300px;}
.y8{bottom:1495.083150px;}
.h11{height:49.464844px;}
.hd{height:106.416000px;}
.h3{height:114.943359px;}
.h7{height:115.614759px;}
.hc{height:133.681641px;}
.h10{height:135.459210px;}
.he{height:135.900000px;}
.h5{height:141.888000px;}
.hb{height:142.593750px;}
.ha{height:144.960000px;}
.h6{height:145.536000px;}
.hf{height:152.943150px;}
.h2{height:178.242188px;}
.h4{height:283.776000px;}
.h9{height:313.054688px;}
.h1{height:332.550000px;}
.h8{height:1606.926000px;}
.h0{height:1620.000000px;}
.w1{width:632.755500px;}
.w2{width:727.021350px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x1a{left:30.591750px;}
.x19{left:139.257750px;}
.x1d{left:208.134600px;}
.x1{left:218.650350px;}
.x1c{left:219.758100px;}
.x8{left:307.615650px;}
.x3{left:321.666000px;}
.x9{left:373.984800px;}
.x5{left:386.863500px;}
.x12{left:401.994450px;}
.xa{left:448.984800px;}
.x11{left:507.448200px;}
.x20{left:523.356450px;}
.x25{left:612.761700px;}
.x23{left:707.280750px;}
.x10{left:740.586150px;}
.x7{left:840.502350px;}
.x22{left:873.807750px;}
.x1f{left:973.724100px;}
.x1e{left:988.889700px;}
.x2{left:1073.468700px;}
.x1b{left:1078.037700px;}
.xc{left:1116.432300px;}
.x18{left:1125.170550px;}
.x21{left:1154.216250px;}
.x17{left:1155.762300px;}
.xe{left:1187.460300px;}
.xd{left:1257.758100px;}
.x16{left:1264.428300px;}
.x6{left:1268.716200px;}
.x15{left:1286.172300px;}
.x14{left:1297.795800px;}
.xb{left:1326.532500px;}
.x24{left:1849.635000px;}
.x13{left:2003.094000px;}
.x26{left:2057.416500px;}
.xf{left:2583.814500px;}
.x4{left:2605.504500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-10.205867pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.027733pt;}
.ls5{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.039467pt;}
.ls0{letter-spacing:0.042667pt;}
.ws2{word-spacing:-94.890667pt;}
.ws0{word-spacing:-59.306667pt;}
.ws4{word-spacing:-47.445333pt;}
.ws3{word-spacing:-42.666667pt;}
.ws6{word-spacing:-23.722667pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-37.888000pt;}
._1{margin-left:-23.680000pt;}
._b{margin-left:-18.944000pt;}
._2{margin-left:-16.042667pt;}
._10{margin-left:-14.997333pt;}
._15{margin-left:-11.776000pt;}
._a{margin-left:-10.410667pt;}
._5{margin-left:-6.144000pt;}
._d{margin-left:-5.178667pt;}
._0{margin-left:-3.776000pt;}
._4{margin-left:-2.842667pt;}
._7{margin-left:-1.877333pt;}
._3{margin-left:-0.915200pt;}
._c{width:1.216000pt;}
._8{width:2.218667pt;}
._6{width:3.776000pt;}
._14{width:5.040000pt;}
._11{width:6.144000pt;}
._12{width:192.624000pt;}
._13{width:194.038400pt;}
._f{width:204.262400pt;}
._9{width:271.158400pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:85.333333pt;}
.fsa{font-size:106.666667pt;}
.fs7{font-size:128.000000pt;}
.fs3{font-size:138.666667pt;}
.fs6{font-size:160.000000pt;}
.fs4{font-size:170.666667pt;}
.fs2{font-size:213.333333pt;}
.fs0{font-size:341.333333pt;}
.fs5{font-size:394.666667pt;}
.fs1{font-size:400.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:5.810627pt;}
.y68{bottom:16.321773pt;}
.y6a{bottom:24.321773pt;}
.y54{bottom:25.601333pt;}
.y51{bottom:33.142667pt;}
.y67{bottom:34.988440pt;}
.y76{bottom:42.988440pt;}
.y66{bottom:53.655107pt;}
.y58{bottom:53.655173pt;}
.y5{bottom:56.921067pt;}
.y53{bottom:66.908133pt;}
.y50{bottom:74.449467pt;}
.y4{bottom:120.921880pt;}
.y7b{bottom:123.589560pt;}
.y70{bottom:124.089027pt;}
.y61{bottom:133.551333pt;}
.y4b{bottom:147.644000pt;}
.y7c{bottom:154.097867pt;}
.y65{bottom:167.899200pt;}
.y40{bottom:173.625733pt;}
.y3{bottom:184.922667pt;}
.y7a{bottom:203.856267pt;}
.y64{bottom:233.765867pt;}
.y3f{bottom:253.892400pt;}
.y79{bottom:284.122933pt;}
.y60{bottom:294.084667pt;}
.y45{bottom:295.194133pt;}
.y22{bottom:296.927333pt;}
.y63{bottom:299.632400pt;}
.y31{bottom:311.813333pt;}
.y2{bottom:312.923467pt;}
.y3e{bottom:319.759067pt;}
.y73{bottom:359.951333pt;}
.y44{bottom:362.170400pt;}
.y4f{bottom:364.373067pt;}
.y4e{bottom:365.499067pt;}
.y18{bottom:369.728267pt;}
.y11{bottom:370.699867pt;}
.y5f{bottom:375.460800pt;}
.y3d{bottom:385.625733pt;}
.y30{bottom:392.080000pt;}
.y5d{bottom:393.189600pt;}
.y35{bottom:396.182400pt;}
.y49{bottom:397.515733pt;}
.y17{bottom:435.594933pt;}
.y10{bottom:436.566533pt;}
.y34{bottom:436.688533pt;}
.y48{bottom:438.822533pt;}
.y43{bottom:442.437067pt;}
.y57{bottom:443.546667pt;}
.y4d{bottom:445.765200pt;}
.y62{bottom:445.765733pt;}
.y5e{bottom:455.727467pt;}
.y21{bottom:457.460667pt;}
.y6f{bottom:460.165733pt;}
.y5c{bottom:473.456267pt;}
.y16{bottom:516.315067pt;}
.yf{bottom:516.833200pt;}
.y72{bottom:521.594133pt;}
.y42{bottom:522.703733pt;}
.y20{bottom:523.327333pt;}
.y78{bottom:526.032400pt;}
.y6d{bottom:537.860040pt;}
.y75{bottom:539.322933pt;}
.y6e{bottom:540.432400pt;}
.y3c{bottom:546.158933pt;}
.y2f{bottom:552.613333pt;}
.y15{bottom:595.504400pt;}
.ye{bottom:597.099867pt;}
.y71{bottom:602.970400pt;}
.y1f{bottom:603.594000pt;}
.y2a{bottom:604.079200pt;}
.y56{bottom:605.189600pt;}
.y69{bottom:606.299067pt;}
.y1b{bottom:607.926707pt;}
.y27{bottom:617.370400pt;}
.y2e{bottom:619.589600pt;}
.y3b{bottom:626.425600pt;}
.y5b{bottom:633.989600pt;}
.y1{bottom:643.657467pt;}
.y14{bottom:676.224667pt;}
.yd{bottom:677.366533pt;}
.y77{bottom:679.326707pt;}
.y6c{bottom:679.926707pt;}
.y29{bottom:684.346000pt;}
.y41{bottom:684.346667pt;}
.y55{bottom:685.456267pt;}
.y4c{bottom:686.565733pt;}
.y26{bottom:698.746667pt;}
.y2d{bottom:699.856267pt;}
.y3a{bottom:706.692267pt;}
.y52{bottom:713.979733pt;}
.y33{bottom:738.247733pt;}
.y47{bottom:739.581067pt;}
.y13{bottom:741.014000pt;}
.yc{bottom:743.233200pt;}
.y1a{bottom:749.993373pt;}
.y1e{bottom:765.236933pt;}
.y25{bottom:765.722933pt;}
.y2c{bottom:766.832400pt;}
.y39{bottom:772.558933pt;}
.y32{bottom:778.753733pt;}
.y74{bottom:780.122933pt;}
.y46{bottom:780.887867pt;}
.y6b{bottom:821.993373pt;}
.y12{bottom:822.390267pt;}
.yb{bottom:823.499867pt;}
.y38{bottom:838.425600pt;}
.y28{bottom:845.989600pt;}
.y1d{bottom:846.613200pt;}
.y2b{bottom:847.099067pt;}
.y5a{bottom:860.389600pt;}
.ya{bottom:903.766533pt;}
.y37{bottom:918.692267pt;}
.y59{bottom:926.256267pt;}
.y24{bottom:927.365733pt;}
.y9{bottom:984.033200pt;}
.y36{bottom:998.958933pt;}
.y1c{bottom:1007.146533pt;}
.y23{bottom:1007.632400pt;}
.y4a{bottom:1019.878267pt;}
.y7{bottom:1129.356800pt;}
.y6{bottom:1328.813600pt;}
.y8{bottom:1328.962800pt;}
.h11{height:43.968750pt;}
.hd{height:94.592000pt;}
.h3{height:102.171875pt;}
.h7{height:102.768675pt;}
.hc{height:118.828125pt;}
.h10{height:120.408187pt;}
.he{height:120.800000pt;}
.h5{height:126.122667pt;}
.hb{height:126.750000pt;}
.ha{height:128.853333pt;}
.h6{height:129.365333pt;}
.hf{height:135.949467pt;}
.h2{height:158.437500pt;}
.h4{height:252.245333pt;}
.h9{height:278.270833pt;}
.h1{height:295.600000pt;}
.h8{height:1428.378667pt;}
.h0{height:1440.000000pt;}
.w1{width:562.449333pt;}
.w2{width:646.241200pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:27.192667pt;}
.x19{left:123.784667pt;}
.x1d{left:185.008533pt;}
.x1{left:194.355867pt;}
.x1c{left:195.340533pt;}
.x8{left:273.436133pt;}
.x3{left:285.925333pt;}
.x9{left:332.430933pt;}
.x5{left:343.878667pt;}
.x12{left:357.328400pt;}
.xa{left:399.097600pt;}
.x11{left:451.065067pt;}
.x20{left:465.205733pt;}
.x25{left:544.677067pt;}
.x23{left:628.694000pt;}
.x10{left:658.298800pt;}
.x7{left:747.113200pt;}
.x22{left:776.718000pt;}
.x1f{left:865.532533pt;}
.x1e{left:879.013067pt;}
.x2{left:954.194400pt;}
.x1b{left:958.255733pt;}
.xc{left:992.384267pt;}
.x18{left:1000.151600pt;}
.x21{left:1025.970000pt;}
.x17{left:1027.344267pt;}
.xe{left:1055.520267pt;}
.xd{left:1118.007200pt;}
.x16{left:1123.936267pt;}
.x6{left:1127.747733pt;}
.x15{left:1143.264267pt;}
.x14{left:1153.596267pt;}
.xb{left:1179.140000pt;}
.x24{left:1644.120000pt;}
.x13{left:1780.528000pt;}
.x26{left:1828.814667pt;}
.xf{left:2296.724000pt;}
.x4{left:2316.004000pt;}
}




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