
    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_4705cfa9b4828bcb02b5bcd4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_ab14a11ca25648ca9b1b2db8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_20092035ad5d8cfc287e104e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_9b76414527db25c92b5bc926.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_901d6a58e6028bdc2a43ae1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_ff57f3b9b850bc2f92c7f090.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_0223b997587251266ee0f6be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_941aca8b076cf810e5812815.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cfec168ac0d0ae384169b35c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b8df0df296805075d93aad3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700195;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;}
.m7{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.187842px;}
.ls1{letter-spacing:0.378599px;}
.ls5{letter-spacing:0.378601px;}
.ls4{letter-spacing:46.065046px;}
.ls2{letter-spacing:61.194622px;}
.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;}
}
.ws1{word-spacing:-14.939976px;}
.ws0{word-spacing:-12.059981px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-3.314943px;}
._0{margin-left:-1.440825px;}
._2{width:1.002395px;}
._d{width:2.281499px;}
._a{width:3.431024px;}
._10{width:4.847591px;}
._c{width:6.301224px;}
._b{width:7.421128px;}
._12{width:9.076573px;}
._1a{width:10.095192px;}
._6{width:11.100086px;}
._5{width:12.554195px;}
._16{width:13.789670px;}
._f{width:16.694029px;}
._14{width:18.294735px;}
._13{width:19.376446px;}
._e{width:21.115781px;}
._9{width:22.353060px;}
._8{width:23.453863px;}
._15{width:25.713676px;}
._19{width:26.803849px;}
._7{width:27.928922px;}
._18{width:30.602218px;}
._17{width:32.171287px;}
._1{width:100.137518px;}
._3{width:231.193804px;}
._4{width:1036.866328px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:12.239980px;}
.fs1{font-size:17.999971px;}
.fs4{font-size:23.759962px;}
.fsc{font-size:30.239952px;}
.fsb{font-size:35.999942px;}
.fs8{font-size:38.879938px;}
.fs5{font-size:45.359927px;}
.fs2{font-size:48.239923px;}
.fs0{font-size:53.999914px;}
.fs3{font-size:59.759904px;}
.fs6{font-size:71.999885px;}
.fsa{font-size:84.239865px;}
.fs7{font-size:95.759847px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.777207px;}
.y9{bottom:68.700790px;}
.y8{bottom:78.780774px;}
.y7{bottom:96.421346px;}
.y8d{bottom:136.381282px;}
.ycd{bottom:137.100681px;}
.y78{bottom:137.640680px;}
.y43{bottom:143.040671px;}
.yd5{bottom:154.561253px;}
.y8c{bottom:154.741252px;}
.ycc{bottom:155.821251px;}
.y77{bottom:156.361250px;}
.y42{bottom:161.581241px;}
.yd4{bottom:173.101223px;}
.y8b{bottom:173.281223px;}
.ycb{bottom:174.361221px;}
.y76{bottom:174.721220px;}
.ybf{bottom:174.901220px;}
.y41{bottom:180.301212px;}
.y75{bottom:190.381195px;}
.yd3{bottom:191.821193px;}
.y8a{bottom:192.001193px;}
.yca{bottom:193.081191px;}
.ybe{bottom:193.621190px;}
.y40{bottom:198.841182px;}
.y74{bottom:200.281180px;}
.y89{bottom:210.541163px;}
.yc9{bottom:211.621161px;}
.ybd{bottom:211.981161px;}
.y3f{bottom:217.561152px;}
.y73{bottom:219.001150px;}
.yd2{bottom:229.081133px;}
.y88{bottom:229.261133px;}
.ybc{bottom:230.161132px;}
.yc8{bottom:230.341131px;}
.y3e{bottom:236.101122px;}
.y72{bottom:237.541120px;}
.y87{bottom:247.801104px;}
.ybb{bottom:248.521102px;}
.yc7{bottom:249.061102px;}
.y3d{bottom:254.821092px;}
.y71{bottom:256.261090px;}
.yd1{bottom:266.161074px;}
.y86{bottom:266.521074px;}
.yba{bottom:267.061073px;}
.yc6{bottom:267.601072px;}
.y3c{bottom:273.361063px;}
.y70{bottom:274.801060px;}
.yd0{bottom:282.181049px;}
.y85{bottom:285.241044px;}
.yb9{bottom:285.781043px;}
.yc5{bottom:286.321042px;}
.y3b{bottom:292.081033px;}
.y6f{bottom:293.521030px;}
.y84{bottom:303.781014px;}
.yb8{bottom:304.321013px;}
.yc4{bottom:304.861012px;}
.y3a{bottom:310.801003px;}
.y6e{bottom:312.061001px;}
.y83{bottom:322.500984px;}
.yb7{bottom:323.040983px;}
.yc3{bottom:323.580982px;}
.y39{bottom:329.340973px;}
.y6d{bottom:330.780971px;}
.y82{bottom:341.040954px;}
.yb6{bottom:341.580953px;}
.yc2{bottom:342.120953px;}
.y38{bottom:348.060943px;}
.y6c{bottom:349.500941px;}
.y81{bottom:359.760924px;}
.yb5{bottom:360.300924px;}
.yc1{bottom:360.480923px;}
.y37{bottom:366.600913px;}
.y6b{bottom:368.040911px;}
.y80{bottom:378.300895px;}
.yc0{bottom:378.660894px;}
.yb4{bottom:378.840894px;}
.y36{bottom:385.320883px;}
.y6a{bottom:386.760881px;}
.y7f{bottom:397.020865px;}
.yb3{bottom:397.560864px;}
.y35{bottom:403.680854px;}
.y69{bottom:405.300852px;}
.y7e{bottom:415.560835px;}
.yb2{bottom:416.280834px;}
.y34{bottom:422.040825px;}
.y68{bottom:424.020822px;}
.y7d{bottom:434.280805px;}
.yb1{bottom:434.820804px;}
.y33{bottom:440.580795px;}
.ycf{bottom:442.380792px;}
.y67{bottom:442.560792px;}
.y7c{bottom:453.000775px;}
.yb0{bottom:453.540774px;}
.yce{bottom:458.760766px;}
.y32{bottom:459.300765px;}
.y66{bottom:461.280762px;}
.y7b{bottom:471.540746px;}
.yaf{bottom:472.080745px;}
.y31{bottom:475.320739px;}
.y65{bottom:479.820732px;}
.y30{bottom:485.220724px;}
.y7a{bottom:490.260716px;}
.yae{bottom:490.800715px;}
.y64{bottom:498.180703px;}
.y2f{bottom:503.760694px;}
.y79{bottom:508.800686px;}
.yad{bottom:509.340685px;}
.y63{bottom:514.740676px;}
.y2e{bottom:522.480664px;}
.y62{bottom:527.520656px;}
.yac{bottom:528.060655px;}
.y2d{bottom:541.020634px;}
.y61{bottom:546.060626px;}
.yab{bottom:546.600625px;}
.y2c{bottom:559.740604px;}
.y60{bottom:564.780596px;}
.yaa{bottom:565.320595px;}
.y2b{bottom:578.280575px;}
.y5f{bottom:583.320567px;}
.ya9{bottom:584.040566px;}
.y2a{bottom:597.000545px;}
.y5e{bottom:602.040537px;}
.ya8{bottom:602.580536px;}
.y29{bottom:615.720515px;}
.y5d{bottom:620.760507px;}
.ya7{bottom:621.300506px;}
.y28{bottom:634.260485px;}
.y5c{bottom:639.300477px;}
.ya6{bottom:639.840476px;}
.y27{bottom:652.980455px;}
.y5b{bottom:658.020447px;}
.ya5{bottom:658.560446px;}
.y26{bottom:671.520426px;}
.y5a{bottom:676.560418px;}
.ya4{bottom:677.100417px;}
.y25{bottom:690.240396px;}
.y59{bottom:695.280388px;}
.ya3{bottom:695.820387px;}
.y24{bottom:708.780366px;}
.y58{bottom:713.820358px;}
.ya2{bottom:714.360357px;}
.y23{bottom:727.500336px;}
.y57{bottom:732.540328px;}
.ya1{bottom:733.080327px;}
.y22{bottom:746.040306px;}
.y56{bottom:751.080298px;}
.ya0{bottom:751.800297px;}
.y21{bottom:764.760276px;}
.y55{bottom:769.800268px;}
.y9f{bottom:770.340267px;}
.y20{bottom:783.480246px;}
.y54{bottom:788.520238px;}
.y9e{bottom:789.060238px;}
.y1f{bottom:799.500221px;}
.y53{bottom:807.060209px;}
.y9d{bottom:807.600208px;}
.y1e{bottom:809.220205px;}
.y52{bottom:825.780179px;}
.y9c{bottom:826.320178px;}
.y1d{bottom:829.200173px;}
.y51{bottom:844.320149px;}
.y9b{bottom:844.860148px;}
.y1c{bottom:852.780136px;}
.yd7{bottom:859.800124px;}
.y50{bottom:863.040119px;}
.y9a{bottom:863.580118px;}
.y1b{bottom:868.620110px;}
.yd6{bottom:879.780092px;}
.y4f{bottom:881.580089px;}
.y99{bottom:882.120089px;}
.y1a{bottom:883.740086px;}
.y19{bottom:890.940074px;}
.y4e{bottom:900.300060px;}
.y98{bottom:900.840059px;}
.y18{bottom:909.660045px;}
.y4d{bottom:918.840030px;}
.y97{bottom:919.560029px;}
.y17{bottom:928.200015px;}
.y4c{bottom:937.560000px;}
.y96{bottom:938.099999px;}
.y16{bottom:946.919985px;}
.y4b{bottom:956.279970px;}
.y95{bottom:956.819969px;}
.y15{bottom:962.399960px;}
.y13{bottom:970.679947px;}
.y14{bottom:974.459941px;}
.y4a{bottom:974.819940px;}
.y94{bottom:975.359939px;}
.y12{bottom:988.499918px;}
.y49{bottom:993.539910px;}
.y93{bottom:994.079909px;}
.y11{bottom:1010.999882px;}
.y48{bottom:1012.079881px;}
.y92{bottom:1012.619880px;}
.y47{bottom:1030.799851px;}
.y91{bottom:1031.339850px;}
.y10{bottom:1039.979836px;}
.y46{bottom:1049.339821px;}
.y90{bottom:1049.879820px;}
.yf{bottom:1067.339792px;}
.y45{bottom:1068.059791px;}
.y8f{bottom:1068.599790px;}
.y44{bottom:1086.599761px;}
.y8e{bottom:1086.959761px;}
.ye{bottom:1088.039759px;}
.y6{bottom:1112.879719px;}
.y5{bottom:1125.479699px;}
.y4{bottom:1133.759686px;}
.y3{bottom:1150.499659px;}
.yd{bottom:1155.539651px;}
.y2{bottom:1163.459638px;}
.yc{bottom:1170.119628px;}
.ya{bottom:1179.302400px;}
.y1{bottom:1196.039586px;}
.hf{height:8.911040px;}
.h6{height:12.060000px;}
.h2{height:13.104471px;}
.he{height:13.122049px;}
.h5{height:15.836107px;}
.h11{height:17.297902px;}
.h12{height:17.321105px;}
.h14{height:22.045043px;}
.h13{height:26.244099px;}
.hd{height:28.343627px;}
.h7{height:31.007763px;}
.h3{height:35.167092px;}
.h1{height:39.313414px;}
.h8{height:39.366148px;}
.hb{height:40.793138px;}
.h15{height:41.843605px;}
.h4{height:43.506844px;}
.hc{height:43.565204px;}
.h9{height:52.488197px;}
.h10{height:61.328925px;}
.ha{height:69.809302px;}
.h0{height:1263.000000px;}
.w2{width:3.960000px;}
.w1{width:79.020000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999827px;}
.x17{left:134.999784px;}
.x16{left:154.793752px;}
.x4{left:160.019470px;}
.x15{left:175.139720px;}
.x12{left:178.919714px;}
.xd{left:179.999712px;}
.x14{left:200.339679px;}
.x5{left:206.459670px;}
.x13{left:281.519550px;}
.xb{left:313.559498px;}
.xc{left:325.799479px;}
.xe{left:335.339463px;}
.x2{left:353.159877px;}
.x18{left:425.699819px;}
.x6{left:428.399315px;}
.xf{left:433.799306px;}
.x10{left:438.659298px;}
.x3{left:446.399821px;}
.x11{left:552.779116px;}
.x9{left:605.519031px;}
.xa{left:643.858970px;}
.x7{left:697.680000px;}
.x8{left:776.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.166971pt;}
.ls1{letter-spacing:0.336533pt;}
.ls5{letter-spacing:0.336534pt;}
.ls4{letter-spacing:40.946708pt;}
.ls2{letter-spacing:54.395220pt;}
.ws1{word-spacing:-13.279979pt;}
.ws0{word-spacing:-10.719983pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-2.946616pt;}
._0{margin-left:-1.280733pt;}
._2{width:0.891018pt;}
._d{width:2.027999pt;}
._a{width:3.049799pt;}
._10{width:4.308969pt;}
._c{width:5.601088pt;}
._b{width:6.596559pt;}
._12{width:8.068065pt;}
._1a{width:8.973504pt;}
._6{width:9.866743pt;}
._5{width:11.159284pt;}
._16{width:12.257485pt;}
._f{width:14.839136pt;}
._14{width:16.261987pt;}
._13{width:17.223508pt;}
._e{width:18.769583pt;}
._9{width:19.869387pt;}
._8{width:20.847878pt;}
._15{width:22.856601pt;}
._19{width:23.825644pt;}
._7{width:24.825709pt;}
._18{width:27.201971pt;}
._17{width:28.596699pt;}
._1{width:89.011127pt;}
._3{width:205.505603pt;}
._4{width:921.658958pt;}
.fs9{font-size:10.879983pt;}
.fs1{font-size:15.999974pt;}
.fs4{font-size:21.119966pt;}
.fsc{font-size:26.879957pt;}
.fsb{font-size:31.999949pt;}
.fs8{font-size:34.559945pt;}
.fs5{font-size:40.319935pt;}
.fs2{font-size:42.879931pt;}
.fs0{font-size:47.999923pt;}
.fs3{font-size:53.119915pt;}
.fs6{font-size:63.999898pt;}
.fsa{font-size:74.879880pt;}
.fs7{font-size:85.119864pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.357517pt;}
.y9{bottom:61.067369pt;}
.y8{bottom:70.027355pt;}
.y7{bottom:85.707863pt;}
.y8d{bottom:121.227806pt;}
.ycd{bottom:121.867272pt;}
.y78{bottom:122.347271pt;}
.y43{bottom:127.147263pt;}
.yd5{bottom:137.387780pt;}
.y8c{bottom:137.547780pt;}
.ycc{bottom:138.507778pt;}
.y77{bottom:138.987778pt;}
.y42{bottom:143.627770pt;}
.yd4{bottom:153.867754pt;}
.y8b{bottom:154.027754pt;}
.ycb{bottom:154.987752pt;}
.y76{bottom:155.307752pt;}
.ybf{bottom:155.467751pt;}
.y41{bottom:160.267744pt;}
.y75{bottom:169.227729pt;}
.yd3{bottom:170.507727pt;}
.y8a{bottom:170.667727pt;}
.yca{bottom:171.627725pt;}
.ybe{bottom:172.107725pt;}
.y40{bottom:176.747717pt;}
.y74{bottom:178.027715pt;}
.y89{bottom:187.147701pt;}
.yc9{bottom:188.107699pt;}
.ybd{bottom:188.427699pt;}
.y3f{bottom:193.387691pt;}
.y73{bottom:194.667689pt;}
.yd2{bottom:203.627674pt;}
.y88{bottom:203.787674pt;}
.ybc{bottom:204.587673pt;}
.yc8{bottom:204.747672pt;}
.y3e{bottom:209.867664pt;}
.y72{bottom:211.147662pt;}
.y87{bottom:220.267648pt;}
.ybb{bottom:220.907647pt;}
.yc7{bottom:221.387646pt;}
.y3d{bottom:226.507638pt;}
.y71{bottom:227.787636pt;}
.yd1{bottom:236.587621pt;}
.y86{bottom:236.907621pt;}
.yba{bottom:237.387620pt;}
.yc6{bottom:237.867619pt;}
.y3c{bottom:242.987611pt;}
.y70{bottom:244.267609pt;}
.yd0{bottom:250.827599pt;}
.y85{bottom:253.547594pt;}
.yb9{bottom:254.027594pt;}
.yc5{bottom:254.507593pt;}
.y3b{bottom:259.627585pt;}
.y6f{bottom:260.907583pt;}
.y84{bottom:270.027568pt;}
.yb8{bottom:270.507567pt;}
.yc4{bottom:270.987566pt;}
.y3a{bottom:276.267558pt;}
.y6e{bottom:277.387556pt;}
.y83{bottom:286.667541pt;}
.yb7{bottom:287.147541pt;}
.yc3{bottom:287.627540pt;}
.y39{bottom:292.747532pt;}
.y6d{bottom:294.027530pt;}
.y82{bottom:303.147515pt;}
.yb6{bottom:303.627514pt;}
.yc2{bottom:304.107513pt;}
.y38{bottom:309.387505pt;}
.y6c{bottom:310.667503pt;}
.y81{bottom:319.787488pt;}
.yb5{bottom:320.267488pt;}
.yc1{bottom:320.427487pt;}
.y37{bottom:325.867479pt;}
.y6b{bottom:327.147477pt;}
.y80{bottom:336.267462pt;}
.yc0{bottom:336.587461pt;}
.yb4{bottom:336.747461pt;}
.y36{bottom:342.507452pt;}
.y6a{bottom:343.787450pt;}
.y7f{bottom:352.907435pt;}
.yb3{bottom:353.387435pt;}
.y35{bottom:358.827426pt;}
.y69{bottom:360.267424pt;}
.y7e{bottom:369.387409pt;}
.yb2{bottom:370.027408pt;}
.y34{bottom:375.147400pt;}
.y68{bottom:376.907397pt;}
.y7d{bottom:386.027382pt;}
.yb1{bottom:386.507382pt;}
.y33{bottom:391.627373pt;}
.ycf{bottom:393.227371pt;}
.y67{bottom:393.387371pt;}
.y7c{bottom:402.667356pt;}
.yb0{bottom:403.147355pt;}
.yce{bottom:407.787348pt;}
.y32{bottom:408.267347pt;}
.y66{bottom:410.027344pt;}
.y7b{bottom:419.147329pt;}
.yaf{bottom:419.627329pt;}
.y31{bottom:422.507324pt;}
.y65{bottom:426.507318pt;}
.y30{bottom:431.307310pt;}
.y7a{bottom:435.787303pt;}
.yae{bottom:436.267302pt;}
.y64{bottom:442.827291pt;}
.y2f{bottom:447.787284pt;}
.y79{bottom:452.267276pt;}
.yad{bottom:452.747276pt;}
.y63{bottom:457.547268pt;}
.y2e{bottom:464.427257pt;}
.y62{bottom:468.907250pt;}
.yac{bottom:469.387249pt;}
.y2d{bottom:480.907231pt;}
.y61{bottom:485.387223pt;}
.yab{bottom:485.867223pt;}
.y2c{bottom:497.547204pt;}
.y60{bottom:502.027197pt;}
.yaa{bottom:502.507196pt;}
.y2b{bottom:514.027178pt;}
.y5f{bottom:518.507170pt;}
.ya9{bottom:519.147169pt;}
.y2a{bottom:530.667151pt;}
.y5e{bottom:535.147144pt;}
.ya8{bottom:535.627143pt;}
.y29{bottom:547.307124pt;}
.y5d{bottom:551.787117pt;}
.ya7{bottom:552.267116pt;}
.y28{bottom:563.787098pt;}
.y5c{bottom:568.267091pt;}
.ya6{bottom:568.747090pt;}
.y27{bottom:580.427071pt;}
.y5b{bottom:584.907064pt;}
.ya5{bottom:585.387063pt;}
.y26{bottom:596.907045pt;}
.y5a{bottom:601.387038pt;}
.ya4{bottom:601.867037pt;}
.y25{bottom:613.547018pt;}
.y59{bottom:618.027011pt;}
.ya3{bottom:618.507010pt;}
.y24{bottom:630.026992pt;}
.y58{bottom:634.506985pt;}
.ya2{bottom:634.986984pt;}
.y23{bottom:646.666965pt;}
.y57{bottom:651.146958pt;}
.ya1{bottom:651.626957pt;}
.y22{bottom:663.146939pt;}
.y56{bottom:667.626932pt;}
.ya0{bottom:668.266931pt;}
.y21{bottom:679.786912pt;}
.y55{bottom:684.266905pt;}
.y9f{bottom:684.746904pt;}
.y20{bottom:696.426886pt;}
.y54{bottom:700.906879pt;}
.y9e{bottom:701.386878pt;}
.y1f{bottom:710.666863pt;}
.y53{bottom:717.386852pt;}
.y9d{bottom:717.866851pt;}
.y1e{bottom:719.306849pt;}
.y52{bottom:734.026826pt;}
.y9c{bottom:734.506825pt;}
.y1d{bottom:737.066821pt;}
.y51{bottom:750.506799pt;}
.y9b{bottom:750.986798pt;}
.y1c{bottom:758.026787pt;}
.yd7{bottom:764.266777pt;}
.y50{bottom:767.146773pt;}
.y9a{bottom:767.626772pt;}
.y1b{bottom:772.106765pt;}
.yd6{bottom:782.026749pt;}
.y4f{bottom:783.626746pt;}
.y99{bottom:784.106745pt;}
.y1a{bottom:785.546743pt;}
.y19{bottom:791.946733pt;}
.y4e{bottom:800.266720pt;}
.y98{bottom:800.746719pt;}
.y18{bottom:808.586706pt;}
.y4d{bottom:816.746693pt;}
.y97{bottom:817.386692pt;}
.y17{bottom:825.066680pt;}
.y4c{bottom:833.386667pt;}
.y96{bottom:833.866666pt;}
.y16{bottom:841.706653pt;}
.y4b{bottom:850.026640pt;}
.y95{bottom:850.506639pt;}
.y15{bottom:855.466631pt;}
.y13{bottom:862.826619pt;}
.y14{bottom:866.186614pt;}
.y4a{bottom:866.506614pt;}
.y94{bottom:866.986613pt;}
.y12{bottom:878.666594pt;}
.y49{bottom:883.146587pt;}
.y93{bottom:883.626586pt;}
.y11{bottom:898.666562pt;}
.y48{bottom:899.626561pt;}
.y92{bottom:900.106560pt;}
.y47{bottom:916.266534pt;}
.y91{bottom:916.746533pt;}
.y10{bottom:924.426521pt;}
.y46{bottom:932.746508pt;}
.y90{bottom:933.226507pt;}
.yf{bottom:948.746482pt;}
.y45{bottom:949.386481pt;}
.y8f{bottom:949.866480pt;}
.y44{bottom:965.866455pt;}
.y8e{bottom:966.186454pt;}
.ye{bottom:967.146453pt;}
.y6{bottom:989.226417pt;}
.y5{bottom:1000.426399pt;}
.y4{bottom:1007.786388pt;}
.y3{bottom:1022.666364pt;}
.yd{bottom:1027.146357pt;}
.y2{bottom:1034.186345pt;}
.yc{bottom:1040.106336pt;}
.ya{bottom:1048.268800pt;}
.y1{bottom:1063.146299pt;}
.hf{height:7.920925pt;}
.h6{height:10.720000pt;}
.h2{height:11.648419pt;}
.he{height:11.664044pt;}
.h5{height:14.076540pt;}
.h11{height:15.375913pt;}
.h12{height:15.396538pt;}
.h14{height:19.595594pt;}
.h13{height:23.328088pt;}
.hd{height:25.194335pt;}
.h7{height:27.562456pt;}
.h3{height:31.259637pt;}
.h1{height:34.945257pt;}
.h8{height:34.992132pt;}
.hb{height:36.260567pt;}
.h15{height:37.194315pt;}
.h4{height:38.672751pt;}
.hc{height:38.724626pt;}
.h9{height:46.656175pt;}
.h10{height:54.514600pt;}
.ha{height:62.052713pt;}
.h0{height:1122.666667pt;}
.w2{width:3.520000pt;}
.w1{width:70.240000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999846pt;}
.x17{left:119.999808pt;}
.x16{left:137.594447pt;}
.x4{left:142.239529pt;}
.x15{left:155.679751pt;}
.x12{left:159.039746pt;}
.xd{left:159.999744pt;}
.x14{left:178.079715pt;}
.x5{left:183.519706pt;}
.x13{left:250.239600pt;}
.xb{left:278.719554pt;}
.xc{left:289.599537pt;}
.xe{left:298.079523pt;}
.x2{left:313.919891pt;}
.x18{left:378.399839pt;}
.x6{left:380.799391pt;}
.xf{left:385.599383pt;}
.x10{left:389.919376pt;}
.x3{left:396.799841pt;}
.x11{left:491.359214pt;}
.x9{left:538.239139pt;}
.xa{left:572.319084pt;}
.x7{left:620.160000pt;}
.x8{left:690.400000pt;}
}




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