
    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_a069ff53f74b98c04805f474.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_68ef1d41faceae8766fbc76d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_4aefb097f266a4eb38216263.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_8177fe7228aa2ff2c0cbacdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.076000;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_3c05312ebd6612c3c40b95ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_ebbfcf916e18c460bb130d02.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d3004ece8d7577cf39c7d87a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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;}
.ls5{letter-spacing:-1.572000px;}
.ls7{letter-spacing:-1.470000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.332000px;}
.ls9{letter-spacing:2.484000px;}
.ls8{letter-spacing:98.411400px;}
.ls3{letter-spacing:123.680700px;}
.ls1{letter-spacing:124.811700px;}
.ls4{letter-spacing:131.813250px;}
.ls2{letter-spacing:132.713250px;}
.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;}
}
.wsc{word-spacing:-67.580400px;}
.ws0{word-spacing:-59.939400px;}
.ws2{word-spacing:-37.016400px;}
.ws5{word-spacing:-34.426950px;}
.ws14{word-spacing:-33.594900px;}
.ws8{word-spacing:-31.872300px;}
.ws13{word-spacing:-29.514300px;}
.wsa{word-spacing:-27.156300px;}
.ws9{word-spacing:-27.117000px;}
.wsd{word-spacing:-23.810700px;}
.wse{word-spacing:-23.769000px;}
.wsf{word-spacing:-22.299000px;}
.ws12{word-spacing:-20.016000px;}
.ws11{word-spacing:-10.008000px;}
.ws10{word-spacing:-7.212000px;}
.ws6{word-spacing:-5.327700px;}
.ws4{word-spacing:-2.319300px;}
.ws3{word-spacing:-0.110850px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.560700px;}
.wsb{word-spacing:14.978400px;}
._c{margin-left:-5.291100px;}
._4{margin-left:-4.236000px;}
._2{margin-left:-2.991150px;}
._1{margin-left:-1.583550px;}
._3{width:1.290300px;}
._0{width:2.873850px;}
._5{width:3.924000px;}
._6{width:5.096700px;}
._d{width:8.378100px;}
._8{width:24.957600px;}
._7{width:40.394850px;}
._b{width:82.252950px;}
._9{width:1036.119600px;}
._a{width:1207.153950px;}
.fc6{color:rgb(43,103,216);}
.fc5{color:rgb(0,112,192);}
.fc8{color:rgb(0,16,44);}
.fc3{color:rgb(64,67,69);}
.fc2{color:rgb(0,32,90);}
.fc7{color:rgb(0,0,0);}
.fc4{color:rgb(55,175,184);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(153,153,153);}
.fs14{font-size:36.000000px;}
.fs0{font-size:58.650000px;}
.fs15{font-size:72.000000px;}
.fse{font-size:85.500000px;}
.fs9{font-size:85.650000px;}
.fs2{font-size:94.500000px;}
.fs3{font-size:94.650000px;}
.fsb{font-size:103.500000px;}
.fsa{font-size:103.650000px;}
.fs13{font-size:108.150000px;}
.fs17{font-size:112.650000px;}
.fs7{font-size:121.650000px;}
.fsd{font-size:121.800000px;}
.fs8{font-size:126.150000px;}
.fs5{font-size:130.650000px;}
.fs6{font-size:130.800000px;}
.fs18{font-size:148.650000px;}
.fs11{font-size:193.800000px;}
.fs10{font-size:198.300000px;}
.fs1{font-size:211.800000px;}
.fs4{font-size:238.800000px;}
.fsc{font-size:238.950000px;}
.fsf{font-size:243.300000px;}
.fs12{font-size:274.950000px;}
.fs16{font-size:360.450000px;}
.y0{bottom:0.000000px;}
.y1{bottom:23.437500px;}
.y3e{bottom:84.562500px;}
.y19{bottom:131.662500px;}
.y2c{bottom:151.905000px;}
.y18{bottom:157.575000px;}
.y21{bottom:167.805000px;}
.y2b{bottom:177.780000px;}
.y3d{bottom:181.050000px;}
.y17{bottom:196.995000px;}
.y20{bottom:198.225000px;}
.y2a{bottom:202.575000px;}
.y3c{bottom:210.345000px;}
.y16{bottom:222.900000px;}
.y1f{bottom:229.755000px;}
.y40{bottom:231.855000px;}
.y44{bottom:236.100000px;}
.y3b{bottom:238.500000px;}
.y15{bottom:262.350000px;}
.y9{bottom:267.600000px;}
.y3a{bottom:282.450000px;}
.y14{bottom:288.270000px;}
.y1e{bottom:290.595000px;}
.y43{bottom:306.600000px;}
.y39{bottom:315.120000px;}
.y13{bottom:328.800000px;}
.y29{bottom:334.275000px;}
.y8{bottom:343.080000px;}
.y38{bottom:346.650000px;}
.y1d{bottom:351.450000px;}
.y12{bottom:353.580000px;}
.y28{bottom:373.695000px;}
.y7{bottom:374.625000px;}
.y42{bottom:381.975000px;}
.y11{bottom:394.155000px;}
.y27{bottom:413.100000px;}
.y10{bottom:449.370000px;}
.y6{bottom:450.705000px;}
.y26{bottom:453.675000px;}
.yf{bottom:491.025000px;}
.y46{bottom:492.525000px;}
.y45{bottom:494.925000px;}
.y37{bottom:507.750000px;}
.y5{bottom:513.780000px;}
.ye{bottom:515.820000px;}
.y41{bottom:518.880000px;}
.y25{bottom:536.850000px;}
.y36{bottom:539.280000px;}
.yd{bottom:541.725000px;}
.y35{bottom:571.950000px;}
.y31{bottom:576.375000px;}
.y4{bottom:576.900000px;}
.yc{bottom:582.300000px;}
.y32{bottom:596.775000px;}
.y1c{bottom:602.505000px;}
.y34{bottom:603.495000px;}
.y24{bottom:608.970000px;}
.yb{bottom:610.470000px;}
.y2f{bottom:622.350000px;}
.y3f{bottom:626.745000px;}
.y1b{bottom:628.425000px;}
.y3{bottom:639.975000px;}
.y23{bottom:642.675000px;}
.y1a{bottom:653.220000px;}
.y2d{bottom:668.505000px;}
.y33{bottom:675.780000px;}
.y2e{bottom:678.630000px;}
.y30{bottom:679.755000px;}
.y22{bottom:686.970000px;}
.y2{bottom:703.050000px;}
.ya{bottom:710.100000px;}
.h1a{height:26.314453px;}
.h1c{height:52.628906px;}
.h1{height:58.334985px;}
.h17{height:62.496826px;}
.h15{height:62.606470px;}
.h12{height:79.600500px;}
.hc{height:79.740150px;}
.h5{height:82.782000px;}
.h4{height:82.913400px;}
.h3{height:87.979500px;}
.he{height:90.666000px;}
.hd{height:90.797400px;}
.hf{height:94.141626px;}
.h19{height:94.739400px;}
.h1e{height:98.681400px;}
.h9{height:106.565400px;}
.h11{height:106.696800px;}
.hb{height:113.256150px;}
.ha{height:117.445650px;}
.h7{height:121.635150px;}
.h8{height:121.774800px;}
.h1f{height:147.851587px;}
.h16{height:180.427800px;}
.h14{height:184.617300px;}
.h2{height:197.185800px;}
.h1b{height:203.044482px;}
.h6{height:222.322800px;}
.h10{height:222.462450px;}
.h13{height:226.512300px;}
.h18{height:255.978450px;}
.h1d{height:335.578950px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1d{left:88.162479px;}
.x18{left:107.624979px;}
.xc{left:109.874979px;}
.x3{left:112.124979px;}
.x4{left:122.474979px;}
.x23{left:126.937479px;}
.x15{left:138.074979px;}
.xd{left:140.887479px;}
.x13{left:156.374979px;}
.x16{left:163.274979px;}
.x5{left:166.154979px;}
.x6{left:178.049979px;}
.x7{left:220.199979px;}
.x1e{left:435.404979px;}
.x1f{left:475.994979px;}
.x21{left:497.444979px;}
.x14{left:505.769979px;}
.x1{left:532.874979px;}
.x20{left:557.969979px;}
.x1c{left:710.699979px;}
.x2{left:715.319979px;}
.xe{left:820.994979px;}
.xf{left:846.569979px;}
.x17{left:884.024979px;}
.x19{left:919.124979px;}
.x1a{left:934.274979px;}
.x1b{left:973.169979px;}
.x12{left:1034.999979px;}
.x22{left:1061.444979px;}
.x11{left:1065.044979px;}
.x10{left:1072.154979px;}
.x9{left:1189.619979px;}
.x8{left:1223.474979px;}
.xa{left:1250.129979px;}
.xb{left:1299.269979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.397333pt;}
.ls7{letter-spacing:-1.306667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.184000pt;}
.ls9{letter-spacing:2.208000pt;}
.ls8{letter-spacing:87.476800pt;}
.ls3{letter-spacing:109.938400pt;}
.ls1{letter-spacing:110.943733pt;}
.ls4{letter-spacing:117.167333pt;}
.ls2{letter-spacing:117.967333pt;}
.wsc{word-spacing:-60.071467pt;}
.ws0{word-spacing:-53.279467pt;}
.ws2{word-spacing:-32.903467pt;}
.ws5{word-spacing:-30.601733pt;}
.ws14{word-spacing:-29.862133pt;}
.ws8{word-spacing:-28.330933pt;}
.ws13{word-spacing:-26.234933pt;}
.wsa{word-spacing:-24.138933pt;}
.ws9{word-spacing:-24.104000pt;}
.wsd{word-spacing:-21.165067pt;}
.wse{word-spacing:-21.128000pt;}
.wsf{word-spacing:-19.821333pt;}
.ws12{word-spacing:-17.792000pt;}
.ws11{word-spacing:-8.896000pt;}
.ws10{word-spacing:-6.410667pt;}
.ws6{word-spacing:-4.735733pt;}
.ws4{word-spacing:-2.061600pt;}
.ws3{word-spacing:-0.098533pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.498400pt;}
.wsb{word-spacing:13.314133pt;}
._c{margin-left:-4.703200pt;}
._4{margin-left:-3.765333pt;}
._2{margin-left:-2.658800pt;}
._1{margin-left:-1.407600pt;}
._3{width:1.146933pt;}
._0{width:2.554533pt;}
._5{width:3.488000pt;}
._6{width:4.530400pt;}
._d{width:7.447200pt;}
._8{width:22.184533pt;}
._7{width:35.906533pt;}
._b{width:73.113733pt;}
._9{width:920.995200pt;}
._a{width:1073.025733pt;}
.fs14{font-size:32.000000pt;}
.fs0{font-size:52.133333pt;}
.fs15{font-size:64.000000pt;}
.fse{font-size:76.000000pt;}
.fs9{font-size:76.133333pt;}
.fs2{font-size:84.000000pt;}
.fs3{font-size:84.133333pt;}
.fsb{font-size:92.000000pt;}
.fsa{font-size:92.133333pt;}
.fs13{font-size:96.133333pt;}
.fs17{font-size:100.133333pt;}
.fs7{font-size:108.133333pt;}
.fsd{font-size:108.266667pt;}
.fs8{font-size:112.133333pt;}
.fs5{font-size:116.133333pt;}
.fs6{font-size:116.266667pt;}
.fs18{font-size:132.133333pt;}
.fs11{font-size:172.266667pt;}
.fs10{font-size:176.266667pt;}
.fs1{font-size:188.266667pt;}
.fs4{font-size:212.266667pt;}
.fsc{font-size:212.400000pt;}
.fsf{font-size:216.266667pt;}
.fs12{font-size:244.400000pt;}
.fs16{font-size:320.400000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:20.833333pt;}
.y3e{bottom:75.166667pt;}
.y19{bottom:117.033333pt;}
.y2c{bottom:135.026667pt;}
.y18{bottom:140.066667pt;}
.y21{bottom:149.160000pt;}
.y2b{bottom:158.026667pt;}
.y3d{bottom:160.933333pt;}
.y17{bottom:175.106667pt;}
.y20{bottom:176.200000pt;}
.y2a{bottom:180.066667pt;}
.y3c{bottom:186.973333pt;}
.y16{bottom:198.133333pt;}
.y1f{bottom:204.226667pt;}
.y40{bottom:206.093333pt;}
.y44{bottom:209.866667pt;}
.y3b{bottom:212.000000pt;}
.y15{bottom:233.200000pt;}
.y9{bottom:237.866667pt;}
.y3a{bottom:251.066667pt;}
.y14{bottom:256.240000pt;}
.y1e{bottom:258.306667pt;}
.y43{bottom:272.533333pt;}
.y39{bottom:280.106667pt;}
.y13{bottom:292.266667pt;}
.y29{bottom:297.133333pt;}
.y8{bottom:304.960000pt;}
.y38{bottom:308.133333pt;}
.y1d{bottom:312.400000pt;}
.y12{bottom:314.293333pt;}
.y28{bottom:332.173333pt;}
.y7{bottom:333.000000pt;}
.y42{bottom:339.533333pt;}
.y11{bottom:350.360000pt;}
.y27{bottom:367.200000pt;}
.y10{bottom:399.440000pt;}
.y6{bottom:400.626667pt;}
.y26{bottom:403.266667pt;}
.yf{bottom:436.466667pt;}
.y46{bottom:437.800000pt;}
.y45{bottom:439.933333pt;}
.y37{bottom:451.333333pt;}
.y5{bottom:456.693333pt;}
.ye{bottom:458.506667pt;}
.y41{bottom:461.226667pt;}
.y25{bottom:477.200000pt;}
.y36{bottom:479.360000pt;}
.yd{bottom:481.533333pt;}
.y35{bottom:508.400000pt;}
.y31{bottom:512.333333pt;}
.y4{bottom:512.800000pt;}
.yc{bottom:517.600000pt;}
.y32{bottom:530.466667pt;}
.y1c{bottom:535.560000pt;}
.y34{bottom:536.440000pt;}
.y24{bottom:541.306667pt;}
.yb{bottom:542.640000pt;}
.y2f{bottom:553.200000pt;}
.y3f{bottom:557.106667pt;}
.y1b{bottom:558.600000pt;}
.y3{bottom:568.866667pt;}
.y23{bottom:571.266667pt;}
.y1a{bottom:580.640000pt;}
.y2d{bottom:594.226667pt;}
.y33{bottom:600.693333pt;}
.y2e{bottom:603.226667pt;}
.y30{bottom:604.226667pt;}
.y22{bottom:610.640000pt;}
.y2{bottom:624.933333pt;}
.ya{bottom:631.200000pt;}
.h1a{height:23.390625pt;}
.h1c{height:46.781250pt;}
.h1{height:51.853320pt;}
.h17{height:55.552734pt;}
.h15{height:55.650195pt;}
.h12{height:70.756000pt;}
.hc{height:70.880133pt;}
.h5{height:73.584000pt;}
.h4{height:73.700800pt;}
.h3{height:78.204000pt;}
.he{height:80.592000pt;}
.hd{height:80.708800pt;}
.hf{height:83.681445pt;}
.h19{height:84.212800pt;}
.h1e{height:87.716800pt;}
.h9{height:94.724800pt;}
.h11{height:94.841600pt;}
.hb{height:100.672133pt;}
.ha{height:104.396133pt;}
.h7{height:108.120133pt;}
.h8{height:108.244267pt;}
.h1f{height:131.423633pt;}
.h16{height:160.380267pt;}
.h14{height:164.104267pt;}
.h2{height:175.276267pt;}
.h1b{height:180.483984pt;}
.h6{height:197.620267pt;}
.h10{height:197.744400pt;}
.h13{height:201.344267pt;}
.h18{height:227.536400pt;}
.h1d{height:298.292400pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:78.366648pt;}
.x18{left:95.666648pt;}
.xc{left:97.666648pt;}
.x3{left:99.666648pt;}
.x4{left:108.866648pt;}
.x23{left:112.833314pt;}
.x15{left:122.733314pt;}
.xd{left:125.233314pt;}
.x13{left:138.999981pt;}
.x16{left:145.133314pt;}
.x5{left:147.693314pt;}
.x6{left:158.266648pt;}
.x7{left:195.733314pt;}
.x1e{left:387.026648pt;}
.x1f{left:423.106648pt;}
.x21{left:442.173314pt;}
.x14{left:449.573314pt;}
.x1{left:473.666648pt;}
.x20{left:495.973314pt;}
.x1c{left:631.733314pt;}
.x2{left:635.839981pt;}
.xe{left:729.773314pt;}
.xf{left:752.506648pt;}
.x17{left:785.799981pt;}
.x19{left:816.999981pt;}
.x1a{left:830.466648pt;}
.x1b{left:865.039981pt;}
.x12{left:919.999981pt;}
.x22{left:943.506648pt;}
.x11{left:946.706648pt;}
.x10{left:953.026648pt;}
.x9{left:1057.439981pt;}
.x8{left:1087.533314pt;}
.xa{left:1111.226648pt;}
.xb{left:1154.906648pt;}
}




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