
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_85d1eda6282564abac384592.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_42bafe98ff59c603872a4cc0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_d31956c30ca6f87d094fc9a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_924009019079fc294bf78a20.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dbe3ee6772aa7265a69c7320.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.044000px;}
.ls6{letter-spacing:-0.463800px;}
.ls16{letter-spacing:-0.414000px;}
.lsa{letter-spacing:-0.325200px;}
.ls18{letter-spacing:-0.240600px;}
.ls12{letter-spacing:-0.164400px;}
.ls13{letter-spacing:-0.102000px;}
.ls15{letter-spacing:-0.067200px;}
.ls1d{letter-spacing:-0.064800px;}
.lsb{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.175200px;}
.ls9{letter-spacing:0.190200px;}
.ls7{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.289200px;}
.lsf{letter-spacing:0.306000px;}
.ls1c{letter-spacing:0.479520px;}
.ls17{letter-spacing:0.617760px;}
.ls14{letter-spacing:0.637200px;}
.ls11{letter-spacing:0.906000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1b{letter-spacing:42.570720px;}
.ls4{letter-spacing:45.306720px;}
.ls19{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.170720px;}
.lse{letter-spacing:202.638240px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws4{word-spacing:-21.930960px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.645040px;}
.ws1{word-spacing:-14.506440px;}
.ws8{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.438560px;}
.ws5{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.156960px;}
._14{margin-left:-4.781280px;}
._6{margin-left:-3.312000px;}
._11{margin-left:-2.263680px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._e{width:2.584560px;}
._b{width:3.944160px;}
._a{width:5.263200px;}
._10{width:6.540960px;}
._12{width:8.428320px;}
._c{width:9.501840px;}
._d{width:10.561200px;}
._15{width:12.430080px;}
._16{width:14.720880px;}
._17{width:16.374240px;}
._13{width:17.629200px;}
._f{width:19.661040px;}
._8{width:28.291200px;}
._7{width:29.398320px;}
._9{width:31.572960px;}
._19{width:47.958960px;}
._18{width:202.638240px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:6.660000px;}
.yef{bottom:7.020000px;}
.ya4{bottom:27.720000px;}
.yee{bottom:28.080000px;}
.yeb{bottom:35.460000px;}
.yed{bottom:49.500000px;}
.y6{bottom:60.336000px;}
.yec{bottom:70.554000px;}
.yd0{bottom:89.496000px;}
.yea{bottom:92.016000px;}
.ya0{bottom:93.276000px;}
.y87{bottom:99.396000px;}
.y31{bottom:104.436000px;}
.y65{bottom:106.776000px;}
.ycf{bottom:110.556000px;}
.y9f{bottom:114.336000px;}
.y86{bottom:120.456000px;}
.y30{bottom:125.496000px;}
.y64{bottom:127.836000px;}
.yce{bottom:131.616000px;}
.y9e{bottom:135.396000px;}
.y85{bottom:141.516000px;}
.y63{bottom:146.196000px;}
.y2f{bottom:146.556000px;}
.ycd{bottom:152.670000px;}
.y9d{bottom:156.450000px;}
.y84{bottom:162.570000px;}
.y62{bottom:167.250000px;}
.y2e{bottom:167.430000px;}
.ycc{bottom:173.730000px;}
.y9c{bottom:177.510000px;}
.yd6{bottom:182.010000px;}
.y83{bottom:183.630000px;}
.y61{bottom:188.310000px;}
.y2d{bottom:188.490000px;}
.ycb{bottom:194.790000px;}
.y9b{bottom:198.570000px;}
.y82{bottom:204.690000px;}
.y60{bottom:209.370000px;}
.y2c{bottom:209.550000px;}
.yca{bottom:215.850000px;}
.y9a{bottom:219.630000px;}
.y81{bottom:225.750000px;}
.y5f{bottom:230.430000px;}
.y2b{bottom:230.610000px;}
.yc9{bottom:236.910000px;}
.y99{bottom:240.690000px;}
.y5e{bottom:251.490000px;}
.y2a{bottom:251.670000px;}
.ye9{bottom:253.470000px;}
.y80{bottom:255.810000px;}
.yc8{bottom:257.970000px;}
.y98{bottom:261.750000px;}
.y5d{bottom:272.550000px;}
.y29{bottom:272.730000px;}
.ye8{bottom:274.530000px;}
.y7f{bottom:276.870000px;}
.yc7{bottom:279.030000px;}
.y97{bottom:282.855000px;}
.y5c{bottom:293.655000px;}
.ye7{bottom:295.635000px;}
.y28{bottom:296.355000px;}
.y7e{bottom:297.975000px;}
.yc6{bottom:300.135000px;}
.y96{bottom:303.915000px;}
.y5b{bottom:315.435000px;}
.ye6{bottom:316.695000px;}
.y27{bottom:317.235000px;}
.y7d{bottom:319.035000px;}
.yc5{bottom:321.195000px;}
.y95{bottom:324.975000px;}
.y5a{bottom:336.675000px;}
.ye5{bottom:337.755000px;}
.y26{bottom:338.295000px;}
.y7c{bottom:340.095000px;}
.yc4{bottom:342.255000px;}
.y94{bottom:346.035000px;}
.y59{bottom:358.455000px;}
.ye4{bottom:358.815000px;}
.y25{bottom:359.355000px;}
.y7b{bottom:361.155000px;}
.yc3{bottom:363.315000px;}
.y93{bottom:367.095000px;}
.y58{bottom:379.515000px;}
.ye3{bottom:379.875000px;}
.y24{bottom:380.415000px;}
.y7a{bottom:382.215000px;}
.yc2{bottom:384.375000px;}
.y92{bottom:388.155000px;}
.ye2{bottom:400.935000px;}
.y57{bottom:401.295000px;}
.y23{bottom:401.475000px;}
.y79{bottom:403.275000px;}
.y91{bottom:409.215000px;}
.yc1{bottom:414.435000px;}
.ye1{bottom:421.995000px;}
.y56{bottom:422.355000px;}
.y22{bottom:422.535000px;}
.y90{bottom:430.275000px;}
.y78{bottom:433.335000px;}
.yc0{bottom:435.495000px;}
.ye0{bottom:443.055000px;}
.y21{bottom:443.595000px;}
.y55{bottom:444.135000px;}
.y8f{bottom:451.335000px;}
.y77{bottom:454.395000px;}
.ybf{bottom:456.555000px;}
.ydf{bottom:464.115000px;}
.y20{bottom:464.655000px;}
.y54{bottom:465.375000px;}
.y8e{bottom:472.395000px;}
.y76{bottom:475.455000px;}
.ybe{bottom:477.615000px;}
.yde{bottom:485.175000px;}
.y1f{bottom:485.715000px;}
.y53{bottom:487.155000px;}
.y8d{bottom:493.455000px;}
.y75{bottom:496.515000px;}
.ybd{bottom:498.675000px;}
.ydd{bottom:506.235000px;}
.y1e{bottom:506.775000px;}
.y52{bottom:508.215000px;}
.y8c{bottom:514.515000px;}
.y74{bottom:517.395000px;}
.ybc{bottom:519.735000px;}
.ydc{bottom:527.295000px;}
.y51{bottom:529.275000px;}
.y8b{bottom:535.395000px;}
.y1d{bottom:536.835000px;}
.y73{bottom:538.455000px;}
.ybb{bottom:540.795000px;}
.ydb{bottom:548.355000px;}
.y50{bottom:550.335000px;}
.y8a{bottom:556.455000px;}
.y1c{bottom:557.895000px;}
.y72{bottom:559.515000px;}
.yba{bottom:561.855000px;}
.yd5{bottom:569.445000px;}
.y4f{bottom:571.425000px;}
.y89{bottom:577.545000px;}
.y1b{bottom:578.985000px;}
.y71{bottom:580.605000px;}
.yb9{bottom:582.945000px;}
.y4e{bottom:589.785000px;}
.yd4{bottom:590.505000px;}
.y88{bottom:598.605000px;}
.y1a{bottom:600.045000px;}
.y70{bottom:601.665000px;}
.yb8{bottom:604.005000px;}
.yd3{bottom:611.565000px;}
.y4d{bottom:619.665000px;}
.y19{bottom:621.105000px;}
.y6f{bottom:622.725000px;}
.yb7{bottom:625.065000px;}
.yd2{bottom:632.625000px;}
.y4c{bottom:640.725000px;}
.y18{bottom:642.165000px;}
.y6e{bottom:643.785000px;}
.yb6{bottom:646.125000px;}
.yd1{bottom:653.685000px;}
.y4b{bottom:661.785000px;}
.y17{bottom:663.225000px;}
.yb5{bottom:667.185000px;}
.y6d{bottom:673.845000px;}
.yda{bottom:674.745000px;}
.y4a{bottom:682.845000px;}
.y16{bottom:684.285000px;}
.yb4{bottom:688.245000px;}
.y6c{bottom:694.905000px;}
.yd9{bottom:695.805000px;}
.y49{bottom:703.905000px;}
.y15{bottom:705.345000px;}
.yb3{bottom:709.305000px;}
.y6b{bottom:715.965000px;}
.yd8{bottom:716.865000px;}
.y48{bottom:724.965000px;}
.y14{bottom:726.405000px;}
.yb2{bottom:730.365000px;}
.y6a{bottom:737.025000px;}
.yd7{bottom:737.925000px;}
.y47{bottom:746.025000px;}
.y13{bottom:747.465000px;}
.yb1{bottom:751.425000px;}
.y69{bottom:758.085000px;}
.y46{bottom:767.085000px;}
.y12{bottom:768.525000px;}
.yb0{bottom:772.485000px;}
.y68{bottom:779.145000px;}
.y45{bottom:788.145000px;}
.y11{bottom:789.585000px;}
.yaf{bottom:793.545000px;}
.y67{bottom:800.205000px;}
.y44{bottom:809.205000px;}
.y10{bottom:810.645000px;}
.yae{bottom:814.605000px;}
.y66{bottom:821.265000px;}
.y43{bottom:830.265000px;}
.yf{bottom:831.525000px;}
.yad{bottom:835.665000px;}
.y42{bottom:851.370000px;}
.ye{bottom:852.630000px;}
.yac{bottom:856.770000px;}
.y41{bottom:872.430000px;}
.yd{bottom:873.870000px;}
.yab{bottom:877.830000px;}
.y40{bottom:893.490000px;}
.yc{bottom:897.090000px;}
.yaa{bottom:898.890000px;}
.y3f{bottom:914.550000px;}
.ya9{bottom:919.950000px;}
.yb{bottom:923.370000px;}
.y3e{bottom:935.610000px;}
.ya8{bottom:936.510000px;}
.ya{bottom:940.110000px;}
.y3d{bottom:956.670000px;}
.y9{bottom:962.430000px;}
.y3c{bottom:977.730000px;}
.ya7{bottom:980.970000px;}
.y8{bottom:987.630000px;}
.y3b{bottom:998.790000px;}
.ya6{bottom:1004.190000px;}
.y3a{bottom:1019.850000px;}
.y7{bottom:1021.290000px;}
.ya5{bottom:1027.590000px;}
.y39{bottom:1040.910000px;}
.y5{bottom:1061.430000px;}
.y38{bottom:1061.970000px;}
.ya3{bottom:1071.870000px;}
.y37{bottom:1083.030000px;}
.y4{bottom:1093.470000px;}
.y36{bottom:1104.090000px;}
.ya1{bottom:1116.330000px;}
.y35{bottom:1125.150000px;}
.y3{bottom:1125.690000px;}
.y34{bottom:1146.240000px;}
.y2{bottom:1157.940000px;}
.y33{bottom:1174.140000px;}
.y1{bottom:1192.500000px;}
.y32{bottom:1194.300000px;}
.hf{height:2.864531px;}
.hd{height:21.060000px;}
.hb{height:21.096000px;}
.h7{height:38.671172px;}
.hc{height:42.120000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.he{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:205.770000px;}
.w5{width:210.810000px;}
.w4{width:556.485000px;}
.w6{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:6.840000px;}
.xe{left:8.100000px;}
.x1{left:53.999987px;}
.x4{left:56.340000px;}
.xb{left:75.239987px;}
.x2{left:80.999987px;}
.xc{left:102.275987px;}
.x3{left:108.035987px;}
.xd{left:191.370000px;}
.x6{left:264.450000px;}
.x9{left:324.254987px;}
.x8{left:335.054987px;}
.x7{left:359.534987px;}
.xa{left:446.474987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.928000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls16{letter-spacing:-0.368000pt;}
.lsa{letter-spacing:-0.289067pt;}
.ls18{letter-spacing:-0.213867pt;}
.ls12{letter-spacing:-0.146133pt;}
.ls13{letter-spacing:-0.090667pt;}
.ls15{letter-spacing:-0.059733pt;}
.ls1d{letter-spacing:-0.057600pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.155733pt;}
.ls9{letter-spacing:0.169067pt;}
.ls7{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.257067pt;}
.lsf{letter-spacing:0.272000pt;}
.ls1c{letter-spacing:0.426240pt;}
.ls17{letter-spacing:0.549120pt;}
.ls14{letter-spacing:0.566400pt;}
.ls11{letter-spacing:0.805333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1b{letter-spacing:37.840640pt;}
.ls4{letter-spacing:40.272640pt;}
.ls19{letter-spacing:40.912640pt;}
.lsd{letter-spacing:57.040640pt;}
.lse{letter-spacing:180.122880pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws4{word-spacing:-19.494187pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.017813pt;}
.ws1{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.945387pt;}
.ws5{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.472853pt;}
._14{margin-left:-4.250027pt;}
._6{margin-left:-2.944000pt;}
._11{margin-left:-2.012160pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._e{width:2.297387pt;}
._b{width:3.505920pt;}
._a{width:4.678400pt;}
._10{width:5.814187pt;}
._12{width:7.491840pt;}
._c{width:8.446080pt;}
._d{width:9.387733pt;}
._15{width:11.048960pt;}
._16{width:13.085227pt;}
._17{width:14.554880pt;}
._13{width:15.670400pt;}
._f{width:17.476480pt;}
._8{width:25.147733pt;}
._7{width:26.131840pt;}
._9{width:28.064853pt;}
._19{width:42.630187pt;}
._18{width:180.122880pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:5.920000pt;}
.yef{bottom:6.240000pt;}
.ya4{bottom:24.640000pt;}
.yee{bottom:24.960000pt;}
.yeb{bottom:31.520000pt;}
.yed{bottom:44.000000pt;}
.y6{bottom:53.632000pt;}
.yec{bottom:62.714667pt;}
.yd0{bottom:79.552000pt;}
.yea{bottom:81.792000pt;}
.ya0{bottom:82.912000pt;}
.y87{bottom:88.352000pt;}
.y31{bottom:92.832000pt;}
.y65{bottom:94.912000pt;}
.ycf{bottom:98.272000pt;}
.y9f{bottom:101.632000pt;}
.y86{bottom:107.072000pt;}
.y30{bottom:111.552000pt;}
.y64{bottom:113.632000pt;}
.yce{bottom:116.992000pt;}
.y9e{bottom:120.352000pt;}
.y85{bottom:125.792000pt;}
.y63{bottom:129.952000pt;}
.y2f{bottom:130.272000pt;}
.ycd{bottom:135.706667pt;}
.y9d{bottom:139.066667pt;}
.y84{bottom:144.506667pt;}
.y62{bottom:148.666667pt;}
.y2e{bottom:148.826667pt;}
.ycc{bottom:154.426667pt;}
.y9c{bottom:157.786667pt;}
.yd6{bottom:161.786667pt;}
.y83{bottom:163.226667pt;}
.y61{bottom:167.386667pt;}
.y2d{bottom:167.546667pt;}
.ycb{bottom:173.146667pt;}
.y9b{bottom:176.506667pt;}
.y82{bottom:181.946667pt;}
.y60{bottom:186.106667pt;}
.y2c{bottom:186.266667pt;}
.yca{bottom:191.866667pt;}
.y9a{bottom:195.226667pt;}
.y81{bottom:200.666667pt;}
.y5f{bottom:204.826667pt;}
.y2b{bottom:204.986667pt;}
.yc9{bottom:210.586667pt;}
.y99{bottom:213.946667pt;}
.y5e{bottom:223.546667pt;}
.y2a{bottom:223.706667pt;}
.ye9{bottom:225.306667pt;}
.y80{bottom:227.386667pt;}
.yc8{bottom:229.306667pt;}
.y98{bottom:232.666667pt;}
.y5d{bottom:242.266667pt;}
.y29{bottom:242.426667pt;}
.ye8{bottom:244.026667pt;}
.y7f{bottom:246.106667pt;}
.yc7{bottom:248.026667pt;}
.y97{bottom:251.426667pt;}
.y5c{bottom:261.026667pt;}
.ye7{bottom:262.786667pt;}
.y28{bottom:263.426667pt;}
.y7e{bottom:264.866667pt;}
.yc6{bottom:266.786667pt;}
.y96{bottom:270.146667pt;}
.y5b{bottom:280.386667pt;}
.ye6{bottom:281.506667pt;}
.y27{bottom:281.986667pt;}
.y7d{bottom:283.586667pt;}
.yc5{bottom:285.506667pt;}
.y95{bottom:288.866667pt;}
.y5a{bottom:299.266667pt;}
.ye5{bottom:300.226667pt;}
.y26{bottom:300.706667pt;}
.y7c{bottom:302.306667pt;}
.yc4{bottom:304.226667pt;}
.y94{bottom:307.586667pt;}
.y59{bottom:318.626667pt;}
.ye4{bottom:318.946667pt;}
.y25{bottom:319.426667pt;}
.y7b{bottom:321.026667pt;}
.yc3{bottom:322.946667pt;}
.y93{bottom:326.306667pt;}
.y58{bottom:337.346667pt;}
.ye3{bottom:337.666667pt;}
.y24{bottom:338.146667pt;}
.y7a{bottom:339.746667pt;}
.yc2{bottom:341.666667pt;}
.y92{bottom:345.026667pt;}
.ye2{bottom:356.386667pt;}
.y57{bottom:356.706667pt;}
.y23{bottom:356.866667pt;}
.y79{bottom:358.466667pt;}
.y91{bottom:363.746667pt;}
.yc1{bottom:368.386667pt;}
.ye1{bottom:375.106667pt;}
.y56{bottom:375.426667pt;}
.y22{bottom:375.586667pt;}
.y90{bottom:382.466667pt;}
.y78{bottom:385.186667pt;}
.yc0{bottom:387.106667pt;}
.ye0{bottom:393.826667pt;}
.y21{bottom:394.306667pt;}
.y55{bottom:394.786667pt;}
.y8f{bottom:401.186667pt;}
.y77{bottom:403.906667pt;}
.ybf{bottom:405.826667pt;}
.ydf{bottom:412.546667pt;}
.y20{bottom:413.026667pt;}
.y54{bottom:413.666667pt;}
.y8e{bottom:419.906667pt;}
.y76{bottom:422.626667pt;}
.ybe{bottom:424.546667pt;}
.yde{bottom:431.266667pt;}
.y1f{bottom:431.746667pt;}
.y53{bottom:433.026667pt;}
.y8d{bottom:438.626667pt;}
.y75{bottom:441.346667pt;}
.ybd{bottom:443.266667pt;}
.ydd{bottom:449.986667pt;}
.y1e{bottom:450.466667pt;}
.y52{bottom:451.746667pt;}
.y8c{bottom:457.346667pt;}
.y74{bottom:459.906667pt;}
.ybc{bottom:461.986667pt;}
.ydc{bottom:468.706667pt;}
.y51{bottom:470.466667pt;}
.y8b{bottom:475.906667pt;}
.y1d{bottom:477.186667pt;}
.y73{bottom:478.626667pt;}
.ybb{bottom:480.706667pt;}
.ydb{bottom:487.426667pt;}
.y50{bottom:489.186667pt;}
.y8a{bottom:494.626667pt;}
.y1c{bottom:495.906667pt;}
.y72{bottom:497.346667pt;}
.yba{bottom:499.426667pt;}
.yd5{bottom:506.173333pt;}
.y4f{bottom:507.933333pt;}
.y89{bottom:513.373333pt;}
.y1b{bottom:514.653333pt;}
.y71{bottom:516.093333pt;}
.yb9{bottom:518.173333pt;}
.y4e{bottom:524.253333pt;}
.yd4{bottom:524.893333pt;}
.y88{bottom:532.093333pt;}
.y1a{bottom:533.373333pt;}
.y70{bottom:534.813333pt;}
.yb8{bottom:536.893333pt;}
.yd3{bottom:543.613333pt;}
.y4d{bottom:550.813333pt;}
.y19{bottom:552.093333pt;}
.y6f{bottom:553.533333pt;}
.yb7{bottom:555.613333pt;}
.yd2{bottom:562.333333pt;}
.y4c{bottom:569.533333pt;}
.y18{bottom:570.813333pt;}
.y6e{bottom:572.253333pt;}
.yb6{bottom:574.333333pt;}
.yd1{bottom:581.053333pt;}
.y4b{bottom:588.253333pt;}
.y17{bottom:589.533333pt;}
.yb5{bottom:593.053333pt;}
.y6d{bottom:598.973333pt;}
.yda{bottom:599.773333pt;}
.y4a{bottom:606.973333pt;}
.y16{bottom:608.253333pt;}
.yb4{bottom:611.773333pt;}
.y6c{bottom:617.693333pt;}
.yd9{bottom:618.493333pt;}
.y49{bottom:625.693333pt;}
.y15{bottom:626.973333pt;}
.yb3{bottom:630.493333pt;}
.y6b{bottom:636.413333pt;}
.yd8{bottom:637.213333pt;}
.y48{bottom:644.413333pt;}
.y14{bottom:645.693333pt;}
.yb2{bottom:649.213333pt;}
.y6a{bottom:655.133333pt;}
.yd7{bottom:655.933333pt;}
.y47{bottom:663.133333pt;}
.y13{bottom:664.413333pt;}
.yb1{bottom:667.933333pt;}
.y69{bottom:673.853333pt;}
.y46{bottom:681.853333pt;}
.y12{bottom:683.133333pt;}
.yb0{bottom:686.653333pt;}
.y68{bottom:692.573333pt;}
.y45{bottom:700.573333pt;}
.y11{bottom:701.853333pt;}
.yaf{bottom:705.373333pt;}
.y67{bottom:711.293333pt;}
.y44{bottom:719.293333pt;}
.y10{bottom:720.573333pt;}
.yae{bottom:724.093333pt;}
.y66{bottom:730.013333pt;}
.y43{bottom:738.013333pt;}
.yf{bottom:739.133333pt;}
.yad{bottom:742.813333pt;}
.y42{bottom:756.773333pt;}
.ye{bottom:757.893333pt;}
.yac{bottom:761.573333pt;}
.y41{bottom:775.493333pt;}
.yd{bottom:776.773333pt;}
.yab{bottom:780.293333pt;}
.y40{bottom:794.213333pt;}
.yc{bottom:797.413333pt;}
.yaa{bottom:799.013333pt;}
.y3f{bottom:812.933333pt;}
.ya9{bottom:817.733333pt;}
.yb{bottom:820.773333pt;}
.y3e{bottom:831.653333pt;}
.ya8{bottom:832.453333pt;}
.ya{bottom:835.653333pt;}
.y3d{bottom:850.373333pt;}
.y9{bottom:855.493333pt;}
.y3c{bottom:869.093333pt;}
.ya7{bottom:871.973333pt;}
.y8{bottom:877.893333pt;}
.y3b{bottom:887.813333pt;}
.ya6{bottom:892.613333pt;}
.y3a{bottom:906.533333pt;}
.y7{bottom:907.813333pt;}
.ya5{bottom:913.413333pt;}
.y39{bottom:925.253333pt;}
.y5{bottom:943.493333pt;}
.y38{bottom:943.973333pt;}
.ya3{bottom:952.773333pt;}
.y37{bottom:962.693333pt;}
.y4{bottom:971.973333pt;}
.y36{bottom:981.413333pt;}
.ya1{bottom:992.293333pt;}
.y35{bottom:1000.133333pt;}
.y3{bottom:1000.613333pt;}
.y34{bottom:1018.880000pt;}
.y2{bottom:1029.280000pt;}
.y33{bottom:1043.680000pt;}
.y1{bottom:1060.000000pt;}
.y32{bottom:1061.600000pt;}
.hf{height:2.546250pt;}
.hd{height:18.720000pt;}
.hb{height:18.752000pt;}
.h7{height:34.374375pt;}
.hc{height:37.440000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.he{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:182.906667pt;}
.w5{width:187.386667pt;}
.w4{width:494.653333pt;}
.w6{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.080000pt;}
.xe{left:7.200000pt;}
.x1{left:47.999988pt;}
.x4{left:50.080000pt;}
.xb{left:66.879988pt;}
.x2{left:71.999988pt;}
.xc{left:90.911988pt;}
.x3{left:96.031988pt;}
.xd{left:170.106667pt;}
.x6{left:235.066667pt;}
.x9{left:288.226655pt;}
.x8{left:297.826655pt;}
.x7{left:319.586655pt;}
.xa{left:396.866655pt;}
}




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