
    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_22edc75a06069818594a45b3.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_452c354b7a476ac06c603c75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_75df85c973afaf4ba7ffeae3.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_0cce197ef2f53ac457c5b1a9.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_810c8a9cd871748419feb18e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_abf54865685daad5eb0deb9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.329590;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_df529fac3a01f2650193c210.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.848633;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);}
.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);}
.m8{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);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,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);}
.m6{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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.187842px;}
.ls3{letter-spacing:0.378600px;}
.ls1{letter-spacing:46.065102px;}
.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:-39.322064px;}
.ws1{word-spacing:-14.939994px;}
.ws0{word-spacing:-12.059995px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-3.873162px;}
._13{margin-left:-2.629192px;}
._0{margin-left:-1.440826px;}
._2{width:1.002396px;}
._9{width:2.190526px;}
._12{width:3.366078px;}
._7{width:4.466617px;}
._a{width:5.533530px;}
._e{width:6.614578px;}
._5{width:8.217484px;}
._6{width:9.483511px;}
._18{width:10.886836px;}
._d{width:12.390410px;}
._c{width:13.513469px;}
._14{width:16.162930px;}
._1d{width:17.616755px;}
._f{width:18.884596px;}
._10{width:19.959210px;}
._16{width:21.437984px;}
._15{width:22.795881px;}
._1b{width:30.741334px;}
._1a{width:31.823305px;}
._17{width:33.366390px;}
._1c{width:47.051844px;}
._b{width:52.056717px;}
._19{width:56.914406px;}
._1{width:100.137638px;}
._11{width:211.638515px;}
._3{width:231.194081px;}
._4{width:1036.867572px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.239995px;}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fs9{font-size:30.239988px;}
.fs5{font-size:38.879984px;}
.fsa{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs6{font-size:71.999971px;}
.fs7{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.ya7{bottom:142.139943px;}
.y43{bottom:142.319943px;}
.yd7{bottom:144.299942px;}
.y77{bottom:145.559942px;}
.ya6{bottom:160.679936px;}
.y42{bottom:160.859936px;}
.yd6{bottom:162.839935px;}
.y76{bottom:164.099934px;}
.ya5{bottom:179.399928px;}
.y41{bottom:179.579928px;}
.yd5{bottom:181.559927px;}
.y75{bottom:182.819927px;}
.ya4{bottom:197.939921px;}
.y40{bottom:198.119921px;}
.yd4{bottom:200.099920px;}
.y74{bottom:201.359919px;}
.ya3{bottom:216.659913px;}
.y3f{bottom:216.839913px;}
.yd3{bottom:218.819912px;}
.y73{bottom:220.079912px;}
.ya2{bottom:235.379906px;}
.y3e{bottom:235.559906px;}
.yd2{bottom:237.359905px;}
.y72{bottom:238.619905px;}
.ya1{bottom:253.919898px;}
.y3d{bottom:254.099898px;}
.yd1{bottom:256.079898px;}
.y71{bottom:257.339897px;}
.ya0{bottom:272.639891px;}
.y3c{bottom:272.819891px;}
.yd0{bottom:274.799890px;}
.y70{bottom:275.879890px;}
.y9f{bottom:291.179884px;}
.y3b{bottom:291.359883px;}
.ycf{bottom:293.339883px;}
.y6f{bottom:294.419882px;}
.y9e{bottom:309.899876px;}
.y3a{bottom:310.079876px;}
.yce{bottom:312.059875px;}
.y6e{bottom:312.419875px;}
.y9d{bottom:328.439869px;}
.y39{bottom:328.619869px;}
.ycd{bottom:330.599868px;}
.y6d{bottom:330.779868px;}
.y9c{bottom:347.159861px;}
.y38{bottom:347.339861px;}
.y6c{bottom:349.319860px;}
.y37{bottom:365.699854px;}
.ycc{bottom:367.859853px;}
.y6b{bottom:368.039853px;}
.y36{bottom:380.999848px;}
.y9b{bottom:384.239846px;}
.ycb{bottom:386.399845px;}
.y6a{bottom:386.759845px;}
.y35{bottom:389.639844px;}
.y9a{bottom:401.339839px;}
.yca{bottom:402.419839px;}
.y69{bottom:405.299838px;}
.y34{bottom:405.659838px;}
.yc9{bottom:413.759834px;}
.y99{bottom:415.559834px;}
.y33{bottom:415.739834px;}
.y68{bottom:424.019830px;}
.yc8{bottom:432.299827px;}
.y32{bottom:434.279826px;}
.y67{bottom:442.559823px;}
.y31{bottom:450.839820px;}
.yc7{bottom:451.019820px;}
.y98{bottom:452.819819px;}
.y66{bottom:461.279815px;}
.y30{bottom:461.999815px;}
.yc6{bottom:469.559812px;}
.y97{bottom:471.539811px;}
.y65{bottom:479.819808px;}
.y2f{bottom:480.719808px;}
.yc5{bottom:488.279805px;}
.y96{bottom:490.079804px;}
.y64{bottom:498.539801px;}
.y2e{bottom:499.259800px;}
.yc4{bottom:506.819797px;}
.y95{bottom:508.799796px;}
.y63{bottom:517.079793px;}
.y2d{bottom:517.979793px;}
.yc3{bottom:525.539790px;}
.yf6{bottom:526.799789px;}
.y94{bottom:527.339789px;}
.y62{bottom:535.799786px;}
.y2c{bottom:536.519785px;}
.yc2{bottom:544.259782px;}
.y93{bottom:546.059782px;}
.yf5{bottom:547.139781px;}
.y2b{bottom:555.239778px;}
.y61{bottom:556.139778px;}
.yc1{bottom:562.799775px;}
.y92{bottom:564.599774px;}
.yf4{bottom:565.859774px;}
.y2a{bottom:573.959770px;}
.y60{bottom:574.859770px;}
.yc0{bottom:581.519767px;}
.y91{bottom:583.319767px;}
.yf3{bottom:584.399766px;}
.y29{bottom:592.499763px;}
.y5f{bottom:593.579763px;}
.ybf{bottom:600.059760px;}
.y90{bottom:602.039759px;}
.yf2{bottom:603.119759px;}
.y28{bottom:611.219756px;}
.y5e{bottom:612.119755px;}
.ybe{bottom:618.779752px;}
.y8f{bottom:620.579752px;}
.yf1{bottom:621.659751px;}
.y27{bottom:629.759748px;}
.y5d{bottom:630.839748px;}
.ybd{bottom:637.319745px;}
.y8e{bottom:639.299744px;}
.yf0{bottom:640.379744px;}
.y26{bottom:648.479741px;}
.y5c{bottom:649.379740px;}
.ybc{bottom:656.039738px;}
.y8d{bottom:657.839737px;}
.yef{bottom:658.919736px;}
.y25{bottom:667.019733px;}
.y5b{bottom:667.919733px;}
.ybb{bottom:674.579730px;}
.y8c{bottom:676.559729px;}
.yee{bottom:677.639729px;}
.y5a{bottom:683.399727px;}
.y24{bottom:685.739726px;}
.y59{bottom:693.299723px;}
.y8b{bottom:695.099722px;}
.yed{bottom:696.359721px;}
.y23{bottom:706.079718px;}
.y58{bottom:712.019715px;}
.y8a{bottom:713.819714px;}
.yec{bottom:714.899714px;}
.yba{bottom:715.439714px;}
.y22{bottom:726.599709px;}
.y57{bottom:730.739708px;}
.y89{bottom:732.359707px;}
.yeb{bottom:733.619707px;}
.yb9{bottom:734.159706px;}
.y21{bottom:745.139702px;}
.y56{bottom:749.279700px;}
.y88{bottom:751.079700px;}
.yea{bottom:752.159699px;}
.yb8{bottom:752.519699px;}
.y20{bottom:763.859694px;}
.y55{bottom:767.999693px;}
.yb7{bottom:768.719693px;}
.y87{bottom:769.799692px;}
.ye9{bottom:770.879692px;}
.yb6{bottom:779.879688px;}
.y1f{bottom:782.399687px;}
.y54{bottom:786.539685px;}
.y86{bottom:788.339685px;}
.ye8{bottom:789.419684px;}
.yb5{bottom:798.599681px;}
.y1e{bottom:801.119680px;}
.y53{bottom:805.259678px;}
.y85{bottom:807.059677px;}
.ye7{bottom:808.139677px;}
.yb4{bottom:817.139673px;}
.y1d{bottom:819.839672px;}
.y52{bottom:823.799670px;}
.y84{bottom:825.599670px;}
.ye6{bottom:826.679669px;}
.y1c{bottom:835.859666px;}
.y51{bottom:842.519663px;}
.y83{bottom:844.319662px;}
.ye5{bottom:845.399662px;}
.y1b{bottom:845.579662px;}
.yb3{bottom:854.399658px;}
.y50{bottom:861.059656px;}
.y82{bottom:862.859655px;}
.ye4{bottom:864.119654px;}
.y1a{bottom:865.559654px;}
.yb2{bottom:873.119651px;}
.y4f{bottom:879.779648px;}
.y81{bottom:881.579647px;}
.ye3{bottom:882.479647px;}
.y19{bottom:889.319644px;}
.yb1{bottom:891.659643px;}
.y4e{bottom:898.499641px;}
.y80{bottom:900.119640px;}
.ye2{bottom:900.839640px;}
.y18{bottom:904.979638px;}
.yb0{bottom:912.179635px;}
.y4d{bottom:917.039633px;}
.y7f{bottom:918.839632px;}
.ye1{bottom:919.379632px;}
.y17{bottom:922.979631px;}
.yaf{bottom:930.719628px;}
.y4c{bottom:935.759626px;}
.y7e{bottom:937.559625px;}
.ye0{bottom:938.099625px;}
.y16{bottom:938.459625px;}
.yae{bottom:949.439620px;}
.y4b{bottom:954.299618px;}
.y7d{bottom:956.099618px;}
.ydf{bottom:956.639617px;}
.y15{bottom:957.179617px;}
.yad{bottom:968.159613px;}
.y14{bottom:972.479611px;}
.y4a{bottom:973.019611px;}
.y7c{bottom:974.819610px;}
.yde{bottom:975.359610px;}
.y12{bottom:979.139608px;}
.y13{bottom:982.919607px;}
.yac{bottom:986.699605px;}
.y49{bottom:991.559603px;}
.y7b{bottom:993.359603px;}
.ydd{bottom:993.899602px;}
.y11{bottom:997.499601px;}
.yab{bottom:1005.419598px;}
.y48{bottom:1010.279596px;}
.y7a{bottom:1012.079595px;}
.ydc{bottom:1012.619595px;}
.y10{bottom:1017.659593px;}
.yaa{bottom:1023.959590px;}
.y47{bottom:1028.819588px;}
.y79{bottom:1030.619588px;}
.ydb{bottom:1031.159588px;}
.ya9{bottom:1042.499583px;}
.yf{bottom:1042.859583px;}
.y46{bottom:1047.539581px;}
.y78{bottom:1049.339580px;}
.yda{bottom:1049.879580px;}
.ya8{bottom:1057.979577px;}
.ye{bottom:1067.339573px;}
.y45{bottom:1067.879573px;}
.yd9{bottom:1068.599573px;}
.y44{bottom:1086.599565px;}
.yd8{bottom:1086.959565px;}
.yd{bottom:1088.039565px;}
.y6{bottom:1113.059555px;}
.y5{bottom:1125.479550px;}
.y4{bottom:1133.759546px;}
.y3{bottom:1150.499540px;}
.yc{bottom:1157.339537px;}
.y2{bottom:1163.639535px;}
.yb{bottom:1169.219532px;}
.ya{bottom:1181.279527px;}
.y1{bottom:1196.039522px;}
.hd{height:8.893121px;}
.h2{height:13.104487px;}
.h6{height:15.836126px;}
.h14{height:17.263118px;}
.h10{height:17.297923px;}
.h16{height:21.971241px;}
.h12{height:22.045069px;}
.hc{height:28.248739px;}
.h7{height:28.305692px;}
.h8{height:28.343661px;}
.h15{height:30.402410px;}
.h3{height:35.049361px;}
.he{height:35.120025px;}
.h4{height:35.167134px;}
.h1{height:39.313461px;}
.hb{height:43.419358px;}
.h5{height:43.506897px;}
.h13{height:43.565256px;}
.h9{height:52.312479px;}
.ha{height:61.205601px;}
.hf{height:61.328999px;}
.h11{height:64.487084px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x19{left:135.000008px;}
.x18{left:154.793938px;}
.x4{left:160.019662px;}
.xb{left:171.719931px;}
.x16{left:183.239393px;}
.xc{left:188.099681px;}
.x15{left:201.779919px;}
.x5{left:206.459917px;}
.xd{left:239.039946px;}
.x17{left:253.079899px;}
.xa{left:313.559875px;}
.xe{left:319.139872px;}
.xf{left:323.992370px;}
.x2{left:353.160301px;}
.x10{left:378.179849px;}
.x11{left:383.032347px;}
.x1a{left:425.699342px;}
.x6{left:428.399829px;}
.x3{left:446.400357px;}
.x12{left:481.859807px;}
.x13{left:486.719805px;}
.x9{left:525.054810px;}
.x7{left:528.659789px;}
.x8{left:542.159530px;}
.x14{left:649.079740px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.166971pt;}
.ls3{letter-spacing:0.336533pt;}
.ls1{letter-spacing:40.946757pt;}
.ws3{word-spacing:-34.952946pt;}
.ws1{word-spacing:-13.279995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-3.442811pt;}
._13{margin-left:-2.337059pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.891019pt;}
._9{width:1.947134pt;}
._12{width:2.992070pt;}
._7{width:3.970326pt;}
._a{width:4.918694pt;}
._e{width:5.879625pt;}
._5{width:7.304431pt;}
._6{width:8.429788pt;}
._18{width:9.677187pt;}
._d{width:11.013697pt;}
._c{width:12.011973pt;}
._14{width:14.367049pt;}
._1d{width:15.659337pt;}
._f{width:16.786307pt;}
._10{width:17.741520pt;}
._16{width:19.055985pt;}
._15{width:20.263005pt;}
._1b{width:27.325630pt;}
._1a{width:28.287382pt;}
._17{width:29.659014pt;}
._1c{width:41.823861pt;}
._b{width:46.272637pt;}
._19{width:50.590583pt;}
._1{width:89.011234pt;}
._11{width:188.123125pt;}
._3{width:205.505850pt;}
._4{width:921.660064pt;}
.fs8{font-size:10.879996pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fs9{font-size:26.879989pt;}
.fs5{font-size:34.559986pt;}
.fsa{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs6{font-size:63.999974pt;}
.fs7{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.ya7{bottom:126.346616pt;}
.y43{bottom:126.506616pt;}
.yd7{bottom:128.266615pt;}
.y77{bottom:129.386615pt;}
.ya6{bottom:142.826610pt;}
.y42{bottom:142.986609pt;}
.yd6{bottom:144.746609pt;}
.y76{bottom:145.866608pt;}
.ya5{bottom:159.466603pt;}
.y41{bottom:159.626603pt;}
.yd5{bottom:161.386602pt;}
.y75{bottom:162.506602pt;}
.ya4{bottom:175.946596pt;}
.y40{bottom:176.106596pt;}
.yd4{bottom:177.866596pt;}
.y74{bottom:178.986595pt;}
.ya3{bottom:192.586590pt;}
.y3f{bottom:192.746590pt;}
.yd3{bottom:194.506589pt;}
.y73{bottom:195.626588pt;}
.ya2{bottom:209.226583pt;}
.y3e{bottom:209.386583pt;}
.yd2{bottom:210.986582pt;}
.y72{bottom:212.106582pt;}
.ya1{bottom:225.706576pt;}
.y3d{bottom:225.866576pt;}
.yd1{bottom:227.626576pt;}
.y71{bottom:228.746575pt;}
.ya0{bottom:242.346570pt;}
.y3c{bottom:242.506570pt;}
.yd0{bottom:244.266569pt;}
.y70{bottom:245.226569pt;}
.y9f{bottom:258.826563pt;}
.y3b{bottom:258.986563pt;}
.ycf{bottom:260.746562pt;}
.y6f{bottom:261.706562pt;}
.y9e{bottom:275.466556pt;}
.y3a{bottom:275.626556pt;}
.yce{bottom:277.386556pt;}
.y6e{bottom:277.706556pt;}
.y9d{bottom:291.946550pt;}
.y39{bottom:292.106550pt;}
.ycd{bottom:293.866549pt;}
.y6d{bottom:294.026549pt;}
.y9c{bottom:308.586543pt;}
.y38{bottom:308.746543pt;}
.y6c{bottom:310.506542pt;}
.y37{bottom:325.066537pt;}
.ycc{bottom:326.986536pt;}
.y6b{bottom:327.146536pt;}
.y36{bottom:338.666531pt;}
.y9b{bottom:341.546530pt;}
.ycb{bottom:343.466529pt;}
.y6a{bottom:343.786529pt;}
.y35{bottom:346.346528pt;}
.y9a{bottom:356.746524pt;}
.yca{bottom:357.706524pt;}
.y69{bottom:360.266523pt;}
.y34{bottom:360.586522pt;}
.yc9{bottom:367.786520pt;}
.y99{bottom:369.386519pt;}
.y33{bottom:369.546519pt;}
.y68{bottom:376.906516pt;}
.yc8{bottom:384.266513pt;}
.y32{bottom:386.026512pt;}
.y67{bottom:393.386509pt;}
.y31{bottom:400.746506pt;}
.yc7{bottom:400.906506pt;}
.y98{bottom:402.506506pt;}
.y66{bottom:410.026503pt;}
.y30{bottom:410.666502pt;}
.yc6{bottom:417.386500pt;}
.y97{bottom:419.146499pt;}
.y65{bottom:426.506496pt;}
.y2f{bottom:427.306496pt;}
.yc5{bottom:434.026493pt;}
.y96{bottom:435.626492pt;}
.y64{bottom:443.146489pt;}
.y2e{bottom:443.786489pt;}
.yc4{bottom:450.506486pt;}
.y95{bottom:452.266486pt;}
.y63{bottom:459.626483pt;}
.y2d{bottom:460.426482pt;}
.yc3{bottom:467.146480pt;}
.yf6{bottom:468.266479pt;}
.y94{bottom:468.746479pt;}
.y62{bottom:476.266476pt;}
.y2c{bottom:476.906476pt;}
.yc2{bottom:483.786473pt;}
.y93{bottom:485.386473pt;}
.yf5{bottom:486.346472pt;}
.y2b{bottom:493.546469pt;}
.y61{bottom:494.346469pt;}
.yc1{bottom:500.266467pt;}
.y92{bottom:501.866466pt;}
.yf4{bottom:502.986465pt;}
.y2a{bottom:510.186463pt;}
.y60{bottom:510.986462pt;}
.yc0{bottom:516.906460pt;}
.y91{bottom:518.506459pt;}
.yf3{bottom:519.466459pt;}
.y29{bottom:526.666456pt;}
.y5f{bottom:527.626456pt;}
.ybf{bottom:533.386453pt;}
.y90{bottom:535.146453pt;}
.yf2{bottom:536.106452pt;}
.y28{bottom:543.306449pt;}
.y5e{bottom:544.106449pt;}
.ybe{bottom:550.026447pt;}
.y8f{bottom:551.626446pt;}
.yf1{bottom:552.586446pt;}
.y27{bottom:559.786443pt;}
.y5d{bottom:560.746442pt;}
.ybd{bottom:566.506440pt;}
.y8e{bottom:568.266439pt;}
.yf0{bottom:569.226439pt;}
.y26{bottom:576.426436pt;}
.y5c{bottom:577.226436pt;}
.ybc{bottom:583.146433pt;}
.y8d{bottom:584.746433pt;}
.yef{bottom:585.706432pt;}
.y25{bottom:592.906430pt;}
.y5b{bottom:593.706429pt;}
.ybb{bottom:599.626427pt;}
.y8c{bottom:601.386426pt;}
.yee{bottom:602.346426pt;}
.y5a{bottom:607.466424pt;}
.y24{bottom:609.546423pt;}
.y59{bottom:616.266420pt;}
.y8b{bottom:617.866420pt;}
.yed{bottom:618.986419pt;}
.y23{bottom:627.626416pt;}
.y58{bottom:632.906414pt;}
.y8a{bottom:634.506413pt;}
.yec{bottom:635.466412pt;}
.yba{bottom:635.946412pt;}
.y22{bottom:645.866408pt;}
.y57{bottom:649.546407pt;}
.y89{bottom:650.986406pt;}
.yeb{bottom:652.106406pt;}
.yb9{bottom:652.586406pt;}
.y21{bottom:662.346402pt;}
.y56{bottom:666.026400pt;}
.y88{bottom:667.626400pt;}
.yea{bottom:668.586399pt;}
.yb8{bottom:668.906399pt;}
.y20{bottom:678.986395pt;}
.y55{bottom:682.666394pt;}
.yb7{bottom:683.306393pt;}
.y87{bottom:684.266393pt;}
.ye9{bottom:685.226393pt;}
.yb6{bottom:693.226389pt;}
.y1f{bottom:695.466388pt;}
.y54{bottom:699.146387pt;}
.y86{bottom:700.746386pt;}
.ye8{bottom:701.706386pt;}
.yb5{bottom:709.866383pt;}
.y1e{bottom:712.106382pt;}
.y53{bottom:715.786380pt;}
.y85{bottom:717.386380pt;}
.ye7{bottom:718.346379pt;}
.yb4{bottom:726.346376pt;}
.y1d{bottom:728.746375pt;}
.y52{bottom:732.266374pt;}
.y84{bottom:733.866373pt;}
.ye6{bottom:734.826373pt;}
.y1c{bottom:742.986369pt;}
.y51{bottom:748.906367pt;}
.y83{bottom:750.506366pt;}
.ye5{bottom:751.466366pt;}
.y1b{bottom:751.626366pt;}
.yb3{bottom:759.466363pt;}
.y50{bottom:765.386361pt;}
.y82{bottom:766.986360pt;}
.ye4{bottom:768.106359pt;}
.y1a{bottom:769.386359pt;}
.yb2{bottom:776.106356pt;}
.y4f{bottom:782.026354pt;}
.y81{bottom:783.626353pt;}
.ye3{bottom:784.426353pt;}
.y19{bottom:790.506350pt;}
.yb1{bottom:792.586350pt;}
.y4e{bottom:798.666347pt;}
.y80{bottom:800.106347pt;}
.ye2{bottom:800.746346pt;}
.y18{bottom:804.426345pt;}
.yb0{bottom:810.826342pt;}
.y4d{bottom:815.146341pt;}
.y7f{bottom:816.746340pt;}
.ye1{bottom:817.226340pt;}
.y17{bottom:820.426338pt;}
.yaf{bottom:827.306336pt;}
.y4c{bottom:831.786334pt;}
.y7e{bottom:833.386333pt;}
.ye0{bottom:833.866333pt;}
.y16{bottom:834.186333pt;}
.yae{bottom:843.946329pt;}
.y4b{bottom:848.266327pt;}
.y7d{bottom:849.866327pt;}
.ydf{bottom:850.346327pt;}
.y15{bottom:850.826326pt;}
.yad{bottom:860.586322pt;}
.y14{bottom:864.426321pt;}
.y4a{bottom:864.906321pt;}
.y7c{bottom:866.506320pt;}
.yde{bottom:866.986320pt;}
.y12{bottom:870.346319pt;}
.y13{bottom:873.706317pt;}
.yac{bottom:877.066316pt;}
.y49{bottom:881.386314pt;}
.y7b{bottom:882.986313pt;}
.ydd{bottom:883.466313pt;}
.y11{bottom:886.666312pt;}
.yab{bottom:893.706309pt;}
.y48{bottom:898.026307pt;}
.y7a{bottom:899.626307pt;}
.ydc{bottom:900.106307pt;}
.y10{bottom:904.586305pt;}
.yaa{bottom:910.186303pt;}
.y47{bottom:914.506301pt;}
.y79{bottom:916.106300pt;}
.ydb{bottom:916.586300pt;}
.ya9{bottom:926.666296pt;}
.yf{bottom:926.986296pt;}
.y46{bottom:931.146294pt;}
.y78{bottom:932.746294pt;}
.yda{bottom:933.226293pt;}
.ya8{bottom:940.426290pt;}
.ye{bottom:948.746287pt;}
.y45{bottom:949.226287pt;}
.yd9{bottom:949.866287pt;}
.y44{bottom:965.866280pt;}
.yd8{bottom:966.186280pt;}
.yd{bottom:967.146280pt;}
.y6{bottom:989.386271pt;}
.y5{bottom:1000.426266pt;}
.y4{bottom:1007.786264pt;}
.y3{bottom:1022.666258pt;}
.yc{bottom:1028.746255pt;}
.y2{bottom:1034.346253pt;}
.yb{bottom:1039.306251pt;}
.ya{bottom:1050.026247pt;}
.y1{bottom:1063.146241pt;}
.hd{height:7.904997pt;}
.h2{height:11.648433pt;}
.h6{height:14.076557pt;}
.h14{height:15.344994pt;}
.h10{height:15.375931pt;}
.h16{height:19.529992pt;}
.h12{height:19.595617pt;}
.hc{height:25.109990pt;}
.h7{height:25.160615pt;}
.h8{height:25.194365pt;}
.h15{height:27.024364pt;}
.h3{height:31.154988pt;}
.he{height:31.217800pt;}
.h4{height:31.259675pt;}
.h1{height:34.945299pt;}
.hb{height:38.594985pt;}
.h5{height:38.672797pt;}
.h13{height:38.724672pt;}
.h9{height:46.499981pt;}
.ha{height:54.404978pt;}
.hf{height:54.514666pt;}
.h11{height:57.321852pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x19{left:120.000007pt;}
.x18{left:137.594612pt;}
.x4{left:142.239699pt;}
.xb{left:152.639939pt;}
.x16{left:162.879460pt;}
.xc{left:167.199717pt;}
.x15{left:179.359928pt;}
.x5{left:183.519927pt;}
.xd{left:212.479952pt;}
.x17{left:224.959910pt;}
.xa{left:278.719889pt;}
.xe{left:283.679887pt;}
.xf{left:287.993218pt;}
.x2{left:313.920268pt;}
.x10{left:336.159866pt;}
.x11{left:340.473197pt;}
.x1a{left:378.399415pt;}
.x6{left:380.799848pt;}
.x3{left:396.800317pt;}
.x12{left:428.319829pt;}
.x13{left:432.639827pt;}
.x9{left:466.715387pt;}
.x7{left:469.919812pt;}
.x8{left:481.919582pt;}
.x14{left:576.959769pt;}
}




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