
    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_9d168d4e695fa39654875e82.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_a2b748d5a121008c902e15e0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_1d94f0ac0597644db8546de6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_946a531fe6afa56244aeb753.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_fd25fc07e06bded32e2ac422.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_e946959d0c693d7efd656115.woff')format("woff");}.ff6{font-family:ff6;line-height:0.693359;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_d704c73e9fddc0bd70010cd8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.705078;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_053ba70c5a3e89786ad6576b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.675293;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_aab8b2e499044dc3fdf76f0a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_a3678c54cb3875a59fc35bd7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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:ffb;src:url('chunks/assets/font_80f0f72bab2c96fbec412669.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_341adccb5c8adef8974c5527.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cdd89e5f47a56248a2f4b533.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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:ffe;src:url('chunks/assets/font_c7156d7b5d66947a5a8e1d62.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c37c596552246bc3157c7627.woff')format("woff");}.fff{font-family:fff;line-height:0.908691;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls13{letter-spacing:-0.463104px;}
.ls18{letter-spacing:-0.417312px;}
.ls3{letter-spacing:-0.328032px;}
.ls15{letter-spacing:-0.320544px;}
.ls10{letter-spacing:-0.318384px;}
.lsf{letter-spacing:-0.260064px;}
.lsb{letter-spacing:-0.247104px;}
.lsa{letter-spacing:-0.234432px;}
.ls8{letter-spacing:-0.228096px;}
.ls16{letter-spacing:-0.223776px;}
.ls7{letter-spacing:-0.209088px;}
.ls9{letter-spacing:-0.183744px;}
.ls5{letter-spacing:-0.173664px;}
.lse{letter-spacing:-0.157248px;}
.ls14{letter-spacing:-0.145152px;}
.ls19{letter-spacing:-0.120960px;}
.lsd{letter-spacing:-0.120384px;}
.ls1a{letter-spacing:-0.103680px;}
.ls1b{letter-spacing:-0.089856px;}
.lsc{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.159840px;}
.ls12{letter-spacing:0.160128px;}
.ls6{letter-spacing:0.237600px;}
.ls17{letter-spacing:0.239040px;}
.ls1{letter-spacing:198.000000px;}
.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;}
}
.ws7{word-spacing:-29.246400px;}
.ws2{word-spacing:-23.946336px;}
.wsb{word-spacing:-23.801616px;}
.ws0{word-spacing:-23.791968px;}
.wsd{word-spacing:-23.656896px;}
.ws1{word-spacing:-18.014400px;}
.wsf{word-spacing:-18.000000px;}
.wse{word-spacing:-17.985600px;}
.ws9{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.962752px;}
.ws6{word-spacing:-12.678336px;}
.ws4{word-spacing:-12.633984px;}
.ws5{word-spacing:-12.614976px;}
.ws3{word-spacing:-0.285120px;}
.ws11{word-spacing:-0.069120px;}
.wsc{word-spacing:-0.047520px;}
.ws8{word-spacing:0.000000px;}
.ws13{word-spacing:0.020736px;}
.ws12{word-spacing:0.034560px;}
._0{margin-left:-1.061280px;}
._1{width:1.013760px;}
._2{width:198.000000px;}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(20,20,19);}
.fc4{color:rgb(42,42,42);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs6{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y97{bottom:3.540000px;}
.ya2{bottom:4.680000px;}
.yad{bottom:5.100000px;}
.ya6{bottom:5.340000px;}
.yab{bottom:5.700000px;}
.ya4{bottom:5.940000px;}
.y33{bottom:6.300000px;}
.y3{bottom:6.540000px;}
.y39{bottom:8.340000px;}
.y36{bottom:10.680000px;}
.y96{bottom:20.820000px;}
.y32{bottom:25.740000px;}
.y95{bottom:38.100000px;}
.y31{bottom:45.180000px;}
.y35{bottom:45.960000px;}
.y2{bottom:52.500000px;}
.y1{bottom:59.040000px;}
.y30{bottom:64.260000px;}
.y2f{bottom:83.340000px;}
.y93{bottom:91.800000px;}
.yc2{bottom:98.640000px;}
.y2d{bottom:105.840000px;}
.y92{bottom:112.320000px;}
.yc1{bottom:119.520000px;}
.y2c{bottom:126.720000px;}
.y91{bottom:133.200000px;}
.yc0{bottom:140.040000px;}
.y2b{bottom:147.240000px;}
.y66{bottom:152.640000px;}
.ybf{bottom:160.920000px;}
.y90{bottom:165.600000px;}
.y2a{bottom:168.120000px;}
.y65{bottom:173.520000px;}
.ybe{bottom:182.520000px;}
.y8f{bottom:186.480000px;}
.y64{bottom:194.400000px;}
.y29{bottom:200.520000px;}
.y8e{bottom:207.360000px;}
.ybd{bottom:209.160000px;}
.y63{bottom:214.920000px;}
.y28{bottom:221.400000px;}
.y8d{bottom:227.880000px;}
.y62{bottom:235.800000px;}
.ybc{bottom:241.200000px;}
.y27{bottom:242.280000px;}
.y8c{bottom:248.760000px;}
.y61{bottom:256.320000px;}
.ybb{bottom:262.440000px;}
.y26{bottom:262.800000px;}
.y60{bottom:277.200000px;}
.y8b{bottom:280.800000px;}
.yba{bottom:282.960000px;}
.y25{bottom:283.320000px;}
.y5f{bottom:297.720000px;}
.y8a{bottom:302.040000px;}
.yb9{bottom:303.840000px;}
.y24{bottom:304.200000px;}
.y5e{bottom:318.600000px;}
.y89{bottom:322.560000px;}
.yb8{bottom:324.360000px;}
.y23{bottom:324.720000px;}
.y5d{bottom:339.120000px;}
.y88{bottom:343.440000px;}
.yb7{bottom:345.240000px;}
.y22{bottom:345.600000px;}
.y5c{bottom:360.000000px;}
.y87{bottom:363.960000px;}
.y21{bottom:366.120000px;}
.yb6{bottom:366.840000px;}
.yd9{bottom:379.800000px;}
.y86{bottom:384.840000px;}
.y20{bottom:387.000000px;}
.y5b{bottom:392.400000px;}
.yb5{bottom:393.480000px;}
.yd8{bottom:401.040000px;}
.y85{bottom:405.360000px;}
.y1f{bottom:407.520000px;}
.y5a{bottom:413.280000px;}
.yd7{bottom:421.560000px;}
.yb4{bottom:425.880000px;}
.y84{bottom:426.240000px;}
.y1e{bottom:428.400000px;}
.y59{bottom:434.160000px;}
.y83{bottom:446.760000px;}
.y1d{bottom:450.000000px;}
.yd6{bottom:453.960000px;}
.y58{bottom:454.680000px;}
.y82{bottom:467.640000px;}
.yd5{bottom:475.200000px;}
.y57{bottom:475.560000px;}
.y1c{bottom:476.640000px;}
.y81{bottom:488.160000px;}
.yd4{bottom:495.720000px;}
.y56{bottom:496.080000px;}
.y1b{bottom:509.040000px;}
.y55{bottom:516.960000px;}
.yd3{bottom:528.120000px;}
.y80{bottom:529.560000px;}
.y1a{bottom:529.920000px;}
.y54{bottom:537.480000px;}
.yd2{bottom:549.360000px;}
.y7f{bottom:550.440000px;}
.y19{bottom:550.800000px;}
.y53{bottom:558.360000px;}
.y7e{bottom:570.960000px;}
.y18{bottom:571.320000px;}
.y52{bottom:578.880000px;}
.yd1{bottom:581.400000px;}
.yb3{bottom:591.840000px;}
.y17{bottom:592.200000px;}
.y7d{bottom:592.560000px;}
.y51{bottom:599.760000px;}
.yd0{bottom:602.640000px;}
.yb2{bottom:612.360000px;}
.y16{bottom:612.720000px;}
.y7c{bottom:619.560000px;}
.y50{bottom:620.280000px;}
.y15{bottom:633.600000px;}
.yb1{bottom:633.960000px;}
.ycf{bottom:635.040000px;}
.y7b{bottom:640.080000px;}
.y4f{bottom:641.160000px;}
.y14{bottom:654.120000px;}
.yce{bottom:655.920000px;}
.y7a{bottom:660.960000px;}
.yb0{bottom:661.680000px;}
.y4e{bottom:662.760000px;}
.y94{bottom:667.500000px;}
.y13{bottom:675.000000px;}
.y79{bottom:681.480000px;}
.yaf{bottom:687.600000px;}
.y4d{bottom:687.960000px;}
.ycd{bottom:688.320000px;}
.y12{bottom:695.520000px;}
.y78{bottom:702.360000px;}
.y4c{bottom:704.160000px;}
.yae{bottom:704.880000px;}
.ycc{bottom:709.560000px;}
.y11{bottom:716.400000px;}
.yac{bottom:718.500000px;}
.y77{bottom:722.880000px;}
.y4b{bottom:731.520000px;}
.y10{bottom:736.920000px;}
.yaa{bottom:739.500000px;}
.ycb{bottom:741.600000px;}
.y76{bottom:743.760000px;}
.yf{bottom:757.800000px;}
.y4a{bottom:758.160000px;}
.yca{bottom:762.840000px;}
.y75{bottom:764.280000px;}
.ya9{bottom:766.440000px;}
.y49{bottom:777.960000px;}
.ye{bottom:778.320000px;}
.yc9{bottom:783.360000px;}
.y74{bottom:785.160000px;}
.ya8{bottom:787.320000px;}
.y48{bottom:795.600000px;}
.yd{bottom:799.920000px;}
.y73{bottom:805.680000px;}
.ya7{bottom:807.120000px;}
.y47{bottom:814.320000px;}
.yc8{bottom:815.760000px;}
.ya5{bottom:820.500000px;}
.y72{bottom:826.560000px;}
.yc{bottom:826.920000px;}
.y46{bottom:835.200000px;}
.yc7{bottom:837.000000px;}
.ya3{bottom:841.500000px;}
.y71{bottom:847.080000px;}
.yb{bottom:847.440000px;}
.y45{bottom:855.720000px;}
.yc6{bottom:857.520000px;}
.ya1{bottom:864.000000px;}
.y70{bottom:867.960000px;}
.ya{bottom:868.320000px;}
.y44{bottom:876.600000px;}
.y6f{bottom:888.480000px;}
.y9{bottom:888.840000px;}
.yc5{bottom:889.920000px;}
.ya0{bottom:890.280000px;}
.y43{bottom:897.120000px;}
.y6e{bottom:909.360000px;}
.y8{bottom:911.160000px;}
.y42{bottom:918.000000px;}
.y6d{bottom:929.880000px;}
.yc4{bottom:931.680000px;}
.y41{bottom:938.520000px;}
.y7{bottom:942.480000px;}
.y9f{bottom:943.200000px;}
.y6c{bottom:950.400000px;}
.yc3{bottom:953.280000px;}
.y40{bottom:959.400000px;}
.y9e{bottom:964.440000px;}
.y6b{bottom:971.280000px;}
.y6{bottom:973.440000px;}
.y3f{bottom:979.920000px;}
.y9d{bottom:984.960000px;}
.y6a{bottom:991.800000px;}
.y3e{bottom:1000.800000px;}
.y5{bottom:1001.160000px;}
.y9c{bottom:1005.840000px;}
.y4{bottom:1012.320000px;}
.y69{bottom:1012.680000px;}
.y3d{bottom:1021.320000px;}
.y2e{bottom:1021.500000px;}
.y9b{bottom:1026.360000px;}
.y68{bottom:1033.200000px;}
.y34{bottom:1047.000000px;}
.y9a{bottom:1047.240000px;}
.y3c{bottom:1053.720000px;}
.y67{bottom:1054.080000px;}
.y99{bottom:1067.760000px;}
.y3b{bottom:1074.600000px;}
.y98{bottom:1089.360000px;}
.y3a{bottom:1095.480000px;}
.y37{bottom:1117.080000px;}
.y38{bottom:1132.500000px;}
.h11{height:22.500000px;}
.h2{height:24.000000px;}
.h4{height:31.672266px;}
.h10{height:41.993438px;}
.ha{height:42.229688px;}
.hd{height:42.941250px;}
.he{height:43.993125px;}
.h1{height:47.988281px;}
.h7{height:48.796875px;}
.h3{height:51.679688px;}
.hf{height:52.500000px;}
.h8{height:57.428438px;}
.h6{height:65.387813px;}
.h5{height:73.195313px;}
.hb{height:73.500000px;}
.hc{height:95.976563px;}
.h9{height:99.000000px;}
.h0{height:1188.000000px;}
.w1{width:12.000000px;}
.w7{width:121.500000px;}
.w3{width:175.500000px;}
.w6{width:229.500000px;}
.w9{width:256.500000px;}
.w8{width:270.000000px;}
.w2{width:280.500000px;}
.w4{width:489.000000px;}
.w5{width:522.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:1.320000px;}
.x1a{left:8.640000px;}
.x19{left:11.219964px;}
.x10{left:18.960960px;}
.x11{left:21.632880px;}
.x18{left:52.500000px;}
.x1{left:54.000000px;}
.xe{left:55.434120px;}
.x6{left:69.391836px;}
.x8{left:108.000000px;}
.xa{left:134.853000px;}
.x13{left:153.636360px;}
.xd{left:175.766280px;}
.xb{left:192.162120px;}
.xc{left:204.451440px;}
.x1b{left:229.500000px;}
.x1c{left:324.000000px;}
.x7{left:325.496340px;}
.x12{left:376.500000px;}
.x14{left:431.325000px;}
.x2{left:453.000000px;}
.x5{left:459.000000px;}
.x15{left:485.325000px;}
.xf{left:501.000000px;}
.x9{left:579.000000px;}
.x17{left:594.000000px;}
.x16{left:648.000000px;}
.x4{left:864.000000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls13{letter-spacing:-0.411648pt;}
.ls18{letter-spacing:-0.370944pt;}
.ls3{letter-spacing:-0.291584pt;}
.ls15{letter-spacing:-0.284928pt;}
.ls10{letter-spacing:-0.283008pt;}
.lsf{letter-spacing:-0.231168pt;}
.lsb{letter-spacing:-0.219648pt;}
.lsa{letter-spacing:-0.208384pt;}
.ls8{letter-spacing:-0.202752pt;}
.ls16{letter-spacing:-0.198912pt;}
.ls7{letter-spacing:-0.185856pt;}
.ls9{letter-spacing:-0.163328pt;}
.ls5{letter-spacing:-0.154368pt;}
.lse{letter-spacing:-0.139776pt;}
.ls14{letter-spacing:-0.129024pt;}
.ls19{letter-spacing:-0.107520pt;}
.lsd{letter-spacing:-0.107008pt;}
.ls1a{letter-spacing:-0.092160pt;}
.ls1b{letter-spacing:-0.079872pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.142080pt;}
.ls12{letter-spacing:0.142336pt;}
.ls6{letter-spacing:0.211200pt;}
.ls17{letter-spacing:0.212480pt;}
.ls1{letter-spacing:176.000000pt;}
.ws7{word-spacing:-25.996800pt;}
.ws2{word-spacing:-21.285632pt;}
.wsb{word-spacing:-21.156992pt;}
.ws0{word-spacing:-21.148416pt;}
.wsd{word-spacing:-21.028352pt;}
.ws1{word-spacing:-16.012800pt;}
.wsf{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.987200pt;}
.ws9{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.300224pt;}
.ws6{word-spacing:-11.269632pt;}
.ws4{word-spacing:-11.230208pt;}
.ws5{word-spacing:-11.213312pt;}
.ws3{word-spacing:-0.253440pt;}
.ws11{word-spacing:-0.061440pt;}
.wsc{word-spacing:-0.042240pt;}
.ws8{word-spacing:0.000000pt;}
.ws13{word-spacing:0.018432pt;}
.ws12{word-spacing:0.030720pt;}
._0{margin-left:-0.943360pt;}
._1{width:0.901120pt;}
._2{width:176.000000pt;}
.fs1{font-size:42.240000pt;}
.fs6{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:3.146667pt;}
.ya2{bottom:4.160000pt;}
.yad{bottom:4.533333pt;}
.ya6{bottom:4.746667pt;}
.yab{bottom:5.066667pt;}
.ya4{bottom:5.280000pt;}
.y33{bottom:5.600000pt;}
.y3{bottom:5.813333pt;}
.y39{bottom:7.413333pt;}
.y36{bottom:9.493333pt;}
.y96{bottom:18.506667pt;}
.y32{bottom:22.880000pt;}
.y95{bottom:33.866667pt;}
.y31{bottom:40.160000pt;}
.y35{bottom:40.853333pt;}
.y2{bottom:46.666667pt;}
.y1{bottom:52.480000pt;}
.y30{bottom:57.120000pt;}
.y2f{bottom:74.080000pt;}
.y93{bottom:81.600000pt;}
.yc2{bottom:87.680000pt;}
.y2d{bottom:94.080000pt;}
.y92{bottom:99.840000pt;}
.yc1{bottom:106.240000pt;}
.y2c{bottom:112.640000pt;}
.y91{bottom:118.400000pt;}
.yc0{bottom:124.480000pt;}
.y2b{bottom:130.880000pt;}
.y66{bottom:135.680000pt;}
.ybf{bottom:143.040000pt;}
.y90{bottom:147.200000pt;}
.y2a{bottom:149.440000pt;}
.y65{bottom:154.240000pt;}
.ybe{bottom:162.240000pt;}
.y8f{bottom:165.760000pt;}
.y64{bottom:172.800000pt;}
.y29{bottom:178.240000pt;}
.y8e{bottom:184.320000pt;}
.ybd{bottom:185.920000pt;}
.y63{bottom:191.040000pt;}
.y28{bottom:196.800000pt;}
.y8d{bottom:202.560000pt;}
.y62{bottom:209.600000pt;}
.ybc{bottom:214.400000pt;}
.y27{bottom:215.360000pt;}
.y8c{bottom:221.120000pt;}
.y61{bottom:227.840000pt;}
.ybb{bottom:233.280000pt;}
.y26{bottom:233.600000pt;}
.y60{bottom:246.400000pt;}
.y8b{bottom:249.600000pt;}
.yba{bottom:251.520000pt;}
.y25{bottom:251.840000pt;}
.y5f{bottom:264.640000pt;}
.y8a{bottom:268.480000pt;}
.yb9{bottom:270.080000pt;}
.y24{bottom:270.400000pt;}
.y5e{bottom:283.200000pt;}
.y89{bottom:286.720000pt;}
.yb8{bottom:288.320000pt;}
.y23{bottom:288.640000pt;}
.y5d{bottom:301.440000pt;}
.y88{bottom:305.280000pt;}
.yb7{bottom:306.880000pt;}
.y22{bottom:307.200000pt;}
.y5c{bottom:320.000000pt;}
.y87{bottom:323.520000pt;}
.y21{bottom:325.440000pt;}
.yb6{bottom:326.080000pt;}
.yd9{bottom:337.600000pt;}
.y86{bottom:342.080000pt;}
.y20{bottom:344.000000pt;}
.y5b{bottom:348.800000pt;}
.yb5{bottom:349.760000pt;}
.yd8{bottom:356.480000pt;}
.y85{bottom:360.320000pt;}
.y1f{bottom:362.240000pt;}
.y5a{bottom:367.360000pt;}
.yd7{bottom:374.720000pt;}
.yb4{bottom:378.560000pt;}
.y84{bottom:378.880000pt;}
.y1e{bottom:380.800000pt;}
.y59{bottom:385.920000pt;}
.y83{bottom:397.120000pt;}
.y1d{bottom:400.000000pt;}
.yd6{bottom:403.520000pt;}
.y58{bottom:404.160000pt;}
.y82{bottom:415.680000pt;}
.yd5{bottom:422.400000pt;}
.y57{bottom:422.720000pt;}
.y1c{bottom:423.680000pt;}
.y81{bottom:433.920000pt;}
.yd4{bottom:440.640000pt;}
.y56{bottom:440.960000pt;}
.y1b{bottom:452.480000pt;}
.y55{bottom:459.520000pt;}
.yd3{bottom:469.440000pt;}
.y80{bottom:470.720000pt;}
.y1a{bottom:471.040000pt;}
.y54{bottom:477.760000pt;}
.yd2{bottom:488.320000pt;}
.y7f{bottom:489.280000pt;}
.y19{bottom:489.600000pt;}
.y53{bottom:496.320000pt;}
.y7e{bottom:507.520000pt;}
.y18{bottom:507.840000pt;}
.y52{bottom:514.560000pt;}
.yd1{bottom:516.800000pt;}
.yb3{bottom:526.080000pt;}
.y17{bottom:526.400000pt;}
.y7d{bottom:526.720000pt;}
.y51{bottom:533.120000pt;}
.yd0{bottom:535.680000pt;}
.yb2{bottom:544.320000pt;}
.y16{bottom:544.640000pt;}
.y7c{bottom:550.720000pt;}
.y50{bottom:551.360000pt;}
.y15{bottom:563.200000pt;}
.yb1{bottom:563.520000pt;}
.ycf{bottom:564.480000pt;}
.y7b{bottom:568.960000pt;}
.y4f{bottom:569.920000pt;}
.y14{bottom:581.440000pt;}
.yce{bottom:583.040000pt;}
.y7a{bottom:587.520000pt;}
.yb0{bottom:588.160000pt;}
.y4e{bottom:589.120000pt;}
.y94{bottom:593.333333pt;}
.y13{bottom:600.000000pt;}
.y79{bottom:605.760000pt;}
.yaf{bottom:611.200000pt;}
.y4d{bottom:611.520000pt;}
.ycd{bottom:611.840000pt;}
.y12{bottom:618.240000pt;}
.y78{bottom:624.320000pt;}
.y4c{bottom:625.920000pt;}
.yae{bottom:626.560000pt;}
.ycc{bottom:630.720000pt;}
.y11{bottom:636.800000pt;}
.yac{bottom:638.666667pt;}
.y77{bottom:642.560000pt;}
.y4b{bottom:650.240000pt;}
.y10{bottom:655.040000pt;}
.yaa{bottom:657.333333pt;}
.ycb{bottom:659.200000pt;}
.y76{bottom:661.120000pt;}
.yf{bottom:673.600000pt;}
.y4a{bottom:673.920000pt;}
.yca{bottom:678.080000pt;}
.y75{bottom:679.360000pt;}
.ya9{bottom:681.280000pt;}
.y49{bottom:691.520000pt;}
.ye{bottom:691.840000pt;}
.yc9{bottom:696.320000pt;}
.y74{bottom:697.920000pt;}
.ya8{bottom:699.840000pt;}
.y48{bottom:707.200000pt;}
.yd{bottom:711.040000pt;}
.y73{bottom:716.160000pt;}
.ya7{bottom:717.440000pt;}
.y47{bottom:723.840000pt;}
.yc8{bottom:725.120000pt;}
.ya5{bottom:729.333333pt;}
.y72{bottom:734.720000pt;}
.yc{bottom:735.040000pt;}
.y46{bottom:742.400000pt;}
.yc7{bottom:744.000000pt;}
.ya3{bottom:748.000000pt;}
.y71{bottom:752.960000pt;}
.yb{bottom:753.280000pt;}
.y45{bottom:760.640000pt;}
.yc6{bottom:762.240000pt;}
.ya1{bottom:768.000000pt;}
.y70{bottom:771.520000pt;}
.ya{bottom:771.840000pt;}
.y44{bottom:779.200000pt;}
.y6f{bottom:789.760000pt;}
.y9{bottom:790.080000pt;}
.yc5{bottom:791.040000pt;}
.ya0{bottom:791.360000pt;}
.y43{bottom:797.440000pt;}
.y6e{bottom:808.320000pt;}
.y8{bottom:809.920000pt;}
.y42{bottom:816.000000pt;}
.y6d{bottom:826.560000pt;}
.yc4{bottom:828.160000pt;}
.y41{bottom:834.240000pt;}
.y7{bottom:837.760000pt;}
.y9f{bottom:838.400000pt;}
.y6c{bottom:844.800000pt;}
.yc3{bottom:847.360000pt;}
.y40{bottom:852.800000pt;}
.y9e{bottom:857.280000pt;}
.y6b{bottom:863.360000pt;}
.y6{bottom:865.280000pt;}
.y3f{bottom:871.040000pt;}
.y9d{bottom:875.520000pt;}
.y6a{bottom:881.600000pt;}
.y3e{bottom:889.600000pt;}
.y5{bottom:889.920000pt;}
.y9c{bottom:894.080000pt;}
.y4{bottom:899.840000pt;}
.y69{bottom:900.160000pt;}
.y3d{bottom:907.840000pt;}
.y2e{bottom:908.000000pt;}
.y9b{bottom:912.320000pt;}
.y68{bottom:918.400000pt;}
.y34{bottom:930.666667pt;}
.y9a{bottom:930.880000pt;}
.y3c{bottom:936.640000pt;}
.y67{bottom:936.960000pt;}
.y99{bottom:949.120000pt;}
.y3b{bottom:955.200000pt;}
.y98{bottom:968.320000pt;}
.y3a{bottom:973.760000pt;}
.y37{bottom:992.960000pt;}
.y38{bottom:1006.666667pt;}
.h11{height:20.000000pt;}
.h2{height:21.333333pt;}
.h4{height:28.153125pt;}
.h10{height:37.327500pt;}
.ha{height:37.537500pt;}
.hd{height:38.170000pt;}
.he{height:39.105000pt;}
.h1{height:42.656250pt;}
.h7{height:43.375000pt;}
.h3{height:45.937500pt;}
.hf{height:46.666667pt;}
.h8{height:51.047500pt;}
.h6{height:58.122500pt;}
.h5{height:65.062500pt;}
.hb{height:65.333333pt;}
.hc{height:85.312500pt;}
.h9{height:88.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:10.666667pt;}
.w7{width:108.000000pt;}
.w3{width:156.000000pt;}
.w6{width:204.000000pt;}
.w9{width:228.000000pt;}
.w8{width:240.000000pt;}
.w2{width:249.333333pt;}
.w4{width:434.666667pt;}
.w5{width:464.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.173333pt;}
.x1a{left:7.680000pt;}
.x19{left:9.973301pt;}
.x10{left:16.854187pt;}
.x11{left:19.229227pt;}
.x18{left:46.666667pt;}
.x1{left:48.000000pt;}
.xe{left:49.274773pt;}
.x6{left:61.681632pt;}
.x8{left:96.000000pt;}
.xa{left:119.869333pt;}
.x13{left:136.565653pt;}
.xd{left:156.236693pt;}
.xb{left:170.810773pt;}
.xc{left:181.734613pt;}
.x1b{left:204.000000pt;}
.x1c{left:288.000000pt;}
.x7{left:289.330080pt;}
.x12{left:334.666667pt;}
.x14{left:383.400000pt;}
.x2{left:402.666667pt;}
.x5{left:408.000000pt;}
.x15{left:431.400000pt;}
.xf{left:445.333333pt;}
.x9{left:514.666667pt;}
.x17{left:528.000000pt;}
.x16{left:576.000000pt;}
.x4{left:768.000000pt;}
}




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