
    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_34795e6c4841cb437f470b35.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_24d315c89498cc143944a197.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_02bdcc0f53c2cecd95213496.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_bc2c509c25965268eb0605e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_c1e2af874399351af3ca47be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_bf76e865bf8c8c307030681a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063477;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_b57ded5e5bdb75ad7c8c89c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v5{vertical-align:-17.279982px;}
.v1{vertical-align:-5.759995px;}
.v2{vertical-align:-3.599946px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.279982px;}
.v3{vertical-align:64.079955px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.359109px;}
.ls4{letter-spacing:0.359114px;}
.ls0{letter-spacing:0.719202px;}
.lsb{letter-spacing:1.439288px;}
.ls8{letter-spacing:1.439292px;}
.ls9{letter-spacing:3.599337px;}
.lsa{letter-spacing:3.599405px;}
.ls7{letter-spacing:3.671494px;}
.ls6{letter-spacing:13.390330px;}
.lsc{letter-spacing:34.055251px;}
.ls2{letter-spacing:194.399342px;}
.ls5{letter-spacing:194.407302px;}
.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;}
}
.ws3{word-spacing:-89.034192px;}
.ws4{word-spacing:-84.243145px;}
.ws1{word-spacing:-18.000676px;}
.ws5{word-spacing:-12.203968px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:130.571663px;}
.ws7{word-spacing:131.845730px;}
._26{margin-left:-194.407302px;}
._19{margin-left:-4.809788px;}
._14{margin-left:-3.455005px;}
._13{margin-left:-2.325953px;}
._1{margin-left:-1.007997px;}
._0{width:1.223997px;}
._12{width:2.401616px;}
._11{width:3.844082px;}
._c{width:4.943485px;}
._1e{width:6.133449px;}
._15{width:7.249781px;}
._5{width:8.796987px;}
._6{width:10.155243px;}
._10{width:11.606074px;}
._f{width:12.714013px;}
._7{width:14.412122px;}
._8{width:15.964667px;}
._17{width:19.252286px;}
._16{width:20.846189px;}
._1a{width:22.454446px;}
._9{width:24.480920px;}
._1f{width:25.611024px;}
._20{width:26.672417px;}
._e{width:27.767730px;}
._d{width:28.861553px;}
._23{width:30.025128px;}
._1b{width:31.994243px;}
._3{width:33.241332px;}
._4{width:34.536839px;}
._21{width:36.255330px;}
._22{width:37.418905px;}
._b{width:41.102535px;}
._a{width:42.157865px;}
._18{width:43.166465px;}
._30{width:50.032036px;}
._1d{width:51.159890px;}
._1c{width:52.814265px;}
._2e{width:61.576657px;}
._2f{width:62.883674px;}
._24{width:65.165823px;}
._25{width:85.051694px;}
._43{width:144.178707px;}
._42{width:161.890661px;}
._41{width:169.775562px;}
._32{width:188.277791px;}
._33{width:189.356103px;}
._2{width:194.407302px;}
._31{width:233.340017px;}
._36{width:245.313777px;}
._2c{width:249.835290px;}
._40{width:252.010028px;}
._37{width:258.994291px;}
._39{width:263.314453px;}
._2a{width:267.836642px;}
._3b{width:276.994967px;}
._3a{width:281.315129px;}
._27{width:285.837994px;}
._3e{width:288.731408px;}
._3d{width:293.555589px;}
._35{width:301.691894px;}
._3f{width:307.844885px;}
._29{width:315.371846px;}
._38{width:319.692571px;}
._28{width:323.292143px;}
._2d{width:333.428424px;}
._2b{width:341.235565px;}
._3c{width:355.381514px;}
._34{width:373.382866px;}
._44{width:849.239538px;}
.fc3{color:rgb(33,27,0);}
.fc2{color:rgb(4,33,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(27,27,27);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs6{font-size:53.999861px;}
.fs3{font-size:59.762250px;}
.fs7{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.fs5{font-size:84.243145px;}
.fs4{font-size:89.034192px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y3d{bottom:106.020127px;}
.y3c{bottom:126.720085px;}
.y9c{bottom:130.140060px;}
.y3b{bottom:147.420043px;}
.y9b{bottom:150.840088px;}
.y3a{bottom:168.120072px;}
.y9a{bottom:171.540047px;}
.y39{bottom:188.460091px;}
.y58{bottom:188.820099px;}
.y99{bottom:192.240074px;}
.y38{bottom:209.520058px;}
.y98{bottom:212.940033px;}
.y71{bottom:218.160049px;}
.y37{bottom:230.220085px;}
.y97{bottom:233.640060px;}
.y70{bottom:241.380066px;}
.y36{bottom:250.920043px;}
.y96{bottom:254.340088px;}
.y6f{bottom:264.600083px;}
.y35{bottom:271.620072px;}
.y95{bottom:276.300041px;}
.y6e{bottom:288.000068px;}
.y34{bottom:292.320099px;}
.y94{bottom:300.060036px;}
.y6d{bottom:311.220085px;}
.y33{bottom:313.020058px;}
.y93{bottom:323.280052px;}
.y32{bottom:333.720085px;}
.y6c{bottom:334.440033px;}
.y92{bottom:346.500068px;}
.y31{bottom:354.420043px;}
.y6b{bottom:357.660049px;}
.y91{bottom:369.720085px;}
.y30{bottom:375.120072px;}
.y6a{bottom:380.880066px;}
.y90{bottom:393.840088px;}
.y8e{bottom:394.200096px;}
.y2f{bottom:395.820099px;}
.y69{bottom:404.100083px;}
.y8d{bottom:414.900055px;}
.y2e{bottom:416.520058px;}
.y8f{bottom:417.060036px;}
.y68{bottom:427.500068px;}
.y2d{bottom:436.860077px;}
.y57{bottom:437.220085px;}
.y8c{bottom:438.300041px;}
.y67{bottom:450.720085px;}
.y2c{bottom:457.920043px;}
.y8b{bottom:459.000068px;}
.y66{bottom:473.940033px;}
.y2b{bottom:478.620072px;}
.y8a{bottom:479.700096px;}
.y65{bottom:497.160049px;}
.y2a{bottom:499.320099px;}
.y89{bottom:500.760064px;}
.y29{bottom:520.020058px;}
.y64{bottom:520.380066px;}
.y88{bottom:521.460091px;}
.y28{bottom:540.720085px;}
.y87{bottom:542.160049px;}
.y63{bottom:543.600083px;}
.y27{bottom:561.420043px;}
.y86{bottom:562.860077px;}
.y62{bottom:567.000068px;}
.y26{bottom:582.120072px;}
.y85{bottom:583.560036px;}
.y61{bottom:590.220085px;}
.y25{bottom:602.820099px;}
.y84{bottom:604.260064px;}
.y60{bottom:613.440033px;}
.y24{bottom:623.520058px;}
.y83{bottom:624.960091px;}
.y5f{bottom:636.660049px;}
.ya9{bottom:640.800041px;}
.y23{bottom:644.220085px;}
.y82{bottom:645.660049px;}
.y5e{bottom:659.880066px;}
.y22{bottom:664.560036px;}
.ya8{bottom:664.740074px;}
.y56{bottom:664.920043px;}
.y81{bottom:666.360077px;}
.y5d{bottom:683.100083px;}
.y21{bottom:684.900055px;}
.y55{bottom:685.620072px;}
.y80{bottom:687.060070px;}
.y20{bottom:702.180073px;}
.y5c{bottom:705.600083px;}
.y54{bottom:706.320065px;}
.y7f{bottom:707.760064px;}
.y1f{bottom:719.460056px;}
.y5b{bottom:726.300076px;}
.y53{bottom:727.020058px;}
.y7e{bottom:728.460056px;}
.y1e{bottom:737.100083px;}
.y5a{bottom:747.360077px;}
.y52{bottom:747.720051px;}
.y7d{bottom:749.160049px;}
.y1d{bottom:758.160049px;}
.y59{bottom:768.060070px;}
.y51{bottom:768.420078px;}
.y7c{bottom:769.680073px;}
.y1c{bottom:778.500068px;}
.y50{bottom:789.120072px;}
.y7b{bottom:790.380066px;}
.y1b{bottom:799.560070px;}
.y78{bottom:804.420078px;}
.y4f{bottom:809.820065px;}
.y7a{bottom:816.120072px;}
.y1a{bottom:819.900055px;}
.y79{bottom:820.440067px;}
.y4e{bottom:830.520058px;}
.y19{bottom:840.960056px;}
.y77{bottom:842.580059px;}
.y4d{bottom:851.220051px;}
.y18{bottom:861.300076px;}
.y76{bottom:863.280052px;}
.y4c{bottom:871.920078px;}
.y17{bottom:882.360077px;}
.y75{bottom:883.980079px;}
.y4b{bottom:892.620072px;}
.y16{bottom:902.700061px;}
.y74{bottom:904.320065px;}
.y4a{bottom:913.320065px;}
.y15{bottom:923.760064px;}
.y73{bottom:925.020058px;}
.y49{bottom:934.020058px;}
.y72{bottom:941.760064px;}
.y14{bottom:944.100083px;}
.y48{bottom:954.720051px;}
.ya5{bottom:959.401097px;}
.y13{bottom:964.800076px;}
.y47{bottom:975.420061px;}
.ya4{bottom:984.601479px;}
.y12{bottom:985.500068px;}
.y46{bottom:996.120072px;}
.y11{bottom:1006.200061px;}
.ya3{bottom:1014.660000px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1026.900072px;}
.y9d{bottom:1032.121619px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1047.420061px;}
.y9e{bottom:1057.137432px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1068.120072px;}
.y42{bottom:1078.920061px;}
.y9f{bottom:1082.337794px;}
.yd{bottom:1088.820065px;}
.ya7{bottom:1099.260064px;}
.y41{bottom:1099.620072px;}
.ya0{bottom:1107.360205px;}
.yc{bottom:1112.042566px;}
.ya6{bottom:1119.960065px;}
.y40{bottom:1120.320065px;}
.ya1{bottom:1132.382597px;}
.yb{bottom:1136.159694px;}
.y3f{bottom:1141.020066px;}
.ya2{bottom:1157.582969px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h6{height:33.684460px;}
.hb{height:41.728524px;}
.h4{height:47.982689px;}
.h2{height:50.275326px;}
.h11{height:52.419938px;}
.h10{height:53.709822px;}
.h9{height:54.248131px;}
.ha{height:54.880968px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h12{height:65.886904px;}
.hf{height:70.997885px;}
.hc{height:75.035652px;}
.he{height:88.277867px;}
.hd{height:135.077840px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.xe{left:88.019998px;}
.xc{left:91.799998px;}
.xd{left:97.560001px;}
.x8{left:105.477271px;}
.x1a{left:112.319996px;}
.x27{left:118.620002px;}
.x1b{left:120.060001px;}
.x26{left:123.120002px;}
.x25{left:127.620002px;}
.x29{left:133.379998px;}
.x9{left:138.242804px;}
.x36{left:145.439999px;}
.xf{left:147.419992px;}
.x33{left:151.919992px;}
.x1c{left:196.919992px;}
.x1d{left:217.439999px;}
.x38{left:226.796781px;}
.x37{left:236.882196px;}
.x19{left:249.659998px;}
.x39{left:252.900234px;}
.x35{left:296.639992px;}
.x3a{left:316.980011px;}
.x1e{left:320.759994px;}
.x1f{left:343.079990px;}
.x2a{left:347.579990px;}
.x2b{left:369.000000px;}
.xa{left:394.381804px;}
.x2c{left:421.379998px;}
.x2{left:432.899987px;}
.x2d{left:435.240006px;}
.x20{left:444.600014px;}
.xb{left:446.399987px;}
.x2e{left:451.439999px;}
.x30{left:456.660015px;}
.x2f{left:465.300007px;}
.x21{left:467.100014px;}
.x34{left:502.199993px;}
.x12{left:522.360008px;}
.x31{left:523.980011px;}
.x16{left:538.740006px;}
.x17{left:564.480011px;}
.x22{left:570.420010px;}
.x23{left:592.919975px;}
.x28{left:675.899987px;}
.x11{left:692.279983px;}
.x14{left:695.340019px;}
.x15{left:711.360008px;}
.x13{left:715.320030px;}
.x24{left:718.559967px;}
.x32{left:740.340019px;}
.x18{left:744.840019px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x10{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v5{vertical-align:-15.359984pt;}
.v1{vertical-align:-5.119996pt;}
.v2{vertical-align:-3.199952pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.359984pt;}
.v3{vertical-align:56.959960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.319208pt;}
.ls4{letter-spacing:0.319212pt;}
.ls0{letter-spacing:0.639291pt;}
.lsb{letter-spacing:1.279367pt;}
.ls8{letter-spacing:1.279371pt;}
.ls9{letter-spacing:3.199411pt;}
.lsa{letter-spacing:3.199471pt;}
.ls7{letter-spacing:3.263550pt;}
.ls6{letter-spacing:11.902515pt;}
.lsc{letter-spacing:30.271334pt;}
.ls2{letter-spacing:172.799415pt;}
.ls5{letter-spacing:172.806491pt;}
.ws3{word-spacing:-79.141504pt;}
.ws4{word-spacing:-74.882796pt;}
.ws1{word-spacing:-16.000601pt;}
.ws5{word-spacing:-10.847972pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:116.063700pt;}
.ws7{word-spacing:117.196205pt;}
._26{margin-left:-172.806491pt;}
._19{margin-left:-4.275367pt;}
._14{margin-left:-3.071115pt;}
._13{margin-left:-2.067514pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.087997pt;}
._12{width:2.134770pt;}
._11{width:3.416961pt;}
._c{width:4.394209pt;}
._1e{width:5.451955pt;}
._15{width:6.444250pt;}
._5{width:7.819544pt;}
._6{width:9.026883pt;}
._10{width:10.316511pt;}
._f{width:11.301345pt;}
._7{width:12.810775pt;}
._8{width:14.190815pt;}
._17{width:17.113143pt;}
._16{width:18.529946pt;}
._1a{width:19.959507pt;}
._9{width:21.760817pt;}
._1f{width:22.765355pt;}
._20{width:23.708815pt;}
._e{width:24.682427pt;}
._d{width:25.654714pt;}
._23{width:26.689002pt;}
._1b{width:28.439327pt;}
._3{width:29.547851pt;}
._4{width:30.699412pt;}
._21{width:32.226960pt;}
._22{width:33.261249pt;}
._b{width:36.535586pt;}
._a{width:37.473657pt;}
._18{width:38.370191pt;}
._30{width:44.472920pt;}
._1d{width:45.475458pt;}
._1c{width:46.946013pt;}
._2e{width:54.734806pt;}
._2f{width:55.896599pt;}
._24{width:57.925176pt;}
._25{width:75.601506pt;}
._43{width:128.158851pt;}
._42{width:143.902810pt;}
._41{width:150.911610pt;}
._32{width:167.358036pt;}
._33{width:168.316536pt;}
._2{width:172.806491pt;}
._31{width:207.413349pt;}
._36{width:218.056690pt;}
._2c{width:222.075813pt;}
._40{width:224.008914pt;}
._37{width:230.217147pt;}
._39{width:234.057291pt;}
._2a{width:238.077015pt;}
._3b{width:246.217748pt;}
._3a{width:250.057892pt;}
._27{width:254.078217pt;}
._3e{width:256.650140pt;}
._3d{width:260.938301pt;}
._35{width:268.170573pt;}
._3f{width:273.639898pt;}
._29{width:280.330530pt;}
._38{width:284.171174pt;}
._28{width:287.370794pt;}
._2d{width:296.380821pt;}
._2b{width:303.320503pt;}
._3c{width:315.894679pt;}
._34{width:331.895881pt;}
._44{width:754.879589pt;}
.fs1{font-size:42.881600pt;}
.fs6{font-size:47.999876pt;}
.fs3{font-size:53.122000pt;}
.fs7{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.fs5{font-size:74.882796pt;}
.fs4{font-size:79.141504pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y3d{bottom:94.240113pt;}
.y3c{bottom:112.640076pt;}
.y9c{bottom:115.680054pt;}
.y3b{bottom:131.040039pt;}
.y9b{bottom:134.080079pt;}
.y3a{bottom:149.440064pt;}
.y9a{bottom:152.480042pt;}
.y39{bottom:167.520081pt;}
.y58{bottom:167.840088pt;}
.y99{bottom:170.880066pt;}
.y38{bottom:186.240052pt;}
.y98{bottom:189.280030pt;}
.y71{bottom:193.920044pt;}
.y37{bottom:204.640076pt;}
.y97{bottom:207.680054pt;}
.y70{bottom:214.560059pt;}
.y36{bottom:223.040039pt;}
.y96{bottom:226.080079pt;}
.y6f{bottom:235.200074pt;}
.y35{bottom:241.440064pt;}
.y95{bottom:245.600037pt;}
.y6e{bottom:256.000061pt;}
.y34{bottom:259.840088pt;}
.y94{bottom:266.720032pt;}
.y6d{bottom:276.640076pt;}
.y33{bottom:278.240052pt;}
.y93{bottom:287.360047pt;}
.y32{bottom:296.640076pt;}
.y6c{bottom:297.280030pt;}
.y92{bottom:308.000061pt;}
.y31{bottom:315.040039pt;}
.y6b{bottom:317.920044pt;}
.y91{bottom:328.640076pt;}
.y30{bottom:333.440064pt;}
.y6a{bottom:338.560059pt;}
.y90{bottom:350.080079pt;}
.y8e{bottom:350.400086pt;}
.y2f{bottom:351.840088pt;}
.y69{bottom:359.200074pt;}
.y8d{bottom:368.800049pt;}
.y2e{bottom:370.240052pt;}
.y8f{bottom:370.720032pt;}
.y68{bottom:380.000061pt;}
.y2d{bottom:388.320069pt;}
.y57{bottom:388.640076pt;}
.y8c{bottom:389.600037pt;}
.y67{bottom:400.640076pt;}
.y2c{bottom:407.040039pt;}
.y8b{bottom:408.000061pt;}
.y66{bottom:421.280030pt;}
.y2b{bottom:425.440064pt;}
.y8a{bottom:426.400086pt;}
.y65{bottom:441.920044pt;}
.y2a{bottom:443.840088pt;}
.y89{bottom:445.120057pt;}
.y29{bottom:462.240052pt;}
.y64{bottom:462.560059pt;}
.y88{bottom:463.520081pt;}
.y28{bottom:480.640076pt;}
.y87{bottom:481.920044pt;}
.y63{bottom:483.200074pt;}
.y27{bottom:499.040039pt;}
.y86{bottom:500.320069pt;}
.y62{bottom:504.000061pt;}
.y26{bottom:517.440064pt;}
.y85{bottom:518.720032pt;}
.y61{bottom:524.640076pt;}
.y25{bottom:535.840088pt;}
.y84{bottom:537.120057pt;}
.y60{bottom:545.280030pt;}
.y24{bottom:554.240052pt;}
.y83{bottom:555.520081pt;}
.y5f{bottom:565.920044pt;}
.ya9{bottom:569.600037pt;}
.y23{bottom:572.640076pt;}
.y82{bottom:573.920044pt;}
.y5e{bottom:586.560059pt;}
.y22{bottom:590.720032pt;}
.ya8{bottom:590.880066pt;}
.y56{bottom:591.040039pt;}
.y81{bottom:592.320069pt;}
.y5d{bottom:607.200074pt;}
.y21{bottom:608.800049pt;}
.y55{bottom:609.440064pt;}
.y80{bottom:610.720063pt;}
.y20{bottom:624.160065pt;}
.y5c{bottom:627.200074pt;}
.y54{bottom:627.840058pt;}
.y7f{bottom:629.120057pt;}
.y1f{bottom:639.520050pt;}
.y5b{bottom:645.600068pt;}
.y53{bottom:646.240052pt;}
.y7e{bottom:647.520050pt;}
.y1e{bottom:655.200074pt;}
.y5a{bottom:664.320069pt;}
.y52{bottom:664.640046pt;}
.y7d{bottom:665.920044pt;}
.y1d{bottom:673.920044pt;}
.y59{bottom:682.720063pt;}
.y51{bottom:683.040070pt;}
.y7c{bottom:684.160065pt;}
.y1c{bottom:692.000061pt;}
.y50{bottom:701.440064pt;}
.y7b{bottom:702.560059pt;}
.y1b{bottom:710.720063pt;}
.y78{bottom:715.040070pt;}
.y4f{bottom:719.840058pt;}
.y7a{bottom:725.440064pt;}
.y1a{bottom:728.800049pt;}
.y79{bottom:729.280060pt;}
.y4e{bottom:738.240052pt;}
.y19{bottom:747.520050pt;}
.y77{bottom:748.960053pt;}
.y4d{bottom:756.640046pt;}
.y18{bottom:765.600068pt;}
.y76{bottom:767.360047pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:784.320069pt;}
.y75{bottom:785.760071pt;}
.y4b{bottom:793.440064pt;}
.y16{bottom:802.400055pt;}
.y74{bottom:803.840058pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:821.120057pt;}
.y73{bottom:822.240052pt;}
.y49{bottom:830.240052pt;}
.y72{bottom:837.120057pt;}
.y14{bottom:839.200074pt;}
.y48{bottom:848.640046pt;}
.ya5{bottom:852.800975pt;}
.y13{bottom:857.600068pt;}
.y47{bottom:867.040055pt;}
.ya4{bottom:875.201315pt;}
.y12{bottom:876.000061pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:894.400055pt;}
.ya3{bottom:901.920000pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:912.800064pt;}
.y9d{bottom:917.441439pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:931.040055pt;}
.y9e{bottom:939.677717pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:949.440064pt;}
.y42{bottom:959.040055pt;}
.y9f{bottom:962.078039pt;}
.yd{bottom:967.840058pt;}
.ya7{bottom:977.120057pt;}
.y41{bottom:977.440064pt;}
.ya0{bottom:984.320182pt;}
.yc{bottom:988.482281pt;}
.ya6{bottom:995.520058pt;}
.y40{bottom:995.840058pt;}
.ya1{bottom:1006.562308pt;}
.yb{bottom:1009.919728pt;}
.y3f{bottom:1014.240059pt;}
.ya2{bottom:1028.962639pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h6{height:29.941742pt;}
.hb{height:37.092021pt;}
.h4{height:42.651279pt;}
.h2{height:44.689179pt;}
.h11{height:46.595500pt;}
.h10{height:47.742064pt;}
.h9{height:48.220561pt;}
.ha{height:48.783082pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h12{height:58.566137pt;}
.hf{height:63.109231pt;}
.hc{height:66.698357pt;}
.he{height:78.469215pt;}
.hd{height:120.069191pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.xe{left:78.239998pt;}
.xc{left:81.599998pt;}
.xd{left:86.720001pt;}
.x8{left:93.757574pt;}
.x1a{left:99.839996pt;}
.x27{left:105.440002pt;}
.x1b{left:106.720001pt;}
.x26{left:109.440002pt;}
.x25{left:113.440002pt;}
.x29{left:118.559998pt;}
.x9{left:122.882493pt;}
.x36{left:129.279999pt;}
.xf{left:131.039993pt;}
.x33{left:135.039993pt;}
.x1c{left:175.039993pt;}
.x1d{left:193.279999pt;}
.x38{left:201.597139pt;}
.x37{left:210.561952pt;}
.x19{left:221.919998pt;}
.x39{left:224.800208pt;}
.x35{left:263.679993pt;}
.x3a{left:281.760010pt;}
.x1e{left:285.119995pt;}
.x1f{left:304.959991pt;}
.x2a{left:308.959991pt;}
.x2b{left:328.000000pt;}
.xa{left:350.561604pt;}
.x2c{left:374.559998pt;}
.x2{left:384.799988pt;}
.x2d{left:386.880005pt;}
.x20{left:395.200012pt;}
.xb{left:396.799988pt;}
.x2e{left:401.279999pt;}
.x30{left:405.920013pt;}
.x2f{left:413.600006pt;}
.x21{left:415.200012pt;}
.x34{left:446.399994pt;}
.x12{left:464.320007pt;}
.x31{left:465.760010pt;}
.x16{left:478.880005pt;}
.x17{left:501.760010pt;}
.x22{left:507.040009pt;}
.x23{left:527.039978pt;}
.x28{left:600.799988pt;}
.x11{left:615.359985pt;}
.x14{left:618.080017pt;}
.x15{left:632.320007pt;}
.x13{left:635.840027pt;}
.x24{left:638.719971pt;}
.x32{left:658.080017pt;}
.x18{left:662.080017pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x10{left:718.080017pt;}
.x4{left:722.559998pt;}
}




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