
    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_dc1c1882e936308f6bbeff1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_1e9471bf34624b129c96ef20.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_bec70e56b986e2626e62f612.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3236840b9ef0dc083157526c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_0232bbb5d1577e1af19749d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_561fbaff3620c80426cfe5af.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f5e19778c3a720c04a6f04e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.715820;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_09dc48e719c03d6cacf93513.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:46.799838px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.783400px;}
.ls5{letter-spacing:3.611657px;}
.ls1{letter-spacing:155.518430px;}
.ls3{letter-spacing:749.518497px;}
.ls2{letter-spacing:858.238515px;}
.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;}
}
.ws1{word-spacing:-95.044500px;}
.ws4{word-spacing:-95.043600px;}
.ws2{word-spacing:-79.204500px;}
.wsa{word-spacing:-27.372557px;}
.ws0{word-spacing:-23.761125px;}
.ws5{word-spacing:-23.760900px;}
.ws7{word-spacing:-19.800788px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:595.520451px;}
.ws8{word-spacing:1050.311611px;}
.ws6{word-spacing:1586.671134px;}
._1f{margin-left:-22.525717px;}
._1d{margin-left:-11.281145px;}
._4{margin-left:-10.148536px;}
._16{margin-left:-8.870753px;}
._f{margin-left:-7.603531px;}
._3{margin-left:-6.494360px;}
._19{margin-left:-5.490529px;}
._1{margin-left:-4.466806px;}
._5{margin-left:-3.247290px;}
._2{margin-left:-1.822003px;}
._0{width:1.048595px;}
._8{width:2.281068px;}
._6{width:3.611691px;}
._c{width:5.498705px;}
._d{width:6.597165px;}
._10{width:8.269536px;}
._b{width:9.504545px;}
._a{width:11.136680px;}
._9{width:12.838280px;}
._7{width:14.227569px;}
._12{width:15.312493px;}
._11{width:17.123812px;}
._1e{width:20.425862px;}
._1c{width:65.547790px;}
._1b{width:70.965275px;}
._15{width:80.101230px;}
._14{width:211.087510px;}
._18{width:296.098717px;}
._17{width:364.255906px;}
._13{width:487.445924px;}
._1a{width:749.103540px;}
._e{width:1695.568988px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs7{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1b{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y39{bottom:41.040115px;}
.ye9{bottom:91.620072px;}
.yf5{bottom:99.540115px;}
.ye8{bottom:118.980079px;}
.y38{bottom:121.320099px;}
.y19{bottom:121.860150px;}
.yf4{bottom:128.160049px;}
.ya9{bottom:141.660049px;}
.yb8{bottom:145.260064px;}
.ycc{bottom:145.980079px;}
.ye7{bottom:146.340088px;}
.y37{bottom:149.940033px;}
.y18{bottom:150.300150px;}
.yf3{bottom:155.880066px;}
.ye6{bottom:173.700096px;}
.ycb{bottom:174.420043px;}
.y94{bottom:174.600083px;}
.y36{bottom:178.380066px;}
.y17{bottom:178.920150px;}
.y93{bottom:198.360077px;}
.ya8{bottom:198.720085px;}
.ye5{bottom:201.060036px;}
.y35{bottom:207.000068px;}
.y16{bottom:207.360150px;}
.yf2{bottom:211.320099px;}
.yca{bottom:214.920043px;}
.y92{bottom:222.120072px;}
.ye4{bottom:228.420043px;}
.y34{bottom:235.440033px;}
.yf8{bottom:235.620072px;}
.yf1{bottom:239.040047px;}
.y63{bottom:241.200096px;}
.yc9{bottom:243.360077px;}
.y91{bottom:245.880066px;}
.ye3{bottom:255.780052px;}
.yf7{bottom:264.060036px;}
.yf0{bottom:266.760064px;}
.y90{bottom:269.820099px;}
.yc8{bottom:271.980079px;}
.y62{bottom:275.400055px;}
.ya7{bottom:276.840088px;}
.ye2{bottom:283.140060px;}
.y33{bottom:292.500068px;}
.y45{bottom:292.680039px;}
.y75{bottom:293.040047px;}
.y15{bottom:293.040150px;}
.y61{bottom:299.160049px;}
.ye1{bottom:310.500068px;}
.y32{bottom:321.120072px;}
.y74{bottom:321.480079px;}
.y14{bottom:321.480150px;}
.yef{bottom:322.380066px;}
.yc7{bottom:329.040047px;}
.ya6{bottom:333.900055px;}
.ye0{bottom:337.680039px;}
.y8f{bottom:341.100083px;}
.y31{bottom:349.560036px;}
.y44{bottom:349.740074px;}
.y73{bottom:350.100083px;}
.y60{bottom:357.300041px;}
.yc6{bottom:357.480079px;}
.ya5{bottom:362.340088px;}
.y8e{bottom:364.860077px;}
.ydf{bottom:365.040047px;}
.y5f{bottom:369.360077px;}
.y30{bottom:378.180039px;}
.y13{bottom:378.540000px;}
.y72{bottom:378.540047px;}
.y8d{bottom:388.620072px;}
.yc3{bottom:389.340088px;}
.ya4{bottom:390.960091px;}
.yde{bottom:392.400055px;}
.y2f{bottom:406.620072px;}
.y43{bottom:406.800041px;}
.y71{bottom:407.160049px;}
.y5e{bottom:410.760064px;}
.ydd{bottom:419.760064px;}
.y5b{bottom:422.640060px;}
.yb5{bottom:429.300041px;}
.y5d{bottom:434.520058px;}
.y5a{bottom:434.700096px;}
.y2e{bottom:435.240074px;}
.yee{bottom:435.600083px;}
.y12{bottom:435.600150px;}
.y8c{bottom:436.140060px;}
.y5c{bottom:446.400055px;}
.ydc{bottom:447.120072px;}
.y8b{bottom:459.900055px;}
.y2d{bottom:463.680039px;}
.y42{bottom:463.860077px;}
.y70{bottom:464.220085px;}
.y11{bottom:464.220150px;}
.ya3{bottom:468.900055px;}
.yc5{bottom:471.780052px;}
.ydb{bottom:474.480079px;}
.yc2{bottom:474.840088px;}
.y8a{bottom:483.660049px;}
.yb4{bottom:486.360077px;}
.y59{bottom:487.800041px;}
.y2c{bottom:492.300041px;}
.y6f{bottom:492.660049px;}
.ya2{bottom:497.520058px;}
.y56{bottom:499.680039px;}
.yda{bottom:501.840088px;}
.y58{bottom:511.560036px;}
.y55{bottom:511.740074px;}
.yb3{bottom:514.980079px;}
.y2b{bottom:520.740074px;}
.yf6{bottom:520.920043px;}
.y10{bottom:521.280000px;}
.y6e{bottom:521.280052px;}
.ya1{bottom:525.960091px;}
.yd9{bottom:529.200096px;}
.yc1{bottom:531.900055px;}
.y57{bottom:535.320099px;}
.y89{bottom:536.040047px;}
.yb2{bottom:543.420043px;}
.y2a{bottom:549.360077px;}
.yf{bottom:549.720000px;}
.y6d{bottom:549.720085px;}
.ya0{bottom:554.580093px;}
.yd8{bottom:556.560036px;}
.y88{bottom:564.480079px;}
.y52{bottom:565.020058px;}
.yb1{bottom:572.040047px;}
.y29{bottom:577.800041px;}
.y41{bottom:577.980079px;}
.ye{bottom:578.340000px;}
.y6c{bottom:578.340088px;}
.y9f{bottom:583.020058px;}
.yd7{bottom:583.920043px;}
.y54{bottom:588.780052px;}
.y51{bottom:588.960091px;}
.y87{bottom:593.100083px;}
.yb0{bottom:600.480079px;}
.y28{bottom:606.420043px;}
.yd{bottom:606.780000px;}
.yed{bottom:606.780052px;}
.yd6{bottom:611.280052px;}
.y9e{bottom:611.640060px;}
.y53{bottom:612.540047px;}
.yc0{bottom:617.580093px;}
.y86{bottom:621.540047px;}
.y40{bottom:635.040047px;}
.y6b{bottom:635.400055px;}
.yd5{bottom:638.460091px;}
.y4e{bottom:642.060036px;}
.y85{bottom:650.160049px;}
.y27{bottom:663.480079px;}
.yec{bottom:663.840088px;}
.y50{bottom:665.820099px;}
.y4d{bottom:666.000068px;}
.y84{bottom:678.600083px;}
.y4f{bottom:689.580059px;}
.y26{bottom:691.920078px;}
.y3f{bottom:692.100083px;}
.y6a{bottom:692.460056px;}
.yd4{bottom:693.180073px;}
.yaf{bottom:707.040081px;}
.y83{bottom:707.220051px;}
.y9d{bottom:718.200061px;}
.y4c{bottom:719.280052px;}
.y25{bottom:720.540081px;}
.yc{bottom:720.900000px;}
.y69{bottom:720.900055px;}
.ybf{bottom:732.780052px;}
.yae{bottom:735.660049px;}
.y9c{bottom:746.640060px;}
.yd3{bottom:747.900055px;}
.y24{bottom:748.980079px;}
.y3e{bottom:749.160049px;}
.yb{bottom:749.520000px;}
.y68{bottom:749.520058px;}
.ybe{bottom:756.540081px;}
.y82{bottom:764.280052px;}
.y9b{bottom:775.260064px;}
.y23{bottom:777.600083px;}
.ya{bottom:777.960000px;}
.y67{bottom:777.960056px;}
.ybd{bottom:780.480079px;}
.yad{bottom:792.720051px;}
.y81{bottom:793.800076px;}
.yd2{bottom:802.620072px;}
.ybc{bottom:804.240074px;}
.y3d{bottom:806.220051px;}
.y66{bottom:806.580059px;}
.y80{bottom:823.500068px;}
.ybb{bottom:828.000068px;}
.yd1{bottom:829.980079px;}
.y22{bottom:834.660049px;}
.y9{bottom:835.020000px;}
.y4b{bottom:835.020058px;}
.yba{bottom:851.760064px;}
.yb7{bottom:852.120072px;}
.y7f{bottom:853.200061px;}
.y9a{bottom:853.380066px;}
.yd0{bottom:857.340054px;}
.y3c{bottom:863.280052px;}
.y8{bottom:863.640000px;}
.y65{bottom:863.640060px;}
.yb9{bottom:875.520058px;}
.yb6{bottom:880.560070px;}
.y99{bottom:881.820065px;}
.y7e{bottom:882.900055px;}
.y21{bottom:891.720051px;}
.y7{bottom:892.080000px;}
.y4a{bottom:892.080059px;}
.y7b{bottom:897.660049px;}
.yac{bottom:899.280052px;}
.y98{bottom:910.440067px;}
.y7d{bottom:912.600083px;}
.ycf{bottom:913.140060px;}
.y3b{bottom:920.340054px;}
.y49{bottom:920.700061px;}
.y7a{bottom:927.360077px;}
.yab{bottom:927.900055px;}
.y97{bottom:938.880066px;}
.y7c{bottom:942.300076px;}
.yf9{bottom:948.780053px;}
.y48{bottom:949.140060px;}
.y96{bottom:967.500068px;}
.y20{bottom:977.400072px;}
.y6{bottom:977.760000px;}
.y64{bottom:977.760064px;}
.yaa{bottom:984.960074px;}
.y77{bottom:986.760064px;}
.y79{bottom:1001.520058px;}
.y1f{bottom:1005.840070px;}
.y5{bottom:1006.200000px;}
.yeb{bottom:1006.200061px;}
.yce{bottom:1022.580059px;}
.y78{bottom:1031.220068px;}
.y95{bottom:1034.460074px;}
.y4{bottom:1034.820000px;}
.yea{bottom:1034.820065px;}
.ycd{bottom:1051.020058px;}
.y76{bottom:1060.920061px;}
.y1e{bottom:1062.900072px;}
.y47{bottom:1063.260064px;}
.y3a{bottom:1091.520058px;}
.y46{bottom:1091.880066px;}
.y1a{bottom:1099.080150px;}
.y1d{bottom:1119.960065px;}
.y1c{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.yc4{bottom:1148.940067px;}
.h8{height:55.303923px;}
.he{height:55.596662px;}
.h3{height:55.598636px;}
.hd{height:57.534328px;}
.h2{height:57.535781px;}
.h6{height:64.414925px;}
.ha{height:65.992187px;}
.h7{height:65.992812px;}
.h9{height:67.837080px;}
.h10{height:69.496123px;}
.hf{height:70.346938px;}
.hc{height:83.395190px;}
.h5{height:83.395980px;}
.hb{height:84.416166px;}
.h4{height:84.416966px;}
.h12{height:116.295957px;}
.h11{height:116.295961px;}
.h13{height:117.016114px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x3{left:111.780000px;}
.x8{left:125.100000px;}
.x11{left:140.939999px;}
.x15{left:149.219999px;}
.x16{left:172.259994px;}
.x14{left:174.060001px;}
.x1a{left:202.139992px;}
.x27{left:216.360008px;}
.x19{left:221.039996px;}
.x13{left:224.639992px;}
.x5{left:226.440000px;}
.x7{left:242.280000px;}
.x9{left:244.260000px;}
.x4{left:249.840000px;}
.x10{left:256.500000px;}
.xb{left:263.700000px;}
.x28{left:266.759994px;}
.x6{left:282.600000px;}
.xa{left:287.100000px;}
.xc{left:309.240000px;}
.xe{left:316.080000px;}
.x29{left:333.000000px;}
.x1b{left:349.560001px;}
.xf{left:360.540000px;}
.x1d{left:365.040012px;}
.xd{left:367.020000px;}
.x23{left:381.779983px;}
.x12{left:385.379998px;}
.x17{left:396.720017px;}
.x26{left:408.779983px;}
.x22{left:454.139992px;}
.x21{left:473.579990px;}
.x24{left:504.000000px;}
.x1c{left:505.259994px;}
.x20{left:509.040012px;}
.x1{left:532.800000px;}
.x1f{left:587.159981px;}
.x18{left:606.600014px;}
.x25{left:642.419975px;}
.x1e{left:702.539978px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:41.599856pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.585244pt;}
.ls5{letter-spacing:3.210362pt;}
.ls1{letter-spacing:138.238604pt;}
.ls3{letter-spacing:666.238664pt;}
.ls2{letter-spacing:762.878680pt;}
.ws1{word-spacing:-84.484000pt;}
.ws4{word-spacing:-84.483200pt;}
.ws2{word-spacing:-70.404000pt;}
.wsa{word-spacing:-24.331162pt;}
.ws0{word-spacing:-21.121000pt;}
.ws5{word-spacing:-21.120800pt;}
.ws7{word-spacing:-17.600700pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:529.351512pt;}
.ws8{word-spacing:933.610321pt;}
.ws6{word-spacing:1410.374342pt;}
._1f{margin-left:-20.022859pt;}
._1d{margin-left:-10.027685pt;}
._4{margin-left:-9.020921pt;}
._16{margin-left:-7.885114pt;}
._f{margin-left:-6.758694pt;}
._3{margin-left:-5.772764pt;}
._19{margin-left:-4.880470pt;}
._1{margin-left:-3.970495pt;}
._5{margin-left:-2.886480pt;}
._2{margin-left:-1.619558pt;}
._0{width:0.932084pt;}
._8{width:2.027616pt;}
._6{width:3.210392pt;}
._c{width:4.887737pt;}
._d{width:5.864146pt;}
._10{width:7.350698pt;}
._b{width:8.448484pt;}
._a{width:9.899271pt;}
._9{width:11.411805pt;}
._7{width:12.646728pt;}
._12{width:13.611105pt;}
._11{width:15.221167pt;}
._1e{width:18.156321pt;}
._1c{width:58.264702pt;}
._1b{width:63.080245pt;}
._15{width:71.201094pt;}
._14{width:187.633342pt;}
._18{width:263.198859pt;}
._17{width:323.783027pt;}
._13{width:433.285266pt;}
._1a{width:665.869813pt;}
._e{width:1507.172434pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs7{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1b{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y39{bottom:36.480103pt;}
.ye9{bottom:81.440064pt;}
.yf5{bottom:88.480103pt;}
.ye8{bottom:105.760071pt;}
.y38{bottom:107.840088pt;}
.y19{bottom:108.320133pt;}
.yf4{bottom:113.920044pt;}
.ya9{bottom:125.920044pt;}
.yb8{bottom:129.120057pt;}
.ycc{bottom:129.760071pt;}
.ye7{bottom:130.080079pt;}
.y37{bottom:133.280030pt;}
.y18{bottom:133.600133pt;}
.yf3{bottom:138.560059pt;}
.ye6{bottom:154.400086pt;}
.ycb{bottom:155.040039pt;}
.y94{bottom:155.200074pt;}
.y36{bottom:158.560059pt;}
.y17{bottom:159.040133pt;}
.y93{bottom:176.320069pt;}
.ya8{bottom:176.640076pt;}
.ye5{bottom:178.720032pt;}
.y35{bottom:184.000061pt;}
.y16{bottom:184.320133pt;}
.yf2{bottom:187.840088pt;}
.yca{bottom:191.040039pt;}
.y92{bottom:197.440064pt;}
.ye4{bottom:203.040039pt;}
.y34{bottom:209.280030pt;}
.yf8{bottom:209.440064pt;}
.yf1{bottom:212.480042pt;}
.y63{bottom:214.400086pt;}
.yc9{bottom:216.320069pt;}
.y91{bottom:218.560059pt;}
.ye3{bottom:227.360047pt;}
.yf7{bottom:234.720032pt;}
.yf0{bottom:237.120057pt;}
.y90{bottom:239.840088pt;}
.yc8{bottom:241.760071pt;}
.y62{bottom:244.800049pt;}
.ya7{bottom:246.080079pt;}
.ye2{bottom:251.680054pt;}
.y33{bottom:260.000061pt;}
.y45{bottom:260.160035pt;}
.y75{bottom:260.480042pt;}
.y15{bottom:260.480133pt;}
.y61{bottom:265.920044pt;}
.ye1{bottom:276.000061pt;}
.y32{bottom:285.440064pt;}
.y74{bottom:285.760071pt;}
.y14{bottom:285.760133pt;}
.yef{bottom:286.560059pt;}
.yc7{bottom:292.480042pt;}
.ya6{bottom:296.800049pt;}
.ye0{bottom:300.160035pt;}
.y8f{bottom:303.200074pt;}
.y31{bottom:310.720032pt;}
.y44{bottom:310.880066pt;}
.y73{bottom:311.200074pt;}
.y60{bottom:317.600037pt;}
.yc6{bottom:317.760071pt;}
.ya5{bottom:322.080079pt;}
.y8e{bottom:324.320069pt;}
.ydf{bottom:324.480042pt;}
.y5f{bottom:328.320069pt;}
.y30{bottom:336.160035pt;}
.y13{bottom:336.480000pt;}
.y72{bottom:336.480042pt;}
.y8d{bottom:345.440064pt;}
.yc3{bottom:346.080079pt;}
.ya4{bottom:347.520081pt;}
.yde{bottom:348.800049pt;}
.y2f{bottom:361.440064pt;}
.y43{bottom:361.600037pt;}
.y71{bottom:361.920044pt;}
.y5e{bottom:365.120057pt;}
.ydd{bottom:373.120057pt;}
.y5b{bottom:375.680054pt;}
.yb5{bottom:381.600037pt;}
.y5d{bottom:386.240052pt;}
.y5a{bottom:386.400086pt;}
.y2e{bottom:386.880066pt;}
.yee{bottom:387.200074pt;}
.y12{bottom:387.200133pt;}
.y8c{bottom:387.680054pt;}
.y5c{bottom:396.800049pt;}
.ydc{bottom:397.440064pt;}
.y8b{bottom:408.800049pt;}
.y2d{bottom:412.160035pt;}
.y42{bottom:412.320069pt;}
.y70{bottom:412.640076pt;}
.y11{bottom:412.640133pt;}
.ya3{bottom:416.800049pt;}
.yc5{bottom:419.360047pt;}
.ydb{bottom:421.760071pt;}
.yc2{bottom:422.080079pt;}
.y8a{bottom:429.920044pt;}
.yb4{bottom:432.320069pt;}
.y59{bottom:433.600037pt;}
.y2c{bottom:437.600037pt;}
.y6f{bottom:437.920044pt;}
.ya2{bottom:442.240052pt;}
.y56{bottom:444.160035pt;}
.yda{bottom:446.080079pt;}
.y58{bottom:454.720032pt;}
.y55{bottom:454.880066pt;}
.yb3{bottom:457.760071pt;}
.y2b{bottom:462.880066pt;}
.yf6{bottom:463.040039pt;}
.y10{bottom:463.360000pt;}
.y6e{bottom:463.360047pt;}
.ya1{bottom:467.520081pt;}
.yd9{bottom:470.400086pt;}
.yc1{bottom:472.800049pt;}
.y57{bottom:475.840088pt;}
.y89{bottom:476.480042pt;}
.yb2{bottom:483.040039pt;}
.y2a{bottom:488.320069pt;}
.yf{bottom:488.640000pt;}
.y6d{bottom:488.640076pt;}
.ya0{bottom:492.960083pt;}
.yd8{bottom:494.720032pt;}
.y88{bottom:501.760071pt;}
.y52{bottom:502.240052pt;}
.yb1{bottom:508.480042pt;}
.y29{bottom:513.600037pt;}
.y41{bottom:513.760071pt;}
.ye{bottom:514.080000pt;}
.y6c{bottom:514.080079pt;}
.y9f{bottom:518.240052pt;}
.yd7{bottom:519.040039pt;}
.y54{bottom:523.360047pt;}
.y51{bottom:523.520081pt;}
.y87{bottom:527.200074pt;}
.yb0{bottom:533.760071pt;}
.y28{bottom:539.040039pt;}
.yd{bottom:539.360000pt;}
.yed{bottom:539.360047pt;}
.yd6{bottom:543.360047pt;}
.y9e{bottom:543.680054pt;}
.y53{bottom:544.480042pt;}
.yc0{bottom:548.960083pt;}
.y86{bottom:552.480042pt;}
.y40{bottom:564.480042pt;}
.y6b{bottom:564.800049pt;}
.yd5{bottom:567.520081pt;}
.y4e{bottom:570.720032pt;}
.y85{bottom:577.920044pt;}
.y27{bottom:589.760071pt;}
.yec{bottom:590.080079pt;}
.y50{bottom:591.840088pt;}
.y4d{bottom:592.000061pt;}
.y84{bottom:603.200074pt;}
.y4f{bottom:612.960053pt;}
.y26{bottom:615.040070pt;}
.y3f{bottom:615.200074pt;}
.y6a{bottom:615.520050pt;}
.yd4{bottom:616.160065pt;}
.yaf{bottom:628.480072pt;}
.y83{bottom:628.640046pt;}
.y9d{bottom:638.400055pt;}
.y4c{bottom:639.360047pt;}
.y25{bottom:640.480072pt;}
.yc{bottom:640.800000pt;}
.y69{bottom:640.800049pt;}
.ybf{bottom:651.360047pt;}
.yae{bottom:653.920044pt;}
.y9c{bottom:663.680054pt;}
.yd3{bottom:664.800049pt;}
.y24{bottom:665.760071pt;}
.y3e{bottom:665.920044pt;}
.yb{bottom:666.240000pt;}
.y68{bottom:666.240052pt;}
.ybe{bottom:672.480072pt;}
.y82{bottom:679.360047pt;}
.y9b{bottom:689.120057pt;}
.y23{bottom:691.200074pt;}
.ya{bottom:691.520000pt;}
.y67{bottom:691.520050pt;}
.ybd{bottom:693.760071pt;}
.yad{bottom:704.640046pt;}
.y81{bottom:705.600068pt;}
.yd2{bottom:713.440064pt;}
.ybc{bottom:714.880066pt;}
.y3d{bottom:716.640046pt;}
.y66{bottom:716.960053pt;}
.y80{bottom:732.000061pt;}
.ybb{bottom:736.000061pt;}
.yd1{bottom:737.760071pt;}
.y22{bottom:741.920044pt;}
.y9{bottom:742.240000pt;}
.y4b{bottom:742.240052pt;}
.yba{bottom:757.120057pt;}
.yb7{bottom:757.440064pt;}
.y7f{bottom:758.400055pt;}
.y9a{bottom:758.560059pt;}
.yd0{bottom:762.080048pt;}
.y3c{bottom:767.360047pt;}
.y8{bottom:767.680000pt;}
.y65{bottom:767.680054pt;}
.yb9{bottom:778.240052pt;}
.yb6{bottom:782.720063pt;}
.y99{bottom:783.840058pt;}
.y7e{bottom:784.800049pt;}
.y21{bottom:792.640046pt;}
.y7{bottom:792.960000pt;}
.y4a{bottom:792.960053pt;}
.y7b{bottom:797.920044pt;}
.yac{bottom:799.360047pt;}
.y98{bottom:809.280060pt;}
.y7d{bottom:811.200074pt;}
.ycf{bottom:811.680054pt;}
.y3b{bottom:818.080048pt;}
.y49{bottom:818.400055pt;}
.y7a{bottom:824.320069pt;}
.yab{bottom:824.800049pt;}
.y97{bottom:834.560059pt;}
.y7c{bottom:837.600068pt;}
.yf9{bottom:843.360047pt;}
.y48{bottom:843.680054pt;}
.y96{bottom:860.000061pt;}
.y20{bottom:868.800064pt;}
.y6{bottom:869.120000pt;}
.y64{bottom:869.120057pt;}
.yaa{bottom:875.520066pt;}
.y77{bottom:877.120057pt;}
.y79{bottom:890.240052pt;}
.y1f{bottom:894.080063pt;}
.y5{bottom:894.400000pt;}
.yeb{bottom:894.400055pt;}
.yce{bottom:908.960053pt;}
.y78{bottom:916.640061pt;}
.y95{bottom:919.520066pt;}
.y4{bottom:919.840000pt;}
.yea{bottom:919.840058pt;}
.ycd{bottom:934.240052pt;}
.y76{bottom:943.040055pt;}
.y1e{bottom:944.800064pt;}
.y47{bottom:945.120057pt;}
.y3a{bottom:970.240052pt;}
.y46{bottom:970.560059pt;}
.y1a{bottom:976.960133pt;}
.y1d{bottom:995.520058pt;}
.y1c{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.yc4{bottom:1021.280060pt;}
.h8{height:49.159043pt;}
.he{height:49.419255pt;}
.h3{height:49.421010pt;}
.hd{height:51.141625pt;}
.h2{height:51.142916pt;}
.h6{height:57.257711pt;}
.ha{height:58.659722pt;}
.h7{height:58.660277pt;}
.h9{height:60.299627pt;}
.h10{height:61.774332pt;}
.hf{height:62.530612pt;}
.hc{height:74.129058pt;}
.h5{height:74.129760pt;}
.hb{height:75.036592pt;}
.h4{height:75.037303pt;}
.h12{height:103.374184pt;}
.h11{height:103.374188pt;}
.h13{height:104.014324pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x3{left:99.360000pt;}
.x8{left:111.200000pt;}
.x11{left:125.279999pt;}
.x15{left:132.639999pt;}
.x16{left:153.119995pt;}
.x14{left:154.720001pt;}
.x1a{left:179.679993pt;}
.x27{left:192.320007pt;}
.x19{left:196.479996pt;}
.x13{left:199.679993pt;}
.x5{left:201.280000pt;}
.x7{left:215.360000pt;}
.x9{left:217.120000pt;}
.x4{left:222.080000pt;}
.x10{left:228.000000pt;}
.xb{left:234.400000pt;}
.x28{left:237.119995pt;}
.x6{left:251.200000pt;}
.xa{left:255.200000pt;}
.xc{left:274.880000pt;}
.xe{left:280.960000pt;}
.x29{left:296.000000pt;}
.x1b{left:310.720001pt;}
.xf{left:320.480000pt;}
.x1d{left:324.480011pt;}
.xd{left:326.240000pt;}
.x23{left:339.359985pt;}
.x12{left:342.559998pt;}
.x17{left:352.640015pt;}
.x26{left:363.359985pt;}
.x22{left:403.679993pt;}
.x21{left:420.959991pt;}
.x24{left:448.000000pt;}
.x1c{left:449.119995pt;}
.x20{left:452.480011pt;}
.x1{left:473.600000pt;}
.x1f{left:521.919983pt;}
.x18{left:539.200012pt;}
.x25{left:571.039978pt;}
.x1e{left:624.479980pt;}
}




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