
    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_8360636b3004ba3f1f930f12.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.082000;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_4b3daa0a6ff0102ecb3c0715.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_62e428afa92642736ccc391d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.689453;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_3e381c908b9c9ef364f49591.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_5681113f62442d4deaaa387c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_b20bdabf376581e4b5ec168f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.082000;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_a9db38b776f43eba3ebe4c28.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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;}
.ls3{letter-spacing:-0.750000px;}
.ls6{letter-spacing:-0.396000px;}
.lsa{letter-spacing:-0.140400px;}
.ls2{letter-spacing:-0.115200px;}
.ls5{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.040320px;}
.ls8{letter-spacing:0.168600px;}
.ls1{letter-spacing:0.178800px;}
.ls9{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.385800px;}
.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;}
}
.ws0{word-spacing:-54.000000px;}
.ws9{word-spacing:-14.325000px;}
.ws1{word-spacing:-14.118000px;}
.ws3{word-spacing:-13.979520px;}
.ws8{word-spacing:-13.939200px;}
.wsc{word-spacing:-13.190361px;}
.wsb{word-spacing:-12.682200px;}
.wsa{word-spacing:-12.513600px;}
.ws7{word-spacing:-12.236544px;}
.ws6{word-spacing:-12.204000px;}
.ws4{word-spacing:-11.880000px;}
.ws5{word-spacing:-11.484000px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-4.019040px;}
._f{margin-left:-2.407680px;}
._0{margin-left:-1.366560px;}
._3{width:1.024320px;}
._6{width:2.639040px;}
._10{width:4.300320px;}
._c{width:5.611680px;}
._e{width:6.671520px;}
._4{width:7.702560px;}
._5{width:9.476640px;}
._11{width:10.744320px;}
._19{width:11.757600px;}
._12{width:12.798720px;}
._1d{width:14.162400px;}
._9{width:15.340320px;}
._7{width:16.346880px;}
._8{width:17.903520px;}
._2{width:19.496160px;}
._1{width:20.718720px;}
._b{width:22.138080px;}
._13{width:23.428320px;}
._14{width:24.474240px;}
._d{width:26.140320px;}
._16{width:29.462400px;}
._17{width:33.390720px;}
._18{width:34.567200px;}
._1a{width:36.214560px;}
._1c{width:37.686720px;}
._1b{width:38.712960px;}
._1f{width:40.766400px;}
._1e{width:43.648103px;}
._21{width:103.237200px;}
._20{width:109.599906px;}
._15{width:134.466000px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:50.848916px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs6{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs9{font-size:59.956185px;}
.fs2{font-size:63.360000px;}
.fs4{font-size:66.786636px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:3.060000px;}
.y57{bottom:10.980000px;}
.y75{bottom:17.604000px;}
.y53{bottom:18.900000px;}
.y56{bottom:26.820000px;}
.y54{bottom:34.740000px;}
.y2{bottom:47.520000px;}
.y74{bottom:64.005000px;}
.y73{bottom:80.490000px;}
.y72{bottom:96.945000px;}
.y2a{bottom:98.460000px;}
.y63{bottom:108.900000px;}
.y51{bottom:109.260000px;}
.y71{bottom:113.430000px;}
.y29{bottom:119.700000px;}
.y88{bottom:126.180000px;}
.y62{bottom:127.080000px;}
.y64{bottom:127.440000px;}
.y70{bottom:129.930000px;}
.y50{bottom:130.500000px;}
.y28{bottom:140.940000px;}
.y87{bottom:145.260000px;}
.y65{bottom:147.495000px;}
.y4f{bottom:151.740000px;}
.y27{bottom:162.180000px;}
.y86{bottom:164.520000px;}
.y66{bottom:167.370000px;}
.y4e{bottom:172.980000px;}
.y26{bottom:183.420000px;}
.y85{bottom:183.780000px;}
.y67{bottom:187.230000px;}
.y4d{bottom:194.250000px;}
.y84{bottom:202.890000px;}
.y25{bottom:204.510000px;}
.y68{bottom:207.105000px;}
.y4c{bottom:215.490000px;}
.y83{bottom:222.150000px;}
.y24{bottom:225.750000px;}
.y69{bottom:226.980000px;}
.y4b{bottom:236.730000px;}
.y82{bottom:241.410000px;}
.y6a{bottom:246.885000px;}
.y23{bottom:246.990000px;}
.y4a{bottom:257.970000px;}
.y81{bottom:260.490000px;}
.y6b{bottom:266.760000px;}
.y22{bottom:268.230000px;}
.y49{bottom:279.210000px;}
.y80{bottom:279.750000px;}
.y6c{bottom:286.635000px;}
.y21{bottom:289.470000px;}
.y7f{bottom:299.010000px;}
.y48{bottom:300.450000px;}
.y6d{bottom:306.510000px;}
.y20{bottom:310.710000px;}
.y7e{bottom:318.270000px;}
.y47{bottom:321.690000px;}
.y6e{bottom:326.370000px;}
.y1f{bottom:331.950000px;}
.y7d{bottom:337.350000px;}
.y46{bottom:342.930000px;}
.y6f{bottom:346.290000px;}
.y1e{bottom:353.190000px;}
.y7c{bottom:356.610000px;}
.y45{bottom:363.990000px;}
.y1d{bottom:374.430000px;}
.y7b{bottom:375.870000px;}
.y44{bottom:385.275000px;}
.y7a{bottom:394.995000px;}
.y1c{bottom:395.715000px;}
.y43{bottom:406.515000px;}
.y79{bottom:414.255000px;}
.y1b{bottom:416.955000px;}
.y42{bottom:427.755000px;}
.y78{bottom:433.515000px;}
.y1a{bottom:438.195000px;}
.y41{bottom:448.995000px;}
.y77{bottom:452.595000px;}
.y19{bottom:459.435000px;}
.y40{bottom:470.235000px;}
.y76{bottom:471.855000px;}
.y18{bottom:480.675000px;}
.y3f{bottom:491.475000px;}
.y61{bottom:500.115000px;}
.y17{bottom:501.915000px;}
.y3e{bottom:512.715000px;}
.y60{bottom:521.355000px;}
.y16{bottom:522.975000px;}
.y3d{bottom:533.955000px;}
.y5f{bottom:542.595000px;}
.y15{bottom:544.215000px;}
.y3c{bottom:555.195000px;}
.y5e{bottom:563.145000px;}
.y14{bottom:565.485000px;}
.y3b{bottom:576.465000px;}
.y5d{bottom:576.645000px;}
.y13{bottom:586.725000px;}
.y5c{bottom:593.205000px;}
.y3a{bottom:597.705000px;}
.y12{bottom:607.965000px;}
.y5b{bottom:609.765000px;}
.y39{bottom:618.945000px;}
.y11{bottom:629.205000px;}
.y38{bottom:640.185000px;}
.y5a{bottom:642.165000px;}
.y10{bottom:650.445000px;}
.y59{bottom:658.725000px;}
.y37{bottom:661.425000px;}
.yf{bottom:671.685000px;}
.y58{bottom:675.285000px;}
.y36{bottom:682.485000px;}
.y52{bottom:691.845000px;}
.ye{bottom:692.925000px;}
.y35{bottom:703.725000px;}
.yd{bottom:712.905000px;}
.y34{bottom:724.965000px;}
.yc{bottom:730.545000px;}
.yb{bottom:746.025000px;}
.y33{bottom:746.205000px;}
.ya{bottom:762.090000px;}
.y32{bottom:767.490000px;}
.y9{bottom:780.450000px;}
.y31{bottom:788.730000px;}
.y8{bottom:798.990000px;}
.y8f{bottom:802.590000px;}
.y30{bottom:809.970000px;}
.y7{bottom:817.530000px;}
.y8e{bottom:821.670000px;}
.y2f{bottom:831.210000px;}
.y6{bottom:838.230000px;}
.y8d{bottom:840.930000px;}
.y2e{bottom:852.450000px;}
.y5{bottom:858.390000px;}
.y8c{bottom:860.190000px;}
.y2d{bottom:873.690000px;}
.y8b{bottom:879.270000px;}
.y4{bottom:879.630000px;}
.y2c{bottom:894.930000px;}
.y8a{bottom:898.530000px;}
.y3{bottom:907.170000px;}
.y2b{bottom:916.170000px;}
.y89{bottom:917.790000px;}
.y1{bottom:966.780000px;}
.hc{height:15.840000px;}
.hd{height:31.680000px;}
.h7{height:35.991211px;}
.h5{height:39.830273px;}
.h3{height:40.763672px;}
.h2{height:43.882615px;}
.ha{height:46.602000px;}
.h9{height:47.520000px;}
.h8{height:48.656250px;}
.h11{height:49.087440px;}
.hb{height:49.122330px;}
.h12{height:51.742188px;}
.hf{height:53.709961px;}
.h10{height:53.853187px;}
.h4{height:54.679680px;}
.h6{height:57.636867px;}
.he{height:366.660000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w6{width:49.680000px;}
.w5{width:62.820000px;}
.w4{width:74.556000px;}
.w3{width:382.935000px;}
.w7{width:524.340000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x14{left:2.160000px;}
.x1e{left:3.240000px;}
.x20{left:5.400000px;}
.x1a{left:6.660000px;}
.x1d{left:9.180000px;}
.x17{left:12.600000px;}
.x19{left:14.580000px;}
.x1f{left:15.840000px;}
.x16{left:20.520000px;}
.x1c{left:28.260000px;}
.x28{left:41.730000px;}
.x29{left:53.670000px;}
.xd{left:63.899990px;}
.x4{left:89.855989px;}
.x10{left:95.795989px;}
.xb{left:110.555990px;}
.x27{left:111.960000px;}
.x13{left:113.795990px;}
.x2a{left:119.160000px;}
.xc{left:121.175990px;}
.x36{left:127.410000px;}
.x8{left:131.615990px;}
.x12{left:139.355990px;}
.x7{left:146.555990px;}
.x5{left:167.429989px;}
.x6{left:174.089990px;}
.x21{left:181.829989px;}
.x22{left:189.389990px;}
.x2b{left:198.390000px;}
.x2c{left:203.070000px;}
.x2d{left:210.315000px;}
.x25{left:211.529990px;}
.x3f{left:227.954989px;}
.x23{left:238.754989px;}
.x24{left:246.134989px;}
.x40{left:261.074990px;}
.x2e{left:276.765000px;}
.x30{left:280.830000px;}
.x41{left:296.534989px;}
.x9{left:299.594989px;}
.x2f{left:305.070000px;}
.x42{left:310.214990px;}
.xf{left:323.534989px;}
.x3{left:328.034989px;}
.x2{left:348.914989px;}
.xe{left:350.894990px;}
.x37{left:352.154989px;}
.x32{left:358.455000px;}
.x33{left:370.290000px;}
.x11{left:372.134990px;}
.xa{left:374.144990px;}
.x31{left:380.550000px;}
.x3c{left:435.164990px;}
.x35{left:439.275000px;}
.x34{left:441.105000px;}
.x15{left:472.245000px;}
.x39{left:488.264990px;}
.x43{left:501.944990px;}
.x38{left:526.469989px;}
.x18{left:546.810000px;}
.x3b{left:556.529989px;}
.x3e{left:586.949990px;}
.x3d{left:595.409989px;}
.x1b{left:609.630000px;}
.x26{left:636.269989px;}
.x3a{left:656.249989px;}
.x1{left:659.129989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.666667pt;}
.ls6{letter-spacing:-0.352000pt;}
.lsa{letter-spacing:-0.124800pt;}
.ls2{letter-spacing:-0.102400pt;}
.ls5{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.035840pt;}
.ls8{letter-spacing:0.149867pt;}
.ls1{letter-spacing:0.158933pt;}
.ls9{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.342933pt;}
.ws0{word-spacing:-48.000000pt;}
.ws9{word-spacing:-12.733333pt;}
.ws1{word-spacing:-12.549333pt;}
.ws3{word-spacing:-12.426240pt;}
.ws8{word-spacing:-12.390400pt;}
.wsc{word-spacing:-11.724765pt;}
.wsb{word-spacing:-11.273067pt;}
.wsa{word-spacing:-11.123200pt;}
.ws7{word-spacing:-10.876928pt;}
.ws6{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.560000pt;}
.ws5{word-spacing:-10.208000pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-3.572480pt;}
._f{margin-left:-2.140160pt;}
._0{margin-left:-1.214720pt;}
._3{width:0.910507pt;}
._6{width:2.345813pt;}
._10{width:3.822507pt;}
._c{width:4.988160pt;}
._e{width:5.930240pt;}
._4{width:6.846720pt;}
._5{width:8.423680pt;}
._11{width:9.550507pt;}
._19{width:10.451200pt;}
._12{width:11.376640pt;}
._1d{width:12.588800pt;}
._9{width:13.635840pt;}
._7{width:14.530560pt;}
._8{width:15.914240pt;}
._2{width:17.329920pt;}
._1{width:18.416640pt;}
._b{width:19.678293pt;}
._13{width:20.825173pt;}
._14{width:21.754880pt;}
._d{width:23.235840pt;}
._16{width:26.188800pt;}
._17{width:29.680640pt;}
._18{width:30.726400pt;}
._1a{width:32.190720pt;}
._1c{width:33.499307pt;}
._1b{width:34.411520pt;}
._1f{width:36.236800pt;}
._1e{width:38.798313pt;}
._21{width:91.766400pt;}
._20{width:97.422139pt;}
._15{width:119.525333pt;}
.fs0{font-size:45.199037pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs6{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs9{font-size:53.294387pt;}
.fs2{font-size:56.320000pt;}
.fs4{font-size:59.365899pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:2.720000pt;}
.y57{bottom:9.760000pt;}
.y75{bottom:15.648000pt;}
.y53{bottom:16.800000pt;}
.y56{bottom:23.840000pt;}
.y54{bottom:30.880000pt;}
.y2{bottom:42.240000pt;}
.y74{bottom:56.893333pt;}
.y73{bottom:71.546667pt;}
.y72{bottom:86.173333pt;}
.y2a{bottom:87.520000pt;}
.y63{bottom:96.800000pt;}
.y51{bottom:97.120000pt;}
.y71{bottom:100.826667pt;}
.y29{bottom:106.400000pt;}
.y88{bottom:112.160000pt;}
.y62{bottom:112.960000pt;}
.y64{bottom:113.280000pt;}
.y70{bottom:115.493333pt;}
.y50{bottom:116.000000pt;}
.y28{bottom:125.280000pt;}
.y87{bottom:129.120000pt;}
.y65{bottom:131.106667pt;}
.y4f{bottom:134.880000pt;}
.y27{bottom:144.160000pt;}
.y86{bottom:146.240000pt;}
.y66{bottom:148.773333pt;}
.y4e{bottom:153.760000pt;}
.y26{bottom:163.040000pt;}
.y85{bottom:163.360000pt;}
.y67{bottom:166.426667pt;}
.y4d{bottom:172.666667pt;}
.y84{bottom:180.346667pt;}
.y25{bottom:181.786667pt;}
.y68{bottom:184.093333pt;}
.y4c{bottom:191.546667pt;}
.y83{bottom:197.466667pt;}
.y24{bottom:200.666667pt;}
.y69{bottom:201.760000pt;}
.y4b{bottom:210.426667pt;}
.y82{bottom:214.586667pt;}
.y6a{bottom:219.453333pt;}
.y23{bottom:219.546667pt;}
.y4a{bottom:229.306667pt;}
.y81{bottom:231.546667pt;}
.y6b{bottom:237.120000pt;}
.y22{bottom:238.426667pt;}
.y49{bottom:248.186667pt;}
.y80{bottom:248.666667pt;}
.y6c{bottom:254.786667pt;}
.y21{bottom:257.306667pt;}
.y7f{bottom:265.786667pt;}
.y48{bottom:267.066667pt;}
.y6d{bottom:272.453333pt;}
.y20{bottom:276.186667pt;}
.y7e{bottom:282.906667pt;}
.y47{bottom:285.946667pt;}
.y6e{bottom:290.106667pt;}
.y1f{bottom:295.066667pt;}
.y7d{bottom:299.866667pt;}
.y46{bottom:304.826667pt;}
.y6f{bottom:307.813333pt;}
.y1e{bottom:313.946667pt;}
.y7c{bottom:316.986667pt;}
.y45{bottom:323.546667pt;}
.y1d{bottom:332.826667pt;}
.y7b{bottom:334.106667pt;}
.y44{bottom:342.466667pt;}
.y7a{bottom:351.106667pt;}
.y1c{bottom:351.746667pt;}
.y43{bottom:361.346667pt;}
.y79{bottom:368.226667pt;}
.y1b{bottom:370.626667pt;}
.y42{bottom:380.226667pt;}
.y78{bottom:385.346667pt;}
.y1a{bottom:389.506667pt;}
.y41{bottom:399.106667pt;}
.y77{bottom:402.306667pt;}
.y19{bottom:408.386667pt;}
.y40{bottom:417.986667pt;}
.y76{bottom:419.426667pt;}
.y18{bottom:427.266667pt;}
.y3f{bottom:436.866667pt;}
.y61{bottom:444.546667pt;}
.y17{bottom:446.146667pt;}
.y3e{bottom:455.746667pt;}
.y60{bottom:463.426667pt;}
.y16{bottom:464.866667pt;}
.y3d{bottom:474.626667pt;}
.y5f{bottom:482.306667pt;}
.y15{bottom:483.746667pt;}
.y3c{bottom:493.506667pt;}
.y5e{bottom:500.573333pt;}
.y14{bottom:502.653333pt;}
.y3b{bottom:512.413333pt;}
.y5d{bottom:512.573333pt;}
.y13{bottom:521.533333pt;}
.y5c{bottom:527.293333pt;}
.y3a{bottom:531.293333pt;}
.y12{bottom:540.413333pt;}
.y5b{bottom:542.013333pt;}
.y39{bottom:550.173333pt;}
.y11{bottom:559.293333pt;}
.y38{bottom:569.053333pt;}
.y5a{bottom:570.813333pt;}
.y10{bottom:578.173333pt;}
.y59{bottom:585.533333pt;}
.y37{bottom:587.933333pt;}
.yf{bottom:597.053333pt;}
.y58{bottom:600.253333pt;}
.y36{bottom:606.653333pt;}
.y52{bottom:614.973333pt;}
.ye{bottom:615.933333pt;}
.y35{bottom:625.533333pt;}
.yd{bottom:633.693333pt;}
.y34{bottom:644.413333pt;}
.yc{bottom:649.373333pt;}
.yb{bottom:663.133333pt;}
.y33{bottom:663.293333pt;}
.ya{bottom:677.413333pt;}
.y32{bottom:682.213333pt;}
.y9{bottom:693.733333pt;}
.y31{bottom:701.093333pt;}
.y8{bottom:710.213333pt;}
.y8f{bottom:713.413333pt;}
.y30{bottom:719.973333pt;}
.y7{bottom:726.693333pt;}
.y8e{bottom:730.373333pt;}
.y2f{bottom:738.853333pt;}
.y6{bottom:745.093333pt;}
.y8d{bottom:747.493333pt;}
.y2e{bottom:757.733333pt;}
.y5{bottom:763.013333pt;}
.y8c{bottom:764.613333pt;}
.y2d{bottom:776.613333pt;}
.y8b{bottom:781.573333pt;}
.y4{bottom:781.893333pt;}
.y2c{bottom:795.493333pt;}
.y8a{bottom:798.693333pt;}
.y3{bottom:806.373333pt;}
.y2b{bottom:814.373333pt;}
.y89{bottom:815.813333pt;}
.y1{bottom:859.360000pt;}
.hc{height:14.080000pt;}
.hd{height:28.160000pt;}
.h7{height:31.992188pt;}
.h5{height:35.404688pt;}
.h3{height:36.234375pt;}
.h2{height:39.006769pt;}
.ha{height:41.424000pt;}
.h9{height:42.240000pt;}
.h8{height:43.250000pt;}
.h11{height:43.633280pt;}
.hb{height:43.664293pt;}
.h12{height:45.993056pt;}
.hf{height:47.742188pt;}
.h10{height:47.869500pt;}
.h4{height:48.604160pt;}
.h6{height:51.232771pt;}
.he{height:325.920000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w6{width:44.160000pt;}
.w5{width:55.840000pt;}
.w4{width:66.272000pt;}
.w3{width:340.386667pt;}
.w7{width:466.080000pt;}
.w2{width:642.559991pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x14{left:1.920000pt;}
.x1e{left:2.880000pt;}
.x20{left:4.800000pt;}
.x1a{left:5.920000pt;}
.x1d{left:8.160000pt;}
.x17{left:11.200000pt;}
.x19{left:12.960000pt;}
.x1f{left:14.080000pt;}
.x16{left:18.240000pt;}
.x1c{left:25.120000pt;}
.x28{left:37.093333pt;}
.x29{left:47.706667pt;}
.xd{left:56.799991pt;}
.x4{left:79.871991pt;}
.x10{left:85.151991pt;}
.xb{left:98.271991pt;}
.x27{left:99.520000pt;}
.x13{left:101.151991pt;}
.x2a{left:105.920000pt;}
.xc{left:107.711991pt;}
.x36{left:113.253333pt;}
.x8{left:116.991991pt;}
.x12{left:123.871991pt;}
.x7{left:130.271991pt;}
.x5{left:148.826657pt;}
.x6{left:154.746657pt;}
.x21{left:161.626657pt;}
.x22{left:168.346657pt;}
.x2b{left:176.346667pt;}
.x2c{left:180.506667pt;}
.x2d{left:186.946667pt;}
.x25{left:188.026657pt;}
.x3f{left:202.626657pt;}
.x23{left:212.226657pt;}
.x24{left:218.786657pt;}
.x40{left:232.066657pt;}
.x2e{left:246.013333pt;}
.x30{left:249.626667pt;}
.x41{left:263.586657pt;}
.x9{left:266.306657pt;}
.x2f{left:271.173333pt;}
.x42{left:275.746657pt;}
.xf{left:287.586657pt;}
.x3{left:291.586657pt;}
.x2{left:310.146657pt;}
.xe{left:311.906657pt;}
.x37{left:313.026657pt;}
.x32{left:318.626667pt;}
.x33{left:329.146667pt;}
.x11{left:330.786657pt;}
.xa{left:332.573324pt;}
.x31{left:338.266667pt;}
.x3c{left:386.813324pt;}
.x35{left:390.466667pt;}
.x34{left:392.093333pt;}
.x15{left:419.773333pt;}
.x39{left:434.013324pt;}
.x43{left:446.173324pt;}
.x38{left:467.973324pt;}
.x18{left:486.053333pt;}
.x3b{left:494.693324pt;}
.x3e{left:521.733324pt;}
.x3d{left:529.253324pt;}
.x1b{left:541.893333pt;}
.x26{left:565.573324pt;}
.x3a{left:583.333324pt;}
.x1{left:585.893324pt;}
}




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