
    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_454cb686b7d59fdd3fdcedca.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2e124405a66cfe734ff8a66f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_4ee84407cc682a6d8808ac39.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_fe3377cdbe0d5ecca410d550.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_bf48f1623b78b0b3ca970de2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_285cb6d36a7a6fec9c709990.woff')format("woff");}.ff6{font-family:ff6;line-height:0.000000;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_31d19418f32b00e7cc1476d0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.363000;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_d3edc6100641fd27f485c157.woff')format("woff");}.ff8{font-family:ff8;line-height:0.000000;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.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);}
.m2{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);}
.m1{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);}
.m3{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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.019560px;}
.ls5{letter-spacing:0.021240px;}
.ls4{letter-spacing:0.021282px;}
.ls3{letter-spacing:53.467179px;}
.ls1{letter-spacing:57.069577px;}
.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;}
}
.ws0{word-spacing:-17.999993px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-4.492627px;}
._7{margin-left:-3.353677px;}
._a{margin-left:-2.252370px;}
._1{margin-left:-1.210572px;}
._0{width:1.117586px;}
._5{width:2.158944px;}
._4{width:3.260862px;}
._d{width:4.272008px;}
._9{width:5.602902px;}
._2{width:6.757820px;}
._3{width:8.151130px;}
._e{width:9.187658px;}
._13{width:10.352038px;}
._f{width:11.397465px;}
._c{width:12.720070px;}
._b{width:14.279976px;}
._8{width:15.588267px;}
._14{width:16.702887px;}
._1a{width:19.026882px;}
._12{width:20.242768px;}
._18{width:21.354068px;}
._17{width:22.464348px;}
._19{width:23.577431px;}
._16{width:24.669154px;}
._15{width:26.663924px;}
._10{width:28.366949px;}
._11{width:29.409867px;}
._1b{width:33.735901px;}
._1c{width:35.246399px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs1{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.819977px;}
.y66{bottom:117.659953px;}
.yf8{bottom:121.799951px;}
.y115{bottom:127.019949px;}
.y46{bottom:128.459949px;}
.y12a{bottom:130.619948px;}
.y75{bottom:130.799948px;}
.ya7{bottom:141.779943px;}
.y28{bottom:143.579943px;}
.yc0{bottom:145.919942px;}
.y65{bottom:148.799940px;}
.y129{bottom:151.319939px;}
.yf7{bottom:152.759939px;}
.y114{bottom:158.159937px;}
.y45{bottom:159.419936px;}
.y74{bottom:161.759935px;}
.ydd{bottom:162.299935px;}
.y89{bottom:166.439933px;}
.y27{bottom:168.419933px;}
.y118{bottom:170.759932px;}
.ya6{bottom:171.839931px;}
.y64{bottom:179.759928px;}
.yf6{bottom:183.899926px;}
.y128{bottom:184.079926px;}
.ybf{bottom:186.059926px;}
.y113{bottom:189.119924px;}
.y44{bottom:190.559924px;}
.y26{bottom:193.259923px;}
.y88{bottom:196.319921px;}
.y73{bottom:201.899919px;}
.y127{bottom:204.779918px;}
.y63{bottom:210.899916px;}
.yf5{bottom:214.859914px;}
.ybe{bottom:217.019913px;}
.y25{bottom:218.099913px;}
.y112{bottom:220.259912px;}
.y43{bottom:221.519911px;}
.ydc{bottom:224.399910px;}
.y87{bottom:226.379909px;}
.ya5{bottom:231.959907px;}
.y72{bottom:232.859907px;}
.y126{bottom:237.359905px;}
.y62{bottom:241.859903px;}
.y24{bottom:242.939903px;}
.yf4{bottom:245.999902px;}
.ybd{bottom:248.159901px;}
.y111{bottom:251.219900px;}
.y42{bottom:252.659899px;}
.ydb{bottom:255.359898px;}
.y86{bottom:256.439897px;}
.y125{bottom:258.059897px;}
.ya4{bottom:261.839895px;}
.y71{bottom:263.999894px;}
.y23{bottom:267.779893px;}
.y61{bottom:272.999891px;}
.ybc{bottom:279.119888px;}
.y110{bottom:282.359887px;}
.yf3{bottom:285.959886px;}
.y85{bottom:286.499885px;}
.y124{bottom:290.819884px;}
.y22{bottom:292.619883px;}
.y70{bottom:294.959882px;}
.yda{bottom:295.499882px;}
.ya3{bottom:300.899880px;}
.y60{bottom:303.959878px;}
.ybb{bottom:310.259876px;}
.y123{bottom:311.519875px;}
.y10f{bottom:313.319875px;}
.yf2{bottom:317.099873px;}
.y21{bottom:317.459873px;}
.y41{bottom:323.759870px;}
.y84{bottom:325.379870px;}
.y6f{bottom:326.099870px;}
.yd9{bottom:326.459869px;}
.ya2{bottom:330.959868px;}
.y5f{bottom:335.099866px;}
.y20{bottom:342.299863px;}
.y122{bottom:344.279862px;}
.yf1{bottom:348.059861px;}
.yba{bottom:350.219860px;}
.y10e{bottom:353.459859px;}
.y40{bottom:354.719858px;}
.y83{bottom:355.439858px;}
.yd8{bottom:357.599857px;}
.ya1{bottom:361.019856px;}
.y5e{bottom:366.059854px;}
.y1f{bottom:367.139853px;}
.y121{bottom:376.859849px;}
.yf0{bottom:379.199848px;}
.yb9{bottom:381.359847px;}
.y10d{bottom:384.419846px;}
.y82{bottom:385.499846px;}
.y3f{bottom:385.859846px;}
.yd7{bottom:388.559845px;}
.ya0{bottom:390.899844px;}
.y1e{bottom:391.979843px;}
.y67{bottom:397.199841px;}
.y5d{bottom:406.199838px;}
.y120{bottom:409.619836px;}
.yef{bottom:410.159836px;}
.yb8{bottom:412.319835px;}
.y81{bottom:415.559834px;}
.y1d{bottom:416.819833px;}
.yd6{bottom:419.699832px;}
.y9f{bottom:420.959832px;}
.y6e{bottom:428.159829px;}
.y11f{bottom:430.319828px;}
.y5c{bottom:437.159825px;}
.y1c{bottom:441.659823px;}
.yb7{bottom:443.459823px;}
.y80{bottom:445.439822px;}
.y10c{bottom:446.519821px;}
.yee{bottom:450.299820px;}
.yd5{bottom:450.659820px;}
.y9e{bottom:451.019820px;}
.y3e{bottom:456.959817px;}
.y6d{bottom:459.299816px;}
.y11e{bottom:463.079815px;}
.y1b{bottom:466.499813px;}
.y5b{bottom:468.299813px;}
.yb6{bottom:474.419810px;}
.y7f{bottom:475.499810px;}
.y10b{bottom:477.659809px;}
.y9d{bottom:481.079808px;}
.yed{bottom:481.259807px;}
.y11d{bottom:483.779806px;}
.y3d{bottom:487.919805px;}
.y6c{bottom:490.259804px;}
.yd4{bottom:490.799804px;}
.y1a{bottom:491.339803px;}
.y5a{bottom:499.259800px;}
.yb5{bottom:505.559798px;}
.y10a{bottom:508.619797px;}
.yec{bottom:512.399795px;}
.y7e{bottom:514.559794px;}
.y19{bottom:516.179794px;}
.y11c{bottom:516.359793px;}
.y3c{bottom:519.059792px;}
.y9c{bottom:519.959792px;}
.y117{bottom:521.399791px;}
.yd3{bottom:521.759791px;}
.y59{bottom:530.399788px;}
.yb4{bottom:536.519785px;}
.y13e{bottom:538.859784px;}
.y109{bottom:539.759784px;}
.yeb{bottom:543.359783px;}
.y7d{bottom:544.619782px;}
.y11b{bottom:549.119780px;}
.y18{bottom:550.019780px;}
.yd2{bottom:552.899779px;}
.y58{bottom:561.359775px;}
.y13d{bottom:571.619771px;}
.y7c{bottom:574.499770px;}
.y17{bottom:574.859770px;}
.yb3{bottom:576.659769px;}
.y108{bottom:579.719768px;}
.y9b{bottom:580.079768px;}
.y3b{bottom:581.159768px;}
.y11a{bottom:581.879767px;}
.yd1{bottom:583.859766px;}
.y13c{bottom:592.319763px;}
.y57{bottom:592.499763px;}
.y16{bottom:599.699760px;}
.y7b{bottom:604.559758px;}
.yb2{bottom:607.619757px;}
.y9a{bottom:609.959756px;}
.y107{bottom:610.679756px;}
.y3a{bottom:612.119755px;}
.yea{bottom:614.459754px;}
.yd0{bottom:614.999754px;}
.y56{bottom:623.459751px;}
.y15{bottom:624.539750px;}
.y13b{bottom:625.079750px;}
.y7a{bottom:634.619746px;}
.yb1{bottom:638.759744px;}
.y99{bottom:640.019744px;}
.y106{bottom:641.819743px;}
.ye9{bottom:645.599742px;}
.y13a{bottom:645.779742px;}
.ycf{bottom:645.959742px;}
.y14{bottom:649.379740px;}
.y39{bottom:652.079739px;}
.y6b{bottom:654.599738px;}
.y55{bottom:663.599735px;}
.y79{bottom:664.499734px;}
.yb0{bottom:669.719732px;}
.y98{bottom:670.079732px;}
.y105{bottom:672.779731px;}
.y13{bottom:674.219730px;}
.ye8{bottom:676.559729px;}
.yce{bottom:676.919729px;}
.y139{bottom:678.359729px;}
.y38{bottom:683.219727px;}
.y6a{bottom:685.559726px;}
.y54{bottom:694.559722px;}
.y12{bottom:699.059720px;}
.yaf{bottom:700.859720px;}
.y104{bottom:703.919718px;}
.ye7{bottom:707.699717px;}
.ycd{bottom:708.059717px;}
.y97{bottom:709.139716px;}
.y37{bottom:714.179714px;}
.y116{bottom:716.699713px;}
.y11{bottom:723.899710px;}
.y53{bottom:725.699710px;}
.yae{bottom:731.819707px;}
.y103{bottom:734.879706px;}
.ye6{bottom:738.659705px;}
.y96{bottom:739.019704px;}
.y36{bottom:745.319702px;}
.y119{bottom:747.659701px;}
.ycc{bottom:748.019701px;}
.y10{bottom:748.739701px;}
.y138{bottom:752.519699px;}
.y52{bottom:756.659697px;}
.yad{bottom:762.959695px;}
.y95{bottom:769.079692px;}
.yf{bottom:773.579691px;}
.y102{bottom:775.019690px;}
.y35{bottom:776.279689px;}
.ye5{bottom:778.799688px;}
.ycb{bottom:779.159688px;}
.y137{bottom:785.099686px;}
.y51{bottom:787.799685px;}
.ye{bottom:798.419681px;}
.y94{bottom:799.139680px;}
.yac{bottom:802.919679px;}
.y136{bottom:805.799678px;}
.y101{bottom:805.979678px;}
.y34{bottom:807.419677px;}
.ye4{bottom:809.759676px;}
.yca{bottom:810.119676px;}
.y50{bottom:818.759672px;}
.yd{bottom:823.259671px;}
.y93{bottom:829.199668px;}
.yab{bottom:834.059666px;}
.y100{bottom:837.119665px;}
.y33{bottom:838.379665px;}
.y135{bottom:838.559665px;}
.ye3{bottom:840.899664px;}
.yc9{bottom:841.259663px;}
.yc{bottom:848.099661px;}
.y4f{bottom:849.899660px;}
.y92{bottom:859.079656px;}
.yaa{bottom:865.019654px;}
.yc8{bottom:866.099654px;}
.yff{bottom:868.079653px;}
.y32{bottom:869.519652px;}
.y134{bottom:871.319651px;}
.ye2{bottom:871.859651px;}
.yb{bottom:879.239648px;}
.y69{bottom:880.859648px;}
.y91{bottom:889.139644px;}
.y4e{bottom:889.859644px;}
.yc7{bottom:890.759644px;}
.y133{bottom:892.019643px;}
.ya9{bottom:896.159642px;}
.yfe{bottom:899.219640px;}
.y31{bottom:900.479640px;}
.ya{bottom:900.839640px;}
.ye1{bottom:902.999639px;}
.y68{bottom:911.999635px;}
.yc6{bottom:917.039633px;}
.y4d{bottom:920.999632px;}
.y9{bottom:922.619631px;}
.y132{bottom:924.599630px;}
.ya8{bottom:927.119629px;}
.y90{bottom:928.199629px;}
.yfd{bottom:930.179628px;}
.y30{bottom:931.619627px;}
.ye0{bottom:933.959626px;}
.yc5{bottom:941.699623px;}
.y78{bottom:942.959623px;}
.y8{bottom:944.399622px;}
.y131{bottom:945.299622px;}
.y4c{bottom:951.959619px;}
.y8f{bottom:958.259617px;}
.yfc{bottom:961.319615px;}
.y2f{bottom:964.919614px;}
.yc4{bottom:967.979613px;}
.y77{bottom:974.099610px;}
.y7{bottom:975.359610px;}
.y130{bottom:978.059609px;}
.y4b{bottom:983.099607px;}
.y8e{bottom:988.139605px;}
.yfb{bottom:992.279603px;}
.yc3{bottom:992.639603px;}
.y12f{bottom:998.759600px;}
.y2e{bottom:998.939600px;}
.y76{bottom:1005.059598px;}
.y6{bottom:1008.839596px;}
.y4a{bottom:1014.059594px;}
.y8d{bottom:1018.199593px;}
.yc2{bottom:1018.919592px;}
.yfa{bottom:1023.419591px;}
.y2d{bottom:1029.899588px;}
.y12e{bottom:1031.519587px;}
.ydf{bottom:1036.199586px;}
.y5{bottom:1036.379585px;}
.yc1{bottom:1043.759582px;}
.y49{bottom:1045.199582px;}
.yf9{bottom:1046.279581px;}
.y8c{bottom:1048.259581px;}
.y12d{bottom:1052.219579px;}
.y2c{bottom:1054.739578px;}
.yde{bottom:1067.159573px;}
.y48{bottom:1076.159570px;}
.y8b{bottom:1078.319569px;}
.y4{bottom:1078.679569px;}
.y2b{bottom:1079.579568px;}
.y12c{bottom:1084.799566px;}
.y12b{bottom:1105.499558px;}
.y47{bottom:1107.299557px;}
.y8a{bottom:1108.199557px;}
.y2a{bottom:1113.419555px;}
.y3{bottom:1120.799552px;}
.y29{bottom:1138.259545px;}
.y1{bottom:1194.419522px;}
.h1{height:44.149201px;}
.h6{height:49.175980px;}
.h7{height:51.335979px;}
.h2{height:58.953576px;}
.h8{height:60.063096px;}
.h5{height:64.079974px;}
.h4{height:74.973570px;}
.h3{height:100.968710px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x3{left:111.599955px;}
.xc{left:129.239859px;}
.xd{left:134.460929px;}
.xf{left:142.022358px;}
.xe{left:161.100882px;}
.x5{left:176.759993px;}
.xb{left:195.839216px;}
.x4{left:313.199906px;}
.x2{left:438.120295px;}
.x9{left:442.619595px;}
.x6{left:446.399821px;}
.xa{left:519.479490px;}
.x7{left:576.899769px;}
.x8{left:695.520194px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017387pt;}
.ls5{letter-spacing:0.018880pt;}
.ls4{letter-spacing:0.018917pt;}
.ls3{letter-spacing:47.526381pt;}
.ls1{letter-spacing:50.728513pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-3.993446pt;}
._7{margin-left:-2.981046pt;}
._a{margin-left:-2.002107pt;}
._1{margin-left:-1.076064pt;}
._0{width:0.993410pt;}
._5{width:1.919061pt;}
._4{width:2.898544pt;}
._d{width:3.797340pt;}
._9{width:4.980357pt;}
._2{width:6.006951pt;}
._3{width:7.245449pt;}
._e{width:8.166807pt;}
._13{width:9.201811pt;}
._f{width:10.131080pt;}
._c{width:11.306729pt;}
._b{width:12.693312pt;}
._8{width:13.856237pt;}
._14{width:14.847011pt;}
._1a{width:16.912784pt;}
._12{width:17.993571pt;}
._18{width:18.981394pt;}
._17{width:19.968309pt;}
._19{width:20.957716pt;}
._16{width:21.928137pt;}
._15{width:23.701266pt;}
._10{width:25.215066pt;}
._11{width:26.142104pt;}
._1b{width:29.987468pt;}
._1c{width:31.330133pt;}
.fs0{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs1{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.506646pt;}
.y66{bottom:104.586625pt;}
.yf8{bottom:108.266623pt;}
.y115{bottom:112.906622pt;}
.y46{bottom:114.186621pt;}
.y12a{bottom:116.106620pt;}
.y75{bottom:116.266620pt;}
.ya7{bottom:126.026616pt;}
.y28{bottom:127.626616pt;}
.yc0{bottom:129.706615pt;}
.y65{bottom:132.266614pt;}
.y129{bottom:134.506613pt;}
.yf7{bottom:135.786612pt;}
.y114{bottom:140.586610pt;}
.y45{bottom:141.706610pt;}
.y74{bottom:143.786609pt;}
.ydd{bottom:144.266609pt;}
.y89{bottom:147.946607pt;}
.y27{bottom:149.706607pt;}
.y118{bottom:151.786606pt;}
.ya6{bottom:152.746606pt;}
.y64{bottom:159.786603pt;}
.yf6{bottom:163.466601pt;}
.y128{bottom:163.626601pt;}
.ybf{bottom:165.386601pt;}
.y113{bottom:168.106599pt;}
.y44{bottom:169.386599pt;}
.y26{bottom:171.786598pt;}
.y88{bottom:174.506597pt;}
.y73{bottom:179.466595pt;}
.y127{bottom:182.026594pt;}
.y63{bottom:187.466592pt;}
.yf5{bottom:190.986590pt;}
.ybe{bottom:192.906590pt;}
.y25{bottom:193.866589pt;}
.y112{bottom:195.786588pt;}
.y43{bottom:196.906588pt;}
.ydc{bottom:199.466587pt;}
.y87{bottom:201.226586pt;}
.ya5{bottom:206.186584pt;}
.y72{bottom:206.986584pt;}
.y126{bottom:210.986582pt;}
.y62{bottom:214.986581pt;}
.y24{bottom:215.946580pt;}
.yf4{bottom:218.666579pt;}
.ybd{bottom:220.586578pt;}
.y111{bottom:223.306577pt;}
.y42{bottom:224.586577pt;}
.ydb{bottom:226.986576pt;}
.y86{bottom:227.946575pt;}
.y125{bottom:229.386575pt;}
.ya4{bottom:232.746574pt;}
.y71{bottom:234.666573pt;}
.y23{bottom:238.026571pt;}
.y61{bottom:242.666570pt;}
.ybc{bottom:248.106567pt;}
.y110{bottom:250.986566pt;}
.yf3{bottom:254.186565pt;}
.y85{bottom:254.666565pt;}
.y124{bottom:258.506563pt;}
.y22{bottom:260.106563pt;}
.y70{bottom:262.186562pt;}
.yda{bottom:262.666562pt;}
.ya3{bottom:267.466560pt;}
.y60{bottom:270.186559pt;}
.ybb{bottom:275.786556pt;}
.y123{bottom:276.906556pt;}
.y10f{bottom:278.506555pt;}
.yf2{bottom:281.866554pt;}
.y21{bottom:282.186554pt;}
.y41{bottom:287.786552pt;}
.y84{bottom:289.226551pt;}
.y6f{bottom:289.866551pt;}
.yd9{bottom:290.186551pt;}
.ya2{bottom:294.186549pt;}
.y5f{bottom:297.866548pt;}
.y20{bottom:304.266545pt;}
.y122{bottom:306.026544pt;}
.yf1{bottom:309.386543pt;}
.yba{bottom:311.306542pt;}
.y10e{bottom:314.186541pt;}
.y40{bottom:315.306541pt;}
.y83{bottom:315.946540pt;}
.yd8{bottom:317.866540pt;}
.ya1{bottom:320.906538pt;}
.y5e{bottom:325.386537pt;}
.y1f{bottom:326.346536pt;}
.y121{bottom:334.986533pt;}
.yf0{bottom:337.066532pt;}
.yb9{bottom:338.986531pt;}
.y10d{bottom:341.706530pt;}
.y82{bottom:342.666530pt;}
.y3f{bottom:342.986529pt;}
.yd7{bottom:345.386529pt;}
.ya0{bottom:347.466528pt;}
.y1e{bottom:348.426527pt;}
.y67{bottom:353.066525pt;}
.y5d{bottom:361.066522pt;}
.y120{bottom:364.106521pt;}
.yef{bottom:364.586521pt;}
.yb8{bottom:366.506520pt;}
.y81{bottom:369.386519pt;}
.y1d{bottom:370.506518pt;}
.yd6{bottom:373.066517pt;}
.y9f{bottom:374.186517pt;}
.y6e{bottom:380.586514pt;}
.y11f{bottom:382.506514pt;}
.y5c{bottom:388.586511pt;}
.y1c{bottom:392.586510pt;}
.yb7{bottom:394.186509pt;}
.y80{bottom:395.946508pt;}
.y10c{bottom:396.906508pt;}
.yee{bottom:400.266507pt;}
.yd5{bottom:400.586506pt;}
.y9e{bottom:400.906506pt;}
.y3e{bottom:406.186504pt;}
.y6d{bottom:408.266503pt;}
.y11e{bottom:411.626502pt;}
.y1b{bottom:414.666501pt;}
.y5b{bottom:416.266500pt;}
.yb6{bottom:421.706498pt;}
.y7f{bottom:422.666498pt;}
.y10b{bottom:424.586497pt;}
.y9d{bottom:427.626496pt;}
.yed{bottom:427.786496pt;}
.y11d{bottom:430.026495pt;}
.y3d{bottom:433.706493pt;}
.y6c{bottom:435.786492pt;}
.yd4{bottom:436.266492pt;}
.y1a{bottom:436.746492pt;}
.y5a{bottom:443.786489pt;}
.yb5{bottom:449.386487pt;}
.y10a{bottom:452.106486pt;}
.yec{bottom:455.466484pt;}
.y7e{bottom:457.386484pt;}
.y19{bottom:458.826483pt;}
.y11c{bottom:458.986483pt;}
.y3c{bottom:461.386482pt;}
.y9c{bottom:462.186482pt;}
.y117{bottom:463.466481pt;}
.yd3{bottom:463.786481pt;}
.y59{bottom:471.466478pt;}
.yb4{bottom:476.906476pt;}
.y13e{bottom:478.986475pt;}
.y109{bottom:479.786475pt;}
.yeb{bottom:482.986473pt;}
.y7d{bottom:484.106473pt;}
.y11b{bottom:488.106471pt;}
.y18{bottom:488.906471pt;}
.yd2{bottom:491.466470pt;}
.y58{bottom:498.986467pt;}
.y13d{bottom:508.106463pt;}
.y7c{bottom:510.666462pt;}
.y17{bottom:510.986462pt;}
.yb3{bottom:512.586462pt;}
.y108{bottom:515.306461pt;}
.y9b{bottom:515.626460pt;}
.y3b{bottom:516.586460pt;}
.y11a{bottom:517.226460pt;}
.yd1{bottom:518.986459pt;}
.y13c{bottom:526.506456pt;}
.y57{bottom:526.666456pt;}
.y16{bottom:533.066453pt;}
.y7b{bottom:537.386452pt;}
.yb2{bottom:540.106451pt;}
.y9a{bottom:542.186450pt;}
.y107{bottom:542.826450pt;}
.y3a{bottom:544.106449pt;}
.yea{bottom:546.186448pt;}
.yd0{bottom:546.666448pt;}
.y56{bottom:554.186445pt;}
.y15{bottom:555.146445pt;}
.y13b{bottom:555.626444pt;}
.y7a{bottom:564.106441pt;}
.yb1{bottom:567.786440pt;}
.y99{bottom:568.906439pt;}
.y106{bottom:570.506438pt;}
.ye9{bottom:573.866437pt;}
.y13a{bottom:574.026437pt;}
.ycf{bottom:574.186437pt;}
.y14{bottom:577.226436pt;}
.y39{bottom:579.626435pt;}
.y6b{bottom:581.866434pt;}
.y55{bottom:589.866431pt;}
.y79{bottom:590.666430pt;}
.yb0{bottom:595.306429pt;}
.y98{bottom:595.626428pt;}
.y105{bottom:598.026427pt;}
.y13{bottom:599.306427pt;}
.ye8{bottom:601.386426pt;}
.yce{bottom:601.706426pt;}
.y139{bottom:602.986425pt;}
.y38{bottom:607.306424pt;}
.y6a{bottom:609.386423pt;}
.y54{bottom:617.386420pt;}
.y12{bottom:621.386418pt;}
.yaf{bottom:622.986417pt;}
.y104{bottom:625.706416pt;}
.ye7{bottom:629.066415pt;}
.ycd{bottom:629.386415pt;}
.y97{bottom:630.346415pt;}
.y37{bottom:634.826413pt;}
.y116{bottom:637.066412pt;}
.y11{bottom:643.466409pt;}
.y53{bottom:645.066409pt;}
.yae{bottom:650.506406pt;}
.y103{bottom:653.226405pt;}
.ye6{bottom:656.586404pt;}
.y96{bottom:656.906404pt;}
.y36{bottom:662.506402pt;}
.y119{bottom:664.586401pt;}
.ycc{bottom:664.906401pt;}
.y10{bottom:665.546400pt;}
.y138{bottom:668.906399pt;}
.y52{bottom:672.586398pt;}
.yad{bottom:678.186395pt;}
.y95{bottom:683.626393pt;}
.yf{bottom:687.626392pt;}
.y102{bottom:688.906391pt;}
.y35{bottom:690.026391pt;}
.ye5{bottom:692.266390pt;}
.ycb{bottom:692.586390pt;}
.y137{bottom:697.866388pt;}
.y51{bottom:700.266387pt;}
.ye{bottom:709.706383pt;}
.y94{bottom:710.346383pt;}
.yac{bottom:713.706381pt;}
.y136{bottom:716.266380pt;}
.y101{bottom:716.426380pt;}
.y34{bottom:717.706380pt;}
.ye4{bottom:719.786379pt;}
.yca{bottom:720.106379pt;}
.y50{bottom:727.786376pt;}
.yd{bottom:731.786374pt;}
.y93{bottom:737.066372pt;}
.yab{bottom:741.386370pt;}
.y100{bottom:744.106369pt;}
.y33{bottom:745.226369pt;}
.y135{bottom:745.386369pt;}
.ye3{bottom:747.466368pt;}
.yc9{bottom:747.786368pt;}
.yc{bottom:753.866365pt;}
.y4f{bottom:755.466364pt;}
.y92{bottom:763.626361pt;}
.yaa{bottom:768.906359pt;}
.yc8{bottom:769.866359pt;}
.yff{bottom:771.626358pt;}
.y32{bottom:772.906358pt;}
.y134{bottom:774.506357pt;}
.ye2{bottom:774.986357pt;}
.yb{bottom:781.546354pt;}
.y69{bottom:782.986353pt;}
.y91{bottom:790.346351pt;}
.y4e{bottom:790.986350pt;}
.yc7{bottom:791.786350pt;}
.y133{bottom:792.906350pt;}
.ya9{bottom:796.586348pt;}
.yfe{bottom:799.306347pt;}
.y31{bottom:800.426346pt;}
.ya{bottom:800.746346pt;}
.ye1{bottom:802.666346pt;}
.y68{bottom:810.666342pt;}
.yc6{bottom:815.146341pt;}
.y4d{bottom:818.666339pt;}
.y9{bottom:820.106339pt;}
.y132{bottom:821.866338pt;}
.ya8{bottom:824.106337pt;}
.y90{bottom:825.066337pt;}
.yfd{bottom:826.826336pt;}
.y30{bottom:828.106335pt;}
.ye0{bottom:830.186335pt;}
.yc5{bottom:837.066332pt;}
.y78{bottom:838.186331pt;}
.y8{bottom:839.466331pt;}
.y131{bottom:840.266331pt;}
.y4c{bottom:846.186328pt;}
.y8f{bottom:851.786326pt;}
.yfc{bottom:854.506325pt;}
.y2f{bottom:857.706324pt;}
.yc4{bottom:860.426322pt;}
.y77{bottom:865.866320pt;}
.y7{bottom:866.986320pt;}
.y130{bottom:869.386319pt;}
.y4b{bottom:873.866317pt;}
.y8e{bottom:878.346315pt;}
.yfb{bottom:882.026314pt;}
.yc3{bottom:882.346314pt;}
.y12f{bottom:887.786312pt;}
.y2e{bottom:887.946311pt;}
.y76{bottom:893.386309pt;}
.y6{bottom:896.746308pt;}
.y4a{bottom:901.386306pt;}
.y8d{bottom:905.066305pt;}
.yc2{bottom:905.706304pt;}
.yfa{bottom:909.706303pt;}
.y2d{bottom:915.466300pt;}
.y12e{bottom:916.906300pt;}
.ydf{bottom:921.066298pt;}
.y5{bottom:921.226298pt;}
.yc1{bottom:927.786296pt;}
.y49{bottom:929.066295pt;}
.yf9{bottom:930.026295pt;}
.y8c{bottom:931.786294pt;}
.y12d{bottom:935.306293pt;}
.y2c{bottom:937.546292pt;}
.yde{bottom:948.586287pt;}
.y48{bottom:956.586284pt;}
.y8b{bottom:958.506283pt;}
.y4{bottom:958.826283pt;}
.y2b{bottom:959.626283pt;}
.y12c{bottom:964.266281pt;}
.y12b{bottom:982.666274pt;}
.y47{bottom:984.266273pt;}
.y8a{bottom:985.066273pt;}
.y2a{bottom:989.706271pt;}
.y3{bottom:996.266268pt;}
.y29{bottom:1011.786262pt;}
.y1{bottom:1061.706242pt;}
.h1{height:39.243734pt;}
.h6{height:43.711983pt;}
.h7{height:45.631982pt;}
.h2{height:52.403179pt;}
.h8{height:53.389419pt;}
.h5{height:56.959977pt;}
.h4{height:66.643173pt;}
.h3{height:89.749964pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x3{left:99.199960pt;}
.xc{left:114.879875pt;}
.xd{left:119.520826pt;}
.xf{left:126.242096pt;}
.xe{left:143.200784pt;}
.x5{left:157.119994pt;}
.xb{left:174.079303pt;}
.x4{left:278.399917pt;}
.x2{left:389.440262pt;}
.x9{left:393.439640pt;}
.x6{left:396.799841pt;}
.xa{left:461.759547pt;}
.x7{left:512.799795pt;}
.x8{left:618.240173pt;}
}




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