
    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_8322ae3da58ccd2678d11c4e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_1ca31327fc10291f67f3b5ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_abd190d340ac39d9b05d5171.woff')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_4dd46764f7a214a87985f943.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_6ca76ab32c0a69a28ff1e87a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.008000;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_a99424462eda8f04ab4aff1a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.996000;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;}
.m2{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.200000px;}
.v2{vertical-align:2.760000px;}
.v3{vertical-align:51.604028px;}
.ls9{letter-spacing:-3.866706px;}
.ls7{letter-spacing:-2.640000px;}
.ls8{letter-spacing:-2.310000px;}
.ls2{letter-spacing:-1.980000px;}
.ls4{letter-spacing:-1.650000px;}
.ls3{letter-spacing:-1.320000px;}
.ls5{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.660000px;}
.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;}
}
.ws8{word-spacing:-35.831476px;}
.ws4{word-spacing:-33.360000px;}
.wsf{word-spacing:-31.964770px;}
.ws0{word-spacing:-29.895064px;}
.wsa{word-spacing:-17.028000px;}
.ws9{word-spacing:-15.708000px;}
.wsb{word-spacing:-15.012000px;}
.ws6{word-spacing:-1.728000px;}
.ws7{word-spacing:-0.864000px;}
.ws1{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:1.320000px;}
.wsd{word-spacing:1.650000px;}
.ws5{word-spacing:1.980000px;}
.wsc{word-spacing:2.640000px;}
.ws10{word-spacing:3.866706px;}
.ws3{word-spacing:1924.440000px;}
._3{margin-left:-13.320000px;}
._a{margin-left:-11.857898px;}
._c{margin-left:-10.296000px;}
._5{margin-left:-8.454600px;}
._7{margin-left:-7.266000px;}
._6{margin-left:-5.940000px;}
._1{margin-left:-3.888000px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.188000px;}
._9{width:1.296000px;}
._8{width:2.304000px;}
._4{width:579.000000px;}
._b{width:857.344351px;}
.fc2{color:rgb(255,134,0);}
.fc1{color:rgb(255,0,216);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:107.536200px;}
.fs5{font-size:120.000000px;}
.fs6{font-size:128.890200px;}
.fs4{font-size:252.590400px;}
.fs1{font-size:632.125800px;}
.y0{bottom:0.000000px;}
.yc{bottom:26.072700px;}
.y85{bottom:26.074200px;}
.y7{bottom:32.400300px;}
.y6{bottom:48.600300px;}
.yf2{bottom:57.105900px;}
.y5{bottom:64.800300px;}
.y88{bottom:72.855209px;}
.y60{bottom:86.433600px;}
.y66{bottom:87.477600px;}
.y63{bottom:87.711600px;}
.y99{bottom:99.773359px;}
.y87{bottom:105.851100px;}
.y3b{bottom:113.952900px;}
.y70{bottom:116.791950px;}
.y65{bottom:117.051600px;}
.y62{bottom:117.285600px;}
.y3a{bottom:133.752900px;}
.y130{bottom:141.790200px;}
.y64{bottom:146.625600px;}
.y61{bottom:146.859600px;}
.y5f{bottom:147.093600px;}
.ya7{bottom:147.388650px;}
.ycb{bottom:153.336750px;}
.y39{bottom:153.552900px;}
.y12f{bottom:161.590200px;}
.ya6{bottom:167.188650px;}
.y38{bottom:173.352900px;}
.y12e{bottom:181.390200px;}
.ya5{bottom:186.988650px;}
.y37{bottom:193.152900px;}
.yca{bottom:200.141250px;}
.y12d{bottom:201.190200px;}
.ya4{bottom:206.788650px;}
.y5e{bottom:207.537600px;}
.yc9{bottom:216.341250px;}
.y12c{bottom:220.990200px;}
.ya3{bottom:226.588650px;}
.y5d{bottom:234.265200px;}
.ya2{bottom:246.388650px;}
.y36{bottom:251.352600px;}
.y12b{bottom:260.590200px;}
.ya1{bottom:266.188650px;}
.y12a{bottom:280.390200px;}
.ya0{bottom:285.988650px;}
.y129{bottom:300.190200px;}
.y9f{bottom:305.788650px;}
.yf0{bottom:314.897550px;}
.y128{bottom:319.990200px;}
.y2e{bottom:332.904000px;}
.yef{bottom:334.697550px;}
.y32{bottom:338.561850px;}
.y35{bottom:338.562300px;}
.y9e{bottom:345.388650px;}
.y2d{bottom:352.704000px;}
.yee{bottom:354.497550px;}
.y31{bottom:358.361850px;}
.y34{bottom:358.362300px;}
.yaf{bottom:363.070350px;}
.y132{bottom:364.748850px;}
.y9d{bottom:365.188650px;}
.y11e{bottom:366.124200px;}
.y2c{bottom:372.504000px;}
.y30{bottom:378.161850px;}
.y9c{bottom:384.988650px;}
.y11d{bottom:385.924200px;}
.y2b{bottom:392.304000px;}
.yed{bottom:394.097550px;}
.y9b{bottom:404.788650px;}
.y11c{bottom:405.724200px;}
.y116{bottom:408.082050px;}
.y115{bottom:411.307500px;}
.y9a{bottom:411.687643px;}
.y2a{bottom:412.104000px;}
.yec{bottom:413.897550px;}
.y11b{bottom:425.524200px;}
.y114{bottom:431.107500px;}
.y29{bottom:431.904000px;}
.yeb{bottom:433.697550px;}
.y11a{bottom:445.324200px;}
.y113{bottom:450.907500px;}
.y6f{bottom:451.277100px;}
.y5c{bottom:452.471250px;}
.yea{bottom:453.497550px;}
.y6e{bottom:467.477100px;}
.y112{bottom:470.707500px;}
.y5b{bottom:472.271250px;}
.ye9{bottom:473.297550px;}
.y6d{bottom:483.677100px;}
.y111{bottom:490.507500px;}
.y5a{bottom:492.071250px;}
.ye8{bottom:493.097550px;}
.y131{bottom:495.131850px;}
.y6c{bottom:499.877100px;}
.ycd{bottom:501.839250px;}
.y96{bottom:511.223100px;}
.y59{bottom:511.871250px;}
.ye7{bottom:512.897550px;}
.ycc{bottom:518.039250px;}
.y2f{bottom:525.072450px;}
.y33{bottom:526.207050px;}
.y9{bottom:526.810200px;}
.y110{bottom:530.107500px;}
.y58{bottom:531.671250px;}
.y6b{bottom:532.277100px;}
.ye6{bottom:532.697550px;}
.y8{bottom:547.451700px;}
.y6a{bottom:548.477100px;}
.y10f{bottom:549.907500px;}
.ye5{bottom:552.497550px;}
.y74{bottom:564.997112px;}
.y10e{bottom:569.707500px;}
.y57{bottom:571.271250px;}
.y69{bottom:586.278300px;}
.y10d{bottom:589.507500px;}
.y127{bottom:589.814700px;}
.y56{bottom:591.071250px;}
.ye4{bottom:592.097550px;}
.y1b{bottom:605.088750px;}
.y1f{bottom:607.481250px;}
.y10c{bottom:609.307500px;}
.y126{bottom:609.614700px;}
.y55{bottom:610.871250px;}
.ye3{bottom:611.897550px;}
.y1a{bottom:624.888750px;}
.y1e{bottom:627.281250px;}
.y10b{bottom:629.107500px;}
.y125{bottom:629.414700px;}
.y54{bottom:630.671250px;}
.ye2{bottom:631.697550px;}
.y1d{bottom:647.081250px;}
.y2{bottom:648.040650px;}
.y10a{bottom:648.907500px;}
.y124{bottom:649.214700px;}
.y53{bottom:650.471250px;}
.ye1{bottom:651.497550px;}
.y1c{bottom:666.881250px;}
.y1{bottom:667.840650px;}
.y109{bottom:668.707500px;}
.y52{bottom:670.271250px;}
.yc5{bottom:676.362750px;}
.y108{bottom:688.507500px;}
.y123{bottom:688.814700px;}
.ye0{bottom:689.893050px;}
.y51{bottom:690.071250px;}
.yf1{bottom:692.618400px;}
.yc4{bottom:696.162750px;}
.y107{bottom:708.307500px;}
.y122{bottom:708.614700px;}
.ydf{bottom:709.693050px;}
.y50{bottom:709.871250px;}
.yc3{bottom:715.962750px;}
.y106{bottom:728.107500px;}
.y121{bottom:728.414700px;}
.yde{bottom:729.493050px;}
.y4f{bottom:729.671250px;}
.y83{bottom:730.114350px;}
.yc2{bottom:735.762750px;}
.y20{bottom:746.960400px;}
.y120{bottom:748.214700px;}
.ydd{bottom:749.293050px;}
.y4e{bottom:749.471250px;}
.y82{bottom:749.914350px;}
.yc1{bottom:755.562750px;}
.y105{bottom:767.707500px;}
.y11f{bottom:768.014700px;}
.ydc{bottom:769.093050px;}
.y4d{bottom:769.271250px;}
.y81{bottom:769.714350px;}
.yc0{bottom:775.362750px;}
.y104{bottom:787.507500px;}
.ydb{bottom:788.893050px;}
.y4c{bottom:789.071250px;}
.y80{bottom:789.514350px;}
.ybf{bottom:795.162750px;}
.y68{bottom:795.762300px;}
.ya{bottom:796.007700px;}
.y103{bottom:807.307500px;}
.y4b{bottom:808.871250px;}
.y7f{bottom:809.314350px;}
.ybe{bottom:814.962750px;}
.y67{bottom:817.362300px;}
.y28{bottom:825.426000px;}
.yda{bottom:825.628650px;}
.y102{bottom:827.107500px;}
.y19{bottom:829.076250px;}
.y7e{bottom:829.114350px;}
.ye{bottom:833.495700px;}
.ybd{bottom:834.762750px;}
.y27{bottom:845.226000px;}
.yd9{bottom:845.428650px;}
.y101{bottom:846.907500px;}
.y133{bottom:848.426850px;}
.y4a{bottom:848.471250px;}
.y18{bottom:848.876250px;}
.y7d{bottom:848.914350px;}
.yd{bottom:853.295700px;}
.ybc{bottom:854.562750px;}
.y134{bottom:863.425350px;}
.y26{bottom:865.026000px;}
.yd8{bottom:865.228650px;}
.y100{bottom:866.707500px;}
.y49{bottom:868.271250px;}
.y17{bottom:868.676250px;}
.y25{bottom:884.826000px;}
.yd7{bottom:885.028650px;}
.yff{bottom:886.507500px;}
.y48{bottom:888.071250px;}
.y16{bottom:888.476250px;}
.y7c{bottom:888.514350px;}
.yc7{bottom:890.535300px;}
.ybb{bottom:894.162750px;}
.y117{bottom:901.413600px;}
.y24{bottom:904.626000px;}
.yd6{bottom:904.828650px;}
.yfe{bottom:906.307500px;}
.yc6{bottom:906.735300px;}
.yf3{bottom:907.092900px;}
.y47{bottom:907.871250px;}
.y15{bottom:908.276250px;}
.y7b{bottom:908.314350px;}
.yba{bottom:913.962750px;}
.yd5{bottom:924.628650px;}
.yfd{bottom:926.107500px;}
.y46{bottom:927.671250px;}
.y14{bottom:928.076250px;}
.yb9{bottom:933.762750px;}
.y118{bottom:935.604147px;}
.y23{bottom:940.514700px;}
.yd4{bottom:944.428650px;}
.yfc{bottom:945.907500px;}
.y45{bottom:947.471250px;}
.y13{bottom:947.876250px;}
.y7a{bottom:947.914350px;}
.y11{bottom:950.325450px;}
.yb8{bottom:953.562750px;}
.y84{bottom:962.417700px;}
.yd3{bottom:964.228650px;}
.yfb{bottom:965.707500px;}
.y44{bottom:967.271250px;}
.y79{bottom:967.714350px;}
.yf6{bottom:968.614498px;}
.y3f{bottom:968.647918px;}
.yb2{bottom:970.114498px;}
.yb7{bottom:973.362750px;}
.y22{bottom:976.514700px;}
.y10{bottom:983.325450px;}
.yd2{bottom:984.028650px;}
.yfa{bottom:985.507500px;}
.y43{bottom:987.071250px;}
.y78{bottom:987.514350px;}
.yb6{bottom:993.162750px;}
.y73{bottom:999.389309px;}
.y3e{bottom:1001.643809px;}
.yf5{bottom:1003.124849px;}
.yd1{bottom:1003.828650px;}
.yb1{bottom:1004.624849px;}
.yf9{bottom:1005.307500px;}
.y42{bottom:1006.871250px;}
.y77{bottom:1007.314350px;}
.y21{bottom:1012.514700px;}
.y12{bottom:1012.515450px;}
.yb5{bottom:1012.962750px;}
.yf{bottom:1016.325450px;}
.yd0{bottom:1023.628650px;}
.yf8{bottom:1025.107500px;}
.y41{bottom:1026.671250px;}
.y76{bottom:1027.114350px;}
.y94{bottom:1027.364250px;}
.y72{bottom:1032.385200px;}
.yb4{bottom:1032.762750px;}
.y3d{bottom:1034.639700px;}
.yf4{bottom:1037.635200px;}
.yb0{bottom:1039.135200px;}
.ycf{bottom:1043.428650px;}
.y93{bottom:1043.564250px;}
.yf7{bottom:1044.907500px;}
.yae{bottom:1045.618200px;}
.y40{bottom:1046.471250px;}
.y75{bottom:1046.914350px;}
.y92{bottom:1047.780300px;}
.yb3{bottom:1052.562750px;}
.yad{bottom:1065.418200px;}
.y91{bottom:1067.580300px;}
.yac{bottom:1085.218200px;}
.y4{bottom:1087.221750px;}
.y8b{bottom:1087.349973px;}
.y90{bottom:1087.380300px;}
.yab{bottom:1105.018200px;}
.y8f{bottom:1107.180300px;}
.y3{bottom:1121.654250px;}
.y98{bottom:1121.840422px;}
.y8a{bottom:1121.860324px;}
.yaa{bottom:1124.818200px;}
.y8e{bottom:1126.980300px;}
.ya9{bottom:1144.618200px;}
.y8d{bottom:1146.780300px;}
.y97{bottom:1156.350774px;}
.y89{bottom:1156.370675px;}
.ya8{bottom:1164.418200px;}
.y8c{bottom:1166.580300px;}
.yb{bottom:1183.936500px;}
.y119{bottom:1189.935750px;}
.yc8{bottom:1189.937250px;}
.y95{bottom:1213.792200px;}
.y71{bottom:1213.792950px;}
.y3c{bottom:1213.793400px;}
.y86{bottom:1213.793700px;}
.yce{bottom:1213.794450px;}
.h5{height:41.472000px;}
.h2{height:50.688000px;}
.hc{height:52.272000px;}
.hb{height:55.296000px;}
.h4{height:82.587802px;}
.h7{height:92.160000px;}
.h8{height:93.360000px;}
.h9{height:94.920000px;}
.hd{height:97.440991px;}
.ha{height:98.987674px;}
.he{height:102.292028px;}
.hf{height:190.958342px;}
.h6{height:193.989427px;}
.h3{height:485.472614px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7{left:-204.956550px;}
.x0{left:0.000000px;}
.x12{left:21.345750px;}
.x1{left:22.752000px;}
.x6{left:23.754000px;}
.x16{left:25.970550px;}
.x5{left:27.252000px;}
.x4{left:28.752000px;}
.x17{left:30.320850px;}
.x1b{left:31.592436px;}
.x19{left:32.935525px;}
.x20{left:35.127000px;}
.x21{left:36.865050px;}
.x1c{left:38.262504px;}
.x9{left:39.369150px;}
.x1d{left:41.361300px;}
.xe{left:252.543450px;}
.xa{left:256.719150px;}
.x14{left:295.873650px;}
.x13{left:444.804150px;}
.x18{left:447.131100px;}
.x1a{left:448.215150px;}
.x1e{left:456.389700px;}
.x1f{left:457.949700px;}
.x22{left:464.941050px;}
.x15{left:553.867650px;}
.x10{left:626.043450px;}
.xf{left:628.527150px;}
.xc{left:629.567850px;}
.xd{left:630.582300px;}
.xb{left:635.642250px;}
.x2{left:717.956550px;}
.x3{left:731.456550px;}
.x11{left:792.940650px;}
.x23{left:853.324950px;}
.x8{left:857.913600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.066667pt;}
.v2{vertical-align:2.453333pt;}
.v3{vertical-align:45.870247pt;}
.ls9{letter-spacing:-3.437072pt;}
.ls7{letter-spacing:-2.346667pt;}
.ls8{letter-spacing:-2.053333pt;}
.ls2{letter-spacing:-1.760000pt;}
.ls4{letter-spacing:-1.466667pt;}
.ls3{letter-spacing:-1.173333pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.586667pt;}
.ws8{word-spacing:-31.850201pt;}
.ws4{word-spacing:-29.653333pt;}
.wsf{word-spacing:-28.413129pt;}
.ws0{word-spacing:-26.573390pt;}
.wsa{word-spacing:-15.136000pt;}
.ws9{word-spacing:-13.962667pt;}
.wsb{word-spacing:-13.344000pt;}
.ws6{word-spacing:-1.536000pt;}
.ws7{word-spacing:-0.768000pt;}
.ws1{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:1.173333pt;}
.wsd{word-spacing:1.466667pt;}
.ws5{word-spacing:1.760000pt;}
.wsc{word-spacing:2.346667pt;}
.ws10{word-spacing:3.437072pt;}
.ws3{word-spacing:1710.613333pt;}
._3{margin-left:-11.840000pt;}
._a{margin-left:-10.540354pt;}
._c{margin-left:-9.152000pt;}
._5{margin-left:-7.515200pt;}
._7{margin-left:-6.458667pt;}
._6{margin-left:-5.280000pt;}
._1{margin-left:-3.456000pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.056000pt;}
._9{width:1.152000pt;}
._8{width:2.048000pt;}
._4{width:514.666667pt;}
._b{width:762.083868pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:95.587733pt;}
.fs5{font-size:106.666667pt;}
.fs6{font-size:114.569067pt;}
.fs4{font-size:224.524800pt;}
.fs1{font-size:561.889600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:23.175733pt;}
.y85{bottom:23.177067pt;}
.y7{bottom:28.800267pt;}
.y6{bottom:43.200267pt;}
.yf2{bottom:50.760800pt;}
.y5{bottom:57.600267pt;}
.y88{bottom:64.760186pt;}
.y60{bottom:76.829867pt;}
.y66{bottom:77.757867pt;}
.y63{bottom:77.965867pt;}
.y99{bottom:88.687430pt;}
.y87{bottom:94.089867pt;}
.y3b{bottom:101.291467pt;}
.y70{bottom:103.815067pt;}
.y65{bottom:104.045867pt;}
.y62{bottom:104.253867pt;}
.y3a{bottom:118.891467pt;}
.y130{bottom:126.035733pt;}
.y64{bottom:130.333867pt;}
.y61{bottom:130.541867pt;}
.y5f{bottom:130.749867pt;}
.ya7{bottom:131.012133pt;}
.ycb{bottom:136.299333pt;}
.y39{bottom:136.491467pt;}
.y12f{bottom:143.635733pt;}
.ya6{bottom:148.612133pt;}
.y38{bottom:154.091467pt;}
.y12e{bottom:161.235733pt;}
.ya5{bottom:166.212133pt;}
.y37{bottom:171.691467pt;}
.yca{bottom:177.903333pt;}
.y12d{bottom:178.835733pt;}
.ya4{bottom:183.812133pt;}
.y5e{bottom:184.477867pt;}
.yc9{bottom:192.303333pt;}
.y12c{bottom:196.435733pt;}
.ya3{bottom:201.412133pt;}
.y5d{bottom:208.235733pt;}
.ya2{bottom:219.012133pt;}
.y36{bottom:223.424533pt;}
.y12b{bottom:231.635733pt;}
.ya1{bottom:236.612133pt;}
.y12a{bottom:249.235733pt;}
.ya0{bottom:254.212133pt;}
.y129{bottom:266.835733pt;}
.y9f{bottom:271.812133pt;}
.yf0{bottom:279.908933pt;}
.y128{bottom:284.435733pt;}
.y2e{bottom:295.914667pt;}
.yef{bottom:297.508933pt;}
.y32{bottom:300.943867pt;}
.y35{bottom:300.944267pt;}
.y9e{bottom:307.012133pt;}
.y2d{bottom:313.514667pt;}
.yee{bottom:315.108933pt;}
.y31{bottom:318.543867pt;}
.y34{bottom:318.544267pt;}
.yaf{bottom:322.729200pt;}
.y132{bottom:324.221200pt;}
.y9d{bottom:324.612133pt;}
.y11e{bottom:325.443733pt;}
.y2c{bottom:331.114667pt;}
.y30{bottom:336.143867pt;}
.y9c{bottom:342.212133pt;}
.y11d{bottom:343.043733pt;}
.y2b{bottom:348.714667pt;}
.yed{bottom:350.308933pt;}
.y9b{bottom:359.812133pt;}
.y11c{bottom:360.643733pt;}
.y116{bottom:362.739600pt;}
.y115{bottom:365.606667pt;}
.y9a{bottom:365.944572pt;}
.y2a{bottom:366.314667pt;}
.yec{bottom:367.908933pt;}
.y11b{bottom:378.243733pt;}
.y114{bottom:383.206667pt;}
.y29{bottom:383.914667pt;}
.yeb{bottom:385.508933pt;}
.y11a{bottom:395.843733pt;}
.y113{bottom:400.806667pt;}
.y6f{bottom:401.135200pt;}
.y5c{bottom:402.196667pt;}
.yea{bottom:403.108933pt;}
.y6e{bottom:415.535200pt;}
.y112{bottom:418.406667pt;}
.y5b{bottom:419.796667pt;}
.ye9{bottom:420.708933pt;}
.y6d{bottom:429.935200pt;}
.y111{bottom:436.006667pt;}
.y5a{bottom:437.396667pt;}
.ye8{bottom:438.308933pt;}
.y131{bottom:440.117200pt;}
.y6c{bottom:444.335200pt;}
.ycd{bottom:446.079333pt;}
.y96{bottom:454.420533pt;}
.y59{bottom:454.996667pt;}
.ye7{bottom:455.908933pt;}
.ycc{bottom:460.479333pt;}
.y2f{bottom:466.731067pt;}
.y33{bottom:467.739600pt;}
.y9{bottom:468.275733pt;}
.y110{bottom:471.206667pt;}
.y58{bottom:472.596667pt;}
.y6b{bottom:473.135200pt;}
.ye6{bottom:473.508933pt;}
.y8{bottom:486.623733pt;}
.y6a{bottom:487.535200pt;}
.y10f{bottom:488.806667pt;}
.ye5{bottom:491.108933pt;}
.y74{bottom:502.219655pt;}
.y10e{bottom:506.406667pt;}
.y57{bottom:507.796667pt;}
.y69{bottom:521.136267pt;}
.y10d{bottom:524.006667pt;}
.y127{bottom:524.279733pt;}
.y56{bottom:525.396667pt;}
.ye4{bottom:526.308933pt;}
.y1b{bottom:537.856667pt;}
.y1f{bottom:539.983333pt;}
.y10c{bottom:541.606667pt;}
.y126{bottom:541.879733pt;}
.y55{bottom:542.996667pt;}
.ye3{bottom:543.908933pt;}
.y1a{bottom:555.456667pt;}
.y1e{bottom:557.583333pt;}
.y10b{bottom:559.206667pt;}
.y125{bottom:559.479733pt;}
.y54{bottom:560.596667pt;}
.ye2{bottom:561.508933pt;}
.y1d{bottom:575.183333pt;}
.y2{bottom:576.036133pt;}
.y10a{bottom:576.806667pt;}
.y124{bottom:577.079733pt;}
.y53{bottom:578.196667pt;}
.ye1{bottom:579.108933pt;}
.y1c{bottom:592.783333pt;}
.y1{bottom:593.636133pt;}
.y109{bottom:594.406667pt;}
.y52{bottom:595.796667pt;}
.yc5{bottom:601.211333pt;}
.y108{bottom:612.006667pt;}
.y123{bottom:612.279733pt;}
.ye0{bottom:613.238267pt;}
.y51{bottom:613.396667pt;}
.yf1{bottom:615.660800pt;}
.yc4{bottom:618.811333pt;}
.y107{bottom:629.606667pt;}
.y122{bottom:629.879733pt;}
.ydf{bottom:630.838267pt;}
.y50{bottom:630.996667pt;}
.yc3{bottom:636.411333pt;}
.y106{bottom:647.206667pt;}
.y121{bottom:647.479733pt;}
.yde{bottom:648.438267pt;}
.y4f{bottom:648.596667pt;}
.y83{bottom:648.990533pt;}
.yc2{bottom:654.011333pt;}
.y20{bottom:663.964800pt;}
.y120{bottom:665.079733pt;}
.ydd{bottom:666.038267pt;}
.y4e{bottom:666.196667pt;}
.y82{bottom:666.590533pt;}
.yc1{bottom:671.611333pt;}
.y105{bottom:682.406667pt;}
.y11f{bottom:682.679733pt;}
.ydc{bottom:683.638267pt;}
.y4d{bottom:683.796667pt;}
.y81{bottom:684.190533pt;}
.yc0{bottom:689.211333pt;}
.y104{bottom:700.006667pt;}
.ydb{bottom:701.238267pt;}
.y4c{bottom:701.396667pt;}
.y80{bottom:701.790533pt;}
.ybf{bottom:706.811333pt;}
.y68{bottom:707.344267pt;}
.ya{bottom:707.562400pt;}
.y103{bottom:717.606667pt;}
.y4b{bottom:718.996667pt;}
.y7f{bottom:719.390533pt;}
.ybe{bottom:724.411333pt;}
.y67{bottom:726.544267pt;}
.y28{bottom:733.712000pt;}
.yda{bottom:733.892133pt;}
.y102{bottom:735.206667pt;}
.y19{bottom:736.956667pt;}
.y7e{bottom:736.990533pt;}
.ye{bottom:740.885067pt;}
.ybd{bottom:742.011333pt;}
.y27{bottom:751.312000pt;}
.yd9{bottom:751.492133pt;}
.y101{bottom:752.806667pt;}
.y133{bottom:754.157200pt;}
.y4a{bottom:754.196667pt;}
.y18{bottom:754.556667pt;}
.y7d{bottom:754.590533pt;}
.yd{bottom:758.485067pt;}
.ybc{bottom:759.611333pt;}
.y134{bottom:767.489200pt;}
.y26{bottom:768.912000pt;}
.yd8{bottom:769.092133pt;}
.y100{bottom:770.406667pt;}
.y49{bottom:771.796667pt;}
.y17{bottom:772.156667pt;}
.y25{bottom:786.512000pt;}
.yd7{bottom:786.692133pt;}
.yff{bottom:788.006667pt;}
.y48{bottom:789.396667pt;}
.y16{bottom:789.756667pt;}
.y7c{bottom:789.790533pt;}
.yc7{bottom:791.586933pt;}
.ybb{bottom:794.811333pt;}
.y117{bottom:801.256533pt;}
.y24{bottom:804.112000pt;}
.yd6{bottom:804.292133pt;}
.yfe{bottom:805.606667pt;}
.yc6{bottom:805.986933pt;}
.yf3{bottom:806.304800pt;}
.y47{bottom:806.996667pt;}
.y15{bottom:807.356667pt;}
.y7b{bottom:807.390533pt;}
.yba{bottom:812.411333pt;}
.yd5{bottom:821.892133pt;}
.yfd{bottom:823.206667pt;}
.y46{bottom:824.596667pt;}
.y14{bottom:824.956667pt;}
.yb9{bottom:830.011333pt;}
.y118{bottom:831.648131pt;}
.y23{bottom:836.013067pt;}
.yd4{bottom:839.492133pt;}
.yfc{bottom:840.806667pt;}
.y45{bottom:842.196667pt;}
.y13{bottom:842.556667pt;}
.y7a{bottom:842.590533pt;}
.y11{bottom:844.733733pt;}
.yb8{bottom:847.611333pt;}
.y84{bottom:855.482400pt;}
.yd3{bottom:857.092133pt;}
.yfb{bottom:858.406667pt;}
.y44{bottom:859.796667pt;}
.y79{bottom:860.190533pt;}
.yf6{bottom:860.990665pt;}
.y3f{bottom:861.020371pt;}
.yb2{bottom:862.323998pt;}
.yb7{bottom:865.211333pt;}
.y22{bottom:868.013067pt;}
.y10{bottom:874.067067pt;}
.yd2{bottom:874.692133pt;}
.yfa{bottom:876.006667pt;}
.y43{bottom:877.396667pt;}
.y78{bottom:877.790533pt;}
.yb6{bottom:882.811333pt;}
.y73{bottom:888.346052pt;}
.y3e{bottom:890.350052pt;}
.yf5{bottom:891.666532pt;}
.yd1{bottom:892.292133pt;}
.yb1{bottom:892.999866pt;}
.yf9{bottom:893.606667pt;}
.y42{bottom:894.996667pt;}
.y77{bottom:895.390533pt;}
.y21{bottom:900.013067pt;}
.y12{bottom:900.013733pt;}
.yb5{bottom:900.411333pt;}
.yf{bottom:903.400400pt;}
.yd0{bottom:909.892133pt;}
.yf8{bottom:911.206667pt;}
.y41{bottom:912.596667pt;}
.y76{bottom:912.990533pt;}
.y94{bottom:913.212667pt;}
.y72{bottom:917.675733pt;}
.yb4{bottom:918.011333pt;}
.y3d{bottom:919.679733pt;}
.yf4{bottom:922.342400pt;}
.yb0{bottom:923.675733pt;}
.ycf{bottom:927.492133pt;}
.y93{bottom:927.612667pt;}
.yf7{bottom:928.806667pt;}
.yae{bottom:929.438400pt;}
.y40{bottom:930.196667pt;}
.y75{bottom:930.590533pt;}
.y92{bottom:931.360267pt;}
.yb3{bottom:935.611333pt;}
.yad{bottom:947.038400pt;}
.y91{bottom:948.960267pt;}
.yac{bottom:964.638400pt;}
.y4{bottom:966.419333pt;}
.y8b{bottom:966.533309pt;}
.y90{bottom:966.560267pt;}
.yab{bottom:982.238400pt;}
.y8f{bottom:984.160267pt;}
.y3{bottom:997.026000pt;}
.y98{bottom:997.191487pt;}
.y8a{bottom:997.209177pt;}
.yaa{bottom:999.838400pt;}
.y8e{bottom:1001.760267pt;}
.ya9{bottom:1017.438400pt;}
.y8d{bottom:1019.360267pt;}
.y97{bottom:1027.867354pt;}
.y89{bottom:1027.885045pt;}
.ya8{bottom:1035.038400pt;}
.y8c{bottom:1036.960267pt;}
.yb{bottom:1052.388000pt;}
.y119{bottom:1057.720667pt;}
.yc8{bottom:1057.722000pt;}
.y95{bottom:1078.926400pt;}
.y71{bottom:1078.927067pt;}
.y3c{bottom:1078.927467pt;}
.y86{bottom:1078.927733pt;}
.yce{bottom:1078.928400pt;}
.h5{height:36.864000pt;}
.h2{height:45.056000pt;}
.hc{height:46.464000pt;}
.hb{height:49.152000pt;}
.h4{height:73.411379pt;}
.h7{height:81.920000pt;}
.h8{height:82.986667pt;}
.h9{height:84.373333pt;}
.hd{height:86.614214pt;}
.ha{height:87.989043pt;}
.he{height:90.926247pt;}
.hf{height:169.740749pt;}
.h6{height:172.435046pt;}
.h3{height:431.531213pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7{left:-182.183600pt;}
.x0{left:0.000000pt;}
.x12{left:18.974000pt;}
.x1{left:20.224000pt;}
.x6{left:21.114667pt;}
.x16{left:23.084933pt;}
.x5{left:24.224000pt;}
.x4{left:25.557333pt;}
.x17{left:26.951867pt;}
.x1b{left:28.082166pt;}
.x19{left:29.276022pt;}
.x20{left:31.224000pt;}
.x21{left:32.768933pt;}
.x1c{left:34.011115pt;}
.x9{left:34.994800pt;}
.x1d{left:36.765600pt;}
.xe{left:224.483067pt;}
.xa{left:228.194800pt;}
.x14{left:262.998800pt;}
.x13{left:395.381467pt;}
.x18{left:397.449867pt;}
.x1a{left:398.413467pt;}
.x1e{left:405.679733pt;}
.x1f{left:407.066400pt;}
.x22{left:413.280933pt;}
.x15{left:492.326800pt;}
.x10{left:556.483067pt;}
.xf{left:558.690800pt;}
.xc{left:559.615867pt;}
.xd{left:560.517600pt;}
.xb{left:565.015333pt;}
.x2{left:638.183600pt;}
.x3{left:650.183600pt;}
.x11{left:704.836133pt;}
.x23{left:758.511067pt;}
.x8{left:762.589867pt;}
}




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