
    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_abc18feb35d5888e9a99ce80.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_e81c76d1a49409e875e34b9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_25ed7285bcdcb42aea159436.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_3a3f71864d8af2371981bb66.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.887695;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_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b7031f8435bc42d76ea965a5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_97c0b13501752fccc04b0bb1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957520;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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_dc2bbdd3181943a5daa9999c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.887695;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_d83d0a5120de478397d929dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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;}
.ls11{letter-spacing:-1.332000px;}
.ls18{letter-spacing:-0.924000px;}
.ls5{letter-spacing:-0.774000px;}
.ls14{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls13{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.513600px;}
.lsa{letter-spacing:7.866720px;}
.ls1a{letter-spacing:11.466720px;}
.lsb{letter-spacing:14.580000px;}
.lse{letter-spacing:15.066720px;}
.lsc{letter-spacing:15.300000px;}
.ls1b{letter-spacing:28.026720px;}
.ls0{letter-spacing:31.626720px;}
.ls19{letter-spacing:41.706720px;}
.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;}
}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.453600px;}
.wsb{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.680200px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._16{margin-left:-15.312480px;}
._8{margin-left:-8.942400px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._f{width:2.316960px;}
._b{width:3.386880px;}
._a{width:4.510800px;}
._10{width:5.589600px;}
._13{width:6.659280px;}
._e{width:7.719120px;}
._d{width:8.964000px;}
._12{width:10.521360px;}
._11{width:11.653200px;}
._14{width:13.152960px;}
._15{width:15.976080px;}
._c{width:201.204000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.300000px;}
.y68{bottom:89.100000px;}
.y32{bottom:93.780000px;}
.yc5{bottom:96.300000px;}
.y96{bottom:105.300000px;}
.yd9{bottom:107.100000px;}
.y67{bottom:108.900000px;}
.y31{bottom:113.580000px;}
.yad{bottom:114.300000px;}
.yc4{bottom:116.100000px;}
.y95{bottom:125.100000px;}
.yd8{bottom:126.900000px;}
.y66{bottom:128.700000px;}
.y30{bottom:133.560000px;}
.yac{bottom:134.100000px;}
.yc3{bottom:135.900000px;}
.y94{bottom:144.900000px;}
.yd7{bottom:146.700000px;}
.y65{bottom:148.500000px;}
.y2f{bottom:153.390000px;}
.yab{bottom:153.930000px;}
.yc2{bottom:155.730000px;}
.y93{bottom:164.730000px;}
.yd6{bottom:166.530000px;}
.y64{bottom:168.510000px;}
.y2e{bottom:173.190000px;}
.yaa{bottom:173.730000px;}
.y92{bottom:184.530000px;}
.yd5{bottom:186.510000px;}
.y63{bottom:188.310000px;}
.y2d{bottom:192.990000px;}
.ya9{bottom:193.530000px;}
.y91{bottom:204.510000px;}
.yd4{bottom:206.310000px;}
.y62{bottom:208.110000px;}
.y2c{bottom:212.790000px;}
.ya8{bottom:213.510000px;}
.y90{bottom:224.310000px;}
.yd3{bottom:226.110000px;}
.y61{bottom:227.910000px;}
.y2b{bottom:232.770000px;}
.ya7{bottom:233.310000px;}
.y8f{bottom:244.110000px;}
.yd2{bottom:245.910000px;}
.y60{bottom:247.710000px;}
.y2a{bottom:252.570000px;}
.ya6{bottom:253.110000px;}
.y8e{bottom:263.910000px;}
.yd1{bottom:265.710000px;}
.y5f{bottom:267.690000px;}
.ya5{bottom:272.910000px;}
.y29{bottom:281.370000px;}
.y8d{bottom:283.710000px;}
.yd0{bottom:285.690000px;}
.y5e{bottom:287.490000px;}
.ya4{bottom:292.710000px;}
.y28{bottom:301.170000px;}
.y8c{bottom:303.690000px;}
.ycf{bottom:305.490000px;}
.y5d{bottom:307.290000px;}
.ya3{bottom:312.690000px;}
.y27{bottom:320.970000px;}
.y8b{bottom:323.490000px;}
.yce{bottom:325.290000px;}
.y5c{bottom:327.090000px;}
.ya2{bottom:332.490000px;}
.y26{bottom:340.950000px;}
.y8a{bottom:343.290000px;}
.ycd{bottom:345.090000px;}
.y5b{bottom:346.890000px;}
.ya1{bottom:352.290000px;}
.y25{bottom:360.750000px;}
.y89{bottom:363.090000px;}
.ycc{bottom:364.890000px;}
.y5a{bottom:366.870000px;}
.ya0{bottom:372.090000px;}
.y24{bottom:380.550000px;}
.y88{bottom:382.890000px;}
.ycb{bottom:384.870000px;}
.y9f{bottom:391.890000px;}
.y59{bottom:395.670000px;}
.y23{bottom:400.350000px;}
.y87{bottom:402.915000px;}
.y9e{bottom:411.915000px;}
.yca{bottom:413.715000px;}
.y58{bottom:415.515000px;}
.y22{bottom:420.195000px;}
.y86{bottom:422.715000px;}
.y9d{bottom:431.715000px;}
.yc9{bottom:433.515000px;}
.y57{bottom:435.315000px;}
.y21{bottom:440.175000px;}
.y85{bottom:442.515000px;}
.y9c{bottom:451.515000px;}
.yc8{bottom:453.315000px;}
.y56{bottom:455.115000px;}
.y20{bottom:459.975000px;}
.y84{bottom:462.315000px;}
.y9b{bottom:471.315000px;}
.yc7{bottom:473.115000px;}
.y55{bottom:475.095000px;}
.y1f{bottom:479.775000px;}
.y83{bottom:482.115000px;}
.y9a{bottom:491.115000px;}
.yc6{bottom:493.095000px;}
.y54{bottom:494.895000px;}
.y1e{bottom:499.575000px;}
.y82{bottom:502.095000px;}
.y99{bottom:511.095000px;}
.y53{bottom:514.695000px;}
.y1d{bottom:519.375000px;}
.y81{bottom:521.895000px;}
.y98{bottom:530.895000px;}
.y52{bottom:534.495000px;}
.y1c{bottom:539.355000px;}
.y80{bottom:541.695000px;}
.y97{bottom:550.695000px;}
.y51{bottom:554.295000px;}
.y1b{bottom:559.155000px;}
.yc1{bottom:561.495000px;}
.y7f{bottom:570.495000px;}
.y50{bottom:574.275000px;}
.y1a{bottom:578.955000px;}
.yc0{bottom:581.295000px;}
.y7e{bottom:590.295000px;}
.y4f{bottom:594.075000px;}
.y19{bottom:598.755000px;}
.ybf{bottom:601.275000px;}
.y7d{bottom:610.275000px;}
.y4e{bottom:613.875000px;}
.y18{bottom:618.555000px;}
.ybe{bottom:621.075000px;}
.y7c{bottom:630.075000px;}
.y4d{bottom:633.675000px;}
.ybd{bottom:640.875000px;}
.y7b{bottom:649.905000px;}
.y4c{bottom:653.505000px;}
.y17{bottom:660.525000px;}
.ybc{bottom:660.705000px;}
.y7a{bottom:669.705000px;}
.y4b{bottom:673.485000px;}
.ybb{bottom:680.505000px;}
.y16{bottom:689.505000px;}
.y4a{bottom:693.285000px;}
.yba{bottom:700.485000px;}
.y15{bottom:709.305000px;}
.y79{bottom:709.485000px;}
.y49{bottom:713.085000px;}
.yb9{bottom:720.285000px;}
.y14{bottom:729.105000px;}
.y78{bottom:729.285000px;}
.y48{bottom:732.885000px;}
.yb8{bottom:740.085000px;}
.y13{bottom:748.905000px;}
.y77{bottom:749.085000px;}
.yb7{bottom:759.885000px;}
.y47{bottom:761.685000px;}
.y12{bottom:768.705000px;}
.y76{bottom:768.885000px;}
.yb6{bottom:779.685000px;}
.y46{bottom:781.665000px;}
.y11{bottom:788.685000px;}
.yb5{bottom:799.665000px;}
.y45{bottom:801.465000px;}
.y10{bottom:808.485000px;}
.y75{bottom:808.665000px;}
.yb4{bottom:819.465000px;}
.y44{bottom:821.265000px;}
.yf{bottom:828.285000px;}
.y74{bottom:828.465000px;}
.yb3{bottom:839.265000px;}
.ye{bottom:848.085000px;}
.y73{bottom:848.265000px;}
.y43{bottom:850.065000px;}
.yb2{bottom:859.065000px;}
.yd{bottom:867.885000px;}
.y72{bottom:868.065000px;}
.y42{bottom:869.865000px;}
.yb1{bottom:878.865000px;}
.y71{bottom:887.865000px;}
.y41{bottom:889.845000px;}
.yc{bottom:890.025000px;}
.yb0{bottom:898.890000px;}
.y70{bottom:907.890000px;}
.y40{bottom:909.690000px;}
.yb{bottom:909.870000px;}
.yaf{bottom:918.690000px;}
.y6f{bottom:927.690000px;}
.ya{bottom:930.210000px;}
.y3f{bottom:938.490000px;}
.y6e{bottom:947.490000px;}
.y9{bottom:951.630000px;}
.y3e{bottom:958.290000px;}
.y6d{bottom:967.290000px;}
.y8{bottom:975.030000px;}
.y3d{bottom:978.090000px;}
.y6c{bottom:987.090000px;}
.y3c{bottom:998.070000px;}
.y7{bottom:1006.710000px;}
.y6b{bottom:1007.070000px;}
.y3b{bottom:1017.870000px;}
.y6a{bottom:1026.870000px;}
.y3a{bottom:1037.670000px;}
.y69{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.yae{bottom:1057.470000px;}
.y39{bottom:1066.470000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.270000px;}
.y37{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1126.050000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.850000px;}
.y34{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h5{height:41.493516px;}
.h6{height:41.726953px;}
.h7{height:42.164648px;}
.hb{height:43.302656px;}
.h8{height:43.506914px;}
.ha{height:43.681992px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x3{left:70.199987px;}
.x2{left:75.599987px;}
.x4{left:80.999987px;}
.x6{left:83.699987px;}
.x5{left:108.035987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.184000pt;}
.ls18{letter-spacing:-0.821333pt;}
.ls5{letter-spacing:-0.688000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.456533pt;}
.lsa{letter-spacing:6.992640pt;}
.ls1a{letter-spacing:10.192640pt;}
.lsb{letter-spacing:12.960000pt;}
.lse{letter-spacing:13.392640pt;}
.lsc{letter-spacing:13.600000pt;}
.ls1b{letter-spacing:24.912640pt;}
.ls0{letter-spacing:28.112640pt;}
.ls19{letter-spacing:37.072640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.wsa{word-spacing:-13.736533pt;}
.wsb{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.096533pt;}
.ws8{word-spacing:-13.049067pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._16{margin-left:-13.611093pt;}
._8{margin-left:-7.948800pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._f{width:2.059520pt;}
._b{width:3.010560pt;}
._a{width:4.009600pt;}
._10{width:4.968533pt;}
._13{width:5.919360pt;}
._e{width:6.861440pt;}
._d{width:7.968000pt;}
._12{width:9.352320pt;}
._11{width:10.358400pt;}
._14{width:11.691520pt;}
._15{width:14.200960pt;}
._c{width:178.848000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.600000pt;}
.y68{bottom:79.200000pt;}
.y32{bottom:83.360000pt;}
.yc5{bottom:85.600000pt;}
.y96{bottom:93.600000pt;}
.yd9{bottom:95.200000pt;}
.y67{bottom:96.800000pt;}
.y31{bottom:100.960000pt;}
.yad{bottom:101.600000pt;}
.yc4{bottom:103.200000pt;}
.y95{bottom:111.200000pt;}
.yd8{bottom:112.800000pt;}
.y66{bottom:114.400000pt;}
.y30{bottom:118.720000pt;}
.yac{bottom:119.200000pt;}
.yc3{bottom:120.800000pt;}
.y94{bottom:128.800000pt;}
.yd7{bottom:130.400000pt;}
.y65{bottom:132.000000pt;}
.y2f{bottom:136.346667pt;}
.yab{bottom:136.826667pt;}
.yc2{bottom:138.426667pt;}
.y93{bottom:146.426667pt;}
.yd6{bottom:148.026667pt;}
.y64{bottom:149.786667pt;}
.y2e{bottom:153.946667pt;}
.yaa{bottom:154.426667pt;}
.y92{bottom:164.026667pt;}
.yd5{bottom:165.786667pt;}
.y63{bottom:167.386667pt;}
.y2d{bottom:171.546667pt;}
.ya9{bottom:172.026667pt;}
.y91{bottom:181.786667pt;}
.yd4{bottom:183.386667pt;}
.y62{bottom:184.986667pt;}
.y2c{bottom:189.146667pt;}
.ya8{bottom:189.786667pt;}
.y90{bottom:199.386667pt;}
.yd3{bottom:200.986667pt;}
.y61{bottom:202.586667pt;}
.y2b{bottom:206.906667pt;}
.ya7{bottom:207.386667pt;}
.y8f{bottom:216.986667pt;}
.yd2{bottom:218.586667pt;}
.y60{bottom:220.186667pt;}
.y2a{bottom:224.506667pt;}
.ya6{bottom:224.986667pt;}
.y8e{bottom:234.586667pt;}
.yd1{bottom:236.186667pt;}
.y5f{bottom:237.946667pt;}
.ya5{bottom:242.586667pt;}
.y29{bottom:250.106667pt;}
.y8d{bottom:252.186667pt;}
.yd0{bottom:253.946667pt;}
.y5e{bottom:255.546667pt;}
.ya4{bottom:260.186667pt;}
.y28{bottom:267.706667pt;}
.y8c{bottom:269.946667pt;}
.ycf{bottom:271.546667pt;}
.y5d{bottom:273.146667pt;}
.ya3{bottom:277.946667pt;}
.y27{bottom:285.306667pt;}
.y8b{bottom:287.546667pt;}
.yce{bottom:289.146667pt;}
.y5c{bottom:290.746667pt;}
.ya2{bottom:295.546667pt;}
.y26{bottom:303.066667pt;}
.y8a{bottom:305.146667pt;}
.ycd{bottom:306.746667pt;}
.y5b{bottom:308.346667pt;}
.ya1{bottom:313.146667pt;}
.y25{bottom:320.666667pt;}
.y89{bottom:322.746667pt;}
.ycc{bottom:324.346667pt;}
.y5a{bottom:326.106667pt;}
.ya0{bottom:330.746667pt;}
.y24{bottom:338.266667pt;}
.y88{bottom:340.346667pt;}
.ycb{bottom:342.106667pt;}
.y9f{bottom:348.346667pt;}
.y59{bottom:351.706667pt;}
.y23{bottom:355.866667pt;}
.y87{bottom:358.146667pt;}
.y9e{bottom:366.146667pt;}
.yca{bottom:367.746667pt;}
.y58{bottom:369.346667pt;}
.y22{bottom:373.506667pt;}
.y86{bottom:375.746667pt;}
.y9d{bottom:383.746667pt;}
.yc9{bottom:385.346667pt;}
.y57{bottom:386.946667pt;}
.y21{bottom:391.266667pt;}
.y85{bottom:393.346667pt;}
.y9c{bottom:401.346667pt;}
.yc8{bottom:402.946667pt;}
.y56{bottom:404.546667pt;}
.y20{bottom:408.866667pt;}
.y84{bottom:410.946667pt;}
.y9b{bottom:418.946667pt;}
.yc7{bottom:420.546667pt;}
.y55{bottom:422.306667pt;}
.y1f{bottom:426.466667pt;}
.y83{bottom:428.546667pt;}
.y9a{bottom:436.546667pt;}
.yc6{bottom:438.306667pt;}
.y54{bottom:439.906667pt;}
.y1e{bottom:444.066667pt;}
.y82{bottom:446.306667pt;}
.y99{bottom:454.306667pt;}
.y53{bottom:457.506667pt;}
.y1d{bottom:461.666667pt;}
.y81{bottom:463.906667pt;}
.y98{bottom:471.906667pt;}
.y52{bottom:475.106667pt;}
.y1c{bottom:479.426667pt;}
.y80{bottom:481.506667pt;}
.y97{bottom:489.506667pt;}
.y51{bottom:492.706667pt;}
.y1b{bottom:497.026667pt;}
.yc1{bottom:499.106667pt;}
.y7f{bottom:507.106667pt;}
.y50{bottom:510.466667pt;}
.y1a{bottom:514.626667pt;}
.yc0{bottom:516.706667pt;}
.y7e{bottom:524.706667pt;}
.y4f{bottom:528.066667pt;}
.y19{bottom:532.226667pt;}
.ybf{bottom:534.466667pt;}
.y7d{bottom:542.466667pt;}
.y4e{bottom:545.666667pt;}
.y18{bottom:549.826667pt;}
.ybe{bottom:552.066667pt;}
.y7c{bottom:560.066667pt;}
.y4d{bottom:563.266667pt;}
.ybd{bottom:569.666667pt;}
.y7b{bottom:577.693333pt;}
.y4c{bottom:580.893333pt;}
.y17{bottom:587.133333pt;}
.ybc{bottom:587.293333pt;}
.y7a{bottom:595.293333pt;}
.y4b{bottom:598.653333pt;}
.ybb{bottom:604.893333pt;}
.y16{bottom:612.893333pt;}
.y4a{bottom:616.253333pt;}
.yba{bottom:622.653333pt;}
.y15{bottom:630.493333pt;}
.y79{bottom:630.653333pt;}
.y49{bottom:633.853333pt;}
.yb9{bottom:640.253333pt;}
.y14{bottom:648.093333pt;}
.y78{bottom:648.253333pt;}
.y48{bottom:651.453333pt;}
.yb8{bottom:657.853333pt;}
.y13{bottom:665.693333pt;}
.y77{bottom:665.853333pt;}
.yb7{bottom:675.453333pt;}
.y47{bottom:677.053333pt;}
.y12{bottom:683.293333pt;}
.y76{bottom:683.453333pt;}
.yb6{bottom:693.053333pt;}
.y46{bottom:694.813333pt;}
.y11{bottom:701.053333pt;}
.yb5{bottom:710.813333pt;}
.y45{bottom:712.413333pt;}
.y10{bottom:718.653333pt;}
.y75{bottom:718.813333pt;}
.yb4{bottom:728.413333pt;}
.y44{bottom:730.013333pt;}
.yf{bottom:736.253333pt;}
.y74{bottom:736.413333pt;}
.yb3{bottom:746.013333pt;}
.ye{bottom:753.853333pt;}
.y73{bottom:754.013333pt;}
.y43{bottom:755.613333pt;}
.yb2{bottom:763.613333pt;}
.yd{bottom:771.453333pt;}
.y72{bottom:771.613333pt;}
.y42{bottom:773.213333pt;}
.yb1{bottom:781.213333pt;}
.y71{bottom:789.213333pt;}
.y41{bottom:790.973333pt;}
.yc{bottom:791.133333pt;}
.yb0{bottom:799.013333pt;}
.y70{bottom:807.013333pt;}
.y40{bottom:808.613333pt;}
.yb{bottom:808.773333pt;}
.yaf{bottom:816.613333pt;}
.y6f{bottom:824.613333pt;}
.ya{bottom:826.853333pt;}
.y3f{bottom:834.213333pt;}
.y6e{bottom:842.213333pt;}
.y9{bottom:845.893333pt;}
.y3e{bottom:851.813333pt;}
.y6d{bottom:859.813333pt;}
.y8{bottom:866.693333pt;}
.y3d{bottom:869.413333pt;}
.y6c{bottom:877.413333pt;}
.y3c{bottom:887.173333pt;}
.y7{bottom:894.853333pt;}
.y6b{bottom:895.173333pt;}
.y3b{bottom:904.773333pt;}
.y6a{bottom:912.773333pt;}
.y3a{bottom:922.373333pt;}
.y69{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.yae{bottom:939.973333pt;}
.y39{bottom:947.973333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.573333pt;}
.y37{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.933333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.533333pt;}
.y34{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h5{height:36.883125pt;}
.h6{height:37.090625pt;}
.h7{height:37.479688pt;}
.hb{height:38.491250pt;}
.h8{height:38.672812pt;}
.ha{height:38.828437pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x3{left:62.399988pt;}
.x2{left:67.199988pt;}
.x4{left:71.999988pt;}
.x6{left:74.399988pt;}
.x5{left:96.031988pt;}
}




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