
    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_b1ada11664db31b8729f9323.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_49fbc6d62ed22124f2498050.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_963f57c791cdc985bb42207b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_00afccd2c7b8bd1de3527737.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ccc9b2ea8fd3010b2c961f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:6.850732px;}
.ls3{letter-spacing:6.850799px;}
.ls1{letter-spacing:39.970736px;}
.ls2{letter-spacing:39.970804px;}
.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:-16.560675px;}
.ws0{word-spacing:-14.940563px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-4.191145px;}
._13{margin-left:-2.912091px;}
._1{margin-left:-1.358752px;}
._0{width:1.065682px;}
._9{width:2.286667px;}
._c{width:3.301420px;}
._b{width:4.550045px;}
._5{width:6.366803px;}
._a{width:7.559689px;}
._12{width:8.754904px;}
._15{width:10.294012px;}
._16{width:11.316375px;}
._f{width:12.618458px;}
._11{width:13.825987px;}
._10{width:14.885459px;}
._19{width:18.339548px;}
._1e{width:19.393142px;}
._8{width:20.488919px;}
._6{width:21.600037px;}
._7{width:22.927220px;}
._1d{width:23.959827px;}
._17{width:24.961854px;}
._18{width:26.022772px;}
._1b{width:27.069200px;}
._1a{width:28.446065px;}
._2{width:30.099544px;}
._d{width:31.795979px;}
._e{width:32.798934px;}
._21{width:33.839928px;}
._3{width:34.916631px;}
._4{width:35.970821px;}
._1c{width:37.096430px;}
._46{width:38.368908px;}
._20{width:39.515582px;}
._1f{width:40.654646px;}
._40{width:41.670540px;}
._39{width:42.954768px;}
._25{width:50.625207px;}
._34{width:52.448693px;}
._2e{width:54.747521px;}
._33{width:55.775060px;}
._45{width:57.637359px;}
._2a{width:58.737244px;}
._29{width:59.818193px;}
._2c{width:65.673427px;}
._26{width:66.826205px;}
._27{width:68.285097px;}
._36{width:73.377763px;}
._50{width:79.062474px;}
._4e{width:84.399151px;}
._4f{width:85.508717px;}
._2d{width:86.804589px;}
._28{width:89.755753px;}
._3d{width:103.116337px;}
._3e{width:104.390215px;}
._3c{width:107.299201px;}
._4c{width:109.372908px;}
._4d{width:111.275315px;}
._4b{width:112.685043px;}
._3f{width:114.414081px;}
._30{width:116.100941px;}
._3a{width:118.429527px;}
._35{width:120.769499px;}
._32{width:126.934986px;}
._31{width:128.033166px;}
._37{width:144.748062px;}
._24{width:150.290713px;}
._22{width:151.672753px;}
._2b{width:168.573698px;}
._42{width:172.277597px;}
._3b{width:186.464403px;}
._51{width:193.446021px;}
._48{width:203.891926px;}
._38{width:207.077268px;}
._47{width:219.086345px;}
._44{width:256.266506px;}
._2f{width:274.558655px;}
._41{width:311.316367px;}
._4a{width:323.903773px;}
._43{width:394.287677px;}
._49{width:414.369307px;}
._23{width:689.086840px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.yca{bottom:3.959954px;}
.yad{bottom:3.960021px;}
.y4{bottom:63.180039px;}
.yc0{bottom:120.780052px;}
.y64{bottom:122.400055px;}
.y35{bottom:125.280052px;}
.ybd{bottom:137.160049px;}
.ya6{bottom:141.660049px;}
.y63{bottom:143.280052px;}
.y34{bottom:146.160049px;}
.ybc{bottom:158.040047px;}
.y79{bottom:159.660049px;}
.ya5{bottom:162.540047px;}
.y62{bottom:164.160049px;}
.y33{bottom:167.040047px;}
.ydd{bottom:178.920043px;}
.ybb{bottom:179.640060px;}
.y78{bottom:180.540047px;}
.ya4{bottom:183.420043px;}
.y61{bottom:185.040047px;}
.y32{bottom:187.920043px;}
.ydc{bottom:199.800041px;}
.yba{bottom:200.520058px;}
.y77{bottom:201.420043px;}
.ya3{bottom:204.300041px;}
.y60{bottom:205.920043px;}
.y31{bottom:208.800041px;}
.ydb{bottom:220.680039px;}
.yb9{bottom:221.400055px;}
.y76{bottom:222.120072px;}
.ya2{bottom:225.180039px;}
.y5f{bottom:226.620072px;}
.y30{bottom:229.680039px;}
.yda{bottom:241.560036px;}
.yb8{bottom:243.000068px;}
.y75{bottom:243.900055px;}
.ya1{bottom:246.060036px;}
.y5e{bottom:247.500068px;}
.y2f{bottom:250.560036px;}
.yd9{bottom:262.440033px;}
.yb7{bottom:263.880066px;}
.y74{bottom:264.780052px;}
.ya0{bottom:266.940033px;}
.y5d{bottom:268.380066px;}
.y2e{bottom:271.440033px;}
.yd8{bottom:283.320099px;}
.yb6{bottom:284.760064px;}
.y73{bottom:285.480079px;}
.y9f{bottom:287.820099px;}
.y5c{bottom:289.260064px;}
.y2d{bottom:292.320099px;}
.yd7{bottom:304.200096px;}
.yb5{bottom:305.640060px;}
.y72{bottom:306.360077px;}
.y9e{bottom:308.700096px;}
.y5b{bottom:310.140060px;}
.y2c{bottom:313.200096px;}
.yd6{bottom:325.080093px;}
.yb4{bottom:326.520058px;}
.y71{bottom:328.140060px;}
.y9d{bottom:329.580093px;}
.y5a{bottom:331.020058px;}
.y2b{bottom:333.900055px;}
.yd5{bottom:345.960091px;}
.yb3{bottom:348.120072px;}
.y70{bottom:348.840088px;}
.y9c{bottom:350.460091px;}
.y59{bottom:351.900055px;}
.y2a{bottom:354.780052px;}
.yd4{bottom:366.840088px;}
.yb2{bottom:369.000068px;}
.y6f{bottom:369.720085px;}
.y9b{bottom:371.340088px;}
.y58{bottom:372.780052px;}
.y29{bottom:375.660049px;}
.yd3{bottom:387.720085px;}
.yb1{bottom:389.880066px;}
.y6e{bottom:390.600083px;}
.y9a{bottom:392.220085px;}
.y57{bottom:393.660049px;}
.y28{bottom:396.540047px;}
.yd2{bottom:408.600083px;}
.yb0{bottom:411.480079px;}
.y6d{bottom:412.200096px;}
.y99{bottom:413.100083px;}
.y56{bottom:414.540047px;}
.y27{bottom:417.420043px;}
.yd1{bottom:429.480079px;}
.yaf{bottom:432.360077px;}
.y6c{bottom:433.080093px;}
.y98{bottom:433.980079px;}
.y55{bottom:435.420043px;}
.y26{bottom:438.300041px;}
.yd0{bottom:450.360077px;}
.yae{bottom:453.240074px;}
.y6b{bottom:453.960091px;}
.y97{bottom:454.860077px;}
.y54{bottom:456.300041px;}
.y25{bottom:459.180039px;}
.ycf{bottom:471.060036px;}
.y6a{bottom:474.840088px;}
.y96{bottom:475.560036px;}
.y53{bottom:477.180039px;}
.y24{bottom:480.060036px;}
.yac{bottom:491.760064px;}
.yce{bottom:492.840088px;}
.yab{bottom:495.720085px;}
.y69{bottom:496.440033px;}
.y52{bottom:498.060036px;}
.y23{bottom:500.940033px;}
.ycd{bottom:513.720085px;}
.yaa{bottom:516.600083px;}
.y68{bottom:517.320099px;}
.y51{bottom:518.940033px;}
.y22{bottom:521.820099px;}
.ycc{bottom:535.320099px;}
.ya9{bottom:537.480079px;}
.y67{bottom:538.200096px;}
.y50{bottom:539.820099px;}
.y21{bottom:542.700096px;}
.ycb{bottom:556.200096px;}
.y95{bottom:559.080093px;}
.y66{bottom:559.800041px;}
.y4f{bottom:560.700096px;}
.y20{bottom:563.580093px;}
.yc8{bottom:577.800041px;}
.y94{bottom:579.960091px;}
.y65{bottom:580.680039px;}
.y4e{bottom:581.580093px;}
.y1f{bottom:584.460091px;}
.yc9{bottom:594.720085px;}
.yc7{bottom:598.680039px;}
.y93{bottom:600.840088px;}
.y4d{bottom:602.460091px;}
.y1e{bottom:605.340088px;}
.yc6{bottom:620.280052px;}
.y92{bottom:621.720085px;}
.y4c{bottom:623.160049px;}
.y1d{bottom:626.220085px;}
.yc5{bottom:641.160049px;}
.y91{bottom:642.600083px;}
.y4b{bottom:644.040047px;}
.y1c{bottom:647.100083px;}
.yc4{bottom:662.760064px;}
.y90{bottom:663.480079px;}
.ya8{bottom:664.200096px;}
.y4a{bottom:664.920043px;}
.y1b{bottom:667.980079px;}
.yc3{bottom:683.640060px;}
.y8f{bottom:684.360077px;}
.ya7{bottom:685.080093px;}
.y49{bottom:685.800041px;}
.y1a{bottom:688.860077px;}
.y8e{bottom:705.240074px;}
.y48{bottom:706.680073px;}
.y19{bottom:709.740074px;}
.y8d{bottom:726.120072px;}
.y47{bottom:727.560070px;}
.y18{bottom:730.620072px;}
.y8c{bottom:747.000068px;}
.yc2{bottom:747.720051px;}
.y46{bottom:748.440067px;}
.y17{bottom:751.320065px;}
.y8b{bottom:767.880066px;}
.yc1{bottom:768.600083px;}
.y45{bottom:769.320065px;}
.y16{bottom:772.200061px;}
.y8a{bottom:788.760064px;}
.y44{bottom:790.200061px;}
.y15{bottom:793.080059px;}
.y89{bottom:809.640060px;}
.y43{bottom:811.080059px;}
.y14{bottom:813.960056px;}
.y88{bottom:830.520058px;}
.y42{bottom:831.960056px;}
.y13{bottom:834.840054px;}
.y87{bottom:851.400055px;}
.y41{bottom:852.840054px;}
.y12{bottom:855.720051px;}
.y86{bottom:872.280052px;}
.y40{bottom:873.720051px;}
.y11{bottom:876.600083px;}
.y85{bottom:892.980079px;}
.y3f{bottom:894.600083px;}
.y10{bottom:897.480079px;}
.y84{bottom:913.860077px;}
.y3e{bottom:915.480079px;}
.yf{bottom:918.360077px;}
.y83{bottom:934.740074px;}
.y3d{bottom:936.360077px;}
.ye{bottom:938.340054px;}
.y82{bottom:955.620072px;}
.y3c{bottom:957.240074px;}
.yd{bottom:962.460056px;}
.y81{bottom:976.500068px;}
.y3b{bottom:978.120072px;}
.yc{bottom:987.480063px;}
.y80{bottom:997.380066px;}
.y3a{bottom:999.000068px;}
.yb{bottom:1008.000068px;}
.y7f{bottom:1018.260064px;}
.y39{bottom:1019.700061px;}
.ya{bottom:1026.900072px;}
.y7e{bottom:1039.140060px;}
.y38{bottom:1040.580059px;}
.y9{bottom:1045.980063px;}
.ybf{bottom:1060.020058px;}
.y7d{bottom:1060.740074px;}
.y37{bottom:1061.460074px;}
.y8{bottom:1064.880066px;}
.ybe{bottom:1080.900072px;}
.y7c{bottom:1081.620072px;}
.y36{bottom:1082.340070px;}
.y7{bottom:1083.780069px;}
.y7b{bottom:1102.500068px;}
.y6{bottom:1103.220068px;}
.y7a{bottom:1123.380066px;}
.y5{bottom:1124.100065px;}
.y3{bottom:1145.340063px;}
.y2{bottom:1165.320065px;}
.y1{bottom:1185.120063px;}
.hc{height:18.719948px;}
.hb{height:18.720016px;}
.h2{height:48.498467px;}
.h7{height:49.257167px;}
.h6{height:51.679172px;}
.h8{height:53.575923px;}
.ha{height:54.598475px;}
.h5{height:57.283116px;}
.h4{height:59.385546px;}
.h3{height:65.886904px;}
.h9{height:72.848931px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:7.919975px;}
.w2{width:8.099979px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:76.500000px;}
.x16{left:84.959997px;}
.x1d{left:89.280001px;}
.x13{left:106.379998px;}
.x19{left:114.840002px;}
.x11{left:117.000000px;}
.xc{left:121.319996px;}
.x2b{left:144.000000px;}
.xb{left:146.879998px;}
.x12{left:157.500000px;}
.x2a{left:171.000000px;}
.x28{left:173.879998px;}
.xe{left:187.379998px;}
.x15{left:189.900003px;}
.x17{left:196.919992px;}
.x29{left:200.879998px;}
.x1c{left:202.860008px;}
.x1e{left:219.599997px;}
.x1a{left:226.800007px;}
.x24{left:245.699993px;}
.x21{left:249.479994px;}
.x23{left:276.300007px;}
.xd{left:321.480011px;}
.x27{left:369.899987px;}
.x9{left:410.939999px;}
.x1{left:415.079990px;}
.x10{left:420.300007px;}
.x4{left:450.180005px;}
.x20{left:464.220017px;}
.x2{left:479.339985px;}
.x1f{left:480.779983px;}
.x18{left:495.720017px;}
.x8{left:507.420010px;}
.x22{left:510.660015px;}
.x25{left:523.079990px;}
.x1b{left:525.600014px;}
.x5{left:542.699993px;}
.xa{left:578.519989px;}
.x7{left:699.120002px;}
.x14{left:716.940033px;}
.x6{left:735.120002px;}
.x26{left:773.820030px;}
.x3{left:816.480011px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:6.089539pt;}
.ls3{letter-spacing:6.089599pt;}
.ls1{letter-spacing:35.529543pt;}
.ls2{letter-spacing:35.529603pt;}
.ws2{word-spacing:-14.720600pt;}
.ws0{word-spacing:-13.280500pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-3.725462pt;}
._13{margin-left:-2.588525pt;}
._1{margin-left:-1.207779pt;}
._0{width:0.947273pt;}
._9{width:2.032593pt;}
._c{width:2.934595pt;}
._b{width:4.044485pt;}
._5{width:5.659381pt;}
._a{width:6.719724pt;}
._12{width:7.782137pt;}
._15{width:9.150233pt;}
._16{width:10.059000pt;}
._f{width:11.216407pt;}
._11{width:12.289767pt;}
._10{width:13.231519pt;}
._19{width:16.301820pt;}
._1e{width:17.238348pt;}
._8{width:18.212372pt;}
._6{width:19.200033pt;}
._7{width:20.379751pt;}
._1d{width:21.297624pt;}
._17{width:22.188314pt;}
._18{width:23.131353pt;}
._1b{width:24.061511pt;}
._1a{width:25.285391pt;}
._2{width:26.755151pt;}
._d{width:28.263092pt;}
._e{width:29.154608pt;}
._21{width:30.079936pt;}
._3{width:31.037005pt;}
._4{width:31.974063pt;}
._1c{width:32.974604pt;}
._46{width:34.105696pt;}
._20{width:35.124962pt;}
._1f{width:36.137463pt;}
._40{width:37.040480pt;}
._39{width:38.182016pt;}
._25{width:45.000184pt;}
._34{width:46.621060pt;}
._2e{width:48.664464pt;}
._33{width:49.577831pt;}
._45{width:51.233208pt;}
._2a{width:52.210884pt;}
._29{width:53.171727pt;}
._2c{width:58.376379pt;}
._26{width:59.401071pt;}
._27{width:60.697864pt;}
._36{width:65.224679pt;}
._50{width:70.277754pt;}
._4e{width:75.021468pt;}
._4f{width:76.007748pt;}
._2d{width:77.159635pt;}
._28{width:79.782892pt;}
._3d{width:91.658966pt;}
._3e{width:92.791302pt;}
._3c{width:95.377068pt;}
._4c{width:97.220363pt;}
._4d{width:98.911391pt;}
._4b{width:100.164483pt;}
._3f{width:101.701405pt;}
._30{width:103.200836pt;}
._3a{width:105.270691pt;}
._35{width:107.350666pt;}
._32{width:112.831099pt;}
._31{width:113.807259pt;}
._37{width:128.664944pt;}
._24{width:133.591745pt;}
._22{width:134.820225pt;}
._2b{width:149.843288pt;}
._42{width:153.135642pt;}
._3b{width:165.746136pt;}
._51{width:171.952019pt;}
._48{width:181.237267pt;}
._38{width:184.068683pt;}
._47{width:194.743418pt;}
._44{width:227.792450pt;}
._2f{width:244.052137pt;}
._41{width:276.725659pt;}
._4a{width:287.914465pt;}
._43{width:350.477935pt;}
._49{width:368.328273pt;}
._23{width:612.521636pt;}
.fs0{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:3.519959pt;}
.yad{bottom:3.520019pt;}
.y4{bottom:56.160035pt;}
.yc0{bottom:107.360047pt;}
.y64{bottom:108.800049pt;}
.y35{bottom:111.360047pt;}
.ybd{bottom:121.920044pt;}
.ya6{bottom:125.920044pt;}
.y63{bottom:127.360047pt;}
.y34{bottom:129.920044pt;}
.ybc{bottom:140.480042pt;}
.y79{bottom:141.920044pt;}
.ya5{bottom:144.480042pt;}
.y62{bottom:145.920044pt;}
.y33{bottom:148.480042pt;}
.ydd{bottom:159.040039pt;}
.ybb{bottom:159.680054pt;}
.y78{bottom:160.480042pt;}
.ya4{bottom:163.040039pt;}
.y61{bottom:164.480042pt;}
.y32{bottom:167.040039pt;}
.ydc{bottom:177.600037pt;}
.yba{bottom:178.240052pt;}
.y77{bottom:179.040039pt;}
.ya3{bottom:181.600037pt;}
.y60{bottom:183.040039pt;}
.y31{bottom:185.600037pt;}
.ydb{bottom:196.160035pt;}
.yb9{bottom:196.800049pt;}
.y76{bottom:197.440064pt;}
.ya2{bottom:200.160035pt;}
.y5f{bottom:201.440064pt;}
.y30{bottom:204.160035pt;}
.yda{bottom:214.720032pt;}
.yb8{bottom:216.000061pt;}
.y75{bottom:216.800049pt;}
.ya1{bottom:218.720032pt;}
.y5e{bottom:220.000061pt;}
.y2f{bottom:222.720032pt;}
.yd9{bottom:233.280030pt;}
.yb7{bottom:234.560059pt;}
.y74{bottom:235.360047pt;}
.ya0{bottom:237.280030pt;}
.y5d{bottom:238.560059pt;}
.y2e{bottom:241.280030pt;}
.yd8{bottom:251.840088pt;}
.yb6{bottom:253.120057pt;}
.y73{bottom:253.760071pt;}
.y9f{bottom:255.840088pt;}
.y5c{bottom:257.120057pt;}
.y2d{bottom:259.840088pt;}
.yd7{bottom:270.400086pt;}
.yb5{bottom:271.680054pt;}
.y72{bottom:272.320069pt;}
.y9e{bottom:274.400086pt;}
.y5b{bottom:275.680054pt;}
.y2c{bottom:278.400086pt;}
.yd6{bottom:288.960083pt;}
.yb4{bottom:290.240052pt;}
.y71{bottom:291.680054pt;}
.y9d{bottom:292.960083pt;}
.y5a{bottom:294.240052pt;}
.y2b{bottom:296.800049pt;}
.yd5{bottom:307.520081pt;}
.yb3{bottom:309.440064pt;}
.y70{bottom:310.080079pt;}
.y9c{bottom:311.520081pt;}
.y59{bottom:312.800049pt;}
.y2a{bottom:315.360047pt;}
.yd4{bottom:326.080079pt;}
.yb2{bottom:328.000061pt;}
.y6f{bottom:328.640076pt;}
.y9b{bottom:330.080079pt;}
.y58{bottom:331.360047pt;}
.y29{bottom:333.920044pt;}
.yd3{bottom:344.640076pt;}
.yb1{bottom:346.560059pt;}
.y6e{bottom:347.200074pt;}
.y9a{bottom:348.640076pt;}
.y57{bottom:349.920044pt;}
.y28{bottom:352.480042pt;}
.yd2{bottom:363.200074pt;}
.yb0{bottom:365.760071pt;}
.y6d{bottom:366.400086pt;}
.y99{bottom:367.200074pt;}
.y56{bottom:368.480042pt;}
.y27{bottom:371.040039pt;}
.yd1{bottom:381.760071pt;}
.yaf{bottom:384.320069pt;}
.y6c{bottom:384.960083pt;}
.y98{bottom:385.760071pt;}
.y55{bottom:387.040039pt;}
.y26{bottom:389.600037pt;}
.yd0{bottom:400.320069pt;}
.yae{bottom:402.880066pt;}
.y6b{bottom:403.520081pt;}
.y97{bottom:404.320069pt;}
.y54{bottom:405.600037pt;}
.y25{bottom:408.160035pt;}
.ycf{bottom:418.720032pt;}
.y6a{bottom:422.080079pt;}
.y96{bottom:422.720032pt;}
.y53{bottom:424.160035pt;}
.y24{bottom:426.720032pt;}
.yac{bottom:437.120057pt;}
.yce{bottom:438.080079pt;}
.yab{bottom:440.640076pt;}
.y69{bottom:441.280030pt;}
.y52{bottom:442.720032pt;}
.y23{bottom:445.280030pt;}
.ycd{bottom:456.640076pt;}
.yaa{bottom:459.200074pt;}
.y68{bottom:459.840088pt;}
.y51{bottom:461.280030pt;}
.y22{bottom:463.840088pt;}
.ycc{bottom:475.840088pt;}
.ya9{bottom:477.760071pt;}
.y67{bottom:478.400086pt;}
.y50{bottom:479.840088pt;}
.y21{bottom:482.400086pt;}
.ycb{bottom:494.400086pt;}
.y95{bottom:496.960083pt;}
.y66{bottom:497.600037pt;}
.y4f{bottom:498.400086pt;}
.y20{bottom:500.960083pt;}
.yc8{bottom:513.600037pt;}
.y94{bottom:515.520081pt;}
.y65{bottom:516.160035pt;}
.y4e{bottom:516.960083pt;}
.y1f{bottom:519.520081pt;}
.yc9{bottom:528.640076pt;}
.yc7{bottom:532.160035pt;}
.y93{bottom:534.080079pt;}
.y4d{bottom:535.520081pt;}
.y1e{bottom:538.080079pt;}
.yc6{bottom:551.360047pt;}
.y92{bottom:552.640076pt;}
.y4c{bottom:553.920044pt;}
.y1d{bottom:556.640076pt;}
.yc5{bottom:569.920044pt;}
.y91{bottom:571.200074pt;}
.y4b{bottom:572.480042pt;}
.y1c{bottom:575.200074pt;}
.yc4{bottom:589.120057pt;}
.y90{bottom:589.760071pt;}
.ya8{bottom:590.400086pt;}
.y4a{bottom:591.040039pt;}
.y1b{bottom:593.760071pt;}
.yc3{bottom:607.680054pt;}
.y8f{bottom:608.320069pt;}
.ya7{bottom:608.960083pt;}
.y49{bottom:609.600037pt;}
.y1a{bottom:612.320069pt;}
.y8e{bottom:626.880066pt;}
.y48{bottom:628.160065pt;}
.y19{bottom:630.880066pt;}
.y8d{bottom:645.440064pt;}
.y47{bottom:646.720063pt;}
.y18{bottom:649.440064pt;}
.y8c{bottom:664.000061pt;}
.yc2{bottom:664.640046pt;}
.y46{bottom:665.280060pt;}
.y17{bottom:667.840058pt;}
.y8b{bottom:682.560059pt;}
.yc1{bottom:683.200074pt;}
.y45{bottom:683.840058pt;}
.y16{bottom:686.400055pt;}
.y8a{bottom:701.120057pt;}
.y44{bottom:702.400055pt;}
.y15{bottom:704.960053pt;}
.y89{bottom:719.680054pt;}
.y43{bottom:720.960053pt;}
.y14{bottom:723.520050pt;}
.y88{bottom:738.240052pt;}
.y42{bottom:739.520050pt;}
.y13{bottom:742.080048pt;}
.y87{bottom:756.800049pt;}
.y41{bottom:758.080048pt;}
.y12{bottom:760.640046pt;}
.y86{bottom:775.360047pt;}
.y40{bottom:776.640046pt;}
.y11{bottom:779.200074pt;}
.y85{bottom:793.760071pt;}
.y3f{bottom:795.200074pt;}
.y10{bottom:797.760071pt;}
.y84{bottom:812.320069pt;}
.y3e{bottom:813.760071pt;}
.yf{bottom:816.320069pt;}
.y83{bottom:830.880066pt;}
.y3d{bottom:832.320069pt;}
.ye{bottom:834.080048pt;}
.y82{bottom:849.440064pt;}
.y3c{bottom:850.880066pt;}
.yd{bottom:855.520050pt;}
.y81{bottom:868.000061pt;}
.y3b{bottom:869.440064pt;}
.yc{bottom:877.760056pt;}
.y80{bottom:886.560059pt;}
.y3a{bottom:888.000061pt;}
.yb{bottom:896.000061pt;}
.y7f{bottom:905.120057pt;}
.y39{bottom:906.400055pt;}
.ya{bottom:912.800064pt;}
.y7e{bottom:923.680054pt;}
.y38{bottom:924.960053pt;}
.y9{bottom:929.760056pt;}
.ybf{bottom:942.240052pt;}
.y7d{bottom:942.880066pt;}
.y37{bottom:943.520066pt;}
.y8{bottom:946.560059pt;}
.ybe{bottom:960.800064pt;}
.y7c{bottom:961.440064pt;}
.y36{bottom:962.080063pt;}
.y7{bottom:963.360062pt;}
.y7b{bottom:980.000061pt;}
.y6{bottom:980.640061pt;}
.y7a{bottom:998.560059pt;}
.y5{bottom:999.200058pt;}
.y3{bottom:1018.080056pt;}
.y2{bottom:1035.840058pt;}
.y1{bottom:1053.440056pt;}
.hc{height:16.639954pt;}
.hb{height:16.640014pt;}
.h2{height:43.109748pt;}
.h7{height:43.784148pt;}
.h6{height:45.937042pt;}
.h8{height:47.623043pt;}
.ha{height:48.531978pt;}
.h5{height:50.918325pt;}
.h4{height:52.787152pt;}
.h3{height:58.566137pt;}
.h9{height:64.754605pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:7.039978pt;}
.w2{width:7.199981pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:68.000000pt;}
.x16{left:75.519997pt;}
.x1d{left:79.360001pt;}
.x13{left:94.559998pt;}
.x19{left:102.080002pt;}
.x11{left:104.000000pt;}
.xc{left:107.839996pt;}
.x2b{left:128.000000pt;}
.xb{left:130.559998pt;}
.x12{left:140.000000pt;}
.x2a{left:152.000000pt;}
.x28{left:154.559998pt;}
.xe{left:166.559998pt;}
.x15{left:168.800003pt;}
.x17{left:175.039993pt;}
.x29{left:178.559998pt;}
.x1c{left:180.320007pt;}
.x1e{left:195.199997pt;}
.x1a{left:201.600006pt;}
.x24{left:218.399994pt;}
.x21{left:221.759995pt;}
.x23{left:245.600006pt;}
.xd{left:285.760010pt;}
.x27{left:328.799988pt;}
.x9{left:365.279999pt;}
.x1{left:368.959991pt;}
.x10{left:373.600006pt;}
.x4{left:400.160004pt;}
.x20{left:412.640015pt;}
.x2{left:426.079987pt;}
.x1f{left:427.359985pt;}
.x18{left:440.640015pt;}
.x8{left:451.040009pt;}
.x22{left:453.920013pt;}
.x25{left:464.959991pt;}
.x1b{left:467.200012pt;}
.x5{left:482.399994pt;}
.xa{left:514.239990pt;}
.x7{left:621.440002pt;}
.x14{left:637.280029pt;}
.x6{left:653.440002pt;}
.x26{left:687.840027pt;}
.x3{left:725.760010pt;}
}




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