
    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_06d67289d376f65fa2294483.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099500;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_8bcc167f5ccd7d3c686616e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_ca334f0443c5788d3d472587.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952148;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_3741edc195e2cf04c038150e.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_f60a5a34f3bc547181dfc2cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089500;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_15f5321f3f96c500dd2004e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.828000;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_0ca5a9a6a9db37815c8414f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.877930;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_e2de9c723c95ae17ac33ad94.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b1620cc191f88d374b42a907.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.680176;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.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-76.529702px;}
.vc{vertical-align:-67.500002px;}
.va{vertical-align:-59.232152px;}
.v1{vertical-align:-56.250002px;}
.v3{vertical-align:-49.500024px;}
.vb{vertical-align:-21.130201px;}
.v5{vertical-align:-15.961969px;}
.v7{vertical-align:-9.029700px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.267850px;}
.v4{vertical-align:51.538034px;}
.v6{vertical-align:67.500002px;}
.vd{vertical-align:70.148243px;}
.v2{vertical-align:139.687654px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005424px;}
.ls4{letter-spacing:0.059794px;}
.ls2{letter-spacing:0.088784px;}
.ls0{letter-spacing:0.088829px;}
.ls7{letter-spacing:0.166635px;}
.ls6{letter-spacing:107.972367px;}
.ls5{letter-spacing:107.972437px;}
.ls3{letter-spacing:107.986397px;}
.ls8{letter-spacing:108.000705px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.240001px;}
.wsd{word-spacing:-59.832002px;}
.wsa{word-spacing:-55.500000px;}
.wsb{word-spacing:-48.000003px;}
.wsc{word-spacing:-45.000001px;}
.ws0{word-spacing:-41.550000px;}
.ws7{word-spacing:-35.550000px;}
.ws2{word-spacing:-31.284002px;}
.ws6{word-spacing:-28.440002px;}
.ws1{word-spacing:-27.700001px;}
.ws3{word-spacing:-20.856002px;}
.ws8{word-spacing:-0.132000px;}
.wse{word-spacing:0.000000px;}
.ws5{word-spacing:2428.132301px;}
.ws9{word-spacing:4858.197774px;}
._8{margin-left:-55.890002px;}
._1f{margin-left:-38.507940px;}
._c{margin-left:-29.808001px;}
._2e{margin-left:-21.168001px;}
._32{margin-left:-18.966001px;}
._28{margin-left:-15.552001px;}
._9{margin-left:-13.662000px;}
._b{margin-left:-11.592000px;}
._15{margin-left:-10.230000px;}
._27{margin-left:-8.478001px;}
._6{margin-left:-7.452000px;}
._2d{margin-left:-6.336000px;}
._5{margin-left:-4.554000px;}
._3{margin-left:-3.312000px;}
._26{margin-left:-2.286000px;}
._1{margin-left:-1.242000px;}
._a{width:1.242000px;}
._0{width:2.484000px;}
._4{width:3.726000px;}
._11{width:4.932000px;}
._34{width:6.432751px;}
._2{width:7.452000px;}
._25{width:8.850000px;}
._7{width:9.936000px;}
._14{width:11.100000px;}
._12{width:12.300000px;}
._13{width:13.800000px;}
._16{width:15.600000px;}
._1c{width:18.600000px;}
._e{width:20.100000px;}
._1e{width:21.300000px;}
._d{width:22.800000px;}
._1a{width:24.000000px;}
._19{width:26.250000px;}
._2f{width:29.700001px;}
._30{width:31.500001px;}
._33{width:33.660001px;}
._18{width:38.250000px;}
._1d{width:43.200000px;}
._10{width:51.402000px;}
._f{width:54.900000px;}
._17{width:59.250000px;}
._1b{width:60.750000px;}
._31{width:65.520002px;}
._22{width:79.649999px;}
._24{width:81.299999px;}
._21{width:82.349999px;}
._20{width:92.099999px;}
._23{width:104.849999px;}
._2b{width:1032.787907px;}
._29{width:1084.556781px;}
._2c{width:1174.209868px;}
._2a{width:1287.747274px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:78.000005px;}
.fs1{font-size:84.000000px;}
.fs9{font-size:88.000009px;}
.fs5{font-size:100.000004px;}
.fsc{font-size:102.000000px;}
.fs15{font-size:108.000003px;}
.fsb{font-size:120.000010px;}
.fs8{font-size:132.000007px;}
.fs2{font-size:149.999999px;}
.fs13{font-size:174.000012px;}
.fs10{font-size:180.000006px;}
.fs11{font-size:183.564708px;}
.fs4{font-size:186.000000px;}
.fs12{font-size:192.000012px;}
.fs3{font-size:210.000013px;}
.fs14{font-size:216.000007px;}
.fsf{font-size:222.000001px;}
.fs7{font-size:240.000002px;}
.fse{font-size:258.000002px;}
.fs6{font-size:270.000009px;}
.fs16{font-size:294.000021px;}
.fs0{font-size:414.000013px;}
.fsa{font-size:420.000025px;}
.y20{bottom:-2602.656658px;}
.y27{bottom:-2571.823444px;}
.y1f{bottom:-2557.656656px;}
.y26{bottom:-2526.823443px;}
.y1e{bottom:-2512.656655px;}
.y25{bottom:-2481.823441px;}
.y1d{bottom:-2467.656653px;}
.y24{bottom:-2436.823440px;}
.y1c{bottom:-2422.656652px;}
.y2f{bottom:-2409.315951px;}
.y23{bottom:-2391.823438px;}
.y2e{bottom:-2364.315950px;}
.y22{bottom:-2346.823437px;}
.y2d{bottom:-2319.315948px;}
.y21{bottom:-2301.823435px;}
.y2c{bottom:-2274.315947px;}
.y2b{bottom:-2229.315946px;}
.y2a{bottom:-2184.315944px;}
.y29{bottom:-2139.315943px;}
.y28{bottom:-2094.315941px;}
.ya{bottom:-1638.891964px;}
.y9{bottom:-1593.891963px;}
.y8{bottom:-1548.891961px;}
.y7{bottom:-1503.891960px;}
.y6{bottom:-1458.891958px;}
.y5{bottom:-1413.891957px;}
.y4{bottom:-1368.891956px;}
.y1b{bottom:-1284.964703px;}
.y1a{bottom:-1234.744701px;}
.y19{bottom:-1184.524700px;}
.y18{bottom:-1134.304653px;}
.y17{bottom:-1084.084629px;}
.y16{bottom:-1033.864582px;}
.y15{bottom:-982.348614px;}
.y14{bottom:-876.724645px;}
.y13{bottom:-826.504666px;}
.y12{bottom:-776.284687px;}
.y11{bottom:-726.064685px;}
.y10{bottom:-675.844683px;}
.yf{bottom:-625.624659px;}
.y96{bottom:-582.641018px;}
.ye{bottom:-575.404658px;}
.y95{bottom:-537.641016px;}
.yd{bottom:-525.184656px;}
.y94{bottom:-492.641015px;}
.yc{bottom:-474.964666px;}
.y93{bottom:-447.641014px;}
.yb{bottom:-423.448675px;}
.y92{bottom:-402.641012px;}
.y91{bottom:-357.641011px;}
.y90{bottom:-312.641009px;}
.y8f{bottom:-267.641008px;}
.y0{bottom:0.000000px;}
.yad{bottom:80.448280px;}
.yac{bottom:112.848287px;}
.yab{bottom:145.248293px;}
.yae{bottom:219.778310px;}
.yaa{bottom:223.650670px;}
.y8e{bottom:259.424884px;}
.ya9{bottom:277.650672px;}
.y8d{bottom:313.424886px;}
.ya8{bottom:331.650674px;}
.y8c{bottom:367.424887px;}
.ya7{bottom:385.650676px;}
.y8b{bottom:421.424896px;}
.ya6{bottom:439.650677px;}
.y8a{bottom:475.424893px;}
.ya5{bottom:493.650686px;}
.ya4{bottom:547.650683px;}
.ya0{bottom:696.674823px;}
.y9f{bottom:750.674832px;}
.y9e{bottom:804.674829px;}
.y9d{bottom:915.409037px;}
.y97{bottom:947.047971px;}
.y9c{bottom:969.409034px;}
.y9b{bottom:1383.035439px;}
.y99{bottom:1389.466614px;}
.y9a{bottom:1437.035436px;}
.y98{bottom:1443.466612px;}
.y89{bottom:1554.293738px;}
.y88{bottom:1606.493785px;}
.y7a{bottom:1626.063790px;}
.y87{bottom:1658.693820px;}
.y79{bottom:1680.063792px;}
.y86{bottom:1710.893810px;}
.y78{bottom:1734.063794px;}
.y85{bottom:1763.093801px;}
.y77{bottom:1788.063795px;}
.y84{bottom:1815.293803px;}
.y76{bottom:1842.063804px;}
.y83{bottom:1867.493793px;}
.y75{bottom:1896.063801px;}
.y82{bottom:1919.693795px;}
.y81{bottom:1971.893785px;}
.y80{bottom:2025.173764px;}
.y7f{bottom:2100.773760px;}
.y7e{bottom:2158.373757px;}
.y74{bottom:2267.502811px;}
.y73{bottom:2321.502819px;}
.y72{bottom:2375.502817px;}
.y7d{bottom:2630.597247px;}
.y71{bottom:2664.348486px;}
.y7c{bottom:2697.197253px;}
.y6e{bottom:2704.325374px;}
.y70{bottom:2730.948492px;}
.y6d{bottom:2761.025364px;}
.y6c{bottom:2817.725366px;}
.y7b{bottom:2872.647084px;}
.y6b{bottom:2874.425368px;}
.y6f{bottom:2972.634387px;}
.y6a{bottom:3171.669620px;}
.y65{bottom:3301.323079px;}
.y51{bottom:3317.883068px;}
.y58{bottom:3319.208881px;}
.y54{bottom:3335.067635px;}
.y64{bottom:3346.863080px;}
.y50{bottom:3363.423064px;}
.y57{bottom:3364.748877px;}
.y59{bottom:3369.565453px;}
.y53{bottom:3380.607625px;}
.y63{bottom:3397.443071px;}
.y4f{bottom:3408.963060px;}
.y56{bottom:3410.288872px;}
.y52{bottom:3450.147624px;}
.y4e{bottom:3454.503061px;}
.y55{bottom:3455.828874px;}
.y4d{bottom:3538.613808px;}
.y62{bottom:3544.154766px;}
.y4b{bottom:3610.061553px;}
.y40{bottom:3614.526115px;}
.y61{bottom:3625.038003px;}
.y4a{bottom:3655.601554px;}
.y44{bottom:3657.981492px;}
.y3b{bottom:3658.362417px;}
.y3f{bottom:3660.066117px;}
.y60{bottom:3670.578004px;}
.y49{bottom:3701.141550px;}
.y43{bottom:3703.521487px;}
.y3a{bottom:3703.902412px;}
.y3e{bottom:3705.606112px;}
.y46{bottom:3712.133926px;}
.y5f{bottom:3716.118000px;}
.y48{bottom:3746.681546px;}
.y42{bottom:3749.061483px;}
.y39{bottom:3749.442408px;}
.y3d{bottom:3751.146108px;}
.y5e{bottom:3761.657996px;}
.y45{bottom:3777.383928px;}
.y47{bottom:3792.221547px;}
.y41{bottom:3794.601485px;}
.y38{bottom:3794.982410px;}
.y3c{bottom:3796.686110px;}
.y5d{bottom:3807.197998px;}
.yb1{bottom:3877.911450px;}
.yb0{bottom:3908.511451px;}
.y67{bottom:3943.400899px;}
.yaf{bottom:3950.631452px;}
.y4c{bottom:3996.396847px;}
.y68{bottom:4164.637624px;}
.y66{bottom:4168.956094px;}
.y32{bottom:4173.949366px;}
.y69{bottom:4213.916786px;}
.y31{bottom:4239.199368px;}
.y5c{bottom:4242.632698px;}
.y37{bottom:4267.521125px;}
.y36{bottom:4274.158963px;}
.y34{bottom:4278.139213px;}
.y5b{bottom:4288.172694px;}
.y35{bottom:4319.698964px;}
.y33{bottom:4323.679214px;}
.y5a{bottom:4333.712696px;}
.y30{bottom:4442.570039px;}
.ya3{bottom:4555.659689px;}
.ya2{bottom:4599.723679px;}
.ya1{bottom:4664.265347px;}
.y2{bottom:4787.795700px;}
.y1{bottom:4899.575703px;}
.y3{bottom:5024.715001px;}
.h10{height:56.100590px;}
.h2{height:75.058593px;}
.he{height:91.142578px;}
.h1b{height:96.503909px;}
.hc{height:108.174006px;}
.h8{height:109.494006px;}
.ha{height:117.949225px;}
.hd{height:124.424999px;}
.hf{height:126.248833px;}
.h17{height:127.020008px;}
.h13{height:131.400004px;}
.h14{height:134.002237px;}
.h3{height:134.033202px;}
.h15{height:140.160009px;}
.h18{height:155.478526px;}
.h1a{height:160.839849px;}
.h12{height:162.060001px;}
.h5{height:166.201172px;}
.h16{height:171.562511px;}
.h7{height:179.296876px;}
.h4{height:187.646496px;}
.h19{height:193.007819px;}
.h11{height:230.537111px;}
.h6{height:241.259773px;}
.h9{height:249.181660px;}
.h1c{height:262.705097px;}
.h1{height:343.413011px;}
.hb{height:375.292991px;}
.h0{height:5055.000000px;}
.w0{width:3576.000000px;}
.x31{left:-2577.642607px;}
.x0{left:0.000000px;}
.x3{left:10.125000px;}
.x1{left:117.920108px;}
.x48{left:120.038393px;}
.x3b{left:127.109383px;}
.x3a{left:129.094492px;}
.x3d{left:136.591537px;}
.x24{left:153.690055px;}
.x4{left:158.406496px;}
.x34{left:163.497043px;}
.x18{left:174.811200px;}
.xa{left:178.628031px;}
.x3c{left:183.094494px;}
.x1c{left:214.123808px;}
.x30{left:240.171832px;}
.x17{left:266.325531px;}
.x33{left:283.862934px;}
.x9{left:389.691474px;}
.x8{left:441.215564px;}
.x28{left:541.753521px;}
.x2a{left:575.999557px;}
.x27{left:582.059235px;}
.x26{left:589.145194px;}
.x25{left:607.885669px;}
.x2b{left:622.928157px;}
.x29{left:639.975913px;}
.x2{left:667.323921px;}
.x2c{left:877.479328px;}
.x44{left:908.817849px;}
.x7{left:1052.192621px;}
.x45{left:1066.469805px;}
.x12{left:1076.677752px;}
.xc{left:1091.635003px;}
.x43{left:1114.133886px;}
.x1d{left:1117.830287px;}
.x32{left:1138.817331px;}
.xb{left:1159.620326px;}
.x1e{left:1164.758887px;}
.x2d{left:1208.140689px;}
.x1b{left:1529.316386px;}
.x35{left:1560.880737px;}
.x13{left:1646.949416px;}
.xe{left:1654.560210px;}
.x1f{left:1672.618104px;}
.x36{left:1674.010629px;}
.x20{left:1679.689505px;}
.x14{left:1693.878017px;}
.x2e{left:1699.015779px;}
.x46{left:1719.634893px;}
.xd{left:1722.528708px;}
.x47{left:1773.634894px;}
.x42{left:1818.405958px;}
.x41{left:1833.814971px;}
.x6{left:1893.770723px;}
.x5{left:1911.286524px;}
.x4b{left:1984.352913px;}
.x4c{left:2002.765958px;}
.x4a{left:2026.724368px;}
.x15{left:2129.468119px;}
.x16{left:2176.396720px;}
.x21{left:2202.182722px;}
.x10{left:2240.161339px;}
.x22{left:2249.111322px;}
.xf{left:2260.485320px;}
.x37{left:2339.344425px;}
.x40{left:2422.974003px;}
.x2f{left:2448.912791px;}
.x39{left:2534.387706px;}
.x3f{left:2653.848422px;}
.x19{left:2687.618775px;}
.x1a{left:2734.547375px;}
.x23{left:2772.613765px;}
.x11{left:2803.758896px;}
.x38{left:2853.319591px;}
.x49{left:3384.914655px;}
.x3e{left:4496.870169px;}
@media print{
.v8{vertical-align:-68.026402pt;}
.vc{vertical-align:-60.000002pt;}
.va{vertical-align:-52.650802pt;}
.v1{vertical-align:-50.000002pt;}
.v3{vertical-align:-44.000021pt;}
.vb{vertical-align:-18.782401pt;}
.v5{vertical-align:-14.188416pt;}
.v7{vertical-align:-8.026400pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.349200pt;}
.v4{vertical-align:45.811585pt;}
.v6{vertical-align:60.000002pt;}
.vd{vertical-align:62.353994pt;}
.v2{vertical-align:124.166804pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004822pt;}
.ls4{letter-spacing:0.053150pt;}
.ls2{letter-spacing:0.078919pt;}
.ls0{letter-spacing:0.078959pt;}
.ls7{letter-spacing:0.148120pt;}
.ls6{letter-spacing:95.975437pt;}
.ls5{letter-spacing:95.975500pt;}
.ls3{letter-spacing:95.987908pt;}
.ls8{letter-spacing:96.000627pt;}
.ws4{word-spacing:-64.213334pt;}
.wsd{word-spacing:-53.184002pt;}
.wsa{word-spacing:-49.333334pt;}
.wsb{word-spacing:-42.666669pt;}
.wsc{word-spacing:-40.000001pt;}
.ws0{word-spacing:-36.933333pt;}
.ws7{word-spacing:-31.600000pt;}
.ws2{word-spacing:-27.808002pt;}
.ws6{word-spacing:-25.280002pt;}
.ws1{word-spacing:-24.622223pt;}
.ws3{word-spacing:-18.538669pt;}
.ws8{word-spacing:-0.117333pt;}
.wse{word-spacing:0.000000pt;}
.ws5{word-spacing:2158.339823pt;}
.ws9{word-spacing:4318.398021pt;}
._8{margin-left:-49.680002pt;}
._1f{margin-left:-34.229280pt;}
._c{margin-left:-26.496001pt;}
._2e{margin-left:-18.816001pt;}
._32{margin-left:-16.858668pt;}
._28{margin-left:-13.824001pt;}
._9{margin-left:-12.144000pt;}
._b{margin-left:-10.304000pt;}
._15{margin-left:-9.093333pt;}
._27{margin-left:-7.536001pt;}
._6{margin-left:-6.624000pt;}
._2d{margin-left:-5.632000pt;}
._5{margin-left:-4.048000pt;}
._3{margin-left:-2.944000pt;}
._26{margin-left:-2.032000pt;}
._1{margin-left:-1.104000pt;}
._a{width:1.104000pt;}
._0{width:2.208000pt;}
._4{width:3.312000pt;}
._11{width:4.384000pt;}
._34{width:5.718001pt;}
._2{width:6.624000pt;}
._25{width:7.866667pt;}
._7{width:8.832000pt;}
._14{width:9.866667pt;}
._12{width:10.933333pt;}
._13{width:12.266667pt;}
._16{width:13.866667pt;}
._1c{width:16.533333pt;}
._e{width:17.866667pt;}
._1e{width:18.933333pt;}
._d{width:20.266667pt;}
._1a{width:21.333333pt;}
._19{width:23.333333pt;}
._2f{width:26.400001pt;}
._30{width:28.000001pt;}
._33{width:29.920001pt;}
._18{width:34.000000pt;}
._1d{width:38.400000pt;}
._10{width:45.690667pt;}
._f{width:48.800000pt;}
._17{width:52.666666pt;}
._1b{width:54.000000pt;}
._31{width:58.240002pt;}
._22{width:70.799999pt;}
._24{width:72.266666pt;}
._21{width:73.199999pt;}
._20{width:81.866666pt;}
._23{width:93.199999pt;}
._2b{width:918.033695pt;}
._29{width:964.050472pt;}
._2c{width:1043.742105pt;}
._2a{width:1144.664243pt;}
.fsd{font-size:69.333338pt;}
.fs1{font-size:74.666666pt;}
.fs9{font-size:78.222230pt;}
.fs5{font-size:88.888893pt;}
.fsc{font-size:90.666667pt;}
.fs15{font-size:96.000003pt;}
.fsb{font-size:106.666675pt;}
.fs8{font-size:117.333340pt;}
.fs2{font-size:133.333332pt;}
.fs13{font-size:154.666677pt;}
.fs10{font-size:160.000005pt;}
.fs11{font-size:163.168630pt;}
.fs4{font-size:165.333333pt;}
.fs12{font-size:170.666677pt;}
.fs3{font-size:186.666678pt;}
.fs14{font-size:192.000006pt;}
.fsf{font-size:197.333334pt;}
.fs7{font-size:213.333335pt;}
.fse{font-size:229.333335pt;}
.fs6{font-size:240.000008pt;}
.fs16{font-size:261.333352pt;}
.fs0{font-size:368.000012pt;}
.fsa{font-size:373.333356pt;}
.y20{bottom:-2313.472584pt;}
.y27{bottom:-2286.065284pt;}
.y1f{bottom:-2273.472583pt;}
.y26{bottom:-2246.065282pt;}
.y1e{bottom:-2233.472582pt;}
.y25{bottom:-2206.065281pt;}
.y1d{bottom:-2193.472581pt;}
.y24{bottom:-2166.065280pt;}
.y1c{bottom:-2153.472579pt;}
.y2f{bottom:-2141.614179pt;}
.y23{bottom:-2126.065278pt;}
.y2e{bottom:-2101.614178pt;}
.y22{bottom:-2086.065277pt;}
.y2d{bottom:-2061.614176pt;}
.y21{bottom:-2046.065276pt;}
.y2c{bottom:-2021.614175pt;}
.y2b{bottom:-1981.614174pt;}
.y2a{bottom:-1941.614173pt;}
.y29{bottom:-1901.614171pt;}
.y28{bottom:-1861.614170pt;}
.ya{bottom:-1456.792857pt;}
.y9{bottom:-1416.792856pt;}
.y8{bottom:-1376.792855pt;}
.y7{bottom:-1336.792853pt;}
.y6{bottom:-1296.792852pt;}
.y5{bottom:-1256.792851pt;}
.y4{bottom:-1216.792849pt;}
.y1b{bottom:-1142.190847pt;}
.y1a{bottom:-1097.550846pt;}
.y19{bottom:-1052.910844pt;}
.y18{bottom:-1008.270803pt;}
.y17{bottom:-963.630781pt;}
.y16{bottom:-918.990740pt;}
.y15{bottom:-873.198768pt;}
.y14{bottom:-779.310795pt;}
.y13{bottom:-734.670814pt;}
.y12{bottom:-690.030833pt;}
.y11{bottom:-645.390831pt;}
.y10{bottom:-600.750830pt;}
.yf{bottom:-556.110808pt;}
.y96{bottom:-517.903127pt;}
.ye{bottom:-511.470807pt;}
.y95{bottom:-477.903126pt;}
.yd{bottom:-466.830805pt;}
.y94{bottom:-437.903124pt;}
.yc{bottom:-422.190814pt;}
.y93{bottom:-397.903123pt;}
.yb{bottom:-376.398822pt;}
.y92{bottom:-357.903122pt;}
.y91{bottom:-317.903121pt;}
.y90{bottom:-277.903119pt;}
.y8f{bottom:-237.903118pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:71.509582pt;}
.yac{bottom:100.309589pt;}
.yab{bottom:129.109594pt;}
.yae{bottom:195.358498pt;}
.yaa{bottom:198.800596pt;}
.y8e{bottom:230.599897pt;}
.ya9{bottom:246.800597pt;}
.y8d{bottom:278.599898pt;}
.ya8{bottom:294.800599pt;}
.y8c{bottom:326.599900pt;}
.ya7{bottom:342.800601pt;}
.y8b{bottom:374.599908pt;}
.ya6{bottom:390.800602pt;}
.y8a{bottom:422.599905pt;}
.ya5{bottom:438.800610pt;}
.ya4{bottom:486.800607pt;}
.ya0{bottom:619.266509pt;}
.y9f{bottom:667.266517pt;}
.y9e{bottom:715.266514pt;}
.y9d{bottom:813.696922pt;}
.y97{bottom:841.820418pt;}
.y9c{bottom:861.696919pt;}
.y9b{bottom:1229.364835pt;}
.y99{bottom:1235.081435pt;}
.y9a{bottom:1277.364832pt;}
.y98{bottom:1283.081433pt;}
.y89{bottom:1381.594434pt;}
.y88{bottom:1427.994475pt;}
.y7a{bottom:1445.390036pt;}
.y87{bottom:1474.394507pt;}
.y79{bottom:1493.390037pt;}
.y86{bottom:1520.794498pt;}
.y78{bottom:1541.390039pt;}
.y85{bottom:1567.194490pt;}
.y77{bottom:1589.390040pt;}
.y84{bottom:1613.594491pt;}
.y76{bottom:1637.390048pt;}
.y83{bottom:1659.994483pt;}
.y75{bottom:1685.390045pt;}
.y82{bottom:1706.394484pt;}
.y81{bottom:1752.794476pt;}
.y80{bottom:1800.154457pt;}
.y7f{bottom:1867.354453pt;}
.y7e{bottom:1918.554451pt;}
.y74{bottom:2015.558054pt;}
.y73{bottom:2063.558062pt;}
.y72{bottom:2111.558059pt;}
.y7d{bottom:2338.308664pt;}
.y71{bottom:2368.309765pt;}
.y7c{bottom:2397.508669pt;}
.y6e{bottom:2403.844776pt;}
.y70{bottom:2427.509770pt;}
.y6d{bottom:2454.244768pt;}
.y6c{bottom:2504.644770pt;}
.y7b{bottom:2553.464074pt;}
.y6b{bottom:2555.044771pt;}
.y6f{bottom:2642.341677pt;}
.y6a{bottom:2819.261885pt;}
.y65{bottom:2934.509403pt;}
.y51{bottom:2949.229394pt;}
.y58{bottom:2950.407894pt;}
.y54{bottom:2964.504564pt;}
.y64{bottom:2974.989405pt;}
.y50{bottom:2989.709390pt;}
.y57{bottom:2990.887890pt;}
.y59{bottom:2995.169291pt;}
.y53{bottom:3004.984556pt;}
.y63{bottom:3019.949396pt;}
.y4f{bottom:3030.189387pt;}
.y56{bottom:3031.367887pt;}
.y52{bottom:3066.797888pt;}
.y4e{bottom:3070.669388pt;}
.y55{bottom:3071.847888pt;}
.y4d{bottom:3145.434496pt;}
.y62{bottom:3150.359792pt;}
.y4b{bottom:3208.943602pt;}
.y40{bottom:3212.912102pt;}
.y61{bottom:3222.256003pt;}
.y4a{bottom:3249.423604pt;}
.y44{bottom:3251.539104pt;}
.y3b{bottom:3251.877704pt;}
.y3f{bottom:3253.392104pt;}
.y60{bottom:3262.736004pt;}
.y49{bottom:3289.903600pt;}
.y43{bottom:3292.019100pt;}
.y3a{bottom:3292.357700pt;}
.y3e{bottom:3293.872100pt;}
.y46{bottom:3299.674601pt;}
.y5f{bottom:3303.216000pt;}
.y48{bottom:3330.383596pt;}
.y42{bottom:3332.499096pt;}
.y39{bottom:3332.837696pt;}
.y3d{bottom:3334.352096pt;}
.y5e{bottom:3343.695997pt;}
.y45{bottom:3357.674603pt;}
.y47{bottom:3370.863597pt;}
.y41{bottom:3372.979097pt;}
.y38{bottom:3373.317697pt;}
.y3c{bottom:3374.832098pt;}
.y5d{bottom:3384.175998pt;}
.yb1{bottom:3447.032400pt;}
.yb0{bottom:3474.232401pt;}
.y67{bottom:3505.245244pt;}
.yaf{bottom:3511.672402pt;}
.y4c{bottom:3552.352753pt;}
.y68{bottom:3701.900110pt;}
.y66{bottom:3705.738750pt;}
.y32{bottom:3710.177214pt;}
.y69{bottom:3745.703809pt;}
.y31{bottom:3768.177216pt;}
.y5c{bottom:3771.229065pt;}
.y37{bottom:3793.352111pt;}
.y36{bottom:3799.252411pt;}
.y34{bottom:3802.790411pt;}
.y5b{bottom:3811.709062pt;}
.y35{bottom:3839.732412pt;}
.y33{bottom:3843.270413pt;}
.y5a{bottom:3852.189063pt;}
.y30{bottom:3948.951146pt;}
.ya3{bottom:4049.475279pt;}
.ya2{bottom:4088.643270pt;}
.ya1{bottom:4146.013642pt;}
.y2{bottom:4255.818400pt;}
.y1{bottom:4355.178403pt;}
.y3{bottom:4466.413334pt;}
.h10{height:49.867191pt;}
.h2{height:66.718750pt;}
.he{height:81.015625pt;}
.h1b{height:85.781253pt;}
.hc{height:96.154672pt;}
.h8{height:97.328005pt;}
.ha{height:104.843756pt;}
.hd{height:110.599999pt;}
.hf{height:112.221185pt;}
.h17{height:112.906674pt;}
.h13{height:116.800004pt;}
.h14{height:119.113100pt;}
.h3{height:119.140624pt;}
.h15{height:124.586675pt;}
.h18{height:138.203134pt;}
.h1a{height:142.968755pt;}
.h12{height:144.053334pt;}
.h5{height:147.734375pt;}
.h16{height:152.500010pt;}
.h7{height:159.375001pt;}
.h4{height:166.796885pt;}
.h19{height:171.562505pt;}
.h11{height:204.921877pt;}
.h6{height:214.453132pt;}
.h9{height:221.494809pt;}
.h1c{height:233.515642pt;}
.h1{height:305.256010pt;}
.hb{height:333.593770pt;}
.h0{height:4493.333333pt;}
.w0{width:3178.666667pt;}
.x31{left:-2291.237873pt;}
.x0{left:0.000000pt;}
.x3{left:9.000000pt;}
.x1{left:104.817873pt;}
.x48{left:106.700793pt;}
.x3b{left:112.986118pt;}
.x3a{left:114.750660pt;}
.x3d{left:121.414700pt;}
.x24{left:136.613382pt;}
.x4{left:140.805775pt;}
.x34{left:145.330705pt;}
.x18{left:155.387733pt;}
.xa{left:158.780472pt;}
.x3c{left:162.750661pt;}
.x1c{left:190.332274pt;}
.x30{left:213.486073pt;}
.x17{left:236.733806pt;}
.x33{left:252.322608pt;}
.x9{left:346.392421pt;}
.x8{left:392.191613pt;}
.x28{left:481.558685pt;}
.x2a{left:511.999606pt;}
.x27{left:517.385987pt;}
.x26{left:523.684617pt;}
.x25{left:540.342817pt;}
.x2b{left:553.713918pt;}
.x29{left:568.867478pt;}
.x2{left:593.176819pt;}
.x2c{left:779.981625pt;}
.x44{left:807.838088pt;}
.x7{left:935.282330pt;}
.x45{left:947.973160pt;}
.x12{left:957.046891pt;}
.xc{left:970.342225pt;}
.x43{left:990.341232pt;}
.x1d{left:993.626922pt;}
.x32{left:1012.282072pt;}
.xb{left:1030.773623pt;}
.x1e{left:1035.341233pt;}
.x2d{left:1073.902834pt;}
.x1b{left:1359.392344pt;}
.x35{left:1387.449544pt;}
.x13{left:1463.955037pt;}
.xe{left:1470.720187pt;}
.x1f{left:1486.771648pt;}
.x36{left:1488.009448pt;}
.x20{left:1493.057338pt;}
.x14{left:1505.669348pt;}
.x2e{left:1510.236248pt;}
.x46{left:1528.564349pt;}
.xd{left:1531.136629pt;}
.x47{left:1576.564350pt;}
.x42{left:1616.360852pt;}
.x41{left:1630.057752pt;}
.x6{left:1683.351754pt;}
.x5{left:1698.921354pt;}
.x4b{left:1763.869256pt;}
.x4c{left:1780.236407pt;}
.x4a{left:1801.532772pt;}
.x15{left:1892.860551pt;}
.x16{left:1934.574862pt;}
.x21{left:1957.495753pt;}
.x10{left:1991.254524pt;}
.x22{left:1999.210064pt;}
.xf{left:2009.320284pt;}
.x37{left:2079.417267pt;}
.x40{left:2153.754669pt;}
.x2f{left:2176.811370pt;}
.x39{left:2252.789072pt;}
.x3f{left:2358.976375pt;}
.x19{left:2388.994466pt;}
.x1a{left:2430.708778pt;}
.x23{left:2464.545569pt;}
.x11{left:2492.230130pt;}
.x38{left:2536.284081pt;}
.x49{left:3008.813026pt;}
.x3e{left:3997.217928pt;}
}




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