
    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_a77afd60aa7ea64956e2d967.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_27b3e71501812fe53388634e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_4ffd752a8773a4f1e0e9eff2.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c147e562941ef0c2c48771c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_9fd449f344c26fec6f6a7805.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_fe04e11d4061ee1bca50edf0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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:-97.200000px;}
.v2{vertical-align:-96.000000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.096000px;}
.lse{letter-spacing:0.372000px;}
.ls10{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.888000px;}
.ls4{letter-spacing:4.200000px;}
.lsa{letter-spacing:5.400000px;}
.lsf{letter-spacing:11.400000px;}
.ls5{letter-spacing:16.200000px;}
.ls8{letter-spacing:22.140000px;}
.lsb{letter-spacing:36.600000px;}
.ls7{letter-spacing:41.400000px;}
.lsc{letter-spacing:52.200000px;}
.ls2{letter-spacing:57.000000px;}
.ls0{letter-spacing:863.730000px;}
.lsd{letter-spacing:963.330000px;}
.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;}
}
.ws3{word-spacing:-21.648000px;}
.ws2{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-2.976000px;}
._1{margin-left:-1.176000px;}
._0{width:1.008000px;}
._2{width:2.556000px;}
._3{width:3.564000px;}
._1c{width:4.788000px;}
._1b{width:6.048000px;}
._15{width:7.728000px;}
._9{width:8.904000px;}
._8{width:10.164000px;}
._1d{width:11.340000px;}
._a{width:12.870000px;}
._d{width:13.944000px;}
._13{width:15.372000px;}
._34{width:16.542000px;}
._24{width:18.060000px;}
._23{width:19.236000px;}
._22{width:22.446000px;}
._12{width:23.754000px;}
._c{width:24.864000px;}
._b{width:26.208000px;}
._e{width:27.636000px;}
._f{width:28.812000px;}
._7{width:30.492000px;}
._21{width:31.542000px;}
._30{width:33.600000px;}
._31{width:34.674000px;}
._2d{width:36.624000px;}
._2e{width:38.094000px;}
._17{width:40.824000px;}
._16{width:41.916000px;}
._18{width:43.008000px;}
._19{width:44.436000px;}
._28{width:45.942000px;}
._29{width:46.944000px;}
._2a{width:48.474000px;}
._32{width:49.854000px;}
._4{width:51.240000px;}
._5{width:52.752000px;}
._6{width:54.012000px;}
._10{width:55.944000px;}
._11{width:56.946000px;}
._42{width:58.302000px;}
._3f{width:59.304000px;}
._41{width:60.312000px;}
._40{width:61.566000px;}
._14{width:62.916000px;}
._1e{width:64.260000px;}
._1f{width:65.352000px;}
._25{width:66.408000px;}
._37{width:67.788000px;}
._20{width:68.796000px;}
._33{width:72.660000px;}
._2f{width:80.052000px;}
._26{width:81.060000px;}
._27{width:82.152000px;}
._3e{width:83.244000px;}
._36{width:84.588000px;}
._35{width:85.764000px;}
._3c{width:92.148000px;}
._3b{width:93.492000px;}
._39{width:99.372000px;}
._3a{width:101.304000px;}
._38{width:103.236000px;}
._2b{width:114.912000px;}
._2c{width:116.676000px;}
._3d{width:136.164000px;}
._43{width:843.330000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:4.485000px;}
.y54{bottom:5.085000px;}
.y57{bottom:5.385000px;}
.y55{bottom:17.385000px;}
.y4f{bottom:28.785000px;}
.y53{bottom:29.385000px;}
.y50{bottom:52.830000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y5f{bottom:95.437500px;}
.y2e{bottom:96.037500px;}
.y5b{bottom:119.137500px;}
.y2d{bottom:120.037500px;}
.y5a{bottom:143.137500px;}
.y2c{bottom:144.337500px;}
.y59{bottom:167.475000px;}
.y2b{bottom:167.775000px;}
.y5e{bottom:168.375000px;}
.y58{bottom:190.875000px;}
.y2a{bottom:192.675000px;}
.y56{bottom:210.390000px;}
.y29{bottom:216.675000px;}
.y52{bottom:234.690000px;}
.y28{bottom:240.975000px;}
.y27{bottom:264.975000px;}
.y4e{bottom:282.990000px;}
.y26{bottom:289.275000px;}
.y5d{bottom:312.675000px;}
.y25{bottom:313.275000px;}
.y24{bottom:337.620000px;}
.y4d{bottom:360.120000px;}
.y23{bottom:361.620000px;}
.y4c{bottom:384.705000px;}
.y22{bottom:385.905000px;}
.y4b{bottom:408.405000px;}
.y21{bottom:409.905000px;}
.y4a{bottom:433.005000px;}
.y20{bottom:434.205000px;}
.y49{bottom:457.320000px;}
.y1f{bottom:458.205000px;}
.y48{bottom:481.320000px;}
.y1e{bottom:482.505000px;}
.y47{bottom:505.650000px;}
.y1d{bottom:506.550000px;}
.y46{bottom:529.650000px;}
.y1c{bottom:530.850000px;}
.y45{bottom:553.950000px;}
.y1b{bottom:554.850000px;}
.y44{bottom:577.950000px;}
.y1a{bottom:579.150000px;}
.y43{bottom:602.250000px;}
.y60{bottom:602.550000px;}
.y19{bottom:603.150000px;}
.y42{bottom:626.250000px;}
.y18{bottom:626.850000px;}
.y36{bottom:627.450000px;}
.y41{bottom:650.550000px;}
.y17{bottom:651.450000px;}
.y40{bottom:674.580000px;}
.y16{bottom:675.780000px;}
.y3f{bottom:698.880000px;}
.y15{bottom:699.780000px;}
.y3e{bottom:722.880000px;}
.y14{bottom:724.080000px;}
.y3d{bottom:746.580000px;}
.y13{bottom:748.080000px;}
.y3c{bottom:771.195000px;}
.y12{bottom:772.380000px;}
.y3b{bottom:795.480000px;}
.y35{bottom:795.795000px;}
.y11{bottom:796.380000px;}
.y3a{bottom:819.480000px;}
.y10{bottom:820.695000px;}
.y39{bottom:843.825000px;}
.yf{bottom:844.725000px;}
.y38{bottom:867.825000px;}
.ye{bottom:869.025000px;}
.y37{bottom:887.025000px;}
.yd{bottom:893.025000px;}
.y5c{bottom:916.725000px;}
.yc{bottom:917.325000px;}
.yb{bottom:941.325000px;}
.ya{bottom:965.025000px;}
.y34{bottom:965.625000px;}
.y9{bottom:989.625000px;}
.y33{bottom:1013.355000px;}
.y8{bottom:1013.955000px;}
.y7{bottom:1037.955000px;}
.y6{bottom:1062.255000px;}
.y32{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y31{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y30{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2f{bottom:1158.870000px;}
.h9{height:24.285000px;}
.h8{height:48.285000px;}
.h6{height:58.898438px;}
.h3{height:61.670545px;}
.h7{height:72.322500px;}
.h4{height:72.638672px;}
.h2{height:82.441406px;}
.h5{height:84.656250px;}
.ha{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:82.822500px;}
.w2{width:139.819500px;}
.w5{width:140.122500px;}
.w4{width:159.615000px;}
.w6{width:178.845000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.085000px;}
.xb{left:10.500000px;}
.xa{left:77.137500px;}
.x2{left:84.937500px;}
.x3{left:95.437500px;}
.x5{left:127.537500px;}
.xc{left:216.975000px;}
.x7{left:234.975000px;}
.x6{left:251.775000px;}
.x8{left:284.775000px;}
.xd{left:299.820000px;}
.x4{left:305.220000px;}
.x1{left:430.650000px;}
.xf{left:459.450000px;}
.x10{left:599.595000px;}
.x9{left:629.280000px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v2{vertical-align:-85.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.330667pt;}
.ls10{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.789333pt;}
.ls4{letter-spacing:3.733333pt;}
.lsa{letter-spacing:4.800000pt;}
.lsf{letter-spacing:10.133333pt;}
.ls5{letter-spacing:14.400000pt;}
.ls8{letter-spacing:19.680000pt;}
.lsb{letter-spacing:32.533333pt;}
.ls7{letter-spacing:36.800000pt;}
.lsc{letter-spacing:46.400000pt;}
.ls2{letter-spacing:50.666667pt;}
.ls0{letter-spacing:767.760000pt;}
.lsd{letter-spacing:856.293333pt;}
.ws3{word-spacing:-19.242667pt;}
.ws2{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-2.645333pt;}
._1{margin-left:-1.045333pt;}
._0{width:0.896000pt;}
._2{width:2.272000pt;}
._3{width:3.168000pt;}
._1c{width:4.256000pt;}
._1b{width:5.376000pt;}
._15{width:6.869333pt;}
._9{width:7.914667pt;}
._8{width:9.034667pt;}
._1d{width:10.080000pt;}
._a{width:11.440000pt;}
._d{width:12.394667pt;}
._13{width:13.664000pt;}
._34{width:14.704000pt;}
._24{width:16.053333pt;}
._23{width:17.098667pt;}
._22{width:19.952000pt;}
._12{width:21.114667pt;}
._c{width:22.101333pt;}
._b{width:23.296000pt;}
._e{width:24.565333pt;}
._f{width:25.610667pt;}
._7{width:27.104000pt;}
._21{width:28.037333pt;}
._30{width:29.866667pt;}
._31{width:30.821333pt;}
._2d{width:32.554667pt;}
._2e{width:33.861333pt;}
._17{width:36.288000pt;}
._16{width:37.258667pt;}
._18{width:38.229333pt;}
._19{width:39.498667pt;}
._28{width:40.837333pt;}
._29{width:41.728000pt;}
._2a{width:43.088000pt;}
._32{width:44.314667pt;}
._4{width:45.546667pt;}
._5{width:46.890667pt;}
._6{width:48.010667pt;}
._10{width:49.728000pt;}
._11{width:50.618667pt;}
._42{width:51.824000pt;}
._3f{width:52.714667pt;}
._41{width:53.610667pt;}
._40{width:54.725333pt;}
._14{width:55.925333pt;}
._1e{width:57.120000pt;}
._1f{width:58.090667pt;}
._25{width:59.029333pt;}
._37{width:60.256000pt;}
._20{width:61.152000pt;}
._33{width:64.586667pt;}
._2f{width:71.157333pt;}
._26{width:72.053333pt;}
._27{width:73.024000pt;}
._3e{width:73.994667pt;}
._36{width:75.189333pt;}
._35{width:76.234667pt;}
._3c{width:81.909333pt;}
._3b{width:83.104000pt;}
._39{width:88.330667pt;}
._3a{width:90.048000pt;}
._38{width:91.765333pt;}
._2b{width:102.144000pt;}
._2c{width:103.712000pt;}
._3d{width:121.034667pt;}
._43{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:3.986667pt;}
.y54{bottom:4.520000pt;}
.y57{bottom:4.786667pt;}
.y55{bottom:15.453333pt;}
.y4f{bottom:25.586667pt;}
.y53{bottom:26.120000pt;}
.y50{bottom:46.960000pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y5f{bottom:84.833333pt;}
.y2e{bottom:85.366667pt;}
.y5b{bottom:105.900000pt;}
.y2d{bottom:106.700000pt;}
.y5a{bottom:127.233333pt;}
.y2c{bottom:128.300000pt;}
.y59{bottom:148.866667pt;}
.y2b{bottom:149.133333pt;}
.y5e{bottom:149.666667pt;}
.y58{bottom:169.666667pt;}
.y2a{bottom:171.266667pt;}
.y56{bottom:187.013333pt;}
.y29{bottom:192.600000pt;}
.y52{bottom:208.613333pt;}
.y28{bottom:214.200000pt;}
.y27{bottom:235.533333pt;}
.y4e{bottom:251.546667pt;}
.y26{bottom:257.133333pt;}
.y5d{bottom:277.933333pt;}
.y25{bottom:278.466667pt;}
.y24{bottom:300.106667pt;}
.y4d{bottom:320.106667pt;}
.y23{bottom:321.440000pt;}
.y4c{bottom:341.960000pt;}
.y22{bottom:343.026667pt;}
.y4b{bottom:363.026667pt;}
.y21{bottom:364.360000pt;}
.y4a{bottom:384.893333pt;}
.y20{bottom:385.960000pt;}
.y49{bottom:406.506667pt;}
.y1f{bottom:407.293333pt;}
.y48{bottom:427.840000pt;}
.y1e{bottom:428.893333pt;}
.y47{bottom:449.466667pt;}
.y1d{bottom:450.266667pt;}
.y46{bottom:470.800000pt;}
.y1c{bottom:471.866667pt;}
.y45{bottom:492.400000pt;}
.y1b{bottom:493.200000pt;}
.y44{bottom:513.733333pt;}
.y1a{bottom:514.800000pt;}
.y43{bottom:535.333333pt;}
.y60{bottom:535.600000pt;}
.y19{bottom:536.133333pt;}
.y42{bottom:556.666667pt;}
.y18{bottom:557.200000pt;}
.y36{bottom:557.733333pt;}
.y41{bottom:578.266667pt;}
.y17{bottom:579.066667pt;}
.y40{bottom:599.626667pt;}
.y16{bottom:600.693333pt;}
.y3f{bottom:621.226667pt;}
.y15{bottom:622.026667pt;}
.y3e{bottom:642.560000pt;}
.y14{bottom:643.626667pt;}
.y3d{bottom:663.626667pt;}
.y13{bottom:664.960000pt;}
.y3c{bottom:685.506667pt;}
.y12{bottom:686.560000pt;}
.y3b{bottom:707.093333pt;}
.y35{bottom:707.373333pt;}
.y11{bottom:707.893333pt;}
.y3a{bottom:728.426667pt;}
.y10{bottom:729.506667pt;}
.y39{bottom:750.066667pt;}
.yf{bottom:750.866667pt;}
.y38{bottom:771.400000pt;}
.ye{bottom:772.466667pt;}
.y37{bottom:788.466667pt;}
.yd{bottom:793.800000pt;}
.y5c{bottom:814.866667pt;}
.yc{bottom:815.400000pt;}
.yb{bottom:836.733333pt;}
.ya{bottom:857.800000pt;}
.y34{bottom:858.333333pt;}
.y9{bottom:879.666667pt;}
.y33{bottom:900.760000pt;}
.y8{bottom:901.293333pt;}
.y7{bottom:922.626667pt;}
.y6{bottom:944.226667pt;}
.y32{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y31{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y30{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2f{bottom:1030.106667pt;}
.h9{height:21.586667pt;}
.h8{height:42.920000pt;}
.h6{height:52.354167pt;}
.h3{height:54.818262pt;}
.h7{height:64.286667pt;}
.h4{height:64.567708pt;}
.h2{height:73.281250pt;}
.h5{height:75.250000pt;}
.ha{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:73.620000pt;}
.w2{width:124.284000pt;}
.w5{width:124.553333pt;}
.w4{width:141.880000pt;}
.w6{width:158.973333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.186667pt;}
.xb{left:9.333333pt;}
.xa{left:68.566667pt;}
.x2{left:75.500000pt;}
.x3{left:84.833333pt;}
.x5{left:113.366667pt;}
.xc{left:192.866667pt;}
.x7{left:208.866667pt;}
.x6{left:223.800000pt;}
.x8{left:253.133333pt;}
.xd{left:266.506667pt;}
.x4{left:271.306667pt;}
.x1{left:382.800000pt;}
.xf{left:408.400000pt;}
.x10{left:532.973333pt;}
.x9{left:559.360000pt;}
}




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