
    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_57723cae7c8c81960e72b6f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d936ceab53fc08e53cae61cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ef4104a116d361b4b9904ce0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_4bea1d7e6738be0ca5b64b75.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166016;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_4a6885c1cc7c77165ce4d943.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_fa56d314a47b6202a2c9d575.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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);}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v5{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls14{letter-spacing:-0.828000px;}
.ls15{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.342600px;}
.lsa{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.089400px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.001440px;}
.ls16{letter-spacing:0.010560px;}
.lsd{letter-spacing:0.067200px;}
.ls13{letter-spacing:0.070560px;}
.ls1{letter-spacing:0.238080px;}
.ls0{letter-spacing:0.262080px;}
.ls3{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.305280px;}
.ls6{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.328320px;}
.lsb{letter-spacing:0.337680px;}
.lsc{letter-spacing:0.858240px;}
.ls9{letter-spacing:845.741280px;}
.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;}
}
.wsa{word-spacing:-18.676920px;}
.ws0{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.ws9{word-spacing:-18.152520px;}
.ws6{word-spacing:-18.109320px;}
.wsc{word-spacing:-17.956920px;}
.wsb{word-spacing:-17.586720px;}
.ws2{word-spacing:-13.868760px;}
.ws8{word-spacing:-13.214400px;}
.ws3{word-spacing:-11.609280px;}
.ws1{word-spacing:-11.430480px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:5.844240px;}
._d{margin-left:-4.994880px;}
._c{margin-left:-3.974400px;}
._9{margin-left:-2.827200px;}
._0{margin-left:-1.279680px;}
._1{width:1.067760px;}
._2{width:3.001920px;}
._3{width:4.636800px;}
._8{width:6.488640px;}
._7{width:7.551360px;}
._6{width:8.698560px;}
._12{width:10.281120px;}
._4{width:13.115520px;}
._5{width:14.153280px;}
._11{width:15.159360px;}
._e{width:16.444560px;}
._a{width:22.057920px;}
._b{width:23.417040px;}
._f{width:197.561280px;}
._10{width:845.741280px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs2{font-size:51.120000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:3.420000px;}
.ye2{bottom:3.600000px;}
.ydc{bottom:22.320000px;}
.ye1{bottom:22.500000px;}
.ydb{bottom:41.400000px;}
.ye0{bottom:41.580000px;}
.y2{bottom:57.240000px;}
.yda{bottom:60.300000px;}
.ydf{bottom:60.525000px;}
.y1{bottom:76.320000px;}
.yd9{bottom:79.380000px;}
.yd8{bottom:98.280000px;}
.ya7{bottom:113.436000px;}
.y66{bottom:114.156000px;}
.y97{bottom:116.136000px;}
.y9f{bottom:117.756000px;}
.y86{bottom:118.116000px;}
.yd2{bottom:119.016000px;}
.y78{bottom:132.876000px;}
.y69{bottom:134.136000px;}
.y68{bottom:136.116000px;}
.y35{bottom:136.296000px;}
.yfc{bottom:137.196000px;}
.y107{bottom:138.276000px;}
.ye8{bottom:138.636000px;}
.yf3{bottom:144.576000px;}
.y1d{bottom:145.116000px;}
.ya6{bottom:151.410000px;}
.y65{bottom:152.130000px;}
.y96{bottom:154.110000px;}
.y9e{bottom:155.550000px;}
.y85{bottom:155.910000px;}
.yd1{bottom:156.990000px;}
.ye9{bottom:157.710000px;}
.y77{bottom:170.850000px;}
.y4f{bottom:172.110000px;}
.y34{bottom:173.910000px;}
.y106{bottom:176.250000px;}
.ye7{bottom:176.610000px;}
.yf2{bottom:182.370000px;}
.y1c{bottom:183.090000px;}
.ya5{bottom:189.210000px;}
.y64{bottom:190.110000px;}
.y95{bottom:191.910000px;}
.y9d{bottom:193.530000px;}
.y84{bottom:193.890000px;}
.yd0{bottom:194.970000px;}
.y76{bottom:208.830000px;}
.y4e{bottom:209.910000px;}
.ye6{bottom:211.170000px;}
.y33{bottom:211.890000px;}
.y105{bottom:214.230000px;}
.yf1{bottom:220.350000px;}
.y1b{bottom:221.070000px;}
.ya4{bottom:227.190000px;}
.y63{bottom:227.910000px;}
.y94{bottom:229.890000px;}
.y9c{bottom:231.690000px;}
.y83{bottom:231.870000px;}
.ycf{bottom:232.950000px;}
.y75{bottom:246.810000px;}
.y4d{bottom:247.890000px;}
.y32{bottom:249.870000px;}
.y104{bottom:252.030000px;}
.yf0{bottom:258.330000px;}
.y1a{bottom:259.050000px;}
.ya3{bottom:265.170000px;}
.yb3{bottom:265.710000px;}
.y62{bottom:265.890000px;}
.y93{bottom:267.870000px;}
.y82{bottom:269.850000px;}
.y9b{bottom:270.030000px;}
.yce{bottom:270.930000px;}
.y74{bottom:284.790000px;}
.y4c{bottom:285.870000px;}
.y31{bottom:287.850000px;}
.y103{bottom:290.010000px;}
.yef{bottom:296.310000px;}
.y19{bottom:297.030000px;}
.ya2{bottom:303.150000px;}
.yb2{bottom:303.690000px;}
.y61{bottom:303.870000px;}
.y92{bottom:305.850000px;}
.y81{bottom:307.830000px;}
.ycd{bottom:308.910000px;}
.y73{bottom:322.770000px;}
.y4b{bottom:323.850000px;}
.y30{bottom:325.830000px;}
.y102{bottom:327.990000px;}
.yee{bottom:334.290000px;}
.y18{bottom:335.010000px;}
.ya1{bottom:341.130000px;}
.y60{bottom:341.850000px;}
.y91{bottom:343.875000px;}
.y80{bottom:345.855000px;}
.ycc{bottom:346.755000px;}
.y72{bottom:360.615000px;}
.y4a{bottom:361.875000px;}
.y2f{bottom:363.855000px;}
.y101{bottom:366.015000px;}
.yed{bottom:372.135000px;}
.y17{bottom:372.855000px;}
.yb1{bottom:379.155000px;}
.ya0{bottom:379.695000px;}
.y5f{bottom:379.875000px;}
.y90{bottom:381.855000px;}
.y7f{bottom:383.655000px;}
.ycb{bottom:384.735000px;}
.y71{bottom:398.595000px;}
.y49{bottom:399.855000px;}
.y2e{bottom:401.655000px;}
.y100{bottom:403.995000px;}
.yec{bottom:410.115000px;}
.y16{bottom:410.835000px;}
.yb0{bottom:416.955000px;}
.y5e{bottom:417.855000px;}
.y8f{bottom:419.655000px;}
.y7e{bottom:421.635000px;}
.yca{bottom:422.715000px;}
.y70{bottom:436.575000px;}
.y48{bottom:437.655000px;}
.y2d{bottom:439.635000px;}
.yff{bottom:441.975000px;}
.yeb{bottom:448.095000px;}
.y15{bottom:448.815000px;}
.yaf{bottom:454.935000px;}
.y5d{bottom:455.655000px;}
.y8e{bottom:457.635000px;}
.y7d{bottom:459.615000px;}
.yc9{bottom:460.695000px;}
.y6f{bottom:474.555000px;}
.y47{bottom:475.635000px;}
.y2c{bottom:477.615000px;}
.yfe{bottom:479.775000px;}
.yea{bottom:482.655000px;}
.y14{bottom:486.795000px;}
.yae{bottom:492.915000px;}
.y5c{bottom:493.635000px;}
.y8d{bottom:495.615000px;}
.y7c{bottom:497.595000px;}
.yc8{bottom:498.675000px;}
.y6e{bottom:512.535000px;}
.y46{bottom:513.615000px;}
.yfd{bottom:514.335000px;}
.y2b{bottom:515.595000px;}
.y13{bottom:524.775000px;}
.yad{bottom:530.895000px;}
.y5b{bottom:531.615000px;}
.y8c{bottom:533.595000px;}
.y7b{bottom:535.575000px;}
.yc7{bottom:536.475000px;}
.y6d{bottom:550.335000px;}
.y45{bottom:551.595000px;}
.yd4{bottom:553.215000px;}
.y2a{bottom:553.575000px;}
.y12{bottom:562.575000px;}
.yac{bottom:568.875000px;}
.yb4{bottom:569.415000px;}
.y5a{bottom:569.595000px;}
.y8b{bottom:571.575000px;}
.y7a{bottom:573.375000px;}
.yc6{bottom:574.455000px;}
.y6c{bottom:588.315000px;}
.y44{bottom:589.575000px;}
.y29{bottom:591.375000px;}
.y11{bottom:600.555000px;}
.yab{bottom:606.675000px;}
.y59{bottom:607.575000px;}
.yd3{bottom:607.755000px;}
.y8a{bottom:609.405000px;}
.yc5{bottom:612.465000px;}
.y6b{bottom:626.865000px;}
.y43{bottom:627.405000px;}
.y28{bottom:629.385000px;}
.yfb{bottom:637.845000px;}
.y10{bottom:638.565000px;}
.yaa{bottom:644.685000px;}
.y58{bottom:645.405000px;}
.y89{bottom:647.385000px;}
.yc4{bottom:650.445000px;}
.ye5{bottom:658.905000px;}
.y6a{bottom:665.025000px;}
.y42{bottom:665.385000px;}
.y27{bottom:667.365000px;}
.yfa{bottom:675.825000px;}
.yf{bottom:676.545000px;}
.ya9{bottom:682.665000px;}
.y57{bottom:683.385000px;}
.ye4{bottom:683.565000px;}
.y79{bottom:685.365000px;}
.yc3{bottom:688.425000px;}
.y41{bottom:703.365000px;}
.y26{bottom:705.345000px;}
.yf9{bottom:713.805000px;}
.ye{bottom:714.525000px;}
.ybd{bottom:720.645000px;}
.ya8{bottom:721.185000px;}
.y56{bottom:721.365000px;}
.y88{bottom:723.345000px;}
.yc2{bottom:726.405000px;}
.y40{bottom:741.345000px;}
.y25{bottom:743.325000px;}
.yf8{bottom:751.785000px;}
.yd{bottom:752.505000px;}
.ybc{bottom:758.625000px;}
.y55{bottom:759.345000px;}
.y87{bottom:761.325000px;}
.yc1{bottom:764.205000px;}
.ye3{bottom:775.905000px;}
.y3f{bottom:779.325000px;}
.y24{bottom:781.125000px;}
.yf7{bottom:789.585000px;}
.yc{bottom:790.305000px;}
.ybb{bottom:796.605000px;}
.y54{bottom:797.325000px;}
.y67{bottom:799.125000px;}
.y3e{bottom:817.125000px;}
.yc0{bottom:818.925000px;}
.y23{bottom:819.105000px;}
.yf6{bottom:827.565000px;}
.yb{bottom:828.285000px;}
.yde{bottom:830.265000px;}
.yba{bottom:834.405000px;}
.y53{bottom:835.125000px;}
.y9a{bottom:837.105000px;}
.y3d{bottom:855.105000px;}
.y22{bottom:857.085000px;}
.yf5{bottom:865.545000px;}
.ya{bottom:866.265000px;}
.yb9{bottom:872.385000px;}
.y52{bottom:873.150000px;}
.ybf{bottom:873.330000px;}
.y99{bottom:875.130000px;}
.y3c{bottom:893.130000px;}
.y21{bottom:895.110000px;}
.yf4{bottom:900.150000px;}
.y9{bottom:904.290000px;}
.yb8{bottom:910.410000px;}
.y51{bottom:911.130000px;}
.y98{bottom:913.110000px;}
.ydd{bottom:922.830000px;}
.y3b{bottom:931.110000px;}
.y8{bottom:946.410000px;}
.yb7{bottom:948.390000px;}
.y50{bottom:949.110000px;}
.y20{bottom:951.090000px;}
.yd7{bottom:958.290000px;}
.y3a{bottom:969.090000px;}
.yb6{bottom:986.370000px;}
.ybe{bottom:986.910000px;}
.y7{bottom:987.090000px;}
.y1f{bottom:1007.070000px;}
.yb5{bottom:1024.890000px;}
.y6{bottom:1025.070000px;}
.y1e{bottom:1044.870000px;}
.y37{bottom:1048.110000px;}
.y5{bottom:1062.870000px;}
.y39{bottom:1082.850000px;}
.yd5{bottom:1088.610000px;}
.y4{bottom:1100.850000px;}
.y36{bottom:1101.030000px;}
.y3{bottom:1138.860000px;}
.y38{bottom:1139.040000px;}
.h6{height:18.900000px;}
.h9{height:37.980000px;}
.h4{height:59.415469px;}
.h2{height:69.086250px;}
.h5{height:70.914375px;}
.ha{height:75.780000px;}
.h8{height:75.996000px;}
.h3{height:80.676563px;}
.h7{height:113.760000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:337.170000px;}
.w4{width:337.215000px;}
.w3{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:6.840000px;}
.xa{left:44.279973px;}
.x7{left:53.459973px;}
.x5{left:62.639973px;}
.x3{left:71.819973px;}
.x4{left:80.999987px;}
.x2{left:108.035987px;}
.xb{left:109.476000px;}
.x9{left:140.975987px;}
.x6{left:162.029987px;}
.x8{left:437.474987px;}
.x1{left:441.974987px;}
.xd{left:448.125000px;}
.x10{left:490.604987px;}
.xf{left:617.684987px;}
.x11{left:681.989987px;}
.xe{left:745.529987px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v5{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls14{letter-spacing:-0.736000pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.304533pt;}
.lsa{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.079467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.001280pt;}
.ls16{letter-spacing:0.009387pt;}
.lsd{letter-spacing:0.059733pt;}
.ls13{letter-spacing:0.062720pt;}
.ls1{letter-spacing:0.211627pt;}
.ls0{letter-spacing:0.232960pt;}
.ls3{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.271360pt;}
.ls6{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.291840pt;}
.lsb{letter-spacing:0.300160pt;}
.lsc{letter-spacing:0.762880pt;}
.ls9{letter-spacing:751.770027pt;}
.wsa{word-spacing:-16.601707pt;}
.ws0{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.ws9{word-spacing:-16.135573pt;}
.ws6{word-spacing:-16.097173pt;}
.wsc{word-spacing:-15.961707pt;}
.wsb{word-spacing:-15.632640pt;}
.ws2{word-spacing:-12.327787pt;}
.ws8{word-spacing:-11.746133pt;}
.ws3{word-spacing:-10.319360pt;}
.ws1{word-spacing:-10.160427pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:5.194880pt;}
._d{margin-left:-4.439893pt;}
._c{margin-left:-3.532800pt;}
._9{margin-left:-2.513067pt;}
._0{margin-left:-1.137493pt;}
._1{width:0.949120pt;}
._2{width:2.668373pt;}
._3{width:4.121600pt;}
._8{width:5.767680pt;}
._7{width:6.712320pt;}
._6{width:7.732053pt;}
._12{width:9.138773pt;}
._4{width:11.658240pt;}
._5{width:12.580693pt;}
._11{width:13.474987pt;}
._e{width:14.617387pt;}
._a{width:19.607040pt;}
._b{width:20.815147pt;}
._f{width:175.610027pt;}
._10{width:751.770027pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:45.440000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:3.040000pt;}
.ye2{bottom:3.200000pt;}
.ydc{bottom:19.840000pt;}
.ye1{bottom:20.000000pt;}
.ydb{bottom:36.800000pt;}
.ye0{bottom:36.960000pt;}
.y2{bottom:50.880000pt;}
.yda{bottom:53.600000pt;}
.ydf{bottom:53.800000pt;}
.y1{bottom:67.840000pt;}
.yd9{bottom:70.560000pt;}
.yd8{bottom:87.360000pt;}
.ya7{bottom:100.832000pt;}
.y66{bottom:101.472000pt;}
.y97{bottom:103.232000pt;}
.y9f{bottom:104.672000pt;}
.y86{bottom:104.992000pt;}
.yd2{bottom:105.792000pt;}
.y78{bottom:118.112000pt;}
.y69{bottom:119.232000pt;}
.y68{bottom:120.992000pt;}
.y35{bottom:121.152000pt;}
.yfc{bottom:121.952000pt;}
.y107{bottom:122.912000pt;}
.ye8{bottom:123.232000pt;}
.yf3{bottom:128.512000pt;}
.y1d{bottom:128.992000pt;}
.ya6{bottom:134.586667pt;}
.y65{bottom:135.226667pt;}
.y96{bottom:136.986667pt;}
.y9e{bottom:138.266667pt;}
.y85{bottom:138.586667pt;}
.yd1{bottom:139.546667pt;}
.ye9{bottom:140.186667pt;}
.y77{bottom:151.866667pt;}
.y4f{bottom:152.986667pt;}
.y34{bottom:154.586667pt;}
.y106{bottom:156.666667pt;}
.ye7{bottom:156.986667pt;}
.yf2{bottom:162.106667pt;}
.y1c{bottom:162.746667pt;}
.ya5{bottom:168.186667pt;}
.y64{bottom:168.986667pt;}
.y95{bottom:170.586667pt;}
.y9d{bottom:172.026667pt;}
.y84{bottom:172.346667pt;}
.yd0{bottom:173.306667pt;}
.y76{bottom:185.626667pt;}
.y4e{bottom:186.586667pt;}
.ye6{bottom:187.706667pt;}
.y33{bottom:188.346667pt;}
.y105{bottom:190.426667pt;}
.yf1{bottom:195.866667pt;}
.y1b{bottom:196.506667pt;}
.ya4{bottom:201.946667pt;}
.y63{bottom:202.586667pt;}
.y94{bottom:204.346667pt;}
.y9c{bottom:205.946667pt;}
.y83{bottom:206.106667pt;}
.ycf{bottom:207.066667pt;}
.y75{bottom:219.386667pt;}
.y4d{bottom:220.346667pt;}
.y32{bottom:222.106667pt;}
.y104{bottom:224.026667pt;}
.yf0{bottom:229.626667pt;}
.y1a{bottom:230.266667pt;}
.ya3{bottom:235.706667pt;}
.yb3{bottom:236.186667pt;}
.y62{bottom:236.346667pt;}
.y93{bottom:238.106667pt;}
.y82{bottom:239.866667pt;}
.y9b{bottom:240.026667pt;}
.yce{bottom:240.826667pt;}
.y74{bottom:253.146667pt;}
.y4c{bottom:254.106667pt;}
.y31{bottom:255.866667pt;}
.y103{bottom:257.786667pt;}
.yef{bottom:263.386667pt;}
.y19{bottom:264.026667pt;}
.ya2{bottom:269.466667pt;}
.yb2{bottom:269.946667pt;}
.y61{bottom:270.106667pt;}
.y92{bottom:271.866667pt;}
.y81{bottom:273.626667pt;}
.ycd{bottom:274.586667pt;}
.y73{bottom:286.906667pt;}
.y4b{bottom:287.866667pt;}
.y30{bottom:289.626667pt;}
.y102{bottom:291.546667pt;}
.yee{bottom:297.146667pt;}
.y18{bottom:297.786667pt;}
.ya1{bottom:303.226667pt;}
.y60{bottom:303.866667pt;}
.y91{bottom:305.666667pt;}
.y80{bottom:307.426667pt;}
.ycc{bottom:308.226667pt;}
.y72{bottom:320.546667pt;}
.y4a{bottom:321.666667pt;}
.y2f{bottom:323.426667pt;}
.y101{bottom:325.346667pt;}
.yed{bottom:330.786667pt;}
.y17{bottom:331.426667pt;}
.yb1{bottom:337.026667pt;}
.ya0{bottom:337.506667pt;}
.y5f{bottom:337.666667pt;}
.y90{bottom:339.426667pt;}
.y7f{bottom:341.026667pt;}
.ycb{bottom:341.986667pt;}
.y71{bottom:354.306667pt;}
.y49{bottom:355.426667pt;}
.y2e{bottom:357.026667pt;}
.y100{bottom:359.106667pt;}
.yec{bottom:364.546667pt;}
.y16{bottom:365.186667pt;}
.yb0{bottom:370.626667pt;}
.y5e{bottom:371.426667pt;}
.y8f{bottom:373.026667pt;}
.y7e{bottom:374.786667pt;}
.yca{bottom:375.746667pt;}
.y70{bottom:388.066667pt;}
.y48{bottom:389.026667pt;}
.y2d{bottom:390.786667pt;}
.yff{bottom:392.866667pt;}
.yeb{bottom:398.306667pt;}
.y15{bottom:398.946667pt;}
.yaf{bottom:404.386667pt;}
.y5d{bottom:405.026667pt;}
.y8e{bottom:406.786667pt;}
.y7d{bottom:408.546667pt;}
.yc9{bottom:409.506667pt;}
.y6f{bottom:421.826667pt;}
.y47{bottom:422.786667pt;}
.y2c{bottom:424.546667pt;}
.yfe{bottom:426.466667pt;}
.yea{bottom:429.026667pt;}
.y14{bottom:432.706667pt;}
.yae{bottom:438.146667pt;}
.y5c{bottom:438.786667pt;}
.y8d{bottom:440.546667pt;}
.y7c{bottom:442.306667pt;}
.yc8{bottom:443.266667pt;}
.y6e{bottom:455.586667pt;}
.y46{bottom:456.546667pt;}
.yfd{bottom:457.186667pt;}
.y2b{bottom:458.306667pt;}
.y13{bottom:466.466667pt;}
.yad{bottom:471.906667pt;}
.y5b{bottom:472.546667pt;}
.y8c{bottom:474.306667pt;}
.y7b{bottom:476.066667pt;}
.yc7{bottom:476.866667pt;}
.y6d{bottom:489.186667pt;}
.y45{bottom:490.306667pt;}
.yd4{bottom:491.746667pt;}
.y2a{bottom:492.066667pt;}
.y12{bottom:500.066667pt;}
.yac{bottom:505.666667pt;}
.yb4{bottom:506.146667pt;}
.y5a{bottom:506.306667pt;}
.y8b{bottom:508.066667pt;}
.y7a{bottom:509.666667pt;}
.yc6{bottom:510.626667pt;}
.y6c{bottom:522.946667pt;}
.y44{bottom:524.066667pt;}
.y29{bottom:525.666667pt;}
.y11{bottom:533.826667pt;}
.yab{bottom:539.266667pt;}
.y59{bottom:540.066667pt;}
.yd3{bottom:540.226667pt;}
.y8a{bottom:541.693333pt;}
.yc5{bottom:544.413333pt;}
.y6b{bottom:557.213333pt;}
.y43{bottom:557.693333pt;}
.y28{bottom:559.453333pt;}
.yfb{bottom:566.973333pt;}
.y10{bottom:567.613333pt;}
.yaa{bottom:573.053333pt;}
.y58{bottom:573.693333pt;}
.y89{bottom:575.453333pt;}
.yc4{bottom:578.173333pt;}
.ye5{bottom:585.693333pt;}
.y6a{bottom:591.133333pt;}
.y42{bottom:591.453333pt;}
.y27{bottom:593.213333pt;}
.yfa{bottom:600.733333pt;}
.yf{bottom:601.373333pt;}
.ya9{bottom:606.813333pt;}
.y57{bottom:607.453333pt;}
.ye4{bottom:607.613333pt;}
.y79{bottom:609.213333pt;}
.yc3{bottom:611.933333pt;}
.y41{bottom:625.213333pt;}
.y26{bottom:626.973333pt;}
.yf9{bottom:634.493333pt;}
.ye{bottom:635.133333pt;}
.ybd{bottom:640.573333pt;}
.ya8{bottom:641.053333pt;}
.y56{bottom:641.213333pt;}
.y88{bottom:642.973333pt;}
.yc2{bottom:645.693333pt;}
.y40{bottom:658.973333pt;}
.y25{bottom:660.733333pt;}
.yf8{bottom:668.253333pt;}
.yd{bottom:668.893333pt;}
.ybc{bottom:674.333333pt;}
.y55{bottom:674.973333pt;}
.y87{bottom:676.733333pt;}
.yc1{bottom:679.293333pt;}
.ye3{bottom:689.693333pt;}
.y3f{bottom:692.733333pt;}
.y24{bottom:694.333333pt;}
.yf7{bottom:701.853333pt;}
.yc{bottom:702.493333pt;}
.ybb{bottom:708.093333pt;}
.y54{bottom:708.733333pt;}
.y67{bottom:710.333333pt;}
.y3e{bottom:726.333333pt;}
.yc0{bottom:727.933333pt;}
.y23{bottom:728.093333pt;}
.yf6{bottom:735.613333pt;}
.yb{bottom:736.253333pt;}
.yde{bottom:738.013333pt;}
.yba{bottom:741.693333pt;}
.y53{bottom:742.333333pt;}
.y9a{bottom:744.093333pt;}
.y3d{bottom:760.093333pt;}
.y22{bottom:761.853333pt;}
.yf5{bottom:769.373333pt;}
.ya{bottom:770.013333pt;}
.yb9{bottom:775.453333pt;}
.y52{bottom:776.133333pt;}
.ybf{bottom:776.293333pt;}
.y99{bottom:777.893333pt;}
.y3c{bottom:793.893333pt;}
.y21{bottom:795.653333pt;}
.yf4{bottom:800.133333pt;}
.y9{bottom:803.813333pt;}
.yb8{bottom:809.253333pt;}
.y51{bottom:809.893333pt;}
.y98{bottom:811.653333pt;}
.ydd{bottom:820.293333pt;}
.y3b{bottom:827.653333pt;}
.y8{bottom:841.253333pt;}
.yb7{bottom:843.013333pt;}
.y50{bottom:843.653333pt;}
.y20{bottom:845.413333pt;}
.yd7{bottom:851.813333pt;}
.y3a{bottom:861.413333pt;}
.yb6{bottom:876.773333pt;}
.ybe{bottom:877.253333pt;}
.y7{bottom:877.413333pt;}
.y1f{bottom:895.173333pt;}
.yb5{bottom:911.013333pt;}
.y6{bottom:911.173333pt;}
.y1e{bottom:928.773333pt;}
.y37{bottom:931.653333pt;}
.y5{bottom:944.773333pt;}
.y39{bottom:962.533333pt;}
.yd5{bottom:967.653333pt;}
.y4{bottom:978.533333pt;}
.y36{bottom:978.693333pt;}
.y3{bottom:1012.320000pt;}
.y38{bottom:1012.480000pt;}
.h6{height:16.800000pt;}
.h9{height:33.760000pt;}
.h4{height:52.813750pt;}
.h2{height:61.410000pt;}
.h5{height:63.035000pt;}
.ha{height:67.360000pt;}
.h8{height:67.552000pt;}
.h3{height:71.712500pt;}
.h7{height:101.120000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:299.706667pt;}
.w4{width:299.746667pt;}
.w3{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.080000pt;}
.xa{left:39.359976pt;}
.x7{left:47.519976pt;}
.x5{left:55.679976pt;}
.x3{left:63.839976pt;}
.x4{left:71.999988pt;}
.x2{left:96.031988pt;}
.xb{left:97.312000pt;}
.x9{left:125.311988pt;}
.x6{left:144.026655pt;}
.x8{left:388.866655pt;}
.x1{left:392.866655pt;}
.xd{left:398.333333pt;}
.x10{left:436.093322pt;}
.xf{left:549.053322pt;}
.x11{left:606.213322pt;}
.xe{left:662.693322pt;}
}




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