
    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_37614b7b96b171d228cc4d13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_eda633a20455d4e096a1234c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_33d060e1d2a4286ca387c126.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_641f37587ffe136428d7d501.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_9f5bcc4b40e7b4086d983f37.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_a9331f8a2c7560bfa6f31e65.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.v1{vertical-align:38.880000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.250560px;}
.ls6{letter-spacing:0.397461px;}
.ls2{letter-spacing:0.707048px;}
.ls1{letter-spacing:1.423630px;}
.ls7{letter-spacing:30.353778px;}
.lse{letter-spacing:33.232051px;}
.ls4{letter-spacing:43.630294px;}
.ls5{letter-spacing:54.819099px;}
.lsc{letter-spacing:58.274235px;}
.ls8{letter-spacing:74.104138px;}
.lsb{letter-spacing:125.913652px;}
.ls9{letter-spacing:215.139516px;}
.ls0{letter-spacing:251.096942px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.ws6{word-spacing:-60.480000px;}
.ws0{word-spacing:-60.120000px;}
.ws3{word-spacing:-20.880000px;}
.ws8{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-13.679850px;}
.ws2{word-spacing:-11.147048px;}
.ws4{word-spacing:0.000000px;}
._35{margin-left:-8.784000px;}
._13{margin-left:-7.377891px;}
._b{margin-left:-5.357309px;}
._a{margin-left:-4.313722px;}
._7{margin-left:-2.670057px;}
._5{margin-left:-1.607087px;}
._4{width:1.158057px;}
._6{width:2.368800px;}
._14{width:3.535239px;}
._15{width:5.382416px;}
._11{width:7.002679px;}
._e{width:8.064422px;}
._1c{width:9.406939px;}
._12{width:10.799318px;}
._20{width:11.843915px;}
._d{width:12.976696px;}
._c{width:14.107254px;}
._19{width:15.328761px;}
._1a{width:16.784446px;}
._27{width:19.115059px;}
._1b{width:20.613476px;}
._17{width:22.417158px;}
._16{width:24.563355px;}
._21{width:25.878845px;}
._22{width:28.325004px;}
._1f{width:29.485627px;}
._8{width:30.640382px;}
._9{width:31.770340px;}
._2a{width:32.905996px;}
._f{width:36.074984px;}
._10{width:37.362147px;}
._18{width:39.384181px;}
._23{width:43.133200px;}
._24{width:44.672942px;}
._25{width:48.763736px;}
._26{width:50.359507px;}
._1e{width:55.176599px;}
._1d{width:56.292093px;}
._37{width:60.701616px;}
._38{width:62.061617px;}
._2e{width:65.766644px;}
._3a{width:67.125476px;}
._39{width:69.054154px;}
._2f{width:73.588488px;}
._36{width:75.731612px;}
._34{width:80.546752px;}
._2c{width:88.951730px;}
._31{width:100.560082px;}
._2{width:107.870478px;}
._3b{width:108.980180px;}
._3{width:111.135519px;}
._33{width:112.149794px;}
._30{width:136.014316px;}
._0{width:137.260955px;}
._1{width:161.870478px;}
._2b{width:187.494797px;}
._2d{width:254.939945px;}
._32{width:349.854596px;}
._28{width:403.134009px;}
._29{width:524.971584px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:54.719400px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:4.320000px;}
.y2{bottom:35.640000px;}
.y1f{bottom:50.040000px;}
.y67{bottom:86.040000px;}
.yf6{bottom:90.000000px;}
.y91{bottom:91.440000px;}
.y53{bottom:93.600000px;}
.y1d{bottom:95.760000px;}
.yab{bottom:96.120000px;}
.ycc{bottom:97.560000px;}
.y66{bottom:109.439850px;}
.y7f{bottom:110.880000px;}
.y90{bottom:114.840000px;}
.y1c{bottom:119.520000px;}
.yca{bottom:119.880000px;}
.ycb{bottom:120.240000px;}
.y3b{bottom:123.479850px;}
.yf5{bottom:129.240000px;}
.y52{bottom:132.479850px;}
.y7e{bottom:134.280000px;}
.yaa{bottom:134.640000px;}
.yc9{bottom:142.920000px;}
.y1b{bottom:143.280000px;}
.y65{bottom:148.320000px;}
.y8f{bottom:153.720000px;}
.y51{bottom:155.880000px;}
.y7d{bottom:158.040000px;}
.y3a{bottom:162.360000px;}
.yc8{bottom:166.680000px;}
.yf4{bottom:167.760000px;}
.ya9{bottom:173.880000px;}
.y8e{bottom:177.480000px;}
.y7c{bottom:181.800000px;}
.y1a{bottom:182.520000px;}
.y39{bottom:185.760000px;}
.y64{bottom:187.560000px;}
.yc5{bottom:189.000000px;}
.yc7{bottom:189.360000px;}
.y50{bottom:195.480000px;}
.ya8{bottom:197.280000px;}
.y8d{bottom:201.240000px;}
.y7b{bottom:205.560000px;}
.y19{bottom:205.920000px;}
.yf3{bottom:206.640000px;}
.y38{bottom:209.520000px;}
.yc4{bottom:211.680000px;}
.yc6{bottom:212.040000px;}
.ya7{bottom:221.040000px;}
.y63{bottom:226.080000px;}
.y18{bottom:229.680000px;}
.yf2{bottom:230.040000px;}
.y37{bottom:233.280000px;}
.yc2{bottom:235.800000px;}
.y4f{bottom:237.600000px;}
.y8c{bottom:239.760000px;}
.ya6{bottom:244.800000px;}
.y62{bottom:251.280000px;}
.y17{bottom:253.440000px;}
.yf1{bottom:254.160000px;}
.y36{bottom:257.040000px;}
.yc1{bottom:258.120000px;}
.yc3{bottom:258.480000px;}
.y4e{bottom:261.000000px;}
.y61{bottom:276.480000px;}
.y16{bottom:277.200000px;}
.yf0{bottom:277.920000px;}
.y8b{bottom:279.000000px;}
.y35{bottom:280.800000px;}
.yc0{bottom:281.879850px;}
.ya5{bottom:284.040000px;}
.y4d{bottom:284.760000px;}
.y7a{bottom:292.320000px;}
.ybe{bottom:300.600000px;}
.y15{bottom:301.320000px;}
.yef{bottom:301.680000px;}
.y8a{bottom:302.400000px;}
.ybb{bottom:304.560000px;}
.ybd{bottom:304.920000px;}
.y4c{bottom:308.879850px;}
.y34{bottom:319.680000px;}
.ya4{bottom:322.200000px;}
.y89{bottom:326.520000px;}
.yba{bottom:327.240000px;}
.ybc{bottom:327.600000px;}
.y79{bottom:330.840000px;}
.y4b{bottom:332.640000px;}
.y14{bottom:340.920000px;}
.y60{bottom:341.640000px;}
.y88{bottom:350.280000px;}
.yb8{bottom:351.000000px;}
.y33{bottom:358.920000px;}
.ya3{bottom:361.440000px;}
.y5f{bottom:365.040000px;}
.yee{bottom:368.280000px;}
.y78{bottom:370.080000px;}
.y4a{bottom:371.880000px;}
.yb7{bottom:373.320000px;}
.yb9{bottom:373.680000px;}
.y87{bottom:374.040000px;}
.y32{bottom:382.320000px;}
.y13{bottom:383.040000px;}
.ya2{bottom:384.840000px;}
.yed{bottom:392.759850px;}
.y77{bottom:393.480000px;}
.y49{bottom:395.280000px;}
.yb6{bottom:397.080000px;}
.y86{bottom:397.800000px;}
.y5e{bottom:403.919850px;}
.y31{bottom:406.080000px;}
.y12{bottom:407.160000px;}
.ya1{bottom:408.960000px;}
.yeb{bottom:416.520000px;}
.y76{bottom:417.240000px;}
.y48{bottom:419.040000px;}
.yb5{bottom:419.759850px;}
.y30{bottom:429.840000px;}
.ya0{bottom:432.720000px;}
.y85{bottom:437.040000px;}
.yea{bottom:439.919850px;}
.yec{bottom:440.280000px;}
.yb4{bottom:442.440000px;}
.y47{bottom:442.800000px;}
.y5d{bottom:443.160000px;}
.y11{bottom:449.640000px;}
.y9f{bottom:456.480000px;}
.y75{bottom:457.200000px;}
.ye8{bottom:464.759850px;}
.y46{bottom:466.560000px;}
.y2f{bottom:469.800000px;}
.y10{bottom:473.040000px;}
.y84{bottom:475.200000px;}
.y9e{bottom:480.240000px;}
.yb3{bottom:483.480000px;}
.ye7{bottom:488.520000px;}
.ye9{bottom:488.880000px;}
.y45{bottom:490.320000px;}
.yfe{bottom:492.480000px;}
.yf{bottom:496.800000px;}
.y74{bottom:499.320000px;}
.yb2{bottom:510.840000px;}
.y2e{bottom:511.919850px;}
.ye6{bottom:513.360000px;}
.y5c{bottom:514.080000px;}
.y83{bottom:514.440000px;}
.yfd{bottom:516.240000px;}
.y9d{bottom:519.480000px;}
.ye{bottom:520.560000px;}
.y73{bottom:522.720000px;}
.y44{bottom:529.200000px;}
.y2d{bottom:535.320000px;}
.ye3{bottom:536.759850px;}
.ye5{bottom:537.120000px;}
.y5b{bottom:537.840000px;}
.yfc{bottom:540.360000px;}
.yd{bottom:544.680000px;}
.y72{bottom:546.480000px;}
.yb1{bottom:553.320000px;}
.y9c{bottom:557.640000px;}
.y2c{bottom:559.080000px;}
.ye2{bottom:560.520000px;}
.ye4{bottom:560.880000px;}
.y82{bottom:561.600000px;}
.yfb{bottom:564.120000px;}
.yc{bottom:568.440000px;}
.yb0{bottom:576.720000px;}
.y5a{bottom:577.080000px;}
.y2b{bottom:582.840000px;}
.ye0{bottom:585.000000px;}
.ye1{bottom:585.360000px;}
.y71{bottom:585.720000px;}
.yfa{bottom:587.880000px;}
.y43{bottom:591.840000px;}
.yb{bottom:592.200000px;}
.y9b{bottom:596.880000px;}
.y59{bottom:600.480000px;}
.y2a{bottom:606.600000px;}
.ydf{bottom:608.759850px;}
.y70{bottom:609.120000px;}
.yf9{bottom:611.640000px;}
.y42{bottom:615.600000px;}
.ya{bottom:615.960000px;}
.y9a{bottom:620.280000px;}
.y81{bottom:624.600000px;}
.y6f{bottom:632.880000px;}
.ydc{bottom:633.240000px;}
.yde{bottom:633.600000px;}
.y41{bottom:639.360000px;}
.y9{bottom:639.720000px;}
.y99{bottom:644.040000px;}
.y29{bottom:645.840000px;}
.yf8{bottom:651.600000px;}
.ydb{bottom:657.360000px;}
.ydd{bottom:657.720000px;}
.y40{bottom:663.120000px;}
.y8{bottom:663.480000px;}
.y98{bottom:668.160000px;}
.y28{bottom:669.240000px;}
.y6e{bottom:671.760000px;}
.y58{bottom:678.600000px;}
.yda{bottom:682.200000px;}
.yaf{bottom:686.880000px;}
.y97{bottom:691.920000px;}
.y27{bottom:693.000000px;}
.yf7{bottom:693.360000px;}
.y3f{bottom:702.000000px;}
.y80{bottom:702.360000px;}
.y7{bottom:703.440000px;}
.yd9{bottom:705.960000px;}
.y6d{bottom:711.000000px;}
.y26{bottom:717.120000px;}
.yd7{bottom:725.040000px;}
.y57{bottom:725.760000px;}
.yae{bottom:726.120000px;}
.yd6{bottom:729.360000px;}
.yd8{bottom:729.720000px;}
.y96{bottom:731.160000px;}
.y6c{bottom:734.400000px;}
.y25{bottom:740.880000px;}
.y3e{bottom:741.240000px;}
.y56{bottom:749.520000px;}
.y6{bottom:752.040000px;}
.yd5{bottom:754.200000px;}
.y24{bottom:764.640000px;}
.y95{bottom:769.320000px;}
.y55{bottom:773.280000px;}
.y5{bottom:774.000000px;}
.yd4{bottom:777.960000px;}
.y23{bottom:788.400000px;}
.y4{bottom:789.480000px;}
.yd2{bottom:797.040000px;}
.y6b{bottom:798.480000px;}
.yd1{bottom:801.360000px;}
.yd3{bottom:801.720000px;}
.yad{bottom:803.880000px;}
.y94{bottom:808.560000px;}
.y3d{bottom:812.160000px;}
.y54{bottom:812.519850px;}
.y6a{bottom:823.680000px;}
.yd0{bottom:826.560000px;}
.yac{bottom:827.280000px;}
.y22{bottom:827.640000px;}
.y93{bottom:831.960000px;}
.y3{bottom:833.760000px;}
.y3c{bottom:835.920000px;}
.y69{bottom:848.519850px;}
.ycd{bottom:849.960000px;}
.ycf{bottom:850.320000px;}
.y21{bottom:851.040000px;}
.y92{bottom:871.920000px;}
.y68{bottom:873.720000px;}
.yce{bottom:874.080000px;}
.y20{bottom:874.800000px;}
.y1{bottom:877.680000px;}
.y1e{bottom:923.040000px;}
.hf{height:20.520000px;}
.h5{height:28.995469px;}
.h2{height:34.157813px;}
.ha{height:47.988281px;}
.hd{height:48.796875px;}
.hb{height:49.042969px;}
.h7{height:49.992188px;}
.h9{height:51.679688px;}
.hc{height:52.031250px;}
.he{height:53.119687px;}
.h10{height:53.120287px;}
.h6{height:56.604375px;}
.h8{height:57.990937px;}
.h3{height:65.387406px;}
.h4{height:75.965218px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w1{width:7.560000px;}
.w2{width:7.920000px;}
.w3{width:8.279850px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x1{left:83.160000px;}
.x3{left:96.479850px;}
.x9{left:108.000000px;}
.x8{left:113.400000px;}
.x4{left:121.680000px;}
.x5{left:170.280000px;}
.x6{left:193.320000px;}
.xd{left:221.760000px;}
.xb{left:237.959850px;}
.x7{left:338.760000px;}
.xc{left:424.080000px;}
.xa{left:440.280000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.v1{vertical-align:34.560000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.222720pt;}
.ls6{letter-spacing:0.353298pt;}
.ls2{letter-spacing:0.628487pt;}
.ls1{letter-spacing:1.265449pt;}
.ls7{letter-spacing:26.981136pt;}
.lse{letter-spacing:29.539601pt;}
.ls4{letter-spacing:38.782483pt;}
.ls5{letter-spacing:48.728088pt;}
.lsc{letter-spacing:51.799320pt;}
.ls8{letter-spacing:65.870344pt;}
.lsb{letter-spacing:111.923246pt;}
.ls9{letter-spacing:191.235126pt;}
.ls0{letter-spacing:223.197282pt;}
.ws7{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.760000pt;}
.ws0{word-spacing:-53.440000pt;}
.ws3{word-spacing:-18.560000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-12.159867pt;}
.ws2{word-spacing:-9.908487pt;}
.ws4{word-spacing:0.000000pt;}
._35{margin-left:-7.808000pt;}
._13{margin-left:-6.558125pt;}
._b{margin-left:-4.762052pt;}
._a{margin-left:-3.834420pt;}
._7{margin-left:-2.373384pt;}
._5{margin-left:-1.428521pt;}
._4{width:1.029384pt;}
._6{width:2.105600pt;}
._14{width:3.142435pt;}
._15{width:4.784369pt;}
._11{width:6.224603pt;}
._e{width:7.168375pt;}
._1c{width:8.361723pt;}
._12{width:9.599394pt;}
._20{width:10.527925pt;}
._d{width:11.534841pt;}
._c{width:12.539781pt;}
._19{width:13.625565pt;}
._1a{width:14.919508pt;}
._27{width:16.991163pt;}
._1b{width:18.323090pt;}
._17{width:19.926362pt;}
._16{width:21.834093pt;}
._21{width:23.003418pt;}
._22{width:25.177781pt;}
._1f{width:26.209446pt;}
._8{width:27.235895pt;}
._9{width:28.240303pt;}
._2a{width:29.249774pt;}
._f{width:32.066652pt;}
._10{width:33.210797pt;}
._18{width:35.008161pt;}
._23{width:38.340622pt;}
._24{width:39.709282pt;}
._25{width:43.345543pt;}
._26{width:44.764006pt;}
._1e{width:49.045866pt;}
._1d{width:50.037416pt;}
._37{width:53.956992pt;}
._38{width:55.165882pt;}
._2e{width:58.459239pt;}
._3a{width:59.667090pt;}
._39{width:61.381470pt;}
._2f{width:65.411989pt;}
._36{width:67.316988pt;}
._34{width:71.597113pt;}
._2c{width:79.068204pt;}
._31{width:89.386739pt;}
._2{width:95.884869pt;}
._3b{width:96.871271pt;}
._3{width:98.787128pt;}
._33{width:99.688706pt;}
._30{width:120.901615pt;}
._0{width:122.009738pt;}
._1{width:143.884869pt;}
._2b{width:166.662042pt;}
._2d{width:226.613285pt;}
._32{width:310.981863pt;}
._28{width:358.341341pt;}
._29{width:466.641408pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:48.639467pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:3.840000pt;}
.y2{bottom:31.680000pt;}
.y1f{bottom:44.480000pt;}
.y67{bottom:76.480000pt;}
.yf6{bottom:80.000000pt;}
.y91{bottom:81.280000pt;}
.y53{bottom:83.200000pt;}
.y1d{bottom:85.120000pt;}
.yab{bottom:85.440000pt;}
.ycc{bottom:86.720000pt;}
.y66{bottom:97.279867pt;}
.y7f{bottom:98.560000pt;}
.y90{bottom:102.080000pt;}
.y1c{bottom:106.240000pt;}
.yca{bottom:106.560000pt;}
.ycb{bottom:106.880000pt;}
.y3b{bottom:109.759867pt;}
.yf5{bottom:114.880000pt;}
.y52{bottom:117.759867pt;}
.y7e{bottom:119.360000pt;}
.yaa{bottom:119.680000pt;}
.yc9{bottom:127.040000pt;}
.y1b{bottom:127.360000pt;}
.y65{bottom:131.840000pt;}
.y8f{bottom:136.640000pt;}
.y51{bottom:138.560000pt;}
.y7d{bottom:140.480000pt;}
.y3a{bottom:144.320000pt;}
.yc8{bottom:148.160000pt;}
.yf4{bottom:149.120000pt;}
.ya9{bottom:154.560000pt;}
.y8e{bottom:157.760000pt;}
.y7c{bottom:161.600000pt;}
.y1a{bottom:162.240000pt;}
.y39{bottom:165.120000pt;}
.y64{bottom:166.720000pt;}
.yc5{bottom:168.000000pt;}
.yc7{bottom:168.320000pt;}
.y50{bottom:173.760000pt;}
.ya8{bottom:175.360000pt;}
.y8d{bottom:178.880000pt;}
.y7b{bottom:182.720000pt;}
.y19{bottom:183.040000pt;}
.yf3{bottom:183.680000pt;}
.y38{bottom:186.240000pt;}
.yc4{bottom:188.160000pt;}
.yc6{bottom:188.480000pt;}
.ya7{bottom:196.480000pt;}
.y63{bottom:200.960000pt;}
.y18{bottom:204.160000pt;}
.yf2{bottom:204.480000pt;}
.y37{bottom:207.360000pt;}
.yc2{bottom:209.600000pt;}
.y4f{bottom:211.200000pt;}
.y8c{bottom:213.120000pt;}
.ya6{bottom:217.600000pt;}
.y62{bottom:223.360000pt;}
.y17{bottom:225.280000pt;}
.yf1{bottom:225.920000pt;}
.y36{bottom:228.480000pt;}
.yc1{bottom:229.440000pt;}
.yc3{bottom:229.760000pt;}
.y4e{bottom:232.000000pt;}
.y61{bottom:245.760000pt;}
.y16{bottom:246.400000pt;}
.yf0{bottom:247.040000pt;}
.y8b{bottom:248.000000pt;}
.y35{bottom:249.600000pt;}
.yc0{bottom:250.559867pt;}
.ya5{bottom:252.480000pt;}
.y4d{bottom:253.120000pt;}
.y7a{bottom:259.840000pt;}
.ybe{bottom:267.200000pt;}
.y15{bottom:267.840000pt;}
.yef{bottom:268.160000pt;}
.y8a{bottom:268.800000pt;}
.ybb{bottom:270.720000pt;}
.ybd{bottom:271.040000pt;}
.y4c{bottom:274.559867pt;}
.y34{bottom:284.160000pt;}
.ya4{bottom:286.400000pt;}
.y89{bottom:290.240000pt;}
.yba{bottom:290.880000pt;}
.ybc{bottom:291.200000pt;}
.y79{bottom:294.080000pt;}
.y4b{bottom:295.680000pt;}
.y14{bottom:303.040000pt;}
.y60{bottom:303.680000pt;}
.y88{bottom:311.360000pt;}
.yb8{bottom:312.000000pt;}
.y33{bottom:319.040000pt;}
.ya3{bottom:321.280000pt;}
.y5f{bottom:324.480000pt;}
.yee{bottom:327.360000pt;}
.y78{bottom:328.960000pt;}
.y4a{bottom:330.560000pt;}
.yb7{bottom:331.840000pt;}
.yb9{bottom:332.160000pt;}
.y87{bottom:332.480000pt;}
.y32{bottom:339.840000pt;}
.y13{bottom:340.480000pt;}
.ya2{bottom:342.080000pt;}
.yed{bottom:349.119867pt;}
.y77{bottom:349.760000pt;}
.y49{bottom:351.360000pt;}
.yb6{bottom:352.960000pt;}
.y86{bottom:353.600000pt;}
.y5e{bottom:359.039867pt;}
.y31{bottom:360.960000pt;}
.y12{bottom:361.920000pt;}
.ya1{bottom:363.520000pt;}
.yeb{bottom:370.240000pt;}
.y76{bottom:370.880000pt;}
.y48{bottom:372.480000pt;}
.yb5{bottom:373.119867pt;}
.y30{bottom:382.080000pt;}
.ya0{bottom:384.640000pt;}
.y85{bottom:388.480000pt;}
.yea{bottom:391.039867pt;}
.yec{bottom:391.360000pt;}
.yb4{bottom:393.280000pt;}
.y47{bottom:393.600000pt;}
.y5d{bottom:393.920000pt;}
.y11{bottom:399.680000pt;}
.y9f{bottom:405.760000pt;}
.y75{bottom:406.400000pt;}
.ye8{bottom:413.119867pt;}
.y46{bottom:414.720000pt;}
.y2f{bottom:417.600000pt;}
.y10{bottom:420.480000pt;}
.y84{bottom:422.400000pt;}
.y9e{bottom:426.880000pt;}
.yb3{bottom:429.760000pt;}
.ye7{bottom:434.240000pt;}
.ye9{bottom:434.560000pt;}
.y45{bottom:435.840000pt;}
.yfe{bottom:437.760000pt;}
.yf{bottom:441.600000pt;}
.y74{bottom:443.840000pt;}
.yb2{bottom:454.080000pt;}
.y2e{bottom:455.039867pt;}
.ye6{bottom:456.320000pt;}
.y5c{bottom:456.960000pt;}
.y83{bottom:457.280000pt;}
.yfd{bottom:458.880000pt;}
.y9d{bottom:461.760000pt;}
.ye{bottom:462.720000pt;}
.y73{bottom:464.640000pt;}
.y44{bottom:470.400000pt;}
.y2d{bottom:475.840000pt;}
.ye3{bottom:477.119867pt;}
.ye5{bottom:477.440000pt;}
.y5b{bottom:478.080000pt;}
.yfc{bottom:480.320000pt;}
.yd{bottom:484.160000pt;}
.y72{bottom:485.760000pt;}
.yb1{bottom:491.840000pt;}
.y9c{bottom:495.680000pt;}
.y2c{bottom:496.960000pt;}
.ye2{bottom:498.240000pt;}
.ye4{bottom:498.560000pt;}
.y82{bottom:499.200000pt;}
.yfb{bottom:501.440000pt;}
.yc{bottom:505.280000pt;}
.yb0{bottom:512.640000pt;}
.y5a{bottom:512.960000pt;}
.y2b{bottom:518.080000pt;}
.ye0{bottom:520.000000pt;}
.ye1{bottom:520.320000pt;}
.y71{bottom:520.640000pt;}
.yfa{bottom:522.560000pt;}
.y43{bottom:526.080000pt;}
.yb{bottom:526.400000pt;}
.y9b{bottom:530.560000pt;}
.y59{bottom:533.760000pt;}
.y2a{bottom:539.200000pt;}
.ydf{bottom:541.119867pt;}
.y70{bottom:541.440000pt;}
.yf9{bottom:543.680000pt;}
.y42{bottom:547.200000pt;}
.ya{bottom:547.520000pt;}
.y9a{bottom:551.360000pt;}
.y81{bottom:555.200000pt;}
.y6f{bottom:562.560000pt;}
.ydc{bottom:562.880000pt;}
.yde{bottom:563.200000pt;}
.y41{bottom:568.320000pt;}
.y9{bottom:568.640000pt;}
.y99{bottom:572.480000pt;}
.y29{bottom:574.080000pt;}
.yf8{bottom:579.200000pt;}
.ydb{bottom:584.320000pt;}
.ydd{bottom:584.640000pt;}
.y40{bottom:589.440000pt;}
.y8{bottom:589.760000pt;}
.y98{bottom:593.920000pt;}
.y28{bottom:594.880000pt;}
.y6e{bottom:597.120000pt;}
.y58{bottom:603.200000pt;}
.yda{bottom:606.400000pt;}
.yaf{bottom:610.560000pt;}
.y97{bottom:615.040000pt;}
.y27{bottom:616.000000pt;}
.yf7{bottom:616.320000pt;}
.y3f{bottom:624.000000pt;}
.y80{bottom:624.320000pt;}
.y7{bottom:625.280000pt;}
.yd9{bottom:627.520000pt;}
.y6d{bottom:632.000000pt;}
.y26{bottom:637.440000pt;}
.yd7{bottom:644.480000pt;}
.y57{bottom:645.120000pt;}
.yae{bottom:645.440000pt;}
.yd6{bottom:648.320000pt;}
.yd8{bottom:648.640000pt;}
.y96{bottom:649.920000pt;}
.y6c{bottom:652.800000pt;}
.y25{bottom:658.560000pt;}
.y3e{bottom:658.880000pt;}
.y56{bottom:666.240000pt;}
.y6{bottom:668.480000pt;}
.yd5{bottom:670.400000pt;}
.y24{bottom:679.680000pt;}
.y95{bottom:683.840000pt;}
.y55{bottom:687.360000pt;}
.y5{bottom:688.000000pt;}
.yd4{bottom:691.520000pt;}
.y23{bottom:700.800000pt;}
.y4{bottom:701.760000pt;}
.yd2{bottom:708.480000pt;}
.y6b{bottom:709.760000pt;}
.yd1{bottom:712.320000pt;}
.yd3{bottom:712.640000pt;}
.yad{bottom:714.560000pt;}
.y94{bottom:718.720000pt;}
.y3d{bottom:721.920000pt;}
.y54{bottom:722.239867pt;}
.y6a{bottom:732.160000pt;}
.yd0{bottom:734.720000pt;}
.yac{bottom:735.360000pt;}
.y22{bottom:735.680000pt;}
.y93{bottom:739.520000pt;}
.y3{bottom:741.120000pt;}
.y3c{bottom:743.040000pt;}
.y69{bottom:754.239867pt;}
.ycd{bottom:755.520000pt;}
.ycf{bottom:755.840000pt;}
.y21{bottom:756.480000pt;}
.y92{bottom:775.040000pt;}
.y68{bottom:776.640000pt;}
.yce{bottom:776.960000pt;}
.y20{bottom:777.600000pt;}
.y1{bottom:780.160000pt;}
.y1e{bottom:820.480000pt;}
.hf{height:18.240000pt;}
.h5{height:25.773750pt;}
.h2{height:30.362500pt;}
.ha{height:42.656250pt;}
.hd{height:43.375000pt;}
.hb{height:43.593750pt;}
.h7{height:44.437500pt;}
.h9{height:45.937500pt;}
.hc{height:46.250000pt;}
.he{height:47.217500pt;}
.h10{height:47.218033pt;}
.h6{height:50.315000pt;}
.h8{height:51.547500pt;}
.h3{height:58.122139pt;}
.h4{height:67.524639pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w1{width:6.720000pt;}
.w2{width:7.040000pt;}
.w3{width:7.359867pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x1{left:73.920000pt;}
.x3{left:85.759867pt;}
.x9{left:96.000000pt;}
.x8{left:100.800000pt;}
.x4{left:108.160000pt;}
.x5{left:151.360000pt;}
.x6{left:171.840000pt;}
.xd{left:197.120000pt;}
.xb{left:211.519867pt;}
.x7{left:301.120000pt;}
.xc{left:376.960000pt;}
.xa{left:391.360000pt;}
}




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