
    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_4ea2fe65f224f2d52987511c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_019da6c2850ba9bbc488605f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.869629;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_510deee7ab1cbee4f99347d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.835938;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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.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);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m2{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;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.372303px;}
.ls4{letter-spacing:13.804357px;}
.ls0{letter-spacing:41.381026px;}
.ls3{letter-spacing:59.392056px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,0,10),0 0.015em rgb(0,0,10),0.015em 0 rgb(0,0,10),0 -0.015em  rgb(0,0,10);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,21,136),0 0.015em rgb(0,21,136),0.015em 0 rgb(0,21,136),0 -0.015em  rgb(0,21,136);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,10);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,21,136);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-16.559993px;}
.ws2{word-spacing:-14.970234px;}
.ws1{word-spacing:-13.505755px;}
.ws5{word-spacing:-12.203995px;}
.ws0{word-spacing:-10.251356px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-2.246197px;}
._0{margin-left:-1.025791px;}
._2{width:1.177837px;}
._a{width:2.810660px;}
._3{width:3.904288px;}
._b{width:5.732915px;}
._4{width:7.160702px;}
._f{width:8.424691px;}
._5{width:9.490456px;}
._9{width:11.233679px;}
._8{width:12.443789px;}
._c{width:13.739580px;}
._e{width:16.341229px;}
._d{width:17.613015px;}
._12{width:19.053933px;}
._6{width:20.351281px;}
._7{width:21.516644px;}
._13{width:24.012895px;}
._14{width:25.181333px;}
._15{width:27.347209px;}
._16{width:28.493547px;}
._11{width:32.417450px;}
._10{width:33.462518px;}
._17{width:56.692690px;}
.fc6{color:rgb(192,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,10);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,21,136);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:45.359982px;}
.fs4{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.878920px;}
.y7{bottom:3.058926px;}
.y9{bottom:3.058931px;}
.y2{bottom:4.498930px;}
.yc{bottom:30.900288px;}
.yb{bottom:49.440280px;}
.y7c{bottom:89.760264px;}
.yb9{bottom:91.199964px;}
.y95{bottom:97.859961px;}
.yb8{bottom:111.359955px;}
.y7b{bottom:115.140254px;}
.y94{bottom:118.019953px;}
.y36{bottom:125.219950px;}
.yb7{bottom:131.339947px;}
.y93{bottom:138.179945px;}
.y7a{bottom:140.699944px;}
.y35{bottom:145.379942px;}
.yb6{bottom:151.499939px;}
.y79{bottom:156.899937px;}
.y92{bottom:158.339937px;}
.y34{bottom:165.539934px;}
.y61{bottom:169.139932px;}
.yb5{bottom:171.659931px;}
.y78{bottom:182.639927px;}
.y91{bottom:187.499925px;}
.y60{bottom:189.119924px;}
.yb4{bottom:191.819923px;}
.y33{bottom:194.519922px;}
.y90{bottom:207.659917px;}
.y77{bottom:208.199917px;}
.y5f{bottom:209.279916px;}
.yb3{bottom:211.979915px;}
.y32{bottom:214.679914px;}
.y8f{bottom:227.819909px;}
.y5e{bottom:229.439908px;}
.yb2{bottom:232.139907px;}
.y76{bottom:233.579907px;}
.y31{bottom:234.839906px;}
.y8e{bottom:247.799901px;}
.yb1{bottom:252.299899px;}
.y30{bottom:254.999898px;}
.y5d{bottom:258.599897px;}
.y75{bottom:259.139896px;}
.y8d{bottom:267.959893px;}
.yb0{bottom:272.459891px;}
.y2f{bottom:275.159890px;}
.ycb{bottom:276.599889px;}
.y5c{bottom:278.759888px;}
.y74{bottom:285.599886px;}
.yaf{bottom:292.619883px;}
.y2e{bottom:295.319882px;}
.yca{bottom:296.759881px;}
.y8c{bottom:297.119881px;}
.y5b{bottom:298.919880px;}
.yae{bottom:312.599875px;}
.y73{bottom:314.579874px;}
.y2d{bottom:315.479874px;}
.y8b{bottom:317.279873px;}
.y5a{bottom:319.079872px;}
.yc9{bottom:325.919870px;}
.yad{bottom:332.759867px;}
.y2c{bottom:335.639866px;}
.y8a{bottom:337.439865px;}
.y72{bottom:343.739863px;}
.yc8{bottom:346.079862px;}
.y59{bottom:349.139860px;}
.yac{bottom:352.919859px;}
.y2b{bottom:355.799858px;}
.y89{bottom:366.419853px;}
.y58{bottom:369.299852px;}
.y71{bottom:372.899851px;}
.yab{bottom:373.079851px;}
.yc7{bottom:375.239850px;}
.y2a{bottom:375.959850px;}
.y57{bottom:389.279844px;}
.yaa{bottom:393.239843px;}
.y70{bottom:402.059839px;}
.yc6{bottom:404.399838px;}
.y29{bottom:404.759838px;}
.y56{bottom:409.439836px;}
.ya9{bottom:413.399835px;}
.yc5{bottom:424.559830px;}
.y88{bottom:424.919830px;}
.y6f{bottom:431.219828px;}
.ya8{bottom:433.559827px;}
.y55{bottom:439.499824px;}
.y28{bottom:443.099823px;}
.y87{bottom:445.079822px;}
.yc4{bottom:453.719819px;}
.y54{bottom:459.659816px;}
.y6e{bottom:460.379816px;}
.ya7{bottom:462.719815px;}
.y27{bottom:463.259815px;}
.y86{bottom:465.059814px;}
.yc3{bottom:473.879810px;}
.y53{bottom:479.819808px;}
.ya6{bottom:482.879807px;}
.y6d{bottom:489.539804px;}
.y26{bottom:492.419803px;}
.y85{bottom:493.139803px;}
.y52{bottom:499.979800px;}
.yc2{bottom:503.039799px;}
.ya5{bottom:512.039795px;}
.y25{bottom:512.579795px;}
.y84{bottom:515.279794px;}
.y6c{bottom:518.699793px;}
.y51{bottom:520.139792px;}
.ya4{bottom:532.019787px;}
.y24{bottom:532.739787px;}
.y50{bottom:540.299784px;}
.y6b{bottom:547.859781px;}
.ya3{bottom:552.179779px;}
.y23{bottom:552.899779px;}
.y4f{bottom:560.279776px;}
.ya2{bottom:572.339771px;}
.y22{bottom:573.059771px;}
.y6a{bottom:576.839769px;}
.y4e{bottom:580.439768px;}
.yc1{bottom:581.339767px;}
.ya1{bottom:592.499763px;}
.y21{bottom:593.219763px;}
.y69{bottom:596.999761px;}
.y4d{bottom:600.599760px;}
.yc0{bottom:601.499759px;}
.ya0{bottom:612.659755px;}
.y20{bottom:613.379755px;}
.y68{bottom:617.159753px;}
.y4c{bottom:620.759752px;}
.ybf{bottom:630.659748px;}
.y9f{bottom:632.819747px;}
.y1f{bottom:633.359747px;}
.y67{bottom:637.319745px;}
.y4b{bottom:650.819740px;}
.y9e{bottom:652.979739px;}
.y66{bottom:657.479737px;}
.y1e{bottom:662.339735px;}
.y4a{bottom:670.979732px;}
.ybe{bottom:679.979728px;}
.y9d{bottom:682.139727px;}
.y65{bottom:686.459725px;}
.y49{bottom:691.139724px;}
.y1d{bottom:700.499720px;}
.y9c{bottom:702.299719px;}
.ybd{bottom:709.139716px;}
.y48{bottom:711.299715px;}
.y9b{bottom:722.459711px;}
.y64{bottom:723.899710px;}
.y1c{bottom:729.119708px;}
.y47{bottom:731.459707px;}
.ybc{bottom:738.299705px;}
.y63{bottom:740.099704px;}
.y9a{bottom:742.439703px;}
.y1b{bottom:757.019697px;}
.ybb{bottom:758.459697px;}
.y46{bottom:760.259696px;}
.y62{bottom:762.239695px;}
.y99{bottom:771.419691px;}
.yba{bottom:778.439689px;}
.y1a{bottom:786.359685px;}
.y83{bottom:787.439685px;}
.y45{bottom:798.599681px;}
.y19{bottom:806.519677px;}
.y82{bottom:807.599677px;}
.y98{bottom:809.759676px;}
.y44{bottom:818.759672px;}
.y18{bottom:826.679669px;}
.y81{bottom:827.759669px;}
.y97{bottom:829.919668px;}
.y43{bottom:838.919664px;}
.y17{bottom:846.659661px;}
.y80{bottom:847.919661px;}
.y42{bottom:859.079656px;}
.y16{bottom:866.819653px;}
.y7f{bottom:868.079653px;}
.y96{bottom:879.239648px;}
.y15{bottom:886.979645px;}
.y41{bottom:888.239645px;}
.y14{bottom:907.139637px;}
.y40{bottom:908.399637px;}
.y3f{bottom:928.559629px;}
.y13{bottom:936.299625px;}
.y3e{bottom:948.719621px;}
.y12{bottom:964.739614px;}
.y3d{bottom:968.879612px;}
.y3c{bottom:988.859604px;}
.y11{bottom:992.099603px;}
.y3b{bottom:1009.019596px;}
.y10{bottom:1010.459596px;}
.y3a{bottom:1029.179588px;}
.y7e{bottom:1038.179585px;}
.yf{bottom:1038.359585px;}
.y39{bottom:1049.339580px;}
.y7d{bottom:1058.339577px;}
.ye{bottom:1068.419573px;}
.y38{bottom:1078.499569px;}
.yd{bottom:1093.979562px;}
.y37{bottom:1098.659561px;}
.ya{bottom:1153.199539px;}
.y8{bottom:1168.680600px;}
.y1{bottom:1170.660600px;}
.y6{bottom:1182.360600px;}
.y5{bottom:1185.419526px;}
.y3{bottom:1196.220600px;}
.h3{height:13.680000px;}
.h5{height:13.860000px;}
.h1{height:20.340000px;}
.h4{height:37.408696px;}
.hc{height:44.534162px;}
.hd{height:44.535362px;}
.h7{height:49.284472px;}
.h2{height:54.628572px;}
.h8{height:55.348572px;}
.hb{height:57.040290px;}
.ha{height:69.086222px;}
.h6{height:69.473293px;}
.h9{height:69.806222px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w3{width:3.420000px;}
.w5{width:11.160000px;}
.w4{width:152.100000px;}
.w6{width:163.620000px;}
.w2{width:352.980000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:84.959966px;}
.xa{left:91.079964px;}
.xc{left:111.960299px;}
.xd{left:138.960363px;}
.x1{left:253.080000px;}
.x2{left:265.500000px;}
.xb{left:341.099864px;}
.x5{left:595.439762px;}
.xf{left:599.394944px;}
.x7{left:610.380000px;}
.x3{left:618.480000px;}
.x4{left:621.900000px;}
.xe{left:721.979711px;}
.x6{left:762.840000px;}
.x9{left:802.079679px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.330936pt;}
.ls4{letter-spacing:12.270539pt;}
.ls0{letter-spacing:36.783134pt;}
.ls3{letter-spacing:52.792939pt;}
.ws4{word-spacing:-14.719994pt;}
.ws2{word-spacing:-13.306875pt;}
.ws1{word-spacing:-12.005115pt;}
.ws5{word-spacing:-10.847996pt;}
.ws0{word-spacing:-9.112316pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.996620pt;}
._0{margin-left:-0.911814pt;}
._2{width:1.046966pt;}
._a{width:2.498364pt;}
._3{width:3.470478pt;}
._b{width:5.095924pt;}
._4{width:6.365068pt;}
._f{width:7.488614pt;}
._5{width:8.435961pt;}
._9{width:9.985493pt;}
._8{width:11.061146pt;}
._c{width:12.212960pt;}
._e{width:14.525537pt;}
._d{width:15.656013pt;}
._12{width:16.936829pt;}
._6{width:18.090027pt;}
._7{width:19.125906pt;}
._13{width:21.344796pt;}
._14{width:22.383407pt;}
._15{width:24.308630pt;}
._16{width:25.327598pt;}
._11{width:28.815511pt;}
._10{width:29.744460pt;}
._17{width:50.393502pt;}
.fs1{font-size:40.319984pt;}
.fs4{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.559040pt;}
.y7{bottom:2.719045pt;}
.y9{bottom:2.719050pt;}
.y2{bottom:3.999049pt;}
.yc{bottom:27.466922pt;}
.yb{bottom:43.946916pt;}
.y7c{bottom:79.786901pt;}
.yb9{bottom:81.066634pt;}
.y95{bottom:86.986632pt;}
.yb8{bottom:98.986627pt;}
.y7b{bottom:102.346892pt;}
.y94{bottom:104.906625pt;}
.y36{bottom:111.306622pt;}
.yb7{bottom:116.746620pt;}
.y93{bottom:122.826618pt;}
.y7a{bottom:125.066617pt;}
.y35{bottom:129.226615pt;}
.yb6{bottom:134.666613pt;}
.y79{bottom:139.466611pt;}
.y92{bottom:140.746610pt;}
.y34{bottom:147.146608pt;}
.y61{bottom:150.346607pt;}
.yb5{bottom:152.586606pt;}
.y78{bottom:162.346602pt;}
.y91{bottom:166.666600pt;}
.y60{bottom:168.106599pt;}
.yb4{bottom:170.506598pt;}
.y33{bottom:172.906598pt;}
.y90{bottom:184.586593pt;}
.y77{bottom:185.066593pt;}
.y5f{bottom:186.026592pt;}
.yb3{bottom:188.426591pt;}
.y32{bottom:190.826590pt;}
.y8f{bottom:202.506586pt;}
.y5e{bottom:203.946585pt;}
.yb2{bottom:206.346584pt;}
.y76{bottom:207.626584pt;}
.y31{bottom:208.746583pt;}
.y8e{bottom:220.266579pt;}
.yb1{bottom:224.266577pt;}
.y30{bottom:226.666576pt;}
.y5d{bottom:229.866575pt;}
.y75{bottom:230.346575pt;}
.y8d{bottom:238.186571pt;}
.yb0{bottom:242.186570pt;}
.y2f{bottom:244.586569pt;}
.ycb{bottom:245.866568pt;}
.y5c{bottom:247.786568pt;}
.y74{bottom:253.866565pt;}
.yaf{bottom:260.106563pt;}
.y2e{bottom:262.506562pt;}
.yca{bottom:263.786561pt;}
.y8c{bottom:264.106561pt;}
.y5b{bottom:265.706560pt;}
.yae{bottom:277.866556pt;}
.y73{bottom:279.626555pt;}
.y2d{bottom:280.426554pt;}
.y8b{bottom:282.026554pt;}
.y5a{bottom:283.626553pt;}
.yc9{bottom:289.706551pt;}
.yad{bottom:295.786548pt;}
.y2c{bottom:298.346547pt;}
.y8a{bottom:299.946547pt;}
.y72{bottom:305.546544pt;}
.yc8{bottom:307.626544pt;}
.y59{bottom:310.346543pt;}
.yac{bottom:313.706541pt;}
.y2b{bottom:316.266540pt;}
.y89{bottom:325.706536pt;}
.y58{bottom:328.266535pt;}
.y71{bottom:331.466534pt;}
.yab{bottom:331.626534pt;}
.yc7{bottom:333.546533pt;}
.y2a{bottom:334.186533pt;}
.y57{bottom:346.026528pt;}
.yaa{bottom:349.546527pt;}
.y70{bottom:357.386524pt;}
.yc6{bottom:359.466523pt;}
.y29{bottom:359.786523pt;}
.y56{bottom:363.946521pt;}
.ya9{bottom:367.466520pt;}
.yc5{bottom:377.386516pt;}
.y88{bottom:377.706516pt;}
.y6f{bottom:383.306513pt;}
.ya8{bottom:385.386513pt;}
.y55{bottom:390.666510pt;}
.y28{bottom:393.866509pt;}
.y87{bottom:395.626508pt;}
.yc4{bottom:403.306505pt;}
.y54{bottom:408.586503pt;}
.y6e{bottom:409.226503pt;}
.ya7{bottom:411.306502pt;}
.y27{bottom:411.786502pt;}
.y86{bottom:413.386501pt;}
.yc3{bottom:421.226498pt;}
.y53{bottom:426.506496pt;}
.ya6{bottom:429.226495pt;}
.y6d{bottom:435.146493pt;}
.y26{bottom:437.706492pt;}
.y85{bottom:438.346491pt;}
.y52{bottom:444.426489pt;}
.yc2{bottom:447.146488pt;}
.ya5{bottom:455.146485pt;}
.y25{bottom:455.626484pt;}
.y84{bottom:458.026483pt;}
.y6c{bottom:461.066482pt;}
.y51{bottom:462.346482pt;}
.ya4{bottom:472.906478pt;}
.y24{bottom:473.546477pt;}
.y50{bottom:480.266475pt;}
.y6b{bottom:486.986472pt;}
.ya3{bottom:490.826470pt;}
.y23{bottom:491.466470pt;}
.y4f{bottom:498.026467pt;}
.ya2{bottom:508.746463pt;}
.y22{bottom:509.386463pt;}
.y6a{bottom:512.746462pt;}
.y4e{bottom:515.946460pt;}
.yc1{bottom:516.746460pt;}
.ya1{bottom:526.666456pt;}
.y21{bottom:527.306456pt;}
.y69{bottom:530.666454pt;}
.y4d{bottom:533.866453pt;}
.yc0{bottom:534.666453pt;}
.ya0{bottom:544.586449pt;}
.y20{bottom:545.226449pt;}
.y68{bottom:548.586447pt;}
.y4c{bottom:551.786446pt;}
.ybf{bottom:560.586442pt;}
.y9f{bottom:562.506442pt;}
.y1f{bottom:562.986441pt;}
.y67{bottom:566.506440pt;}
.y4b{bottom:578.506435pt;}
.y9e{bottom:580.426434pt;}
.y66{bottom:584.426433pt;}
.y1e{bottom:588.746431pt;}
.y4a{bottom:596.426428pt;}
.ybe{bottom:604.426425pt;}
.y9d{bottom:606.346424pt;}
.y65{bottom:610.186423pt;}
.y49{bottom:614.346421pt;}
.y1d{bottom:622.666418pt;}
.y9c{bottom:624.266417pt;}
.ybd{bottom:630.346415pt;}
.y48{bottom:632.266414pt;}
.y9b{bottom:642.186410pt;}
.y64{bottom:643.466409pt;}
.y1c{bottom:648.106407pt;}
.y47{bottom:650.186407pt;}
.ybc{bottom:656.266404pt;}
.y63{bottom:657.866404pt;}
.y9a{bottom:659.946403pt;}
.y1b{bottom:672.906398pt;}
.ybb{bottom:674.186397pt;}
.y46{bottom:675.786396pt;}
.y62{bottom:677.546396pt;}
.y99{bottom:685.706392pt;}
.yba{bottom:691.946390pt;}
.y1a{bottom:698.986387pt;}
.y83{bottom:699.946387pt;}
.y45{bottom:709.866383pt;}
.y19{bottom:716.906380pt;}
.y82{bottom:717.866380pt;}
.y98{bottom:719.786379pt;}
.y44{bottom:727.786376pt;}
.y18{bottom:734.826373pt;}
.y81{bottom:735.786372pt;}
.y97{bottom:737.706372pt;}
.y43{bottom:745.706368pt;}
.y17{bottom:752.586366pt;}
.y80{bottom:753.706365pt;}
.y42{bottom:763.626361pt;}
.y16{bottom:770.506358pt;}
.y7f{bottom:771.626358pt;}
.y96{bottom:781.546354pt;}
.y15{bottom:788.426351pt;}
.y41{bottom:789.546351pt;}
.y14{bottom:806.346344pt;}
.y40{bottom:807.466344pt;}
.y3f{bottom:825.386337pt;}
.y13{bottom:832.266334pt;}
.y3e{bottom:843.306329pt;}
.y12{bottom:857.546324pt;}
.y3d{bottom:861.226322pt;}
.y3c{bottom:878.986315pt;}
.y11{bottom:881.866314pt;}
.y3b{bottom:896.906308pt;}
.y10{bottom:898.186307pt;}
.y3a{bottom:914.826301pt;}
.y7e{bottom:922.826298pt;}
.yf{bottom:922.986297pt;}
.y39{bottom:932.746294pt;}
.y7d{bottom:940.746290pt;}
.ye{bottom:949.706287pt;}
.y38{bottom:958.666283pt;}
.yd{bottom:972.426278pt;}
.y37{bottom:976.586276pt;}
.ya{bottom:1025.066257pt;}
.y8{bottom:1038.827200pt;}
.y1{bottom:1040.587200pt;}
.y6{bottom:1050.987200pt;}
.y5{bottom:1053.706245pt;}
.y3{bottom:1063.307200pt;}
.h3{height:12.160000pt;}
.h5{height:12.320000pt;}
.h1{height:18.080000pt;}
.h4{height:33.252174pt;}
.hc{height:39.585922pt;}
.hd{height:39.586988pt;}
.h7{height:43.808420pt;}
.h2{height:48.558731pt;}
.h8{height:49.198730pt;}
.hb{height:50.702480pt;}
.ha{height:61.409975pt;}
.h6{height:61.754038pt;}
.h9{height:62.049975pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w3{width:3.040000pt;}
.w5{width:9.920000pt;}
.w4{width:135.200000pt;}
.w6{width:145.440000pt;}
.w2{width:313.760000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:75.519970pt;}
.xa{left:80.959968pt;}
.xc{left:99.520266pt;}
.xd{left:123.520323pt;}
.x1{left:224.960000pt;}
.x2{left:236.000000pt;}
.xb{left:303.199879pt;}
.x5{left:529.279788pt;}
.xf{left:532.795506pt;}
.x7{left:542.560000pt;}
.x3{left:549.760000pt;}
.x4{left:552.800000pt;}
.xe{left:641.759743pt;}
.x6{left:678.080000pt;}
.x9{left:712.959715pt;}
}




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