
    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_8e69e6626e11dc1ba17738af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_37d7a94a20347a3b788a55f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_9627bc13707f2219b324c3ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_9339d4a602107605e4f8ade7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_8699d3722036c56d0c13c62a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_8118259aabd5dd26f82f35ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061000;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_a91da8aeaa020ccf20808a01.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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_fbb642572cae75b525da3ef5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061000;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_874269f7f602fac600df89cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.079000;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;}
.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;}
}
.ws4{word-spacing:-46.601558px;}
.wsa{word-spacing:-42.830667px;}
.ws1{word-spacing:-18.478562px;}
.ws2{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws8{word-spacing:-15.001902px;}
.ws9{word-spacing:-12.004672px;}
.ws7{word-spacing:-10.504681px;}
.wsb{word-spacing:-10.504074px;}
.ws5{word-spacing:-6.996050px;}
.ws6{word-spacing:-5.901460px;}
.ws3{word-spacing:0.000000px;}
._48{margin-left:-8.047315px;}
._d{margin-left:-1.008660px;}
._2d{width:1.036020px;}
._1c{width:2.212807px;}
._12{width:3.249407px;}
._16{width:5.231229px;}
._30{width:6.262209px;}
._22{width:7.442937px;}
._1b{width:8.496594px;}
._18{width:9.816330px;}
._3{width:11.314508px;}
._8{width:12.515631px;}
._10{width:13.723086px;}
._17{width:14.862402px;}
._2{width:17.673874px;}
._7{width:18.729276px;}
._9{width:20.003809px;}
._11{width:21.103247px;}
._e{width:22.897791px;}
._27{width:24.875657px;}
._0{width:25.887379px;}
._23{width:27.533743px;}
._2c{width:28.871126px;}
._25{width:30.027384px;}
._1{width:31.378580px;}
._1f{width:32.727727px;}
._15{width:34.723759px;}
._13{width:36.132316px;}
._26{width:37.793352px;}
._1a{width:38.912502px;}
._4{width:40.366034px;}
._34{width:42.361080px;}
._3f{width:43.463323px;}
._6{width:44.535308px;}
._28{width:46.459290px;}
._36{width:47.692598px;}
._21{width:48.782537px;}
._2b{width:49.912403px;}
._3c{width:50.913150px;}
._3d{width:51.936764px;}
._32{width:53.037068px;}
._19{width:54.309798px;}
._f{width:55.575292px;}
._29{width:56.738472px;}
._41{width:59.216091px;}
._20{width:60.767285px;}
._47{width:62.228638px;}
._2f{width:64.025468px;}
._33{width:65.663415px;}
._b{width:66.807610px;}
._3e{width:68.057015px;}
._35{width:70.179508px;}
._38{width:71.562243px;}
._24{width:73.330002px;}
._c{width:74.458344px;}
._2e{width:76.300925px;}
._49{width:77.530593px;}
._a{width:79.240919px;}
._5{width:80.457400px;}
._1e{width:81.521546px;}
._45{width:82.848249px;}
._40{width:86.393306px;}
._31{width:87.524283px;}
._2a{width:89.053010px;}
._3a{width:92.775560px;}
._37{width:94.216928px;}
._43{width:96.392143px;}
._39{width:98.928265px;}
._44{width:101.679647px;}
._46{width:116.685046px;}
._14{width:122.985729px;}
._3b{width:145.899645px;}
._42{width:148.199062px;}
._1d{width:280.502558px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs4{font-size:18.675507px;}
.fs3{font-size:27.984200px;}
.fs5{font-size:29.750527px;}
.fs8{font-size:42.016298px;}
.fs6{font-size:42.018724px;}
.fs9{font-size:48.018688px;}
.fs7{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yef{bottom:5.908244px;}
.yee{bottom:15.825087px;}
.yea{bottom:20.655020px;}
.yed{bottom:25.741929px;}
.ye8{bottom:26.805576px;}
.yec{bottom:35.658772px;}
.ye7{bottom:45.161507px;}
.yeb{bottom:45.575614px;}
.ye9{bottom:46.034751px;}
.ye6{bottom:62.299846px;}
.y7d{bottom:83.926619px;}
.yd8{bottom:89.112620px;}
.y7c{bottom:106.435099px;}
.y4e{bottom:106.926226px;}
.yd7{bottom:111.621101px;}
.y48{bottom:111.681926px;}
.y7b{bottom:128.943580px;}
.y4d{bottom:129.434706px;}
.yd6{bottom:134.129581px;}
.y47{bottom:134.190407px;}
.yf0{bottom:135.166209px;}
.yaa{bottom:137.693408px;}
.y7a{bottom:151.452061px;}
.y4c{bottom:151.943187px;}
.yd5{bottom:156.638062px;}
.y46{bottom:156.698888px;}
.ya9{bottom:160.201889px;}
.y79{bottom:173.960541px;}
.y4b{bottom:174.451668px;}
.yd4{bottom:179.146543px;}
.y45{bottom:179.207368px;}
.ya8{bottom:182.710370px;}
.y112{bottom:184.260480px;}
.yf6{bottom:195.943517px;}
.y78{bottom:196.469022px;}
.y111{bottom:198.265913px;}
.yd3{bottom:201.655023px;}
.y44{bottom:201.715849px;}
.ya7{bottom:205.218850px;}
.yf5{bottom:209.948949px;}
.y110{bottom:212.271345px;}
.y4a{bottom:218.268138px;}
.y77{bottom:218.977503px;}
.yf4{bottom:223.954382px;}
.yd2{bottom:224.163504px;}
.y43{bottom:224.224330px;}
.y10f{bottom:226.276778px;}
.ya6{bottom:227.727331px;}
.yf3{bottom:237.959814px;}
.y10e{bottom:240.282210px;}
.y76{bottom:241.485983px;}
.yd1{bottom:246.671985px;}
.y42{bottom:246.732810px;}
.ya5{bottom:250.235812px;}
.y75{bottom:263.994464px;}
.yf1{bottom:267.796056px;}
.y25{bottom:269.466381px;}
.ya4{bottom:272.744292px;}
.y74{bottom:286.502945px;}
.yd0{bottom:291.688946px;}
.y41{bottom:291.749772px;}
.y24{bottom:291.974862px;}
.ya3{bottom:295.252773px;}
.y73{bottom:309.011425px;}
.ycf{bottom:314.197427px;}
.y40{bottom:314.258252px;}
.y23{bottom:314.483342px;}
.ye5{bottom:315.934913px;}
.ya2{bottom:317.761254px;}
.y72{bottom:331.519906px;}
.yce{bottom:336.705907px;}
.y3f{bottom:336.766733px;}
.y22{bottom:336.991823px;}
.ye4{bottom:338.443393px;}
.yac{bottom:340.269734px;}
.yf7{bottom:340.873584px;}
.y71{bottom:354.028387px;}
.ycd{bottom:359.214388px;}
.y3e{bottom:359.275214px;}
.y21{bottom:359.500304px;}
.ye3{bottom:360.951874px;}
.ya1{bottom:362.778215px;}
.yf2{bottom:368.453924px;}
.y70{bottom:376.536867px;}
.ycc{bottom:381.722869px;}
.y3d{bottom:381.783694px;}
.y20{bottom:382.008784px;}
.ye2{bottom:383.460355px;}
.ya0{bottom:385.286696px;}
.y6f{bottom:399.045348px;}
.ycb{bottom:404.231349px;}
.y3c{bottom:404.292175px;}
.y1f{bottom:404.517265px;}
.ye1{bottom:405.968835px;}
.y9f{bottom:407.795176px;}
.y6e{bottom:421.553829px;}
.yca{bottom:426.739830px;}
.y3b{bottom:426.800656px;}
.y1e{bottom:427.025746px;}
.ye0{bottom:428.477316px;}
.y9e{bottom:430.303657px;}
.y6d{bottom:444.062309px;}
.yc9{bottom:449.248311px;}
.y3a{bottom:449.309136px;}
.y1d{bottom:449.534226px;}
.ydf{bottom:450.985797px;}
.y9d{bottom:452.812138px;}
.y6c{bottom:466.570790px;}
.yc8{bottom:471.756791px;}
.y1c{bottom:472.042707px;}
.yde{bottom:473.494277px;}
.y9c{bottom:475.320618px;}
.y6b{bottom:489.079271px;}
.y39{bottom:494.326098px;}
.y1b{bottom:494.551188px;}
.ydd{bottom:496.002758px;}
.y9b{bottom:497.829099px;}
.y6a{bottom:511.587751px;}
.y38{bottom:516.834578px;}
.y1a{bottom:517.059668px;}
.yc7{bottom:517.824125px;}
.ydc{bottom:518.511239px;}
.y9a{bottom:520.337580px;}
.y69{bottom:534.096232px;}
.y37{bottom:539.343059px;}
.y19{bottom:539.568149px;}
.ydb{bottom:541.019719px;}
.y99{bottom:542.846060px;}
.y68{bottom:556.604713px;}
.y36{bottom:561.851540px;}
.y18{bottom:562.076630px;}
.yc6{bottom:563.528200px;}
.y98{bottom:565.354541px;}
.y10d{bottom:575.849577px;}
.y67{bottom:579.113193px;}
.y35{bottom:584.360020px;}
.y17{bottom:584.585110px;}
.yc5{bottom:586.036681px;}
.y97{bottom:587.863022px;}
.y10c{bottom:598.358058px;}
.y7e{bottom:601.621674px;}
.y34{bottom:606.868501px;}
.y16{bottom:607.093591px;}
.yc4{bottom:608.545161px;}
.y96{bottom:610.371502px;}
.y10b{bottom:620.866539px;}
.y66{bottom:624.130155px;}
.y33{bottom:629.376982px;}
.y15{bottom:629.602072px;}
.yc3{bottom:631.053642px;}
.y95{bottom:632.879983px;}
.y10a{bottom:643.375019px;}
.y65{bottom:646.638635px;}
.y32{bottom:651.885462px;}
.y14{bottom:652.110552px;}
.yda{bottom:653.562123px;}
.y94{bottom:655.388464px;}
.y64{bottom:669.147116px;}
.y31{bottom:674.393943px;}
.y13{bottom:674.619033px;}
.yc2{bottom:676.070603px;}
.y93{bottom:677.896944px;}
.y109{bottom:688.391981px;}
.y63{bottom:691.655597px;}
.y30{bottom:696.902424px;}
.y12{bottom:697.127514px;}
.yc1{bottom:698.579084px;}
.y92{bottom:700.405425px;}
.y108{bottom:710.900461px;}
.y62{bottom:714.164077px;}
.y2f{bottom:719.410904px;}
.y11{bottom:719.635994px;}
.yc0{bottom:721.087565px;}
.y91{bottom:722.913906px;}
.y107{bottom:733.408942px;}
.y61{bottom:736.672558px;}
.y2e{bottom:741.919385px;}
.y10{bottom:742.144475px;}
.ybf{bottom:743.596045px;}
.y90{bottom:745.422386px;}
.y60{bottom:759.181039px;}
.y2d{bottom:764.427866px;}
.yf{bottom:764.652955px;}
.ybe{bottom:766.104526px;}
.y8f{bottom:767.930867px;}
.y106{bottom:778.425903px;}
.y5f{bottom:781.689519px;}
.y2c{bottom:786.936346px;}
.ye{bottom:787.161436px;}
.ybd{bottom:788.613007px;}
.yab{bottom:790.439348px;}
.y105{bottom:800.934384px;}
.y5e{bottom:804.198000px;}
.y2b{bottom:809.444827px;}
.yd{bottom:809.669917px;}
.ybc{bottom:811.121487px;}
.y8e{bottom:812.947828px;}
.y104{bottom:823.442865px;}
.y5d{bottom:826.706481px;}
.y2a{bottom:831.953307px;}
.yc{bottom:832.178397px;}
.ybb{bottom:833.629968px;}
.y8d{bottom:835.456309px;}
.y103{bottom:845.951345px;}
.y5c{bottom:849.214961px;}
.y29{bottom:854.461788px;}
.yb{bottom:854.686878px;}
.yba{bottom:856.138448px;}
.y8c{bottom:857.964790px;}
.y102{bottom:868.459826px;}
.y5b{bottom:871.723442px;}
.y28{bottom:876.970269px;}
.ya{bottom:877.195359px;}
.yd9{bottom:878.646929px;}
.y8b{bottom:880.473270px;}
.y5a{bottom:894.231923px;}
.y27{bottom:899.478749px;}
.yb9{bottom:901.155410px;}
.y8a{bottom:902.981751px;}
.y101{bottom:913.476787px;}
.y59{bottom:916.740403px;}
.y49{bottom:921.011858px;}
.y26{bottom:921.987230px;}
.yb8{bottom:923.663890px;}
.y89{bottom:925.490232px;}
.y100{bottom:935.985268px;}
.y58{bottom:939.248884px;}
.yb7{bottom:946.172371px;}
.y88{bottom:947.998712px;}
.yff{bottom:958.493749px;}
.y57{bottom:961.757364px;}
.y9{bottom:965.209401px;}
.yb6{bottom:968.680852px;}
.y87{bottom:970.507193px;}
.yfe{bottom:981.002229px;}
.y56{bottom:984.265845px;}
.y8{bottom:987.717881px;}
.yb5{bottom:991.189332px;}
.y86{bottom:993.015674px;}
.y55{bottom:1006.774326px;}
.y7{bottom:1010.226362px;}
.yb4{bottom:1013.697813px;}
.y85{bottom:1015.524154px;}
.yfd{bottom:1026.019191px;}
.y54{bottom:1029.282806px;}
.y6{bottom:1032.734843px;}
.yb3{bottom:1036.206294px;}
.y84{bottom:1038.032635px;}
.yfc{bottom:1048.527671px;}
.y53{bottom:1051.791287px;}
.y5{bottom:1055.243323px;}
.yb2{bottom:1058.714774px;}
.y83{bottom:1060.541116px;}
.yfb{bottom:1071.036152px;}
.y52{bottom:1074.299768px;}
.y4{bottom:1077.751804px;}
.yb1{bottom:1081.223255px;}
.y82{bottom:1083.049596px;}
.yfa{bottom:1093.544633px;}
.y51{bottom:1096.808248px;}
.yb0{bottom:1103.731736px;}
.y81{bottom:1105.558077px;}
.yf9{bottom:1116.053113px;}
.y50{bottom:1119.316729px;}
.yaf{bottom:1126.240216px;}
.y80{bottom:1128.066558px;}
.y3{bottom:1139.147004px;}
.y4f{bottom:1141.825210px;}
.yae{bottom:1148.748697px;}
.y7f{bottom:1150.575038px;}
.yf8{bottom:1161.070075px;}
.y2{bottom:1168.408029px;}
.yad{bottom:1171.257178px;}
.h8{height:15.033783px;}
.h7{height:22.751155px;}
.ha{height:24.187179px;}
.hd{height:34.159250px;}
.hb{height:34.161222px;}
.he{height:39.039194px;}
.hc{height:48.786186px;}
.h9{height:53.639998px;}
.h5{height:53.653825px;}
.h4{height:54.643748px;}
.h6{height:59.638470px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.552352px;}
.x1{left:52.221634px;}
.x8{left:119.519995px;}
.x9{left:127.283452px;}
.x2{left:135.626105px;}
.x4{left:464.802871px;}
.xa{left:477.449761px;}
.x7{left:496.419632px;}
.x6{left:618.659038px;}
.x5{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-41.423607pt;}
.wsa{word-spacing:-38.071704pt;}
.ws1{word-spacing:-16.425388pt;}
.ws2{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws8{word-spacing:-13.335024pt;}
.ws9{word-spacing:-10.670820pt;}
.ws7{word-spacing:-9.337494pt;}
.wsb{word-spacing:-9.336955pt;}
.ws5{word-spacing:-6.218711pt;}
.ws6{word-spacing:-5.245742pt;}
.ws3{word-spacing:0.000000pt;}
._48{margin-left:-7.153169pt;}
._d{margin-left:-0.896587pt;}
._2d{width:0.920907pt;}
._1c{width:1.966939pt;}
._12{width:2.888361pt;}
._16{width:4.649981pt;}
._30{width:5.566408pt;}
._22{width:6.615944pt;}
._1b{width:7.552528pt;}
._18{width:8.725627pt;}
._3{width:10.057341pt;}
._8{width:11.125005pt;}
._10{width:12.198298pt;}
._17{width:13.211024pt;}
._2{width:15.710110pt;}
._7{width:16.648246pt;}
._9{width:17.781163pt;}
._11{width:18.758442pt;}
._e{width:20.353592pt;}
._27{width:22.111695pt;}
._0{width:23.011003pt;}
._23{width:24.474438pt;}
._2c{width:25.663224pt;}
._25{width:26.691008pt;}
._1{width:27.892071pt;}
._1f{width:29.091313pt;}
._15{width:30.865564pt;}
._13{width:32.117614pt;}
._26{width:33.594090pt;}
._1a{width:34.588890pt;}
._4{width:35.880919pt;}
._34{width:37.654293pt;}
._3f{width:38.634065pt;}
._6{width:39.586940pt;}
._28{width:41.297147pt;}
._36{width:42.393420pt;}
._21{width:43.362255pt;}
._2b{width:44.366580pt;}
._3c{width:45.256133pt;}
._3d{width:46.166013pt;}
._32{width:47.144060pt;}
._19{width:48.275376pt;}
._f{width:49.400260pt;}
._29{width:50.434197pt;}
._41{width:52.636525pt;}
._20{width:54.015364pt;}
._47{width:55.314345pt;}
._2f{width:56.911527pt;}
._33{width:58.367480pt;}
._b{width:59.384542pt;}
._3e{width:60.495124pt;}
._35{width:62.381785pt;}
._38{width:63.610883pt;}
._24{width:65.182224pt;}
._c{width:66.185194pt;}
._2e{width:67.823044pt;}
._49{width:68.916082pt;}
._a{width:70.436372pt;}
._5{width:71.517689pt;}
._1e{width:72.463597pt;}
._45{width:73.642888pt;}
._40{width:76.794050pt;}
._31{width:77.799363pt;}
._2a{width:79.158231pt;}
._3a{width:82.467164pt;}
._37{width:83.748380pt;}
._43{width:85.681904pt;}
._39{width:87.936236pt;}
._44{width:90.381908pt;}
._46{width:103.720041pt;}
._14{width:109.320648pt;}
._3b{width:129.688574pt;}
._42{width:131.732500pt;}
._1d{width:249.335607pt;}
.fs4{font-size:16.600451pt;}
.fs3{font-size:24.874844pt;}
.fs5{font-size:26.444913pt;}
.fs8{font-size:37.347820pt;}
.fs6{font-size:37.349977pt;}
.fs9{font-size:42.683279pt;}
.fs7{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yef{bottom:5.251773pt;}
.yee{bottom:14.066744pt;}
.yea{bottom:18.360018pt;}
.yed{bottom:22.881715pt;}
.ye8{bottom:23.827178pt;}
.yec{bottom:31.696686pt;}
.ye7{bottom:40.143562pt;}
.yeb{bottom:40.511657pt;}
.ye9{bottom:40.919779pt;}
.ye6{bottom:55.377641pt;}
.y7d{bottom:74.601439pt;}
.yd8{bottom:79.211218pt;}
.y7c{bottom:94.608977pt;}
.y4e{bottom:95.045534pt;}
.yd7{bottom:99.218756pt;}
.y48{bottom:99.272823pt;}
.y7b{bottom:114.616516pt;}
.y4d{bottom:115.053072pt;}
.yd6{bottom:119.226295pt;}
.y47{bottom:119.280362pt;}
.yf0{bottom:120.147742pt;}
.yaa{bottom:122.394141pt;}
.y7a{bottom:134.624054pt;}
.y4c{bottom:135.060611pt;}
.yd5{bottom:139.233833pt;}
.y46{bottom:139.287900pt;}
.ya9{bottom:142.401679pt;}
.y79{bottom:154.631592pt;}
.y4b{bottom:155.068149pt;}
.yd4{bottom:159.241371pt;}
.y45{bottom:159.295438pt;}
.ya8{bottom:162.409218pt;}
.y112{bottom:163.787094pt;}
.yf6{bottom:174.172015pt;}
.y78{bottom:174.639131pt;}
.y111{bottom:176.236367pt;}
.yd3{bottom:179.248910pt;}
.y44{bottom:179.302977pt;}
.ya7{bottom:182.416756pt;}
.yf5{bottom:186.621288pt;}
.y110{bottom:188.685640pt;}
.y4a{bottom:194.016122pt;}
.y77{bottom:194.646669pt;}
.yf4{bottom:199.070562pt;}
.yd2{bottom:199.256448pt;}
.y43{bottom:199.310515pt;}
.y10f{bottom:201.134914pt;}
.ya6{bottom:202.424294pt;}
.yf3{bottom:211.519835pt;}
.y10e{bottom:213.584187pt;}
.y76{bottom:214.654207pt;}
.yd1{bottom:219.263986pt;}
.y42{bottom:219.318054pt;}
.ya5{bottom:222.431833pt;}
.y75{bottom:234.661746pt;}
.yf1{bottom:238.040939pt;}
.y25{bottom:239.525672pt;}
.ya4{bottom:242.439371pt;}
.y74{bottom:254.669284pt;}
.yd0{bottom:259.279063pt;}
.y41{bottom:259.333130pt;}
.y24{bottom:259.533210pt;}
.ya3{bottom:262.446909pt;}
.y73{bottom:274.676822pt;}
.ycf{bottom:279.286601pt;}
.y40{bottom:279.340669pt;}
.y23{bottom:279.540749pt;}
.ye5{bottom:280.831033pt;}
.ya2{bottom:282.454448pt;}
.y72{bottom:294.684361pt;}
.yce{bottom:299.294140pt;}
.y3f{bottom:299.348207pt;}
.y22{bottom:299.548287pt;}
.ye4{bottom:300.838572pt;}
.yac{bottom:302.461986pt;}
.yf7{bottom:302.998741pt;}
.y71{bottom:314.691899pt;}
.ycd{bottom:319.301678pt;}
.y3e{bottom:319.355745pt;}
.y21{bottom:319.555825pt;}
.ye3{bottom:320.846110pt;}
.ya1{bottom:322.469524pt;}
.yf2{bottom:327.514599pt;}
.y70{bottom:334.699438pt;}
.ycc{bottom:339.309217pt;}
.y3d{bottom:339.363284pt;}
.y20{bottom:339.563364pt;}
.ye2{bottom:340.853649pt;}
.ya0{bottom:342.477063pt;}
.y6f{bottom:354.706976pt;}
.ycb{bottom:359.316755pt;}
.y3c{bottom:359.370822pt;}
.y1f{bottom:359.570902pt;}
.ye1{bottom:360.861187pt;}
.y9f{bottom:362.484601pt;}
.y6e{bottom:374.714514pt;}
.yca{bottom:379.324293pt;}
.y3b{bottom:379.378361pt;}
.y1e{bottom:379.578441pt;}
.ye0{bottom:380.868725pt;}
.y9e{bottom:382.492140pt;}
.y6d{bottom:394.722053pt;}
.yc9{bottom:399.331832pt;}
.y3a{bottom:399.385899pt;}
.y1d{bottom:399.585979pt;}
.ydf{bottom:400.876264pt;}
.y9d{bottom:402.499678pt;}
.y6c{bottom:414.729591pt;}
.yc8{bottom:419.339370pt;}
.y1c{bottom:419.593517pt;}
.yde{bottom:420.883802pt;}
.y9c{bottom:422.507216pt;}
.y6b{bottom:434.737129pt;}
.y39{bottom:439.400976pt;}
.y1b{bottom:439.601056pt;}
.ydd{bottom:440.891340pt;}
.y9b{bottom:442.514755pt;}
.y6a{bottom:454.744668pt;}
.y38{bottom:459.408514pt;}
.y1a{bottom:459.608594pt;}
.yc7{bottom:460.288111pt;}
.ydc{bottom:460.898879pt;}
.y9a{bottom:462.522293pt;}
.y69{bottom:474.752206pt;}
.y37{bottom:479.416052pt;}
.y19{bottom:479.616132pt;}
.ydb{bottom:480.906417pt;}
.y99{bottom:482.529831pt;}
.y68{bottom:494.759745pt;}
.y36{bottom:499.423591pt;}
.y18{bottom:499.623671pt;}
.yc6{bottom:500.913955pt;}
.y98{bottom:502.537370pt;}
.y10d{bottom:511.866291pt;}
.y67{bottom:514.767283pt;}
.y35{bottom:519.431129pt;}
.y17{bottom:519.631209pt;}
.yc5{bottom:520.921494pt;}
.y97{bottom:522.544908pt;}
.y10c{bottom:531.873829pt;}
.y7e{bottom:534.774821pt;}
.y34{bottom:539.438667pt;}
.y16{bottom:539.638747pt;}
.yc4{bottom:540.929032pt;}
.y96{bottom:542.552447pt;}
.y10b{bottom:551.881368pt;}
.y66{bottom:554.782360pt;}
.y33{bottom:559.446206pt;}
.y15{bottom:559.646286pt;}
.yc3{bottom:560.936571pt;}
.y95{bottom:562.559985pt;}
.y10a{bottom:571.888906pt;}
.y65{bottom:574.789898pt;}
.y32{bottom:579.453744pt;}
.y14{bottom:579.653824pt;}
.yda{bottom:580.944109pt;}
.y94{bottom:582.567523pt;}
.y64{bottom:594.797436pt;}
.y31{bottom:599.461283pt;}
.y13{bottom:599.661363pt;}
.yc2{bottom:600.951647pt;}
.y93{bottom:602.575062pt;}
.y109{bottom:611.903983pt;}
.y63{bottom:614.804975pt;}
.y30{bottom:619.468821pt;}
.y12{bottom:619.668901pt;}
.yc1{bottom:620.959186pt;}
.y92{bottom:622.582600pt;}
.y108{bottom:631.911521pt;}
.y62{bottom:634.812513pt;}
.y2f{bottom:639.476359pt;}
.y11{bottom:639.676439pt;}
.yc0{bottom:640.966724pt;}
.y91{bottom:642.590138pt;}
.y107{bottom:651.919060pt;}
.y61{bottom:654.820051pt;}
.y2e{bottom:659.483898pt;}
.y10{bottom:659.683978pt;}
.ybf{bottom:660.974262pt;}
.y90{bottom:662.597677pt;}
.y60{bottom:674.827590pt;}
.y2d{bottom:679.491436pt;}
.yf{bottom:679.691516pt;}
.ybe{bottom:680.981801pt;}
.y8f{bottom:682.605215pt;}
.y106{bottom:691.934136pt;}
.y5f{bottom:694.835128pt;}
.y2c{bottom:699.498974pt;}
.ye{bottom:699.699054pt;}
.ybd{bottom:700.989339pt;}
.yab{bottom:702.612753pt;}
.y105{bottom:711.941675pt;}
.y5e{bottom:714.842667pt;}
.y2b{bottom:719.506513pt;}
.yd{bottom:719.706593pt;}
.ybc{bottom:720.996877pt;}
.y8e{bottom:722.620292pt;}
.y104{bottom:731.949213pt;}
.y5d{bottom:734.850205pt;}
.y2a{bottom:739.514051pt;}
.yc{bottom:739.714131pt;}
.ybb{bottom:741.004416pt;}
.y8d{bottom:742.627830pt;}
.y103{bottom:751.956751pt;}
.y5c{bottom:754.857743pt;}
.y29{bottom:759.521589pt;}
.yb{bottom:759.721669pt;}
.yba{bottom:761.011954pt;}
.y8c{bottom:762.635369pt;}
.y102{bottom:771.964290pt;}
.y5b{bottom:774.865282pt;}
.y28{bottom:779.529128pt;}
.ya{bottom:779.729208pt;}
.yd9{bottom:781.019493pt;}
.y8b{bottom:782.642907pt;}
.y5a{bottom:794.872820pt;}
.y27{bottom:799.536666pt;}
.yb9{bottom:801.027031pt;}
.y8a{bottom:802.650445pt;}
.y101{bottom:811.979366pt;}
.y59{bottom:814.880358pt;}
.y49{bottom:818.677207pt;}
.y26{bottom:819.544205pt;}
.yb8{bottom:821.034569pt;}
.y89{bottom:822.657984pt;}
.y100{bottom:831.986905pt;}
.y58{bottom:834.887897pt;}
.yb7{bottom:841.042108pt;}
.y88{bottom:842.665522pt;}
.yff{bottom:851.994443pt;}
.y57{bottom:854.895435pt;}
.y9{bottom:857.963912pt;}
.yb6{bottom:861.049646pt;}
.y87{bottom:862.673060pt;}
.yfe{bottom:872.001982pt;}
.y56{bottom:874.902973pt;}
.y8{bottom:877.971450pt;}
.yb5{bottom:881.057184pt;}
.y86{bottom:882.680599pt;}
.y55{bottom:894.910512pt;}
.y7{bottom:897.978989pt;}
.yb4{bottom:901.064723pt;}
.y85{bottom:902.688137pt;}
.yfd{bottom:912.017058pt;}
.y54{bottom:914.918050pt;}
.y6{bottom:917.986527pt;}
.yb3{bottom:921.072261pt;}
.y84{bottom:922.695675pt;}
.yfc{bottom:932.024597pt;}
.y53{bottom:934.925589pt;}
.y5{bottom:937.994065pt;}
.yb2{bottom:941.079800pt;}
.y83{bottom:942.703214pt;}
.yfb{bottom:952.032135pt;}
.y52{bottom:954.933127pt;}
.y4{bottom:958.001604pt;}
.yb1{bottom:961.087338pt;}
.y82{bottom:962.710752pt;}
.yfa{bottom:972.039673pt;}
.y51{bottom:974.940665pt;}
.yb0{bottom:981.094876pt;}
.y81{bottom:982.718291pt;}
.yf9{bottom:992.047212pt;}
.y50{bottom:994.948204pt;}
.yaf{bottom:1001.102415pt;}
.y80{bottom:1002.725829pt;}
.y3{bottom:1012.575115pt;}
.y4f{bottom:1014.955742pt;}
.yae{bottom:1021.109953pt;}
.y7f{bottom:1022.733367pt;}
.yf8{bottom:1032.062289pt;}
.y2{bottom:1038.584915pt;}
.yad{bottom:1041.117491pt;}
.h8{height:13.363363pt;}
.h7{height:20.223249pt;}
.ha{height:21.499714pt;}
.hd{height:30.363778pt;}
.hb{height:30.365531pt;}
.he{height:34.701506pt;}
.hc{height:43.365499pt;}
.h9{height:47.679998pt;}
.h5{height:47.692289pt;}
.h4{height:48.572220pt;}
.h6{height:53.011974pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.713202pt;}
.x1{left:46.419230pt;}
.x8{left:106.239996pt;}
.x9{left:113.140846pt;}
.x2{left:120.556538pt;}
.x4{left:413.158108pt;}
.xa{left:424.399787pt;}
.x7{left:441.261895pt;}
.x6{left:549.919145pt;}
.x5{left:551.612297pt;}
}




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