
    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_2337cfa1002cbc4429155564.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122070;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_fe8e4f9b529e37a3a3e45a2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_b1cf6bbfe480203cd873dfae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_0c7afc516ce5ce022336917d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c9e6960ef4fa02089b883754.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_ee6a799cba6220a55840e0f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.126953;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_547be228e8102365c39e2975.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_43e3b876426907083cdea462.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.122070;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_bccf5f7f9bc5f7c8cf42ad7f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.122070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.165780px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.561525px;}
.v1{vertical-align:26.352948px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-15.187500px;}
.ws1{word-spacing:-12.788086px;}
.ws2{word-spacing:-9.112500px;}
.ws3{word-spacing:-8.100000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-16.561938px;}
._5{margin-left:-15.115430px;}
._4{margin-left:-5.774405px;}
._6{margin-left:-4.737767px;}
._3{margin-left:-3.559580px;}
._2{margin-left:-2.373047px;}
._0{margin-left:-1.318358px;}
._1{width:1.133792px;}
._7{width:60.380859px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:28.800000px;}
.fs6{font-size:32.399999px;}
.fs3{font-size:39.600001px;}
.fs8{font-size:41.999999px;}
.fs5{font-size:48.000002px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yac{bottom:22.145873px;}
.y34{bottom:22.146239px;}
.yfb{bottom:22.146241px;}
.y125{bottom:22.146973px;}
.y2{bottom:40.921875px;}
.y31{bottom:58.124993px;}
.y33{bottom:58.928832px;}
.yfa{bottom:58.929199px;}
.y30{bottom:77.320315px;}
.y67{bottom:78.266603px;}
.y10e{bottom:110.532714px;}
.y8a{bottom:110.894524px;}
.ya8{bottom:110.894525px;}
.y124{bottom:116.500488px;}
.y2f{bottom:121.356721px;}
.y10d{bottom:123.237303px;}
.ya7{bottom:125.414056px;}
.y66{bottom:127.475835px;}
.y89{bottom:130.205500px;}
.y123{bottom:135.284180px;}
.yd6{bottom:135.284548px;}
.ya6{bottom:139.933588px;}
.y2e{bottom:140.141333px;}
.y10c{bottom:141.095155px;}
.y65{bottom:146.260260px;}
.yd5{bottom:154.069336px;}
.ya5{bottom:154.453119px;}
.y2d{bottom:158.925929px;}
.yf8{bottom:165.044674px;}
.y88{bottom:165.044685px;}
.y64{bottom:165.045032px;}
.ya4{bottom:168.972650px;}
.yd4{bottom:172.853760px;}
.y122{bottom:172.854490px;}
.y2c{bottom:177.710627px;}
.y63{bottom:183.829473px;}
.yf7{bottom:183.829830px;}
.y10b{bottom:183.829840px;}
.ya3{bottom:188.283624px;}
.y121{bottom:191.638913px;}
.yd3{bottom:191.638915px;}
.y2b{bottom:196.495231px;}
.yab{bottom:198.011709px;}
.y62{bottom:202.614250px;}
.yf6{bottom:202.614258px;}
.y10a{bottom:202.614260px;}
.yd2{bottom:210.423335px;}
.y120{bottom:210.423337px;}
.yaa{bottom:212.531242px;}
.y2a{bottom:215.279934px;}
.y109{bottom:221.398683px;}
.yf5{bottom:221.398685px;}
.y61{bottom:221.399042px;}
.yd1{bottom:229.207758px;}
.y11f{bottom:229.207765px;}
.ya9{bottom:231.842218px;}
.y29{bottom:234.064539px;}
.y60{bottom:240.183466px;}
.y87{bottom:240.183835px;}
.yf4{bottom:240.183840px;}
.y11e{bottom:247.992189px;}
.yd0{bottom:247.992916px;}
.y28{bottom:252.849146px;}
.y5f{bottom:258.968255px;}
.yf3{bottom:258.968265px;}
.ycf{bottom:266.777340px;}
.y11d{bottom:266.777345px;}
.y27{bottom:271.633845px;}
.y5e{bottom:277.752678px;}
.ya2{bottom:277.752692px;}
.yf2{bottom:277.753425px;}
.yce{bottom:285.562140px;}
.y11c{bottom:285.562500px;}
.y26{bottom:290.272426px;}
.y108{bottom:296.537105px;}
.yf1{bottom:296.537115px;}
.y5d{bottom:296.537469px;}
.ya1{bottom:296.537485px;}
.y11b{bottom:304.346195px;}
.ycd{bottom:304.346551px;}
.y5c{bottom:315.322260px;}
.yf0{bottom:315.322270px;}
.ya0{bottom:315.322274px;}
.ycc{bottom:323.130975px;}
.y11a{bottom:323.131350px;}
.y5b{bottom:334.106685px;}
.yef{bottom:334.106690px;}
.y9f{bottom:334.106698px;}
.y25{bottom:338.963303px;}
.y119{bottom:341.915032px;}
.ycb{bottom:341.915775px;}
.yee{bottom:352.891113px;}
.y107{bottom:352.891114px;}
.y86{bottom:352.891117px;}
.y9e{bottom:352.891119px;}
.y5a{bottom:352.891474px;}
.y24{bottom:357.748001px;}
.yca{bottom:360.700190px;}
.y59{bottom:371.675897px;}
.y85{bottom:371.675910px;}
.yed{bottom:371.676271px;}
.y23{bottom:376.532588px;}
.yc9{bottom:379.485345px;}
.y118{bottom:379.485348px;}
.y58{bottom:390.460681px;}
.y9d{bottom:390.460695px;}
.y84{bottom:390.460698px;}
.y22{bottom:395.317292px;}
.yc8{bottom:398.269770px;}
.yec{bottom:409.245120px;}
.y9c{bottom:409.245479px;}
.y57{bottom:409.245484px;}
.y83{bottom:409.245489px;}
.y21{bottom:414.101904px;}
.yc7{bottom:417.054195px;}
.y56{bottom:428.029907px;}
.y106{bottom:428.030266px;}
.y82{bottom:428.030280px;}
.y20{bottom:432.886499px;}
.yc6{bottom:435.839355px;}
.y81{bottom:446.814690px;}
.y55{bottom:446.814700px;}
.y9b{bottom:446.814705px;}
.y1f{bottom:451.671164px;}
.yc5{bottom:454.477666px;}
.y117{bottom:454.623780px;}
.y105{bottom:465.599115px;}
.y54{bottom:465.599120px;}
.y80{bottom:465.599124px;}
.y1e{bottom:470.455862px;}
.y116{bottom:473.408205px;}
.y53{bottom:484.383913px;}
.y7f{bottom:484.383915px;}
.yeb{bottom:484.384275px;}
.y1d{bottom:489.240518px;}
.y115{bottom:492.046876px;}
.yea{bottom:503.167965px;}
.yc4{bottom:503.168329px;}
.y52{bottom:503.168701px;}
.y1c{bottom:508.025122px;}
.yc3{bottom:521.953114px;}
.y51{bottom:521.953125px;}
.y7e{bottom:521.953305px;}
.y1b{bottom:526.809730px;}
.yc2{bottom:540.737537px;}
.y9a{bottom:540.737550px;}
.y7d{bottom:540.737729px;}
.y50{bottom:540.737910px;}
.y1a{bottom:545.594381px;}
.y7c{bottom:559.522335px;}
.y4f{bottom:559.522338px;}
.yc1{bottom:559.522699px;}
.ye9{bottom:559.522711px;}
.y19{bottom:564.379080px;}
.yc0{bottom:578.307124px;}
.y4e{bottom:578.307129px;}
.y99{bottom:578.307130px;}
.y7b{bottom:578.307135px;}
.y18{bottom:583.163730px;}
.ybf{bottom:597.091547px;}
.ye8{bottom:597.091550px;}
.y114{bottom:597.091560px;}
.y98{bottom:597.091919px;}
.y4d{bottom:597.091920px;}
.y17{bottom:601.948339px;}
.y4c{bottom:615.876343px;}
.y7a{bottom:615.876525px;}
.ybe{bottom:615.876700px;}
.ye7{bottom:615.876705px;}
.y97{bottom:615.876708px;}
.y16{bottom:620.732952px;}
.y133{bottom:634.643550px;}
.y79{bottom:634.660950px;}
.ye6{bottom:634.661116px;}
.ybd{bottom:634.661129px;}
.y4b{bottom:634.661131px;}
.y104{bottom:634.661135px;}
.y15{bottom:639.517651px;}
.y132{bottom:653.282954px;}
.y4a{bottom:653.445555px;}
.ybc{bottom:653.445918px;}
.ye5{bottom:653.446288px;}
.y103{bottom:653.446293px;}
.y14{bottom:658.302263px;}
.ye4{bottom:672.229973px;}
.y113{bottom:672.229980px;}
.y102{bottom:672.229985px;}
.y96{bottom:672.230340px;}
.y78{bottom:672.230342px;}
.y49{bottom:672.230353px;}
.y13{bottom:677.086953px;}
.ybb{bottom:691.014765px;}
.y77{bottom:691.015135px;}
.y48{bottom:691.015141px;}
.y12{bottom:695.871557px;}
.y131{bottom:701.973625px;}
.y95{bottom:709.799552px;}
.ye3{bottom:709.799555px;}
.y47{bottom:709.799565px;}
.y76{bottom:709.799739px;}
.y11{bottom:714.656161px;}
.y130{bottom:720.758048px;}
.ye2{bottom:728.583978px;}
.yba{bottom:728.583980px;}
.y94{bottom:728.583985px;}
.y112{bottom:728.583990px;}
.y75{bottom:728.584162px;}
.y46{bottom:728.584348px;}
.y10{bottom:733.440864px;}
.y12f{bottom:739.543939px;}
.y45{bottom:747.368769px;}
.y93{bottom:747.368777px;}
.ye1{bottom:747.369136px;}
.yb9{bottom:747.369138px;}
.yf{bottom:752.225469px;}
.y12e{bottom:758.327630px;}
.y44{bottom:766.153560px;}
.y92{bottom:766.153570px;}
.ye{bottom:771.010169px;}
.y12d{bottom:777.112788px;}
.yb8{bottom:784.937985px;}
.ye0{bottom:784.937988px;}
.y43{bottom:784.938359px;}
.y74{bottom:784.938360px;}
.yd{bottom:789.794775px;}
.y12c{bottom:795.896480px;}
.y42{bottom:803.722783px;}
.y73{bottom:803.722967px;}
.yb7{bottom:803.723143px;}
.y111{bottom:803.723145px;}
.y91{bottom:803.723148px;}
.ydf{bottom:803.723150px;}
.yc{bottom:808.433400px;}
.y12b{bottom:814.681635px;}
.y72{bottom:822.507391px;}
.yde{bottom:822.507556px;}
.yb6{bottom:822.507566px;}
.y41{bottom:822.507571px;}
.ydd{bottom:841.291990px;}
.y40{bottom:841.291995px;}
.y71{bottom:841.292000px;}
.yb5{bottom:841.292350px;}
.y12a{bottom:851.466798px;}
.yb{bottom:857.124273px;}
.yb4{bottom:860.076779px;}
.y90{bottom:860.076780px;}
.y3f{bottom:860.076783px;}
.y70{bottom:860.076787px;}
.ydc{bottom:860.077151px;}
.y101{bottom:860.077153px;}
.y110{bottom:860.077155px;}
.y129{bottom:870.251221px;}
.ya{bottom:875.908949px;}
.ydb{bottom:878.860837px;}
.y100{bottom:878.860845px;}
.yb3{bottom:878.861203px;}
.y3e{bottom:878.861481px;}
.y8f{bottom:878.861568px;}
.y6f{bottom:878.861578px;}
.y128{bottom:889.035645px;}
.y9{bottom:894.693555px;}
.y8e{bottom:897.645991px;}
.yff{bottom:897.645995px;}
.y3d{bottom:897.645996px;}
.y6e{bottom:897.646185px;}
.y8{bottom:913.478205px;}
.yb2{bottom:916.430415px;}
.yda{bottom:916.430418px;}
.yfe{bottom:916.430421px;}
.y8d{bottom:916.430432px;}
.y6d{bottom:916.430610px;}
.y3c{bottom:916.430786px;}
.y127{bottom:924.093752px;}
.y7{bottom:932.262840px;}
.y6c{bottom:935.215208px;}
.y3b{bottom:935.215302px;}
.yd9{bottom:935.215576px;}
.yb1{bottom:935.215579px;}
.y6{bottom:951.047493px;}
.y3a{bottom:954.000000px;}
.y5{bottom:969.832146px;}
.yb0{bottom:972.784422px;}
.yd8{bottom:972.784424px;}
.y10f{bottom:972.784425px;}
.y39{bottom:972.784698px;}
.y6b{bottom:972.784794px;}
.y4{bottom:988.470774px;}
.y126{bottom:991.568847px;}
.y38{bottom:991.569213px;}
.y6a{bottom:991.569398px;}
.yaf{bottom:991.569580px;}
.y8c{bottom:991.569582px;}
.y69{bottom:1010.353821px;}
.y37{bottom:1010.354003px;}
.yae{bottom:1010.354004px;}
.y8b{bottom:1010.354007px;}
.y68{bottom:1029.138428px;}
.y36{bottom:1029.138519px;}
.yad{bottom:1029.138794px;}
.yfd{bottom:1029.139159px;}
.yd7{bottom:1029.139162px;}
.y3{bottom:1037.015627px;}
.yfc{bottom:1047.922851px;}
.y35{bottom:1047.923219px;}
.yf9{bottom:1061.000976px;}
.y32{bottom:1061.001344px;}
.y1{bottom:1080.000000px;}
.ha{height:26.100000px;}
.hf{height:38.062499px;}
.hb{height:43.500001px;}
.h6{height:43.681640px;}
.h7{height:43.989259px;}
.h2{height:48.937500px;}
.hc{height:50.924003px;}
.hd{height:50.924011px;}
.h9{height:50.924024px;}
.h3{height:59.812501px;}
.h5{height:62.240449px;}
.h4{height:65.250000px;}
.h1{height:108.000000px;}
.h8{height:126.998656px;}
.he{height:126.999024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x5{left:135.000000px;}
.xa{left:162.000000px;}
.x6{left:189.000000px;}
.x7{left:216.000000px;}
.x8{left:243.000000px;}
.x9{left:270.000000px;}
.x4{left:496.895445px;}
.x1{left:510.462158px;}
.x3{left:801.660960px;}
@media print{
.v3{vertical-align:-17.036249pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.165800pt;}
.v1{vertical-align:23.424843pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-13.500000pt;}
.ws1{word-spacing:-11.367188pt;}
.ws2{word-spacing:-8.100000pt;}
.ws3{word-spacing:-7.200000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-14.721723pt;}
._5{margin-left:-13.435938pt;}
._4{margin-left:-5.132804pt;}
._6{margin-left:-4.211348pt;}
._3{margin-left:-3.164071pt;}
._2{margin-left:-2.109375pt;}
._0{margin-left:-1.171874pt;}
._1{width:1.007815pt;}
._7{width:53.671875pt;}
.fs7{font-size:25.600000pt;}
.fs6{font-size:28.799999pt;}
.fs3{font-size:35.200001pt;}
.fs8{font-size:37.333332pt;}
.fs5{font-size:42.666668pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:19.685220pt;}
.y34{bottom:19.685546pt;}
.yfb{bottom:19.685547pt;}
.y125{bottom:19.686198pt;}
.y2{bottom:36.375000pt;}
.y31{bottom:51.666661pt;}
.y33{bottom:52.381184pt;}
.yfa{bottom:52.381511pt;}
.y30{bottom:68.729169pt;}
.y67{bottom:69.570314pt;}
.y10e{bottom:98.251301pt;}
.y8a{bottom:98.572910pt;}
.ya8{bottom:98.572911pt;}
.y124{bottom:103.555989pt;}
.y2f{bottom:107.872641pt;}
.y10d{bottom:109.544269pt;}
.ya7{bottom:111.479161pt;}
.y66{bottom:113.311853pt;}
.y89{bottom:115.738223pt;}
.y123{bottom:120.252604pt;}
.yd6{bottom:120.252932pt;}
.ya6{bottom:124.385411pt;}
.y2e{bottom:124.570074pt;}
.y10c{bottom:125.417916pt;}
.y65{bottom:130.009120pt;}
.yd5{bottom:136.950521pt;}
.ya5{bottom:137.291661pt;}
.y2d{bottom:141.267493pt;}
.yf8{bottom:146.706377pt;}
.y88{bottom:146.706387pt;}
.y64{bottom:146.706695pt;}
.ya4{bottom:150.197911pt;}
.yd4{bottom:153.647787pt;}
.y122{bottom:153.648435pt;}
.y2c{bottom:157.965002pt;}
.y63{bottom:163.403976pt;}
.yf7{bottom:163.404293pt;}
.y10b{bottom:163.404302pt;}
.ya3{bottom:167.363221pt;}
.y121{bottom:170.345700pt;}
.yd3{bottom:170.345702pt;}
.y2b{bottom:174.662428pt;}
.yab{bottom:176.010408pt;}
.y62{bottom:180.101555pt;}
.yf6{bottom:180.101563pt;}
.y10a{bottom:180.101564pt;}
.yd2{bottom:187.042964pt;}
.y120{bottom:187.042966pt;}
.yaa{bottom:188.916659pt;}
.y2a{bottom:191.359942pt;}
.y109{bottom:196.798829pt;}
.yf5{bottom:196.798831pt;}
.y61{bottom:196.799148pt;}
.yd1{bottom:203.740229pt;}
.y11f{bottom:203.740235pt;}
.ya9{bottom:206.081972pt;}
.y29{bottom:208.057368pt;}
.y60{bottom:213.496414pt;}
.y87{bottom:213.496742pt;}
.yf4{bottom:213.496747pt;}
.y11e{bottom:220.437501pt;}
.yd0{bottom:220.438147pt;}
.y28{bottom:224.754797pt;}
.y5f{bottom:230.194004pt;}
.yf3{bottom:230.194013pt;}
.ycf{bottom:237.135413pt;}
.y11d{bottom:237.135417pt;}
.y27{bottom:241.452307pt;}
.y5e{bottom:246.891269pt;}
.ya2{bottom:246.891282pt;}
.yf2{bottom:246.891933pt;}
.yce{bottom:253.833013pt;}
.y11c{bottom:253.833333pt;}
.y26{bottom:258.019935pt;}
.y108{bottom:263.588537pt;}
.yf1{bottom:263.588547pt;}
.y5d{bottom:263.588861pt;}
.ya1{bottom:263.588876pt;}
.y11b{bottom:270.529951pt;}
.ycd{bottom:270.530267pt;}
.y5c{bottom:280.286453pt;}
.yf0{bottom:280.286462pt;}
.ya0{bottom:280.286466pt;}
.ycc{bottom:287.227533pt;}
.y11a{bottom:287.227867pt;}
.y5b{bottom:296.983720pt;}
.yef{bottom:296.983724pt;}
.y9f{bottom:296.983732pt;}
.y25{bottom:301.300713pt;}
.y119{bottom:303.924473pt;}
.ycb{bottom:303.925133pt;}
.yee{bottom:313.680989pt;}
.y107{bottom:313.680991pt;}
.y86{bottom:313.680993pt;}
.y9e{bottom:313.680995pt;}
.y5a{bottom:313.681310pt;}
.y24{bottom:317.998223pt;}
.yca{bottom:320.622391pt;}
.y59{bottom:330.378575pt;}
.y85{bottom:330.378587pt;}
.yed{bottom:330.378907pt;}
.y23{bottom:334.695633pt;}
.yc9{bottom:337.320307pt;}
.y118{bottom:337.320309pt;}
.y58{bottom:347.076161pt;}
.y9d{bottom:347.076173pt;}
.y84{bottom:347.076176pt;}
.y22{bottom:351.393148pt;}
.yc8{bottom:354.017573pt;}
.yec{bottom:363.773440pt;}
.y9c{bottom:363.773759pt;}
.y57{bottom:363.773763pt;}
.y83{bottom:363.773768pt;}
.y21{bottom:368.090581pt;}
.yc7{bottom:370.714840pt;}
.y56{bottom:380.471028pt;}
.y106{bottom:380.471347pt;}
.y82{bottom:380.471360pt;}
.y20{bottom:384.787999pt;}
.yc6{bottom:387.412760pt;}
.y81{bottom:397.168613pt;}
.y55{bottom:397.168622pt;}
.y9b{bottom:397.168626pt;}
.y1f{bottom:401.485479pt;}
.yc5{bottom:403.980148pt;}
.y117{bottom:404.110027pt;}
.y105{bottom:413.865880pt;}
.y54{bottom:413.865884pt;}
.y80{bottom:413.865888pt;}
.y1e{bottom:418.182988pt;}
.y116{bottom:420.807293pt;}
.y53{bottom:430.563478pt;}
.y7f{bottom:430.563480pt;}
.yeb{bottom:430.563800pt;}
.y1d{bottom:434.880460pt;}
.y115{bottom:437.375001pt;}
.yea{bottom:447.260413pt;}
.yc4{bottom:447.260737pt;}
.y52{bottom:447.261067pt;}
.y1c{bottom:451.577886pt;}
.yc3{bottom:463.958324pt;}
.y51{bottom:463.958333pt;}
.y7e{bottom:463.958493pt;}
.y1b{bottom:468.275315pt;}
.yc2{bottom:480.655589pt;}
.y9a{bottom:480.655600pt;}
.y7d{bottom:480.655759pt;}
.y50{bottom:480.655920pt;}
.y1a{bottom:484.972783pt;}
.y7c{bottom:497.353187pt;}
.y4f{bottom:497.353189pt;}
.yc1{bottom:497.353511pt;}
.ye9{bottom:497.353521pt;}
.y19{bottom:501.670293pt;}
.yc0{bottom:514.050777pt;}
.y4e{bottom:514.050781pt;}
.y99{bottom:514.050782pt;}
.y7b{bottom:514.050787pt;}
.y18{bottom:518.367760pt;}
.ybf{bottom:530.748042pt;}
.ye8{bottom:530.748044pt;}
.y114{bottom:530.748053pt;}
.y98{bottom:530.748372pt;}
.y4d{bottom:530.748373pt;}
.y17{bottom:535.065190pt;}
.y4c{bottom:547.445638pt;}
.y7a{bottom:547.445800pt;}
.ybe{bottom:547.445956pt;}
.ye7{bottom:547.445960pt;}
.y97{bottom:547.445962pt;}
.y16{bottom:551.762624pt;}
.y133{bottom:564.127600pt;}
.y79{bottom:564.143067pt;}
.ye6{bottom:564.143215pt;}
.ybd{bottom:564.143226pt;}
.y4b{bottom:564.143227pt;}
.y104{bottom:564.143231pt;}
.y15{bottom:568.460134pt;}
.y132{bottom:580.695959pt;}
.y4a{bottom:580.840493pt;}
.ybc{bottom:580.840816pt;}
.ye5{bottom:580.841145pt;}
.y103{bottom:580.841149pt;}
.y14{bottom:585.157567pt;}
.ye4{bottom:597.537754pt;}
.y113{bottom:597.537760pt;}
.y102{bottom:597.537764pt;}
.y96{bottom:597.538080pt;}
.y78{bottom:597.538082pt;}
.y49{bottom:597.538092pt;}
.y13{bottom:601.855069pt;}
.ybb{bottom:614.235347pt;}
.y77{bottom:614.235676pt;}
.y48{bottom:614.235681pt;}
.y12{bottom:618.552495pt;}
.y131{bottom:623.976555pt;}
.y95{bottom:630.932935pt;}
.ye3{bottom:630.932938pt;}
.y47{bottom:630.932947pt;}
.y76{bottom:630.933102pt;}
.y11{bottom:635.249921pt;}
.y130{bottom:640.673820pt;}
.ye2{bottom:647.630203pt;}
.yba{bottom:647.630204pt;}
.y94{bottom:647.630209pt;}
.y112{bottom:647.630213pt;}
.y75{bottom:647.630367pt;}
.y46{bottom:647.630532pt;}
.y10{bottom:651.947435pt;}
.y12f{bottom:657.372390pt;}
.y45{bottom:664.327795pt;}
.y93{bottom:664.327802pt;}
.ye1{bottom:664.328121pt;}
.yb9{bottom:664.328122pt;}
.yf{bottom:668.644861pt;}
.y12e{bottom:674.069004pt;}
.y44{bottom:681.025387pt;}
.y92{bottom:681.025396pt;}
.ye{bottom:685.342372pt;}
.y12d{bottom:690.766922pt;}
.yb8{bottom:697.722653pt;}
.ye0{bottom:697.722656pt;}
.y43{bottom:697.722986pt;}
.y74{bottom:697.722987pt;}
.yd{bottom:702.039800pt;}
.y12c{bottom:707.463537pt;}
.y42{bottom:714.420252pt;}
.y73{bottom:714.420415pt;}
.yb7{bottom:714.420571pt;}
.y111{bottom:714.420573pt;}
.y91{bottom:714.420576pt;}
.ydf{bottom:714.420578pt;}
.yc{bottom:718.607467pt;}
.y12b{bottom:724.161453pt;}
.y72{bottom:731.117681pt;}
.yde{bottom:731.117828pt;}
.yb6{bottom:731.117836pt;}
.y41{bottom:731.117841pt;}
.ydd{bottom:747.815102pt;}
.y40{bottom:747.815107pt;}
.y71{bottom:747.815111pt;}
.yb5{bottom:747.815422pt;}
.y12a{bottom:756.859376pt;}
.yb{bottom:761.888243pt;}
.yb4{bottom:764.512692pt;}
.y90{bottom:764.512693pt;}
.y3f{bottom:764.512696pt;}
.y70{bottom:764.512700pt;}
.ydc{bottom:764.513023pt;}
.y101{bottom:764.513025pt;}
.y110{bottom:764.513027pt;}
.y129{bottom:773.556641pt;}
.ya{bottom:778.585732pt;}
.ydb{bottom:781.209633pt;}
.y100{bottom:781.209640pt;}
.yb3{bottom:781.209958pt;}
.y3e{bottom:781.210206pt;}
.y8f{bottom:781.210282pt;}
.y6f{bottom:781.210292pt;}
.y128{bottom:790.253907pt;}
.y9{bottom:795.283160pt;}
.y8e{bottom:797.907547pt;}
.yff{bottom:797.907551pt;}
.y3d{bottom:797.907552pt;}
.y6e{bottom:797.907720pt;}
.y8{bottom:811.980627pt;}
.yb2{bottom:814.604813pt;}
.yda{bottom:814.604816pt;}
.yfe{bottom:814.604819pt;}
.y8d{bottom:814.604828pt;}
.y6d{bottom:814.604987pt;}
.y3c{bottom:814.605143pt;}
.y127{bottom:821.416668pt;}
.y7{bottom:828.678080pt;}
.y6c{bottom:831.302407pt;}
.y3b{bottom:831.302491pt;}
.yd9{bottom:831.302734pt;}
.yb1{bottom:831.302737pt;}
.y6{bottom:845.375549pt;}
.y3a{bottom:848.000000pt;}
.y5{bottom:862.073019pt;}
.yb0{bottom:864.697264pt;}
.yd8{bottom:864.697265pt;}
.y10f{bottom:864.697267pt;}
.y39{bottom:864.697510pt;}
.y6b{bottom:864.697594pt;}
.y4{bottom:878.640688pt;}
.y126{bottom:881.394531pt;}
.y38{bottom:881.394856pt;}
.y6a{bottom:881.395020pt;}
.yaf{bottom:881.395182pt;}
.y8c{bottom:881.395184pt;}
.y69{bottom:898.092285pt;}
.y37{bottom:898.092447pt;}
.yae{bottom:898.092448pt;}
.y8b{bottom:898.092450pt;}
.y68{bottom:914.789713pt;}
.y36{bottom:914.789795pt;}
.yad{bottom:914.790039pt;}
.yfd{bottom:914.790364pt;}
.yd7{bottom:914.790366pt;}
.y3{bottom:921.791668pt;}
.yfc{bottom:931.486979pt;}
.y35{bottom:931.487305pt;}
.yf9{bottom:943.111979pt;}
.y32{bottom:943.112305pt;}
.y1{bottom:960.000000pt;}
.ha{height:23.200000pt;}
.hf{height:33.833332pt;}
.hb{height:38.666668pt;}
.h6{height:38.828124pt;}
.h7{height:39.101563pt;}
.h2{height:43.500000pt;}
.hc{height:45.265780pt;}
.hd{height:45.265787pt;}
.h9{height:45.265799pt;}
.h3{height:53.166668pt;}
.h5{height:55.324844pt;}
.h4{height:58.000000pt;}
.h1{height:96.000000pt;}
.h8{height:112.887695pt;}
.he{height:112.888021pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x5{left:120.000000pt;}
.xa{left:144.000000pt;}
.x6{left:168.000000pt;}
.x7{left:192.000000pt;}
.x8{left:216.000000pt;}
.x9{left:240.000000pt;}
.x4{left:441.684840pt;}
.x1{left:453.744140pt;}
.x3{left:712.587520pt;}
}




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