
    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_d11a9a6b9342c57fc48f1885.woff')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_90e7b93e1027f6bc0ee37f45.woff')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_0d81a4f967d7e6957432c7f5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_271e351f39f228d898a3cf5c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.042000;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_f03be951740edde86c4b11fb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_30725ca2c2449010d07d39d1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_387b57e299263a9e806ce3cd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_9a733cc4b78d9ba5f64d8509.woff')format("woff");}.ff8{font-family:ff8;line-height:1.049000;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_d3c62d961c5d804c7b22ec5e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-6.420000px;}
.ls2a{letter-spacing:-1.542000px;}
.ls16{letter-spacing:-1.440000px;}
.ls2c{letter-spacing:-0.582000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.348600px;}
.ls1b{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.234600px;}
.ls4{letter-spacing:-0.100800px;}
.ls5{letter-spacing:-0.052560px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000003px;}
.ls11{letter-spacing:0.010080px;}
.ls19{letter-spacing:0.066960px;}
.ls7{letter-spacing:0.123000px;}
.ls9{letter-spacing:0.129600px;}
.ls1d{letter-spacing:0.138240px;}
.ls1e{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls22{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.296400px;}
.lsd{letter-spacing:0.371520px;}
.ls17{letter-spacing:0.485280px;}
.ls13{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.786000px;}
.ls26{letter-spacing:1.850400px;}
.ls27{letter-spacing:2.388000px;}
.lsf{letter-spacing:2.880000px;}
.lsb{letter-spacing:5.040000px;}
.ls12{letter-spacing:11.520000px;}
.ls10{letter-spacing:12.960000px;}
.lsc{letter-spacing:14.400000px;}
.ls25{letter-spacing:24.170400px;}
.ls21{letter-spacing:25.610400px;}
.ls20{letter-spacing:26.330400px;}
.ls23{letter-spacing:27.050400px;}
.ls15{letter-spacing:28.080000px;}
.ls1f{letter-spacing:28.490400px;}
.ls24{letter-spacing:33.530400px;}
.lsa{letter-spacing:35.280000px;}
.ls14{letter-spacing:36.000000px;}
.lse{letter-spacing:38.880000px;}
.ls0{letter-spacing:520.020000px;}
.ls18{letter-spacing:844.284000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-15.120003px;}
.ws1{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.937600px;}
.ws9{word-spacing:-14.832000px;}
.ws0{word-spacing:-14.616000px;}
.ws6{word-spacing:-13.335600px;}
.wsc{word-spacing:-12.679200px;}
.wse{word-spacing:-12.559680px;}
.ws3{word-spacing:-12.549600px;}
.ws4{word-spacing:-12.497040px;}
.ws2{word-spacing:-12.448800px;}
.wsf{word-spacing:-12.315000px;}
.wsd{word-spacing:-12.201000px;}
.ws7{word-spacing:-12.131280px;}
.ws5{word-spacing:-12.071520px;}
.ws12{word-spacing:-11.967600px;}
.ws10{word-spacing:-11.007600px;}
.ws11{word-spacing:-6.129600px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-11.520000px;}
._40{margin-left:-9.968400px;}
._c{margin-left:-7.807200px;}
._6{margin-left:-6.612000px;}
._7{margin-left:-5.020800px;}
._b{margin-left:-3.732480px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._8{width:1.015920px;}
._5{width:2.208000px;}
._1e{width:4.164000px;}
._15{width:5.280000px;}
._12{width:6.408000px;}
._11{width:7.416000px;}
._22{width:9.360000px;}
._19{width:10.728000px;}
._26{width:11.952000px;}
._e{width:13.752000px;}
._3b{width:14.863920px;}
._13{width:16.128000px;}
._23{width:17.280000px;}
._24{width:18.288000px;}
._25{width:19.440000px;}
._18{width:21.312000px;}
._27{width:22.608000px;}
._20{width:23.832000px;}
._21{width:24.936000px;}
._1d{width:26.352000px;}
._1c{width:27.360000px;}
._31{width:29.040000px;}
._2e{width:30.384000px;}
._33{width:31.464000px;}
._17{width:32.472000px;}
._16{width:33.552000px;}
._14{width:35.424000px;}
._34{width:36.768240px;}
._1b{width:38.664000px;}
._1a{width:40.104000px;}
._2a{width:41.688000px;}
._36{width:42.984000px;}
._30{width:44.304000px;}
._1f{width:45.576000px;}
._2d{width:46.792080px;}
._2f{width:49.824000px;}
._f{width:50.832000px;}
._10{width:52.008000px;}
._32{width:54.936000px;}
._29{width:68.184000px;}
._28{width:69.192000px;}
._2b{width:73.296000px;}
._2c{width:75.008160px;}
._3f{width:76.433040px;}
._3c{width:79.160640px;}
._39{width:104.042160px;}
._3a{width:105.297120px;}
._3d{width:115.575840px;}
._3e{width:117.171600px;}
._38{width:141.839994px;}
._37{width:147.592080px;}
._2{width:475.164000px;}
._9{width:557.160480px;}
._3{width:1295.580000px;}
._35{width:1484.982720px;}
._d{width:1486.422720px;}
._a{width:1491.110400px;}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:4.500000px;}
.y12{bottom:5.400000px;}
.y1f{bottom:5.760000px;}
.y3e{bottom:22.500000px;}
.y11{bottom:26.100000px;}
.y1e{bottom:27.900000px;}
.y8{bottom:31.860000px;}
.y3d{bottom:40.500000px;}
.y10{bottom:44.100000px;}
.y1d{bottom:45.900000px;}
.y5{bottom:57.600000px;}
.y3c{bottom:58.494000px;}
.yf{bottom:63.000000px;}
.y1c{bottom:64.800000px;}
.y3b{bottom:76.494000px;}
.y4{bottom:79.056000px;}
.ye{bottom:84.600000px;}
.y1b{bottom:86.400000px;}
.y3a{bottom:95.394000px;}
.yd{bottom:106.200000px;}
.y1a{bottom:108.000000px;}
.y20{bottom:109.296000px;}
.yf5{bottom:116.496000px;}
.y39{bottom:116.994000px;}
.yc{bottom:127.800000px;}
.y19{bottom:129.600000px;}
.y9b{bottom:132.336000px;}
.yf4{bottom:134.496000px;}
.ybd{bottom:136.656000px;}
.y38{bottom:138.594000px;}
.yb{bottom:149.760000px;}
.y6d{bottom:150.330000px;}
.y18{bottom:151.560000px;}
.yf3{bottom:152.490000px;}
.y9a{bottom:153.930000px;}
.ybc{bottom:158.250000px;}
.y37{bottom:159.294000px;}
.yf2{bottom:170.490000px;}
.y6c{bottom:171.930000px;}
.ya{bottom:173.160000px;}
.y17{bottom:174.960000px;}
.y99{bottom:175.530000px;}
.y36{bottom:177.294000px;}
.ybb{bottom:179.850000px;}
.yf1{bottom:188.490000px;}
.y6b{bottom:193.530000px;}
.y35{bottom:195.294000px;}
.y9{bottom:196.560000px;}
.y98{bottom:197.130000px;}
.y16{bottom:198.360000px;}
.yba{bottom:201.450000px;}
.yf0{bottom:206.490000px;}
.y34{bottom:213.294000px;}
.y6a{bottom:215.130000px;}
.y97{bottom:218.730000px;}
.y15{bottom:221.805000px;}
.yb9{bottom:223.050000px;}
.y14{bottom:223.245000px;}
.yef{bottom:224.490000px;}
.y33{bottom:231.339000px;}
.y69{bottom:236.730000px;}
.y96{bottom:240.330000px;}
.yee{bottom:242.490000px;}
.yb8{bottom:244.650000px;}
.y32{bottom:249.339000px;}
.y68{bottom:258.330000px;}
.yed{bottom:260.490000px;}
.y95{bottom:261.930000px;}
.yb7{bottom:266.250000px;}
.y31{bottom:267.339000px;}
.yec{bottom:278.490000px;}
.y67{bottom:279.930000px;}
.y94{bottom:283.530000px;}
.y30{bottom:285.339000px;}
.yb6{bottom:287.850000px;}
.yeb{bottom:296.490000px;}
.y66{bottom:301.530000px;}
.y2f{bottom:303.339000px;}
.y93{bottom:305.130000px;}
.yb5{bottom:309.450000px;}
.yea{bottom:314.490000px;}
.y2e{bottom:321.339000px;}
.y65{bottom:323.130000px;}
.y92{bottom:326.730000px;}
.yb4{bottom:331.050000px;}
.ye9{bottom:332.490000px;}
.y2d{bottom:339.339000px;}
.y64{bottom:344.775000px;}
.y91{bottom:348.375000px;}
.ye8{bottom:350.535000px;}
.yb3{bottom:352.695000px;}
.y2c{bottom:357.339000px;}
.y63{bottom:366.375000px;}
.ye7{bottom:368.535000px;}
.y90{bottom:369.975000px;}
.yb2{bottom:374.295000px;}
.y2b{bottom:376.239000px;}
.ye6{bottom:386.535000px;}
.y62{bottom:387.975000px;}
.y8f{bottom:391.575000px;}
.yb1{bottom:395.895000px;}
.y2a{bottom:396.939000px;}
.ye5{bottom:404.535000px;}
.y61{bottom:409.575000px;}
.y8e{bottom:413.175000px;}
.y29{bottom:414.939000px;}
.yb0{bottom:417.495000px;}
.ye4{bottom:422.535000px;}
.y60{bottom:431.175000px;}
.y28{bottom:432.939000px;}
.y8d{bottom:434.775000px;}
.yaf{bottom:439.095000px;}
.ye3{bottom:440.535000px;}
.y27{bottom:450.939000px;}
.y5f{bottom:452.775000px;}
.y8c{bottom:456.375000px;}
.ye2{bottom:458.535000px;}
.yae{bottom:460.695000px;}
.y26{bottom:468.939000px;}
.y5e{bottom:474.375000px;}
.ye1{bottom:476.535000px;}
.y8b{bottom:477.975000px;}
.yad{bottom:482.295000px;}
.y25{bottom:486.939000px;}
.ye0{bottom:494.535000px;}
.y5d{bottom:495.975000px;}
.y8a{bottom:499.575000px;}
.yac{bottom:503.895000px;}
.y24{bottom:504.969000px;}
.ydf{bottom:512.535000px;}
.y5c{bottom:517.575000px;}
.y89{bottom:521.175000px;}
.y23{bottom:522.969000px;}
.yab{bottom:525.495000px;}
.yde{bottom:530.535000px;}
.y5b{bottom:539.175000px;}
.y22{bottom:542.229000px;}
.y88{bottom:542.775000px;}
.y21{bottom:543.669000px;}
.yaa{bottom:547.095000px;}
.ydd{bottom:548.535000px;}
.y5a{bottom:560.775000px;}
.y87{bottom:564.375000px;}
.ydc{bottom:566.535000px;}
.ya9{bottom:568.695000px;}
.y59{bottom:582.375000px;}
.ydb{bottom:584.535000px;}
.y86{bottom:585.975000px;}
.ya8{bottom:590.295000px;}
.yda{bottom:602.535000px;}
.y58{bottom:604.005000px;}
.y85{bottom:607.605000px;}
.ya7{bottom:611.925000px;}
.yd9{bottom:620.565000px;}
.y57{bottom:625.605000px;}
.y84{bottom:629.205000px;}
.ya6{bottom:633.525000px;}
.yd8{bottom:638.565000px;}
.y56{bottom:647.205000px;}
.y83{bottom:650.805000px;}
.ya5{bottom:655.125000px;}
.yd7{bottom:656.565000px;}
.y55{bottom:668.805000px;}
.y13{bottom:669.885000px;}
.y82{bottom:672.405000px;}
.yd6{bottom:674.565000px;}
.ya4{bottom:676.725000px;}
.y54{bottom:690.405000px;}
.yd5{bottom:692.565000px;}
.y81{bottom:694.005000px;}
.ya3{bottom:698.325000px;}
.yd4{bottom:710.565000px;}
.y53{bottom:712.005000px;}
.y80{bottom:715.605000px;}
.ya2{bottom:719.925000px;}
.yd3{bottom:728.565000px;}
.y52{bottom:733.605000px;}
.y7f{bottom:737.205000px;}
.ya1{bottom:741.525000px;}
.yd2{bottom:746.565000px;}
.y51{bottom:755.205000px;}
.y7e{bottom:758.805000px;}
.ya0{bottom:763.125000px;}
.yd1{bottom:764.565000px;}
.y50{bottom:776.805000px;}
.y7d{bottom:780.405000px;}
.yd0{bottom:782.565000px;}
.y9f{bottom:784.725000px;}
.y4f{bottom:798.405000px;}
.ycf{bottom:800.565000px;}
.y7c{bottom:802.005000px;}
.y9e{bottom:806.325000px;}
.yce{bottom:818.565000px;}
.y4e{bottom:820.005000px;}
.y7b{bottom:823.605000px;}
.y9d{bottom:827.925000px;}
.ycd{bottom:836.565000px;}
.y4d{bottom:841.605000px;}
.y7a{bottom:845.205000px;}
.y9c{bottom:849.525000px;}
.ycc{bottom:854.565000px;}
.y4c{bottom:863.205000px;}
.y79{bottom:866.805000px;}
.ycb{bottom:872.610000px;}
.y4b{bottom:884.850000px;}
.y78{bottom:888.450000px;}
.yca{bottom:890.610000px;}
.y4a{bottom:906.450000px;}
.yc9{bottom:908.610000px;}
.y7{bottom:910.050000px;}
.yc8{bottom:926.610000px;}
.y49{bottom:928.050000px;}
.y77{bottom:931.650000px;}
.yc7{bottom:945.150000px;}
.y48{bottom:949.650000px;}
.y76{bottom:953.250000px;}
.yc6{bottom:963.150000px;}
.y47{bottom:971.250000px;}
.y75{bottom:974.850000px;}
.yc5{bottom:981.150000px;}
.y46{bottom:992.850000px;}
.y74{bottom:996.450000px;}
.yc4{bottom:999.150000px;}
.y45{bottom:1014.450000px;}
.yc3{bottom:1017.150000px;}
.y73{bottom:1018.050000px;}
.yc2{bottom:1035.150000px;}
.y44{bottom:1036.050000px;}
.y72{bottom:1039.650000px;}
.yc1{bottom:1053.150000px;}
.y43{bottom:1057.650000px;}
.y71{bottom:1061.250000px;}
.yc0{bottom:1071.150000px;}
.y42{bottom:1079.250000px;}
.y70{bottom:1082.850000px;}
.ybf{bottom:1089.150000px;}
.y41{bottom:1101.210000px;}
.y6f{bottom:1104.450000px;}
.ybe{bottom:1107.150000px;}
.y40{bottom:1124.610000px;}
.y6e{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h7{height:67.262400px;}
.h6{height:214.200000px;}
.h8{height:239.430000px;}
.h9{height:559.875000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:202.215000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x5{left:106.235987px;}
.x2{left:190.290000px;}
.x3{left:287.175000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-5.706667pt;}
.ls2a{letter-spacing:-1.370667pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls2c{letter-spacing:-0.517333pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.309867pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.208533pt;}
.ls4{letter-spacing:-0.089600pt;}
.ls5{letter-spacing:-0.046720pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000003pt;}
.ls11{letter-spacing:0.008960pt;}
.ls19{letter-spacing:0.059520pt;}
.ls7{letter-spacing:0.109333pt;}
.ls9{letter-spacing:0.115200pt;}
.ls1d{letter-spacing:0.122880pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls22{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.263467pt;}
.lsd{letter-spacing:0.330240pt;}
.ls17{letter-spacing:0.431360pt;}
.ls13{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.698667pt;}
.ls26{letter-spacing:1.644800pt;}
.ls27{letter-spacing:2.122667pt;}
.lsf{letter-spacing:2.560000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls12{letter-spacing:10.240000pt;}
.ls10{letter-spacing:11.520000pt;}
.lsc{letter-spacing:12.800000pt;}
.ls25{letter-spacing:21.484800pt;}
.ls21{letter-spacing:22.764800pt;}
.ls20{letter-spacing:23.404800pt;}
.ls23{letter-spacing:24.044800pt;}
.ls15{letter-spacing:24.960000pt;}
.ls1f{letter-spacing:25.324800pt;}
.ls24{letter-spacing:29.804800pt;}
.lsa{letter-spacing:31.360000pt;}
.ls14{letter-spacing:32.000000pt;}
.lse{letter-spacing:34.560000pt;}
.ls0{letter-spacing:462.240000pt;}
.ls18{letter-spacing:750.474667pt;}
.wsa{word-spacing:-13.440003pt;}
.ws1{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.277867pt;}
.ws9{word-spacing:-13.184000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws6{word-spacing:-11.853867pt;}
.wsc{word-spacing:-11.270400pt;}
.wse{word-spacing:-11.164160pt;}
.ws3{word-spacing:-11.155200pt;}
.ws4{word-spacing:-11.108480pt;}
.ws2{word-spacing:-11.065600pt;}
.wsf{word-spacing:-10.946667pt;}
.wsd{word-spacing:-10.845333pt;}
.ws7{word-spacing:-10.783360pt;}
.ws5{word-spacing:-10.730240pt;}
.ws12{word-spacing:-10.637867pt;}
.ws10{word-spacing:-9.784533pt;}
.ws11{word-spacing:-5.448533pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-10.240000pt;}
._40{margin-left:-8.860800pt;}
._c{margin-left:-6.939733pt;}
._6{margin-left:-5.877333pt;}
._7{margin-left:-4.462933pt;}
._b{margin-left:-3.317760pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._8{width:0.903040pt;}
._5{width:1.962667pt;}
._1e{width:3.701333pt;}
._15{width:4.693333pt;}
._12{width:5.696000pt;}
._11{width:6.592000pt;}
._22{width:8.320000pt;}
._19{width:9.536000pt;}
._26{width:10.624000pt;}
._e{width:12.224000pt;}
._3b{width:13.212373pt;}
._13{width:14.336000pt;}
._23{width:15.360000pt;}
._24{width:16.256000pt;}
._25{width:17.280000pt;}
._18{width:18.944000pt;}
._27{width:20.096000pt;}
._20{width:21.184000pt;}
._21{width:22.165333pt;}
._1d{width:23.424000pt;}
._1c{width:24.320000pt;}
._31{width:25.813333pt;}
._2e{width:27.008000pt;}
._33{width:27.968000pt;}
._17{width:28.864000pt;}
._16{width:29.824000pt;}
._14{width:31.488000pt;}
._34{width:32.682880pt;}
._1b{width:34.368000pt;}
._1a{width:35.648000pt;}
._2a{width:37.056000pt;}
._36{width:38.208000pt;}
._30{width:39.381333pt;}
._1f{width:40.512000pt;}
._2d{width:41.592960pt;}
._2f{width:44.288000pt;}
._f{width:45.184000pt;}
._10{width:46.229333pt;}
._32{width:48.832000pt;}
._29{width:60.608000pt;}
._28{width:61.504000pt;}
._2b{width:65.152000pt;}
._2c{width:66.673920pt;}
._3f{width:67.940480pt;}
._3c{width:70.365013pt;}
._39{width:92.481920pt;}
._3a{width:93.597440pt;}
._3d{width:102.734080pt;}
._3e{width:104.152533pt;}
._38{width:126.079995pt;}
._37{width:131.192960pt;}
._2{width:422.368000pt;}
._9{width:495.253760pt;}
._3{width:1151.626667pt;}
._35{width:1319.984640pt;}
._d{width:1321.264640pt;}
._a{width:1325.431467pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:4.000000pt;}
.y12{bottom:4.800000pt;}
.y1f{bottom:5.120000pt;}
.y3e{bottom:20.000000pt;}
.y11{bottom:23.200000pt;}
.y1e{bottom:24.800000pt;}
.y8{bottom:28.320000pt;}
.y3d{bottom:36.000000pt;}
.y10{bottom:39.200000pt;}
.y1d{bottom:40.800000pt;}
.y5{bottom:51.200000pt;}
.y3c{bottom:51.994667pt;}
.yf{bottom:56.000000pt;}
.y1c{bottom:57.600000pt;}
.y3b{bottom:67.994667pt;}
.y4{bottom:70.272000pt;}
.ye{bottom:75.200000pt;}
.y1b{bottom:76.800000pt;}
.y3a{bottom:84.794667pt;}
.yd{bottom:94.400000pt;}
.y1a{bottom:96.000000pt;}
.y20{bottom:97.152000pt;}
.yf5{bottom:103.552000pt;}
.y39{bottom:103.994667pt;}
.yc{bottom:113.600000pt;}
.y19{bottom:115.200000pt;}
.y9b{bottom:117.632000pt;}
.yf4{bottom:119.552000pt;}
.ybd{bottom:121.472000pt;}
.y38{bottom:123.194667pt;}
.yb{bottom:133.120000pt;}
.y6d{bottom:133.626667pt;}
.y18{bottom:134.720000pt;}
.yf3{bottom:135.546667pt;}
.y9a{bottom:136.826667pt;}
.ybc{bottom:140.666667pt;}
.y37{bottom:141.594667pt;}
.yf2{bottom:151.546667pt;}
.y6c{bottom:152.826667pt;}
.ya{bottom:153.920000pt;}
.y17{bottom:155.520000pt;}
.y99{bottom:156.026667pt;}
.y36{bottom:157.594667pt;}
.ybb{bottom:159.866667pt;}
.yf1{bottom:167.546667pt;}
.y6b{bottom:172.026667pt;}
.y35{bottom:173.594667pt;}
.y9{bottom:174.720000pt;}
.y98{bottom:175.226667pt;}
.y16{bottom:176.320000pt;}
.yba{bottom:179.066667pt;}
.yf0{bottom:183.546667pt;}
.y34{bottom:189.594667pt;}
.y6a{bottom:191.226667pt;}
.y97{bottom:194.426667pt;}
.y15{bottom:197.160000pt;}
.yb9{bottom:198.266667pt;}
.y14{bottom:198.440000pt;}
.yef{bottom:199.546667pt;}
.y33{bottom:205.634667pt;}
.y69{bottom:210.426667pt;}
.y96{bottom:213.626667pt;}
.yee{bottom:215.546667pt;}
.yb8{bottom:217.466667pt;}
.y32{bottom:221.634667pt;}
.y68{bottom:229.626667pt;}
.yed{bottom:231.546667pt;}
.y95{bottom:232.826667pt;}
.yb7{bottom:236.666667pt;}
.y31{bottom:237.634667pt;}
.yec{bottom:247.546667pt;}
.y67{bottom:248.826667pt;}
.y94{bottom:252.026667pt;}
.y30{bottom:253.634667pt;}
.yb6{bottom:255.866667pt;}
.yeb{bottom:263.546667pt;}
.y66{bottom:268.026667pt;}
.y2f{bottom:269.634667pt;}
.y93{bottom:271.226667pt;}
.yb5{bottom:275.066667pt;}
.yea{bottom:279.546667pt;}
.y2e{bottom:285.634667pt;}
.y65{bottom:287.226667pt;}
.y92{bottom:290.426667pt;}
.yb4{bottom:294.266667pt;}
.ye9{bottom:295.546667pt;}
.y2d{bottom:301.634667pt;}
.y64{bottom:306.466667pt;}
.y91{bottom:309.666667pt;}
.ye8{bottom:311.586667pt;}
.yb3{bottom:313.506667pt;}
.y2c{bottom:317.634667pt;}
.y63{bottom:325.666667pt;}
.ye7{bottom:327.586667pt;}
.y90{bottom:328.866667pt;}
.yb2{bottom:332.706667pt;}
.y2b{bottom:334.434667pt;}
.ye6{bottom:343.586667pt;}
.y62{bottom:344.866667pt;}
.y8f{bottom:348.066667pt;}
.yb1{bottom:351.906667pt;}
.y2a{bottom:352.834667pt;}
.ye5{bottom:359.586667pt;}
.y61{bottom:364.066667pt;}
.y8e{bottom:367.266667pt;}
.y29{bottom:368.834667pt;}
.yb0{bottom:371.106667pt;}
.ye4{bottom:375.586667pt;}
.y60{bottom:383.266667pt;}
.y28{bottom:384.834667pt;}
.y8d{bottom:386.466667pt;}
.yaf{bottom:390.306667pt;}
.ye3{bottom:391.586667pt;}
.y27{bottom:400.834667pt;}
.y5f{bottom:402.466667pt;}
.y8c{bottom:405.666667pt;}
.ye2{bottom:407.586667pt;}
.yae{bottom:409.506667pt;}
.y26{bottom:416.834667pt;}
.y5e{bottom:421.666667pt;}
.ye1{bottom:423.586667pt;}
.y8b{bottom:424.866667pt;}
.yad{bottom:428.706667pt;}
.y25{bottom:432.834667pt;}
.ye0{bottom:439.586667pt;}
.y5d{bottom:440.866667pt;}
.y8a{bottom:444.066667pt;}
.yac{bottom:447.906667pt;}
.y24{bottom:448.861333pt;}
.ydf{bottom:455.586667pt;}
.y5c{bottom:460.066667pt;}
.y89{bottom:463.266667pt;}
.y23{bottom:464.861333pt;}
.yab{bottom:467.106667pt;}
.yde{bottom:471.586667pt;}
.y5b{bottom:479.266667pt;}
.y22{bottom:481.981333pt;}
.y88{bottom:482.466667pt;}
.y21{bottom:483.261333pt;}
.yaa{bottom:486.306667pt;}
.ydd{bottom:487.586667pt;}
.y5a{bottom:498.466667pt;}
.y87{bottom:501.666667pt;}
.ydc{bottom:503.586667pt;}
.ya9{bottom:505.506667pt;}
.y59{bottom:517.666667pt;}
.ydb{bottom:519.586667pt;}
.y86{bottom:520.866667pt;}
.ya8{bottom:524.706667pt;}
.yda{bottom:535.586667pt;}
.y58{bottom:536.893333pt;}
.y85{bottom:540.093333pt;}
.ya7{bottom:543.933333pt;}
.yd9{bottom:551.613333pt;}
.y57{bottom:556.093333pt;}
.y84{bottom:559.293333pt;}
.ya6{bottom:563.133333pt;}
.yd8{bottom:567.613333pt;}
.y56{bottom:575.293333pt;}
.y83{bottom:578.493333pt;}
.ya5{bottom:582.333333pt;}
.yd7{bottom:583.613333pt;}
.y55{bottom:594.493333pt;}
.y13{bottom:595.453333pt;}
.y82{bottom:597.693333pt;}
.yd6{bottom:599.613333pt;}
.ya4{bottom:601.533333pt;}
.y54{bottom:613.693333pt;}
.yd5{bottom:615.613333pt;}
.y81{bottom:616.893333pt;}
.ya3{bottom:620.733333pt;}
.yd4{bottom:631.613333pt;}
.y53{bottom:632.893333pt;}
.y80{bottom:636.093333pt;}
.ya2{bottom:639.933333pt;}
.yd3{bottom:647.613333pt;}
.y52{bottom:652.093333pt;}
.y7f{bottom:655.293333pt;}
.ya1{bottom:659.133333pt;}
.yd2{bottom:663.613333pt;}
.y51{bottom:671.293333pt;}
.y7e{bottom:674.493333pt;}
.ya0{bottom:678.333333pt;}
.yd1{bottom:679.613333pt;}
.y50{bottom:690.493333pt;}
.y7d{bottom:693.693333pt;}
.yd0{bottom:695.613333pt;}
.y9f{bottom:697.533333pt;}
.y4f{bottom:709.693333pt;}
.ycf{bottom:711.613333pt;}
.y7c{bottom:712.893333pt;}
.y9e{bottom:716.733333pt;}
.yce{bottom:727.613333pt;}
.y4e{bottom:728.893333pt;}
.y7b{bottom:732.093333pt;}
.y9d{bottom:735.933333pt;}
.ycd{bottom:743.613333pt;}
.y4d{bottom:748.093333pt;}
.y7a{bottom:751.293333pt;}
.y9c{bottom:755.133333pt;}
.ycc{bottom:759.613333pt;}
.y4c{bottom:767.293333pt;}
.y79{bottom:770.493333pt;}
.ycb{bottom:775.653333pt;}
.y4b{bottom:786.533333pt;}
.y78{bottom:789.733333pt;}
.yca{bottom:791.653333pt;}
.y4a{bottom:805.733333pt;}
.yc9{bottom:807.653333pt;}
.y7{bottom:808.933333pt;}
.yc8{bottom:823.653333pt;}
.y49{bottom:824.933333pt;}
.y77{bottom:828.133333pt;}
.yc7{bottom:840.133333pt;}
.y48{bottom:844.133333pt;}
.y76{bottom:847.333333pt;}
.yc6{bottom:856.133333pt;}
.y47{bottom:863.333333pt;}
.y75{bottom:866.533333pt;}
.yc5{bottom:872.133333pt;}
.y46{bottom:882.533333pt;}
.y74{bottom:885.733333pt;}
.yc4{bottom:888.133333pt;}
.y45{bottom:901.733333pt;}
.yc3{bottom:904.133333pt;}
.y73{bottom:904.933333pt;}
.yc2{bottom:920.133333pt;}
.y44{bottom:920.933333pt;}
.y72{bottom:924.133333pt;}
.yc1{bottom:936.133333pt;}
.y43{bottom:940.133333pt;}
.y71{bottom:943.333333pt;}
.yc0{bottom:952.133333pt;}
.y42{bottom:959.333333pt;}
.y70{bottom:962.533333pt;}
.ybf{bottom:968.133333pt;}
.y41{bottom:978.853333pt;}
.y6f{bottom:981.733333pt;}
.ybe{bottom:984.133333pt;}
.y40{bottom:999.653333pt;}
.y6e{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h7{height:59.788800pt;}
.h6{height:190.400000pt;}
.h8{height:212.826667pt;}
.h9{height:497.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:179.746667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x5{left:94.431988pt;}
.x2{left:169.146667pt;}
.x3{left:255.266667pt;}
}




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