
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6de17c5228257fed03711a76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_96b499864f80321654af9265.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_0a72533209b856af99118295.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_0d7951e36338fcfb924fbee8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_307174901cbd385953d5c358.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_6c4700af8c18b7fafa978324.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_2e3a0b92204d6d8556caf7ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.370200px;}
.ls9{letter-spacing:-0.326400px;}
.ls16{letter-spacing:-0.187200px;}
.ls14{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.010800px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.013200px;}
.lsd{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.211680px;}
.lsf{letter-spacing:0.319680px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.385800px;}
.ls15{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.732960px;}
.ls10{letter-spacing:12.052800px;}
.ls12{letter-spacing:47.466720px;}
.lse{letter-spacing:64.026720px;}
.ls11{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.ws4{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsc{word-spacing:-13.111200px;}
.wsd{word-spacing:-13.093920px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._c{margin-left:-3.857769px;}
._8{margin-left:-2.821199px;}
._0{margin-left:-1.159200px;}
._1{width:1.164000px;}
._5{width:2.916958px;}
._6{width:4.327685px;}
._f{width:5.451840px;}
._4{width:6.723603px;}
._3{width:7.828799px;}
._e{width:8.876039px;}
._7{width:10.041005px;}
._2{width:11.115599px;}
._d{width:12.144960px;}
._a{width:15.628800px;}
._9{width:17.165520px;}
._b{width:18.792720px;}
._12{width:32.964720px;}
._13{width:35.568960px;}
._10{width:54.956400px;}
._11{width:56.348880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.296000px;}
.y26{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.y24{bottom:134.496000px;}
.y23{bottom:152.130000px;}
.y22{bottom:187.590000px;}
.y4f{bottom:188.310000px;}
.y21{bottom:205.230000px;}
.y4e{bottom:205.950000px;}
.y20{bottom:222.870000px;}
.y4d{bottom:223.410000px;}
.y4c{bottom:241.050000px;}
.y1f{bottom:249.690000px;}
.y4b{bottom:276.510000px;}
.y4a{bottom:294.150000px;}
.y1e{bottom:297.930000px;}
.y49{bottom:311.835000px;}
.y1d{bottom:315.615000px;}
.y48{bottom:329.475000px;}
.y71{bottom:336.315000px;}
.y1c{bottom:351.255000px;}
.y70{bottom:353.955000px;}
.y47{bottom:356.115000px;}
.y1b{bottom:368.895000px;}
.y6f{bottom:380.415000px;}
.y1a{bottom:386.355000px;}
.y19{bottom:403.995000px;}
.y46{bottom:404.535000px;}
.y6e{bottom:407.055000px;}
.y18{bottom:421.635000px;}
.y45{bottom:422.175000px;}
.y6d{bottom:424.695000px;}
.y44{bottom:439.815000px;}
.y6c{bottom:451.155000px;}
.y17{bottom:457.095000px;}
.y6b{bottom:468.795000px;}
.y16{bottom:474.735000px;}
.y43{bottom:475.275000px;}
.y15{bottom:492.375000px;}
.y42{bottom:492.735000px;}
.y6a{bottom:495.435000px;}
.y14{bottom:510.015000px;}
.y41{bottom:511.275000px;}
.y69{bottom:513.075000px;}
.y40{bottom:528.735000px;}
.y13{bottom:536.655000px;}
.y68{bottom:539.535000px;}
.y3f{bottom:547.275000px;}
.y67{bottom:557.175000px;}
.y3e{bottom:564.735000px;}
.y66{bottom:583.665000px;}
.y12{bottom:585.105000px;}
.y3d{bottom:601.305000px;}
.y11{bottom:602.925000px;}
.y65{bottom:627.945000px;}
.y3c{bottom:628.125000px;}
.y10{bottom:640.005000px;}
.y64{bottom:645.585000px;}
.yf{bottom:657.645000px;}
.y63{bottom:672.045000px;}
.ye{bottom:675.285000px;}
.y3b{bottom:676.545000px;}
.yd{bottom:692.745000px;}
.y3a{bottom:694.185000px;}
.y62{bottom:698.685000px;}
.yc{bottom:710.385000px;}
.y39{bottom:711.645000px;}
.y61{bottom:725.325000px;}
.yb{bottom:728.025000px;}
.y38{bottom:729.285000px;}
.y60{bottom:742.965000px;}
.ya{bottom:754.665000px;}
.y37{bottom:764.925000px;}
.y5f{bottom:769.425000px;}
.y36{bottom:782.565000px;}
.y5e{bottom:787.065000px;}
.y35{bottom:800.025000px;}
.y9{bottom:803.085000px;}
.y5d{bottom:804.705000px;}
.y5c{bottom:831.165000px;}
.y34{bottom:835.665000px;}
.y8{bottom:838.905000px;}
.y33{bottom:853.305000px;}
.y5b{bottom:857.805000px;}
.y32{bottom:870.810000px;}
.y7{bottom:874.950000px;}
.y5a{bottom:884.310000px;}
.y31{bottom:888.450000px;}
.y59{bottom:901.950000px;}
.y6{bottom:910.950000px;}
.y30{bottom:923.910000px;}
.y58{bottom:928.770000px;}
.y2f{bottom:941.550000px;}
.y5{bottom:947.130000px;}
.y2e{bottom:959.190000px;}
.y2d{bottom:976.830000px;}
.y57{bottom:977.190000px;}
.y4{bottom:985.290000px;}
.y56{bottom:994.830000px;}
.y2c{bottom:1003.650000px;}
.y3{bottom:1009.950000px;}
.y55{bottom:1012.470000px;}
.y54{bottom:1047.930000px;}
.y2b{bottom:1051.890000px;}
.y53{bottom:1065.570000px;}
.y2a{bottom:1069.530000px;}
.y52{bottom:1083.210000px;}
.y29{bottom:1087.170000px;}
.y51{bottom:1100.670000px;}
.y28{bottom:1122.630000px;}
.y50{bottom:1127.490000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h3{height:38.405391px;}
.h6{height:50.597578px;}
.h5{height:56.084062px;}
.h8{height:61.423863px;}
.h7{height:68.956875px;}
.h4{height:71.324297px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x6{left:111.275987px;}
.x4{left:122.075987px;}
.x5{left:149.075987px;}
.x2{left:209.729987px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.329067pt;}
.ls9{letter-spacing:-0.290133pt;}
.ls16{letter-spacing:-0.166400pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.011733pt;}
.lsd{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.188160pt;}
.lsf{letter-spacing:0.284160pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.342933pt;}
.ls15{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.651520pt;}
.ls10{letter-spacing:10.713600pt;}
.ls12{letter-spacing:42.192640pt;}
.lse{letter-spacing:56.912640pt;}
.ls11{letter-spacing:72.272640pt;}
.wsb{word-spacing:-53.120000pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.ws4{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsc{word-spacing:-11.654400pt;}
.wsd{word-spacing:-11.639040pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._c{margin-left:-3.429128pt;}
._8{margin-left:-2.507732pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.034667pt;}
._5{width:2.592852pt;}
._6{width:3.846831pt;}
._f{width:4.846080pt;}
._4{width:5.976536pt;}
._3{width:6.958932pt;}
._e{width:7.889812pt;}
._7{width:8.925338pt;}
._2{width:9.880532pt;}
._d{width:10.795520pt;}
._a{width:13.892267pt;}
._9{width:15.258240pt;}
._b{width:16.704640pt;}
._12{width:29.301973pt;}
._13{width:31.616853pt;}
._10{width:48.850133pt;}
._11{width:50.087893pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.152000pt;}
.y26{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.y24{bottom:119.552000pt;}
.y23{bottom:135.226667pt;}
.y22{bottom:166.746667pt;}
.y4f{bottom:167.386667pt;}
.y21{bottom:182.426667pt;}
.y4e{bottom:183.066667pt;}
.y20{bottom:198.106667pt;}
.y4d{bottom:198.586667pt;}
.y4c{bottom:214.266667pt;}
.y1f{bottom:221.946667pt;}
.y4b{bottom:245.786667pt;}
.y4a{bottom:261.466667pt;}
.y1e{bottom:264.826667pt;}
.y49{bottom:277.186667pt;}
.y1d{bottom:280.546667pt;}
.y48{bottom:292.866667pt;}
.y71{bottom:298.946667pt;}
.y1c{bottom:312.226667pt;}
.y70{bottom:314.626667pt;}
.y47{bottom:316.546667pt;}
.y1b{bottom:327.906667pt;}
.y6f{bottom:338.146667pt;}
.y1a{bottom:343.426667pt;}
.y19{bottom:359.106667pt;}
.y46{bottom:359.586667pt;}
.y6e{bottom:361.826667pt;}
.y18{bottom:374.786667pt;}
.y45{bottom:375.266667pt;}
.y6d{bottom:377.506667pt;}
.y44{bottom:390.946667pt;}
.y6c{bottom:401.026667pt;}
.y17{bottom:406.306667pt;}
.y6b{bottom:416.706667pt;}
.y16{bottom:421.986667pt;}
.y43{bottom:422.466667pt;}
.y15{bottom:437.666667pt;}
.y42{bottom:437.986667pt;}
.y6a{bottom:440.386667pt;}
.y14{bottom:453.346667pt;}
.y41{bottom:454.466667pt;}
.y69{bottom:456.066667pt;}
.y40{bottom:469.986667pt;}
.y13{bottom:477.026667pt;}
.y68{bottom:479.586667pt;}
.y3f{bottom:486.466667pt;}
.y67{bottom:495.266667pt;}
.y3e{bottom:501.986667pt;}
.y66{bottom:518.813333pt;}
.y12{bottom:520.093333pt;}
.y3d{bottom:534.493333pt;}
.y11{bottom:535.933333pt;}
.y65{bottom:558.173333pt;}
.y3c{bottom:558.333333pt;}
.y10{bottom:568.893333pt;}
.y64{bottom:573.853333pt;}
.yf{bottom:584.573333pt;}
.y63{bottom:597.373333pt;}
.ye{bottom:600.253333pt;}
.y3b{bottom:601.373333pt;}
.yd{bottom:615.773333pt;}
.y3a{bottom:617.053333pt;}
.y62{bottom:621.053333pt;}
.yc{bottom:631.453333pt;}
.y39{bottom:632.573333pt;}
.y61{bottom:644.733333pt;}
.yb{bottom:647.133333pt;}
.y38{bottom:648.253333pt;}
.y60{bottom:660.413333pt;}
.ya{bottom:670.813333pt;}
.y37{bottom:679.933333pt;}
.y5f{bottom:683.933333pt;}
.y36{bottom:695.613333pt;}
.y5e{bottom:699.613333pt;}
.y35{bottom:711.133333pt;}
.y9{bottom:713.853333pt;}
.y5d{bottom:715.293333pt;}
.y5c{bottom:738.813333pt;}
.y34{bottom:742.813333pt;}
.y8{bottom:745.693333pt;}
.y33{bottom:758.493333pt;}
.y5b{bottom:762.493333pt;}
.y32{bottom:774.053333pt;}
.y7{bottom:777.733333pt;}
.y5a{bottom:786.053333pt;}
.y31{bottom:789.733333pt;}
.y59{bottom:801.733333pt;}
.y6{bottom:809.733333pt;}
.y30{bottom:821.253333pt;}
.y58{bottom:825.573333pt;}
.y2f{bottom:836.933333pt;}
.y5{bottom:841.893333pt;}
.y2e{bottom:852.613333pt;}
.y2d{bottom:868.293333pt;}
.y57{bottom:868.613333pt;}
.y4{bottom:875.813333pt;}
.y56{bottom:884.293333pt;}
.y2c{bottom:892.133333pt;}
.y3{bottom:897.733333pt;}
.y55{bottom:899.973333pt;}
.y54{bottom:931.493333pt;}
.y2b{bottom:935.013333pt;}
.y53{bottom:947.173333pt;}
.y2a{bottom:950.693333pt;}
.y52{bottom:962.853333pt;}
.y29{bottom:966.373333pt;}
.y51{bottom:978.373333pt;}
.y28{bottom:997.893333pt;}
.y50{bottom:1002.213333pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h3{height:34.138125pt;}
.h6{height:44.975625pt;}
.h5{height:49.852500pt;}
.h8{height:54.598989pt;}
.h7{height:61.295000pt;}
.h4{height:63.399375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x6{left:98.911988pt;}
.x4{left:108.511988pt;}
.x5{left:132.511988pt;}
.x2{left:186.426655pt;}
.x3{left:711.493322pt;}
}




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