
    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_9a494ac74f3bfa53b315969b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_b55fb9ab53c4fa22811cf2e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725586;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_898d5d336466b43562368e8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991699;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_868432f38eb48ed8bbab92f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_362b83e4145f5619d4dc8b91.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_30df95d98e5710da654a0ff7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_c74eb3f6bb9d1b346fd80946.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_d98b1a13fe04d8b611bcbe18.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891113;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.249981,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249981,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249981,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;}
.v1{vertical-align:34.559969px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.053252px;}
.ls2{letter-spacing:847.441593px;}
.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:-16.558425px;}
.ws2{word-spacing:-14.938650px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-2.118443px;}
._0{margin-left:-1.051195px;}
._2{width:1.106296px;}
._17{width:2.857131px;}
._19{width:4.007112px;}
._20{width:5.892730px;}
._b{width:7.162295px;}
._c{width:8.243495px;}
._13{width:9.252333px;}
._d{width:10.332198px;}
._25{width:11.412834px;}
._14{width:12.970680px;}
._24{width:14.053698px;}
._1a{width:15.122499px;}
._9{width:17.814796px;}
._a{width:19.012177px;}
._2b{width:20.205432px;}
._5{width:21.756736px;}
._6{width:23.482965px;}
._11{width:24.704342px;}
._3a{width:26.353768px;}
._12{width:28.458758px;}
._8{width:30.258193px;}
._7{width:31.370712px;}
._22{width:32.428123px;}
._23{width:33.918381px;}
._28{width:34.991581px;}
._2a{width:36.502272px;}
._26{width:38.415546px;}
._3b{width:39.792483px;}
._43{width:41.821666px;}
._3d{width:42.921249px;}
._3c{width:44.892736px;}
._21{width:46.295287px;}
._18{width:48.069108px;}
._15{width:53.019212px;}
._48{width:56.149102px;}
._49{width:57.200303px;}
._4{width:59.333297px;}
._16{width:64.815361px;}
._1f{width:68.022289px;}
._1e{width:69.824802px;}
._46{width:72.082964px;}
._47{width:73.227837px;}
._45{width:75.993638px;}
._44{width:77.022549px;}
._4d{width:78.110488px;}
._4c{width:79.568019px;}
._29{width:87.408821px;}
._1d{width:91.315574px;}
._1c{width:92.803239px;}
._39{width:108.999724px;}
._42{width:111.228374px;}
._e{width:115.976502px;}
._41{width:117.969212px;}
._40{width:119.274475px;}
._3e{width:120.894096px;}
._3f{width:122.064583px;}
._1b{width:126.569496px;}
._27{width:150.639495px;}
._4b{width:166.569094px;}
._4a{width:168.091164px;}
._2c{width:171.435926px;}
._36{width:190.019628px;}
._32{width:200.631555px;}
._2d{width:205.555824px;}
._2f{width:206.571652px;}
._2e{width:213.742204px;}
._35{width:214.969354px;}
._33{width:220.315210px;}
._37{width:224.137404px;}
._38{width:237.413760px;}
._30{width:246.246606px;}
._31{width:253.149527px;}
._34{width:260.320079px;}
._f{width:847.129023px;}
._1{width:897.117746px;}
._10{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs5{font-size:59.759492px;}
.fs3{font-size:66.233700px;}
.fs4{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.239972px;}
.y39{bottom:3.240006px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y2e{bottom:114.480010px;}
.y3d{bottom:116.460022px;}
.y64{bottom:116.639991px;}
.y2a{bottom:133.200027px;}
.y2d{bottom:133.379997px;}
.y3c{bottom:133.740005px;}
.y63{bottom:135.539978px;}
.y29{bottom:152.460022px;}
.y62{bottom:154.620003px;}
.y3b{bottom:154.800041px;}
.y28{bottom:171.360008px;}
.y3a{bottom:172.080024px;}
.y61{bottom:173.519988px;}
.y38{bottom:188.460022px;}
.y27{bottom:190.259994px;}
.y60{bottom:192.420043px;}
.y26{bottom:209.340018px;}
.y5f{bottom:211.499999px;}
.y35{bottom:216.532136px;}
.y36{bottom:218.693052px;}
.y25{bottom:228.240005px;}
.y5e{bottom:230.399986px;}
.y37{bottom:233.090252px;}
.y33{bottom:235.077936px;}
.y31{bottom:235.251167px;}
.y32{bottom:242.094178px;}
.y30{bottom:245.331032px;}
.y2f{bottom:247.131818px;}
.y24{bottom:247.320030px;}
.y34{bottom:248.212253px;}
.y5d{bottom:249.480010px;}
.y23{bottom:266.220016px;}
.y5c{bottom:268.379997px;}
.y22{bottom:285.300041px;}
.y5b{bottom:287.460022px;}
.y21{bottom:300.600013px;}
.y2c{bottom:304.200027px;}
.y5a{bottom:306.360008px;}
.y20{bottom:323.100013px;}
.y59{bottom:325.259994px;}
.y1f{bottom:342.180004px;}
.y58{bottom:344.340018px;}
.y1e{bottom:361.080024px;}
.y57{bottom:363.240005px;}
.y1d{bottom:380.160015px;}
.y56{bottom:382.319996px;}
.y1c{bottom:399.060000px;}
.y55{bottom:401.220016px;}
.y1b{bottom:417.960022px;}
.y54{bottom:420.120003px;}
.y1a{bottom:437.040012px;}
.y53{bottom:439.200027px;}
.y19{bottom:455.939998px;}
.y52{bottom:458.100013px;}
.y18{bottom:475.020023px;}
.y51{bottom:477.180004px;}
.y17{bottom:493.920009px;}
.y50{bottom:496.080024px;}
.y16{bottom:512.819996px;}
.y4f{bottom:514.980010px;}
.y2b{bottom:528.300006px;}
.y15{bottom:531.900021px;}
.y4e{bottom:534.060000px;}
.y4d{bottom:550.080024px;}
.y14{bottom:550.800006px;}
.y4b{bottom:568.080024px;}
.y13{bottom:569.879997px;}
.y12{bottom:588.780017px;}
.y4a{bottom:599.400021px;}
.y11{bottom:607.680004px;}
.y49{bottom:624.420009px;}
.y10{bottom:626.760012px;}
.yf{bottom:645.660015px;}
.y48{bottom:647.100013px;}
.y47{bottom:664.380014px;}
.ye{bottom:664.740005px;}
.yd{bottom:683.640008px;}
.y44{bottom:690.839818px;}
.y45{bottom:692.998931px;}
.yc{bottom:702.540012px;}
.y46{bottom:707.397922px;}
.y42{bottom:709.374677px;}
.y40{bottom:709.557035px;}
.y41{bottom:716.399111px;}
.y3f{bottom:719.637790px;}
.y3e{bottom:721.439488px;}
.yb{bottom:721.620003px;}
.y43{bottom:722.519045px;}
.ya{bottom:740.520006px;}
.y9{bottom:759.600013px;}
.y8{bottom:778.500008px;}
.y7{bottom:797.580007px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h9{height:16.559966px;}
.hd{height:16.560001px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.ha{height:41.898245px;}
.h6{height:46.441208px;}
.hf{height:46.861636px;}
.h2{height:46.945875px;}
.he{height:48.219945px;}
.h8{height:51.676787px;}
.h5{height:57.275333px;}
.h7{height:70.988787px;}
.hc{height:76.458209px;}
.hb{height:76.458213px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.we{width:5.039979px;}
.w5{width:5.040012px;}
.w6{width:7.559984px;}
.wd{width:7.559993px;}
.w3{width:7.560001px;}
.w9{width:7.560002px;}
.w8{width:8.459988px;}
.w7{width:8.460021px;}
.w4{width:14.939999px;}
.wb{width:37.079999px;}
.wa{width:38.699993px;}
.w2{width:41.220000px;}
.wc{width:44.280001px;}
.wf{width:51.659998px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.x20{left:67.860000px;}
.x1d{left:70.380001px;}
.x37{left:72.360000px;}
.x34{left:73.620002px;}
.x35{left:79.560001px;}
.x3c{left:82.620002px;}
.x26{left:84.060001px;}
.x42{left:85.140000px;}
.x36{left:86.579999px;}
.x38{left:94.140000px;}
.x14{left:98.280001px;}
.x4{left:106.739997px;}
.x1b{left:112.140000px;}
.x21{left:113.938420px;}
.x7{left:117.000000px;}
.x39{left:123.299998px;}
.x27{left:125.280001px;}
.x8{left:126.540003px;}
.x41{left:130.500000px;}
.x10{left:168.840002px;}
.x28{left:172.800007px;}
.x9{left:186.659998px;}
.x29{left:187.740006px;}
.x15{left:190.259994px;}
.x19{left:194.400003px;}
.x43{left:209.879998px;}
.x1c{left:211.500000px;}
.x2a{left:239.039996px;}
.x1a{left:240.300007px;}
.x2b{left:244.080008px;}
.x2{left:251.639992px;}
.x5{left:297.180005px;}
.x2c{left:301.139992px;}
.x3a{left:302.759994px;}
.x3b{left:307.800007px;}
.x2d{left:309.600013px;}
.x3{left:314.639992px;}
.x44{left:325.620002px;}
.x2e{left:364.860008px;}
.x3d{left:366.660015px;}
.x3e{left:371.699993px;}
.x2f{left:373.319996px;}
.x22{left:378.355189px;}
.x17{left:425.699993px;}
.x30{left:433.079990px;}
.x16{left:438.120002px;}
.x23{left:444.052697px;}
.xa{left:446.759994px;}
.xc{left:454.860008px;}
.xe{left:459.180005px;}
.x18{left:460.980011px;}
.x11{left:464.399987px;}
.xd{left:467.100014px;}
.x31{left:471.779983px;}
.x12{left:475.560001px;}
.xf{left:478.079990px;}
.x24{left:479.513935px;}
.x1e{left:492.300007px;}
.x1f{left:496.800007px;}
.xb{left:501.660015px;}
.x13{left:516.060001px;}
.x3f{left:533.160015px;}
.x32{left:534.959988px;}
.x33{left:540.000000px;}
.x40{left:541.620002px;}
.x25{left:546.654030px;}
.x1{left:565.560001px;}
.x45{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.719972pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:28.491779pt;}
.ls2{letter-spacing:753.281416pt;}
.ws0{word-spacing:-14.718600pt;}
.ws2{word-spacing:-13.278800pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-1.883061pt;}
._0{margin-left:-0.934395pt;}
._2{width:0.983375pt;}
._17{width:2.539672pt;}
._19{width:3.561877pt;}
._20{width:5.237982pt;}
._b{width:6.366485pt;}
._c{width:7.327551pt;}
._13{width:8.224296pt;}
._d{width:9.184176pt;}
._25{width:10.144741pt;}
._14{width:11.529493pt;}
._24{width:12.492176pt;}
._1a{width:13.442221pt;}
._9{width:15.835374pt;}
._a{width:16.899712pt;}
._2b{width:17.960384pt;}
._5{width:19.339320pt;}
._6{width:20.873747pt;}
._11{width:21.959415pt;}
._3a{width:23.425572pt;}
._12{width:25.296674pt;}
._8{width:26.896172pt;}
._7{width:27.885078pt;}
._22{width:28.824998pt;}
._23{width:30.149672pt;}
._28{width:31.103627pt;}
._2a{width:32.446464pt;}
._26{width:34.147152pt;}
._3b{width:35.371096pt;}
._43{width:37.174814pt;}
._3d{width:38.152221pt;}
._3c{width:39.904654pt;}
._21{width:41.151366pt;}
._18{width:42.728096pt;}
._15{width:47.128189pt;}
._48{width:49.910313pt;}
._49{width:50.844714pt;}
._4{width:52.740709pt;}
._16{width:57.613654pt;}
._1f{width:60.464257pt;}
._1e{width:62.066490pt;}
._46{width:64.073745pt;}
._47{width:65.091411pt;}
._45{width:67.549901pt;}
._44{width:68.464488pt;}
._4d{width:69.431544pt;}
._4c{width:70.727128pt;}
._29{width:77.696730pt;}
._1d{width:81.169399pt;}
._1c{width:82.491768pt;}
._39{width:96.888643pt;}
._42{width:98.869666pt;}
._e{width:103.090224pt;}
._41{width:104.861522pt;}
._40{width:106.021756pt;}
._3e{width:107.461419pt;}
._3f{width:108.501851pt;}
._1b{width:112.506219pt;}
._27{width:133.901774pt;}
._4b{width:148.061417pt;}
._4a{width:149.414368pt;}
._2c{width:152.387489pt;}
._36{width:168.906336pt;}
._32{width:178.339160pt;}
._2d{width:182.716288pt;}
._2f{width:183.619246pt;}
._2e{width:189.993070pt;}
._35{width:191.083870pt;}
._33{width:195.835742pt;}
._37{width:199.233248pt;}
._38{width:211.034453pt;}
._30{width:218.885872pt;}
._31{width:225.021801pt;}
._34{width:231.395625pt;}
._f{width:753.003576pt;}
._1{width:797.437996pt;}
._10{width:836.477976pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs5{font-size:53.119548pt;}
.fs3{font-size:58.874400pt;}
.fs4{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.879975pt;}
.y39{bottom:2.880005pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y2e{bottom:101.760009pt;}
.y3d{bottom:103.520019pt;}
.y64{bottom:103.679992pt;}
.y2a{bottom:118.400024pt;}
.y2d{bottom:118.559997pt;}
.y3c{bottom:118.880004pt;}
.y63{bottom:120.479980pt;}
.y29{bottom:135.520019pt;}
.y62{bottom:137.440002pt;}
.y3b{bottom:137.600036pt;}
.y28{bottom:152.320007pt;}
.y3a{bottom:152.960021pt;}
.y61{bottom:154.239989pt;}
.y38{bottom:167.520019pt;}
.y27{bottom:169.119994pt;}
.y60{bottom:171.040038pt;}
.y26{bottom:186.080016pt;}
.y5f{bottom:187.999999pt;}
.y35{bottom:192.473010pt;}
.y36{bottom:194.393824pt;}
.y25{bottom:202.880004pt;}
.y5e{bottom:204.799987pt;}
.y37{bottom:207.191335pt;}
.y33{bottom:208.958165pt;}
.y31{bottom:209.112149pt;}
.y32{bottom:215.194825pt;}
.y30{bottom:218.072029pt;}
.y2f{bottom:219.672727pt;}
.y24{bottom:219.840026pt;}
.y34{bottom:220.633114pt;}
.y5d{bottom:221.760009pt;}
.y23{bottom:236.640014pt;}
.y5c{bottom:238.559997pt;}
.y22{bottom:253.600036pt;}
.y5b{bottom:255.520019pt;}
.y21{bottom:267.200011pt;}
.y2c{bottom:270.400024pt;}
.y5a{bottom:272.320007pt;}
.y20{bottom:287.200011pt;}
.y59{bottom:289.119994pt;}
.y1f{bottom:304.160003pt;}
.y58{bottom:306.080016pt;}
.y1e{bottom:320.960021pt;}
.y57{bottom:322.880004pt;}
.y1d{bottom:337.920013pt;}
.y56{bottom:339.839996pt;}
.y1c{bottom:354.720000pt;}
.y55{bottom:356.640014pt;}
.y1b{bottom:371.520019pt;}
.y54{bottom:373.440002pt;}
.y1a{bottom:388.480010pt;}
.y53{bottom:390.400024pt;}
.y19{bottom:405.279998pt;}
.y52{bottom:407.200011pt;}
.y18{bottom:422.240020pt;}
.y51{bottom:424.160003pt;}
.y17{bottom:439.040008pt;}
.y50{bottom:440.960021pt;}
.y16{bottom:455.839996pt;}
.y4f{bottom:457.760009pt;}
.y2b{bottom:469.600005pt;}
.y15{bottom:472.800018pt;}
.y4e{bottom:474.720000pt;}
.y4d{bottom:488.960021pt;}
.y14{bottom:489.600005pt;}
.y4b{bottom:504.960021pt;}
.y13{bottom:506.559997pt;}
.y12{bottom:523.360015pt;}
.y4a{bottom:532.800018pt;}
.y11{bottom:540.160003pt;}
.y49{bottom:555.040008pt;}
.y10{bottom:557.120010pt;}
.yf{bottom:573.920013pt;}
.y48{bottom:575.200011pt;}
.y47{bottom:590.560012pt;}
.ye{bottom:590.880004pt;}
.yd{bottom:607.680007pt;}
.y44{bottom:614.079838pt;}
.y45{bottom:615.999050pt;}
.yc{bottom:624.480010pt;}
.y46{bottom:628.798153pt;}
.y42{bottom:630.555268pt;}
.y40{bottom:630.717364pt;}
.y41{bottom:636.799209pt;}
.y3f{bottom:639.678036pt;}
.y3e{bottom:641.279545pt;}
.yb{bottom:641.440002pt;}
.y43{bottom:642.239151pt;}
.ya{bottom:658.240005pt;}
.y9{bottom:675.200011pt;}
.y8{bottom:692.000007pt;}
.y7{bottom:708.960006pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h9{height:14.719970pt;}
.hd{height:14.720001pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.ha{height:37.242884pt;}
.h6{height:41.281073pt;}
.hf{height:41.654788pt;}
.h2{height:41.729666pt;}
.he{height:42.862173pt;}
.h8{height:45.934922pt;}
.h5{height:50.911407pt;}
.h7{height:63.101144pt;}
.hc{height:67.962852pt;}
.hb{height:67.962856pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.we{width:4.479981pt;}
.w5{width:4.480011pt;}
.w6{width:6.719986pt;}
.wd{width:6.719994pt;}
.w3{width:6.720001pt;}
.w9{width:6.720002pt;}
.w8{width:7.519989pt;}
.w7{width:7.520019pt;}
.w4{width:13.279999pt;}
.wb{width:32.959999pt;}
.wa{width:34.399994pt;}
.w2{width:36.640000pt;}
.wc{width:39.360001pt;}
.wf{width:45.919998pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.x20{left:60.320000pt;}
.x1d{left:62.560001pt;}
.x37{left:64.320000pt;}
.x34{left:65.440002pt;}
.x35{left:70.720001pt;}
.x3c{left:73.440002pt;}
.x26{left:74.720001pt;}
.x42{left:75.680000pt;}
.x36{left:76.959999pt;}
.x38{left:83.680000pt;}
.x14{left:87.360001pt;}
.x4{left:94.879997pt;}
.x1b{left:99.680000pt;}
.x21{left:101.278596pt;}
.x7{left:104.000000pt;}
.x39{left:109.599998pt;}
.x27{left:111.360001pt;}
.x8{left:112.480003pt;}
.x41{left:116.000000pt;}
.x10{left:150.080002pt;}
.x28{left:153.600006pt;}
.x9{left:165.919998pt;}
.x29{left:166.880005pt;}
.x15{left:169.119995pt;}
.x19{left:172.800003pt;}
.x43{left:186.559998pt;}
.x1c{left:188.000000pt;}
.x2a{left:212.479996pt;}
.x1a{left:213.600006pt;}
.x2b{left:216.960007pt;}
.x2{left:223.679993pt;}
.x5{left:264.160004pt;}
.x2c{left:267.679993pt;}
.x3a{left:269.119995pt;}
.x3b{left:273.600006pt;}
.x2d{left:275.200012pt;}
.x3{left:279.679993pt;}
.x44{left:289.440002pt;}
.x2e{left:324.320007pt;}
.x3d{left:325.920013pt;}
.x3e{left:330.399994pt;}
.x2f{left:331.839996pt;}
.x22{left:336.315724pt;}
.x17{left:378.399994pt;}
.x30{left:384.959991pt;}
.x16{left:389.440002pt;}
.x23{left:394.713508pt;}
.xa{left:397.119995pt;}
.xc{left:404.320007pt;}
.xe{left:408.160004pt;}
.x18{left:409.760010pt;}
.x11{left:412.799988pt;}
.xd{left:415.200012pt;}
.x31{left:419.359985pt;}
.x12{left:422.720001pt;}
.xf{left:424.959991pt;}
.x24{left:426.234609pt;}
.x1e{left:437.600006pt;}
.x1f{left:441.600006pt;}
.xb{left:445.920013pt;}
.x13{left:458.720001pt;}
.x3f{left:473.920013pt;}
.x32{left:475.519989pt;}
.x33{left:480.000000pt;}
.x40{left:481.440002pt;}
.x25{left:485.914693pt;}
.x1{left:502.720001pt;}
.x45{left:507.839996pt;}
}




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