
    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_9bc3342893a582dade86d548.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_0303ddd79c6c575429126d3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_9509c5e773a0b5c67a61ef69.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.206000;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_0f86dabadb68ca105f2fc904.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_ebf76edd4d67a28821e51cc0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.994000;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_0aa2288016de248dacab6080.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196000;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;}
.m2{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m1{transform:matrix(0.250000,0.000275,-0.000275,0.250000,0,0);-ms-transform:matrix(0.250000,0.000275,-0.000275,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000275,-0.000275,0.250000,0,0);}
.m4{transform:matrix(0.250000,0.000250,-0.000275,0.250000,0,0);-ms-transform:matrix(0.250000,0.000250,-0.000275,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000250,-0.000275,0.250000,0,0);}
.m3{transform:matrix(0.250000,0.000250,-0.000250,0.250000,0,0);-ms-transform:matrix(0.250000,0.000250,-0.000250,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000250,-0.000250,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:351.521400px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.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;}
}
.ws3{word-spacing:-14.415012px;}
.ws5{word-spacing:-14.100000px;}
.ws0{word-spacing:-0.720000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:2497.855200px;}
.ws6{word-spacing:2563.265400px;}
.ws4{word-spacing:2595.064200px;}
._f{margin-left:-21.960000px;}
._6{margin-left:-14.220000px;}
._e{margin-left:-13.140000px;}
._a{margin-left:-4.020000px;}
._3{margin-left:-2.940000px;}
._2{margin-left:-1.440000px;}
._7{width:1.200000px;}
._1{width:2.400000px;}
._0{width:3.480000px;}
._5{width:5.040000px;}
._8{width:6.780000px;}
._9{width:8.040000px;}
._b{width:9.600000px;}
._c{width:10.860000px;}
._d{width:12.180000px;}
._4{width:13.380000px;}
._10{width:16.140000px;}
._12{width:17.820000px;}
._11{width:25.560000px;}
.fc5{color:rgb(85,111,144);}
.fc4{color:transparent;}
.fc6{color:rgb(228,172,18);}
.fc2{color:rgb(157,11,55);}
.fc1{color:rgb(233,190,195);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:61.340479px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.fs3{font-size:108.000065px;}
.fsb{font-size:144.000000px;}
.fsa{font-size:144.000072px;}
.fs2{font-size:144.000087px;}
.fs1{font-size:720.000000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:74.697150px;}
.y111{bottom:75.294150px;}
.y5f{bottom:89.941050px;}
.yb1{bottom:90.301200px;}
.ybf{bottom:90.376200px;}
.y82{bottom:90.629400px;}
.y8c{bottom:90.659400px;}
.y6b{bottom:90.661050px;}
.y45{bottom:90.752400px;}
.y14{bottom:90.752550px;}
.y10b{bottom:92.697150px;}
.y5e{bottom:109.441050px;}
.yb0{bottom:109.801200px;}
.ybe{bottom:109.876200px;}
.y81{bottom:110.129400px;}
.y8b{bottom:110.159400px;}
.y6a{bottom:110.161050px;}
.y44{bottom:110.252400px;}
.y13{bottom:110.252550px;}
.y5d{bottom:128.941050px;}
.yaf{bottom:129.301200px;}
.ybd{bottom:129.376200px;}
.y80{bottom:129.629400px;}
.y8a{bottom:129.659400px;}
.y69{bottom:129.661050px;}
.y43{bottom:129.752400px;}
.y12{bottom:129.752550px;}
.y5c{bottom:148.441050px;}
.yae{bottom:148.801200px;}
.ybc{bottom:148.876200px;}
.y7f{bottom:149.129400px;}
.y89{bottom:149.159400px;}
.y68{bottom:149.161050px;}
.y42{bottom:149.252400px;}
.y11{bottom:149.252550px;}
.y4a{bottom:160.248600px;}
.y5b{bottom:167.941050px;}
.yad{bottom:168.301200px;}
.ybb{bottom:168.376200px;}
.y7e{bottom:168.629400px;}
.y88{bottom:168.659400px;}
.y67{bottom:168.661050px;}
.y41{bottom:168.752400px;}
.y10{bottom:168.752550px;}
.y5a{bottom:187.441050px;}
.yac{bottom:187.801200px;}
.yba{bottom:187.876200px;}
.y7d{bottom:188.129400px;}
.y87{bottom:188.159400px;}
.y66{bottom:188.161050px;}
.y40{bottom:188.252400px;}
.yf{bottom:188.252550px;}
.y59{bottom:206.941050px;}
.yab{bottom:207.301200px;}
.yb9{bottom:207.376200px;}
.y7c{bottom:207.630300px;}
.y86{bottom:207.659400px;}
.y65{bottom:207.661050px;}
.y3f{bottom:207.752400px;}
.ye{bottom:207.752550px;}
.y58{bottom:226.441050px;}
.yaa{bottom:226.801200px;}
.yb8{bottom:226.876200px;}
.y7b{bottom:227.130300px;}
.y85{bottom:227.159400px;}
.y64{bottom:227.161050px;}
.y3e{bottom:227.252400px;}
.yd{bottom:227.252550px;}
.y57{bottom:245.941050px;}
.ya9{bottom:246.301200px;}
.yb7{bottom:246.376200px;}
.y7a{bottom:246.630300px;}
.y84{bottom:246.659400px;}
.y63{bottom:246.661050px;}
.y3d{bottom:246.752400px;}
.yc{bottom:246.752550px;}
.y56{bottom:265.441050px;}
.ya8{bottom:265.801200px;}
.yb6{bottom:265.876200px;}
.y79{bottom:266.130300px;}
.y83{bottom:266.159400px;}
.y62{bottom:266.161050px;}
.y3c{bottom:266.252400px;}
.yb{bottom:266.252550px;}
.y55{bottom:284.941050px;}
.ya7{bottom:285.301200px;}
.yb5{bottom:285.376200px;}
.y61{bottom:285.661050px;}
.y3b{bottom:285.752400px;}
.ya{bottom:285.752550px;}
.y54{bottom:304.441050px;}
.ye5{bottom:304.801200px;}
.yd6{bottom:304.876200px;}
.y60{bottom:305.161050px;}
.y3a{bottom:305.252400px;}
.y9{bottom:305.252550px;}
.ye4{bottom:324.301200px;}
.yd5{bottom:324.376200px;}
.y39{bottom:324.752400px;}
.y8{bottom:324.752550px;}
.yda{bottom:328.327200px;}
.ye3{bottom:343.801200px;}
.yd4{bottom:343.876200px;}
.y38{bottom:344.252400px;}
.y7{bottom:344.252550px;}
.ye2{bottom:363.301200px;}
.yd3{bottom:363.376200px;}
.y37{bottom:363.752400px;}
.y6{bottom:363.752550px;}
.yfa{bottom:378.559050px;}
.ye1{bottom:382.801200px;}
.yd2{bottom:382.876200px;}
.y36{bottom:383.252400px;}
.y28{bottom:383.252550px;}
.yf9{bottom:396.559050px;}
.ye0{bottom:402.301200px;}
.yd1{bottom:402.376200px;}
.y35{bottom:402.752400px;}
.y27{bottom:402.752550px;}
.y2f{bottom:404.057700px;}
.ydf{bottom:421.801200px;}
.yd0{bottom:421.876200px;}
.y34{bottom:422.252400px;}
.y26{bottom:422.252550px;}
.yde{bottom:441.301200px;}
.ycf{bottom:441.376200px;}
.y25{bottom:441.752550px;}
.y110{bottom:443.610150px;}
.yf2{bottom:460.801200px;}
.yce{bottom:460.876200px;}
.y24{bottom:461.252550px;}
.y10f{bottom:461.610150px;}
.yf1{bottom:480.301200px;}
.ycd{bottom:480.376200px;}
.y23{bottom:480.752550px;}
.yf0{bottom:499.801200px;}
.ycc{bottom:499.876200px;}
.y22{bottom:500.252550px;}
.yf8{bottom:500.721900px;}
.yef{bottom:519.301200px;}
.ycb{bottom:519.376200px;}
.y21{bottom:519.752550px;}
.yf7{bottom:530.714400px;}
.yee{bottom:538.801200px;}
.yca{bottom:538.876200px;}
.y20{bottom:539.252550px;}
.yed{bottom:558.301200px;}
.yc9{bottom:558.376200px;}
.y1f{bottom:558.752550px;}
.yf6{bottom:560.706900px;}
.yec{bottom:577.801200px;}
.yc8{bottom:577.876200px;}
.y1e{bottom:578.252550px;}
.yf5{bottom:590.699400px;}
.y4e{bottom:593.471850px;}
.yeb{bottom:597.301200px;}
.yc7{bottom:597.376200px;}
.y1d{bottom:597.752550px;}
.yea{bottom:616.801200px;}
.yc6{bottom:616.876200px;}
.y1c{bottom:617.252550px;}
.yf4{bottom:620.691900px;}
.y4d{bottom:623.471850px;}
.ye9{bottom:636.301200px;}
.yc5{bottom:636.376200px;}
.y1b{bottom:636.752550px;}
.yf3{bottom:650.684400px;}
.y4c{bottom:653.471850px;}
.ye8{bottom:655.801200px;}
.yc4{bottom:655.876200px;}
.y1a{bottom:656.252550px;}
.y108{bottom:656.427450px;}
.ye7{bottom:675.301200px;}
.yc3{bottom:675.376200px;}
.y19{bottom:675.752550px;}
.y107{bottom:675.927450px;}
.y4b{bottom:683.471850px;}
.ye6{bottom:694.801200px;}
.yc2{bottom:694.876200px;}
.y18{bottom:695.252550px;}
.y106{bottom:695.427450px;}
.ydd{bottom:714.301200px;}
.yc1{bottom:714.376200px;}
.y17{bottom:714.752550px;}
.y105{bottom:714.927450px;}
.ydc{bottom:733.801200px;}
.yc0{bottom:733.876200px;}
.y16{bottom:734.252550px;}
.y104{bottom:734.427450px;}
.ya6{bottom:753.301200px;}
.yb4{bottom:753.376200px;}
.y15{bottom:753.752550px;}
.y103{bottom:753.927450px;}
.ya5{bottom:772.801200px;}
.yb3{bottom:772.876200px;}
.y5{bottom:773.252550px;}
.y102{bottom:773.427450px;}
.y53{bottom:791.941050px;}
.y93{bottom:792.299400px;}
.ya4{bottom:792.301200px;}
.yb2{bottom:792.376200px;}
.y9b{bottom:792.443400px;}
.y78{bottom:792.630300px;}
.y49{bottom:792.752400px;}
.y4{bottom:792.752550px;}
.y101{bottom:792.927450px;}
.y6e{bottom:804.840750px;}
.y52{bottom:811.441050px;}
.y92{bottom:811.799400px;}
.ya3{bottom:811.801200px;}
.y77{bottom:812.130300px;}
.y48{bottom:812.252400px;}
.y3{bottom:812.252550px;}
.y100{bottom:812.427450px;}
.y9a{bottom:822.435900px;}
.y10e{bottom:823.386150px;}
.y51{bottom:830.941050px;}
.y91{bottom:831.299400px;}
.ya2{bottom:831.301200px;}
.y76{bottom:831.630300px;}
.y47{bottom:831.752400px;}
.y2{bottom:831.752550px;}
.yff{bottom:831.927450px;}
.y6d{bottom:834.833250px;}
.y10d{bottom:841.386150px;}
.yd9{bottom:843.691200px;}
.y50{bottom:850.441050px;}
.y90{bottom:850.799400px;}
.ya1{bottom:850.801200px;}
.y75{bottom:851.130300px;}
.y46{bottom:851.252400px;}
.y1{bottom:851.252550px;}
.yfe{bottom:851.427450px;}
.y99{bottom:852.428400px;}
.y6c{bottom:864.825750px;}
.y4f{bottom:869.941050px;}
.y8f{bottom:870.299400px;}
.ya0{bottom:870.301200px;}
.y74{bottom:870.630300px;}
.yfd{bottom:870.927450px;}
.yd8{bottom:873.683700px;}
.y98{bottom:882.420900px;}
.y8e{bottom:889.799400px;}
.y9f{bottom:889.801200px;}
.y73{bottom:890.130300px;}
.yfc{bottom:890.427450px;}
.yd7{bottom:903.676200px;}
.y2c{bottom:908.080950px;}
.y8d{bottom:909.299400px;}
.y9e{bottom:909.301200px;}
.yfb{bottom:909.927450px;}
.y33{bottom:910.266450px;}
.y97{bottom:912.413400px;}
.y71{bottom:932.336550px;}
.y96{bottom:942.405900px;}
.y2b{bottom:950.068950px;}
.y32{bottom:952.278450px;}
.y10a{bottom:969.765900px;}
.y9d{bottom:969.814350px;}
.ydb{bottom:969.873600px;}
.y95{bottom:972.398400px;}
.y70{bottom:974.348550px;}
.y2a{bottom:992.080950px;}
.y31{bottom:994.290450px;}
.y94{bottom:1002.390900px;}
.y109{bottom:1011.777900px;}
.y9c{bottom:1011.826350px;}
.y6f{bottom:1016.360550px;}
.y30{bottom:1036.302450px;}
.y29{bottom:1106.299950px;}
.y2e{bottom:1180.550400px;}
.y2d{bottom:1194.078600px;}
.y72{bottom:1194.180300px;}
.h7{height:29.400000px;}
.h8{height:36.240000px;}
.h2{height:56.640000px;}
.h9{height:57.905412px;}
.h6{height:57.960000px;}
.ha{height:67.968000px;}
.he{height:69.552000px;}
.hc{height:85.950000px;}
.hb{height:91.680000px;}
.h5{height:104.328063px;}
.hf{height:139.104000px;}
.hd{height:139.104070px;}
.h4{height:139.104084px;}
.h3{height:547.200000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa{left:-468.585000px;}
.x0{left:0.000000px;}
.x8{left:39.213450px;}
.x1{left:85.039350px;}
.x2{left:100.054350px;}
.x9{left:152.626350px;}
.xb{left:187.124700px;}
.xc{left:241.217700px;}
.x3{left:334.999350px;}
.x10{left:337.953750px;}
.x4{left:349.999350px;}
.x11{left:352.953750px;}
.xd{left:418.501800px;}
.x7{left:424.329000px;}
.xe{left:477.173100px;}
.x12{left:528.612900px;}
.x5{left:584.899350px;}
.x6{left:599.899350px;}
.xf{left:644.933100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:312.463467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ws3{word-spacing:-12.813344pt;}
.ws5{word-spacing:-12.533333pt;}
.ws0{word-spacing:-0.640000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:2220.315733pt;}
.ws6{word-spacing:2278.458133pt;}
.ws4{word-spacing:2306.723733pt;}
._f{margin-left:-19.520000pt;}
._6{margin-left:-12.640000pt;}
._e{margin-left:-11.680000pt;}
._a{margin-left:-3.573333pt;}
._3{margin-left:-2.613333pt;}
._2{margin-left:-1.280000pt;}
._7{width:1.066667pt;}
._1{width:2.133333pt;}
._0{width:3.093333pt;}
._5{width:4.480000pt;}
._8{width:6.026667pt;}
._9{width:7.146667pt;}
._b{width:8.533333pt;}
._c{width:9.653333pt;}
._d{width:10.826667pt;}
._4{width:11.893333pt;}
._10{width:14.346667pt;}
._12{width:15.840000pt;}
._11{width:22.720000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:54.524870pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.fs3{font-size:96.000058pt;}
.fsb{font-size:128.000000pt;}
.fsa{font-size:128.000064pt;}
.fs2{font-size:128.000077pt;}
.fs1{font-size:640.000000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:66.397467pt;}
.y111{bottom:66.928133pt;}
.y5f{bottom:79.947600pt;}
.yb1{bottom:80.267733pt;}
.ybf{bottom:80.334400pt;}
.y82{bottom:80.559467pt;}
.y8c{bottom:80.586133pt;}
.y6b{bottom:80.587600pt;}
.y45{bottom:80.668800pt;}
.y14{bottom:80.668933pt;}
.y10b{bottom:82.397467pt;}
.y5e{bottom:97.280933pt;}
.yb0{bottom:97.601067pt;}
.ybe{bottom:97.667733pt;}
.y81{bottom:97.892800pt;}
.y8b{bottom:97.919467pt;}
.y6a{bottom:97.920933pt;}
.y44{bottom:98.002133pt;}
.y13{bottom:98.002267pt;}
.y5d{bottom:114.614267pt;}
.yaf{bottom:114.934400pt;}
.ybd{bottom:115.001067pt;}
.y80{bottom:115.226133pt;}
.y8a{bottom:115.252800pt;}
.y69{bottom:115.254267pt;}
.y43{bottom:115.335467pt;}
.y12{bottom:115.335600pt;}
.y5c{bottom:131.947600pt;}
.yae{bottom:132.267733pt;}
.ybc{bottom:132.334400pt;}
.y7f{bottom:132.559467pt;}
.y89{bottom:132.586133pt;}
.y68{bottom:132.587600pt;}
.y42{bottom:132.668800pt;}
.y11{bottom:132.668933pt;}
.y4a{bottom:142.443200pt;}
.y5b{bottom:149.280933pt;}
.yad{bottom:149.601067pt;}
.ybb{bottom:149.667733pt;}
.y7e{bottom:149.892800pt;}
.y88{bottom:149.919467pt;}
.y67{bottom:149.920933pt;}
.y41{bottom:150.002133pt;}
.y10{bottom:150.002267pt;}
.y5a{bottom:166.614267pt;}
.yac{bottom:166.934400pt;}
.yba{bottom:167.001067pt;}
.y7d{bottom:167.226133pt;}
.y87{bottom:167.252800pt;}
.y66{bottom:167.254267pt;}
.y40{bottom:167.335467pt;}
.yf{bottom:167.335600pt;}
.y59{bottom:183.947600pt;}
.yab{bottom:184.267733pt;}
.yb9{bottom:184.334400pt;}
.y7c{bottom:184.560267pt;}
.y86{bottom:184.586133pt;}
.y65{bottom:184.587600pt;}
.y3f{bottom:184.668800pt;}
.ye{bottom:184.668933pt;}
.y58{bottom:201.280933pt;}
.yaa{bottom:201.601067pt;}
.yb8{bottom:201.667733pt;}
.y7b{bottom:201.893600pt;}
.y85{bottom:201.919467pt;}
.y64{bottom:201.920933pt;}
.y3e{bottom:202.002133pt;}
.yd{bottom:202.002267pt;}
.y57{bottom:218.614267pt;}
.ya9{bottom:218.934400pt;}
.yb7{bottom:219.001067pt;}
.y7a{bottom:219.226933pt;}
.y84{bottom:219.252800pt;}
.y63{bottom:219.254267pt;}
.y3d{bottom:219.335467pt;}
.yc{bottom:219.335600pt;}
.y56{bottom:235.947600pt;}
.ya8{bottom:236.267733pt;}
.yb6{bottom:236.334400pt;}
.y79{bottom:236.560267pt;}
.y83{bottom:236.586133pt;}
.y62{bottom:236.587600pt;}
.y3c{bottom:236.668800pt;}
.yb{bottom:236.668933pt;}
.y55{bottom:253.280933pt;}
.ya7{bottom:253.601067pt;}
.yb5{bottom:253.667733pt;}
.y61{bottom:253.920933pt;}
.y3b{bottom:254.002133pt;}
.ya{bottom:254.002267pt;}
.y54{bottom:270.614267pt;}
.ye5{bottom:270.934400pt;}
.yd6{bottom:271.001067pt;}
.y60{bottom:271.254267pt;}
.y3a{bottom:271.335467pt;}
.y9{bottom:271.335600pt;}
.ye4{bottom:288.267733pt;}
.yd5{bottom:288.334400pt;}
.y39{bottom:288.668800pt;}
.y8{bottom:288.668933pt;}
.yda{bottom:291.846400pt;}
.ye3{bottom:305.601067pt;}
.yd4{bottom:305.667733pt;}
.y38{bottom:306.002133pt;}
.y7{bottom:306.002267pt;}
.ye2{bottom:322.934400pt;}
.yd3{bottom:323.001067pt;}
.y37{bottom:323.335467pt;}
.y6{bottom:323.335600pt;}
.yfa{bottom:336.496933pt;}
.ye1{bottom:340.267733pt;}
.yd2{bottom:340.334400pt;}
.y36{bottom:340.668800pt;}
.y28{bottom:340.668933pt;}
.yf9{bottom:352.496933pt;}
.ye0{bottom:357.601067pt;}
.yd1{bottom:357.667733pt;}
.y35{bottom:358.002133pt;}
.y27{bottom:358.002267pt;}
.y2f{bottom:359.162400pt;}
.ydf{bottom:374.934400pt;}
.yd0{bottom:375.001067pt;}
.y34{bottom:375.335467pt;}
.y26{bottom:375.335600pt;}
.yde{bottom:392.267733pt;}
.ycf{bottom:392.334400pt;}
.y25{bottom:392.668933pt;}
.y110{bottom:394.320133pt;}
.yf2{bottom:409.601067pt;}
.yce{bottom:409.667733pt;}
.y24{bottom:410.002267pt;}
.y10f{bottom:410.320133pt;}
.yf1{bottom:426.934400pt;}
.ycd{bottom:427.001067pt;}
.y23{bottom:427.335600pt;}
.yf0{bottom:444.267733pt;}
.ycc{bottom:444.334400pt;}
.y22{bottom:444.668933pt;}
.yf8{bottom:445.086133pt;}
.yef{bottom:461.601067pt;}
.ycb{bottom:461.667733pt;}
.y21{bottom:462.002267pt;}
.yf7{bottom:471.746133pt;}
.yee{bottom:478.934400pt;}
.yca{bottom:479.001067pt;}
.y20{bottom:479.335600pt;}
.yed{bottom:496.267733pt;}
.yc9{bottom:496.334400pt;}
.y1f{bottom:496.668933pt;}
.yf6{bottom:498.406133pt;}
.yec{bottom:513.601067pt;}
.yc8{bottom:513.667733pt;}
.y1e{bottom:514.002267pt;}
.yf5{bottom:525.066133pt;}
.y4e{bottom:527.530533pt;}
.yeb{bottom:530.934400pt;}
.yc7{bottom:531.001067pt;}
.y1d{bottom:531.335600pt;}
.yea{bottom:548.267733pt;}
.yc6{bottom:548.334400pt;}
.y1c{bottom:548.668933pt;}
.yf4{bottom:551.726133pt;}
.y4d{bottom:554.197200pt;}
.ye9{bottom:565.601067pt;}
.yc5{bottom:565.667733pt;}
.y1b{bottom:566.002267pt;}
.yf3{bottom:578.386133pt;}
.y4c{bottom:580.863867pt;}
.ye8{bottom:582.934400pt;}
.yc4{bottom:583.001067pt;}
.y1a{bottom:583.335600pt;}
.y108{bottom:583.491067pt;}
.ye7{bottom:600.267733pt;}
.yc3{bottom:600.334400pt;}
.y19{bottom:600.668933pt;}
.y107{bottom:600.824400pt;}
.y4b{bottom:607.530533pt;}
.ye6{bottom:617.601067pt;}
.yc2{bottom:617.667733pt;}
.y18{bottom:618.002267pt;}
.y106{bottom:618.157733pt;}
.ydd{bottom:634.934400pt;}
.yc1{bottom:635.001067pt;}
.y17{bottom:635.335600pt;}
.y105{bottom:635.491067pt;}
.ydc{bottom:652.267733pt;}
.yc0{bottom:652.334400pt;}
.y16{bottom:652.668933pt;}
.y104{bottom:652.824400pt;}
.ya6{bottom:669.601067pt;}
.yb4{bottom:669.667733pt;}
.y15{bottom:670.002267pt;}
.y103{bottom:670.157733pt;}
.ya5{bottom:686.934400pt;}
.yb3{bottom:687.001067pt;}
.y5{bottom:687.335600pt;}
.y102{bottom:687.491067pt;}
.y53{bottom:703.947600pt;}
.y93{bottom:704.266133pt;}
.ya4{bottom:704.267733pt;}
.yb2{bottom:704.334400pt;}
.y9b{bottom:704.394133pt;}
.y78{bottom:704.560267pt;}
.y49{bottom:704.668800pt;}
.y4{bottom:704.668933pt;}
.y101{bottom:704.824400pt;}
.y6e{bottom:715.414000pt;}
.y52{bottom:721.280933pt;}
.y92{bottom:721.599467pt;}
.ya3{bottom:721.601067pt;}
.y77{bottom:721.893600pt;}
.y48{bottom:722.002133pt;}
.y3{bottom:722.002267pt;}
.y100{bottom:722.157733pt;}
.y9a{bottom:731.054133pt;}
.y10e{bottom:731.898800pt;}
.y51{bottom:738.614267pt;}
.y91{bottom:738.932800pt;}
.ya2{bottom:738.934400pt;}
.y76{bottom:739.226933pt;}
.y47{bottom:739.335467pt;}
.y2{bottom:739.335600pt;}
.yff{bottom:739.491067pt;}
.y6d{bottom:742.074000pt;}
.y10d{bottom:747.898800pt;}
.yd9{bottom:749.947733pt;}
.y50{bottom:755.947600pt;}
.y90{bottom:756.266133pt;}
.ya1{bottom:756.267733pt;}
.y75{bottom:756.560267pt;}
.y46{bottom:756.668800pt;}
.y1{bottom:756.668933pt;}
.yfe{bottom:756.824400pt;}
.y99{bottom:757.714133pt;}
.y6c{bottom:768.734000pt;}
.y4f{bottom:773.280933pt;}
.y8f{bottom:773.599467pt;}
.ya0{bottom:773.601067pt;}
.y74{bottom:773.893600pt;}
.yfd{bottom:774.157733pt;}
.yd8{bottom:776.607733pt;}
.y98{bottom:784.374133pt;}
.y8e{bottom:790.932800pt;}
.y9f{bottom:790.934400pt;}
.y73{bottom:791.226933pt;}
.yfc{bottom:791.491067pt;}
.yd7{bottom:803.267733pt;}
.y2c{bottom:807.183067pt;}
.y8d{bottom:808.266133pt;}
.y9e{bottom:808.267733pt;}
.yfb{bottom:808.824400pt;}
.y33{bottom:809.125733pt;}
.y97{bottom:811.034133pt;}
.y71{bottom:828.743600pt;}
.y96{bottom:837.694133pt;}
.y2b{bottom:844.505733pt;}
.y32{bottom:846.469733pt;}
.y10a{bottom:862.014133pt;}
.y9d{bottom:862.057200pt;}
.ydb{bottom:862.109867pt;}
.y95{bottom:864.354133pt;}
.y70{bottom:866.087600pt;}
.y2a{bottom:881.849733pt;}
.y31{bottom:883.813733pt;}
.y94{bottom:891.014133pt;}
.y109{bottom:899.358133pt;}
.y9c{bottom:899.401200pt;}
.y6f{bottom:903.431600pt;}
.y30{bottom:921.157733pt;}
.y29{bottom:983.377733pt;}
.y2e{bottom:1049.378133pt;}
.y2d{bottom:1061.403200pt;}
.y72{bottom:1061.493600pt;}
.h7{height:26.133333pt;}
.h8{height:32.213333pt;}
.h2{height:50.346667pt;}
.h9{height:51.471477pt;}
.h6{height:51.520000pt;}
.ha{height:60.416000pt;}
.he{height:61.824000pt;}
.hc{height:76.400000pt;}
.hb{height:81.493333pt;}
.h5{height:92.736056pt;}
.hf{height:123.648000pt;}
.hd{height:123.648062pt;}
.h4{height:123.648075pt;}
.h3{height:486.400000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa{left:-416.520000pt;}
.x0{left:0.000000pt;}
.x8{left:34.856400pt;}
.x1{left:75.590533pt;}
.x2{left:88.937200pt;}
.x9{left:135.667867pt;}
.xb{left:166.333067pt;}
.xc{left:214.415733pt;}
.x3{left:297.777200pt;}
.x10{left:300.403333pt;}
.x4{left:311.110533pt;}
.x11{left:313.736667pt;}
.xd{left:372.001600pt;}
.x7{left:377.181333pt;}
.xe{left:424.153867pt;}
.x12{left:469.878133pt;}
.x5{left:519.910533pt;}
.x6{left:533.243867pt;}
.xf{left:573.273867pt;}
}




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