
    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_e7ab42543dfc00bb5e6c54ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_074f8ef0f0cb3610822edc38.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862793;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_bfe0baad18bd3c1d11ca349a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.764000;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_4dc3c098aa444d0bd9162f54.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cdee3733d27986595ff5bcb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935059;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_2c237847b138f0dd5118a346.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.124000;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_efe9524f52d0c93f92adf953.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_a4bac2c2d60a75a6b9b99965.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_b150d6d5a9dc8d321cb91c14.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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;}
.lsb{letter-spacing:-4.320000px;}
.ls2{letter-spacing:-0.864000px;}
.ls5{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.359040px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.719520px;}
.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;}
}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws1{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.272000px;}
.ws3{word-spacing:-15.768000px;}
.ws7{word-spacing:-13.680000px;}
.ws0{word-spacing:0.000000px;}
._28{margin-left:-10.153160px;}
._1d{margin-left:-8.930592px;}
._6{margin-left:-6.140595px;}
._4{margin-left:-4.824000px;}
._8{margin-left:-3.600144px;}
._12{margin-left:-2.309327px;}
._0{margin-left:-1.174391px;}
._1{width:1.847317px;}
._25{width:3.240271px;}
._1f{width:4.931120px;}
._1e{width:6.046144px;}
._1a{width:7.245658px;}
._7{width:8.423870px;}
._9{width:9.435382px;}
._f{width:10.517001px;}
._1b{width:11.806301px;}
._5{width:12.886908px;}
._e{width:14.327352px;}
._26{width:16.586589px;}
._21{width:19.817341px;}
._d{width:21.817031px;}
._20{width:23.668230px;}
._c{width:25.846848px;}
._2c{width:27.647830px;}
._2d{width:28.654696px;}
._a{width:31.680504px;}
._b{width:33.763517px;}
._1c{width:37.892448px;}
._15{width:39.671909px;}
._17{width:40.991582px;}
._16{width:42.262985px;}
._2e{width:48.168720px;}
._2b{width:50.993917px;}
._29{width:52.057372px;}
._2a{width:53.206773px;}
._24{width:56.226512px;}
._23{width:58.825788px;}
._22{width:60.071374px;}
._19{width:75.845971px;}
._18{width:76.968720px;}
._11{width:82.869997px;}
._10{width:86.185171px;}
._33{width:91.085225px;}
._34{width:92.182842px;}
._14{width:97.033556px;}
._13{width:98.568720px;}
._31{width:100.027401px;}
._27{width:110.037652px;}
._32{width:158.492431px;}
._2f{width:191.228592px;}
._30{width:400.821849px;}
._2{width:828.843826px;}
._35{width:846.151200px;}
._3{width:847.879200px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(112,48,160);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.822608px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:12.420150px;}
.yda{bottom:14.219250px;}
.ydc{bottom:14.219700px;}
.y96{bottom:14.220000px;}
.ye2{bottom:14.220150px;}
.y78{bottom:14.220300px;}
.y88{bottom:14.264700px;}
.yaa{bottom:14.399700px;}
.ye9{bottom:14.399850px;}
.y82{bottom:14.400000px;}
.ybc{bottom:14.400150px;}
.yb6{bottom:14.400750px;}
.ydf{bottom:14.429850px;}
.y6c{bottom:20.879850px;}
.y90{bottom:23.579850px;}
.yd1{bottom:29.700000px;}
.yc7{bottom:29.700300px;}
.yf1{bottom:29.729700px;}
.ya4{bottom:29.879700px;}
.y76{bottom:29.880000px;}
.ya0{bottom:29.880300px;}
.ye0{bottom:29.910150px;}
.y89{bottom:29.925000px;}
.ye6{bottom:29.925300px;}
.y8e{bottom:45.359250px;}
.ya1{bottom:45.359700px;}
.ybb{bottom:45.359850px;}
.y8b{bottom:45.360000px;}
.yb8{bottom:45.360300px;}
.yee{bottom:45.389700px;}
.yef{bottom:45.390000px;}
.yde{bottom:45.390150px;}
.y77{bottom:45.405000px;}
.ye8{bottom:45.405300px;}
.y6b{bottom:59.580000px;}
.y9f{bottom:60.840000px;}
.yf0{bottom:60.870000px;}
.ye5{bottom:60.885000px;}
.ya3{bottom:61.020000px;}
.ya7{bottom:61.020750px;}
.yc8{bottom:76.320000px;}
.yed{bottom:76.350000px;}
.yba{bottom:76.499550px;}
.ya9{bottom:76.499700px;}
.y8d{bottom:76.500000px;}
.ye7{bottom:76.545000px;}
.y4{bottom:77.759700px;}
.ya6{bottom:91.980000px;}
.ye3{bottom:96.300000px;}
.y3{bottom:100.800000px;}
.ya8{bottom:107.460000px;}
.yb9{bottom:107.505000px;}
.ye1{bottom:113.400000px;}
.y32{bottom:116.101200px;}
.y31{bottom:137.881050px;}
.ydd{bottom:145.079850px;}
.yb3{bottom:160.588800px;}
.y30{bottom:160.591350px;}
.y1c{bottom:161.126700px;}
.y69{bottom:161.306100px;}
.y2f{bottom:184.351050px;}
.yb2{bottom:191.729100px;}
.ydb{bottom:208.110000px;}
.y2e{bottom:208.110750px;}
.y8f{bottom:208.830000px;}
.y68{bottom:215.126250px;}
.y1b{bottom:218.726700px;}
.y4c{bottom:219.984000px;}
.yb1{bottom:222.689400px;}
.y8c{bottom:226.290000px;}
.y2d{bottom:231.870450px;}
.y67{bottom:247.166550px;}
.y1a{bottom:253.106550px;}
.yb0{bottom:253.829700px;}
.y4b{bottom:254.004150px;}
.y2c{bottom:255.630150px;}
.yd9{bottom:270.930000px;}
.y66{bottom:279.386700px;}
.y2b{bottom:279.570450px;}
.yaf{bottom:284.429700px;}
.y4a{bottom:288.025500px;}
.y19{bottom:293.426700px;}
.y2a{bottom:303.330150px;}
.y65{bottom:311.426400px;}
.yae{bottom:315.570000px;}
.y8a{bottom:320.250000px;}
.y49{bottom:322.045650px;}
.y29{bottom:327.089850px;}
.y18{bottom:333.746850px;}
.yd8{bottom:333.750000px;}
.y64{bottom:343.646550px;}
.yad{bottom:346.529700px;}
.y28{bottom:350.849550px;}
.y48{bottom:356.065800px;}
.y17{bottom:373.887150px;}
.y27{bottom:374.789850px;}
.y63{bottom:375.686850px;}
.yac{bottom:377.670000px;}
.yd7{bottom:379.829700px;}
.y87{bottom:383.070000px;}
.y47{bottom:389.905500px;}
.yab{bottom:395.175000px;}
.y26{bottom:398.594700px;}
.y62{bottom:407.951550px;}
.yd6{bottom:410.834550px;}
.y16{bottom:414.252900px;}
.y25{bottom:422.355000px;}
.y46{bottom:423.971250px;}
.ya5{bottom:426.855000px;}
.y61{bottom:440.171700px;}
.yd5{bottom:441.974850px;}
.y24{bottom:446.115300px;}
.y15{bottom:454.573050px;}
.y45{bottom:457.991400px;}
.y86{bottom:460.334850px;}
.y23{bottom:470.055000px;}
.y60{bottom:472.212000px;}
.yd4{bottom:472.934550px;}
.yf4{bottom:473.295300px;}
.y85{bottom:491.295150px;}
.y44{bottom:492.011550px;}
.y22{bottom:493.815300px;}
.y14{bottom:494.893200px;}
.yd3{bottom:504.074850px;}
.y5f{bottom:504.433950px;}
.yf3{bottom:504.435000px;}
.y21{bottom:521.175000px;}
.yf2{bottom:521.535000px;}
.y84{bottom:522.434850px;}
.y43{bottom:527.651250px;}
.y13{bottom:535.032900px;}
.yd2{bottom:535.395000px;}
.y5e{bottom:536.474250px;}
.yc5{bottom:538.095450px;}
.ya2{bottom:551.775000px;}
.yd0{bottom:552.675000px;}
.y83{bottom:553.755000px;}
.y42{bottom:563.291550px;}
.y5d{bottom:568.694400px;}
.yc4{bottom:569.595450px;}
.y81{bottom:570.855000px;}
.y12{bottom:575.353050px;}
.y41{bottom:599.111700px;}
.yc3{bottom:600.555150px;}
.y5c{bottom:600.734100px;}
.yec{bottom:615.495000px;}
.y11{bottom:615.673200px;}
.y80{bottom:616.934850px;}
.y20{bottom:624.674850px;}
.ycf{bottom:630.075150px;}
.yc2{bottom:631.335600px;}
.y5b{bottom:632.954250px;}
.y40{bottom:634.751400px;}
.y9e{bottom:645.765000px;}
.y7f{bottom:648.105000px;}
.y1f{bottom:652.245000px;}
.y10{bottom:655.843350px;}
.yce{bottom:660.884850px;}
.yc1{bottom:662.325300px;}
.y5a{bottom:665.204250px;}
.y3f{bottom:670.601400px;}
.y7e{bottom:679.065300px;}
.ycd{bottom:691.845150px;}
.yc0{bottom:693.465600px;}
.yf{bottom:696.163500px;}
.y59{bottom:697.244550px;}
.y3e{bottom:706.241700px;}
.yeb{bottom:709.305000px;}
.y7d{bottom:710.565300px;}
.ycc{bottom:722.984850px;}
.ybf{bottom:724.425300px;}
.y58{bottom:729.464700px;}
.ye{bottom:736.483650px;}
.y7c{bottom:741.165300px;}
.y3d{bottom:741.882000px;}
.y9d{bottom:753.945150px;}
.ycb{bottom:754.305000px;}
.ybe{bottom:755.385000px;}
.y57{bottom:763.124400px;}
.yca{bottom:771.405000px;}
.y7b{bottom:772.305000px;}
.yd{bottom:776.803800px;}
.y3c{bottom:777.702150px;}
.y9c{bottom:785.085450px;}
.ybd{bottom:786.885000px;}
.y56{bottom:796.964700px;}
.yea{bottom:803.265000px;}
.y7a{bottom:803.265300px;}
.yb7{bottom:803.985000px;}
.y3b{bottom:813.342450px;}
.y9b{bottom:816.045150px;}
.yc{bottom:816.944100px;}
.y1e{bottom:827.025750px;}
.y55{bottom:830.624400px;}
.yc9{bottom:834.225000px;}
.y79{bottom:834.405000px;}
.y9a{bottom:847.184850px;}
.y3a{bottom:849.164400px;}
.y1d{bottom:850.785000px;}
.y75{bottom:851.865000px;}
.yb{bottom:857.264250px;}
.y54{bottom:864.284100px;}
.ye4{bottom:866.085000px;}
.y99{bottom:878.505000px;}
.y39{bottom:884.804700px;}
.y98{bottom:895.650000px;}
.yc6{bottom:897.270000px;}
.ya{bottom:897.628950px;}
.y53{bottom:898.169400px;}
.y38{bottom:920.490000px;}
.y97{bottom:927.510000px;}
.yb5{bottom:928.950000px;}
.y74{bottom:929.129700px;}
.y52{bottom:931.829100px;}
.y9{bottom:937.769250px;}
.y37{bottom:956.309550px;}
.y95{bottom:959.370000px;}
.y73{bottom:960.090000px;}
.y51{bottom:965.669400px;}
.y8{bottom:978.089400px;}
.y94{bottom:991.050000px;}
.y72{bottom:991.590000px;}
.y36{bottom:991.949850px;}
.y50{bottom:999.329700px;}
.yb4{bottom:1006.170750px;}
.y7{bottom:1018.409550px;}
.y71{bottom:1022.551500px;}
.y35{bottom:1027.770000px;}
.y4f{bottom:1032.990000px;}
.y93{bottom:1037.130000px;}
.y70{bottom:1057.830750px;}
.y6{bottom:1058.729700px;}
.y2{bottom:1059.270150px;}
.y34{bottom:1063.409700px;}
.y4e{bottom:1066.829700px;}
.y92{bottom:1068.270300px;}
.y6f{bottom:1078.710600px;}
.y1{bottom:1090.950000px;}
.y5{bottom:1098.870000px;}
.y33{bottom:1099.050000px;}
.y91{bottom:1099.230000px;}
.y6e{bottom:1099.410000px;}
.y4d{bottom:1100.490000px;}
.y6a{bottom:1205.100000px;}
.hb{height:28.079850px;}
.h14{height:30.959700px;}
.h11{height:31.140300px;}
.h6{height:33.424102px;}
.ha{height:44.149219px;}
.h9{height:45.410625px;}
.h2{height:45.895781px;}
.he{height:49.176000px;}
.h4{height:49.359375px;}
.h5{height:49.886719px;}
.h17{height:50.027344px;}
.hc{height:50.628209px;}
.h8{height:53.352000px;}
.h12{height:62.100000px;}
.hf{height:62.135700px;}
.h1a{height:62.136300px;}
.h10{height:63.949219px;}
.hd{height:66.456000px;}
.h3{height:74.830078px;}
.h19{height:93.059700px;}
.h1c{height:93.096150px;}
.h13{height:93.239700px;}
.h1b{height:93.240300px;}
.h15{height:93.276000px;}
.h7{height:108.254180px;}
.h16{height:124.200000px;}
.h18{height:124.236300px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:31.139700px;}
.w4{width:31.140750px;}
.wa{width:31.176000px;}
.w8{width:33.300000px;}
.w12{width:41.759700px;}
.w10{width:41.796150px;}
.w14{width:43.919550px;}
.wc{width:44.676000px;}
.we{width:54.539700px;}
.w2{width:124.416150px;}
.w15{width:124.559700px;}
.wb{width:134.460300px;}
.w3{width:156.270000px;}
.wf{width:166.890000px;}
.w9{width:177.510000px;}
.w13{width:190.470000px;}
.w11{width:201.270000px;}
.w7{width:212.070000px;}
.w5{width:222.555000px;}
.w17{width:235.290000px;}
.wd{width:243.930000px;}
.w16{width:479.955000px;}
.w18{width:690.090000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x10{left:7.776000px;}
.x9{left:10.836300px;}
.x8{left:85.679850px;}
.xf{left:89.820150px;}
.x3{left:97.596000px;}
.x2{left:151.050000px;}
.x11{left:246.810000px;}
.x1b{left:257.430000px;}
.xb{left:263.370150px;}
.x16{left:268.050000px;}
.x12{left:278.670000px;}
.xa{left:283.350000px;}
.x6{left:298.695000px;}
.x17{left:299.955000px;}
.xd{left:345.675000px;}
.xe{left:384.735000px;}
.xc{left:400.215300px;}
.x18{left:435.315000px;}
.x7{left:446.654700px;}
.x19{left:480.705000px;}
.x13{left:501.945000px;}
.x14{left:533.805000px;}
.x1c{left:544.605000px;}
.x4{left:634.605000px;}
.x1e{left:712.950000px;}
.x1a{left:725.370000px;}
.x5{left:728.070000px;}
.x1d{left:735.990000px;}
.x15{left:746.610000px;}
.x1{left:787.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-3.840000pt;}
.ls2{letter-spacing:-0.768000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.319147pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.639573pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws1{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws0{word-spacing:0.000000pt;}
._28{margin-left:-9.025031pt;}
._1d{margin-left:-7.938304pt;}
._6{margin-left:-5.458306pt;}
._4{margin-left:-4.288000pt;}
._8{margin-left:-3.200128pt;}
._12{margin-left:-2.052735pt;}
._0{margin-left:-1.043903pt;}
._1{width:1.642059pt;}
._25{width:2.880241pt;}
._1f{width:4.383217pt;}
._1e{width:5.374350pt;}
._1a{width:6.440585pt;}
._7{width:7.487885pt;}
._9{width:8.387006pt;}
._f{width:9.348445pt;}
._1b{width:10.494490pt;}
._5{width:11.455029pt;}
._e{width:12.735424pt;}
._26{width:14.743635pt;}
._21{width:17.615414pt;}
._d{width:19.392917pt;}
._20{width:21.038427pt;}
._c{width:22.974976pt;}
._2c{width:24.575849pt;}
._2d{width:25.470841pt;}
._a{width:28.160448pt;}
._b{width:30.012015pt;}
._1c{width:33.682176pt;}
._15{width:35.263919pt;}
._17{width:36.436962pt;}
._16{width:37.567098pt;}
._2e{width:42.816640pt;}
._2b{width:45.327926pt;}
._29{width:46.273219pt;}
._2a{width:47.294909pt;}
._24{width:49.979122pt;}
._23{width:52.289590pt;}
._22{width:53.396776pt;}
._19{width:67.418641pt;}
._18{width:68.416640pt;}
._11{width:73.662220pt;}
._10{width:76.609041pt;}
._33{width:80.964644pt;}
._34{width:81.940304pt;}
._14{width:86.252050pt;}
._13{width:87.616640pt;}
._31{width:88.913246pt;}
._27{width:97.811247pt;}
._32{width:140.882161pt;}
._2f{width:169.980971pt;}
._30{width:356.286088pt;}
._2{width:736.750067pt;}
._35{width:752.134400pt;}
._3{width:753.670400pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:62.064540pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:11.040133pt;}
.yda{bottom:12.639333pt;}
.ydc{bottom:12.639733pt;}
.y96{bottom:12.640000pt;}
.ye2{bottom:12.640133pt;}
.y78{bottom:12.640267pt;}
.y88{bottom:12.679733pt;}
.yaa{bottom:12.799733pt;}
.ye9{bottom:12.799867pt;}
.y82{bottom:12.800000pt;}
.ybc{bottom:12.800133pt;}
.yb6{bottom:12.800667pt;}
.ydf{bottom:12.826533pt;}
.y6c{bottom:18.559867pt;}
.y90{bottom:20.959867pt;}
.yd1{bottom:26.400000pt;}
.yc7{bottom:26.400267pt;}
.yf1{bottom:26.426400pt;}
.ya4{bottom:26.559733pt;}
.y76{bottom:26.560000pt;}
.ya0{bottom:26.560267pt;}
.ye0{bottom:26.586800pt;}
.y89{bottom:26.600000pt;}
.ye6{bottom:26.600267pt;}
.y8e{bottom:40.319333pt;}
.ya1{bottom:40.319733pt;}
.ybb{bottom:40.319867pt;}
.y8b{bottom:40.320000pt;}
.yb8{bottom:40.320267pt;}
.yee{bottom:40.346400pt;}
.yef{bottom:40.346667pt;}
.yde{bottom:40.346800pt;}
.y77{bottom:40.360000pt;}
.ye8{bottom:40.360267pt;}
.y6b{bottom:52.960000pt;}
.y9f{bottom:54.080000pt;}
.yf0{bottom:54.106667pt;}
.ye5{bottom:54.120000pt;}
.ya3{bottom:54.240000pt;}
.ya7{bottom:54.240667pt;}
.yc8{bottom:67.840000pt;}
.yed{bottom:67.866667pt;}
.yba{bottom:67.999600pt;}
.ya9{bottom:67.999733pt;}
.y8d{bottom:68.000000pt;}
.ye7{bottom:68.040000pt;}
.y4{bottom:69.119733pt;}
.ya6{bottom:81.760000pt;}
.ye3{bottom:85.600000pt;}
.y3{bottom:89.600000pt;}
.ya8{bottom:95.520000pt;}
.yb9{bottom:95.560000pt;}
.ye1{bottom:100.800000pt;}
.y32{bottom:103.201067pt;}
.y31{bottom:122.560933pt;}
.ydd{bottom:128.959867pt;}
.yb3{bottom:142.745600pt;}
.y30{bottom:142.747867pt;}
.y1c{bottom:143.223733pt;}
.y69{bottom:143.383200pt;}
.y2f{bottom:163.867600pt;}
.yb2{bottom:170.425867pt;}
.ydb{bottom:184.986667pt;}
.y2e{bottom:184.987333pt;}
.y8f{bottom:185.626667pt;}
.y68{bottom:191.223333pt;}
.y1b{bottom:194.423733pt;}
.y4c{bottom:195.541333pt;}
.yb1{bottom:197.946133pt;}
.y8c{bottom:201.146667pt;}
.y2d{bottom:206.107067pt;}
.y67{bottom:219.703600pt;}
.y1a{bottom:224.983600pt;}
.yb0{bottom:225.626400pt;}
.y4b{bottom:225.781467pt;}
.y2c{bottom:227.226800pt;}
.yd9{bottom:240.826667pt;}
.y66{bottom:248.343733pt;}
.y2b{bottom:248.507067pt;}
.yaf{bottom:252.826400pt;}
.y4a{bottom:256.022667pt;}
.y19{bottom:260.823733pt;}
.y2a{bottom:269.626800pt;}
.y65{bottom:276.823467pt;}
.yae{bottom:280.506667pt;}
.y8a{bottom:284.666667pt;}
.y49{bottom:286.262800pt;}
.y29{bottom:290.746533pt;}
.y18{bottom:296.663867pt;}
.yd8{bottom:296.666667pt;}
.y64{bottom:305.463600pt;}
.yad{bottom:308.026400pt;}
.y28{bottom:311.866267pt;}
.y48{bottom:316.502933pt;}
.y17{bottom:332.344133pt;}
.y27{bottom:333.146533pt;}
.y63{bottom:333.943867pt;}
.yac{bottom:335.706667pt;}
.yd7{bottom:337.626400pt;}
.y87{bottom:340.506667pt;}
.y47{bottom:346.582667pt;}
.yab{bottom:351.266667pt;}
.y26{bottom:354.306400pt;}
.y62{bottom:362.623600pt;}
.yd6{bottom:365.186267pt;}
.y16{bottom:368.224800pt;}
.y25{bottom:375.426667pt;}
.y46{bottom:376.863333pt;}
.ya5{bottom:379.426667pt;}
.y61{bottom:391.263733pt;}
.yd5{bottom:392.866533pt;}
.y24{bottom:396.546933pt;}
.y15{bottom:404.064933pt;}
.y45{bottom:407.103467pt;}
.y86{bottom:409.186533pt;}
.y23{bottom:417.826667pt;}
.y60{bottom:419.744000pt;}
.yd4{bottom:420.386267pt;}
.yf4{bottom:420.706933pt;}
.y85{bottom:436.706800pt;}
.y44{bottom:437.343600pt;}
.y22{bottom:438.946933pt;}
.y14{bottom:439.905067pt;}
.yd3{bottom:448.066533pt;}
.y5f{bottom:448.385733pt;}
.yf3{bottom:448.386667pt;}
.y21{bottom:463.266667pt;}
.yf2{bottom:463.586667pt;}
.y84{bottom:464.386533pt;}
.y43{bottom:469.023333pt;}
.y13{bottom:475.584800pt;}
.yd2{bottom:475.906667pt;}
.y5e{bottom:476.866000pt;}
.yc5{bottom:478.307067pt;}
.ya2{bottom:490.466667pt;}
.yd0{bottom:491.266667pt;}
.y83{bottom:492.226667pt;}
.y42{bottom:500.703600pt;}
.y5d{bottom:505.506133pt;}
.yc4{bottom:506.307067pt;}
.y81{bottom:507.426667pt;}
.y12{bottom:511.424933pt;}
.y41{bottom:532.543733pt;}
.yc3{bottom:533.826800pt;}
.y5c{bottom:533.985867pt;}
.yec{bottom:547.106667pt;}
.y11{bottom:547.265067pt;}
.y80{bottom:548.386533pt;}
.y20{bottom:555.266533pt;}
.ycf{bottom:560.066800pt;}
.yc2{bottom:561.187200pt;}
.y5b{bottom:562.626000pt;}
.y40{bottom:564.223467pt;}
.y9e{bottom:574.013333pt;}
.y7f{bottom:576.093333pt;}
.y1f{bottom:579.773333pt;}
.y10{bottom:582.971867pt;}
.yce{bottom:587.453200pt;}
.yc1{bottom:588.733600pt;}
.y5a{bottom:591.292667pt;}
.y3f{bottom:596.090133pt;}
.y7e{bottom:603.613600pt;}
.ycd{bottom:614.973467pt;}
.yc0{bottom:616.413867pt;}
.yf{bottom:618.812000pt;}
.y59{bottom:619.772933pt;}
.y3e{bottom:627.770400pt;}
.yeb{bottom:630.493333pt;}
.y7d{bottom:631.613600pt;}
.ycc{bottom:642.653200pt;}
.ybf{bottom:643.933600pt;}
.y58{bottom:648.413067pt;}
.ye{bottom:654.652133pt;}
.y7c{bottom:658.813600pt;}
.y3d{bottom:659.450667pt;}
.y9d{bottom:670.173467pt;}
.ycb{bottom:670.493333pt;}
.ybe{bottom:671.453333pt;}
.y57{bottom:678.332800pt;}
.yca{bottom:685.693333pt;}
.y7b{bottom:686.493333pt;}
.yd{bottom:690.492267pt;}
.y3c{bottom:691.290800pt;}
.y9c{bottom:697.853733pt;}
.ybd{bottom:699.453333pt;}
.y56{bottom:708.413067pt;}
.yea{bottom:714.013333pt;}
.y7a{bottom:714.013600pt;}
.yb7{bottom:714.653333pt;}
.y3b{bottom:722.971067pt;}
.y9b{bottom:725.373467pt;}
.yc{bottom:726.172533pt;}
.y1e{bottom:735.134000pt;}
.y55{bottom:738.332800pt;}
.yc9{bottom:741.533333pt;}
.y79{bottom:741.693333pt;}
.y9a{bottom:753.053200pt;}
.y3a{bottom:754.812800pt;}
.y1d{bottom:756.253333pt;}
.y75{bottom:757.213333pt;}
.yb{bottom:762.012667pt;}
.y54{bottom:768.252533pt;}
.ye4{bottom:769.853333pt;}
.y99{bottom:780.893333pt;}
.y39{bottom:786.493067pt;}
.y98{bottom:796.133333pt;}
.yc6{bottom:797.573333pt;}
.ya{bottom:797.892400pt;}
.y53{bottom:798.372800pt;}
.y38{bottom:818.213333pt;}
.y97{bottom:824.453333pt;}
.yb5{bottom:825.733333pt;}
.y74{bottom:825.893067pt;}
.y52{bottom:828.292533pt;}
.y9{bottom:833.572667pt;}
.y37{bottom:850.052933pt;}
.y95{bottom:852.773333pt;}
.y73{bottom:853.413333pt;}
.y51{bottom:858.372800pt;}
.y8{bottom:869.412800pt;}
.y94{bottom:880.933333pt;}
.y72{bottom:881.413333pt;}
.y36{bottom:881.733200pt;}
.y50{bottom:888.293067pt;}
.yb4{bottom:894.374000pt;}
.y7{bottom:905.252933pt;}
.y71{bottom:908.934667pt;}
.y35{bottom:913.573333pt;}
.y4f{bottom:918.213333pt;}
.y93{bottom:921.893333pt;}
.y70{bottom:940.294000pt;}
.y6{bottom:941.093067pt;}
.y2{bottom:941.573467pt;}
.y34{bottom:945.253067pt;}
.y4e{bottom:948.293067pt;}
.y92{bottom:949.573600pt;}
.y6f{bottom:958.853867pt;}
.y1{bottom:969.733333pt;}
.y5{bottom:976.773333pt;}
.y33{bottom:976.933333pt;}
.y91{bottom:977.093333pt;}
.y6e{bottom:977.253333pt;}
.y4d{bottom:978.213333pt;}
.y6a{bottom:1071.200000pt;}
.hb{height:24.959867pt;}
.h14{height:27.519733pt;}
.h11{height:27.680267pt;}
.h6{height:29.710312pt;}
.ha{height:39.243750pt;}
.h9{height:40.365000pt;}
.h2{height:40.796250pt;}
.he{height:43.712000pt;}
.h4{height:43.875000pt;}
.h5{height:44.343750pt;}
.h17{height:44.468750pt;}
.hc{height:45.002853pt;}
.h8{height:47.424000pt;}
.h12{height:55.200000pt;}
.hf{height:55.231733pt;}
.h1a{height:55.232267pt;}
.h10{height:56.843750pt;}
.hd{height:59.072000pt;}
.h3{height:66.515625pt;}
.h19{height:82.719733pt;}
.h1c{height:82.752133pt;}
.h13{height:82.879733pt;}
.h1b{height:82.880267pt;}
.h15{height:82.912000pt;}
.h7{height:96.225938pt;}
.h16{height:110.400000pt;}
.h18{height:110.432267pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:27.679733pt;}
.w4{width:27.680667pt;}
.wa{width:27.712000pt;}
.w8{width:29.600000pt;}
.w12{width:37.119733pt;}
.w10{width:37.152133pt;}
.w14{width:39.039600pt;}
.wc{width:39.712000pt;}
.we{width:48.479733pt;}
.w2{width:110.592133pt;}
.w15{width:110.719733pt;}
.wb{width:119.520267pt;}
.w3{width:138.906667pt;}
.wf{width:148.346667pt;}
.w9{width:157.786667pt;}
.w13{width:169.306667pt;}
.w11{width:178.906667pt;}
.w7{width:188.506667pt;}
.w5{width:197.826667pt;}
.w17{width:209.146667pt;}
.wd{width:216.826667pt;}
.w16{width:426.626667pt;}
.w18{width:613.413333pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x10{left:6.912000pt;}
.x9{left:9.632267pt;}
.x8{left:76.159867pt;}
.xf{left:79.840133pt;}
.x3{left:86.752000pt;}
.x2{left:134.266667pt;}
.x11{left:219.386667pt;}
.x1b{left:228.826667pt;}
.xb{left:234.106800pt;}
.x16{left:238.266667pt;}
.x12{left:247.706667pt;}
.xa{left:251.866667pt;}
.x6{left:265.506667pt;}
.x17{left:266.626667pt;}
.xd{left:307.266667pt;}
.xe{left:341.986667pt;}
.xc{left:355.746933pt;}
.x18{left:386.946667pt;}
.x7{left:397.026400pt;}
.x19{left:427.293333pt;}
.x13{left:446.173333pt;}
.x14{left:474.493333pt;}
.x1c{left:484.093333pt;}
.x4{left:564.093333pt;}
.x1e{left:633.733333pt;}
.x1a{left:644.773333pt;}
.x5{left:647.173333pt;}
.x1d{left:654.213333pt;}
.x15{left:663.653333pt;}
.x1{left:699.973333pt;}
}




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