
    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_8146d78a99e91d70be2c9007.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_ac0bf6071ca98367fcf90de2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_409fd5d97d787dcab259a964.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_59fd9f970da0db18be563d43.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_c1ab5ec0ed4f379f257702ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_dd5a26c03390507bdc46fabb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9ec026dc1557268826b0a1b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_7642404067db8c2b6af90d79.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_6509b8be2d24ab12844d0c0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.380400px;}
.ls5{letter-spacing:-0.282000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.183000px;}
.ls3{letter-spacing:0.276600px;}
.ls2{letter-spacing:132.465600px;}
.ls1{letter-spacing:132.516000px;}
.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;}
}
.ws0{word-spacing:-65.120544px;}
.wsd{word-spacing:-25.384320px;}
.ws1{word-spacing:-24.408000px;}
.wsa{word-spacing:-17.499000px;}
.wsb{word-spacing:-17.442840px;}
.wsc{word-spacing:-17.222400px;}
.ws10{word-spacing:-10.902240px;}
.ws3{word-spacing:-9.360000px;}
.wse{word-spacing:-2.078496px;}
.wsf{word-spacing:-0.856800px;}
.ws8{word-spacing:-0.520560px;}
.ws4{word-spacing:-0.171600px;}
.ws9{word-spacing:-0.031680px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.208800px;}
.ws6{word-spacing:0.335280px;}
.ws7{word-spacing:1.015968px;}
._4{margin-left:-31.799520px;}
._5{margin-left:-10.288080px;}
._6{margin-left:-9.253584px;}
._a{margin-left:-7.207056px;}
._0{margin-left:-5.474736px;}
._3{margin-left:-3.745872px;}
._2{margin-left:-2.593296px;}
._1{margin-left:-1.440720px;}
._7{width:1.419840px;}
._9{width:3.249072px;}
._8{width:10.478160px;}
._b{width:23.579712px;}
._c{width:25.002288px;}
.fc7{color:rgb(0,143,204);}
.fc8{color:rgb(14,40,65);}
.fc6{color:rgb(1,152,214);}
.fc4{color:rgb(0,152,216);}
.fc2{color:transparent;}
.fc9{color:rgb(166,166,166);}
.fc5{color:rgb(34,165,220);}
.fc3{color:rgb(69,80,100);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs9{font-size:36.144000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:41.904000px;}
.fs15{font-size:48.240000px;}
.fsf{font-size:66.240000px;}
.fs10{font-size:66.384000px;}
.fs3{font-size:72.144000px;}
.fsc{font-size:84.240000px;}
.fsd{font-size:84.384000px;}
.fs4{font-size:108.000000px;}
.fs11{font-size:108.144000px;}
.fs12{font-size:112.320000px;}
.fs13{font-size:112.464000px;}
.fs2{font-size:144.144000px;}
.fsa{font-size:167.760000px;}
.fsb{font-size:167.904000px;}
.fse{font-size:192.240000px;}
.fs14{font-size:264.240000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:288.144000px;}
.fs5{font-size:311.760000px;}
.y0{bottom:0.000000px;}
.y10{bottom:8.712000px;}
.y14{bottom:9.432000px;}
.yc{bottom:11.772000px;}
.yf{bottom:19.512000px;}
.y13{bottom:20.232000px;}
.yb{bottom:24.372000px;}
.ye{bottom:30.312000px;}
.y12{bottom:31.032000px;}
.y7{bottom:31.392000px;}
.ya{bottom:36.972000px;}
.yd{bottom:41.112000px;}
.y11{bottom:41.832000px;}
.y8{bottom:61.020000px;}
.y1e{bottom:68.184000px;}
.y1d{bottom:80.064000px;}
.y6{bottom:96.192000px;}
.y2e{bottom:116.712000px;}
.y3c{bottom:120.960000px;}
.y43{bottom:122.580000px;}
.y4a{bottom:128.736000px;}
.y2d{bottom:136.512000px;}
.y3b{bottom:153.360000px;}
.y42{bottom:161.280000px;}
.y49{bottom:167.475000px;}
.y2c{bottom:182.265000px;}
.y3a{bottom:185.760000px;}
.y2b{bottom:202.110000px;}
.y39{bottom:218.190000px;}
.y38{bottom:250.590000px;}
.y2a{bottom:253.875000px;}
.y41{bottom:265.320000px;}
.y1c{bottom:269.130000px;}
.y29{bottom:273.675000px;}
.y37{bottom:282.990000px;}
.y28{bottom:293.475000px;}
.y48{bottom:297.570000px;}
.y1b{bottom:303.555000px;}
.y40{bottom:304.020000px;}
.y36{bottom:315.390000px;}
.y4e{bottom:330.990000px;}
.y1a{bottom:338.115000px;}
.y5{bottom:342.975000px;}
.y35{bottom:347.790000px;}
.y4c{bottom:354.675000px;}
.y27{bottom:364.035000px;}
.y19{bottom:372.675000px;}
.y34{bottom:380.235000px;}
.y26{bottom:383.835000px;}
.y4b{bottom:387.075000px;}
.y18{bottom:392.115000px;}
.y47{bottom:395.790000px;}
.y3f{bottom:400.290000px;}
.y25{bottom:403.665000px;}
.y33{bottom:412.635000px;}
.y4{bottom:420.735000px;}
.y9{bottom:420.840000px;}
.y17{bottom:426.675000px;}
.y46{bottom:434.490000px;}
.y3e{bottom:438.990000px;}
.y32{bottom:445.035000px;}
.y31{bottom:477.435000px;}
.y22{bottom:482.430000px;}
.y3{bottom:498.525000px;}
.y30{bottom:500.475000px;}
.y21{bottom:502.230000px;}
.y2f{bottom:520.275000px;}
.y45{bottom:539.280000px;}
.y20{bottom:563.940000px;}
.y2{bottom:576.285000px;}
.y44{bottom:577.980000px;}
.y3d{bottom:578.520000px;}
.y24{bottom:622.770000px;}
.y23{bottom:640.590000px;}
.y1{bottom:654.090000px;}
.y16{bottom:693.510000px;}
.y4d{bottom:717.090000px;}
.y1f{bottom:722.595000px;}
.y15{bottom:738.870000px;}
.h9{height:27.544922px;}
.ha{height:27.655102px;}
.h7{height:31.952109px;}
.h8{height:32.062289px;}
.h19{height:47.980898px;}
.h11{height:50.682656px;}
.h12{height:50.792836px;}
.h4{height:71.756508px;}
.h17{height:82.054688px;}
.he{height:83.787539px;}
.hf{height:83.930766px;}
.hd{height:86.255508px;}
.h5{height:107.419922px;}
.h15{height:111.716719px;}
.h16{height:111.859945px;}
.h13{height:112.640625px;}
.h14{height:112.790813px;}
.h3{height:143.369789px;}
.hc{height:167.002172px;}
.hb{height:171.773789px;}
.h10{height:196.839492px;}
.h18{height:262.820742px;}
.h2{height:286.453125px;}
.h1{height:286.596352px;}
.h6{height:310.085508px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x10{left:42.443979px;}
.x1f{left:52.055979px;}
.xf{left:68.003979px;}
.xc{left:92.267979px;}
.x3{left:93.815979px;}
.x18{left:100.331979px;}
.x1{left:101.519979px;}
.x8{left:106.163979px;}
.x17{left:126.899979px;}
.x9{left:141.299979px;}
.xd{left:154.829979px;}
.x7{left:157.889979px;}
.xa{left:181.799979px;}
.xe{left:223.529979px;}
.x4{left:269.564979px;}
.x5{left:350.999979px;}
.x1e{left:634.349979px;}
.x1d{left:649.829979px;}
.x6{left:733.139979px;}
.x2{left:766.109979px;}
.x16{left:786.854979px;}
.xb{left:915.989979px;}
.x11{left:964.259979px;}
.x13{left:1059.629979px;}
.x1c{left:1062.284979px;}
.x19{left:1080.149979px;}
.x1b{left:1101.314979px;}
.x1a{left:1114.814979px;}
.x12{left:1132.484979px;}
.x14{left:1151.069979px;}
.x15{left:1207.589979px;}
.x20{left:1376.174979px;}
.x21{left:1390.574979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.338133pt;}
.ls5{letter-spacing:-0.250667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.162667pt;}
.ls3{letter-spacing:0.245867pt;}
.ls2{letter-spacing:117.747200pt;}
.ls1{letter-spacing:117.792000pt;}
.ws0{word-spacing:-57.884928pt;}
.wsd{word-spacing:-22.563840pt;}
.ws1{word-spacing:-21.696000pt;}
.wsa{word-spacing:-15.554667pt;}
.wsb{word-spacing:-15.504747pt;}
.wsc{word-spacing:-15.308800pt;}
.ws10{word-spacing:-9.690880pt;}
.ws3{word-spacing:-8.320000pt;}
.wse{word-spacing:-1.847552pt;}
.wsf{word-spacing:-0.761600pt;}
.ws8{word-spacing:-0.462720pt;}
.ws4{word-spacing:-0.152533pt;}
.ws9{word-spacing:-0.028160pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.185600pt;}
.ws6{word-spacing:0.298027pt;}
.ws7{word-spacing:0.903083pt;}
._4{margin-left:-28.266240pt;}
._5{margin-left:-9.144960pt;}
._6{margin-left:-8.225408pt;}
._a{margin-left:-6.406272pt;}
._0{margin-left:-4.866432pt;}
._3{margin-left:-3.329664pt;}
._2{margin-left:-2.305152pt;}
._1{margin-left:-1.280640pt;}
._7{width:1.262080pt;}
._9{width:2.888064pt;}
._8{width:9.313920pt;}
._b{width:20.959744pt;}
._c{width:22.224256pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:32.128000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:37.248000pt;}
.fs15{font-size:42.880000pt;}
.fsf{font-size:58.880000pt;}
.fs10{font-size:59.008000pt;}
.fs3{font-size:64.128000pt;}
.fsc{font-size:74.880000pt;}
.fsd{font-size:75.008000pt;}
.fs4{font-size:96.000000pt;}
.fs11{font-size:96.128000pt;}
.fs12{font-size:99.840000pt;}
.fs13{font-size:99.968000pt;}
.fs2{font-size:128.128000pt;}
.fsa{font-size:149.120000pt;}
.fsb{font-size:149.248000pt;}
.fse{font-size:170.880000pt;}
.fs14{font-size:234.880000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:256.128000pt;}
.fs5{font-size:277.120000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:7.744000pt;}
.y14{bottom:8.384000pt;}
.yc{bottom:10.464000pt;}
.yf{bottom:17.344000pt;}
.y13{bottom:17.984000pt;}
.yb{bottom:21.664000pt;}
.ye{bottom:26.944000pt;}
.y12{bottom:27.584000pt;}
.y7{bottom:27.904000pt;}
.ya{bottom:32.864000pt;}
.yd{bottom:36.544000pt;}
.y11{bottom:37.184000pt;}
.y8{bottom:54.240000pt;}
.y1e{bottom:60.608000pt;}
.y1d{bottom:71.168000pt;}
.y6{bottom:85.504000pt;}
.y2e{bottom:103.744000pt;}
.y3c{bottom:107.520000pt;}
.y43{bottom:108.960000pt;}
.y4a{bottom:114.432000pt;}
.y2d{bottom:121.344000pt;}
.y3b{bottom:136.320000pt;}
.y42{bottom:143.360000pt;}
.y49{bottom:148.866667pt;}
.y2c{bottom:162.013333pt;}
.y3a{bottom:165.120000pt;}
.y2b{bottom:179.653333pt;}
.y39{bottom:193.946667pt;}
.y38{bottom:222.746667pt;}
.y2a{bottom:225.666667pt;}
.y41{bottom:235.840000pt;}
.y1c{bottom:239.226667pt;}
.y29{bottom:243.266667pt;}
.y37{bottom:251.546667pt;}
.y28{bottom:260.866667pt;}
.y48{bottom:264.506667pt;}
.y1b{bottom:269.826667pt;}
.y40{bottom:270.240000pt;}
.y36{bottom:280.346667pt;}
.y4e{bottom:294.213333pt;}
.y1a{bottom:300.546667pt;}
.y5{bottom:304.866667pt;}
.y35{bottom:309.146667pt;}
.y4c{bottom:315.266667pt;}
.y27{bottom:323.586667pt;}
.y19{bottom:331.266667pt;}
.y34{bottom:337.986667pt;}
.y26{bottom:341.186667pt;}
.y4b{bottom:344.066667pt;}
.y18{bottom:348.546667pt;}
.y47{bottom:351.813333pt;}
.y3f{bottom:355.813333pt;}
.y25{bottom:358.813333pt;}
.y33{bottom:366.786667pt;}
.y4{bottom:373.986667pt;}
.y9{bottom:374.080000pt;}
.y17{bottom:379.266667pt;}
.y46{bottom:386.213333pt;}
.y3e{bottom:390.213333pt;}
.y32{bottom:395.586667pt;}
.y31{bottom:424.386667pt;}
.y22{bottom:428.826667pt;}
.y3{bottom:443.133333pt;}
.y30{bottom:444.866667pt;}
.y21{bottom:446.426667pt;}
.y2f{bottom:462.466667pt;}
.y45{bottom:479.360000pt;}
.y20{bottom:501.280000pt;}
.y2{bottom:512.253333pt;}
.y44{bottom:513.760000pt;}
.y3d{bottom:514.240000pt;}
.y24{bottom:553.573333pt;}
.y23{bottom:569.413333pt;}
.y1{bottom:581.413333pt;}
.y16{bottom:616.453333pt;}
.y4d{bottom:637.413333pt;}
.y1f{bottom:642.306667pt;}
.y15{bottom:656.773333pt;}
.h9{height:24.484375pt;}
.ha{height:24.582312pt;}
.h7{height:28.401875pt;}
.h8{height:28.499812pt;}
.h19{height:42.649688pt;}
.h11{height:45.051250pt;}
.h12{height:45.149187pt;}
.h4{height:63.783562pt;}
.h17{height:72.937500pt;}
.he{height:74.477812pt;}
.hf{height:74.605125pt;}
.hd{height:76.671562pt;}
.h5{height:95.484375pt;}
.h15{height:99.303750pt;}
.h16{height:99.431062pt;}
.h13{height:100.125000pt;}
.h14{height:100.258500pt;}
.h3{height:127.439813pt;}
.hc{height:148.446375pt;}
.hb{height:152.687812pt;}
.h10{height:174.968437pt;}
.h18{height:233.618437pt;}
.h2{height:254.625000pt;}
.h1{height:254.752312pt;}
.h6{height:275.631562pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x10{left:37.727981pt;}
.x1f{left:46.271981pt;}
.xf{left:60.447981pt;}
.xc{left:82.015981pt;}
.x3{left:83.391981pt;}
.x18{left:89.183981pt;}
.x1{left:90.239981pt;}
.x8{left:94.367981pt;}
.x17{left:112.799981pt;}
.x9{left:125.599981pt;}
.xd{left:137.626648pt;}
.x7{left:140.346648pt;}
.xa{left:161.599981pt;}
.xe{left:198.693314pt;}
.x4{left:239.613314pt;}
.x5{left:311.999981pt;}
.x1e{left:563.866648pt;}
.x1d{left:577.626648pt;}
.x6{left:651.679981pt;}
.x2{left:680.986648pt;}
.x16{left:699.426648pt;}
.xb{left:814.213314pt;}
.x11{left:857.119981pt;}
.x13{left:941.893314pt;}
.x1c{left:944.253314pt;}
.x19{left:960.133314pt;}
.x1b{left:978.946648pt;}
.x1a{left:990.946648pt;}
.x12{left:1006.653314pt;}
.x14{left:1023.173314pt;}
.x15{left:1073.413314pt;}
.x20{left:1223.266648pt;}
.x21{left:1236.066648pt;}
}




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