
    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_eb9aab7df2b8fdcb11786a8c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dfe307ebe2fa0396843787f0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_af95e7e33ee2014f56a82551.woff')format("woff");}.ff3{font-family:ff3;line-height:0.920410;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_fb90fd4b69974cb02bbb07c1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9d13703b40de52bd7c5736cd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_beb0c5edc524c1f4ed643824.woff')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_ee66f90dac5bb92098713257.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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);}
.v2{vertical-align:-21.600081px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.199892px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.396166px;}
.ls0{letter-spacing:0.401701px;}
.ls5{letter-spacing:0.625212px;}
.ls7{letter-spacing:1.250424px;}
.ls8{letter-spacing:3.809731px;}
.ls6{letter-spacing:5.249763px;}
.ls4{letter-spacing:10.835424px;}
.ls3{letter-spacing:69.936656px;}
.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:-18.684563px;}
.ws3{word-spacing:-17.965913px;}
.ws7{word-spacing:-16.880724px;}
.ws0{word-spacing:-16.528613px;}
.ws6{word-spacing:-16.255512px;}
.ws1{word-spacing:-15.630300px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:294.912500px;}
._3{margin-left:-12.425224px;}
._5{margin-left:-10.180246px;}
._12{margin-left:-9.079711px;}
._2{margin-left:-6.977241px;}
._4{margin-left:-5.447983px;}
._8{margin-left:-4.314247px;}
._1{margin-left:-2.867359px;}
._0{margin-left:-1.624837px;}
._6{width:1.026931px;}
._7{width:2.460988px;}
._9{width:3.813793px;}
._b{width:5.609710px;}
._f{width:7.215104px;}
._10{width:8.260995px;}
._d{width:9.272075px;}
._e{width:10.391375px;}
._a{width:11.498438px;}
._c{width:12.737127px;}
._15{width:15.091788px;}
._11{width:32.684337px;}
._37{width:42.486291px;}
._35{width:43.736715px;}
._36{width:44.830042px;}
._16{width:75.375303px;}
._24{width:83.503059px;}
._34{width:107.496435px;}
._2f{width:117.741846px;}
._2e{width:127.007898px;}
._1c{width:129.458744px;}
._22{width:135.005763px;}
._27{width:136.961288px;}
._19{width:148.439319px;}
._18{width:153.563314px;}
._33{width:171.044497px;}
._21{width:175.549320px;}
._2c{width:181.141314px;}
._20{width:197.928613px;}
._26{width:220.829246px;}
._17{width:224.642085px;}
._2b{width:244.114254px;}
._1d{width:247.653068px;}
._25{width:270.402253px;}
._28{width:293.328985px;}
._14{width:358.697366px;}
._30{width:392.736449px;}
._31{width:418.871605px;}
._1b{width:495.918158px;}
._32{width:500.616586px;}
._29{width:517.675536px;}
._1f{width:545.184864px;}
._1a{width:575.549427px;}
._1e{width:714.880669px;}
._23{width:716.314726px;}
._2a{width:747.753552px;}
._2d{width:778.388940px;}
._13{width:1044.104040px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(248,0,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs4{font-size:38.087730px;}
.fs2{font-size:43.836795px;}
.fs8{font-size:48.148650px;}
.fsb{font-size:51.023250px;}
.fs9{font-size:53.897850px;}
.fs5{font-size:62.521200px;}
.fs3{font-size:66.114450px;}
.fs7{font-size:71.863650px;}
.fs1{font-size:74.738250px;}
.fs6{font-size:84.080250px;}
.fs0{font-size:95.578650px;}
.fsa{font-size:107.795250px;}
.y0{bottom:0.000000px;}
.y29{bottom:127.080025px;}
.y108{bottom:130.139992px;}
.yce{bottom:131.039977px;}
.ya5{bottom:132.840019px;}
.ye4{bottom:136.440033px;}
.yba{bottom:139.139992px;}
.y53{bottom:141.840019px;}
.y28{bottom:143.279983px;}
.y8a{bottom:144.539977px;}
.y107{bottom:149.039977px;}
.ya4{bottom:155.340019px;}
.ycd{bottom:157.320030px;}
.ye3{bottom:158.940033px;}
.y52{bottom:164.340019px;}
.y68{bottom:165.240006px;}
.yb9{bottom:167.039977px;}
.y106{bottom:167.940033px;}
.y23{bottom:171.539977px;}
.y89{bottom:172.440033px;}
.ye2{bottom:181.440033px;}
.ya3{bottom:183.240006px;}
.ycc{bottom:183.779983px;}
.y67{bottom:187.740006px;}
.yb8{bottom:189.539977px;}
.y105{bottom:191.879998px;}
.y51{bottom:192.240006px;}
.y22{bottom:194.039977px;}
.y88{bottom:200.340019px;}
.ye1{bottom:203.940033px;}
.y66{bottom:210.240006px;}
.y104{bottom:210.779983px;}
.ya2{bottom:211.139992px;}
.y50{bottom:214.740006px;}
.y21{bottom:216.539977px;}
.yb7{bottom:217.440033px;}
.ye0{bottom:226.440033px;}
.y87{bottom:228.240006px;}
.y65{bottom:232.740006px;}
.y103{bottom:234.539977px;}
.ycb{bottom:236.519989px;}
.y4f{bottom:237.240006px;}
.y20{bottom:239.039977px;}
.yb6{bottom:239.940033px;}
.ydf{bottom:248.940033px;}
.y86{bottom:250.740006px;}
.y102{bottom:253.440033px;}
.yca{bottom:255.419975px;}
.y4e{bottom:259.740006px;}
.y64{bottom:260.639992px;}
.y1f{bottom:261.539977px;}
.yb5{bottom:267.840019px;}
.yde{bottom:271.440033px;}
.y101{bottom:272.340019px;}
.y85{bottom:273.240006px;}
.yc9{bottom:281.879998px;}
.y4d{bottom:282.240006px;}
.y1e{bottom:284.039977px;}
.y63{bottom:288.539977px;}
.yb4{bottom:290.340019px;}
.ydd{bottom:293.940033px;}
.y100{bottom:296.100013px;}
.y84{bottom:301.139992px;}
.y4c{bottom:304.740006px;}
.y1d{bottom:311.940033px;}
.y62{bottom:316.440033px;}
.yb3{bottom:318.240006px;}
.yff{bottom:319.860008px;}
.y83{bottom:323.639992px;}
.yc8{bottom:326.340019px;}
.y4b{bottom:332.639992px;}
.ya1{bottom:334.440033px;}
.yfe{bottom:338.759994px;}
.yb2{bottom:340.740006px;}
.y61{bottom:344.340019px;}
.y1c{bottom:346.139992px;}
.y82{bottom:351.539977px;}
.yc7{bottom:352.799973px;}
.y4a{bottom:355.139992px;}
.ya0{bottom:362.340019px;}
.yfd{bottom:362.519989px;}
.y1b{bottom:365.039977px;}
.y60{bottom:366.840019px;}
.yb1{bottom:368.639992px;}
.ydc{bottom:372.240006px;}
.y81{bottom:374.039977px;}
.y49{bottom:377.639992px;}
.yc6{bottom:379.080025px;}
.yfc{bottom:381.419975px;}
.y9f{bottom:384.840019px;}
.y1a{bottom:389.340019px;}
.yb0{bottom:391.139992px;}
.y5f{bottom:394.740006px;}
.y80{bottom:396.539977px;}
.y48{bottom:400.139992px;}
.yfb{bottom:405.179970px;}
.yc5{bottom:405.539977px;}
.y9e{bottom:407.340019px;}
.y19{bottom:408.240006px;}
.y5e{bottom:417.240006px;}
.yaf{bottom:419.039977px;}
.y47{bottom:422.639992px;}
.yfa{bottom:424.080025px;}
.y7f{bottom:424.440033px;}
.y18{bottom:427.139992px;}
.yc4{bottom:432.000000px;}
.y9d{bottom:435.240006px;}
.ydb{bottom:439.740006px;}
.y46{bottom:445.139992px;}
.y17{bottom:446.039977px;}
.y7e{bottom:446.940033px;}
.yf9{bottom:447.840019px;}
.y9c{bottom:457.740006px;}
.yc3{bottom:458.279983px;}
.yda{bottom:462.240006px;}
.y16{bottom:464.940033px;}
.y45{bottom:467.639992px;}
.y7d{bottom:469.440033px;}
.yf8{bottom:471.600013px;}
.y5d{bottom:473.039977px;}
.y9b{bottom:480.240006px;}
.yd9{bottom:484.740006px;}
.y15{bottom:489.240006px;}
.yf7{bottom:490.500000px;}
.y44{bottom:495.539977px;}
.y7c{bottom:497.340019px;}
.yc2{bottom:504.539977px;}
.y14{bottom:508.139992px;}
.yf6{bottom:509.399986px;}
.yd8{bottom:512.639992px;}
.y43{bottom:518.039977px;}
.yae{bottom:519.840019px;}
.y7b{bottom:525.240006px;}
.y13{bottom:527.039977px;}
.y9a{bottom:530.639992px;}
.yc1{bottom:531.000000px;}
.yf5{bottom:533.159981px;}
.yd7{bottom:535.139992px;}
.y42{bottom:540.539977px;}
.y12{bottom:545.940033px;}
.yad{bottom:547.740006px;}
.yf4{bottom:552.059967px;}
.y7a{bottom:553.139992px;}
.yc0{bottom:557.279983px;}
.yd6{bottom:557.639992px;}
.y99{bottom:558.539977px;}
.y41{bottom:563.039977px;}
.y11{bottom:564.840019px;}
.yac{bottom:570.240006px;}
.y79{bottom:575.639992px;}
.yf3{bottom:575.820030px;}
.yd5{bottom:580.139992px;}
.y10{bottom:583.740006px;}
.y40{bottom:585.539977px;}
.y98{bottom:586.440033px;}
.y78{bottom:598.139992px;}
.yf2{bottom:599.580025px;}
.yf{bottom:602.639992px;}
.y3f{bottom:608.039977px;}
.y97{bottom:608.940033px;}
.ybf{bottom:610.200027px;}
.y5c{bottom:613.439999px;}
.yf1{bottom:618.480011px;}
.y77{bottom:620.639992px;}
.yab{bottom:626.040012px;}
.ye{bottom:626.939999px;}
.ybe{bottom:629.100013px;}
.y3e{bottom:630.540012px;}
.y5b{bottom:635.939999px;}
.y96{bottom:636.839985px;}
.yf0{bottom:637.379998px;}
.y76{bottom:643.139992px;}
.yd{bottom:645.839985px;}
.ybd{bottom:648.000000px;}
.yd4{bottom:653.040012px;}
.yaa{bottom:653.939999px;}
.y3d{bottom:658.439999px;}
.y95{bottom:659.339985px;}
.yef{bottom:662.579990px;}
.yc{bottom:664.740006px;}
.y75{bottom:671.040012px;}
.ybc{bottom:674.279983px;}
.yd3{bottom:675.540012px;}
.ya9{bottom:676.439999px;}
.y3c{bottom:680.939999px;}
.y94{bottom:681.839985px;}
.yb{bottom:683.639992px;}
.yee{bottom:689.939999px;}
.yd2{bottom:698.040012px;}
.y74{bottom:698.939999px;}
.ya{bottom:702.540012px;}
.y3b{bottom:703.439999px;}
.ya8{bottom:704.339985px;}
.y93{bottom:709.740006px;}
.ybb{bottom:710.459988px;}
.yed{bottom:712.439999px;}
.yd1{bottom:720.540012px;}
.y9{bottom:721.439999px;}
.y3a{bottom:725.939999px;}
.ya7{bottom:726.839985px;}
.y92{bottom:732.240006px;}
.yec{bottom:734.939999px;}
.y8{bottom:740.339985px;}
.yd0{bottom:743.040012px;}
.y39{bottom:748.439999px;}
.y73{bottom:749.339985px;}
.y91{bottom:754.740006px;}
.y7{bottom:759.240006px;}
.yeb{bottom:762.300007px;}
.y38{bottom:770.939999px;}
.y72{bottom:771.839985px;}
.y5a{bottom:776.339985px;}
.y90{bottom:777.240006px;}
.yea{bottom:789.660015px;}
.y6{bottom:791.459988px;}
.y37{bottom:793.439999px;}
.y59{bottom:798.839985px;}
.y71{bottom:799.740006px;}
.y8f{bottom:805.139992px;}
.y36{bottom:815.939999px;}
.y5{bottom:816.660015px;}
.ye9{bottom:817.019989px;}
.y58{bottom:821.339985px;}
.y70{bottom:827.639992px;}
.y4{bottom:831.060001px;}
.y8e{bottom:833.040012px;}
.ycf{bottom:838.439999px;}
.y35{bottom:843.839985px;}
.ye8{bottom:844.379998px;}
.y6f{bottom:850.139992px;}
.ya6{bottom:855.540012px;}
.y3{bottom:857.160015px;}
.y8d{bottom:860.939999px;}
.y34{bottom:866.339985px;}
.ye7{bottom:866.879998px;}
.y6e{bottom:878.040012px;}
.y8c{bottom:883.439999px;}
.y33{bottom:888.839985px;}
.ye6{bottom:889.379998px;}
.y2{bottom:897.839985px;}
.y6d{bottom:900.539995px;}
.y8b{bottom:905.939999px;}
.y32{bottom:911.340002px;}
.ye5{bottom:911.879998px;}
.y1{bottom:926.639992px;}
.y6c{bottom:928.439999px;}
.y31{bottom:933.840002px;}
.y57{bottom:939.240006px;}
.y6b{bottom:950.939999px;}
.y30{bottom:956.340002px;}
.y56{bottom:961.740006px;}
.y6a{bottom:973.439999px;}
.y2f{bottom:978.840002px;}
.y27{bottom:983.879998px;}
.y55{bottom:984.240006px;}
.y2e{bottom:1001.340002px;}
.y2a{bottom:1005.120002px;}
.y26{bottom:1005.479994px;}
.y54{bottom:1006.740006px;}
.y69{bottom:1023.840002px;}
.y25{bottom:1027.080008px;}
.y2d{bottom:1029.240006px;}
.y24{bottom:1049.939999px;}
.y2c{bottom:1051.739997px;}
.y2b{bottom:1081.079999px;}
.h4{height:27.542934px;}
.hc{height:39.239109px;}
.h5{height:44.112858px;}
.h6{height:45.211864px;}
.h3{height:47.810303px;}
.he{height:51.531145px;}
.ha{height:51.967805px;}
.h7{height:52.732798px;}
.h8{height:54.046557px;}
.h2{height:56.129662px;}
.h9{height:58.872597px;}
.hb{height:59.231368px;}
.hf{height:61.600667px;}
.h1{height:67.437085px;}
.hd{height:76.056707px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:113.040003px;}
.x7{left:118.799998px;}
.xf{left:122.040003px;}
.x6{left:126.000000px;}
.x9{left:135.000000px;}
.x12{left:138.420001px;}
.xd{left:162.000000px;}
.x5{left:186.659998px;}
.x8{left:202.500000px;}
.xc{left:213.120002px;}
.xa{left:226.800007px;}
.xe{left:245.879998px;}
.x4{left:248.580008px;}
.x2{left:254.159998px;}
.x11{left:330.660015px;}
.x10{left:337.500000px;}
.xb{left:666.539978px;}
@media print{
.v2{vertical-align:-19.200072pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.399904pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.352148pt;}
.ls0{letter-spacing:0.357068pt;}
.ls5{letter-spacing:0.555744pt;}
.ls7{letter-spacing:1.111488pt;}
.ls8{letter-spacing:3.386428pt;}
.ls6{letter-spacing:4.666456pt;}
.ls4{letter-spacing:9.631488pt;}
.ls3{letter-spacing:62.165916pt;}
.ws2{word-spacing:-16.608500pt;}
.ws3{word-spacing:-15.969700pt;}
.ws7{word-spacing:-15.005088pt;}
.ws0{word-spacing:-14.692100pt;}
.ws6{word-spacing:-14.449344pt;}
.ws1{word-spacing:-13.893600pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:262.144445pt;}
._3{margin-left:-11.044644pt;}
._5{margin-left:-9.049108pt;}
._12{margin-left:-8.070854pt;}
._2{margin-left:-6.201992pt;}
._4{margin-left:-4.842652pt;}
._8{margin-left:-3.834886pt;}
._1{margin-left:-2.548764pt;}
._0{margin-left:-1.444300pt;}
._6{width:0.912828pt;}
._7{width:2.187545pt;}
._9{width:3.390038pt;}
._b{width:4.986409pt;}
._f{width:6.413425pt;}
._10{width:7.343107pt;}
._d{width:8.241844pt;}
._e{width:9.236778pt;}
._a{width:10.220833pt;}
._c{width:11.321890pt;}
._15{width:13.414923pt;}
._11{width:29.052744pt;}
._37{width:37.765592pt;}
._35{width:38.877080pt;}
._36{width:39.848926pt;}
._16{width:67.000269pt;}
._24{width:74.224941pt;}
._34{width:95.552386pt;}
._2f{width:104.659419pt;}
._2e{width:112.895909pt;}
._1c{width:115.074439pt;}
._22{width:120.005122pt;}
._27{width:121.743367pt;}
._19{width:131.946061pt;}
._18{width:136.500723pt;}
._33{width:152.039553pt;}
._21{width:156.043840pt;}
._2c{width:161.014501pt;}
._20{width:175.936545pt;}
._26{width:196.292663pt;}
._17{width:199.681853pt;}
._2b{width:216.990448pt;}
._1d{width:220.136060pt;}
._25{width:240.357558pt;}
._28{width:260.736875pt;}
._14{width:318.842103pt;}
._30{width:349.099066pt;}
._31{width:372.330316pt;}
._1b{width:440.816141pt;}
._32{width:444.992521pt;}
._29{width:460.156032pt;}
._1f{width:484.608768pt;}
._1a{width:511.599490pt;}
._1e{width:635.449483pt;}
._23{width:636.724201pt;}
._2a{width:664.669824pt;}
._2d{width:691.901280pt;}
._13{width:928.092480pt;}
.fs4{font-size:33.855760pt;}
.fs2{font-size:38.966040pt;}
.fs8{font-size:42.798800pt;}
.fsb{font-size:45.354000pt;}
.fs9{font-size:47.909200pt;}
.fs5{font-size:55.574400pt;}
.fs3{font-size:58.768400pt;}
.fs7{font-size:63.878800pt;}
.fs1{font-size:66.434000pt;}
.fs6{font-size:74.738000pt;}
.fs0{font-size:84.958800pt;}
.fsa{font-size:95.818000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:112.960022pt;}
.y108{bottom:115.679993pt;}
.yce{bottom:116.479980pt;}
.ya5{bottom:118.080017pt;}
.ye4{bottom:121.280029pt;}
.yba{bottom:123.679993pt;}
.y53{bottom:126.080017pt;}
.y28{bottom:127.359985pt;}
.y8a{bottom:128.479980pt;}
.y107{bottom:132.479980pt;}
.ya4{bottom:138.080017pt;}
.ycd{bottom:139.840027pt;}
.ye3{bottom:141.280029pt;}
.y52{bottom:146.080017pt;}
.y68{bottom:146.880005pt;}
.yb9{bottom:148.479980pt;}
.y106{bottom:149.280029pt;}
.y23{bottom:152.479980pt;}
.y89{bottom:153.280029pt;}
.ye2{bottom:161.280029pt;}
.ya3{bottom:162.880005pt;}
.ycc{bottom:163.359985pt;}
.y67{bottom:166.880005pt;}
.yb8{bottom:168.479980pt;}
.y105{bottom:170.559998pt;}
.y51{bottom:170.880005pt;}
.y22{bottom:172.479980pt;}
.y88{bottom:178.080017pt;}
.ye1{bottom:181.280029pt;}
.y66{bottom:186.880005pt;}
.y104{bottom:187.359985pt;}
.ya2{bottom:187.679993pt;}
.y50{bottom:190.880005pt;}
.y21{bottom:192.479980pt;}
.yb7{bottom:193.280029pt;}
.ye0{bottom:201.280029pt;}
.y87{bottom:202.880005pt;}
.y65{bottom:206.880005pt;}
.y103{bottom:208.479980pt;}
.ycb{bottom:210.239990pt;}
.y4f{bottom:210.880005pt;}
.y20{bottom:212.479980pt;}
.yb6{bottom:213.280029pt;}
.ydf{bottom:221.280029pt;}
.y86{bottom:222.880005pt;}
.y102{bottom:225.280029pt;}
.yca{bottom:227.039978pt;}
.y4e{bottom:230.880005pt;}
.y64{bottom:231.679993pt;}
.y1f{bottom:232.479980pt;}
.yb5{bottom:238.080017pt;}
.yde{bottom:241.280029pt;}
.y101{bottom:242.080017pt;}
.y85{bottom:242.880005pt;}
.yc9{bottom:250.559998pt;}
.y4d{bottom:250.880005pt;}
.y1e{bottom:252.479980pt;}
.y63{bottom:256.479980pt;}
.yb4{bottom:258.080017pt;}
.ydd{bottom:261.280029pt;}
.y100{bottom:263.200012pt;}
.y84{bottom:267.679993pt;}
.y4c{bottom:270.880005pt;}
.y1d{bottom:277.280029pt;}
.y62{bottom:281.280029pt;}
.yb3{bottom:282.880005pt;}
.yff{bottom:284.320007pt;}
.y83{bottom:287.679993pt;}
.yc8{bottom:290.080017pt;}
.y4b{bottom:295.679993pt;}
.ya1{bottom:297.280029pt;}
.yfe{bottom:301.119995pt;}
.yb2{bottom:302.880005pt;}
.y61{bottom:306.080017pt;}
.y1c{bottom:307.679993pt;}
.y82{bottom:312.479980pt;}
.yc7{bottom:313.599976pt;}
.y4a{bottom:315.679993pt;}
.ya0{bottom:322.080017pt;}
.yfd{bottom:322.239990pt;}
.y1b{bottom:324.479980pt;}
.y60{bottom:326.080017pt;}
.yb1{bottom:327.679993pt;}
.ydc{bottom:330.880005pt;}
.y81{bottom:332.479980pt;}
.y49{bottom:335.679993pt;}
.yc6{bottom:336.960022pt;}
.yfc{bottom:339.039978pt;}
.y9f{bottom:342.080017pt;}
.y1a{bottom:346.080017pt;}
.yb0{bottom:347.679993pt;}
.y5f{bottom:350.880005pt;}
.y80{bottom:352.479980pt;}
.y48{bottom:355.679993pt;}
.yfb{bottom:360.159973pt;}
.yc5{bottom:360.479980pt;}
.y9e{bottom:362.080017pt;}
.y19{bottom:362.880005pt;}
.y5e{bottom:370.880005pt;}
.yaf{bottom:372.479980pt;}
.y47{bottom:375.679993pt;}
.yfa{bottom:376.960022pt;}
.y7f{bottom:377.280029pt;}
.y18{bottom:379.679993pt;}
.yc4{bottom:384.000000pt;}
.y9d{bottom:386.880005pt;}
.ydb{bottom:390.880005pt;}
.y46{bottom:395.679993pt;}
.y17{bottom:396.479980pt;}
.y7e{bottom:397.280029pt;}
.yf9{bottom:398.080017pt;}
.y9c{bottom:406.880005pt;}
.yc3{bottom:407.359985pt;}
.yda{bottom:410.880005pt;}
.y16{bottom:413.280029pt;}
.y45{bottom:415.679993pt;}
.y7d{bottom:417.280029pt;}
.yf8{bottom:419.200012pt;}
.y5d{bottom:420.479980pt;}
.y9b{bottom:426.880005pt;}
.yd9{bottom:430.880005pt;}
.y15{bottom:434.880005pt;}
.yf7{bottom:436.000000pt;}
.y44{bottom:440.479980pt;}
.y7c{bottom:442.080017pt;}
.yc2{bottom:448.479980pt;}
.y14{bottom:451.679993pt;}
.yf6{bottom:452.799988pt;}
.yd8{bottom:455.679993pt;}
.y43{bottom:460.479980pt;}
.yae{bottom:462.080017pt;}
.y7b{bottom:466.880005pt;}
.y13{bottom:468.479980pt;}
.y9a{bottom:471.679993pt;}
.yc1{bottom:472.000000pt;}
.yf5{bottom:473.919983pt;}
.yd7{bottom:475.679993pt;}
.y42{bottom:480.479980pt;}
.y12{bottom:485.280029pt;}
.yad{bottom:486.880005pt;}
.yf4{bottom:490.719971pt;}
.y7a{bottom:491.679993pt;}
.yc0{bottom:495.359985pt;}
.yd6{bottom:495.679993pt;}
.y99{bottom:496.479980pt;}
.y41{bottom:500.479980pt;}
.y11{bottom:502.080017pt;}
.yac{bottom:506.880005pt;}
.y79{bottom:511.679993pt;}
.yf3{bottom:511.840027pt;}
.yd5{bottom:515.679993pt;}
.y10{bottom:518.880005pt;}
.y40{bottom:520.479980pt;}
.y98{bottom:521.280029pt;}
.y78{bottom:531.679993pt;}
.yf2{bottom:532.960022pt;}
.yf{bottom:535.679993pt;}
.y3f{bottom:540.479980pt;}
.y97{bottom:541.280029pt;}
.ybf{bottom:542.400024pt;}
.y5c{bottom:545.279999pt;}
.yf1{bottom:549.760010pt;}
.y77{bottom:551.679993pt;}
.yab{bottom:556.480011pt;}
.ye{bottom:557.279999pt;}
.ybe{bottom:559.200012pt;}
.y3e{bottom:560.480011pt;}
.y5b{bottom:565.279999pt;}
.y96{bottom:566.079987pt;}
.yf0{bottom:566.559998pt;}
.y76{bottom:571.679993pt;}
.yd{bottom:574.079987pt;}
.ybd{bottom:576.000000pt;}
.yd4{bottom:580.480011pt;}
.yaa{bottom:581.279999pt;}
.y3d{bottom:585.279999pt;}
.y95{bottom:586.079987pt;}
.yef{bottom:588.959991pt;}
.yc{bottom:590.880005pt;}
.y75{bottom:596.480011pt;}
.ybc{bottom:599.359985pt;}
.yd3{bottom:600.480011pt;}
.ya9{bottom:601.279999pt;}
.y3c{bottom:605.279999pt;}
.y94{bottom:606.079987pt;}
.yb{bottom:607.679993pt;}
.yee{bottom:613.279999pt;}
.yd2{bottom:620.480011pt;}
.y74{bottom:621.279999pt;}
.ya{bottom:624.480011pt;}
.y3b{bottom:625.279999pt;}
.ya8{bottom:626.079987pt;}
.y93{bottom:630.880005pt;}
.ybb{bottom:631.519989pt;}
.yed{bottom:633.279999pt;}
.yd1{bottom:640.480011pt;}
.y9{bottom:641.279999pt;}
.y3a{bottom:645.279999pt;}
.ya7{bottom:646.079987pt;}
.y92{bottom:650.880005pt;}
.yec{bottom:653.279999pt;}
.y8{bottom:658.079987pt;}
.yd0{bottom:660.480011pt;}
.y39{bottom:665.279999pt;}
.y73{bottom:666.079987pt;}
.y91{bottom:670.880005pt;}
.y7{bottom:674.880005pt;}
.yeb{bottom:677.600006pt;}
.y38{bottom:685.279999pt;}
.y72{bottom:686.079987pt;}
.y5a{bottom:690.079987pt;}
.y90{bottom:690.880005pt;}
.yea{bottom:701.920013pt;}
.y6{bottom:703.519989pt;}
.y37{bottom:705.279999pt;}
.y59{bottom:710.079987pt;}
.y71{bottom:710.880005pt;}
.y8f{bottom:715.679993pt;}
.y36{bottom:725.279999pt;}
.y5{bottom:725.920013pt;}
.ye9{bottom:726.239990pt;}
.y58{bottom:730.079987pt;}
.y70{bottom:735.679993pt;}
.y4{bottom:738.720001pt;}
.y8e{bottom:740.480011pt;}
.ycf{bottom:745.279999pt;}
.y35{bottom:750.079987pt;}
.ye8{bottom:750.559998pt;}
.y6f{bottom:755.679993pt;}
.ya6{bottom:760.480011pt;}
.y3{bottom:761.920013pt;}
.y8d{bottom:765.279999pt;}
.y34{bottom:770.079987pt;}
.ye7{bottom:770.559998pt;}
.y6e{bottom:780.480011pt;}
.y8c{bottom:785.279999pt;}
.y33{bottom:790.079987pt;}
.ye6{bottom:790.559998pt;}
.y2{bottom:798.079987pt;}
.y6d{bottom:800.479996pt;}
.y8b{bottom:805.279999pt;}
.y32{bottom:810.080002pt;}
.ye5{bottom:810.559998pt;}
.y1{bottom:823.679993pt;}
.y6c{bottom:825.279999pt;}
.y31{bottom:830.080002pt;}
.y57{bottom:834.880005pt;}
.y6b{bottom:845.279999pt;}
.y30{bottom:850.080002pt;}
.y56{bottom:854.880005pt;}
.y6a{bottom:865.279999pt;}
.y2f{bottom:870.080002pt;}
.y27{bottom:874.559998pt;}
.y55{bottom:874.880005pt;}
.y2e{bottom:890.080002pt;}
.y2a{bottom:893.440002pt;}
.y26{bottom:893.759995pt;}
.y54{bottom:894.880005pt;}
.y69{bottom:910.080002pt;}
.y25{bottom:912.960007pt;}
.y2d{bottom:914.880005pt;}
.y24{bottom:933.279999pt;}
.y2c{bottom:934.879997pt;}
.y2b{bottom:960.959999pt;}
.h4{height:24.482608pt;}
.hc{height:34.879208pt;}
.h5{height:39.211430pt;}
.h6{height:40.188323pt;}
.h3{height:42.498047pt;}
.he{height:45.805463pt;}
.ha{height:46.193605pt;}
.h7{height:46.873599pt;}
.h8{height:48.041384pt;}
.h2{height:49.893033pt;}
.h9{height:52.331197pt;}
.hb{height:52.650105pt;}
.hf{height:54.756148pt;}
.h1{height:59.944075pt;}
.hd{height:67.605962pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:100.480003pt;}
.x7{left:105.599998pt;}
.xf{left:108.480003pt;}
.x6{left:112.000000pt;}
.x9{left:120.000000pt;}
.x12{left:123.040001pt;}
.xd{left:144.000000pt;}
.x5{left:165.919998pt;}
.x8{left:180.000000pt;}
.xc{left:189.440002pt;}
.xa{left:201.600006pt;}
.xe{left:218.559998pt;}
.x4{left:220.960007pt;}
.x2{left:225.919998pt;}
.x11{left:293.920013pt;}
.x10{left:300.000000pt;}
.xb{left:592.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; }
  