
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d1205c1fb4b43890cebfaa99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4a65706ef7823cc17f82cfbd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_910673feaee8cdda50503a7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_e29d30ded1d3eae9b3a42363.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c635764a6b09a954bbd23ba0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ee1ce22af789163737144f6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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:ffa;src:url('chunks/assets/font_6ce718aa939dc7980f32ab38.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-38.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls6{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.350400px;}
.ls9{letter-spacing:-0.341400px;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.756000px;}
.ls10{letter-spacing:15.660000px;}
.lsd{letter-spacing:21.221280px;}
.ls8{letter-spacing:64.026720px;}
.ls11{letter-spacing:83.861280px;}
.lse{letter-spacing:125.621280px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws8{word-spacing:-21.816000px;}
.ws9{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.709600px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._2d{margin-left:-7.497360px;}
._2b{margin-left:-6.486480px;}
._2a{margin-left:-5.054400px;}
._2c{margin-left:-3.706560px;}
._14{margin-left:-2.303520px;}
._1{margin-left:-1.126080px;}
._3{width:1.882320px;}
._7{width:3.444240px;}
._15{width:4.505280px;}
._22{width:5.673120px;}
._b{width:7.606320px;}
._9{width:8.760960px;}
._23{width:9.771840px;}
._16{width:10.896960px;}
._1b{width:12.514080px;}
._1a{width:13.846320px;}
._19{width:14.915280px;}
._11{width:16.205040px;}
._a{width:17.695200px;}
._8{width:19.122480px;}
._f{width:22.354560px;}
._1d{width:23.587200px;}
._13{width:25.050240px;}
._24{width:26.215440px;}
._28{width:27.631440px;}
._27{width:28.873200px;}
._1c{width:29.905200px;}
._29{width:31.674240px;}
._1e{width:32.716080px;}
._1f{width:33.948720px;}
._30{width:34.966320px;}
._12{width:36.054720px;}
._21{width:37.495440px;}
._20{width:38.581920px;}
._d{width:39.929760px;}
._c{width:41.193360px;}
._e{width:42.406320px;}
._4{width:45.352080px;}
._25{width:46.921680px;}
._26{width:48.774960px;}
._6{width:50.118960px;}
._10{width:52.091280px;}
._32{width:54.486720px;}
._17{width:55.851120px;}
._18{width:57.480720px;}
._2f{width:64.825920px;}
._2e{width:65.872080px;}
._31{width:69.697440px;}
._5{width:182.700000px;}
._2{width:638.842080px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(46,116,181);}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y9d{bottom:8.280000px;}
.y9b{bottom:22.140000px;}
.y89{bottom:23.400000px;}
.ya0{bottom:23.580000px;}
.y8e{bottom:23.760000px;}
.y8b{bottom:23.790000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y9a{bottom:29.700000px;}
.y9c{bottom:36.000000px;}
.y87{bottom:37.260000px;}
.ya2{bottom:37.440000px;}
.y8f{bottom:37.620000px;}
.y84{bottom:51.120000px;}
.ya4{bottom:51.300000px;}
.y8d{bottom:51.480000px;}
.y94{bottom:51.525000px;}
.y85{bottom:64.980000px;}
.y83{bottom:78.840000px;}
.y92{bottom:79.200000px;}
.y99{bottom:84.420000px;}
.y28{bottom:90.000000px;}
.ycb{bottom:92.160000px;}
.y86{bottom:92.700000px;}
.y88{bottom:106.560000px;}
.yec{bottom:106.920000px;}
.y4c{bottom:107.280000px;}
.y27{bottom:117.720000px;}
.y7e{bottom:119.880000px;}
.ybf{bottom:126.000000px;}
.yeb{bottom:131.256000px;}
.y4b{bottom:135.036000px;}
.y63{bottom:143.316000px;}
.y26{bottom:145.476000px;}
.y7d{bottom:147.816000px;}
.ybe{bottom:153.750000px;}
.yea{bottom:155.370000px;}
.y4a{bottom:162.750000px;}
.y98{bottom:164.370000px;}
.y62{bottom:171.030000px;}
.y25{bottom:173.370000px;}
.y7c{bottom:175.530000px;}
.ye9{bottom:179.490000px;}
.ybd{bottom:181.650000px;}
.y49{bottom:190.470000px;}
.y97{bottom:191.730000px;}
.y24{bottom:201.090000px;}
.y7b{bottom:203.250000px;}
.ye8{bottom:203.610000px;}
.ybc{bottom:209.370000px;}
.y61{bottom:213.510000px;}
.y48{bottom:218.370000px;}
.y96{bottom:219.990000px;}
.ye7{bottom:227.730000px;}
.y7a{bottom:231.150000px;}
.ybb{bottom:237.090000px;}
.y23{bottom:243.930000px;}
.y47{bottom:246.090000px;}
.ye6{bottom:251.850000px;}
.y60{bottom:256.530000px;}
.yba{bottom:264.810000px;}
.y22{bottom:271.650000px;}
.y79{bottom:273.810000px;}
.ye5{bottom:276.150000px;}
.y95{bottom:283.350000px;}
.y5f{bottom:284.430000px;}
.y46{bottom:288.570000px;}
.yb9{bottom:292.710000px;}
.y21{bottom:299.370000px;}
.ye4{bottom:300.270000px;}
.y78{bottom:301.530000px;}
.y5e{bottom:312.150000px;}
.yca{bottom:316.290000px;}
.ye3{bottom:324.390000px;}
.y77{bottom:329.430000px;}
.y45{bottom:331.230000px;}
.yb8{bottom:335.370000px;}
.y93{bottom:339.510000px;}
.y5d{bottom:339.870000px;}
.y20{bottom:342.210000px;}
.ye2{bottom:348.510000px;}
.y76{bottom:357.150000px;}
.yc9{bottom:359.310000px;}
.yb7{bottom:363.270000px;}
.y1f{bottom:369.930000px;}
.ye1{bottom:372.630000px;}
.y44{bottom:374.430000px;}
.y5c{bottom:382.395000px;}
.y75{bottom:384.915000px;}
.yc8{bottom:387.255000px;}
.yb6{bottom:391.035000px;}
.ye0{bottom:396.795000px;}
.y1e{bottom:397.695000px;}
.y43{bottom:402.195000px;}
.y91{bottom:410.835000px;}
.y74{bottom:412.815000px;}
.yc7{bottom:414.975000px;}
.yb5{bottom:418.755000px;}
.ydf{bottom:420.915000px;}
.y1d{bottom:425.595000px;}
.y42{bottom:429.915000px;}
.y73{bottom:440.535000px;}
.yc6{bottom:442.695000px;}
.yde{bottom:445.215000px;}
.yb4{bottom:446.475000px;}
.y1c{bottom:453.315000px;}
.y41{bottom:457.815000px;}
.y72{bottom:468.255000px;}
.ydd{bottom:469.335000px;}
.yc5{bottom:470.595000px;}
.yb3{bottom:474.375000px;}
.y1b{bottom:481.035000px;}
.y40{bottom:485.535000px;}
.ydc{bottom:493.455000px;}
.yb2{bottom:502.095000px;}
.y1a{bottom:508.755000px;}
.y90{bottom:509.835000px;}
.y71{bottom:510.735000px;}
.y3f{bottom:513.255000px;}
.ydb{bottom:517.575000px;}
.yb1{bottom:529.815000px;}
.y19{bottom:536.655000px;}
.y3e{bottom:540.975000px;}
.yda{bottom:541.695000px;}
.y8c{bottom:553.395000px;}
.y70{bottom:553.755000px;}
.y18{bottom:564.375000px;}
.yd9{bottom:565.815000px;}
.yc4{bottom:568.875000px;}
.yb0{bottom:572.295000px;}
.y6f{bottom:581.655000px;}
.y3d{bottom:583.815000px;}
.yd8{bottom:590.115000px;}
.y17{bottom:592.095000px;}
.yc3{bottom:596.595000px;}
.y6e{bottom:609.375000px;}
.y3c{bottom:611.535000px;}
.yd7{bottom:614.235000px;}
.yaf{bottom:615.315000px;}
.y16{bottom:619.815000px;}
.yc2{bottom:624.315000px;}
.y8a{bottom:624.675000px;}
.y6d{bottom:637.125000px;}
.yd6{bottom:638.385000px;}
.y3b{bottom:639.465000px;}
.yae{bottom:643.245000px;}
.y15{bottom:647.745000px;}
.yc1{bottom:652.245000px;}
.yd5{bottom:662.505000px;}
.y5b{bottom:662.685000px;}
.y3a{bottom:667.185000px;}
.y82{bottom:668.265000px;}
.yad{bottom:670.965000px;}
.y14{bottom:675.465000px;}
.y6c{bottom:679.605000px;}
.yc0{bottom:679.965000px;}
.yd4{bottom:686.625000px;}
.y39{bottom:694.905000px;}
.yac{bottom:698.685000px;}
.y13{bottom:703.185000px;}
.y5a{bottom:705.165000px;}
.yd3{bottom:710.745000px;}
.y38{bottom:722.625000px;}
.y12{bottom:731.085000px;}
.yd2{bottom:735.045000px;}
.yab{bottom:741.525000px;}
.y59{bottom:748.185000px;}
.y37{bottom:750.525000px;}
.y11{bottom:758.805000px;}
.yd1{bottom:759.165000px;}
.yaa{bottom:769.245000px;}
.y58{bottom:776.085000px;}
.y36{bottom:778.245000px;}
.yd0{bottom:783.285000px;}
.y10{bottom:786.525000px;}
.ya9{bottom:796.965000px;}
.y6b{bottom:805.965000px;}
.ycf{bottom:807.405000px;}
.yf{bottom:814.245000px;}
.y81{bottom:818.385000px;}
.y57{bottom:818.745000px;}
.y35{bottom:821.085000px;}
.ya8{bottom:824.865000px;}
.yce{bottom:831.525000px;}
.y6a{bottom:833.865000px;}
.y80{bottom:846.105000px;}
.y56{bottom:846.465000px;}
.y34{bottom:848.805000px;}
.ya7{bottom:852.585000px;}
.ye{bottom:857.085000px;}
.y69{bottom:861.585000px;}
.ycd{bottom:874.005000px;}
.y55{bottom:874.365000px;}
.y33{bottom:876.525000px;}
.y7f{bottom:889.350000px;}
.ya6{bottom:895.470000px;}
.yd{bottom:899.970000px;}
.y54{bottom:902.130000px;}
.y32{bottom:904.290000px;}
.ya5{bottom:915.270000px;}
.ycc{bottom:916.710000px;}
.y53{bottom:929.490000px;}
.y31{bottom:932.190000px;}
.yc{bottom:937.410000px;}
.y68{bottom:946.770000px;}
.ya3{bottom:958.830000px;}
.y30{bottom:959.910000px;}
.y52{bottom:972.690000px;}
.y67{bottom:974.850000px;}
.yb{bottom:980.250000px;}
.y2f{bottom:987.630000px;}
.y51{bottom:1000.410000px;}
.y66{bottom:1002.750000px;}
.ya{bottom:1012.830000px;}
.y2e{bottom:1015.530000px;}
.y50{bottom:1027.770000px;}
.ya1{bottom:1030.110000px;}
.y65{bottom:1030.470000px;}
.y2d{bottom:1043.250000px;}
.y9{bottom:1055.670000px;}
.y64{bottom:1058.190000px;}
.y4f{bottom:1070.970000px;}
.y2c{bottom:1085.910000px;}
.y8{bottom:1098.330000px;}
.y4e{bottom:1098.690000px;}
.y9f{bottom:1101.390000px;}
.y2b{bottom:1113.810000px;}
.y4d{bottom:1126.590000px;}
.y7{bottom:1141.200000px;}
.y2a{bottom:1141.560000px;}
.y9e{bottom:1144.800000px;}
.y6{bottom:1168.920000px;}
.y29{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h13{height:42.660000px;}
.h11{height:42.696000px;}
.hd{height:42.840000px;}
.hb{height:42.876000px;}
.h8{height:52.998047px;}
.h10{height:55.476000px;}
.h5{height:57.092344px;}
.h2{height:65.884219px;}
.h12{height:70.380000px;}
.hc{height:70.560000px;}
.hf{height:70.596000px;}
.h3{height:70.628906px;}
.h9{height:82.676953px;}
.h6{height:84.898125px;}
.h14{height:86.585445px;}
.h7{height:93.301875px;}
.he{height:98.280000px;}
.ha{height:126.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w3{width:139.356000px;}
.w5{width:139.500000px;}
.w4{width:139.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.136000px;}
.x29{left:9.396000px;}
.x1a{left:12.456000px;}
.x1d{left:14.076000px;}
.x15{left:15.480000px;}
.x2c{left:16.956000px;}
.x28{left:19.080000px;}
.x4{left:20.550000px;}
.xe{left:21.996000px;}
.x16{left:24.840000px;}
.x1e{left:26.316000px;}
.x13{left:27.900000px;}
.x19{left:30.420000px;}
.x1c{left:31.500000px;}
.x23{left:35.100000px;}
.x18{left:36.540000px;}
.x12{left:37.800000px;}
.x25{left:41.796000px;}
.x1f{left:45.405000px;}
.x2a{left:47.385000px;}
.x10{left:49.725000px;}
.x20{left:51.300000px;}
.xd{left:52.776000px;}
.x24{left:54.000000px;}
.x2b{left:56.520000px;}
.x2d{left:59.220000px;}
.x22{left:60.885000px;}
.x1b{left:64.305000px;}
.xc{left:88.020000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.xa{left:113.616000px;}
.x5{left:122.796000px;}
.x9{left:148.896000px;}
.x26{left:161.130000px;}
.x6{left:225.390000px;}
.xf{left:228.270000px;}
.x8{left:244.470000px;}
.xb{left:345.135000px;}
.x11{left:368.355000px;}
.x3{left:438.915000px;}
.x7{left:462.525000px;}
.x27{left:479.265000px;}
.x14{left:508.605000px;}
.x17{left:649.050000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls6{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.311467pt;}
.ls9{letter-spacing:-0.303467pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.672000pt;}
.ls10{letter-spacing:13.920000pt;}
.lsd{letter-spacing:18.863360pt;}
.ls8{letter-spacing:56.912640pt;}
.ls11{letter-spacing:74.543360pt;}
.lse{letter-spacing:111.663360pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws5{word-spacing:-53.120000pt;}
.ws8{word-spacing:-19.392000pt;}
.ws9{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.408533pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._2d{margin-left:-6.664320pt;}
._2b{margin-left:-5.765760pt;}
._2a{margin-left:-4.492800pt;}
._2c{margin-left:-3.294720pt;}
._14{margin-left:-2.047573pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.673173pt;}
._7{width:3.061547pt;}
._15{width:4.004693pt;}
._22{width:5.042773pt;}
._b{width:6.761173pt;}
._9{width:7.787520pt;}
._23{width:8.686080pt;}
._16{width:9.686187pt;}
._1b{width:11.123627pt;}
._1a{width:12.307840pt;}
._19{width:13.258027pt;}
._11{width:14.404480pt;}
._a{width:15.729067pt;}
._8{width:16.997760pt;}
._f{width:19.870720pt;}
._1d{width:20.966400pt;}
._13{width:22.266880pt;}
._24{width:23.302613pt;}
._28{width:24.561280pt;}
._27{width:25.665067pt;}
._1c{width:26.582400pt;}
._29{width:28.154880pt;}
._1e{width:29.080960pt;}
._1f{width:30.176640pt;}
._30{width:31.081173pt;}
._12{width:32.048640pt;}
._21{width:33.329280pt;}
._20{width:34.295040pt;}
._d{width:35.493120pt;}
._c{width:36.616320pt;}
._e{width:37.694507pt;}
._4{width:40.312960pt;}
._25{width:41.708160pt;}
._26{width:43.355520pt;}
._6{width:44.550187pt;}
._10{width:46.303360pt;}
._32{width:48.432640pt;}
._17{width:49.645440pt;}
._18{width:51.093973pt;}
._2f{width:57.623040pt;}
._2e{width:58.552960pt;}
._31{width:61.953280pt;}
._5{width:162.400000pt;}
._2{width:567.859627pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y9d{bottom:7.360000pt;}
.y9b{bottom:19.680000pt;}
.y89{bottom:20.800000pt;}
.ya0{bottom:20.960000pt;}
.y8e{bottom:21.120000pt;}
.y8b{bottom:21.146667pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y9a{bottom:26.400000pt;}
.y9c{bottom:32.000000pt;}
.y87{bottom:33.120000pt;}
.ya2{bottom:33.280000pt;}
.y8f{bottom:33.440000pt;}
.y84{bottom:45.440000pt;}
.ya4{bottom:45.600000pt;}
.y8d{bottom:45.760000pt;}
.y94{bottom:45.800000pt;}
.y85{bottom:57.760000pt;}
.y83{bottom:70.080000pt;}
.y92{bottom:70.400000pt;}
.y99{bottom:75.040000pt;}
.y28{bottom:80.000000pt;}
.ycb{bottom:81.920000pt;}
.y86{bottom:82.400000pt;}
.y88{bottom:94.720000pt;}
.yec{bottom:95.040000pt;}
.y4c{bottom:95.360000pt;}
.y27{bottom:104.640000pt;}
.y7e{bottom:106.560000pt;}
.ybf{bottom:112.000000pt;}
.yeb{bottom:116.672000pt;}
.y4b{bottom:120.032000pt;}
.y63{bottom:127.392000pt;}
.y26{bottom:129.312000pt;}
.y7d{bottom:131.392000pt;}
.ybe{bottom:136.666667pt;}
.yea{bottom:138.106667pt;}
.y4a{bottom:144.666667pt;}
.y98{bottom:146.106667pt;}
.y62{bottom:152.026667pt;}
.y25{bottom:154.106667pt;}
.y7c{bottom:156.026667pt;}
.ye9{bottom:159.546667pt;}
.ybd{bottom:161.466667pt;}
.y49{bottom:169.306667pt;}
.y97{bottom:170.426667pt;}
.y24{bottom:178.746667pt;}
.y7b{bottom:180.666667pt;}
.ye8{bottom:180.986667pt;}
.ybc{bottom:186.106667pt;}
.y61{bottom:189.786667pt;}
.y48{bottom:194.106667pt;}
.y96{bottom:195.546667pt;}
.ye7{bottom:202.426667pt;}
.y7a{bottom:205.466667pt;}
.ybb{bottom:210.746667pt;}
.y23{bottom:216.826667pt;}
.y47{bottom:218.746667pt;}
.ye6{bottom:223.866667pt;}
.y60{bottom:228.026667pt;}
.yba{bottom:235.386667pt;}
.y22{bottom:241.466667pt;}
.y79{bottom:243.386667pt;}
.ye5{bottom:245.466667pt;}
.y95{bottom:251.866667pt;}
.y5f{bottom:252.826667pt;}
.y46{bottom:256.506667pt;}
.yb9{bottom:260.186667pt;}
.y21{bottom:266.106667pt;}
.ye4{bottom:266.906667pt;}
.y78{bottom:268.026667pt;}
.y5e{bottom:277.466667pt;}
.yca{bottom:281.146667pt;}
.ye3{bottom:288.346667pt;}
.y77{bottom:292.826667pt;}
.y45{bottom:294.426667pt;}
.yb8{bottom:298.106667pt;}
.y93{bottom:301.786667pt;}
.y5d{bottom:302.106667pt;}
.y20{bottom:304.186667pt;}
.ye2{bottom:309.786667pt;}
.y76{bottom:317.466667pt;}
.yc9{bottom:319.386667pt;}
.yb7{bottom:322.906667pt;}
.y1f{bottom:328.826667pt;}
.ye1{bottom:331.226667pt;}
.y44{bottom:332.826667pt;}
.y5c{bottom:339.906667pt;}
.y75{bottom:342.146667pt;}
.yc8{bottom:344.226667pt;}
.yb6{bottom:347.586667pt;}
.ye0{bottom:352.706667pt;}
.y1e{bottom:353.506667pt;}
.y43{bottom:357.506667pt;}
.y91{bottom:365.186667pt;}
.y74{bottom:366.946667pt;}
.yc7{bottom:368.866667pt;}
.yb5{bottom:372.226667pt;}
.ydf{bottom:374.146667pt;}
.y1d{bottom:378.306667pt;}
.y42{bottom:382.146667pt;}
.y73{bottom:391.586667pt;}
.yc6{bottom:393.506667pt;}
.yde{bottom:395.746667pt;}
.yb4{bottom:396.866667pt;}
.y1c{bottom:402.946667pt;}
.y41{bottom:406.946667pt;}
.y72{bottom:416.226667pt;}
.ydd{bottom:417.186667pt;}
.yc5{bottom:418.306667pt;}
.yb3{bottom:421.666667pt;}
.y1b{bottom:427.586667pt;}
.y40{bottom:431.586667pt;}
.ydc{bottom:438.626667pt;}
.yb2{bottom:446.306667pt;}
.y1a{bottom:452.226667pt;}
.y90{bottom:453.186667pt;}
.y71{bottom:453.986667pt;}
.y3f{bottom:456.226667pt;}
.ydb{bottom:460.066667pt;}
.yb1{bottom:470.946667pt;}
.y19{bottom:477.026667pt;}
.y3e{bottom:480.866667pt;}
.yda{bottom:481.506667pt;}
.y8c{bottom:491.906667pt;}
.y70{bottom:492.226667pt;}
.y18{bottom:501.666667pt;}
.yd9{bottom:502.946667pt;}
.yc4{bottom:505.666667pt;}
.yb0{bottom:508.706667pt;}
.y6f{bottom:517.026667pt;}
.y3d{bottom:518.946667pt;}
.yd8{bottom:524.546667pt;}
.y17{bottom:526.306667pt;}
.yc3{bottom:530.306667pt;}
.y6e{bottom:541.666667pt;}
.y3c{bottom:543.586667pt;}
.yd7{bottom:545.986667pt;}
.yaf{bottom:546.946667pt;}
.y16{bottom:550.946667pt;}
.yc2{bottom:554.946667pt;}
.y8a{bottom:555.266667pt;}
.y6d{bottom:566.333333pt;}
.yd6{bottom:567.453333pt;}
.y3b{bottom:568.413333pt;}
.yae{bottom:571.773333pt;}
.y15{bottom:575.773333pt;}
.yc1{bottom:579.773333pt;}
.yd5{bottom:588.893333pt;}
.y5b{bottom:589.053333pt;}
.y3a{bottom:593.053333pt;}
.y82{bottom:594.013333pt;}
.yad{bottom:596.413333pt;}
.y14{bottom:600.413333pt;}
.y6c{bottom:604.093333pt;}
.yc0{bottom:604.413333pt;}
.yd4{bottom:610.333333pt;}
.y39{bottom:617.693333pt;}
.yac{bottom:621.053333pt;}
.y13{bottom:625.053333pt;}
.y5a{bottom:626.813333pt;}
.yd3{bottom:631.773333pt;}
.y38{bottom:642.333333pt;}
.y12{bottom:649.853333pt;}
.yd2{bottom:653.373333pt;}
.yab{bottom:659.133333pt;}
.y59{bottom:665.053333pt;}
.y37{bottom:667.133333pt;}
.y11{bottom:674.493333pt;}
.yd1{bottom:674.813333pt;}
.yaa{bottom:683.773333pt;}
.y58{bottom:689.853333pt;}
.y36{bottom:691.773333pt;}
.yd0{bottom:696.253333pt;}
.y10{bottom:699.133333pt;}
.ya9{bottom:708.413333pt;}
.y6b{bottom:716.413333pt;}
.ycf{bottom:717.693333pt;}
.yf{bottom:723.773333pt;}
.y81{bottom:727.453333pt;}
.y57{bottom:727.773333pt;}
.y35{bottom:729.853333pt;}
.ya8{bottom:733.213333pt;}
.yce{bottom:739.133333pt;}
.y6a{bottom:741.213333pt;}
.y80{bottom:752.093333pt;}
.y56{bottom:752.413333pt;}
.y34{bottom:754.493333pt;}
.ya7{bottom:757.853333pt;}
.ye{bottom:761.853333pt;}
.y69{bottom:765.853333pt;}
.ycd{bottom:776.893333pt;}
.y55{bottom:777.213333pt;}
.y33{bottom:779.133333pt;}
.y7f{bottom:790.533333pt;}
.ya6{bottom:795.973333pt;}
.yd{bottom:799.973333pt;}
.y54{bottom:801.893333pt;}
.y32{bottom:803.813333pt;}
.ya5{bottom:813.573333pt;}
.ycc{bottom:814.853333pt;}
.y53{bottom:826.213333pt;}
.y31{bottom:828.613333pt;}
.yc{bottom:833.253333pt;}
.y68{bottom:841.573333pt;}
.ya3{bottom:852.293333pt;}
.y30{bottom:853.253333pt;}
.y52{bottom:864.613333pt;}
.y67{bottom:866.533333pt;}
.yb{bottom:871.333333pt;}
.y2f{bottom:877.893333pt;}
.y51{bottom:889.253333pt;}
.y66{bottom:891.333333pt;}
.ya{bottom:900.293333pt;}
.y2e{bottom:902.693333pt;}
.y50{bottom:913.573333pt;}
.ya1{bottom:915.653333pt;}
.y65{bottom:915.973333pt;}
.y2d{bottom:927.333333pt;}
.y9{bottom:938.373333pt;}
.y64{bottom:940.613333pt;}
.y4f{bottom:951.973333pt;}
.y2c{bottom:965.253333pt;}
.y8{bottom:976.293333pt;}
.y4e{bottom:976.613333pt;}
.y9f{bottom:979.013333pt;}
.y2b{bottom:990.053333pt;}
.y4d{bottom:1001.413333pt;}
.y7{bottom:1014.400000pt;}
.y2a{bottom:1014.720000pt;}
.y9e{bottom:1017.600000pt;}
.y6{bottom:1039.040000pt;}
.y29{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h13{height:37.920000pt;}
.h11{height:37.952000pt;}
.hd{height:38.080000pt;}
.hb{height:38.112000pt;}
.h8{height:47.109375pt;}
.h10{height:49.312000pt;}
.h5{height:50.748750pt;}
.h2{height:58.563750pt;}
.h12{height:62.560000pt;}
.hc{height:62.720000pt;}
.hf{height:62.752000pt;}
.h3{height:62.781250pt;}
.h9{height:73.490625pt;}
.h6{height:75.465000pt;}
.h14{height:76.964840pt;}
.h7{height:82.935000pt;}
.he{height:87.360000pt;}
.ha{height:112.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w3{width:123.872000pt;}
.w5{width:124.000000pt;}
.w4{width:124.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.232000pt;}
.x29{left:8.352000pt;}
.x1a{left:11.072000pt;}
.x1d{left:12.512000pt;}
.x15{left:13.760000pt;}
.x2c{left:15.072000pt;}
.x28{left:16.960000pt;}
.x4{left:18.266667pt;}
.xe{left:19.552000pt;}
.x16{left:22.080000pt;}
.x1e{left:23.392000pt;}
.x13{left:24.800000pt;}
.x19{left:27.040000pt;}
.x1c{left:28.000000pt;}
.x23{left:31.200000pt;}
.x18{left:32.480000pt;}
.x12{left:33.600000pt;}
.x25{left:37.152000pt;}
.x1f{left:40.360000pt;}
.x2a{left:42.120000pt;}
.x10{left:44.200000pt;}
.x20{left:45.600000pt;}
.xd{left:46.912000pt;}
.x24{left:48.000000pt;}
.x2b{left:50.240000pt;}
.x2d{left:52.640000pt;}
.x22{left:54.120000pt;}
.x1b{left:57.160000pt;}
.xc{left:78.240000pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.xa{left:100.992000pt;}
.x5{left:109.152000pt;}
.x9{left:132.352000pt;}
.x26{left:143.226667pt;}
.x6{left:200.346667pt;}
.xf{left:202.906667pt;}
.x8{left:217.306667pt;}
.xb{left:306.786667pt;}
.x11{left:327.426667pt;}
.x3{left:390.146667pt;}
.x7{left:411.133333pt;}
.x27{left:426.013333pt;}
.x14{left:452.093333pt;}
.x17{left:576.933333pt;}
}




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