
    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_a120a0e843ee901f63b928cb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.727539;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_84eed947c5b28fc028a0ea49.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_14687922ca9cdedf38580342.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_039fbc46c1fa3b00efe265f3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_dd8b3b08059f40f096b40373.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_e46a6365102b525cf40975a7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_3e1c0fe7cf00c5713ba034fc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_2ad4e691ac79eaca4f375b85.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_fe15efd7888d37508f5f3fb7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.727539;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_e262ec640dbb7b87a1e70c96.woff')format("woff");}.ffa{font-family:ffa;line-height:0.715820;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:ffb;src:url('chunks/assets/font_1544328ab75607f19c6acec7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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:ffc;src:url('chunks/assets/font_e96816e4458556024068c2cf.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017556px;}
.ls3{letter-spacing:0.035179px;}
.ls2{letter-spacing:8.332053px;}
.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;}
}
.ws2{word-spacing:-53.999998px;}
.ws3{word-spacing:-22.504393px;}
.ws1{word-spacing:-20.003905px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-12.023432px;}
._3{margin-left:-10.687498px;}
._2{margin-left:-7.620108px;}
._8{margin-left:-6.609375px;}
._6{margin-left:-5.343748px;}
._7{margin-left:-3.972651px;}
._0{margin-left:-2.926758px;}
._4{margin-left:-1.300781px;}
._20{width:1.045897px;}
._c{width:2.301087px;}
._10{width:3.636343px;}
._19{width:4.784418px;}
._e{width:6.205075px;}
._f{width:7.649089px;}
._b{width:9.163288px;}
._9{width:10.832794px;}
._5{width:12.570831px;}
._12{width:13.659870px;}
._1a{width:14.713031px;}
._11{width:16.652320px;}
._1c{width:17.910941px;}
._d{width:18.928070px;}
._15{width:21.574200px;}
._1b{width:22.800678px;}
._27{width:23.953079px;}
._16{width:25.154297px;}
._17{width:26.419923px;}
._26{width:27.798436px;}
._28{width:28.859962px;}
._a{width:30.585940px;}
._23{width:31.911704px;}
._2e{width:33.478922px;}
._1d{width:34.995505px;}
._31{width:36.773436px;}
._29{width:37.986329px;}
._2b{width:39.949173px;}
._18{width:41.285108px;}
._1e{width:42.703169px;}
._22{width:43.985479px;}
._2d{width:49.866689px;}
._25{width:51.488796px;}
._24{width:54.160676px;}
._32{width:55.371092px;}
._33{width:60.714842px;}
._34{width:62.015624px;}
._13{width:65.548845px;}
._14{width:66.832032px;}
._2a{width:68.071250px;}
._30{width:69.626951px;}
._1f{width:81.984373px;}
._21{width:83.167943px;}
._35{width:84.193404px;}
._2f{width:85.675780px;}
._2c{width:98.648434px;}
.fc8{color:rgb(231,150,58);}
.fc6{color:rgb(0,0,255);}
.fc7{color:rgb(222,122,5);}
.fc3{color:rgb(247,147,30);}
.fc4{color:rgb(2,6,106);}
.fc2{color:rgb(39,35,98);}
.fc1{color:rgb(59,63,68);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(31,45,61);}
.fs5{font-size:62.999997px;}
.fs1{font-size:71.999997px;}
.fs3{font-size:80.999997px;}
.fs4{font-size:107.999996px;}
.fs2{font-size:143.999994px;}
.fs0{font-size:161.999993px;}
.y0{bottom:0.000000px;}
.ya8{bottom:7.695052px;}
.ya7{bottom:34.695051px;}
.y69{bottom:40.320051px;}
.yb{bottom:42.570051px;}
.y1d{bottom:50.445051px;}
.y48{bottom:60.570050px;}
.y68{bottom:67.320050px;}
.ya{bottom:69.570050px;}
.y1c{bottom:77.445049px;}
.y47{bottom:87.570049px;}
.ya6{bottom:88.695049px;}
.y67{bottom:94.320049px;}
.y9e{bottom:96.570049px;}
.y46{bottom:114.570048px;}
.ya5{bottom:115.695048px;}
.y66{bottom:121.320048px;}
.y9d{bottom:123.570048px;}
.y1b{bottom:124.695047px;}
.y2b{bottom:140.445047px;}
.y45{bottom:141.570047px;}
.ya4{bottom:142.695047px;}
.y65{bottom:148.320046px;}
.y9c{bottom:150.570046px;}
.y1a{bottom:165.195046px;}
.y44{bottom:168.570046px;}
.ya3{bottom:169.695046px;}
.y64{bottom:175.320045px;}
.y9b{bottom:177.570045px;}
.y43{bottom:195.570045px;}
.ya2{bottom:196.695044px;}
.y63{bottom:202.320044px;}
.y19{bottom:205.695044px;}
.y42{bottom:222.570043px;}
.ya1{bottom:223.695043px;}
.y9a{bottom:225.945043px;}
.y62{bottom:229.320043px;}
.y2a{bottom:238.320043px;}
.y99{bottom:246.195042px;}
.y61{bottom:256.320042px;}
.y41{bottom:259.695042px;}
.ya0{bottom:264.195042px;}
.y29{bottom:265.320042px;}
.y98{bottom:266.445042px;}
.y60{bottom:283.320041px;}
.y97{bottom:286.695041px;}
.y28{bottom:292.320040px;}
.y96{bottom:306.945040px;}
.y5f{bottom:310.320040px;}
.y40{bottom:313.695040px;}
.y27{bottom:319.320039px;}
.yb0{bottom:320.445039px;}
.y15{bottom:326.070039px;}
.y5e{bottom:337.320039px;}
.y26{bottom:346.320038px;}
.y14{bottom:356.445038px;}
.yaf{bottom:360.945038px;}
.y5d{bottom:364.320037px;}
.y25{bottom:373.320037px;}
.yae{bottom:384.570037px;}
.y95{bottom:386.820037px;}
.y5c{bottom:391.320036px;}
.y24{bottom:400.320036px;}
.yad{bottom:408.195036px;}
.y5b{bottom:418.320035px;}
.yac{bottom:431.820035px;}
.y23{bottom:437.445034px;}
.y94{bottom:440.820034px;}
.y5a{bottom:445.320034px;}
.yab{bottom:455.445034px;}
.y93{bottom:467.820033px;}
.y59{bottom:472.320033px;}
.y7a{bottom:476.820033px;}
.yaa{bottom:479.070033px;}
.y13{bottom:490.320032px;}
.y92{bottom:494.820032px;}
.y58{bottom:499.320032px;}
.y12{bottom:517.320031px;}
.ya9{bottom:519.570031px;}
.y91{bottom:521.820031px;}
.y57{bottom:526.320031px;}
.y9{bottom:544.320030px;}
.y90{bottom:548.820030px;}
.y56{bottom:552.195030px;}
.y34{bottom:557.820029px;}
.y11{bottom:571.320029px;}
.y8f{bottom:575.820029px;}
.y55{bottom:579.195029px;}
.y10{bottom:598.320028px;}
.y8e{bottom:602.820028px;}
.y54{bottom:606.195027px;}
.y8{bottom:607.320027px;}
.y33{bottom:628.695026px;}
.y8d{bottom:629.820026px;}
.y53{bottom:633.195026px;}
.y7{bottom:634.320026px;}
.y32{bottom:655.695025px;}
.y8c{bottom:656.820025px;}
.y52{bottom:660.195025px;}
.y79{bottom:678.195024px;}
.y31{bottom:682.695024px;}
.y8b{bottom:683.820024px;}
.y6{bottom:684.945024px;}
.y51{bottom:687.195024px;}
.y78{bottom:705.195023px;}
.y30{bottom:709.695023px;}
.y8a{bottom:710.820023px;}
.y50{bottom:714.195023px;}
.y9f{bottom:726.570022px;}
.y77{bottom:732.195022px;}
.y2f{bottom:736.695022px;}
.y89{bottom:737.820022px;}
.y5{bottom:738.945022px;}
.y76{bottom:759.195021px;}
.y18{bottom:760.320021px;}
.y2e{bottom:763.695021px;}
.y88{bottom:765.945021px;}
.y4f{bottom:774.945020px;}
.y75{bottom:786.195020px;}
.y17{bottom:787.320020px;}
.y2d{bottom:790.695020px;}
.y4e{bottom:801.945019px;}
.y74{bottom:813.195019px;}
.y16{bottom:814.320019px;}
.y2c{bottom:827.820018px;}
.y4d{bottom:828.945018px;}
.y3f{bottom:833.445018px;}
.y73{bottom:840.195018px;}
.y4c{bottom:855.945017px;}
.y87{bottom:866.070017px;}
.y72{bottom:867.195017px;}
.y22{bottom:872.820016px;}
.y4{bottom:873.945016px;}
.y4b{bottom:882.945016px;}
.y71{bottom:894.195015px;}
.y3{bottom:900.945015px;}
.y3e{bottom:904.320015px;}
.y86{bottom:920.070014px;}
.y70{bottom:921.195014px;}
.y3d{bottom:931.320014px;}
.y4a{bottom:935.820014px;}
.y2{bottom:936.945014px;}
.y85{bottom:947.070013px;}
.y6f{bottom:948.195013px;}
.y3c{bottom:958.320013px;}
.y84{bottom:974.070012px;}
.y6e{bottom:975.195012px;}
.y3b{bottom:985.320012px;}
.y1{bottom:997.695011px;}
.y83{bottom:1001.070011px;}
.y6d{bottom:1002.195011px;}
.y3a{bottom:1012.320010px;}
.y82{bottom:1028.070010px;}
.y6c{bottom:1029.195010px;}
.y21{bottom:1039.320009px;}
.y81{bottom:1055.070009px;}
.y6b{bottom:1056.195009px;}
.yf{bottom:1057.320009px;}
.y39{bottom:1066.320008px;}
.y80{bottom:1082.070008px;}
.y6a{bottom:1083.195008px;}
.y38{bottom:1093.320007px;}
.y7f{bottom:1109.070006px;}
.y20{bottom:1110.195006px;}
.y37{bottom:1120.320006px;}
.y7e{bottom:1136.070005px;}
.y1f{bottom:1137.195005px;}
.y49{bottom:1147.320005px;}
.y36{bottom:1157.445004px;}
.y1e{bottom:1164.195004px;}
.y7d{bottom:1184.445003px;}
.ye{bottom:1191.195003px;}
.y7c{bottom:1204.695002px;}
.y35{bottom:1211.445002px;}
.yd{bottom:1218.195002px;}
.y7b{bottom:1224.945002px;}
.yc{bottom:1245.195001px;}
.h9{height:45.865721px;}
.h7{height:52.417967px;}
.h3{height:52.453123px;}
.h5{height:58.970212px;}
.h6{height:78.626950px;}
.h4{height:104.835933px;}
.h2{height:115.962886px;}
.h8{height:117.940425px;}
.h0{height:1264.320000px;}
.h1{height:1264.500000px;}
.w2{width:895.499963px;}
.w1{width:895.500000px;}
.w0{width:895.680000px;}
.x0{left:0.000000px;}
.x5{left:110.249995px;}
.xb{left:127.124995px;}
.xf{left:133.189448px;}
.x18{left:140.220697px;}
.xd{left:144.474603px;}
.x7{left:145.705072px;}
.x24{left:147.761713px;}
.x22{left:153.878900px;}
.x1a{left:160.611321px;}
.x6{left:168.732415px;}
.x11{left:172.124993px;}
.x10{left:185.958977px;}
.x1{left:191.232420px;}
.xa{left:195.679679px;}
.x19{left:207.544919px;}
.x3{left:217.617178px;}
.xc{left:219.972647px;}
.x20{left:225.457022px;}
.x21{left:227.460928px;}
.x25{left:295.417956px;}
.x8{left:300.515612px;}
.x26{left:342.105454px;}
.x2{left:345.322257px;}
.x23{left:357.134756px;}
.x9{left:385.207015px;}
.xe{left:417.708973px;}
.x4{left:445.236315px;}
.x16{left:464.624981px;}
.x1c{left:468.140605px;}
.x12{left:471.357408px;}
.x13{left:475.857408px;}
.x1e{left:487.511698px;}
.x17{left:498.111313px;}
.x1d{left:511.154281px;}
.x14{left:524.232406px;}
.x1b{left:527.044906px;}
.x15{left:542.794905px;}
.x1f{left:582.732403px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015605pt;}
.ls3{letter-spacing:0.031270pt;}
.ls2{letter-spacing:7.406270pt;}
.ws2{word-spacing:-47.999998pt;}
.ws3{word-spacing:-20.003905pt;}
.ws1{word-spacing:-17.781249pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-10.687495pt;}
._3{margin-left:-9.499999pt;}
._2{margin-left:-6.773429pt;}
._8{margin-left:-5.875000pt;}
._6{margin-left:-4.749998pt;}
._7{margin-left:-3.531245pt;}
._0{margin-left:-2.601563pt;}
._4{margin-left:-1.156250pt;}
._20{width:0.929687pt;}
._c{width:2.045410pt;}
._10{width:3.232305pt;}
._19{width:4.252816pt;}
._e{width:5.515622pt;}
._f{width:6.799190pt;}
._b{width:8.145145pt;}
._9{width:9.629150pt;}
._5{width:11.174072pt;}
._12{width:12.142107pt;}
._1a{width:13.078250pt;}
._11{width:14.802062pt;}
._1c{width:15.920836pt;}
._d{width:16.824951pt;}
._15{width:19.177066pt;}
._1b{width:20.267269pt;}
._27{width:21.291626pt;}
._16{width:22.359375pt;}
._17{width:23.484376pt;}
._26{width:24.709721pt;}
._28{width:25.653300pt;}
._a{width:27.187502pt;}
._23{width:28.365959pt;}
._2e{width:29.759042pt;}
._1d{width:31.107115pt;}
._31{width:32.687498pt;}
._29{width:33.765626pt;}
._2b{width:35.510376pt;}
._18{width:36.697874pt;}
._1e{width:37.958372pt;}
._22{width:39.098204pt;}
._2d{width:44.325946pt;}
._25{width:45.767819pt;}
._24{width:48.142823pt;}
._32{width:49.218749pt;}
._33{width:53.968748pt;}
._34{width:55.124999pt;}
._13{width:58.265640pt;}
._14{width:59.406250pt;}
._2a{width:60.507778pt;}
._30{width:61.890623pt;}
._1f{width:72.874998pt;}
._21{width:73.927060pt;}
._35{width:74.838581pt;}
._2f{width:76.156249pt;}
._2c{width:87.687497pt;}
.fs5{font-size:55.999998pt;}
.fs1{font-size:63.999997pt;}
.fs3{font-size:71.999997pt;}
.fs4{font-size:95.999996pt;}
.fs2{font-size:127.999995pt;}
.fs0{font-size:143.999994pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:6.840047pt;}
.ya7{bottom:30.840046pt;}
.y69{bottom:35.840045pt;}
.yb{bottom:37.840045pt;}
.y1d{bottom:44.840045pt;}
.y48{bottom:53.840045pt;}
.y68{bottom:59.840044pt;}
.ya{bottom:61.840044pt;}
.y1c{bottom:68.840044pt;}
.y47{bottom:77.840044pt;}
.ya6{bottom:78.840044pt;}
.y67{bottom:83.840043pt;}
.y9e{bottom:85.840043pt;}
.y46{bottom:101.840043pt;}
.ya5{bottom:102.840043pt;}
.y66{bottom:107.840042pt;}
.y9d{bottom:109.840042pt;}
.y1b{bottom:110.840042pt;}
.y2b{bottom:124.840042pt;}
.y45{bottom:125.840042pt;}
.ya4{bottom:126.840042pt;}
.y65{bottom:131.840041pt;}
.y9c{bottom:133.840041pt;}
.y1a{bottom:146.840041pt;}
.y44{bottom:149.840041pt;}
.ya3{bottom:150.840041pt;}
.y64{bottom:155.840040pt;}
.y9b{bottom:157.840040pt;}
.y43{bottom:173.840040pt;}
.ya2{bottom:174.840040pt;}
.y63{bottom:179.840039pt;}
.y19{bottom:182.840039pt;}
.y42{bottom:197.840039pt;}
.ya1{bottom:198.840039pt;}
.y9a{bottom:200.840038pt;}
.y62{bottom:203.840038pt;}
.y2a{bottom:211.840038pt;}
.y99{bottom:218.840038pt;}
.y61{bottom:227.840037pt;}
.y41{bottom:230.840037pt;}
.ya0{bottom:234.840037pt;}
.y29{bottom:235.840037pt;}
.y98{bottom:236.840037pt;}
.y60{bottom:251.840036pt;}
.y97{bottom:254.840036pt;}
.y28{bottom:259.840036pt;}
.y96{bottom:272.840035pt;}
.y5f{bottom:275.840035pt;}
.y40{bottom:278.840035pt;}
.y27{bottom:283.840035pt;}
.yb0{bottom:284.840035pt;}
.y15{bottom:289.840035pt;}
.y5e{bottom:299.840034pt;}
.y26{bottom:307.840034pt;}
.y14{bottom:316.840034pt;}
.yaf{bottom:320.840033pt;}
.y5d{bottom:323.840033pt;}
.y25{bottom:331.840033pt;}
.yae{bottom:341.840033pt;}
.y95{bottom:343.840032pt;}
.y5c{bottom:347.840032pt;}
.y24{bottom:355.840032pt;}
.yad{bottom:362.840032pt;}
.y5b{bottom:371.840031pt;}
.yac{bottom:383.840031pt;}
.y23{bottom:388.840031pt;}
.y94{bottom:391.840030pt;}
.y5a{bottom:395.840030pt;}
.yab{bottom:404.840030pt;}
.y93{bottom:415.840029pt;}
.y59{bottom:419.840029pt;}
.y7a{bottom:423.840029pt;}
.yaa{bottom:425.840029pt;}
.y13{bottom:435.840029pt;}
.y92{bottom:439.840029pt;}
.y58{bottom:443.840028pt;}
.y12{bottom:459.840028pt;}
.ya9{bottom:461.840028pt;}
.y91{bottom:463.840027pt;}
.y57{bottom:467.840027pt;}
.y9{bottom:483.840027pt;}
.y90{bottom:487.840026pt;}
.y56{bottom:490.840026pt;}
.y34{bottom:495.840026pt;}
.y11{bottom:507.840026pt;}
.y8f{bottom:511.840025pt;}
.y55{bottom:514.840025pt;}
.y10{bottom:531.840025pt;}
.y8e{bottom:535.840024pt;}
.y54{bottom:538.840024pt;}
.y8{bottom:539.840024pt;}
.y33{bottom:558.840024pt;}
.y8d{bottom:559.840023pt;}
.y53{bottom:562.840023pt;}
.y7{bottom:563.840023pt;}
.y32{bottom:582.840023pt;}
.y8c{bottom:583.840022pt;}
.y52{bottom:586.840022pt;}
.y79{bottom:602.840022pt;}
.y31{bottom:606.840022pt;}
.y8b{bottom:607.840022pt;}
.y6{bottom:608.840021pt;}
.y51{bottom:610.840021pt;}
.y78{bottom:626.840021pt;}
.y30{bottom:630.840021pt;}
.y8a{bottom:631.840020pt;}
.y50{bottom:634.840020pt;}
.y9f{bottom:645.840020pt;}
.y77{bottom:650.840020pt;}
.y2f{bottom:654.840020pt;}
.y89{bottom:655.840019pt;}
.y5{bottom:656.840019pt;}
.y76{bottom:674.840019pt;}
.y18{bottom:675.840019pt;}
.y2e{bottom:678.840019pt;}
.y88{bottom:680.840018pt;}
.y4f{bottom:688.840018pt;}
.y75{bottom:698.840018pt;}
.y17{bottom:699.840018pt;}
.y2d{bottom:702.840018pt;}
.y4e{bottom:712.840017pt;}
.y74{bottom:722.840017pt;}
.y16{bottom:723.840017pt;}
.y2c{bottom:735.840016pt;}
.y4d{bottom:736.840016pt;}
.y3f{bottom:740.840016pt;}
.y73{bottom:746.840016pt;}
.y4c{bottom:760.840015pt;}
.y87{bottom:769.840015pt;}
.y72{bottom:770.840015pt;}
.y22{bottom:775.840014pt;}
.y4{bottom:776.840014pt;}
.y4b{bottom:784.840014pt;}
.y71{bottom:794.840014pt;}
.y3{bottom:800.840013pt;}
.y3e{bottom:803.840013pt;}
.y86{bottom:817.840013pt;}
.y70{bottom:818.840013pt;}
.y3d{bottom:827.840012pt;}
.y4a{bottom:831.840012pt;}
.y2{bottom:832.840012pt;}
.y85{bottom:841.840012pt;}
.y6f{bottom:842.840012pt;}
.y3c{bottom:851.840011pt;}
.y84{bottom:865.840011pt;}
.y6e{bottom:866.840011pt;}
.y3b{bottom:875.840010pt;}
.y1{bottom:886.840010pt;}
.y83{bottom:889.840010pt;}
.y6d{bottom:890.840010pt;}
.y3a{bottom:899.840009pt;}
.y82{bottom:913.840009pt;}
.y6c{bottom:914.840009pt;}
.y21{bottom:923.840008pt;}
.y81{bottom:937.840008pt;}
.y6b{bottom:938.840008pt;}
.yf{bottom:939.840008pt;}
.y39{bottom:947.840007pt;}
.y80{bottom:961.840007pt;}
.y6a{bottom:962.840007pt;}
.y38{bottom:971.840006pt;}
.y7f{bottom:985.840006pt;}
.y20{bottom:986.840006pt;}
.y37{bottom:995.840005pt;}
.y7e{bottom:1009.840005pt;}
.y1f{bottom:1010.840005pt;}
.y49{bottom:1019.840004pt;}
.y36{bottom:1028.840004pt;}
.y1e{bottom:1034.840004pt;}
.y7d{bottom:1052.840003pt;}
.ye{bottom:1058.840003pt;}
.y7c{bottom:1070.840002pt;}
.y35{bottom:1076.840002pt;}
.yd{bottom:1082.840002pt;}
.y7b{bottom:1088.840001pt;}
.yc{bottom:1106.840001pt;}
.h9{height:40.769530pt;}
.h7{height:46.593748pt;}
.h3{height:46.624998pt;}
.h5{height:52.417967pt;}
.h6{height:69.890622pt;}
.h4{height:93.187496pt;}
.h2{height:103.078121pt;}
.h8{height:104.835933pt;}
.h0{height:1123.840000pt;}
.h1{height:1124.000000pt;}
.w2{width:795.999967pt;}
.w1{width:796.000000pt;}
.w0{width:796.160000pt;}
.x0{left:0.000000pt;}
.x5{left:97.999996pt;}
.xb{left:112.999995pt;}
.xf{left:118.390620pt;}
.x18{left:124.640620pt;}
.xd{left:128.421870pt;}
.x7{left:129.515620pt;}
.x24{left:131.343745pt;}
.x22{left:136.781244pt;}
.x1a{left:142.765619pt;}
.x6{left:149.984369pt;}
.x11{left:152.999994pt;}
.x10{left:165.296868pt;}
.x1{left:169.984373pt;}
.xa{left:173.937493pt;}
.x19{left:184.484372pt;}
.x3{left:193.437492pt;}
.xc{left:195.531242pt;}
.x20{left:200.406242pt;}
.x21{left:202.187492pt;}
.x25{left:262.593739pt;}
.x8{left:267.124989pt;}
.x26{left:304.093737pt;}
.x2{left:306.953117pt;}
.x23{left:317.453117pt;}
.x9{left:342.406236pt;}
.xe{left:371.296865pt;}
.x4{left:395.765614pt;}
.x16{left:412.999983pt;}
.x1c{left:416.124983pt;}
.x12{left:418.984363pt;}
.x13{left:422.984362pt;}
.x1e{left:433.343732pt;}
.x17{left:442.765612pt;}
.x1d{left:454.359361pt;}
.x14{left:465.984361pt;}
.x1b{left:468.484360pt;}
.x15{left:482.484360pt;}
.x1f{left:517.984358pt;}
}




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