
    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_f4219a2d8cd6dbafd3c120cb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_a208637e5be2b99f16a15f9a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_4d0c25eee05d0d2b47c7f0d5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_c0a5c56947df25f6dec5932f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_2a81cf3b3caa4834135b19d2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.388000;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_a7df5e7e12bb0ca023de0c3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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_73749cedd515a203f58ed0bc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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);}
.v4{vertical-align:-21.707840px;}
.v5{vertical-align:-19.547928px;}
.v2{vertical-align:-2.918701px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.918335px;}
.v1{vertical-align:21.707840px;}
.ls15{letter-spacing:-5.403714px;}
.ls12{letter-spacing:-0.023910px;}
.ls9{letter-spacing:-0.017933px;}
.lsa{letter-spacing:-0.011955px;}
.lsf{letter-spacing:-0.010162px;}
.ls6{letter-spacing:-0.008608px;}
.lsb{letter-spacing:-0.005978px;}
.lsd{letter-spacing:-0.005380px;}
.lse{letter-spacing:-0.005081px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.005380px;}
.ls10{letter-spacing:0.005978px;}
.ls16{letter-spacing:0.007173px;}
.ls8{letter-spacing:0.011955px;}
.ls11{letter-spacing:0.017933px;}
.ls5{letter-spacing:0.533982px;}
.ls0{letter-spacing:2.961940px;}
.ls3{letter-spacing:3.043196px;}
.ls1{letter-spacing:3.097120px;}
.ls2{letter-spacing:3.097189px;}
.ls4{letter-spacing:3.151274px;}
.ls13{letter-spacing:41.824199px;}
.ls14{letter-spacing:41.824201px;}
.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:-0.065873px;}
.ws5{word-spacing:-0.059776px;}
.ws8{word-spacing:-0.048419px;}
.ws0{word-spacing:-0.045430px;}
.ws2{word-spacing:-0.040647px;}
.ws6{word-spacing:-0.035865px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:13.342003px;}
.ws4{word-spacing:13.390421px;}
._1{margin-left:-6.378320px;}
._1f{margin-left:-5.332449px;}
._f{margin-left:-4.206914px;}
._1c{margin-left:-3.156155px;}
._2{margin-left:-2.117499px;}
._3{margin-left:-1.069983px;}
._5{width:2.578535px;}
._17{width:4.782048px;}
._19{width:6.031358px;}
._d{width:7.827667px;}
._c{width:9.412562px;}
._b{width:11.045875px;}
._a{width:12.238072px;}
._8{width:13.431303px;}
._4{width:14.925967px;}
._6{width:15.932371px;}
._e{width:16.985774px;}
._11{width:18.399052px;}
._10{width:19.754773px;}
._0{width:21.519300px;}
._14{width:22.720622px;}
._7{width:23.887190px;}
._1d{width:25.009286px;}
._22{width:26.026259px;}
._20{width:28.453185px;}
._9{width:29.901065px;}
._21{width:30.902882px;}
._1a{width:32.099501px;}
._16{width:33.719414px;}
._1e{width:35.041177px;}
._23{width:40.850218px;}
._1b{width:41.878192px;}
._18{width:43.827470px;}
._25{width:46.312884px;}
._24{width:48.487250px;}
._15{width:49.840893px;}
._13{width:59.765937px;}
._12{width:168.367478px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:44.832000px;}
.fs2{font-size:45.429600px;}
.fs5{font-size:50.809198px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775599px;}
.fs3{font-size:65.872799px;}
.fs7{font-size:71.730600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2b{bottom:49.418985px;}
.y2a{bottom:64.363779px;}
.y29{bottom:79.308023px;}
.yf1{bottom:94.022064px;}
.y71{bottom:94.022461px;}
.y95{bottom:98.558269px;}
.yaf{bottom:99.044609px;}
.y119{bottom:104.686988px;}
.yc7{bottom:105.874535px;}
.y58{bottom:110.667915px;}
.yf0{bottom:111.950260px;}
.y70{bottom:111.950661px;}
.y94{bottom:116.486466px;}
.yae{bottom:116.972809px;}
.y118{bottom:121.130469px;}
.yc6{bottom:123.802723px;}
.y28{bottom:127.503030px;}
.y57{bottom:128.596111px;}
.yef{bottom:129.878456px;}
.y6f{bottom:129.878849px;}
.y93{bottom:134.428112px;}
.yad{bottom:134.914455px;}
.y117{bottom:137.560500px;}
.yc5{bottom:141.730923px;}
.y27{bottom:143.945993px;}
.y56{bottom:146.524307px;}
.yee{bottom:147.820102px;}
.y6e{bottom:147.820496px;}
.y92{bottom:152.356308px;}
.yac{bottom:152.842655px;}
.y116{bottom:154.001152px;}
.yc4{bottom:159.672569px;}
.y55{bottom:164.465953px;}
.yed{bottom:165.748299px;}
.y91{bottom:170.284504px;}
.y115{bottom:170.444633px;}
.y6d{bottom:174.712154px;}
.y26{bottom:175.997003px;}
.yc3{bottom:177.600769px;}
.yab{bottom:179.896259px;}
.y54{bottom:182.393662px;}
.yec{bottom:183.689945px;}
.y114{bottom:186.874664px;}
.y25{bottom:192.440469px;}
.y6c{bottom:192.653801px;}
.yc2{bottom:195.528969px;}
.y90{bottom:197.337765px;}
.yaa{bottom:197.824448px;}
.y53{bottom:200.321859px;}
.yeb{bottom:201.618141px;}
.y113{bottom:203.318145px;}
.y24{bottom:208.883935px;}
.y6b{bottom:210.582000px;}
.yc1{bottom:213.470604px;}
.y8f{bottom:215.265961px;}
.ya9{bottom:215.752647px;}
.y52{bottom:218.263504px;}
.yea{bottom:219.544586px;}
.y112{bottom:219.761626px;}
.y23{bottom:225.313989px;}
.y6a{bottom:227.443359px;}
.yc0{bottom:231.398804px;}
.y8e{bottom:233.207607px;}
.ya8{bottom:233.693275px;}
.y51{bottom:236.190820px;}
.y111{bottom:236.191658px;}
.ye9{bottom:237.486232px;}
.y22{bottom:241.757455px;}
.y69{bottom:245.384995px;}
.ybf{bottom:249.327003px;}
.y8d{bottom:251.135803px;}
.ya7{bottom:251.621475px;}
.y110{bottom:252.633483px;}
.y50{bottom:254.132466px;}
.ye8{bottom:255.414429px;}
.y21{bottom:258.200967px;}
.y68{bottom:262.246307px;}
.ybe{bottom:266.753746px;}
.y10f{bottom:269.063515px;}
.y8c{bottom:269.064000px;}
.ya6{bottom:269.549675px;}
.y4f{bottom:272.060662px;}
.ye7{bottom:273.342625px;}
.y20{bottom:274.630975px;}
.y67{bottom:280.174507px;}
.ybd{bottom:284.695404px;}
.y10e{bottom:285.506996px;}
.y8b{bottom:287.005646px;}
.ya5{bottom:287.491310px;}
.y4e{bottom:289.988859px;}
.y1f{bottom:291.074487px;}
.ye6{bottom:291.284271px;}
.y10d{bottom:301.949142px;}
.ybc{bottom:302.623581px;}
.ya4{bottom:305.419510px;}
.y66{bottom:306.013458px;}
.y1e{bottom:307.517953px;}
.y4d{bottom:307.929951px;}
.ye5{bottom:309.212467px;}
.y8a{bottom:316.894500px;}
.y10c{bottom:318.379174px;}
.ybb{bottom:320.551781px;}
.ya3{bottom:323.346450px;}
.y65{bottom:323.941498px;}
.y1d{bottom:323.948007px;}
.y4c{bottom:325.858147px;}
.ye4{bottom:327.140664px;}
.y10b{bottom:334.822654px;}
.yba{bottom:338.493439px;}
.y1c{bottom:340.391473px;}
.ya2{bottom:341.288109px;}
.y4b{bottom:343.786344px;}
.ye3{bottom:345.082310px;}
.y64{bottom:349.564499px;}
.y10a{bottom:351.264503px;}
.yb9{bottom:356.421638px;}
.y1b{bottom:356.834939px;}
.ya1{bottom:359.216286px;}
.y89{bottom:361.726906px;}
.y4a{bottom:361.727054px;}
.ye2{bottom:363.010506px;}
.y109{bottom:367.694535px;}
.y1a{bottom:373.264993px;}
.yb8{bottom:374.349815px;}
.ya0{bottom:377.157944px;}
.y88{bottom:379.655103px;}
.y49{bottom:379.655250px;}
.ye1{bottom:380.937248px;}
.y108{bottom:384.138016px;}
.y19{bottom:389.708459px;}
.yb7{bottom:392.291473px;}
.y9f{bottom:395.086121px;}
.y87{bottom:397.583299px;}
.y48{bottom:397.583446px;}
.ye0{bottom:398.878894px;}
.y107{bottom:400.580452px;}
.y18{bottom:406.151971px;}
.yb6{bottom:410.219650px;}
.y9e{bottom:413.014343px;}
.y63{bottom:415.431015px;}
.y86{bottom:415.524945px;}
.y47{bottom:415.525092px;}
.ydf{bottom:416.807091px;}
.y106{bottom:417.010483px;}
.y17{bottom:422.581979px;}
.yb5{bottom:428.147873px;}
.y9d{bottom:430.955978px;}
.y85{bottom:433.453141px;}
.y46{bottom:433.453289px;}
.y105{bottom:433.453629px;}
.yde{bottom:434.735287px;}
.y16{bottom:439.025445px;}
.yb4{bottom:446.089508px;}
.y104{bottom:449.895973px;}
.y84{bottom:451.381338px;}
.y45{bottom:451.381485px;}
.ydd{bottom:452.676933px;}
.y15{bottom:455.468957px;}
.y9c{bottom:457.995850px;}
.y103{bottom:466.326005px;}
.y44{bottom:469.322983px;}
.ydc{bottom:470.605129px;}
.y14{bottom:471.898965px;}
.y9b{bottom:475.937485px;}
.y102{bottom:482.767967px;}
.y43{bottom:487.250671px;}
.y13{bottom:488.342477px;}
.ydb{bottom:488.533326px;}
.yb3{bottom:491.557480px;}
.y9a{bottom:493.865662px;}
.y101{bottom:499.211448px;}
.y12{bottom:504.772485px;}
.y83{bottom:505.177254px;}
.y42{bottom:505.178868px;}
.yda{bottom:506.474972px;}
.y99{bottom:511.793884px;}
.y100{bottom:515.641479px;}
.y11{bottom:521.215997px;}
.y82{bottom:523.118900px;}
.y41{bottom:523.119961px;}
.yd9{bottom:524.403168px;}
.y98{bottom:529.735519px;}
.yff{bottom:532.084153px;}
.y10{bottom:537.659463px;}
.y81{bottom:541.047096px;}
.y40{bottom:541.048157px;}
.yfe{bottom:548.527633px;}
.yf{bottom:554.089517px;}
.yd8{bottom:558.449982px;}
.y80{bottom:558.988742px;}
.y3f{bottom:558.989803px;}
.yfd{bottom:564.956056px;}
.y7f{bottom:576.916938px;}
.y3e{bottom:576.917629px;}
.y97{bottom:577.228500px;}
.yfc{bottom:581.399537px;}
.y7e{bottom:594.845135px;}
.y3d{bottom:594.845826px;}
.yfb{bottom:597.843018px;}
.yd7{bottom:602.646494px;}
.ye{bottom:606.415521px;}
.y7d{bottom:612.786781px;}
.y3c{bottom:612.787472px;}
.yfa{bottom:614.271531px;}
.yb2{bottom:617.080490px;}
.yd6{bottom:620.574691px;}
.yd{bottom:629.230646px;}
.y7c{bottom:630.714977px;}
.yf9{bottom:630.715012px;}
.y3b{bottom:630.715283px;}
.yb1{bottom:635.008667px;}
.yd5{bottom:638.502887px;}
.yc{bottom:640.786523px;}
.yf8{bottom:647.158492px;}
.y7b{bottom:648.643173px;}
.y3a{bottom:648.643479px;}
.yd4{bottom:656.444533px;}
.yb{bottom:662.116525px;}
.y39{bottom:666.584605px;}
.y7a{bottom:666.584819px;}
.ya{bottom:673.672677px;}
.yd3{bottom:674.372729px;}
.yb0{bottom:680.733170px;}
.yf7{bottom:681.529496px;}
.y38{bottom:684.512802px;}
.y79{bottom:684.513016px;}
.yd2{bottom:692.300926px;}
.y9{bottom:694.988992px;}
.y78{bottom:702.440862px;}
.y37{bottom:702.440998px;}
.y62{bottom:706.706635px;}
.yd1{bottom:710.242571px;}
.y8{bottom:711.432138px;}
.y36{bottom:720.382137px;}
.y77{bottom:720.382507px;}
.y7{bottom:722.988153px;}
.y61{bottom:724.648270px;}
.yd0{bottom:728.170768px;}
.yf6{bottom:729.346009px;}
.y35{bottom:738.310333px;}
.y60{bottom:742.575485px;}
.y6{bottom:744.304502px;}
.yf5{bottom:745.789489px;}
.ycf{bottom:746.098964px;}
.y34{bottom:756.238530px;}
.y5f{bottom:760.503662px;}
.yce{bottom:764.040610px;}
.y5{bottom:769.468355px;}
.y33{bottom:774.179588px;}
.y76{bottom:774.180175px;}
.y5e{bottom:778.445343px;}
.ycd{bottom:781.968807px;}
.y4{bottom:787.396554px;}
.y75{bottom:792.107635px;}
.y32{bottom:792.107784px;}
.y5d{bottom:796.373474px;}
.ycc{bottom:799.897003px;}
.y31{bottom:810.035676px;}
.y74{bottom:810.035832px;}
.yf4{bottom:813.032433px;}
.y5c{bottom:814.301697px;}
.ycb{bottom:817.838649px;}
.y30{bottom:827.977322px;}
.y73{bottom:827.977478px;}
.yf3{bottom:829.462464px;}
.y5b{bottom:832.243378px;}
.yca{bottom:835.766845px;}
.y2f{bottom:845.905269px;}
.y3{bottom:845.931951px;}
.y5a{bottom:850.171509px;}
.yc9{bottom:853.695042px;}
.yf2{bottom:863.833344px;}
.y2e{bottom:863.833466px;}
.y59{bottom:868.113190px;}
.yc8{bottom:871.636687px;}
.y2{bottom:872.824623px;}
.y96{bottom:881.774963px;}
.y72{bottom:881.774990px;}
.y2d{bottom:899.703186px;}
.y1{bottom:899.730200px;}
.y2c{bottom:934.519684px;}
.h5{height:33.027319px;}
.h8{height:36.938287px;}
.h7{height:39.111437px;}
.h19{height:39.113543px;}
.h17{height:41.364714px;}
.h6{height:43.395975px;}
.ha{height:43.456860px;}
.h18{height:43.457501px;}
.hb{height:43.457856px;}
.hc{height:43.458079px;}
.h12{height:43.458265px;}
.h10{height:43.458340px;}
.hf{height:43.458402px;}
.h15{height:43.458810px;}
.he{height:43.458889px;}
.h11{height:43.459072px;}
.h14{height:43.459075px;}
.hd{height:43.459211px;}
.h13{height:43.460604px;}
.h16{height:43.460888px;}
.h9{height:49.637575px;}
.h4{height:54.735801px;}
.h2{height:59.565422px;}
.h3{height:78.009151px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.xe{left:59.103000px;}
.x19{left:65.825998px;}
.x14{left:77.031000px;}
.xd{left:80.365494px;}
.xf{left:81.512999px;}
.x1a{left:83.389498px;}
.x15{left:94.973992px;}
.x12{left:98.293499px;}
.x9{left:101.169022px;}
.x13{left:102.775497px;}
.x5{left:107.069595px;}
.x8{left:117.882019px;}
.x2{left:123.037994px;}
.xb{left:126.548996px;}
.x7{left:146.056503px;}
.x1{left:155.304016px;}
.x4{left:164.011505px;}
.x18{left:169.505997px;}
.x6{left:173.272522px;}
.x17{left:204.565498px;}
.x11{left:215.419510px;}
.xc{left:238.855499px;}
.x16{left:243.945007px;}
.xa{left:255.001511px;}
.x3{left:256.216621px;}
.x10{left:393.470993px;}
@media print{
.v4{vertical-align:-19.295858pt;}
.v5{vertical-align:-17.375936pt;}
.v2{vertical-align:-2.594401pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.594076pt;}
.v1{vertical-align:19.295858pt;}
.ls15{letter-spacing:-4.803301pt;}
.ls12{letter-spacing:-0.021254pt;}
.ls9{letter-spacing:-0.015940pt;}
.lsa{letter-spacing:-0.010627pt;}
.lsf{letter-spacing:-0.009033pt;}
.ls6{letter-spacing:-0.007651pt;}
.lsb{letter-spacing:-0.005313pt;}
.lsd{letter-spacing:-0.004782pt;}
.lse{letter-spacing:-0.004516pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.004782pt;}
.ls10{letter-spacing:0.005313pt;}
.ls16{letter-spacing:0.006376pt;}
.ls8{letter-spacing:0.010627pt;}
.ls11{letter-spacing:0.015940pt;}
.ls5{letter-spacing:0.474650pt;}
.ls0{letter-spacing:2.632835pt;}
.ls3{letter-spacing:2.705063pt;}
.ls1{letter-spacing:2.752996pt;}
.ls2{letter-spacing:2.753057pt;}
.ls4{letter-spacing:2.801132pt;}
.ls13{letter-spacing:37.177066pt;}
.ls14{letter-spacing:37.177067pt;}
.ws1{word-spacing:-0.058554pt;}
.ws5{word-spacing:-0.053134pt;}
.ws8{word-spacing:-0.043039pt;}
.ws0{word-spacing:-0.040382pt;}
.ws2{word-spacing:-0.036131pt;}
.ws6{word-spacing:-0.031880pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:11.859558pt;}
.ws4{word-spacing:11.902597pt;}
._1{margin-left:-5.669618pt;}
._1f{margin-left:-4.739954pt;}
._f{margin-left:-3.739479pt;}
._1c{margin-left:-2.805471pt;}
._2{margin-left:-1.882221pt;}
._3{margin-left:-0.951096pt;}
._5{width:2.292031pt;}
._17{width:4.250709pt;}
._19{width:5.361207pt;}
._d{width:6.957926pt;}
._c{width:8.366722pt;}
._b{width:9.818555pt;}
._a{width:10.878286pt;}
._8{width:11.938936pt;}
._4{width:13.267526pt;}
._6{width:14.162108pt;}
._e{width:15.098466pt;}
._11{width:16.354713pt;}
._10{width:17.559798pt;}
._0{width:19.128267pt;}
._14{width:20.196108pt;}
._7{width:21.233058pt;}
._1d{width:22.230477pt;}
._22{width:23.134452pt;}
._20{width:25.291720pt;}
._9{width:26.578725pt;}
._21{width:27.469229pt;}
._1a{width:28.532890pt;}
._16{width:29.972812pt;}
._1e{width:31.147713pt;}
._23{width:36.311305pt;}
._1b{width:37.225060pt;}
._18{width:38.957751pt;}
._25{width:41.167008pt;}
._24{width:43.099778pt;}
._15{width:44.303016pt;}
._13{width:53.125277pt;}
._12{width:149.659980pt;}
.fs6{font-size:39.850667pt;}
.fs2{font-size:40.381867pt;}
.fs5{font-size:45.163732pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133865pt;}
.fs3{font-size:58.553599pt;}
.fs7{font-size:63.760533pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:43.927987pt;}
.y2a{bottom:57.212248pt;}
.y29{bottom:70.496020pt;}
.yf1{bottom:83.575168pt;}
.y71{bottom:83.575521pt;}
.y95{bottom:87.607351pt;}
.yaf{bottom:88.039653pt;}
.y119{bottom:93.055100pt;}
.yc7{bottom:94.110697pt;}
.y58{bottom:98.371480pt;}
.yf0{bottom:99.511342pt;}
.y70{bottom:99.511698pt;}
.y94{bottom:103.543525pt;}
.yae{bottom:103.975830pt;}
.y118{bottom:107.671528pt;}
.yc6{bottom:110.046865pt;}
.y28{bottom:113.336027pt;}
.y57{bottom:114.307654pt;}
.yef{bottom:115.447517pt;}
.y6f{bottom:115.447866pt;}
.y93{bottom:119.491655pt;}
.yad{bottom:119.923960pt;}
.y117{bottom:122.276000pt;}
.yc5{bottom:125.983042pt;}
.y27{bottom:127.951994pt;}
.y56{bottom:130.243829pt;}
.yee{bottom:131.395647pt;}
.y6e{bottom:131.395996pt;}
.y92{bottom:135.427829pt;}
.yac{bottom:135.860138pt;}
.y116{bottom:136.889913pt;}
.yc4{bottom:141.931173pt;}
.y55{bottom:146.191959pt;}
.yed{bottom:147.331821pt;}
.y91{bottom:151.364004pt;}
.y115{bottom:151.506340pt;}
.y6d{bottom:155.299693pt;}
.y26{bottom:156.441780pt;}
.yc3{bottom:157.867350pt;}
.yab{bottom:159.907786pt;}
.y54{bottom:162.127700pt;}
.yec{bottom:163.279951pt;}
.y114{bottom:166.110813pt;}
.y25{bottom:171.058195pt;}
.y6c{bottom:171.247823pt;}
.yc2{bottom:173.803528pt;}
.y90{bottom:175.411346pt;}
.yaa{bottom:175.843953pt;}
.y53{bottom:178.063874pt;}
.yeb{bottom:179.216125pt;}
.y113{bottom:180.727240pt;}
.y24{bottom:185.674609pt;}
.y6b{bottom:187.184000pt;}
.yc1{bottom:189.751648pt;}
.y8f{bottom:191.347521pt;}
.ya9{bottom:191.780131pt;}
.y52{bottom:194.012004pt;}
.yea{bottom:195.150743pt;}
.y112{bottom:195.343668pt;}
.y23{bottom:200.279101pt;}
.y6a{bottom:202.171875pt;}
.yc0{bottom:205.687826pt;}
.y8e{bottom:207.295651pt;}
.ya8{bottom:207.727356pt;}
.y51{bottom:209.947395pt;}
.y111{bottom:209.948140pt;}
.ye9{bottom:211.098873pt;}
.y22{bottom:214.895516pt;}
.y69{bottom:218.119995pt;}
.ybf{bottom:221.624003pt;}
.y8d{bottom:223.231825pt;}
.ya7{bottom:223.663534pt;}
.y110{bottom:224.563096pt;}
.y50{bottom:225.895525pt;}
.ye8{bottom:227.035048pt;}
.y21{bottom:229.511971pt;}
.y68{bottom:233.107829pt;}
.ybe{bottom:237.114441pt;}
.y10f{bottom:239.167568pt;}
.y8c{bottom:239.168000pt;}
.ya6{bottom:239.599711pt;}
.y4f{bottom:241.831700pt;}
.ye7{bottom:242.971222pt;}
.y20{bottom:244.116422pt;}
.y67{bottom:249.044006pt;}
.ybd{bottom:253.062581pt;}
.y10e{bottom:253.783996pt;}
.y8b{bottom:255.116129pt;}
.ya5{bottom:255.547831pt;}
.y4e{bottom:257.767874pt;}
.y1f{bottom:258.732877pt;}
.ye6{bottom:258.919352pt;}
.y10d{bottom:268.399237pt;}
.ybc{bottom:268.998739pt;}
.ya4{bottom:271.484009pt;}
.y66{bottom:272.011963pt;}
.y1e{bottom:273.349292pt;}
.y4d{bottom:273.715512pt;}
.ye5{bottom:274.855527pt;}
.y8a{bottom:281.684000pt;}
.y10c{bottom:283.003710pt;}
.ybb{bottom:284.934916pt;}
.ya3{bottom:287.419067pt;}
.y65{bottom:287.947998pt;}
.y1d{bottom:287.953784pt;}
.y4c{bottom:289.651686pt;}
.ye4{bottom:290.791701pt;}
.y10b{bottom:297.620137pt;}
.yba{bottom:300.883057pt;}
.y1c{bottom:302.570198pt;}
.ya2{bottom:303.367208pt;}
.y4b{bottom:305.587861pt;}
.ye3{bottom:306.739831pt;}
.y64{bottom:310.723999pt;}
.y10a{bottom:312.235114pt;}
.yb9{bottom:316.819234pt;}
.y1b{bottom:317.186613pt;}
.ya1{bottom:319.303365pt;}
.y89{bottom:321.535028pt;}
.y4a{bottom:321.535159pt;}
.ye2{bottom:322.676005pt;}
.y109{bottom:326.839586pt;}
.y1a{bottom:331.791105pt;}
.yb8{bottom:332.755391pt;}
.ya0{bottom:335.251506pt;}
.y88{bottom:337.471202pt;}
.y49{bottom:337.471333pt;}
.ye1{bottom:338.610887pt;}
.y108{bottom:341.456014pt;}
.y19{bottom:346.407519pt;}
.yb7{bottom:348.703532pt;}
.y9f{bottom:351.187663pt;}
.y87{bottom:353.407377pt;}
.y48{bottom:353.407508pt;}
.ye0{bottom:354.559017pt;}
.y107{bottom:356.071513pt;}
.y18{bottom:361.023974pt;}
.yb6{bottom:364.639689pt;}
.y9e{bottom:367.123861pt;}
.y63{bottom:369.272013pt;}
.y86{bottom:369.355507pt;}
.y47{bottom:369.355638pt;}
.ydf{bottom:370.495192pt;}
.y106{bottom:370.675985pt;}
.y17{bottom:375.628426pt;}
.yb5{bottom:380.575887pt;}
.y9d{bottom:383.071981pt;}
.y85{bottom:385.291681pt;}
.y46{bottom:385.291812pt;}
.y105{bottom:385.292115pt;}
.yde{bottom:386.431366pt;}
.y16{bottom:390.244840pt;}
.yb4{bottom:396.524007pt;}
.y104{bottom:399.907532pt;}
.y84{bottom:401.227856pt;}
.y45{bottom:401.227987pt;}
.ydd{bottom:402.379496pt;}
.y15{bottom:404.861295pt;}
.y9c{bottom:407.107422pt;}
.y103{bottom:414.512004pt;}
.y44{bottom:417.175985pt;}
.ydc{bottom:418.315671pt;}
.y14{bottom:419.465747pt;}
.y9b{bottom:423.055542pt;}
.y102{bottom:429.127081pt;}
.y43{bottom:433.111708pt;}
.y13{bottom:434.082202pt;}
.ydb{bottom:434.251845pt;}
.yb3{bottom:436.939982pt;}
.y9a{bottom:438.991699pt;}
.y101{bottom:443.743509pt;}
.y12{bottom:448.686653pt;}
.y83{bottom:449.046448pt;}
.y42{bottom:449.047882pt;}
.yda{bottom:450.199975pt;}
.y99{bottom:454.927897pt;}
.y100{bottom:458.347981pt;}
.y11{bottom:463.303109pt;}
.y82{bottom:464.994578pt;}
.y41{bottom:464.995521pt;}
.yd9{bottom:466.136149pt;}
.y98{bottom:470.876017pt;}
.yff{bottom:472.963691pt;}
.y10{bottom:477.919523pt;}
.y81{bottom:480.930752pt;}
.y40{bottom:480.931695pt;}
.yfe{bottom:487.580119pt;}
.yf{bottom:492.524015pt;}
.yd8{bottom:496.399984pt;}
.y80{bottom:496.878882pt;}
.y3f{bottom:496.879825pt;}
.yfd{bottom:502.183161pt;}
.y7f{bottom:512.815056pt;}
.y3e{bottom:512.815671pt;}
.y97{bottom:513.092000pt;}
.yfc{bottom:516.799588pt;}
.y7e{bottom:528.751231pt;}
.y3d{bottom:528.751845pt;}
.yfb{bottom:531.416016pt;}
.yd7{bottom:535.685773pt;}
.ye{bottom:539.036019pt;}
.y7d{bottom:544.699361pt;}
.y3c{bottom:544.699975pt;}
.yfa{bottom:546.019138pt;}
.yb2{bottom:548.515991pt;}
.yd6{bottom:551.621947pt;}
.yd{bottom:559.316129pt;}
.y7c{bottom:560.635535pt;}
.yf9{bottom:560.635566pt;}
.y3b{bottom:560.635807pt;}
.yb1{bottom:564.452148pt;}
.yd5{bottom:567.558122pt;}
.yc{bottom:569.588021pt;}
.yf8{bottom:575.251993pt;}
.y7b{bottom:576.571710pt;}
.y3a{bottom:576.571981pt;}
.yd4{bottom:583.506251pt;}
.yb{bottom:588.548022pt;}
.y39{bottom:592.519649pt;}
.y7a{bottom:592.519839pt;}
.ya{bottom:598.820158pt;}
.yd3{bottom:599.442426pt;}
.yb0{bottom:605.096151pt;}
.yf7{bottom:605.803996pt;}
.y38{bottom:608.455824pt;}
.y79{bottom:608.456014pt;}
.yd2{bottom:615.378601pt;}
.y9{bottom:617.767993pt;}
.y78{bottom:624.391877pt;}
.y37{bottom:624.391998pt;}
.y62{bottom:628.183675pt;}
.yd1{bottom:631.326730pt;}
.y8{bottom:632.384123pt;}
.y36{bottom:640.339677pt;}
.y77{bottom:640.340007pt;}
.y7{bottom:642.656136pt;}
.y61{bottom:644.131795pt;}
.yd0{bottom:647.262905pt;}
.yf6{bottom:648.307563pt;}
.y35{bottom:656.275852pt;}
.y60{bottom:660.067098pt;}
.y6{bottom:661.604002pt;}
.yf5{bottom:662.923991pt;}
.ycf{bottom:663.199079pt;}
.y34{bottom:672.212026pt;}
.y5f{bottom:676.003255pt;}
.yce{bottom:679.147209pt;}
.y5{bottom:683.971871pt;}
.y33{bottom:688.159634pt;}
.y76{bottom:688.160156pt;}
.y5e{bottom:691.951416pt;}
.ycd{bottom:695.083384pt;}
.y4{bottom:699.908048pt;}
.y75{bottom:704.095676pt;}
.y32{bottom:704.095808pt;}
.y5d{bottom:707.887533pt;}
.ycc{bottom:711.019558pt;}
.y31{bottom:720.031712pt;}
.y74{bottom:720.031850pt;}
.yf4{bottom:722.695496pt;}
.y5c{bottom:723.823730pt;}
.ycb{bottom:726.967688pt;}
.y30{bottom:735.979841pt;}
.y73{bottom:735.979980pt;}
.yf3{bottom:737.299968pt;}
.y5b{bottom:739.771891pt;}
.yca{bottom:742.903862pt;}
.y2f{bottom:751.915795pt;}
.y3{bottom:751.939512pt;}
.y5a{bottom:755.708008pt;}
.yc9{bottom:758.840037pt;}
.yf2{bottom:767.851861pt;}
.y2e{bottom:767.851969pt;}
.y59{bottom:771.656169pt;}
.yc8{bottom:774.788167pt;}
.y2{bottom:775.844109pt;}
.y96{bottom:783.799967pt;}
.y72{bottom:783.799991pt;}
.y2d{bottom:799.736165pt;}
.y1{bottom:799.760178pt;}
.y2c{bottom:830.684164pt;}
.h5{height:29.357617pt;}
.h8{height:32.834033pt;}
.h7{height:34.765722pt;}
.h19{height:34.767594pt;}
.h17{height:36.768635pt;}
.h6{height:38.574200pt;}
.ha{height:38.628320pt;}
.h18{height:38.628890pt;}
.hb{height:38.629205pt;}
.hc{height:38.629404pt;}
.h12{height:38.629569pt;}
.h10{height:38.629635pt;}
.hf{height:38.629690pt;}
.h15{height:38.630054pt;}
.he{height:38.630123pt;}
.h11{height:38.630286pt;}
.h14{height:38.630289pt;}
.hd{height:38.630410pt;}
.h13{height:38.631648pt;}
.h16{height:38.631901pt;}
.h9{height:44.122289pt;}
.h4{height:48.654045pt;}
.h2{height:52.947042pt;}
.h3{height:69.341468pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.xe{left:52.536000pt;}
.x19{left:58.511998pt;}
.x14{left:68.472000pt;}
.xd{left:71.435994pt;}
.xf{left:72.455999pt;}
.x1a{left:74.123998pt;}
.x15{left:84.421327pt;}
.x12{left:87.371999pt;}
.x9{left:89.928019pt;}
.x13{left:91.355998pt;}
.x5{left:95.172974pt;}
.x8{left:104.784017pt;}
.x2{left:109.367106pt;}
.xb{left:112.487996pt;}
.x7{left:129.828003pt;}
.x1{left:138.048014pt;}
.x4{left:145.788005pt;}
.x18{left:150.671997pt;}
.x6{left:154.020020pt;}
.x17{left:181.835999pt;}
.x11{left:191.484009pt;}
.xc{left:212.315999pt;}
.x16{left:216.840007pt;}
.xa{left:226.668009pt;}
.x3{left:227.748108pt;}
.x10{left:349.751994pt;}
}




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