
    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_62b983d8e04bbef029c00375.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_ee1e124f6e02457b4d407e4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_b0dfa43144ab7bd7b9e9a05c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2961a6f5aa3d015f56bc0942.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_a140be4f39f9e3c3c2a744b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_3b8c9e156bf13a0258c12957.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.094301px;}
.ls4{letter-spacing:0.950436px;}
.ls3{letter-spacing:5.759086px;}
.ls5{letter-spacing:7.603488px;}
.ls2{letter-spacing:12.239100px;}
.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;}
}
.ws2{word-spacing:-79.203150px;}
.ws6{word-spacing:-31.364388px;}
.ws1{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws5{word-spacing:-21.780789px;}
.ws4{word-spacing:-19.800788px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-13.910152px;}
._7{margin-left:-12.545755px;}
._1a{margin-left:-10.789305px;}
._1e{margin-left:-9.746240px;}
._6{margin-left:-8.458880px;}
._2{margin-left:-6.757841px;}
._3{margin-left:-5.116390px;}
._4{margin-left:-4.071653px;}
._8{margin-left:-2.516799px;}
._5{margin-left:-1.459903px;}
._0{width:1.064507px;}
._a{width:2.452106px;}
._d{width:3.803249px;}
._10{width:5.095187px;}
._15{width:6.762575px;}
._1b{width:8.175142px;}
._1c{width:9.232966px;}
._11{width:10.330771px;}
._e{width:11.474287px;}
._b{width:12.963984px;}
._c{width:14.269684px;}
._f{width:15.894274px;}
._16{width:17.828772px;}
._14{width:20.166693px;}
._1d{width:22.411633px;}
._17{width:24.869494px;}
._12{width:27.578608px;}
._13{width:28.921043px;}
._19{width:52.271659px;}
._18{width:53.397796px;}
._1f{width:262.507991px;}
._21{width:264.514937px;}
._20{width:267.839511px;}
._1{width:1695.553076px;}
._22{width:2544.250449px;}
.fc3{color:rgb(192,25,19);}
.fc2{color:rgb(41,40,34);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs4{font-size:87.123155px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y18{bottom:41.040115px;}
.ydb{bottom:98.640060px;}
.yd3{bottom:99.000000px;}
.yc8{bottom:99.360077px;}
.ya9{bottom:107.460022px;}
.y2b{bottom:114.300041px;}
.y41{bottom:121.320099px;}
.y16{bottom:121.860077px;}
.y7b{bottom:122.220085px;}
.yda{bottom:126.900055px;}
.yd2{bottom:127.440033px;}
.yc7{bottom:127.800041px;}
.y6e{bottom:135.720085px;}
.ya8{bottom:136.080093px;}
.y40{bottom:149.940033px;}
.y15{bottom:150.300041px;}
.y7a{bottom:150.480079px;}
.y57{bottom:153.000068px;}
.yc6{bottom:156.060036px;}
.y6d{bottom:164.160049px;}
.ya7{bottom:164.520058px;}
.y2a{bottom:171.360077px;}
.y3f{bottom:178.560036px;}
.y14{bottom:178.920043px;}
.yf0{bottom:179.460091px;}
.y56{bottom:181.440033px;}
.yd9{bottom:183.600083px;}
.yc5{bottom:184.500068px;}
.y6c{bottom:192.780052px;}
.y29{bottom:199.800041px;}
.y8d{bottom:205.560036px;}
.y3e{bottom:207.000068px;}
.y79{bottom:207.360077px;}
.yef{bottom:207.900055px;}
.yd1{bottom:212.220085px;}
.yc4{bottom:212.760064px;}
.y6b{bottom:221.220085px;}
.ya6{bottom:221.580093px;}
.y28{bottom:228.420043px;}
.y8c{bottom:235.260064px;}
.y3d{bottom:235.620072px;}
.y55{bottom:238.500068px;}
.yd0{bottom:240.300041px;}
.y6a{bottom:249.840088px;}
.ya5{bottom:250.200096px;}
.y27{bottom:256.860077px;}
.y3c{bottom:264.060036px;}
.yee{bottom:264.960091px;}
.y54{bottom:267.120072px;}
.yd8{bottom:268.560036px;}
.yc3{bottom:269.460091px;}
.y69{bottom:278.280052px;}
.y26{bottom:285.480079px;}
.y3b{bottom:292.680039px;}
.y13{bottom:293.040047px;}
.yed{bottom:293.580093px;}
.y8b{bottom:294.840088px;}
.y53{bottom:295.560036px;}
.ycf{bottom:296.640060px;}
.yd7{bottom:297.000068px;}
.yc2{bottom:297.720085px;}
.ya4{bottom:307.260064px;}
.y3a{bottom:321.120072px;}
.y78{bottom:321.480079px;}
.yec{bottom:322.020058px;}
.y52{bottom:324.180039px;}
.y8a{bottom:324.540047px;}
.yce{bottom:324.720085px;}
.y68{bottom:335.340088px;}
.ya3{bottom:335.700096px;}
.y39{bottom:349.740074px;}
.y12{bottom:350.100083px;}
.yeb{bottom:350.640060px;}
.yc1{bottom:354.420043px;}
.y67{bottom:363.960091px;}
.ya2{bottom:364.320099px;}
.yb1{bottom:378.180039px;}
.y11{bottom:378.540047px;}
.yea{bottom:379.080093px;}
.ycd{bottom:381.060036px;}
.yc0{bottom:382.860077px;}
.y89{bottom:383.940033px;}
.y66{bottom:392.400055px;}
.y38{bottom:406.800041px;}
.ye9{bottom:407.700096px;}
.ycc{bottom:409.140060px;}
.y51{bottom:409.680039px;}
.yd6{bottom:410.400055px;}
.y88{bottom:413.640060px;}
.y25{bottom:428.040047px;}
.ya1{bottom:433.260064px;}
.y37{bottom:435.240074px;}
.y77{bottom:435.600083px;}
.ycb{bottom:437.220085px;}
.y87{bottom:443.340088px;}
.y65{bottom:449.460091px;}
.y24{bottom:456.660049px;}
.y36{bottom:463.860077px;}
.y10{bottom:464.220085px;}
.ye8{bottom:464.760064px;}
.yca{bottom:465.480079px;}
.y50{bottom:466.740074px;}
.yd5{bottom:467.100083px;}
.ya0{bottom:490.320099px;}
.y35{bottom:492.300041px;}
.yf{bottom:492.660049px;}
.ye7{bottom:493.200096px;}
.y4f{bottom:495.360077px;}
.ybf{bottom:496.080093px;}
.y23{bottom:513.720085px;}
.y9f{bottom:518.760064px;}
.y34{bottom:520.920043px;}
.ye{bottom:521.280052px;}
.yc9{bottom:521.640060px;}
.ye6{bottom:521.820099px;}
.y4e{bottom:523.800041px;}
.y86{bottom:532.620072px;}
.y64{bottom:535.140060px;}
.y9e{bottom:547.380066px;}
.yb0{bottom:549.360077px;}
.y76{bottom:549.720085px;}
.yd4{bottom:552.060036px;}
.ybe{bottom:552.780052px;}
.y22{bottom:570.780052px;}
.y33{bottom:577.980079px;}
.y75{bottom:578.340088px;}
.ye5{bottom:578.880066px;}
.y4d{bottom:580.320099px;}
.ybd{bottom:581.220085px;}
.y85{bottom:592.020058px;}
.y63{bottom:592.200096px;}
.y9d{bottom:604.440033px;}
.y32{bottom:606.420043px;}
.y74{bottom:606.780052px;}
.ye4{bottom:607.320099px;}
.y4c{bottom:608.760064px;}
.ybc{bottom:609.480079px;}
.y62{bottom:620.640060px;}
.y21{bottom:627.840088px;}
.yaf{bottom:635.040047px;}
.y4b{bottom:637.020058px;}
.ybb{bottom:637.740074px;}
.y61{bottom:649.260064px;}
.y9c{bottom:656.820099px;}
.y31{bottom:663.480079px;}
.y73{bottom:663.840088px;}
.ye3{bottom:664.380066px;}
.y4a{bottom:665.460091px;}
.yba{bottom:666.180039px;}
.y60{bottom:677.700096px;}
.y20{bottom:684.900055px;}
.y9b{bottom:685.260064px;}
.y30{bottom:692.100083px;}
.yd{bottom:692.460056px;}
.ye2{bottom:693.000068px;}
.y49{bottom:693.720051px;}
.yb9{bottom:694.440067px;}
.y84{bottom:697.860077px;}
.y9a{bottom:713.880066px;}
.yae{bottom:720.540081px;}
.y72{bottom:720.900055px;}
.ye1{bottom:721.440067px;}
.y48{bottom:722.160049px;}
.yb8{bottom:722.880066px;}
.y83{bottom:726.300076px;}
.y5f{bottom:734.760064px;}
.y99{bottom:742.320065px;}
.yad{bottom:749.160049px;}
.yc{bottom:749.520058px;}
.y47{bottom:750.420078px;}
.y82{bottom:754.920078px;}
.y5e{bottom:763.380066px;}
.y98{bottom:770.940067px;}
.y1f{bottom:777.600083px;}
.y71{bottom:777.960056px;}
.ye0{bottom:778.500068px;}
.yb7{bottom:779.580059px;}
.y81{bottom:783.360077px;}
.y97{bottom:799.380066px;}
.y1e{bottom:806.040081px;}
.yac{bottom:806.220051px;}
.y70{bottom:806.580059px;}
.y46{bottom:807.120072px;}
.yb6{bottom:807.840054px;}
.y80{bottom:811.980079px;}
.y96{bottom:828.000068px;}
.y2f{bottom:834.660049px;}
.yb{bottom:835.020058px;}
.y45{bottom:835.380066px;}
.ydf{bottom:835.560070px;}
.y95{bottom:856.440067px;}
.y1d{bottom:863.280052px;}
.ya{bottom:863.640060px;}
.y44{bottom:863.820065px;}
.yde{bottom:864.180073px;}
.yb5{bottom:864.540081px;}
.y5d{bottom:867.960056px;}
.y7f{bottom:869.040081px;}
.y94{bottom:885.060070px;}
.y1c{bottom:891.720051px;}
.y9{bottom:892.080059px;}
.y5c{bottom:896.580059px;}
.y93{bottom:913.500068px;}
.yab{bottom:920.340054px;}
.y43{bottom:920.520058px;}
.y8{bottom:920.700061px;}
.yb4{bottom:921.240074px;}
.y5b{bottom:925.020058px;}
.y92{bottom:942.120072px;}
.y1b{bottom:948.780053px;}
.y7{bottom:949.140060px;}
.yb3{bottom:949.500068px;}
.y5a{bottom:953.640060px;}
.y91{bottom:970.560070px;}
.y2e{bottom:977.400072px;}
.y6f{bottom:977.760064px;}
.yb2{bottom:977.940067px;}
.y7e{bottom:978.300058px;}
.y59{bottom:982.080059px;}
.y1a{bottom:1005.840070px;}
.y6{bottom:1006.200061px;}
.y7d{bottom:1006.740074px;}
.y58{bottom:1010.700061px;}
.y90{bottom:1029.960074px;}
.yaa{bottom:1034.460074px;}
.y5{bottom:1034.820065px;}
.y7c{bottom:1035.180073px;}
.y8f{bottom:1059.660067px;}
.y2d{bottom:1062.900072px;}
.ydd{bottom:1063.440067px;}
.y17{bottom:1070.100065px;}
.y19{bottom:1091.520058px;}
.y4{bottom:1091.880066px;}
.y8e{bottom:1119.240066px;}
.y42{bottom:1119.960065px;}
.ydc{bottom:1120.140069px;}
.y3{bottom:1120.320065px;}
.y2c{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.h7{height:55.302981px;}
.h9{height:55.596662px;}
.h8{height:57.534328px;}
.h5{height:64.414315px;}
.h6{height:65.992187px;}
.h2{height:67.837080px;}
.hb{height:69.496123px;}
.ha{height:77.381356px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:89.819996px;}
.x1{left:140.939999px;}
.x8{left:147.599997px;}
.x20{left:155.520006px;}
.x3{left:173.159998px;}
.x13{left:174.240006px;}
.x2{left:187.199993px;}
.x5{left:214.560001px;}
.x14{left:224.639992px;}
.x6{left:229.139992px;}
.x18{left:241.740006px;}
.x1f{left:266.759994px;}
.x22{left:270.360008px;}
.x7{left:282.240006px;}
.x24{left:299.699993px;}
.xf{left:307.800007px;}
.x19{left:314.459988px;}
.xa{left:318.600013px;}
.x12{left:334.980011px;}
.x17{left:365.040012px;}
.xb{left:370.079990px;}
.x9{left:371.160015px;}
.x15{left:372.959988px;}
.xd{left:382.680005px;}
.x4{left:391.319996px;}
.x1a{left:400.139992px;}
.xe{left:410.939999px;}
.xc{left:419.579990px;}
.x16{left:421.199993px;}
.x21{left:432.000000px;}
.x23{left:450.180005px;}
.x1c{left:453.060001px;}
.x1b{left:470.519989px;}
.x10{left:532.800007px;}
.x1e{left:609.299973px;}
.x1d{left:754.019989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.083823pt;}
.ls4{letter-spacing:0.844832pt;}
.ls3{letter-spacing:5.119188pt;}
.ls5{letter-spacing:6.758656pt;}
.ls2{letter-spacing:10.879200pt;}
.ws2{word-spacing:-70.402800pt;}
.ws6{word-spacing:-27.879456pt;}
.ws1{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws5{word-spacing:-19.360701pt;}
.ws4{word-spacing:-17.600700pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-12.364579pt;}
._7{margin-left:-11.151782pt;}
._1a{margin-left:-9.590493pt;}
._1e{margin-left:-8.663324pt;}
._6{margin-left:-7.519005pt;}
._2{margin-left:-6.006970pt;}
._3{margin-left:-4.547902pt;}
._4{margin-left:-3.619247pt;}
._8{margin-left:-2.237155pt;}
._5{margin-left:-1.297692pt;}
._0{width:0.946228pt;}
._a{width:2.179650pt;}
._d{width:3.380666pt;}
._10{width:4.529055pt;}
._15{width:6.011178pt;}
._1b{width:7.266793pt;}
._1c{width:8.207081pt;}
._11{width:9.182908pt;}
._e{width:10.199366pt;}
._b{width:11.523542pt;}
._c{width:12.684164pt;}
._f{width:14.128244pt;}
._16{width:15.847798pt;}
._14{width:17.925949pt;}
._1d{width:19.921452pt;}
._17{width:22.106217pt;}
._12{width:24.514319pt;}
._13{width:25.707594pt;}
._19{width:46.463697pt;}
._18{width:47.464708pt;}
._1f{width:233.340436pt;}
._21{width:235.124388pt;}
._20{width:238.079565pt;}
._1{width:1507.158290pt;}
._22{width:2261.555954pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs4{font-size:77.442804pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y18{bottom:36.480103pt;}
.ydb{bottom:87.680054pt;}
.yd3{bottom:88.000000pt;}
.yc8{bottom:88.320069pt;}
.ya9{bottom:95.520020pt;}
.y2b{bottom:101.600037pt;}
.y41{bottom:107.840088pt;}
.y16{bottom:108.320069pt;}
.y7b{bottom:108.640076pt;}
.yda{bottom:112.800049pt;}
.yd2{bottom:113.280030pt;}
.yc7{bottom:113.600037pt;}
.y6e{bottom:120.640076pt;}
.ya8{bottom:120.960083pt;}
.y40{bottom:133.280030pt;}
.y15{bottom:133.600037pt;}
.y7a{bottom:133.760071pt;}
.y57{bottom:136.000061pt;}
.yc6{bottom:138.720032pt;}
.y6d{bottom:145.920044pt;}
.ya7{bottom:146.240052pt;}
.y2a{bottom:152.320069pt;}
.y3f{bottom:158.720032pt;}
.y14{bottom:159.040039pt;}
.yf0{bottom:159.520081pt;}
.y56{bottom:161.280030pt;}
.yd9{bottom:163.200074pt;}
.yc5{bottom:164.000061pt;}
.y6c{bottom:171.360047pt;}
.y29{bottom:177.600037pt;}
.y8d{bottom:182.720032pt;}
.y3e{bottom:184.000061pt;}
.y79{bottom:184.320069pt;}
.yef{bottom:184.800049pt;}
.yd1{bottom:188.640076pt;}
.yc4{bottom:189.120057pt;}
.y6b{bottom:196.640076pt;}
.ya6{bottom:196.960083pt;}
.y28{bottom:203.040039pt;}
.y8c{bottom:209.120057pt;}
.y3d{bottom:209.440064pt;}
.y55{bottom:212.000061pt;}
.yd0{bottom:213.600037pt;}
.y6a{bottom:222.080079pt;}
.ya5{bottom:222.400086pt;}
.y27{bottom:228.320069pt;}
.y3c{bottom:234.720032pt;}
.yee{bottom:235.520081pt;}
.y54{bottom:237.440064pt;}
.yd8{bottom:238.720032pt;}
.yc3{bottom:239.520081pt;}
.y69{bottom:247.360047pt;}
.y26{bottom:253.760071pt;}
.y3b{bottom:260.160035pt;}
.y13{bottom:260.480042pt;}
.yed{bottom:260.960083pt;}
.y8b{bottom:262.080079pt;}
.y53{bottom:262.720032pt;}
.ycf{bottom:263.680054pt;}
.yd7{bottom:264.000061pt;}
.yc2{bottom:264.640076pt;}
.ya4{bottom:273.120057pt;}
.y3a{bottom:285.440064pt;}
.y78{bottom:285.760071pt;}
.yec{bottom:286.240052pt;}
.y52{bottom:288.160035pt;}
.y8a{bottom:288.480042pt;}
.yce{bottom:288.640076pt;}
.y68{bottom:298.080079pt;}
.ya3{bottom:298.400086pt;}
.y39{bottom:310.880066pt;}
.y12{bottom:311.200074pt;}
.yeb{bottom:311.680054pt;}
.yc1{bottom:315.040039pt;}
.y67{bottom:323.520081pt;}
.ya2{bottom:323.840088pt;}
.yb1{bottom:336.160035pt;}
.y11{bottom:336.480042pt;}
.yea{bottom:336.960083pt;}
.ycd{bottom:338.720032pt;}
.yc0{bottom:340.320069pt;}
.y89{bottom:341.280030pt;}
.y66{bottom:348.800049pt;}
.y38{bottom:361.600037pt;}
.ye9{bottom:362.400086pt;}
.ycc{bottom:363.680054pt;}
.y51{bottom:364.160035pt;}
.yd6{bottom:364.800049pt;}
.y88{bottom:367.680054pt;}
.y25{bottom:380.480042pt;}
.ya1{bottom:385.120057pt;}
.y37{bottom:386.880066pt;}
.y77{bottom:387.200074pt;}
.ycb{bottom:388.640076pt;}
.y87{bottom:394.080079pt;}
.y65{bottom:399.520081pt;}
.y24{bottom:405.920044pt;}
.y36{bottom:412.320069pt;}
.y10{bottom:412.640076pt;}
.ye8{bottom:413.120057pt;}
.yca{bottom:413.760071pt;}
.y50{bottom:414.880066pt;}
.yd5{bottom:415.200074pt;}
.ya0{bottom:435.840088pt;}
.y35{bottom:437.600037pt;}
.yf{bottom:437.920044pt;}
.ye7{bottom:438.400086pt;}
.y4f{bottom:440.320069pt;}
.ybf{bottom:440.960083pt;}
.y23{bottom:456.640076pt;}
.y9f{bottom:461.120057pt;}
.y34{bottom:463.040039pt;}
.ye{bottom:463.360047pt;}
.yc9{bottom:463.680054pt;}
.ye6{bottom:463.840088pt;}
.y4e{bottom:465.600037pt;}
.y86{bottom:473.440064pt;}
.y64{bottom:475.680054pt;}
.y9e{bottom:486.560059pt;}
.yb0{bottom:488.320069pt;}
.y76{bottom:488.640076pt;}
.yd4{bottom:490.720032pt;}
.ybe{bottom:491.360047pt;}
.y22{bottom:507.360047pt;}
.y33{bottom:513.760071pt;}
.y75{bottom:514.080079pt;}
.ye5{bottom:514.560059pt;}
.y4d{bottom:515.840088pt;}
.ybd{bottom:516.640076pt;}
.y85{bottom:526.240052pt;}
.y63{bottom:526.400086pt;}
.y9d{bottom:537.280030pt;}
.y32{bottom:539.040039pt;}
.y74{bottom:539.360047pt;}
.ye4{bottom:539.840088pt;}
.y4c{bottom:541.120057pt;}
.ybc{bottom:541.760071pt;}
.y62{bottom:551.680054pt;}
.y21{bottom:558.080079pt;}
.yaf{bottom:564.480042pt;}
.y4b{bottom:566.240052pt;}
.ybb{bottom:566.880066pt;}
.y61{bottom:577.120057pt;}
.y9c{bottom:583.840088pt;}
.y31{bottom:589.760071pt;}
.y73{bottom:590.080079pt;}
.ye3{bottom:590.560059pt;}
.y4a{bottom:591.520081pt;}
.yba{bottom:592.160035pt;}
.y60{bottom:602.400086pt;}
.y20{bottom:608.800049pt;}
.y9b{bottom:609.120057pt;}
.y30{bottom:615.200074pt;}
.yd{bottom:615.520050pt;}
.ye2{bottom:616.000061pt;}
.y49{bottom:616.640046pt;}
.yb9{bottom:617.280060pt;}
.y84{bottom:620.320069pt;}
.y9a{bottom:634.560059pt;}
.yae{bottom:640.480072pt;}
.y72{bottom:640.800049pt;}
.ye1{bottom:641.280060pt;}
.y48{bottom:641.920044pt;}
.yb8{bottom:642.560059pt;}
.y83{bottom:645.600068pt;}
.y5f{bottom:653.120057pt;}
.y99{bottom:659.840058pt;}
.yad{bottom:665.920044pt;}
.yc{bottom:666.240052pt;}
.y47{bottom:667.040070pt;}
.y82{bottom:671.040070pt;}
.y5e{bottom:678.560059pt;}
.y98{bottom:685.280060pt;}
.y1f{bottom:691.200074pt;}
.y71{bottom:691.520050pt;}
.ye0{bottom:692.000061pt;}
.yb7{bottom:692.960053pt;}
.y81{bottom:696.320069pt;}
.y97{bottom:710.560059pt;}
.y1e{bottom:716.480072pt;}
.yac{bottom:716.640046pt;}
.y70{bottom:716.960053pt;}
.y46{bottom:717.440064pt;}
.yb6{bottom:718.080048pt;}
.y80{bottom:721.760071pt;}
.y96{bottom:736.000061pt;}
.y2f{bottom:741.920044pt;}
.yb{bottom:742.240052pt;}
.y45{bottom:742.560059pt;}
.ydf{bottom:742.720063pt;}
.y95{bottom:761.280060pt;}
.y1d{bottom:767.360047pt;}
.ya{bottom:767.680054pt;}
.y44{bottom:767.840058pt;}
.yde{bottom:768.160065pt;}
.yb5{bottom:768.480072pt;}
.y5d{bottom:771.520050pt;}
.y7f{bottom:772.480072pt;}
.y94{bottom:786.720063pt;}
.y1c{bottom:792.640046pt;}
.y9{bottom:792.960053pt;}
.y5c{bottom:796.960053pt;}
.y93{bottom:812.000061pt;}
.yab{bottom:818.080048pt;}
.y43{bottom:818.240052pt;}
.y8{bottom:818.400055pt;}
.yb4{bottom:818.880066pt;}
.y5b{bottom:822.240052pt;}
.y92{bottom:837.440064pt;}
.y1b{bottom:843.360047pt;}
.y7{bottom:843.680054pt;}
.yb3{bottom:844.000061pt;}
.y5a{bottom:847.680054pt;}
.y91{bottom:862.720063pt;}
.y2e{bottom:868.800064pt;}
.y6f{bottom:869.120057pt;}
.yb2{bottom:869.280060pt;}
.y7e{bottom:869.600052pt;}
.y59{bottom:872.960053pt;}
.y1a{bottom:894.080063pt;}
.y6{bottom:894.400055pt;}
.y7d{bottom:894.880066pt;}
.y58{bottom:898.400055pt;}
.y90{bottom:915.520066pt;}
.yaa{bottom:919.520066pt;}
.y5{bottom:919.840058pt;}
.y7c{bottom:920.160065pt;}
.y8f{bottom:941.920060pt;}
.y2d{bottom:944.800064pt;}
.ydd{bottom:945.280060pt;}
.y17{bottom:951.200058pt;}
.y19{bottom:970.240052pt;}
.y4{bottom:970.560059pt;}
.y8e{bottom:994.880059pt;}
.y42{bottom:995.520058pt;}
.ydc{bottom:995.680062pt;}
.y3{bottom:995.840058pt;}
.y2c{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.h7{height:49.158205pt;}
.h9{height:49.419255pt;}
.h8{height:51.141625pt;}
.h5{height:57.257169pt;}
.h6{height:58.659722pt;}
.h2{height:60.299627pt;}
.hb{height:61.774332pt;}
.ha{height:68.783428pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:79.839996pt;}
.x1{left:125.279999pt;}
.x8{left:131.199997pt;}
.x20{left:138.240005pt;}
.x3{left:153.919998pt;}
.x13{left:154.880005pt;}
.x2{left:166.399994pt;}
.x5{left:190.720001pt;}
.x14{left:199.679993pt;}
.x6{left:203.679993pt;}
.x18{left:214.880005pt;}
.x1f{left:237.119995pt;}
.x22{left:240.320007pt;}
.x7{left:250.880005pt;}
.x24{left:266.399994pt;}
.xf{left:273.600006pt;}
.x19{left:279.519989pt;}
.xa{left:283.200012pt;}
.x12{left:297.760010pt;}
.x17{left:324.480011pt;}
.xb{left:328.959991pt;}
.x9{left:329.920013pt;}
.x15{left:331.519989pt;}
.xd{left:340.160004pt;}
.x4{left:347.839996pt;}
.x1a{left:355.679993pt;}
.xe{left:365.279999pt;}
.xc{left:372.959991pt;}
.x16{left:374.399994pt;}
.x21{left:384.000000pt;}
.x23{left:400.160004pt;}
.x1c{left:402.720001pt;}
.x1b{left:418.239990pt;}
.x10{left:473.600006pt;}
.x1e{left:541.599976pt;}
.x1d{left:670.239990pt;}
}




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