
    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_fa4b1111ad994240c9f4248c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_36c6a5448401237afbbd9c0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_37c7fa4433acdd14f11d9fb9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_f20807c5f7148fb39cd0ba8d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006836;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_8194d41c0ca3b7ea6f436930.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_71d6e6e562378ce71d9df3cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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);}
.v1{vertical-align:-33.120072px;}
.v2{vertical-align:-20.879932px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.051669px;}
.ls3{letter-spacing:0.051682px;}
.ls4{letter-spacing:0.265028px;}
.ls1{letter-spacing:0.358848px;}
.ls5{letter-spacing:0.364705px;}
.ls0{letter-spacing:2.590511px;}
.ls7{letter-spacing:91.445857px;}
.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;}
}
.ws2{word-spacing:-15.840563px;}
.ws0{word-spacing:-14.970850px;}
.ws5{word-spacing:-14.940563px;}
.ws3{word-spacing:-12.060450px;}
.ws1{word-spacing:-10.440405px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-12.954649px;}
._9{margin-left:-6.908258px;}
._17{margin-left:-4.550569px;}
._3{margin-left:-3.345285px;}
._2{margin-left:-2.262991px;}
._5{margin-left:-1.048174px;}
._0{width:1.661437px;}
._1{width:3.011691px;}
._a{width:4.225451px;}
._b{width:5.545778px;}
._e{width:7.427541px;}
._d{width:8.835274px;}
._c{width:10.164447px;}
._f{width:11.874479px;}
._12{width:13.360561px;}
._16{width:16.730395px;}
._15{width:17.785339px;}
._14{width:19.008597px;}
._13{width:20.119802px;}
._11{width:21.728947px;}
._10{width:23.178649px;}
._28{width:24.854793px;}
._29{width:26.179134px;}
._6{width:42.024768px;}
._2c{width:47.718492px;}
._1b{width:49.793860px;}
._1a{width:50.796979px;}
._2b{width:85.613512px;}
._2a{width:86.764749px;}
._26{width:164.974355px;}
._1d{width:167.916282px;}
._18{width:170.332451px;}
._19{width:193.320841px;}
._4{width:200.801160px;}
._7{width:201.996405px;}
._1e{width:224.706060px;}
._1c{width:243.178313px;}
._25{width:252.107715px;}
._24{width:282.347414px;}
._1f{width:284.452669px;}
._20{width:293.417007px;}
._21{width:329.887620px;}
._27{width:431.693277px;}
._22{width:440.193326px;}
._23{width:634.036349px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:18.000720px;}
.fsb{font-size:20.880810px;}
.fs8{font-size:36.001395px;}
.fs9{font-size:41.761620px;}
.fs3{font-size:48.241800px;}
.fs2{font-size:54.002250px;}
.fs6{font-size:56.882250px;}
.fs1{font-size:59.762250px;}
.fsa{font-size:63.362250px;}
.fs0{font-size:66.242700px;}
.fs7{font-size:108.004050px;}
.fs4{font-size:144.005409px;}
.fs5{font-size:149.765850px;}
.y0{bottom:0.000000px;}
.y7{bottom:25.740005px;}
.y6{bottom:46.080093px;}
.y3f{bottom:89.460022px;}
.yc9{bottom:95.220016px;}
.yfd{bottom:97.920043px;}
.y3e{bottom:106.740005px;}
.y7a{bottom:110.160049px;}
.yaa{bottom:113.760064px;}
.yfc{bottom:115.020058px;}
.yc8{bottom:117.720085px;}
.y3d{bottom:124.020058px;}
.y79{bottom:127.440033px;}
.ya9{bottom:130.860077px;}
.yfb{bottom:132.300041px;}
.yc7{bottom:140.220085px;}
.y3c{bottom:141.300041px;}
.y78{bottom:144.720085px;}
.ya8{bottom:148.140060px;}
.yfa{bottom:149.580093px;}
.y3b{bottom:158.580093px;}
.y77{bottom:162.000068px;}
.yc6{bottom:162.720085px;}
.ya7{bottom:165.420043px;}
.yf9{bottom:166.860077px;}
.y3a{bottom:175.680039px;}
.y76{bottom:179.280052px;}
.ya6{bottom:182.700096px;}
.yf8{bottom:183.420043px;}
.yc5{bottom:185.220085px;}
.y39{bottom:192.960091px;}
.y75{bottom:196.560036px;}
.yf7{bottom:197.820099px;}
.ya5{bottom:199.980079px;}
.yc4{bottom:207.000068px;}
.y38{bottom:210.240074px;}
.y74{bottom:213.660049px;}
.yf6{bottom:215.100083px;}
.ya4{bottom:217.260064px;}
.yc3{bottom:225.000068px;}
.y37{bottom:227.520058px;}
.y73{bottom:230.940033px;}
.yf5{bottom:231.660049px;}
.ya3{bottom:234.360077px;}
.yc2{bottom:242.100083px;}
.y36{bottom:244.800041px;}
.yf4{bottom:246.240074px;}
.y72{bottom:248.220085px;}
.ya2{bottom:251.640060px;}
.yc1{bottom:259.380066px;}
.y35{bottom:262.080093px;}
.yf3{bottom:263.520058px;}
.y71{bottom:265.500068px;}
.ya1{bottom:268.920043px;}
.yc0{bottom:276.660049px;}
.y34{bottom:279.180039px;}
.yf2{bottom:280.620072px;}
.y70{bottom:282.780052px;}
.ya0{bottom:286.200096px;}
.ybf{bottom:293.940033px;}
.y33{bottom:296.460091px;}
.yf1{bottom:297.900055px;}
.y6f{bottom:299.880066px;}
.y9f{bottom:303.480079px;}
.ybe{bottom:311.220085px;}
.y32{bottom:313.740074px;}
.yf0{bottom:315.180039px;}
.y6e{bottom:317.160049px;}
.y9e{bottom:320.580093px;}
.ybd{bottom:328.500068px;}
.y31{bottom:331.020058px;}
.yef{bottom:332.460091px;}
.y6d{bottom:334.440033px;}
.y9d{bottom:337.860077px;}
.ybc{bottom:345.600083px;}
.y30{bottom:348.300041px;}
.yee{bottom:349.740074px;}
.y6c{bottom:351.720085px;}
.y9c{bottom:355.140060px;}
.ybb{bottom:362.880066px;}
.y2f{bottom:365.580093px;}
.yed{bottom:366.840088px;}
.y6b{bottom:369.000068px;}
.y9b{bottom:372.420043px;}
.yba{bottom:380.160049px;}
.y2e{bottom:382.680039px;}
.yec{bottom:384.120072px;}
.y6a{bottom:386.280052px;}
.y9a{bottom:389.700096px;}
.yb9{bottom:397.440033px;}
.y2d{bottom:399.960091px;}
.yeb{bottom:401.400055px;}
.y69{bottom:403.380066px;}
.y99{bottom:406.980079px;}
.yb8{bottom:414.720085px;}
.y2c{bottom:417.240074px;}
.yea{bottom:418.680039px;}
.y68{bottom:420.660049px;}
.y98{bottom:424.080093px;}
.yb7{bottom:432.000068px;}
.y2b{bottom:434.520058px;}
.ye9{bottom:435.960091px;}
.y67{bottom:437.940033px;}
.y97{bottom:441.360077px;}
.yb6{bottom:449.100083px;}
.y2a{bottom:451.800041px;}
.ye8{bottom:453.240074px;}
.y66{bottom:455.220085px;}
.y96{bottom:458.640060px;}
.yb5{bottom:466.380066px;}
.y29{bottom:468.900055px;}
.ye7{bottom:470.340088px;}
.y65{bottom:472.500068px;}
.y95{bottom:475.920043px;}
.yb4{bottom:483.660049px;}
.y28{bottom:486.180039px;}
.ye6{bottom:487.620072px;}
.y64{bottom:489.780052px;}
.y94{bottom:493.200096px;}
.yb3{bottom:500.940033px;}
.y27{bottom:503.460091px;}
.ye5{bottom:504.900055px;}
.y63{bottom:506.880066px;}
.y93{bottom:510.480079px;}
.y11b{bottom:517.680039px;}
.yb2{bottom:518.220085px;}
.y26{bottom:520.740074px;}
.ye4{bottom:522.180039px;}
.y62{bottom:524.160049px;}
.y92{bottom:527.580093px;}
.yb1{bottom:535.320099px;}
.y11a{bottom:536.220085px;}
.y25{bottom:538.020058px;}
.ye3{bottom:539.460091px;}
.y61{bottom:541.440033px;}
.y91{bottom:544.860077px;}
.yb0{bottom:552.600083px;}
.y119{bottom:554.940033px;}
.y24{bottom:555.300041px;}
.ye2{bottom:556.740074px;}
.y60{bottom:558.720085px;}
.y90{bottom:562.140060px;}
.yaf{bottom:569.880066px;}
.y23{bottom:572.400055px;}
.y118{bottom:573.480079px;}
.ye1{bottom:573.840088px;}
.y5f{bottom:576.000068px;}
.y8f{bottom:579.420043px;}
.yae{bottom:587.160049px;}
.y22{bottom:589.680039px;}
.ye0{bottom:591.120072px;}
.y117{bottom:592.200096px;}
.y5e{bottom:593.280052px;}
.y8e{bottom:596.700096px;}
.yad{bottom:604.440033px;}
.y21{bottom:606.960091px;}
.ydf{bottom:608.400055px;}
.y5d{bottom:610.380066px;}
.y116{bottom:610.740074px;}
.y8d{bottom:613.800041px;}
.yac{bottom:621.720085px;}
.y20{bottom:623.880066px;}
.yde{bottom:625.680039px;}
.y5c{bottom:627.660049px;}
.y115{bottom:629.460091px;}
.y8c{bottom:631.080093px;}
.yab{bottom:635.760064px;}
.y1f{bottom:639.360077px;}
.ydd{bottom:642.960091px;}
.y5b{bottom:644.940033px;}
.y114{bottom:648.000068px;}
.y8b{bottom:648.360077px;}
.y1e{bottom:655.020058px;}
.ydc{bottom:660.060036px;}
.y5a{bottom:662.220085px;}
.y8a{bottom:665.640060px;}
.y113{bottom:666.540047px;}
.y1d{bottom:670.500068px;}
.ydb{bottom:677.340088px;}
.y59{bottom:679.500068px;}
.y89{bottom:682.920043px;}
.y112{bottom:685.260064px;}
.y1c{bottom:685.980079px;}
.yda{bottom:694.620072px;}
.y58{bottom:696.600083px;}
.y88{bottom:700.200061px;}
.y1b{bottom:701.460056px;}
.y111{bottom:703.800076px;}
.yd9{bottom:711.900055px;}
.y57{bottom:713.880066px;}
.y1a{bottom:717.120072px;}
.y87{bottom:717.300076px;}
.y110{bottom:722.520058px;}
.yd8{bottom:729.180073px;}
.y56{bottom:731.160049px;}
.y19{bottom:732.600083px;}
.y86{bottom:734.580059px;}
.y10f{bottom:741.060070px;}
.yd7{bottom:746.460056px;}
.y18{bottom:748.080059px;}
.y55{bottom:748.440067px;}
.y85{bottom:751.860077px;}
.y10e{bottom:759.600083px;}
.y17{bottom:763.560070px;}
.y54{bottom:765.720051px;}
.y84{bottom:769.140060px;}
.y10d{bottom:778.320065px;}
.y16{bottom:779.220051px;}
.yd6{bottom:780.840054px;}
.y53{bottom:783.000068px;}
.y83{bottom:786.420078px;}
.y15{bottom:794.700061px;}
.y10c{bottom:796.860077px;}
.yd5{bottom:798.120072px;}
.y52{bottom:800.100083px;}
.y82{bottom:803.700061px;}
.y14{bottom:810.180073px;}
.yd4{bottom:815.400055px;}
.y10b{bottom:815.580059px;}
.y51{bottom:817.380066px;}
.y81{bottom:820.800076px;}
.y13{bottom:826.380066px;}
.yd3{bottom:832.680073px;}
.y10a{bottom:834.120072px;}
.y50{bottom:834.660049px;}
.y80{bottom:838.080059px;}
.y12{bottom:845.100083px;}
.yd2{bottom:849.960056px;}
.y4f{bottom:851.940067px;}
.y109{bottom:852.660049px;}
.y7f{bottom:855.360077px;}
.yd1{bottom:867.060070px;}
.y11{bottom:868.500068px;}
.y4e{bottom:869.220051px;}
.y108{bottom:871.380066px;}
.y7e{bottom:872.640060px;}
.y10{bottom:883.620072px;}
.y4d{bottom:886.500068px;}
.yd0{bottom:889.560070px;}
.y7d{bottom:889.920078px;}
.yf{bottom:890.820065px;}
.y4c{bottom:903.600083px;}
.y7c{bottom:907.200061px;}
.y107{bottom:908.640060px;}
.ycf{bottom:911.880066px;}
.ye{bottom:914.220051px;}
.y4b{bottom:920.880066px;}
.y7b{bottom:923.580059px;}
.y106{bottom:927.180073px;}
.yd{bottom:932.040081px;}
.yce{bottom:934.200061px;}
.y4a{bottom:938.160049px;}
.y105{bottom:945.900055px;}
.yc{bottom:954.180073px;}
.y49{bottom:955.440067px;}
.ycd{bottom:956.520058px;}
.y104{bottom:964.440067px;}
.y48{bottom:972.720051px;}
.yb{bottom:973.980079px;}
.ycc{bottom:978.840070px;}
.y103{bottom:982.980063px;}
.y47{bottom:989.820065px;}
.ycb{bottom:1001.160067px;}
.y102{bottom:1001.700061px;}
.ya{bottom:1006.920061px;}
.y46{bottom:1007.100065px;}
.yca{bottom:1016.820065px;}
.y101{bottom:1020.240074px;}
.y45{bottom:1024.380066px;}
.y100{bottom:1038.960074px;}
.y44{bottom:1041.660067px;}
.y9{bottom:1049.040064px;}
.yff{bottom:1057.500068px;}
.y43{bottom:1058.940067px;}
.yfe{bottom:1076.040064px;}
.y42{bottom:1076.220068px;}
.y8{bottom:1090.980063px;}
.y41{bottom:1093.320065px;}
.y40{bottom:1110.600065px;}
.y5{bottom:1140.120063px;}
.y4{bottom:1160.280069px;}
.y3{bottom:1179.180064px;}
.y2{bottom:1196.460065px;}
.y1{bottom:1215.360064px;}
.h13{height:12.568862px;}
.he{height:14.579862px;}
.hb{height:25.137693px;}
.hc{height:29.159725px;}
.h12{height:33.684460px;}
.h9{height:37.706649px;}
.hf{height:38.102173px;}
.h11{height:41.728524px;}
.h10{height:42.166236px;}
.ha{height:42.292912px;}
.h3{height:43.683637px;}
.hd{height:44.242196px;}
.h2{height:46.253448px;}
.h6{height:48.776363px;}
.h14{height:49.257167px;}
.h5{height:63.072883px;}
.h7{height:65.886904px;}
.h4{height:105.261766px;}
.h8{height:105.669753px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.xe{left:71.640000px;}
.xd{left:75.239997px;}
.x10{left:85.140000px;}
.x8{left:89.819996px;}
.x16{left:92.879998px;}
.xc{left:101.340002px;}
.x7{left:141.480002px;}
.x15{left:144.900003px;}
.x1{left:183.060001px;}
.x13{left:212.219999px;}
.xf{left:215.099997px;}
.x2{left:223.379998px;}
.x9{left:285.120002px;}
.xb{left:293.939999px;}
.x14{left:302.579990px;}
.x12{left:312.660015px;}
.x3{left:344.699993px;}
.x4{left:360.000000px;}
.xa{left:451.980011px;}
.x5{left:494.459988px;}
.x11{left:565.740006px;}
@media print{
.v1{vertical-align:-29.440064pt;}
.v2{vertical-align:-18.559940pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.045928pt;}
.ls3{letter-spacing:0.045940pt;}
.ls4{letter-spacing:0.235580pt;}
.ls1{letter-spacing:0.318976pt;}
.ls5{letter-spacing:0.324182pt;}
.ls0{letter-spacing:2.302676pt;}
.ls7{letter-spacing:81.285206pt;}
.ws2{word-spacing:-14.080500pt;}
.ws0{word-spacing:-13.307422pt;}
.ws5{word-spacing:-13.280500pt;}
.ws3{word-spacing:-10.720400pt;}
.ws1{word-spacing:-9.280360pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-11.515244pt;}
._9{margin-left:-6.140674pt;}
._17{margin-left:-4.044950pt;}
._3{margin-left:-2.973587pt;}
._2{margin-left:-2.011548pt;}
._5{margin-left:-0.931710pt;}
._0{width:1.476833pt;}
._1{width:2.677058pt;}
._a{width:3.755956pt;}
._b{width:4.929580pt;}
._e{width:6.602258pt;}
._d{width:7.853577pt;}
._c{width:9.035064pt;}
._f{width:10.555092pt;}
._12{width:11.876054pt;}
._16{width:14.871462pt;}
._15{width:15.809190pt;}
._14{width:16.896531pt;}
._13{width:17.884268pt;}
._11{width:19.314620pt;}
._10{width:20.603243pt;}
._28{width:22.093149pt;}
._29{width:23.270341pt;}
._6{width:37.355349pt;}
._2c{width:42.416437pt;}
._1b{width:44.261209pt;}
._1a{width:45.152870pt;}
._2b{width:76.100899pt;}
._2a{width:77.124221pt;}
._26{width:146.643871pt;}
._1d{width:149.258917pt;}
._18{width:151.406623pt;}
._19{width:171.840747pt;}
._4{width:178.489920pt;}
._7{width:179.552360pt;}
._1e{width:199.738720pt;}
._1c{width:216.158500pt;}
._25{width:224.095747pt;}
._24{width:250.975479pt;}
._1f{width:252.846817pt;}
._20{width:260.815117pt;}
._21{width:293.233440pt;}
._27{width:383.727357pt;}
._22{width:391.282956pt;}
._23{width:563.587866pt;}
.fsc{font-size:16.000640pt;}
.fsb{font-size:18.560720pt;}
.fs8{font-size:32.001240pt;}
.fs9{font-size:37.121440pt;}
.fs3{font-size:42.881600pt;}
.fs2{font-size:48.002000pt;}
.fs6{font-size:50.562000pt;}
.fs1{font-size:53.122000pt;}
.fsa{font-size:56.322000pt;}
.fs0{font-size:58.882400pt;}
.fs7{font-size:96.003600pt;}
.fs4{font-size:128.004808pt;}
.fs5{font-size:133.125200pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:22.880005pt;}
.y6{bottom:40.960083pt;}
.y3f{bottom:79.520020pt;}
.yc9{bottom:84.640015pt;}
.yfd{bottom:87.040039pt;}
.y3e{bottom:94.880005pt;}
.y7a{bottom:97.920044pt;}
.yaa{bottom:101.120057pt;}
.yfc{bottom:102.240052pt;}
.yc8{bottom:104.640076pt;}
.y3d{bottom:110.240052pt;}
.y79{bottom:113.280030pt;}
.ya9{bottom:116.320069pt;}
.yfb{bottom:117.600037pt;}
.yc7{bottom:124.640076pt;}
.y3c{bottom:125.600037pt;}
.y78{bottom:128.640076pt;}
.ya8{bottom:131.680054pt;}
.yfa{bottom:132.960083pt;}
.y3b{bottom:140.960083pt;}
.y77{bottom:144.000061pt;}
.yc6{bottom:144.640076pt;}
.ya7{bottom:147.040039pt;}
.yf9{bottom:148.320069pt;}
.y3a{bottom:156.160035pt;}
.y76{bottom:159.360047pt;}
.ya6{bottom:162.400086pt;}
.yf8{bottom:163.040039pt;}
.yc5{bottom:164.640076pt;}
.y39{bottom:171.520081pt;}
.y75{bottom:174.720032pt;}
.yf7{bottom:175.840088pt;}
.ya5{bottom:177.760071pt;}
.yc4{bottom:184.000061pt;}
.y38{bottom:186.880066pt;}
.y74{bottom:189.920044pt;}
.yf6{bottom:191.200074pt;}
.ya4{bottom:193.120057pt;}
.yc3{bottom:200.000061pt;}
.y37{bottom:202.240052pt;}
.y73{bottom:205.280030pt;}
.yf5{bottom:205.920044pt;}
.ya3{bottom:208.320069pt;}
.yc2{bottom:215.200074pt;}
.y36{bottom:217.600037pt;}
.yf4{bottom:218.880066pt;}
.y72{bottom:220.640076pt;}
.ya2{bottom:223.680054pt;}
.yc1{bottom:230.560059pt;}
.y35{bottom:232.960083pt;}
.yf3{bottom:234.240052pt;}
.y71{bottom:236.000061pt;}
.ya1{bottom:239.040039pt;}
.yc0{bottom:245.920044pt;}
.y34{bottom:248.160035pt;}
.yf2{bottom:249.440064pt;}
.y70{bottom:251.360047pt;}
.ya0{bottom:254.400086pt;}
.ybf{bottom:261.280030pt;}
.y33{bottom:263.520081pt;}
.yf1{bottom:264.800049pt;}
.y6f{bottom:266.560059pt;}
.y9f{bottom:269.760071pt;}
.ybe{bottom:276.640076pt;}
.y32{bottom:278.880066pt;}
.yf0{bottom:280.160035pt;}
.y6e{bottom:281.920044pt;}
.y9e{bottom:284.960083pt;}
.ybd{bottom:292.000061pt;}
.y31{bottom:294.240052pt;}
.yef{bottom:295.520081pt;}
.y6d{bottom:297.280030pt;}
.y9d{bottom:300.320069pt;}
.ybc{bottom:307.200074pt;}
.y30{bottom:309.600037pt;}
.yee{bottom:310.880066pt;}
.y6c{bottom:312.640076pt;}
.y9c{bottom:315.680054pt;}
.ybb{bottom:322.560059pt;}
.y2f{bottom:324.960083pt;}
.yed{bottom:326.080079pt;}
.y6b{bottom:328.000061pt;}
.y9b{bottom:331.040039pt;}
.yba{bottom:337.920044pt;}
.y2e{bottom:340.160035pt;}
.yec{bottom:341.440064pt;}
.y6a{bottom:343.360047pt;}
.y9a{bottom:346.400086pt;}
.yb9{bottom:353.280030pt;}
.y2d{bottom:355.520081pt;}
.yeb{bottom:356.800049pt;}
.y69{bottom:358.560059pt;}
.y99{bottom:361.760071pt;}
.yb8{bottom:368.640076pt;}
.y2c{bottom:370.880066pt;}
.yea{bottom:372.160035pt;}
.y68{bottom:373.920044pt;}
.y98{bottom:376.960083pt;}
.yb7{bottom:384.000061pt;}
.y2b{bottom:386.240052pt;}
.ye9{bottom:387.520081pt;}
.y67{bottom:389.280030pt;}
.y97{bottom:392.320069pt;}
.yb6{bottom:399.200074pt;}
.y2a{bottom:401.600037pt;}
.ye8{bottom:402.880066pt;}
.y66{bottom:404.640076pt;}
.y96{bottom:407.680054pt;}
.yb5{bottom:414.560059pt;}
.y29{bottom:416.800049pt;}
.ye7{bottom:418.080079pt;}
.y65{bottom:420.000061pt;}
.y95{bottom:423.040039pt;}
.yb4{bottom:429.920044pt;}
.y28{bottom:432.160035pt;}
.ye6{bottom:433.440064pt;}
.y64{bottom:435.360047pt;}
.y94{bottom:438.400086pt;}
.yb3{bottom:445.280030pt;}
.y27{bottom:447.520081pt;}
.ye5{bottom:448.800049pt;}
.y63{bottom:450.560059pt;}
.y93{bottom:453.760071pt;}
.y11b{bottom:460.160035pt;}
.yb2{bottom:460.640076pt;}
.y26{bottom:462.880066pt;}
.ye4{bottom:464.160035pt;}
.y62{bottom:465.920044pt;}
.y92{bottom:468.960083pt;}
.yb1{bottom:475.840088pt;}
.y11a{bottom:476.640076pt;}
.y25{bottom:478.240052pt;}
.ye3{bottom:479.520081pt;}
.y61{bottom:481.280030pt;}
.y91{bottom:484.320069pt;}
.yb0{bottom:491.200074pt;}
.y119{bottom:493.280030pt;}
.y24{bottom:493.600037pt;}
.ye2{bottom:494.880066pt;}
.y60{bottom:496.640076pt;}
.y90{bottom:499.680054pt;}
.yaf{bottom:506.560059pt;}
.y23{bottom:508.800049pt;}
.y118{bottom:509.760071pt;}
.ye1{bottom:510.080079pt;}
.y5f{bottom:512.000061pt;}
.y8f{bottom:515.040039pt;}
.yae{bottom:521.920044pt;}
.y22{bottom:524.160035pt;}
.ye0{bottom:525.440064pt;}
.y117{bottom:526.400086pt;}
.y5e{bottom:527.360047pt;}
.y8e{bottom:530.400086pt;}
.yad{bottom:537.280030pt;}
.y21{bottom:539.520081pt;}
.ydf{bottom:540.800049pt;}
.y5d{bottom:542.560059pt;}
.y116{bottom:542.880066pt;}
.y8d{bottom:545.600037pt;}
.yac{bottom:552.640076pt;}
.y20{bottom:554.560059pt;}
.yde{bottom:556.160035pt;}
.y5c{bottom:557.920044pt;}
.y115{bottom:559.520081pt;}
.y8c{bottom:560.960083pt;}
.yab{bottom:565.120057pt;}
.y1f{bottom:568.320069pt;}
.ydd{bottom:571.520081pt;}
.y5b{bottom:573.280030pt;}
.y114{bottom:576.000061pt;}
.y8b{bottom:576.320069pt;}
.y1e{bottom:582.240052pt;}
.ydc{bottom:586.720032pt;}
.y5a{bottom:588.640076pt;}
.y8a{bottom:591.680054pt;}
.y113{bottom:592.480042pt;}
.y1d{bottom:596.000061pt;}
.ydb{bottom:602.080079pt;}
.y59{bottom:604.000061pt;}
.y89{bottom:607.040039pt;}
.y112{bottom:609.120057pt;}
.y1c{bottom:609.760071pt;}
.yda{bottom:617.440064pt;}
.y58{bottom:619.200074pt;}
.y88{bottom:622.400055pt;}
.y1b{bottom:623.520050pt;}
.y111{bottom:625.600068pt;}
.yd9{bottom:632.800049pt;}
.y57{bottom:634.560059pt;}
.y1a{bottom:637.440064pt;}
.y87{bottom:637.600068pt;}
.y110{bottom:642.240052pt;}
.yd8{bottom:648.160065pt;}
.y56{bottom:649.920044pt;}
.y19{bottom:651.200074pt;}
.y86{bottom:652.960053pt;}
.y10f{bottom:658.720063pt;}
.yd7{bottom:663.520050pt;}
.y18{bottom:664.960053pt;}
.y55{bottom:665.280060pt;}
.y85{bottom:668.320069pt;}
.y10e{bottom:675.200074pt;}
.y17{bottom:678.720063pt;}
.y54{bottom:680.640046pt;}
.y84{bottom:683.680054pt;}
.y10d{bottom:691.840058pt;}
.y16{bottom:692.640046pt;}
.yd6{bottom:694.080048pt;}
.y53{bottom:696.000061pt;}
.y83{bottom:699.040070pt;}
.y15{bottom:706.400055pt;}
.y10c{bottom:708.320069pt;}
.yd5{bottom:709.440064pt;}
.y52{bottom:711.200074pt;}
.y82{bottom:714.400055pt;}
.y14{bottom:720.160065pt;}
.yd4{bottom:724.800049pt;}
.y10b{bottom:724.960053pt;}
.y51{bottom:726.560059pt;}
.y81{bottom:729.600068pt;}
.y13{bottom:734.560059pt;}
.yd3{bottom:740.160065pt;}
.y10a{bottom:741.440064pt;}
.y50{bottom:741.920044pt;}
.y80{bottom:744.960053pt;}
.y12{bottom:751.200074pt;}
.yd2{bottom:755.520050pt;}
.y4f{bottom:757.280060pt;}
.y109{bottom:757.920044pt;}
.y7f{bottom:760.320069pt;}
.yd1{bottom:770.720063pt;}
.y11{bottom:772.000061pt;}
.y4e{bottom:772.640046pt;}
.y108{bottom:774.560059pt;}
.y7e{bottom:775.680054pt;}
.y10{bottom:785.440064pt;}
.y4d{bottom:788.000061pt;}
.yd0{bottom:790.720063pt;}
.y7d{bottom:791.040070pt;}
.yf{bottom:791.840058pt;}
.y4c{bottom:803.200074pt;}
.y7c{bottom:806.400055pt;}
.y107{bottom:807.680054pt;}
.ycf{bottom:810.560059pt;}
.ye{bottom:812.640046pt;}
.y4b{bottom:818.560059pt;}
.y7b{bottom:820.960053pt;}
.y106{bottom:824.160065pt;}
.yd{bottom:828.480072pt;}
.yce{bottom:830.400055pt;}
.y4a{bottom:833.920044pt;}
.y105{bottom:840.800049pt;}
.yc{bottom:848.160065pt;}
.y49{bottom:849.280060pt;}
.ycd{bottom:850.240052pt;}
.y104{bottom:857.280060pt;}
.y48{bottom:864.640046pt;}
.yb{bottom:865.760071pt;}
.ycc{bottom:870.080063pt;}
.y103{bottom:873.760056pt;}
.y47{bottom:879.840058pt;}
.ycb{bottom:889.920060pt;}
.y102{bottom:890.400055pt;}
.ya{bottom:895.040055pt;}
.y46{bottom:895.200058pt;}
.yca{bottom:903.840058pt;}
.y101{bottom:906.880066pt;}
.y45{bottom:910.560059pt;}
.y100{bottom:923.520066pt;}
.y44{bottom:925.920060pt;}
.y9{bottom:932.480057pt;}
.yff{bottom:940.000061pt;}
.y43{bottom:941.280060pt;}
.yfe{bottom:956.480057pt;}
.y42{bottom:956.640061pt;}
.y8{bottom:969.760056pt;}
.y41{bottom:971.840058pt;}
.y40{bottom:987.200058pt;}
.y5{bottom:1013.440056pt;}
.y4{bottom:1031.360062pt;}
.y3{bottom:1048.160057pt;}
.y2{bottom:1063.520058pt;}
.y1{bottom:1080.320057pt;}
.h13{height:11.172322pt;}
.he{height:12.959878pt;}
.hb{height:22.344616pt;}
.hc{height:25.919755pt;}
.h12{height:29.941742pt;}
.h9{height:33.517021pt;}
.hf{height:33.868599pt;}
.h11{height:37.092021pt;}
.h10{height:37.481099pt;}
.ha{height:37.593700pt;}
.h3{height:38.829899pt;}
.hd{height:39.326396pt;}
.h2{height:41.114176pt;}
.h6{height:43.356767pt;}
.h14{height:43.784148pt;}
.h5{height:56.064785pt;}
.h7{height:58.566137pt;}
.h4{height:93.566014pt;}
.h8{height:93.928669pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.xe{left:63.680000pt;}
.xd{left:66.879997pt;}
.x10{left:75.680000pt;}
.x8{left:79.839996pt;}
.x16{left:82.559998pt;}
.xc{left:90.080002pt;}
.x7{left:125.760002pt;}
.x15{left:128.800003pt;}
.x1{left:162.720001pt;}
.x13{left:188.639999pt;}
.xf{left:191.199997pt;}
.x2{left:198.559998pt;}
.x9{left:253.440002pt;}
.xb{left:261.279999pt;}
.x14{left:268.959991pt;}
.x12{left:277.920013pt;}
.x3{left:306.399994pt;}
.x4{left:320.000000pt;}
.xa{left:401.760010pt;}
.x5{left:439.519989pt;}
.x11{left:502.880005pt;}
}




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