
    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_88c6796e47c1a9f858b601d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_9f7669be7e710a0060268632.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_7d73fbe066529db103a5f84b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_1e98eecd6443a118dde3bc5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_4c25045f786c5aee5bb5bffd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_6a1b58d7acf3da464c589bb1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e48af95a112e56849fd86d68.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_d6fc2945fd88fc15249998b2.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:21.600000px;}
.ls39{letter-spacing:-0.552672px;}
.ls3b{letter-spacing:-0.426816px;}
.ls36{letter-spacing:-0.421344px;}
.ls1a{letter-spacing:-0.342144px;}
.ls16{letter-spacing:-0.310464px;}
.ls14{letter-spacing:-0.297792px;}
.lse{letter-spacing:-0.266112px;}
.ls15{letter-spacing:-0.253440px;}
.ls32{letter-spacing:-0.247104px;}
.lsc{letter-spacing:-0.234432px;}
.ls35{letter-spacing:-0.228096px;}
.lsf{letter-spacing:-0.221760px;}
.ls19{letter-spacing:-0.215424px;}
.ls12{letter-spacing:-0.209088px;}
.ls34{letter-spacing:-0.202752px;}
.ls8{letter-spacing:-0.196416px;}
.ls7{letter-spacing:-0.190080px;}
.ls3a{letter-spacing:-0.186048px;}
.ls20{letter-spacing:-0.183744px;}
.ls33{letter-spacing:-0.177408px;}
.lsd{letter-spacing:-0.171072px;}
.ls9{letter-spacing:-0.164736px;}
.ls10{letter-spacing:-0.158400px;}
.ls42{letter-spacing:-0.152064px;}
.ls13{letter-spacing:-0.145728px;}
.ls5{letter-spacing:-0.133056px;}
.ls26{letter-spacing:-0.126720px;}
.ls11{letter-spacing:-0.120384px;}
.ls1b{letter-spacing:-0.101376px;}
.ls3c{letter-spacing:-0.098496px;}
.ls18{letter-spacing:-0.095040px;}
.ls2d{letter-spacing:-0.076032px;}
.ls1f{letter-spacing:-0.069696px;}
.ls43{letter-spacing:-0.063360px;}
.ls17{letter-spacing:-0.050688px;}
.ls38{letter-spacing:-0.027360px;}
.ls6{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.015840px;}
.ls37{letter-spacing:0.103968px;}
.ls2{letter-spacing:0.115200px;}
.lsa{letter-spacing:0.141984px;}
.ls25{letter-spacing:0.154080px;}
.lsb{letter-spacing:0.267264px;}
.ls3f{letter-spacing:0.897408px;}
.ls41{letter-spacing:0.925920px;}
.ls2f{letter-spacing:1.521648px;}
.ls29{letter-spacing:1.818864px;}
.ls1d{letter-spacing:1.959840px;}
.ls27{letter-spacing:2.037600px;}
.ls24{letter-spacing:2.869200px;}
.ls2a{letter-spacing:2.952000px;}
.ls21{letter-spacing:3.517920px;}
.ls31{letter-spacing:3.686400px;}
.ls2b{letter-spacing:4.089600px;}
.ls2e{letter-spacing:5.117760px;}
.ls28{letter-spacing:5.126400px;}
.ls23{letter-spacing:5.401440px;}
.ls3d{letter-spacing:5.968800px;}
.ls40{letter-spacing:7.842240px;}
.ls30{letter-spacing:9.202896px;}
.ls1c{letter-spacing:9.516528px;}
.ls4{letter-spacing:9.882720px;}
.ls3e{letter-spacing:10.437984px;}
.ls22{letter-spacing:18.913392px;}
.ls3{letter-spacing:64.729296px;}
.ls1e{letter-spacing:68.946768px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.ws1{word-spacing:-14.319360px;}
.wse{word-spacing:-14.268672px;}
.ws18{word-spacing:-14.224320px;}
.ws6{word-spacing:-14.198976px;}
.wsb{word-spacing:-14.192640px;}
.ws9{word-spacing:-14.186304px;}
.wsa{word-spacing:-14.173632px;}
.ws2{word-spacing:-14.154624px;}
.ws8{word-spacing:-14.148288px;}
.wsc{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.ws1a{word-spacing:-14.122944px;}
.wsd{word-spacing:-14.116608px;}
.ws17{word-spacing:-14.110272px;}
.ws19{word-spacing:-14.103936px;}
.ws3{word-spacing:-14.097600px;}
.ws4{word-spacing:-14.021568px;}
.ws5{word-spacing:-14.008896px;}
.ws10{word-spacing:-11.212128px;}
.ws14{word-spacing:-11.108160px;}
.ws11{word-spacing:-11.080800px;}
.ws16{word-spacing:-11.009664px;}
.ws13{word-spacing:-10.922112px;}
.wsf{word-spacing:-10.686816px;}
.ws15{word-spacing:-10.681344px;}
.ws12{word-spacing:-10.555488px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-4.118400px;}
._f{margin-left:-3.104640px;}
._10{margin-left:-2.067696px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._3{width:2.534400px;}
._6{width:3.991680px;}
._4{width:5.385600px;}
._5{width:6.399360px;}
._7{width:8.247600px;}
._b{width:9.567360px;}
._a{width:10.581120px;}
._12{width:11.860992px;}
._c{width:13.039488px;}
._18{width:15.168384px;}
._d{width:16.410240px;}
._e{width:17.550720px;}
._9{width:18.794016px;}
._8{width:20.031984px;}
._13{width:21.311424px;}
._15{width:23.316480px;}
._14{width:24.520320px;}
._1a{width:26.231040px;}
._16{width:27.561600px;}
._1b{width:29.400624px;}
._17{width:30.602880px;}
._1e{width:39.428928px;}
._1d{width:45.492480px;}
._21{width:50.181120px;}
._20{width:53.729280px;}
._24{width:55.946880px;}
._22{width:68.302080px;}
._23{width:69.484032px;}
._1f{width:84.142080px;}
._19{width:85.227984px;}
._1c{width:183.680640px;}
._1{width:2478.560832px;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(68,114,196);}
.fc2{color:rgb(237,0,0);}
.fc7{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc8{color:rgb(34,34,34);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y75{bottom:4.800000px;}
.y96{bottom:4.980000px;}
.y77{bottom:5.160000px;}
.y88{bottom:5.220000px;}
.y99{bottom:5.400000px;}
.y8a{bottom:5.580000px;}
.y92{bottom:5.760000px;}
.y9c{bottom:5.820000px;}
.y72{bottom:5.940000px;}
.y94{bottom:6.120000px;}
.y8d{bottom:6.300000px;}
.y98{bottom:24.480000px;}
.y87{bottom:24.660000px;}
.y71{bottom:25.020000px;}
.y9b{bottom:25.260000px;}
.yba{bottom:47.880030px;}
.y2{bottom:58.320000px;}
.yb9{bottom:64.080030px;}
.yb8{bottom:80.640000px;}
.y37{bottom:93.960000px;}
.yaf{bottom:97.200000px;}
.yb0{bottom:98.280000px;}
.y85{bottom:105.120000px;}
.y6f{bottom:105.480000px;}
.y36{bottom:113.400000px;}
.yae{bottom:116.280000px;}
.yb1{bottom:120.960000px;}
.y84{bottom:124.560000px;}
.y6e{bottom:124.920000px;}
.y35{bottom:132.480000px;}
.yad{bottom:135.360000px;}
.y83{bottom:143.640000px;}
.y6d{bottom:144.000000px;}
.y34{bottom:151.560000px;}
.yac{bottom:154.800000px;}
.y82{bottom:162.720000px;}
.y6c{bottom:163.440000px;}
.yb2{bottom:166.320000px;}
.y33{bottom:171.000000px;}
.yab{bottom:173.880000px;}
.y6b{bottom:182.520000px;}
.y81{bottom:186.000000px;}
.yb3{bottom:189.000000px;}
.y32{bottom:190.080000px;}
.yaa{bottom:193.320000px;}
.y6a{bottom:201.600000px;}
.y31{bottom:209.520000px;}
.yb4{bottom:211.320000px;}
.ya9{bottom:212.400000px;}
.y69{bottom:221.040000px;}
.y80{bottom:222.000000px;}
.y30{bottom:228.600000px;}
.ya8{bottom:231.840000px;}
.yb5{bottom:234.000000px;}
.y68{bottom:240.120000px;}
.y2f{bottom:247.680000px;}
.ya7{bottom:250.920000px;}
.y7f{bottom:256.500000px;}
.yb6{bottom:256.680000px;}
.y67{bottom:259.560000px;}
.y2e{bottom:267.120000px;}
.ya6{bottom:270.000000px;}
.y66{bottom:278.640000px;}
.yb7{bottom:279.360000px;}
.y2d{bottom:286.200000px;}
.ya5{bottom:289.440000px;}
.y7e{bottom:292.500000px;}
.y65{bottom:297.720000px;}
.y2c{bottom:305.640000px;}
.ya4{bottom:308.520000px;}
.y64{bottom:317.160000px;}
.y2b{bottom:324.720000px;}
.ya3{bottom:327.960000px;}
.y63{bottom:336.240000px;}
.y2a{bottom:343.800000px;}
.y7d{bottom:345.600000px;}
.ya2{bottom:347.040000px;}
.y62{bottom:355.680000px;}
.y29{bottom:363.240000px;}
.y7c{bottom:365.040000px;}
.ya1{bottom:366.120000px;}
.y61{bottom:374.760000px;}
.ya0{bottom:381.240000px;}
.y28{bottom:382.320000px;}
.y7b{bottom:384.120000px;}
.y60{bottom:394.200000px;}
.y27{bottom:401.760000px;}
.y7a{bottom:403.560000px;}
.y5f{bottom:413.280000px;}
.y26{bottom:420.840000px;}
.y79{bottom:422.640000px;}
.y5e{bottom:432.360000px;}
.y25{bottom:440.280000px;}
.y78{bottom:441.720000px;}
.y5d{bottom:451.800000px;}
.y24{bottom:459.360000px;}
.y76{bottom:465.000000px;}
.y5c{bottom:470.880000px;}
.y23{bottom:478.440000px;}
.y5b{bottom:490.320000px;}
.y22{bottom:497.880000px;}
.y74{bottom:501.000000px;}
.y5a{bottom:509.400000px;}
.y21{bottom:516.960000px;}
.y59{bottom:528.480000px;}
.y73{bottom:535.500000px;}
.y20{bottom:536.400000px;}
.y58{bottom:547.920000px;}
.y1f{bottom:555.480000px;}
.y57{bottom:567.000000px;}
.y70{bottom:571.500000px;}
.y1e{bottom:574.560000px;}
.y56{bottom:586.440000px;}
.y1d{bottom:594.000000px;}
.y55{bottom:605.520000px;}
.y1c{bottom:613.080000px;}
.y54{bottom:624.600000px;}
.y1b{bottom:632.520000px;}
.y53{bottom:644.040000px;}
.y1a{bottom:651.600000px;}
.y52{bottom:663.120000px;}
.y19{bottom:670.680000px;}
.y51{bottom:682.560000px;}
.y9f{bottom:684.720000px;}
.y18{bottom:690.120000px;}
.y50{bottom:701.640000px;}
.y9e{bottom:703.800000px;}
.y17{bottom:709.200000px;}
.y4f{bottom:720.720000px;}
.y9d{bottom:723.240000px;}
.y16{bottom:728.640000px;}
.y4e{bottom:740.160000px;}
.y9a{bottom:745.500000px;}
.y15{bottom:747.720000px;}
.y4d{bottom:759.240000px;}
.y14{bottom:766.800000px;}
.y4c{bottom:778.680000px;}
.y13{bottom:786.240000px;}
.y4b{bottom:797.760000px;}
.y97{bottom:801.000000px;}
.y12{bottom:805.320000px;}
.y4a{bottom:816.840000px;}
.y11{bottom:824.760000px;}
.y49{bottom:836.280000px;}
.y10{bottom:843.840000px;}
.y48{bottom:855.360000px;}
.y95{bottom:856.500000px;}
.yf{bottom:862.920000px;}
.y47{bottom:874.800000px;}
.ye{bottom:882.360000px;}
.y93{bottom:891.000000px;}
.y46{bottom:893.880000px;}
.yd{bottom:902.160000px;}
.y45{bottom:912.960000px;}
.yc{bottom:921.600000px;}
.y91{bottom:927.000000px;}
.y44{bottom:932.400000px;}
.yb{bottom:941.040000px;}
.y43{bottom:951.480000px;}
.ya{bottom:960.120000px;}
.y90{bottom:960.840000px;}
.y42{bottom:970.920000px;}
.y9{bottom:979.560000px;}
.y8f{bottom:980.280000px;}
.y41{bottom:990.000000px;}
.y8e{bottom:999.360000px;}
.y8{bottom:999.720000px;}
.y40{bottom:1009.440000px;}
.y8c{bottom:1021.500000px;}
.y7{bottom:1024.920000px;}
.y3f{bottom:1028.520000px;}
.y3e{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y8b{bottom:1057.500000px;}
.y3d{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y3c{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y89{bottom:1093.500000px;}
.y3{bottom:1103.040000px;}
.y3b{bottom:1105.560000px;}
.y3a{bottom:1124.640000px;}
.y86{bottom:1129.500000px;}
.y39{bottom:1143.720000px;}
.y38{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h9{height:19.500000px;}
.h8{height:21.000000px;}
.hb{height:36.471094px;}
.h7{height:40.500000px;}
.h6{height:43.312500px;}
.h3{height:44.055000px;}
.h2{height:45.478125px;}
.h5{height:49.433203px;}
.h4{height:61.987500px;}
.ha{height:299.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:130.500000px;}
.w2{width:141.000000px;}
.w3{width:142.500000px;}
.wb{width:153.000000px;}
.w4{width:166.500000px;}
.w6{width:172.500000px;}
.w8{width:174.000000px;}
.wa{width:193.500000px;}
.w9{width:195.000000px;}
.w7{width:202.500000px;}
.wc{width:208.500000px;}
.wd{width:528.480000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x20{left:6.660000px;}
.x19{left:7.739856px;}
.x2c{left:9.824760px;}
.x10{left:11.225460px;}
.x26{left:15.813360px;}
.x2b{left:17.039760px;}
.x22{left:19.603296px;}
.x1c{left:24.012444px;}
.x18{left:25.267800px;}
.x13{left:27.527040px;}
.xe{left:36.491436px;}
.x24{left:38.123040px;}
.x15{left:40.254240px;}
.x2a{left:42.921480px;}
.x12{left:45.330120px;}
.x1d{left:47.391348px;}
.x17{left:48.543240px;}
.x16{left:50.740320px;}
.x1a{left:52.091316px;}
.x1{left:62.009748px;}
.x28{left:65.137212px;}
.x29{left:68.327400px;}
.x2e{left:71.064150px;}
.xd{left:84.959856px;}
.x2d{left:95.922900px;}
.x4{left:106.184700px;}
.x6{left:112.538088px;}
.x5{left:124.345476px;}
.xb{left:128.034288px;}
.x30{left:160.297950px;}
.x2f{left:176.374200px;}
.x3{left:181.064592px;}
.xf{left:226.500000px;}
.x27{left:238.500000px;}
.x31{left:249.531600px;}
.x21{left:252.000000px;}
.x1b{left:258.000000px;}
.xa{left:264.631716px;}
.xc{left:275.175288px;}
.x32{left:335.097750px;}
.x34{left:344.232900px;}
.x33{left:361.122750px;}
.x11{left:369.000000px;}
.x36{left:422.291550px;}
.x35{left:424.331550px;}
.x2{left:442.885680px;}
.x23{left:447.000000px;}
.x1e{left:460.500000px;}
.x14{left:510.000000px;}
.x9{left:632.152440px;}
.x1f{left:634.500000px;}
.x25{left:640.500000px;}
.x7{left:676.387800px;}
.x8{left:697.944240px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls39{letter-spacing:-0.491264pt;}
.ls3b{letter-spacing:-0.379392pt;}
.ls36{letter-spacing:-0.374528pt;}
.ls1a{letter-spacing:-0.304128pt;}
.ls16{letter-spacing:-0.275968pt;}
.ls14{letter-spacing:-0.264704pt;}
.lse{letter-spacing:-0.236544pt;}
.ls15{letter-spacing:-0.225280pt;}
.ls32{letter-spacing:-0.219648pt;}
.lsc{letter-spacing:-0.208384pt;}
.ls35{letter-spacing:-0.202752pt;}
.lsf{letter-spacing:-0.197120pt;}
.ls19{letter-spacing:-0.191488pt;}
.ls12{letter-spacing:-0.185856pt;}
.ls34{letter-spacing:-0.180224pt;}
.ls8{letter-spacing:-0.174592pt;}
.ls7{letter-spacing:-0.168960pt;}
.ls3a{letter-spacing:-0.165376pt;}
.ls20{letter-spacing:-0.163328pt;}
.ls33{letter-spacing:-0.157696pt;}
.lsd{letter-spacing:-0.152064pt;}
.ls9{letter-spacing:-0.146432pt;}
.ls10{letter-spacing:-0.140800pt;}
.ls42{letter-spacing:-0.135168pt;}
.ls13{letter-spacing:-0.129536pt;}
.ls5{letter-spacing:-0.118272pt;}
.ls26{letter-spacing:-0.112640pt;}
.ls11{letter-spacing:-0.107008pt;}
.ls1b{letter-spacing:-0.090112pt;}
.ls3c{letter-spacing:-0.087552pt;}
.ls18{letter-spacing:-0.084480pt;}
.ls2d{letter-spacing:-0.067584pt;}
.ls1f{letter-spacing:-0.061952pt;}
.ls43{letter-spacing:-0.056320pt;}
.ls17{letter-spacing:-0.045056pt;}
.ls38{letter-spacing:-0.024320pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.014080pt;}
.ls37{letter-spacing:0.092416pt;}
.ls2{letter-spacing:0.102400pt;}
.lsa{letter-spacing:0.126208pt;}
.ls25{letter-spacing:0.136960pt;}
.lsb{letter-spacing:0.237568pt;}
.ls3f{letter-spacing:0.797696pt;}
.ls41{letter-spacing:0.823040pt;}
.ls2f{letter-spacing:1.352576pt;}
.ls29{letter-spacing:1.616768pt;}
.ls1d{letter-spacing:1.742080pt;}
.ls27{letter-spacing:1.811200pt;}
.ls24{letter-spacing:2.550400pt;}
.ls2a{letter-spacing:2.624000pt;}
.ls21{letter-spacing:3.127040pt;}
.ls31{letter-spacing:3.276800pt;}
.ls2b{letter-spacing:3.635200pt;}
.ls2e{letter-spacing:4.549120pt;}
.ls28{letter-spacing:4.556800pt;}
.ls23{letter-spacing:4.801280pt;}
.ls3d{letter-spacing:5.305600pt;}
.ls40{letter-spacing:6.970880pt;}
.ls30{letter-spacing:8.180352pt;}
.ls1c{letter-spacing:8.459136pt;}
.ls4{letter-spacing:8.784640pt;}
.ls3e{letter-spacing:9.278208pt;}
.ls22{letter-spacing:16.811904pt;}
.ls3{letter-spacing:57.537152pt;}
.ls1e{letter-spacing:61.286016pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws1{word-spacing:-12.728320pt;}
.wse{word-spacing:-12.683264pt;}
.ws18{word-spacing:-12.643840pt;}
.ws6{word-spacing:-12.621312pt;}
.wsb{word-spacing:-12.615680pt;}
.ws9{word-spacing:-12.610048pt;}
.wsa{word-spacing:-12.598784pt;}
.ws2{word-spacing:-12.581888pt;}
.ws8{word-spacing:-12.576256pt;}
.wsc{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.ws1a{word-spacing:-12.553728pt;}
.wsd{word-spacing:-12.548096pt;}
.ws17{word-spacing:-12.542464pt;}
.ws19{word-spacing:-12.536832pt;}
.ws3{word-spacing:-12.531200pt;}
.ws4{word-spacing:-12.463616pt;}
.ws5{word-spacing:-12.452352pt;}
.ws10{word-spacing:-9.966336pt;}
.ws14{word-spacing:-9.873920pt;}
.ws11{word-spacing:-9.849600pt;}
.ws16{word-spacing:-9.786368pt;}
.ws13{word-spacing:-9.708544pt;}
.wsf{word-spacing:-9.499392pt;}
.ws15{word-spacing:-9.494528pt;}
.ws12{word-spacing:-9.382656pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-3.660800pt;}
._f{margin-left:-2.759680pt;}
._10{margin-left:-1.837952pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._3{width:2.252800pt;}
._6{width:3.548160pt;}
._4{width:4.787200pt;}
._5{width:5.688320pt;}
._7{width:7.331200pt;}
._b{width:8.504320pt;}
._a{width:9.405440pt;}
._12{width:10.543104pt;}
._c{width:11.590656pt;}
._18{width:13.483008pt;}
._d{width:14.586880pt;}
._e{width:15.600640pt;}
._9{width:16.705792pt;}
._8{width:17.806208pt;}
._13{width:18.943488pt;}
._15{width:20.725760pt;}
._14{width:21.795840pt;}
._1a{width:23.316480pt;}
._16{width:24.499200pt;}
._1b{width:26.133888pt;}
._17{width:27.202560pt;}
._1e{width:35.047936pt;}
._1d{width:40.437760pt;}
._21{width:44.605440pt;}
._20{width:47.759360pt;}
._24{width:49.730560pt;}
._22{width:60.712960pt;}
._23{width:61.763584pt;}
._1f{width:74.792960pt;}
._19{width:75.758208pt;}
._1c{width:163.271680pt;}
._1{width:2203.165184pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:4.266667pt;}
.y96{bottom:4.426667pt;}
.y77{bottom:4.586667pt;}
.y88{bottom:4.640000pt;}
.y99{bottom:4.800000pt;}
.y8a{bottom:4.960000pt;}
.y92{bottom:5.120000pt;}
.y9c{bottom:5.173333pt;}
.y72{bottom:5.280000pt;}
.y94{bottom:5.440000pt;}
.y8d{bottom:5.600000pt;}
.y98{bottom:21.760000pt;}
.y87{bottom:21.920000pt;}
.y71{bottom:22.240000pt;}
.y9b{bottom:22.453333pt;}
.yba{bottom:42.560027pt;}
.y2{bottom:51.840000pt;}
.yb9{bottom:56.960027pt;}
.yb8{bottom:71.680000pt;}
.y37{bottom:83.520000pt;}
.yaf{bottom:86.400000pt;}
.yb0{bottom:87.360000pt;}
.y85{bottom:93.440000pt;}
.y6f{bottom:93.760000pt;}
.y36{bottom:100.800000pt;}
.yae{bottom:103.360000pt;}
.yb1{bottom:107.520000pt;}
.y84{bottom:110.720000pt;}
.y6e{bottom:111.040000pt;}
.y35{bottom:117.760000pt;}
.yad{bottom:120.320000pt;}
.y83{bottom:127.680000pt;}
.y6d{bottom:128.000000pt;}
.y34{bottom:134.720000pt;}
.yac{bottom:137.600000pt;}
.y82{bottom:144.640000pt;}
.y6c{bottom:145.280000pt;}
.yb2{bottom:147.840000pt;}
.y33{bottom:152.000000pt;}
.yab{bottom:154.560000pt;}
.y6b{bottom:162.240000pt;}
.y81{bottom:165.333333pt;}
.yb3{bottom:168.000000pt;}
.y32{bottom:168.960000pt;}
.yaa{bottom:171.840000pt;}
.y6a{bottom:179.200000pt;}
.y31{bottom:186.240000pt;}
.yb4{bottom:187.840000pt;}
.ya9{bottom:188.800000pt;}
.y69{bottom:196.480000pt;}
.y80{bottom:197.333333pt;}
.y30{bottom:203.200000pt;}
.ya8{bottom:206.080000pt;}
.yb5{bottom:208.000000pt;}
.y68{bottom:213.440000pt;}
.y2f{bottom:220.160000pt;}
.ya7{bottom:223.040000pt;}
.y7f{bottom:228.000000pt;}
.yb6{bottom:228.160000pt;}
.y67{bottom:230.720000pt;}
.y2e{bottom:237.440000pt;}
.ya6{bottom:240.000000pt;}
.y66{bottom:247.680000pt;}
.yb7{bottom:248.320000pt;}
.y2d{bottom:254.400000pt;}
.ya5{bottom:257.280000pt;}
.y7e{bottom:260.000000pt;}
.y65{bottom:264.640000pt;}
.y2c{bottom:271.680000pt;}
.ya4{bottom:274.240000pt;}
.y64{bottom:281.920000pt;}
.y2b{bottom:288.640000pt;}
.ya3{bottom:291.520000pt;}
.y63{bottom:298.880000pt;}
.y2a{bottom:305.600000pt;}
.y7d{bottom:307.200000pt;}
.ya2{bottom:308.480000pt;}
.y62{bottom:316.160000pt;}
.y29{bottom:322.880000pt;}
.y7c{bottom:324.480000pt;}
.ya1{bottom:325.440000pt;}
.y61{bottom:333.120000pt;}
.ya0{bottom:338.880000pt;}
.y28{bottom:339.840000pt;}
.y7b{bottom:341.440000pt;}
.y60{bottom:350.400000pt;}
.y27{bottom:357.120000pt;}
.y7a{bottom:358.720000pt;}
.y5f{bottom:367.360000pt;}
.y26{bottom:374.080000pt;}
.y79{bottom:375.680000pt;}
.y5e{bottom:384.320000pt;}
.y25{bottom:391.360000pt;}
.y78{bottom:392.640000pt;}
.y5d{bottom:401.600000pt;}
.y24{bottom:408.320000pt;}
.y76{bottom:413.333333pt;}
.y5c{bottom:418.560000pt;}
.y23{bottom:425.280000pt;}
.y5b{bottom:435.840000pt;}
.y22{bottom:442.560000pt;}
.y74{bottom:445.333333pt;}
.y5a{bottom:452.800000pt;}
.y21{bottom:459.520000pt;}
.y59{bottom:469.760000pt;}
.y73{bottom:476.000000pt;}
.y20{bottom:476.800000pt;}
.y58{bottom:487.040000pt;}
.y1f{bottom:493.760000pt;}
.y57{bottom:504.000000pt;}
.y70{bottom:508.000000pt;}
.y1e{bottom:510.720000pt;}
.y56{bottom:521.280000pt;}
.y1d{bottom:528.000000pt;}
.y55{bottom:538.240000pt;}
.y1c{bottom:544.960000pt;}
.y54{bottom:555.200000pt;}
.y1b{bottom:562.240000pt;}
.y53{bottom:572.480000pt;}
.y1a{bottom:579.200000pt;}
.y52{bottom:589.440000pt;}
.y19{bottom:596.160000pt;}
.y51{bottom:606.720000pt;}
.y9f{bottom:608.640000pt;}
.y18{bottom:613.440000pt;}
.y50{bottom:623.680000pt;}
.y9e{bottom:625.600000pt;}
.y17{bottom:630.400000pt;}
.y4f{bottom:640.640000pt;}
.y9d{bottom:642.880000pt;}
.y16{bottom:647.680000pt;}
.y4e{bottom:657.920000pt;}
.y9a{bottom:662.666667pt;}
.y15{bottom:664.640000pt;}
.y4d{bottom:674.880000pt;}
.y14{bottom:681.600000pt;}
.y4c{bottom:692.160000pt;}
.y13{bottom:698.880000pt;}
.y4b{bottom:709.120000pt;}
.y97{bottom:712.000000pt;}
.y12{bottom:715.840000pt;}
.y4a{bottom:726.080000pt;}
.y11{bottom:733.120000pt;}
.y49{bottom:743.360000pt;}
.y10{bottom:750.080000pt;}
.y48{bottom:760.320000pt;}
.y95{bottom:761.333333pt;}
.yf{bottom:767.040000pt;}
.y47{bottom:777.600000pt;}
.ye{bottom:784.320000pt;}
.y93{bottom:792.000000pt;}
.y46{bottom:794.560000pt;}
.yd{bottom:801.920000pt;}
.y45{bottom:811.520000pt;}
.yc{bottom:819.200000pt;}
.y91{bottom:824.000000pt;}
.y44{bottom:828.800000pt;}
.yb{bottom:836.480000pt;}
.y43{bottom:845.760000pt;}
.ya{bottom:853.440000pt;}
.y90{bottom:854.080000pt;}
.y42{bottom:863.040000pt;}
.y9{bottom:870.720000pt;}
.y8f{bottom:871.360000pt;}
.y41{bottom:880.000000pt;}
.y8e{bottom:888.320000pt;}
.y8{bottom:888.640000pt;}
.y40{bottom:897.280000pt;}
.y8c{bottom:908.000000pt;}
.y7{bottom:911.040000pt;}
.y3f{bottom:914.240000pt;}
.y3e{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y8b{bottom:940.000000pt;}
.y3d{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y3c{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y89{bottom:972.000000pt;}
.y3{bottom:980.480000pt;}
.y3b{bottom:982.720000pt;}
.y3a{bottom:999.680000pt;}
.y86{bottom:1004.000000pt;}
.y39{bottom:1016.640000pt;}
.y38{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h9{height:17.333333pt;}
.h8{height:18.666667pt;}
.hb{height:32.418750pt;}
.h7{height:36.000000pt;}
.h6{height:38.500000pt;}
.h3{height:39.160000pt;}
.h2{height:40.425000pt;}
.h5{height:43.940625pt;}
.h4{height:55.100000pt;}
.ha{height:265.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:116.000000pt;}
.w2{width:125.333333pt;}
.w3{width:126.666667pt;}
.wb{width:136.000000pt;}
.w4{width:148.000000pt;}
.w6{width:153.333333pt;}
.w8{width:154.666667pt;}
.wa{width:172.000000pt;}
.w9{width:173.333333pt;}
.w7{width:180.000000pt;}
.wc{width:185.333333pt;}
.wd{width:469.760000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x20{left:5.920000pt;}
.x19{left:6.879872pt;}
.x2c{left:8.733120pt;}
.x10{left:9.978187pt;}
.x26{left:14.056320pt;}
.x2b{left:15.146453pt;}
.x22{left:17.425152pt;}
.x1c{left:21.344395pt;}
.x18{left:22.460267pt;}
.x13{left:24.468480pt;}
.xe{left:32.436832pt;}
.x24{left:33.887147pt;}
.x15{left:35.781547pt;}
.x2a{left:38.152427pt;}
.x12{left:40.293440pt;}
.x1d{left:42.125643pt;}
.x17{left:43.149547pt;}
.x16{left:45.102507pt;}
.x1a{left:46.303392pt;}
.x1{left:55.119776pt;}
.x28{left:57.899744pt;}
.x29{left:60.735467pt;}
.x2e{left:63.168133pt;}
.xd{left:75.519872pt;}
.x2d{left:85.264800pt;}
.x4{left:94.386400pt;}
.x6{left:100.033856pt;}
.x5{left:110.529312pt;}
.xb{left:113.808256pt;}
.x30{left:142.487067pt;}
.x2f{left:156.777067pt;}
.x3{left:160.946304pt;}
.xf{left:201.333333pt;}
.x27{left:212.000000pt;}
.x31{left:221.805867pt;}
.x21{left:224.000000pt;}
.x1b{left:229.333333pt;}
.xa{left:235.228192pt;}
.xc{left:244.600256pt;}
.x32{left:297.864667pt;}
.x34{left:305.984800pt;}
.x33{left:320.998000pt;}
.x11{left:328.000000pt;}
.x36{left:375.370267pt;}
.x35{left:377.183600pt;}
.x2{left:393.676160pt;}
.x23{left:397.333333pt;}
.x1e{left:409.333333pt;}
.x14{left:453.333333pt;}
.x9{left:561.913280pt;}
.x1f{left:564.000000pt;}
.x25{left:569.333333pt;}
.x7{left:601.233600pt;}
.x8{left:620.394880pt;}
}




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