
    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_7e4e0a7a3148b1cc1a5683f0.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2697ac23284e81969a99f05b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_f2491f48a37748c5edb14fb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727000;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_82fdc760045b2902124417cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_b9062752f6660dfb84b697f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_a5a2c3f6ad0ad0b402a2219e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_d15f6dc047afb1f04f500d56.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_6d8fc12f7f5d5bde7d963652.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_272e6a8e5f8cc8cb3dffe6fb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.990000;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_4cd8f7f5de28b845dd3e2ae1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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;}
.ls0{letter-spacing:0.000000px;}
.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:-33.000001px;}
.ws1{word-spacing:-27.000000px;}
.ws0{word-spacing:-18.336914px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-7.760822px;}
._3{margin-left:-5.565577px;}
._4{margin-left:-4.007806px;}
._0{margin-left:-2.970386px;}
._1{margin-left:-1.220994px;}
._5{width:197.663086px;}
._6{width:697.202912px;}
.fc6{color:rgb(17,85,204);}
.fc2{color:rgb(7,55,99);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(14,14,14);}
.fc4{color:rgb(229,229,229);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(102,102,102);}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.999999px;}
.fs5{font-size:63.000000px;}
.fs2{font-size:66.000002px;}
.fs4{font-size:78.000003px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:10.735106px;}
.yad{bottom:10.735108px;}
.yb1{bottom:10.735111px;}
.y27{bottom:10.735826px;}
.y5d{bottom:10.735828px;}
.y19{bottom:10.735834px;}
.y14{bottom:10.735837px;}
.y1b{bottom:10.735840px;}
.y22{bottom:10.735841px;}
.y1f{bottom:10.735843px;}
.y7d{bottom:10.735849px;}
.y79{bottom:10.735852px;}
.ybe{bottom:10.736561px;}
.yab{bottom:10.736566px;}
.ya6{bottom:10.736569px;}
.yb5{bottom:10.736572px;}
.yb3{bottom:10.736576px;}
.y2e{bottom:11.053710px;}
.y46{bottom:11.371583px;}
.yb{bottom:11.371584px;}
.yc3{bottom:11.372315px;}
.y88{bottom:26.259508px;}
.yaa{bottom:26.259511px;}
.y50{bottom:26.259514px;}
.y13{bottom:26.259517px;}
.y21{bottom:26.259521px;}
.y1e{bottom:26.259523px;}
.yb0{bottom:26.259526px;}
.y7c{bottom:26.259529px;}
.y78{bottom:26.259532px;}
.y18{bottom:26.259574px;}
.yc8{bottom:29.036866px;}
.y35{bottom:29.037140px;}
.y2{bottom:29.037163px;}
.y3e{bottom:29.037232px;}
.y6d{bottom:29.037598px;}
.ya{bottom:30.344994px;}
.yaf{bottom:41.782471px;}
.y4f{bottom:41.783194px;}
.y12{bottom:41.783197px;}
.y1d{bottom:41.783203px;}
.y7b{bottom:41.783209px;}
.y77{bottom:41.783212px;}
.y17{bottom:41.783254px;}
.ya9{bottom:41.783926px;}
.ya5{bottom:41.783929px;}
.ybd{bottom:41.783936px;}
.ya4{bottom:57.306874px;}
.y4c{bottom:57.306877px;}
.y76{bottom:57.306892px;}
.y11{bottom:57.306937px;}
.y4e{bottom:57.624756px;}
.y16{bottom:57.624801px;}
.ya8{bottom:57.625488px;}
.y4b{bottom:72.830557px;}
.y75{bottom:72.830572px;}
.y10{bottom:72.830617px;}
.ya3{bottom:72.831289px;}
.yce{bottom:73.619378px;}
.y6b{bottom:73.620113px;}
.y33{bottom:73.620398px;}
.y3c{bottom:73.620488px;}
.y4a{bottom:88.672119px;}
.yf{bottom:88.672164px;}
.ya2{bottom:88.672851px;}
.y92{bottom:118.451666px;}
.yc6{bottom:140.033204px;}
.y91{bottom:140.033939px;}
.y90{bottom:173.821019px;}
.y32{bottom:177.589049px;}
.y31{bottom:211.375859px;}
.y62{bottom:226.562249px;}
.y8f{bottom:226.562624px;}
.y8e{bottom:260.348969px;}
.y61{bottom:260.349344px;}
.y30{bottom:264.117734px;}
.y2d{bottom:280.719551px;}
.y2f{bottom:282.444404px;}
.yc1{bottom:313.090574px;}
.y8d{bottom:313.090949px;}
.y60{bottom:313.091309px;}
.y2c{bottom:314.843081px;}
.ybf{bottom:329.692391px;}
.y8b{bottom:329.692750px;}
.y5e{bottom:329.693110px;}
.y8c{bottom:331.417604px;}
.y5f{bottom:331.417963px;}
.yc0{bottom:331.417976px;}
.y2b{bottom:345.890444px;}
.ybc{bottom:363.815922px;}
.y8a{bottom:363.816280px;}
.y5c{bottom:363.816656px;}
.y2a{bottom:378.289120px;}
.ybb{bottom:394.863287px;}
.y89{bottom:394.863644px;}
.y5b{bottom:394.864019px;}
.y29{bottom:409.336483px;}
.y87{bottom:427.262335px;}
.yba{bottom:427.262692px;}
.y5a{bottom:427.262695px;}
.y28{bottom:441.735163px;}
.y86{bottom:458.309698px;}
.yb9{bottom:458.310055px;}
.y59{bottom:458.310058px;}
.y26{bottom:474.133857px;}
.y25{bottom:489.657538px;}
.yb8{bottom:490.708007px;}
.y85{bottom:490.708378px;}
.y58{bottom:490.708739px;}
.y24{bottom:522.056217px;}
.y84{bottom:523.107057px;}
.y57{bottom:523.107417px;}
.y23{bottom:537.579898px;}
.yb7{bottom:538.630367px;}
.y83{bottom:538.630739px;}
.y56{bottom:538.631098px;}
.y1c{bottom:569.978576px;}
.y82{bottom:571.029417px;}
.y55{bottom:571.029792px;}
.y20{bottom:585.502257px;}
.yb4{bottom:586.552742px;}
.y81{bottom:586.553098px;}
.y54{bottom:586.553473px;}
.y1a{bottom:601.025939px;}
.y7f{bottom:618.951776px;}
.yae{bottom:618.952148px;}
.y52{bottom:618.952150px;}
.ye{bottom:633.424621px;}
.yb2{bottom:634.475097px;}
.y80{bottom:634.475457px;}
.y53{bottom:634.475832px;}
.y7e{bottom:649.999139px;}
.yac{bottom:649.999511px;}
.y51{bottom:649.999513px;}
.y15{bottom:664.471984px;}
.ya1{bottom:682.397465px;}
.y74{bottom:682.397821px;}
.y49{bottom:682.398196px;}
.ya7{bottom:713.444827px;}
.y7a{bottom:713.445185px;}
.y4d{bottom:713.445560px;}
.ya0{bottom:744.073953px;}
.yd{bottom:765.161918px;}
.yc{bottom:797.567115px;}
.y9f{bottom:802.836179px;}
.yc5{bottom:814.134518px;}
.y73{bottom:814.135253px;}
.y48{bottom:814.135433px;}
.y9e{bottom:839.418464px;}
.yc4{bottom:846.539760px;}
.y47{bottom:846.540495px;}
.y9{bottom:851.349605px;}
.y9d{bottom:876.000734px;}
.yc2{bottom:900.322269px;}
.y45{bottom:900.323001px;}
.y6a{bottom:906.565799px;}
.y9c{bottom:912.583004px;}
.y8{bottom:925.913748px;}
.y69{bottom:941.784648px;}
.y9b{bottom:949.165289px;}
.y44{bottom:955.913793px;}
.y7{bottom:984.676666px;}
.y9a{bottom:985.747560px;}
.y68{bottom:1000.547607px;}
.y6{bottom:1006.258896px;}
.y99{bottom:1007.329837px;}
.y3b{bottom:1013.302368px;}
.y43{bottom:1014.676757px;}
.y72{bottom:1014.676762px;}
.y98{bottom:1028.912109px;}
.y42{bottom:1036.258850px;}
.y71{bottom:1036.259034px;}
.y67{bottom:1040.129883px;}
.y5{bottom:1042.841126px;}
.y3a{bottom:1049.884644px;}
.y97{bottom:1050.494385px;}
.y66{bottom:1061.712159px;}
.y39{bottom:1071.466916px;}
.y96{bottom:1072.076661px;}
.ycb{bottom:1072.840577px;}
.y41{bottom:1072.841126px;}
.y70{bottom:1072.841309px;}
.y4{bottom:1079.423345px;}
.y65{bottom:1083.294436px;}
.y38{bottom:1093.049103px;}
.y64{bottom:1104.876709px;}
.y95{bottom:1108.658934px;}
.yca{bottom:1109.422851px;}
.y40{bottom:1109.423402px;}
.y6f{bottom:1109.423585px;}
.y37{bottom:1114.580201px;}
.y3{bottom:1114.642495px;}
.ycd{bottom:1116.648193px;}
.y94{bottom:1130.240482px;}
.y6e{bottom:1144.642062px;}
.y3f{bottom:1144.642428px;}
.yc9{bottom:1144.642794px;}
.y63{bottom:1147.663427px;}
.y36{bottom:1147.663519px;}
.y93{bottom:1151.822754px;}
.ycc{bottom:1151.823486px;}
.y6c{bottom:1167.299561px;}
.y3d{bottom:1167.299927px;}
.y1{bottom:1167.299996px;}
.y34{bottom:1167.300018px;}
.yc7{bottom:1167.300293px;}
.h1a{height:31.272949px;}
.ha{height:31.273681px;}
.h1c{height:31.274413px;}
.hd{height:32.998535px;}
.h14{height:34.723389px;}
.h1e{height:34.724121px;}
.h2{height:39.313477px;}
.h8{height:39.339844px;}
.h7{height:43.681640px;}
.he{height:43.710936px;}
.h12{height:45.896484px;}
.hc{height:46.797363px;}
.h4{height:48.082032px;}
.h5{height:53.696800px;}
.hf{height:55.068002px;}
.h1b{height:62.320312px;}
.hb{height:62.321044px;}
.h1d{height:62.321778px;}
.h3{height:63.540000px;}
.h16{height:79.569580px;}
.h9{height:79.569626px;}
.h19{height:79.570312px;}
.h1f{height:95.699707px;}
.h11{height:95.699982px;}
.h1{height:95.700004px;}
.h13{height:95.700073px;}
.h17{height:95.700439px;}
.h10{height:107.625000px;}
.h15{height:110.616944px;}
.h6{height:110.616989px;}
.h18{height:110.617675px;}
.h0{height:1263.000000px;}
.w7{width:65.250000px;}
.w5{width:69.750000px;}
.w9{width:70.875000px;}
.w8{width:288.000000px;}
.w6{width:298.125000px;}
.wa{width:299.250000px;}
.w4{width:354.375000px;}
.w3{width:369.000000px;}
.w2{width:686.250000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3{left:6.750000px;}
.x9{left:7.875000px;}
.x8{left:83.250000px;}
.x4{left:84.375000px;}
.x2{left:101.250000px;}
.x1{left:108.000000px;}
.xa{left:154.125000px;}
.x6{left:155.250000px;}
.xc{left:282.375000px;}
.xd{left:438.948641px;}
.xb{left:442.702676px;}
.x5{left:454.500000px;}
.x7{left:520.875000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-29.333334pt;}
.ws1{word-spacing:-24.000000pt;}
.ws0{word-spacing:-16.299479pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-6.898508pt;}
._3{margin-left:-4.947179pt;}
._4{margin-left:-3.562495pt;}
._0{margin-left:-2.640343pt;}
._1{margin-left:-1.085328pt;}
._5{width:175.700521pt;}
._6{width:619.735922pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333332pt;}
.fs5{font-size:56.000000pt;}
.fs2{font-size:58.666668pt;}
.fs4{font-size:69.333336pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:9.542317pt;}
.yad{bottom:9.542318pt;}
.yb1{bottom:9.542321pt;}
.y27{bottom:9.542957pt;}
.y5d{bottom:9.542958pt;}
.y19{bottom:9.542963pt;}
.y14{bottom:9.542966pt;}
.y1b{bottom:9.542969pt;}
.y22{bottom:9.542970pt;}
.y1f{bottom:9.542971pt;}
.y7d{bottom:9.542977pt;}
.y79{bottom:9.542979pt;}
.ybe{bottom:9.543610pt;}
.yab{bottom:9.543614pt;}
.ya6{bottom:9.543617pt;}
.yb5{bottom:9.543619pt;}
.yb3{bottom:9.543623pt;}
.y2e{bottom:9.825520pt;}
.y46{bottom:10.108073pt;}
.yb{bottom:10.108075pt;}
.yc3{bottom:10.108724pt;}
.y88{bottom:23.341785pt;}
.yaa{bottom:23.341787pt;}
.y50{bottom:23.341790pt;}
.y13{bottom:23.341793pt;}
.y21{bottom:23.341797pt;}
.y1e{bottom:23.341798pt;}
.yb0{bottom:23.341801pt;}
.y7c{bottom:23.341803pt;}
.y78{bottom:23.341806pt;}
.y18{bottom:23.341843pt;}
.yc8{bottom:25.810547pt;}
.y35{bottom:25.810791pt;}
.y2{bottom:25.810811pt;}
.y3e{bottom:25.810873pt;}
.y6d{bottom:25.811198pt;}
.ya{bottom:26.973328pt;}
.yaf{bottom:37.139974pt;}
.y4f{bottom:37.140617pt;}
.y12{bottom:37.140619pt;}
.y1d{bottom:37.140625pt;}
.y7b{bottom:37.140630pt;}
.y77{bottom:37.140633pt;}
.y17{bottom:37.140670pt;}
.ya9{bottom:37.141267pt;}
.ya5{bottom:37.141270pt;}
.ybd{bottom:37.141277pt;}
.ya4{bottom:50.939443pt;}
.y4c{bottom:50.939446pt;}
.y76{bottom:50.939459pt;}
.y11{bottom:50.939499pt;}
.y4e{bottom:51.222005pt;}
.y16{bottom:51.222045pt;}
.ya8{bottom:51.222656pt;}
.y4b{bottom:64.738273pt;}
.y75{bottom:64.738286pt;}
.y10{bottom:64.738326pt;}
.ya3{bottom:64.738923pt;}
.yce{bottom:65.439447pt;}
.y6b{bottom:65.440101pt;}
.y33{bottom:65.440354pt;}
.y3c{bottom:65.440434pt;}
.y4a{bottom:78.819661pt;}
.yf{bottom:78.819701pt;}
.ya2{bottom:78.820312pt;}
.y92{bottom:105.290370pt;}
.yc6{bottom:124.473959pt;}
.y91{bottom:124.474612pt;}
.y90{bottom:154.507573pt;}
.y32{bottom:157.856932pt;}
.y31{bottom:187.889653pt;}
.y62{bottom:201.388665pt;}
.y8f{bottom:201.388999pt;}
.y8e{bottom:231.421306pt;}
.y61{bottom:231.421639pt;}
.y30{bottom:234.771319pt;}
.y2d{bottom:249.528489pt;}
.y2f{bottom:251.061692pt;}
.yc1{bottom:278.302732pt;}
.y8d{bottom:278.303065pt;}
.y60{bottom:278.303385pt;}
.y2c{bottom:279.860516pt;}
.ybf{bottom:293.059903pt;}
.y8b{bottom:293.060223pt;}
.y5e{bottom:293.060543pt;}
.y8c{bottom:294.593425pt;}
.y5f{bottom:294.593745pt;}
.yc0{bottom:294.593756pt;}
.y2b{bottom:307.458172pt;}
.ybc{bottom:323.391931pt;}
.y8a{bottom:323.392249pt;}
.y5c{bottom:323.392583pt;}
.y2a{bottom:336.256996pt;}
.ybb{bottom:350.989588pt;}
.y89{bottom:350.989905pt;}
.y5b{bottom:350.990239pt;}
.y29{bottom:363.854652pt;}
.y87{bottom:379.788743pt;}
.yba{bottom:379.789060pt;}
.y5a{bottom:379.789063pt;}
.y28{bottom:392.653479pt;}
.y86{bottom:407.386399pt;}
.yb9{bottom:407.386716pt;}
.y59{bottom:407.386719pt;}
.y26{bottom:421.452317pt;}
.y25{bottom:435.251145pt;}
.yb8{bottom:436.184895pt;}
.y85{bottom:436.185225pt;}
.y58{bottom:436.185545pt;}
.y24{bottom:464.049971pt;}
.y84{bottom:464.984051pt;}
.y57{bottom:464.984371pt;}
.y23{bottom:477.848799pt;}
.yb7{bottom:478.782548pt;}
.y83{bottom:478.782879pt;}
.y56{bottom:478.783199pt;}
.y1c{bottom:506.647623pt;}
.y82{bottom:507.581704pt;}
.y55{bottom:507.582037pt;}
.y20{bottom:520.446451pt;}
.yb4{bottom:521.380215pt;}
.y81{bottom:521.380532pt;}
.y54{bottom:521.380865pt;}
.y1a{bottom:534.245279pt;}
.y7f{bottom:550.179356pt;}
.yae{bottom:550.179687pt;}
.y52{bottom:550.179689pt;}
.ye{bottom:563.044108pt;}
.yb2{bottom:563.977864pt;}
.y80{bottom:563.978184pt;}
.y53{bottom:563.978517pt;}
.y7e{bottom:577.777012pt;}
.yac{bottom:577.777343pt;}
.y51{bottom:577.777345pt;}
.y15{bottom:590.641764pt;}
.ya1{bottom:606.575524pt;}
.y74{bottom:606.575841pt;}
.y49{bottom:606.576175pt;}
.ya7{bottom:634.173180pt;}
.y7a{bottom:634.173497pt;}
.y4d{bottom:634.173831pt;}
.ya0{bottom:661.399069pt;}
.yd{bottom:680.143927pt;}
.yc{bottom:708.948546pt;}
.y9f{bottom:713.632159pt;}
.yc5{bottom:723.675127pt;}
.y73{bottom:723.675781pt;}
.y48{bottom:723.675941pt;}
.y9e{bottom:746.149745pt;}
.yc4{bottom:752.479786pt;}
.y47{bottom:752.480440pt;}
.y9{bottom:756.755204pt;}
.y9d{bottom:778.667319pt;}
.yc2{bottom:800.286461pt;}
.y45{bottom:800.287112pt;}
.y6a{bottom:805.836265pt;}
.y9c{bottom:811.184892pt;}
.y8{bottom:823.034442pt;}
.y69{bottom:837.141909pt;}
.y9b{bottom:843.702479pt;}
.y44{bottom:849.701149pt;}
.y7{bottom:875.268148pt;}
.y9a{bottom:876.220053pt;}
.y68{bottom:889.375651pt;}
.y6{bottom:894.452352pt;}
.y99{bottom:895.404299pt;}
.y3b{bottom:900.713216pt;}
.y43{bottom:901.934895pt;}
.y72{bottom:901.934899pt;}
.y98{bottom:914.588541pt;}
.y42{bottom:921.118977pt;}
.y71{bottom:921.119141pt;}
.y67{bottom:924.559896pt;}
.y5{bottom:926.969889pt;}
.y3a{bottom:933.230795pt;}
.y97{bottom:933.772787pt;}
.y66{bottom:943.744142pt;}
.y39{bottom:952.415037pt;}
.y96{bottom:952.957032pt;}
.ycb{bottom:953.636068pt;}
.y41{bottom:953.636556pt;}
.y70{bottom:953.636719pt;}
.y4{bottom:959.487417pt;}
.y65{bottom:962.928388pt;}
.y38{bottom:971.599203pt;}
.y64{bottom:982.112630pt;}
.y95{bottom:985.474608pt;}
.yca{bottom:986.153645pt;}
.y40{bottom:986.154135pt;}
.y6f{bottom:986.154297pt;}
.y37{bottom:990.737956pt;}
.y3{bottom:990.793329pt;}
.ycd{bottom:992.576172pt;}
.y94{bottom:1004.658206pt;}
.y6e{bottom:1017.459610pt;}
.y3f{bottom:1017.459936pt;}
.yc9{bottom:1017.460261pt;}
.y63{bottom:1020.145269pt;}
.y36{bottom:1020.145350pt;}
.y93{bottom:1023.842448pt;}
.ycc{bottom:1023.843099pt;}
.y6c{bottom:1037.599609pt;}
.y3d{bottom:1037.599935pt;}
.y1{bottom:1037.599996pt;}
.y34{bottom:1037.600016pt;}
.yc7{bottom:1037.600260pt;}
.h1a{height:27.798177pt;}
.ha{height:27.798828pt;}
.h1c{height:27.799479pt;}
.hd{height:29.332031pt;}
.h14{height:30.865235pt;}
.h1e{height:30.865885pt;}
.h2{height:34.945313pt;}
.h8{height:34.968750pt;}
.h7{height:38.828124pt;}
.he{height:38.854166pt;}
.h12{height:40.796875pt;}
.hc{height:41.597656pt;}
.h4{height:42.739584pt;}
.h5{height:47.730489pt;}
.hf{height:48.949335pt;}
.h1b{height:55.395833pt;}
.hb{height:55.396484pt;}
.h1d{height:55.397136pt;}
.h3{height:56.480000pt;}
.h16{height:70.728516pt;}
.h9{height:70.728556pt;}
.h19{height:70.729167pt;}
.h1f{height:85.066407pt;}
.h11{height:85.066651pt;}
.h1{height:85.066671pt;}
.h13{height:85.066732pt;}
.h17{height:85.067057pt;}
.h10{height:95.666667pt;}
.h15{height:98.326172pt;}
.h6{height:98.326212pt;}
.h18{height:98.326823pt;}
.h0{height:1122.666667pt;}
.w7{width:58.000000pt;}
.w5{width:62.000000pt;}
.w9{width:63.000000pt;}
.w8{width:256.000000pt;}
.w6{width:265.000000pt;}
.wa{width:266.000000pt;}
.w4{width:315.000000pt;}
.w3{width:328.000000pt;}
.w2{width:610.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3{left:6.000000pt;}
.x9{left:7.000000pt;}
.x8{left:74.000000pt;}
.x4{left:75.000000pt;}
.x2{left:90.000000pt;}
.x1{left:96.000000pt;}
.xa{left:137.000000pt;}
.x6{left:138.000000pt;}
.xc{left:251.000000pt;}
.xd{left:390.176570pt;}
.xb{left:393.513490pt;}
.x5{left:404.000000pt;}
.x7{left:463.000000pt;}
}




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