
    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_06a854308fa6f2cd6e576feb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.013000;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_56fd42e569f95f8760d0245c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.987305;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_d05f869909fa7a55e6748cde.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.176270;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_9feb8556fd9a2dc28ebd1959.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008789;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_1df387b68c3e331e2c5a452f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928000;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_ee606ee6037c20ec580bb4f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_926c37376c651083cc69fa81.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.182617;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_028b5e4e2ce4212863f4bfdf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.848145;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;}
.m6{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);}
.m3{transform:matrix(0.000000,-0.197170,0.246462,0.041909,0,0);-ms-transform:matrix(0.000000,-0.197170,0.246462,0.041909,0,0);-webkit-transform:matrix(0.000000,-0.197170,0.246462,0.041909,0,0);}
.m2{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);}
.m4{transform:matrix(0.197170,0.000000,-0.041909,0.246462,0,0);-ms-transform:matrix(0.197170,0.000000,-0.041909,0.246462,0,0);-webkit-transform:matrix(0.197170,0.000000,-0.041909,0.246462,0,0);}
.m0{transform:matrix(0.199994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199994,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.v1{vertical-align:26.910000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.594000px;}
.ls5{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.730335px;}
.ls7{letter-spacing:0.792000px;}
.ls0{letter-spacing:2.818452px;}
.ls6{letter-spacing:12.672000px;}
.ls8{letter-spacing:26.598000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.wse{word-spacing:-13.500000px;}
.ws0{word-spacing:-2.915640px;}
.wsb{word-spacing:-1.452000px;}
.wsc{word-spacing:-1.386000px;}
.ws9{word-spacing:-1.320000px;}
.ws1{word-spacing:-0.049320px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.396000px;}
.ws7{word-spacing:1.584000px;}
.ws10{word-spacing:4.092000px;}
.wsf{word-spacing:5.808000px;}
.ws5{word-spacing:6.336000px;}
.wsd{word-spacing:9.108000px;}
.ws6{word-spacing:12.474000px;}
.wsa{word-spacing:13.662000px;}
._12{margin-left:-8.928000px;}
._15{margin-left:-6.696000px;}
._14{margin-left:-5.544000px;}
._10{margin-left:-3.781440px;}
._0{margin-left:-2.332512px;}
._a{margin-left:-1.254000px;}
._5{width:1.650000px;}
._3{width:2.870520px;}
._1{width:4.389480px;}
._9{width:5.478000px;}
._f{width:6.839160px;}
._2{width:7.920000px;}
._17{width:8.943360px;}
._8{width:9.966000px;}
._18{width:11.022000px;}
._11{width:12.762048px;}
._19{width:13.860000px;}
._d{width:15.246000px;}
._6{width:18.018000px;}
._1b{width:19.206960px;}
._13{width:20.208000px;}
._4{width:21.648000px;}
._b{width:22.736520px;}
._1d{width:24.090000px;}
._7{width:25.740000px;}
._16{width:27.588000px;}
._1c{width:28.946880px;}
._1a{width:30.360000px;}
._1f{width:31.482000px;}
._c{width:32.538000px;}
._e{width:33.594000px;}
._21{width:35.508000px;}
._22{width:36.761040px;}
._20{width:38.598000px;}
._1e{width:41.382000px;}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(173,173,173);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.000000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:49.320000px;}
.fsd{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:73.033493px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:96.000000px;}
.fs0{font-size:97.188000px;}
.fsa{font-size:108.000000px;}
.fsc{font-size:122.286000px;}
.fsb{font-size:1152.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:56.746950px;}
.y25{bottom:57.218100px;}
.y24{bottom:70.718100px;}
.y78{bottom:117.555300px;}
.y52{bottom:117.555450px;}
.y15{bottom:117.555600px;}
.y21{bottom:119.287950px;}
.y20{bottom:134.287950px;}
.y77{bottom:136.860300px;}
.y51{bottom:136.860450px;}
.y14{bottom:136.860600px;}
.y1f{bottom:149.287950px;}
.y76{bottom:156.165300px;}
.y50{bottom:156.165450px;}
.y13{bottom:156.165600px;}
.y1e{bottom:164.287950px;}
.y75{bottom:175.470300px;}
.y4f{bottom:175.470450px;}
.y12{bottom:175.470600px;}
.y7d{bottom:190.275600px;}
.y74{bottom:194.775300px;}
.y4e{bottom:194.775450px;}
.y11{bottom:194.775600px;}
.y73{bottom:214.080300px;}
.y4d{bottom:214.080450px;}
.y10{bottom:214.080600px;}
.y80{bottom:228.894600px;}
.y72{bottom:233.385300px;}
.y4c{bottom:233.385450px;}
.yf{bottom:233.385600px;}
.y7f{bottom:248.190600px;}
.y71{bottom:252.690300px;}
.y4b{bottom:252.690450px;}
.ye{bottom:252.690600px;}
.y82{bottom:267.495600px;}
.y70{bottom:271.995300px;}
.y4a{bottom:271.995450px;}
.yd{bottom:271.995600px;}
.y6f{bottom:291.300300px;}
.y49{bottom:291.300450px;}
.yc{bottom:291.300600px;}
.y6e{bottom:310.605300px;}
.y48{bottom:310.605450px;}
.yb{bottom:310.605600px;}
.y6d{bottom:329.910300px;}
.y47{bottom:329.910450px;}
.ya{bottom:329.910600px;}
.y6c{bottom:349.215300px;}
.y46{bottom:349.215450px;}
.y9{bottom:349.215600px;}
.y85{bottom:364.038600px;}
.y6b{bottom:368.520300px;}
.y45{bottom:368.520450px;}
.y8{bottom:368.520600px;}
.y84{bottom:383.334600px;}
.y6a{bottom:387.825300px;}
.y44{bottom:387.825450px;}
.y7{bottom:387.825600px;}
.y83{bottom:402.630600px;}
.y69{bottom:407.130300px;}
.y43{bottom:407.130450px;}
.y6{bottom:407.130600px;}
.y68{bottom:426.435300px;}
.y42{bottom:426.435450px;}
.y5{bottom:426.435600px;}
.y67{bottom:445.740300px;}
.y41{bottom:445.740450px;}
.y4{bottom:445.740600px;}
.y7e{bottom:460.563600px;}
.y66{bottom:465.045300px;}
.y40{bottom:465.045450px;}
.y3{bottom:465.045600px;}
.y7a{bottom:479.859600px;}
.y65{bottom:484.350300px;}
.y3f{bottom:484.350450px;}
.y79{bottom:499.155600px;}
.y1d{bottom:501.180450px;}
.y64{bottom:503.655300px;}
.y3e{bottom:503.655450px;}
.y81{bottom:518.460600px;}
.y1c{bottom:521.002950px;}
.y63{bottom:522.960300px;}
.y3d{bottom:522.960450px;}
.y1b{bottom:540.795450px;}
.y62{bottom:542.265300px;}
.y3c{bottom:542.265450px;}
.y1a{bottom:560.587950px;}
.y61{bottom:561.570300px;}
.y3b{bottom:561.570450px;}
.y19{bottom:580.380450px;}
.y60{bottom:580.875300px;}
.y3a{bottom:580.875450px;}
.y5f{bottom:600.180300px;}
.y39{bottom:600.180450px;}
.y5e{bottom:619.485300px;}
.y38{bottom:619.485450px;}
.y18{bottom:633.594000px;}
.y5d{bottom:638.790300px;}
.y59{bottom:638.790450px;}
.y37{bottom:653.604450px;}
.y5c{bottom:658.095300px;}
.y58{bottom:658.095450px;}
.y17{bottom:662.082000px;}
.y36{bottom:672.900450px;}
.y5b{bottom:677.400300px;}
.y57{bottom:677.400450px;}
.y16{bottom:690.570000px;}
.y5a{bottom:696.705300px;}
.y56{bottom:696.705450px;}
.y27{bottom:707.728800px;}
.y35{bottom:716.010300px;}
.y55{bottom:716.010450px;}
.y34{bottom:735.315300px;}
.y8b{bottom:735.315450px;}
.y54{bottom:750.120450px;}
.y33{bottom:754.620300px;}
.y8a{bottom:754.620450px;}
.y32{bottom:773.925300px;}
.y89{bottom:773.925450px;}
.y31{bottom:793.230300px;}
.y88{bottom:793.230450px;}
.y30{bottom:812.535300px;}
.y87{bottom:812.535450px;}
.y2f{bottom:831.840300px;}
.y86{bottom:846.645450px;}
.y2e{bottom:851.145300px;}
.y2d{bottom:870.450300px;}
.y2c{bottom:889.755300px;}
.y2b{bottom:909.060300px;}
.y28{bottom:913.862400px;}
.y23{bottom:918.425250px;}
.y2{bottom:919.263000px;}
.y7c{bottom:923.874300px;}
.y22{bottom:927.226800px;}
.y2a{bottom:928.365300px;}
.y1{bottom:934.577400px;}
.y7b{bottom:943.170300px;}
.y29{bottom:947.670300px;}
.y53{bottom:1027.867050px;}
.h3{height:36.348840px;}
.h11{height:39.102539px;}
.h8{height:43.148438px;}
.ha{height:46.887502px;}
.he{height:47.791992px;}
.h9{height:52.136719px;}
.h7{height:53.935547px;}
.h6{height:56.481445px;}
.h4{height:59.329102px;}
.h12{height:59.330302px;}
.hf{height:59.812500px;}
.h10{height:65.250000px;}
.h5{height:69.515625px;}
.h2{height:71.627556px;}
.hd{height:93.915648px;}
.hb{height:97.083984px;}
.hc{height:884.736000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w0{width:1573.230000px;}
.w1{width:1573.500000px;}
.x0{left:0.000000px;}
.x19{left:57.061350px;}
.x17{left:85.039350px;}
.x18{left:110.554950px;}
.xd{left:871.653450px;}
.x16{left:896.052750px;}
.x15{left:926.624250px;}
.x13{left:950.828100px;}
.x14{left:957.195750px;}
.x1a{left:959.591550px;}
.x3{left:1062.992100px;}
.x5{left:1083.588750px;}
.x4{left:1088.507700px;}
.xc{left:1226.063400px;}
.xb{left:1245.263700px;}
.x6{left:1318.289550px;}
.x1{left:1322.786550px;}
.x11{left:1326.842138px;}
.x7{left:1355.959950px;}
.x10{left:1366.347300px;}
.x9{left:1386.833700px;}
.xa{left:1397.238900px;}
.x8{left:1404.180900px;}
.x2{left:1428.343800px;}
.x12{left:1494.566850px;}
.xe{left:1511.070150px;}
.xf{left:1531.169850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.920000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.649187pt;}
.ls7{letter-spacing:0.704000pt;}
.ls0{letter-spacing:2.505291pt;}
.ls6{letter-spacing:11.264000pt;}
.ls8{letter-spacing:23.642667pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.wse{word-spacing:-12.000000pt;}
.ws0{word-spacing:-2.591680pt;}
.wsb{word-spacing:-1.290667pt;}
.wsc{word-spacing:-1.232000pt;}
.ws9{word-spacing:-1.173333pt;}
.ws1{word-spacing:-0.043840pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.352000pt;}
.ws7{word-spacing:1.408000pt;}
.ws10{word-spacing:3.637333pt;}
.wsf{word-spacing:5.162667pt;}
.ws5{word-spacing:5.632000pt;}
.wsd{word-spacing:8.096000pt;}
.ws6{word-spacing:11.088000pt;}
.wsa{word-spacing:12.144000pt;}
._12{margin-left:-7.936000pt;}
._15{margin-left:-5.952000pt;}
._14{margin-left:-4.928000pt;}
._10{margin-left:-3.361280pt;}
._0{margin-left:-2.073344pt;}
._a{margin-left:-1.114667pt;}
._5{width:1.466667pt;}
._3{width:2.551573pt;}
._1{width:3.901760pt;}
._9{width:4.869333pt;}
._f{width:6.079253pt;}
._2{width:7.040000pt;}
._17{width:7.949653pt;}
._8{width:8.858667pt;}
._18{width:9.797333pt;}
._11{width:11.344043pt;}
._19{width:12.320000pt;}
._d{width:13.552000pt;}
._6{width:16.016000pt;}
._1b{width:17.072853pt;}
._13{width:17.962667pt;}
._4{width:19.242667pt;}
._b{width:20.210240pt;}
._1d{width:21.413333pt;}
._7{width:22.880000pt;}
._16{width:24.522667pt;}
._1c{width:25.730560pt;}
._1a{width:26.986667pt;}
._1f{width:27.984000pt;}
._c{width:28.922667pt;}
._e{width:29.861333pt;}
._21{width:31.562667pt;}
._22{width:32.676480pt;}
._20{width:34.309333pt;}
._1e{width:36.784000pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:43.840000pt;}
.fsd{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:64.918660pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:85.333333pt;}
.fs0{font-size:86.389333pt;}
.fsa{font-size:96.000000pt;}
.fsc{font-size:108.698667pt;}
.fsb{font-size:1024.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:50.441733pt;}
.y25{bottom:50.860533pt;}
.y24{bottom:62.860533pt;}
.y78{bottom:104.493600pt;}
.y52{bottom:104.493733pt;}
.y15{bottom:104.493867pt;}
.y21{bottom:106.033733pt;}
.y20{bottom:119.367067pt;}
.y77{bottom:121.653600pt;}
.y51{bottom:121.653733pt;}
.y14{bottom:121.653867pt;}
.y1f{bottom:132.700400pt;}
.y76{bottom:138.813600pt;}
.y50{bottom:138.813733pt;}
.y13{bottom:138.813867pt;}
.y1e{bottom:146.033733pt;}
.y75{bottom:155.973600pt;}
.y4f{bottom:155.973733pt;}
.y12{bottom:155.973867pt;}
.y7d{bottom:169.133867pt;}
.y74{bottom:173.133600pt;}
.y4e{bottom:173.133733pt;}
.y11{bottom:173.133867pt;}
.y73{bottom:190.293600pt;}
.y4d{bottom:190.293733pt;}
.y10{bottom:190.293867pt;}
.y80{bottom:203.461867pt;}
.y72{bottom:207.453600pt;}
.y4c{bottom:207.453733pt;}
.yf{bottom:207.453867pt;}
.y7f{bottom:220.613867pt;}
.y71{bottom:224.613600pt;}
.y4b{bottom:224.613733pt;}
.ye{bottom:224.613867pt;}
.y82{bottom:237.773867pt;}
.y70{bottom:241.773600pt;}
.y4a{bottom:241.773733pt;}
.yd{bottom:241.773867pt;}
.y6f{bottom:258.933600pt;}
.y49{bottom:258.933733pt;}
.yc{bottom:258.933867pt;}
.y6e{bottom:276.093600pt;}
.y48{bottom:276.093733pt;}
.yb{bottom:276.093867pt;}
.y6d{bottom:293.253600pt;}
.y47{bottom:293.253733pt;}
.ya{bottom:293.253867pt;}
.y6c{bottom:310.413600pt;}
.y46{bottom:310.413733pt;}
.y9{bottom:310.413867pt;}
.y85{bottom:323.589867pt;}
.y6b{bottom:327.573600pt;}
.y45{bottom:327.573733pt;}
.y8{bottom:327.573867pt;}
.y84{bottom:340.741867pt;}
.y6a{bottom:344.733600pt;}
.y44{bottom:344.733733pt;}
.y7{bottom:344.733867pt;}
.y83{bottom:357.893867pt;}
.y69{bottom:361.893600pt;}
.y43{bottom:361.893733pt;}
.y6{bottom:361.893867pt;}
.y68{bottom:379.053600pt;}
.y42{bottom:379.053733pt;}
.y5{bottom:379.053867pt;}
.y67{bottom:396.213600pt;}
.y41{bottom:396.213733pt;}
.y4{bottom:396.213867pt;}
.y7e{bottom:409.389867pt;}
.y66{bottom:413.373600pt;}
.y40{bottom:413.373733pt;}
.y3{bottom:413.373867pt;}
.y7a{bottom:426.541867pt;}
.y65{bottom:430.533600pt;}
.y3f{bottom:430.533733pt;}
.y79{bottom:443.693867pt;}
.y1d{bottom:445.493733pt;}
.y64{bottom:447.693600pt;}
.y3e{bottom:447.693733pt;}
.y81{bottom:460.853867pt;}
.y1c{bottom:463.113733pt;}
.y63{bottom:464.853600pt;}
.y3d{bottom:464.853733pt;}
.y1b{bottom:480.707067pt;}
.y62{bottom:482.013600pt;}
.y3c{bottom:482.013733pt;}
.y1a{bottom:498.300400pt;}
.y61{bottom:499.173600pt;}
.y3b{bottom:499.173733pt;}
.y19{bottom:515.893733pt;}
.y60{bottom:516.333600pt;}
.y3a{bottom:516.333733pt;}
.y5f{bottom:533.493600pt;}
.y39{bottom:533.493733pt;}
.y5e{bottom:550.653600pt;}
.y38{bottom:550.653733pt;}
.y18{bottom:563.194667pt;}
.y5d{bottom:567.813600pt;}
.y59{bottom:567.813733pt;}
.y37{bottom:580.981733pt;}
.y5c{bottom:584.973600pt;}
.y58{bottom:584.973733pt;}
.y17{bottom:588.517333pt;}
.y36{bottom:598.133733pt;}
.y5b{bottom:602.133600pt;}
.y57{bottom:602.133733pt;}
.y16{bottom:613.840000pt;}
.y5a{bottom:619.293600pt;}
.y56{bottom:619.293733pt;}
.y27{bottom:629.092267pt;}
.y35{bottom:636.453600pt;}
.y55{bottom:636.453733pt;}
.y34{bottom:653.613600pt;}
.y8b{bottom:653.613733pt;}
.y54{bottom:666.773733pt;}
.y33{bottom:670.773600pt;}
.y8a{bottom:670.773733pt;}
.y32{bottom:687.933600pt;}
.y89{bottom:687.933733pt;}
.y31{bottom:705.093600pt;}
.y88{bottom:705.093733pt;}
.y30{bottom:722.253600pt;}
.y87{bottom:722.253733pt;}
.y2f{bottom:739.413600pt;}
.y86{bottom:752.573733pt;}
.y2e{bottom:756.573600pt;}
.y2d{bottom:773.733600pt;}
.y2c{bottom:790.893600pt;}
.y2b{bottom:808.053600pt;}
.y28{bottom:812.322133pt;}
.y23{bottom:816.378000pt;}
.y2{bottom:817.122667pt;}
.y7c{bottom:821.221600pt;}
.y22{bottom:824.201600pt;}
.y2a{bottom:825.213600pt;}
.y1{bottom:830.735467pt;}
.y7b{bottom:838.373600pt;}
.y29{bottom:842.373600pt;}
.y53{bottom:913.659600pt;}
.h3{height:32.310080pt;}
.h11{height:34.757812pt;}
.h8{height:38.354167pt;}
.ha{height:41.677780pt;}
.he{height:42.481771pt;}
.h9{height:46.343750pt;}
.h7{height:47.942708pt;}
.h6{height:50.205729pt;}
.h4{height:52.736979pt;}
.h12{height:52.738046pt;}
.hf{height:53.166667pt;}
.h10{height:58.000000pt;}
.h5{height:61.791667pt;}
.h2{height:63.668939pt;}
.hd{height:83.480576pt;}
.hb{height:86.296875pt;}
.hc{height:786.432000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w0{width:1398.426667pt;}
.w1{width:1398.666667pt;}
.x0{left:0.000000pt;}
.x19{left:50.721200pt;}
.x17{left:75.590533pt;}
.x18{left:98.271067pt;}
.xd{left:774.803067pt;}
.x16{left:796.491333pt;}
.x15{left:823.666000pt;}
.x13{left:845.180533pt;}
.x14{left:850.840667pt;}
.x1a{left:852.970267pt;}
.x3{left:944.881867pt;}
.x5{left:963.190000pt;}
.x4{left:967.562400pt;}
.xc{left:1089.834133pt;}
.xb{left:1106.901067pt;}
.x6{left:1171.812933pt;}
.x1{left:1175.810267pt;}
.x11{left:1179.415233pt;}
.x7{left:1205.297733pt;}
.x10{left:1214.530933pt;}
.x9{left:1232.741067pt;}
.xa{left:1241.990133pt;}
.x8{left:1248.160800pt;}
.x2{left:1269.638933pt;}
.x12{left:1328.503867pt;}
.xe{left:1343.173467pt;}
.xf{left:1361.039867pt;}
}




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