
    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_b2da8c18a7fcffb600b4d1b1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_c1a2107a7e18de18717ea4a7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.173340;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_093ba3503b47833690a34d93.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_f40c56c73cdbe1d35cb9758b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_6390bbcb406f7d489427bff6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.013184;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_e6f0708552efe89a65852fea.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fccdfe988be8e333c03d93f5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_70e20cf483baf4544c94370b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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);}
.m2{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.276000px;}
.ls6{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.078000px;}
.lsb{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000003px;}
.ls5{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.132000px;}
.ls7{letter-spacing:0.138000px;}
.ls8{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.240000px;}
.ls11{letter-spacing:13.452000px;}
.ls10{letter-spacing:14.652000px;}
.lsf{letter-spacing:35.022000px;}
.ls2{letter-spacing:35.112000px;}
.ls4{letter-spacing:41.580000px;}
.ls3{letter-spacing:42.852000px;}
.ls14{letter-spacing:49.992000px;}
.ls12{letter-spacing:59.022000px;}
.ls9{letter-spacing:59.112000px;}
.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;}
}
.ws8{word-spacing:-60.000000px;}
.ws9{word-spacing:-30.360000px;}
.ws6{word-spacing:-27.120000px;}
.ws5{word-spacing:-18.420000px;}
.ws2{word-spacing:-18.318000px;}
.ws3{word-spacing:-18.282000px;}
.ws7{word-spacing:-18.228000px;}
.wsa{word-spacing:-18.204000px;}
.ws1{word-spacing:-16.800003px;}
.ws4{word-spacing:-16.380000px;}
.wsd{word-spacing:-0.198000px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.078000px;}
.wsc{word-spacing:0.210000px;}
._7{margin-left:-5.748000px;}
._c{margin-left:-4.026000px;}
._1{margin-left:-3.024000px;}
._2{margin-left:-1.932000px;}
._4{width:1.716000px;}
._5{width:2.904000px;}
._6{width:4.026000px;}
._8{width:5.412000px;}
._f{width:6.552000px;}
._9{width:7.590000px;}
._d{width:9.372000px;}
._e{width:11.550000px;}
._a{width:12.672000px;}
._b{width:14.520000px;}
._14{width:16.764000px;}
._13{width:19.338000px;}
._12{width:20.592000px;}
._15{width:21.912000px;}
._10{width:24.090000px;}
._11{width:25.740000px;}
._0{width:1561.080000px;}
._3{width:2691.660000px;}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(10,65,143);}
.fc3{color:rgb(207,221,242);}
.fc4{color:rgb(14,87,191);}
.fc2{color:transparent;}
.fc1{color:rgb(9,20,35);}
.fc8{color:rgb(82,224,206);}
.fc0{color:rgb(4,22,48);}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:65.862690px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:96.000000px;}
.fs8{font-size:108.000000px;}
.fs6{font-size:132.000000px;}
.fs1{font-size:144.000000px;}
.fs2{font-size:168.000000px;}
.y84{bottom:-5.089376px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.950000px;}
.yb4{bottom:2.100000px;}
.y2d{bottom:3.300000px;}
.yb7{bottom:3.600000px;}
.y7f{bottom:6.885661px;}
.y7c{bottom:7.185038px;}
.y2a{bottom:7.665000px;}
.y2c{bottom:21.600000px;}
.yb6{bottom:23.880000px;}
.y7e{bottom:28.740105px;}
.y81{bottom:28.740107px;}
.y83{bottom:28.777528px;}
.y7b{bottom:29.069418px;}
.y25{bottom:35.550000px;}
.y33{bottom:38.700000px;}
.y2{bottom:56.287500px;}
.y3d{bottom:56.437500px;}
.y24{bottom:60.000000px;}
.y23{bottom:111.450000px;}
.y76{bottom:117.937500px;}
.ya0{bottom:124.987500px;}
.yc0{bottom:131.437500px;}
.y75{bottom:138.037500px;}
.y9f{bottom:145.237500px;}
.y5f{bottom:151.995000px;}
.ybf{bottom:162.180000px;}
.y22{bottom:163.050000px;}
.y9e{bottom:165.495000px;}
.y74{bottom:170.295000px;}
.y5e{bottom:172.245000px;}
.y9d{bottom:185.745000px;}
.y73{bottom:190.545000px;}
.y5d{bottom:192.495000px;}
.ybe{bottom:194.445000px;}
.y5c{bottom:212.745000px;}
.y21{bottom:213.150000px;}
.ybd{bottom:214.695000px;}
.y9c{bottom:217.095000px;}
.y72{bottom:222.795000px;}
.y5b{bottom:232.995000px;}
.y9b{bottom:237.345000px;}
.y71{bottom:243.045000px;}
.ybc{bottom:246.945000px;}
.ye6{bottom:249.045000px;}
.y5a{bottom:253.245000px;}
.y9a{bottom:257.595000px;}
.y70{bottom:263.295000px;}
.ybb{bottom:267.195000px;}
.y59{bottom:273.330000px;}
.y99{bottom:277.845000px;}
.ye5{bottom:279.495000px;}
.y6f{bottom:283.545000px;}
.yba{bottom:287.445000px;}
.y58{bottom:301.995000px;}
.y79{bottom:302.221541px;}
.y6e{bottom:303.630000px;}
.yb9{bottom:307.695000px;}
.y98{bottom:309.795000px;}
.ye4{bottom:309.945000px;}
.y1f{bottom:319.095000px;}
.y97{bottom:330.195000px;}
.yb3{bottom:330.450000px;}
.y6d{bottom:332.295000px;}
.y78{bottom:336.080951px;}
.yb8{bottom:339.795000px;}
.ye3{bottom:340.545000px;}
.y1e{bottom:349.395000px;}
.yb5{bottom:356.445000px;}
.y57{bottom:359.745000px;}
.y96{bottom:364.380000px;}
.ye2{bottom:372.795000px;}
.y1d{bottom:379.875000px;}
.y56{bottom:380.025000px;}
.y6c{bottom:390.075000px;}
.ye1{bottom:393.075000px;}
.yb2{bottom:396.975000px;}
.y55{bottom:400.275000px;}
.y1c{bottom:410.175000px;}
.y6b{bottom:410.325000px;}
.ye0{bottom:413.325000px;}
.y54{bottom:420.525000px;}
.y95{bottom:421.875000px;}
.y6a{bottom:430.575000px;}
.ydf{bottom:433.575000px;}
.y1b{bottom:440.625000px;}
.y69{bottom:450.825000px;}
.y94{bottom:452.625000px;}
.yde{bottom:453.825000px;}
.y53{bottom:460.875000px;}
.y1a{bottom:471.075000px;}
.y20{bottom:473.475000px;}
.ydd{bottom:474.075000px;}
.y52{bottom:481.125000px;}
.y68{bottom:482.625000px;}
.y93{bottom:484.425000px;}
.ydc{bottom:494.325000px;}
.y19{bottom:501.375000px;}
.y67{bottom:509.775000px;}
.y92{bottom:510.075000px;}
.ydb{bottom:514.575000px;}
.y51{bottom:521.625000px;}
.y18{bottom:531.825000px;}
.yda{bottom:534.675000px;}
.y50{bottom:541.875000px;}
.yd9{bottom:554.925000px;}
.y17{bottom:562.125000px;}
.y66{bottom:567.075000px;}
.y4f{bottom:570.375000px;}
.yd8{bottom:575.175000px;}
.y16{bottom:592.575000px;}
.yd7{bottom:595.425000px;}
.y65{bottom:597.525000px;}
.yd6{bottom:615.675000px;}
.y15{bottom:623.025000px;}
.y26{bottom:623.325000px;}
.y64{bottom:627.975000px;}
.y4e{bottom:628.125000px;}
.y4{bottom:634.425000px;}
.yd5{bottom:635.925000px;}
.y14{bottom:653.325000px;}
.yd4{bottom:656.175000px;}
.y4d{bottom:656.775000px;}
.y63{bottom:658.275000px;}
.yd3{bottom:676.275000px;}
.y13{bottom:683.775000px;}
.y62{bottom:688.725000px;}
.yd2{bottom:696.525000px;}
.y77{bottom:704.157892px;}
.y82{bottom:713.139252px;}
.y12{bottom:714.075000px;}
.y4c{bottom:716.175000px;}
.yd1{bottom:716.775000px;}
.yd0{bottom:737.025000px;}
.y11{bottom:744.570000px;}
.yb1{bottom:749.820000px;}
.ycf{bottom:757.320000px;}
.y4b{bottom:761.670000px;}
.yb0{bottom:769.920000px;}
.y10{bottom:775.020000px;}
.yce{bottom:777.570000px;}
.yaf{bottom:790.170000px;}
.y4a{bottom:792.420000px;}
.yf{bottom:805.320000px;}
.ycd{bottom:809.820000px;}
.yae{bottom:810.420000px;}
.y80{bottom:812.008131px;}
.y49{bottom:815.670000px;}
.yad{bottom:830.670000px;}
.ye{bottom:835.770000px;}
.y48{bottom:835.920000px;}
.ycc{bottom:841.920000px;}
.yac{bottom:850.920000px;}
.y47{bottom:856.170000px;}
.y3c{bottom:857.520000px;}
.y91{bottom:859.455000px;}
.ycb{bottom:862.170000px;}
.yd{bottom:866.205000px;}
.yab{bottom:871.170000px;}
.y46{bottom:876.420000px;}
.yca{bottom:882.420000px;}
.y3b{bottom:886.770000px;}
.yaa{bottom:891.420000px;}
.y90{bottom:891.570000px;}
.yc{bottom:896.520000px;}
.y45{bottom:896.670000px;}
.yc9{bottom:902.670000px;}
.y7d{bottom:909.935472px;}
.ya9{bottom:911.520000px;}
.y8f{bottom:911.820000px;}
.y3a{bottom:916.020000px;}
.y2f{bottom:918.420000px;}
.y44{bottom:918.570000px;}
.yc8{bottom:922.920000px;}
.yb{bottom:926.970000px;}
.ya8{bottom:931.770000px;}
.y8e{bottom:932.070000px;}
.yc7{bottom:943.170000px;}
.y39{bottom:945.270000px;}
.y2e{bottom:948.870000px;}
.ya7{bottom:952.020000px;}
.y8d{bottom:952.320000px;}
.ya{bottom:957.270000px;}
.yc6{bottom:963.420000px;}
.y43{bottom:964.170000px;}
.y2b{bottom:964.770000px;}
.y38{bottom:974.520000px;}
.yc5{bottom:983.670000px;}
.ya6{bottom:984.270000px;}
.y8c{bottom:984.570000px;}
.y42{bottom:986.220000px;}
.y9{bottom:987.720000px;}
.y37{bottom:1003.770000px;}
.y7a{bottom:1003.984399px;}
.ya5{bottom:1004.520000px;}
.y8b{bottom:1004.820000px;}
.y8{bottom:1018.170000px;}
.ya4{bottom:1024.770000px;}
.y8a{bottom:1025.070000px;}
.y36{bottom:1033.020000px;}
.yc4{bottom:1036.020000px;}
.y41{bottom:1042.020000px;}
.y89{bottom:1045.320000px;}
.y7{bottom:1048.470000px;}
.yc3{bottom:1056.270000px;}
.ya3{bottom:1057.020000px;}
.y29{bottom:1063.005000px;}
.y88{bottom:1065.570000px;}
.y35{bottom:1065.870000px;}
.y61{bottom:1071.270000px;}
.y40{bottom:1072.320000px;}
.ya2{bottom:1077.270000px;}
.y6{bottom:1078.920000px;}
.y87{bottom:1085.670000px;}
.yc2{bottom:1088.520000px;}
.y3f{bottom:1094.220000px;}
.ya1{bottom:1097.700000px;}
.y28{bottom:1107.900000px;}
.yc1{bottom:1108.800000px;}
.y5{bottom:1109.250000px;}
.y86{bottom:1117.950000px;}
.y34{bottom:1124.700000px;}
.y60{bottom:1130.700000px;}
.y85{bottom:1138.200000px;}
.y27{bottom:1139.700000px;}
.y3e{bottom:1160.250000px;}
.y32{bottom:1160.400000px;}
.y31{bottom:1179.900000px;}
.y1{bottom:1194.600000px;}
.y30{bottom:1197.750000px;}
.h9{height:27.300000px;}
.h1b{height:40.537500px;}
.hb{height:44.414062px;}
.h18{height:45.505157px;}
.h17{height:45.542579px;}
.h15{height:45.841955px;}
.hc{height:49.350000px;}
.h2{height:55.517578px;}
.h14{height:55.668123px;}
.h4{height:57.919922px;}
.h16{height:60.942284px;}
.h10{height:61.069336px;}
.h8{height:61.670545px;}
.h19{height:63.711914px;}
.hf{height:67.837600px;}
.hd{height:92.671875px;}
.ha{height:97.485000px;}
.h12{height:104.255859px;}
.h11{height:105.785156px;}
.he{height:127.423828px;}
.h6{height:133.242188px;}
.h7{height:155.449219px;}
.h5{height:249.300000px;}
.h1a{height:349.230000px;}
.h13{height:351.648496px;}
.h3{height:1260.900000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:206.704173px;}
.w5{width:257.880000px;}
.w6{width:257.895000px;}
.wa{width:336.675000px;}
.wb{width:340.380000px;}
.w4{width:568.875000px;}
.w7{width:586.005000px;}
.w8{width:637.824021px;}
.w3{width:892.949973px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.649973px;}
.x9{left:4.649973px;}
.x12{left:10.800000px;}
.x21{left:15.296979px;}
.x4{left:16.650000px;}
.x6{left:25.200000px;}
.x22{left:27.294609px;}
.x1f{left:30.893898px;}
.x1c{left:36.292832px;}
.xa{left:58.950000px;}
.x2c{left:62.550000px;}
.x1d{left:71.123452px;}
.x20{left:81.621379px;}
.xb{left:84.187500px;}
.xf{left:87.180000px;}
.xd{left:92.280000px;}
.x11{left:97.950000px;}
.x23{left:103.517054px;}
.x1{left:107.999987px;}
.x24{left:116.999987px;}
.x19{left:118.649987px;}
.x26{left:129.337487px;}
.x5{left:134.550000px;}
.x2f{left:140.737487px;}
.x7{left:151.350000px;}
.x17{left:161.144987px;}
.x15{left:162.644987px;}
.x13{left:166.094987px;}
.x2b{left:168.345000px;}
.x29{left:170.100000px;}
.x3{left:178.245000px;}
.x14{left:187.379987px;}
.x16{left:189.644987px;}
.x1a{left:254.850000px;}
.x1e{left:262.048578px;}
.x1b{left:263.848223px;}
.x8{left:284.430000px;}
.x2d{left:300.629987px;}
.x27{left:307.875000px;}
.x2a{left:313.395000px;}
.xc{left:317.595000px;}
.x2e{left:327.044987px;}
.x31{left:365.144987px;}
.x18{left:442.874987px;}
.x28{left:444.675000px;}
.x30{left:446.474987px;}
.xe{left:576.225000px;}
.x25{left:753.869987px;}
.x10{left:778.454987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.245333pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.069333pt;}
.lsb{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000003pt;}
.ls5{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.117333pt;}
.ls7{letter-spacing:0.122667pt;}
.ls8{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.213333pt;}
.ls11{letter-spacing:11.957333pt;}
.ls10{letter-spacing:13.024000pt;}
.lsf{letter-spacing:31.130667pt;}
.ls2{letter-spacing:31.210667pt;}
.ls4{letter-spacing:36.960000pt;}
.ls3{letter-spacing:38.090667pt;}
.ls14{letter-spacing:44.437333pt;}
.ls12{letter-spacing:52.464000pt;}
.ls9{letter-spacing:52.544000pt;}
.ws8{word-spacing:-53.333333pt;}
.ws9{word-spacing:-26.986667pt;}
.ws6{word-spacing:-24.106667pt;}
.ws5{word-spacing:-16.373333pt;}
.ws2{word-spacing:-16.282667pt;}
.ws3{word-spacing:-16.250667pt;}
.ws7{word-spacing:-16.202667pt;}
.wsa{word-spacing:-16.181333pt;}
.ws1{word-spacing:-14.933336pt;}
.ws4{word-spacing:-14.560000pt;}
.wsd{word-spacing:-0.176000pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.069333pt;}
.wsc{word-spacing:0.186667pt;}
._7{margin-left:-5.109333pt;}
._c{margin-left:-3.578667pt;}
._1{margin-left:-2.688000pt;}
._2{margin-left:-1.717333pt;}
._4{width:1.525333pt;}
._5{width:2.581333pt;}
._6{width:3.578667pt;}
._8{width:4.810667pt;}
._f{width:5.824000pt;}
._9{width:6.746667pt;}
._d{width:8.330667pt;}
._e{width:10.266667pt;}
._a{width:11.264000pt;}
._b{width:12.906667pt;}
._14{width:14.901333pt;}
._13{width:17.189333pt;}
._12{width:18.304000pt;}
._15{width:19.477333pt;}
._10{width:21.413333pt;}
._11{width:22.880000pt;}
._0{width:1387.626667pt;}
._3{width:2392.586667pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:58.544613pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:85.333333pt;}
.fs8{font-size:96.000000pt;}
.fs6{font-size:117.333333pt;}
.fs1{font-size:128.000000pt;}
.fs2{font-size:149.333333pt;}
.y84{bottom:-4.523890pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.733333pt;}
.yb4{bottom:1.866667pt;}
.y2d{bottom:2.933333pt;}
.yb7{bottom:3.200000pt;}
.y7f{bottom:6.120587pt;}
.y7c{bottom:6.386700pt;}
.y2a{bottom:6.813333pt;}
.y2c{bottom:19.200000pt;}
.yb6{bottom:21.226667pt;}
.y7e{bottom:25.546760pt;}
.y81{bottom:25.546762pt;}
.y83{bottom:25.580025pt;}
.y7b{bottom:25.839483pt;}
.y25{bottom:31.600000pt;}
.y33{bottom:34.400000pt;}
.y2{bottom:50.033333pt;}
.y3d{bottom:50.166667pt;}
.y24{bottom:53.333333pt;}
.y23{bottom:99.066667pt;}
.y76{bottom:104.833333pt;}
.ya0{bottom:111.100000pt;}
.yc0{bottom:116.833333pt;}
.y75{bottom:122.700000pt;}
.y9f{bottom:129.100000pt;}
.y5f{bottom:135.106667pt;}
.ybf{bottom:144.160000pt;}
.y22{bottom:144.933333pt;}
.y9e{bottom:147.106667pt;}
.y74{bottom:151.373333pt;}
.y5e{bottom:153.106667pt;}
.y9d{bottom:165.106667pt;}
.y73{bottom:169.373333pt;}
.y5d{bottom:171.106667pt;}
.ybe{bottom:172.840000pt;}
.y5c{bottom:189.106667pt;}
.y21{bottom:189.466667pt;}
.ybd{bottom:190.840000pt;}
.y9c{bottom:192.973333pt;}
.y72{bottom:198.040000pt;}
.y5b{bottom:207.106667pt;}
.y9b{bottom:210.973333pt;}
.y71{bottom:216.040000pt;}
.ybc{bottom:219.506667pt;}
.ye6{bottom:221.373333pt;}
.y5a{bottom:225.106667pt;}
.y9a{bottom:228.973333pt;}
.y70{bottom:234.040000pt;}
.ybb{bottom:237.506667pt;}
.y59{bottom:242.960000pt;}
.y99{bottom:246.973333pt;}
.ye5{bottom:248.440000pt;}
.y6f{bottom:252.040000pt;}
.yba{bottom:255.506667pt;}
.y58{bottom:268.440000pt;}
.y79{bottom:268.641370pt;}
.y6e{bottom:269.893333pt;}
.yb9{bottom:273.506667pt;}
.y98{bottom:275.373333pt;}
.ye4{bottom:275.506667pt;}
.y1f{bottom:283.640000pt;}
.y97{bottom:293.506667pt;}
.yb3{bottom:293.733333pt;}
.y6d{bottom:295.373333pt;}
.y78{bottom:298.738623pt;}
.yb8{bottom:302.040000pt;}
.ye3{bottom:302.706667pt;}
.y1e{bottom:310.573333pt;}
.yb5{bottom:316.840000pt;}
.y57{bottom:319.773333pt;}
.y96{bottom:323.893333pt;}
.ye2{bottom:331.373333pt;}
.y1d{bottom:337.666667pt;}
.y56{bottom:337.800000pt;}
.y6c{bottom:346.733333pt;}
.ye1{bottom:349.400000pt;}
.yb2{bottom:352.866667pt;}
.y55{bottom:355.800000pt;}
.y1c{bottom:364.600000pt;}
.y6b{bottom:364.733333pt;}
.ye0{bottom:367.400000pt;}
.y54{bottom:373.800000pt;}
.y95{bottom:375.000000pt;}
.y6a{bottom:382.733333pt;}
.ydf{bottom:385.400000pt;}
.y1b{bottom:391.666667pt;}
.y69{bottom:400.733333pt;}
.y94{bottom:402.333333pt;}
.yde{bottom:403.400000pt;}
.y53{bottom:409.666667pt;}
.y1a{bottom:418.733333pt;}
.y20{bottom:420.866667pt;}
.ydd{bottom:421.400000pt;}
.y52{bottom:427.666667pt;}
.y68{bottom:429.000000pt;}
.y93{bottom:430.600000pt;}
.ydc{bottom:439.400000pt;}
.y19{bottom:445.666667pt;}
.y67{bottom:453.133333pt;}
.y92{bottom:453.400000pt;}
.ydb{bottom:457.400000pt;}
.y51{bottom:463.666667pt;}
.y18{bottom:472.733333pt;}
.yda{bottom:475.266667pt;}
.y50{bottom:481.666667pt;}
.yd9{bottom:493.266667pt;}
.y17{bottom:499.666667pt;}
.y66{bottom:504.066667pt;}
.y4f{bottom:507.000000pt;}
.yd8{bottom:511.266667pt;}
.y16{bottom:526.733333pt;}
.yd7{bottom:529.266667pt;}
.y65{bottom:531.133333pt;}
.yd6{bottom:547.266667pt;}
.y15{bottom:553.800000pt;}
.y26{bottom:554.066667pt;}
.y64{bottom:558.200000pt;}
.y4e{bottom:558.333333pt;}
.y4{bottom:563.933333pt;}
.yd5{bottom:565.266667pt;}
.y14{bottom:580.733333pt;}
.yd4{bottom:583.266667pt;}
.y4d{bottom:583.800000pt;}
.y63{bottom:585.133333pt;}
.yd3{bottom:601.133333pt;}
.y13{bottom:607.800000pt;}
.y62{bottom:612.200000pt;}
.yd2{bottom:619.133333pt;}
.y77{bottom:625.918127pt;}
.y82{bottom:633.901557pt;}
.y12{bottom:634.733333pt;}
.y4c{bottom:636.600000pt;}
.yd1{bottom:637.133333pt;}
.yd0{bottom:655.133333pt;}
.y11{bottom:661.840000pt;}
.yb1{bottom:666.506667pt;}
.ycf{bottom:673.173333pt;}
.y4b{bottom:677.040000pt;}
.yb0{bottom:684.373333pt;}
.y10{bottom:688.906667pt;}
.yce{bottom:691.173333pt;}
.yaf{bottom:702.373333pt;}
.y4a{bottom:704.373333pt;}
.yf{bottom:715.840000pt;}
.ycd{bottom:719.840000pt;}
.yae{bottom:720.373333pt;}
.y80{bottom:721.785005pt;}
.y49{bottom:725.040000pt;}
.yad{bottom:738.373333pt;}
.ye{bottom:742.906667pt;}
.y48{bottom:743.040000pt;}
.ycc{bottom:748.373333pt;}
.yac{bottom:756.373333pt;}
.y47{bottom:761.040000pt;}
.y3c{bottom:762.240000pt;}
.y91{bottom:763.960000pt;}
.ycb{bottom:766.373333pt;}
.yd{bottom:769.960000pt;}
.yab{bottom:774.373333pt;}
.y46{bottom:779.040000pt;}
.yca{bottom:784.373333pt;}
.y3b{bottom:788.240000pt;}
.yaa{bottom:792.373333pt;}
.y90{bottom:792.506667pt;}
.yc{bottom:796.906667pt;}
.y45{bottom:797.040000pt;}
.yc9{bottom:802.373333pt;}
.y7d{bottom:808.831531pt;}
.ya9{bottom:810.240000pt;}
.y8f{bottom:810.506667pt;}
.y3a{bottom:814.240000pt;}
.y2f{bottom:816.373333pt;}
.y44{bottom:816.506667pt;}
.yc8{bottom:820.373333pt;}
.yb{bottom:823.973333pt;}
.ya8{bottom:828.240000pt;}
.y8e{bottom:828.506667pt;}
.yc7{bottom:838.373333pt;}
.y39{bottom:840.240000pt;}
.y2e{bottom:843.440000pt;}
.ya7{bottom:846.240000pt;}
.y8d{bottom:846.506667pt;}
.ya{bottom:850.906667pt;}
.yc6{bottom:856.373333pt;}
.y43{bottom:857.040000pt;}
.y2b{bottom:857.573333pt;}
.y38{bottom:866.240000pt;}
.yc5{bottom:874.373333pt;}
.ya6{bottom:874.906667pt;}
.y8c{bottom:875.173333pt;}
.y42{bottom:876.640000pt;}
.y9{bottom:877.973333pt;}
.y37{bottom:892.240000pt;}
.y7a{bottom:892.430577pt;}
.ya5{bottom:892.906667pt;}
.y8b{bottom:893.173333pt;}
.y8{bottom:905.040000pt;}
.ya4{bottom:910.906667pt;}
.y8a{bottom:911.173333pt;}
.y36{bottom:918.240000pt;}
.yc4{bottom:920.906667pt;}
.y41{bottom:926.240000pt;}
.y89{bottom:929.173333pt;}
.y7{bottom:931.973333pt;}
.yc3{bottom:938.906667pt;}
.ya3{bottom:939.573333pt;}
.y29{bottom:944.893333pt;}
.y88{bottom:947.173333pt;}
.y35{bottom:947.440000pt;}
.y61{bottom:952.240000pt;}
.y40{bottom:953.173333pt;}
.ya2{bottom:957.573333pt;}
.y6{bottom:959.040000pt;}
.y87{bottom:965.040000pt;}
.yc2{bottom:967.573333pt;}
.y3f{bottom:972.640000pt;}
.ya1{bottom:975.733333pt;}
.y28{bottom:984.800000pt;}
.yc1{bottom:985.600000pt;}
.y5{bottom:986.000000pt;}
.y86{bottom:993.733333pt;}
.y34{bottom:999.733333pt;}
.y60{bottom:1005.066667pt;}
.y85{bottom:1011.733333pt;}
.y27{bottom:1013.066667pt;}
.y3e{bottom:1031.333333pt;}
.y32{bottom:1031.466667pt;}
.y31{bottom:1048.800000pt;}
.y1{bottom:1061.866667pt;}
.y30{bottom:1064.666667pt;}
.h9{height:24.266667pt;}
.h1b{height:36.033333pt;}
.hb{height:39.479167pt;}
.h18{height:40.449029pt;}
.h17{height:40.482293pt;}
.h15{height:40.748405pt;}
.hc{height:43.866667pt;}
.h2{height:49.348958pt;}
.h14{height:49.482776pt;}
.h4{height:51.484375pt;}
.h16{height:54.170919pt;}
.h10{height:54.283854pt;}
.h8{height:54.818262pt;}
.h19{height:56.632812pt;}
.hf{height:60.300089pt;}
.hd{height:82.375000pt;}
.ha{height:86.653333pt;}
.h12{height:92.671875pt;}
.h11{height:94.031250pt;}
.he{height:113.265625pt;}
.h6{height:118.437500pt;}
.h7{height:138.177083pt;}
.h5{height:221.600000pt;}
.h1a{height:310.426667pt;}
.h13{height:312.576441pt;}
.h3{height:1120.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:183.737043pt;}
.w5{width:229.226667pt;}
.w6{width:229.240000pt;}
.wa{width:299.266667pt;}
.wb{width:302.560000pt;}
.w4{width:505.666667pt;}
.w7{width:520.893333pt;}
.w8{width:566.954686pt;}
.w3{width:793.733309pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.466642pt;}
.x9{left:4.133309pt;}
.x12{left:9.600000pt;}
.x21{left:13.597314pt;}
.x4{left:14.800000pt;}
.x6{left:22.400000pt;}
.x22{left:24.261875pt;}
.x1f{left:27.461243pt;}
.x1c{left:32.260295pt;}
.xa{left:52.400000pt;}
.x2c{left:55.600000pt;}
.x1d{left:63.220846pt;}
.x20{left:72.552337pt;}
.xb{left:74.833333pt;}
.xf{left:77.493333pt;}
.xd{left:82.026667pt;}
.x11{left:87.066667pt;}
.x23{left:92.015159pt;}
.x1{left:95.999988pt;}
.x24{left:103.999988pt;}
.x19{left:105.466655pt;}
.x26{left:114.966655pt;}
.x5{left:119.600000pt;}
.x2f{left:125.099988pt;}
.x7{left:134.533333pt;}
.x17{left:143.239988pt;}
.x15{left:144.573322pt;}
.x13{left:147.639988pt;}
.x2b{left:149.640000pt;}
.x29{left:151.200000pt;}
.x3{left:158.440000pt;}
.x14{left:166.559988pt;}
.x16{left:168.573322pt;}
.x1a{left:226.533333pt;}
.x1e{left:232.932069pt;}
.x1b{left:234.531754pt;}
.x8{left:252.826667pt;}
.x2d{left:267.226655pt;}
.x27{left:273.666667pt;}
.x2a{left:278.573333pt;}
.xc{left:282.306667pt;}
.x2e{left:290.706655pt;}
.x31{left:324.573322pt;}
.x18{left:393.666655pt;}
.x28{left:395.266667pt;}
.x30{left:396.866655pt;}
.xe{left:512.200000pt;}
.x25{left:670.106655pt;}
.x10{left:691.959988pt;}
}




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