
    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_3126d55f266e7491c8081923.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.019531;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_4d9dbe3a5b4119eb71535150.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.208008;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_f1e45b74037501cd5e861cc7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.301000;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_9592fa412286e76700173047.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e324f5fc9ff5a5982914224e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.205000;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_24bf03197f53332b3121d2c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.288000;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_8b84b55a647df309a989faee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e009132bda109f31cda961fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.194000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.256000;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:ffa;src:url('chunks/assets/font_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.237029;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.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.297184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297184,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-8.639997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.719993px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.236545px;}
.ls4{letter-spacing:0.261792px;}
.ls2{letter-spacing:0.548928px;}
.ls5{letter-spacing:7.654482px;}
.ls1{letter-spacing:48.890572px;}
.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;}
}
.ws0{word-spacing:-143.999942px;}
.wsb{word-spacing:-120.239952px;}
.ws1{word-spacing:-107.999957px;}
.ws14{word-spacing:-95.258842px;}
.ws9{word-spacing:-94.975162px;}
.ws13{word-spacing:-94.826243px;}
.wsa{word-spacing:-94.687162px;}
.ws4{word-spacing:-94.673770px;}
.ws5{word-spacing:-93.962122px;}
.wsc{word-spacing:-79.305463px;}
.wsd{word-spacing:-55.942362px;}
.ws10{word-spacing:-50.424187px;}
.ws12{word-spacing:-46.637261px;}
.ws11{word-spacing:-40.031984px;}
.ws8{word-spacing:-35.999986px;}
.wsf{word-spacing:-31.428277px;}
.ws6{word-spacing:-0.778464px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.093744px;}
.ws3{word-spacing:202.679919px;}
.wse{word-spacing:2078.607001px;}
._3{margin-left:-95.066602px;}
._c{margin-left:-93.627467px;}
._9{margin-left:-92.188187px;}
._1f{margin-left:-91.010736px;}
._2d{margin-left:-85.567502px;}
._20{margin-left:-84.072890px;}
._2b{margin-left:-83.005851px;}
._30{margin-left:-80.662612px;}
._1d{margin-left:-78.624689px;}
._1e{margin-left:-77.550413px;}
._33{margin-left:-76.217743px;}
._7{margin-left:-72.758851px;}
._13{margin-left:-71.300059px;}
._17{margin-left:-69.862436px;}
._36{margin-left:-68.401811px;}
._24{margin-left:-66.334005px;}
._0{margin-left:-65.177110px;}
._2a{margin-left:-63.784774px;}
._4{margin-left:-59.086200px;}
._b{margin-left:-57.647065px;}
._2f{margin-left:-55.305298px;}
._28{margin-left:-53.153583px;}
._26{margin-left:-51.612927px;}
._e{margin-left:-50.450956px;}
._21{margin-left:-48.639581px;}
._5{margin-left:-47.572541px;}
._6{margin-left:-45.413694px;}
._15{margin-left:-44.382042px;}
._2{margin-left:-43.254847px;}
._1{margin-left:-41.815711px;}
._29{margin-left:-40.547072px;}
._8{margin-left:-38.937296px;}
._31{margin-left:-37.486609px;}
._12{margin-left:-36.037426px;}
._35{margin-left:-34.931135px;}
._11{margin-left:-33.880450px;}
._42{margin-left:-32.864531px;}
._16{margin-left:-31.823087px;}
._22{margin-left:-30.270768px;}
._a{margin-left:-27.423493px;}
._1b{margin-left:-26.262277px;}
._1c{margin-left:-24.744698px;}
._10{margin-left:-23.518611px;}
._1a{margin-left:-21.435543px;}
._18{margin-left:-20.207980px;}
._14{margin-left:-18.049169px;}
._23{margin-left:-6.577449px;}
._2c{margin-left:-2.554991px;}
._19{margin-left:-1.045188px;}
._f{width:1.099008px;}
._3b{width:2.941654px;}
._37{width:4.465368px;}
._34{width:6.558604px;}
._32{width:7.586152px;}
._d{width:8.612637px;}
._2e{width:10.115060px;}
._38{width:13.140007px;}
._39{width:14.169603px;}
._3e{width:17.391161px;}
._3f{width:19.034200px;}
._3c{width:24.940070px;}
._3d{width:26.275381px;}
._40{width:27.515509px;}
._41{width:37.702084px;}
._43{width:49.942168px;}
._3a{width:71.335120px;}
._25{width:98.625489px;}
._27{width:2261.071832px;}
.fc6{color:rgb(255,0,101);}
.fc5{color:transparent;}
.fc4{color:rgb(50,50,205);}
.fc3{color:rgb(255,50,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(80,101,123);}
.fs1{font-size:107.999957px;}
.fs5{font-size:113.051355px;}
.fs3{font-size:120.239952px;}
.fs0{font-size:143.999942px;}
.fs6{font-size:167.759933px;}
.fs2{font-size:192.239923px;}
.fs4{font-size:201.231520px;}
.y0{bottom:0.000000px;}
.y17{bottom:7.380158px;}
.y2c{bottom:59.100333px;}
.y8f{bottom:65.400331px;}
.yda{bottom:67.560330px;}
.y7{bottom:71.520328px;}
.yc9{bottom:74.400327px;}
.y98{bottom:80.340325px;}
.y70{bottom:88.620322px;}
.y46{bottom:96.360318px;}
.y2b{bottom:102.300316px;}
.y6{bottom:102.840226px;}
.y69{bottom:105.181717px;}
.y8e{bottom:108.420314px;}
.yd9{bottom:110.760313px;}
.yc8{bottom:117.420310px;}
.y97{bottom:124.080307px;}
.y5{bottom:135.420303px;}
.ya0{bottom:138.300302px;}
.y45{bottom:139.560301px;}
.y2a{bottom:145.680299px;}
.y8d{bottom:151.620296px;}
.y1e{bottom:151.800296px;}
.yc7{bottom:160.620293px;}
.y96{bottom:167.100290px;}
.y4{bottom:167.820290px;}
.y38{bottom:177.180286px;}
.y68{bottom:177.181701px;}
.y9f{bottom:181.860284px;}
.y44{bottom:182.580284px;}
.y8c{bottom:194.640279px;}
.yd8{bottom:196.980278px;}
.y95{bottom:210.300273px;}
.y67{bottom:213.181543px;}
.ybe{bottom:217.140270px;}
.y37{bottom:220.200269px;}
.y9e{bottom:225.060267px;}
.y43{bottom:225.780267px;}
.y29{bottom:230.820265px;}
.ya4{bottom:233.160264px;}
.y1d{bottom:238.200262px;}
.y7b{bottom:239.640284px;}
.yd7{bottom:240.180261px;}
.yc6{bottom:246.840258px;}
.ye{bottom:248.640258px;}
.y66{bottom:249.181384px;}
.y77{bottom:256.740304px;}
.ya8{bottom:259.440253px;}
.ybd{bottom:260.340253px;}
.y36{bottom:263.400252px;}
.yb1{bottom:265.200251px;}
.y42{bottom:268.980249px;}
.y7a{bottom:273.660262px;}
.y28{bottom:274.020247px;}
.ya5{bottom:274.920247px;}
.ya3{bottom:276.180247px;}
.ya1{bottom:278.340246px;}
.y8b{bottom:280.320245px;}
.y1c{bottom:281.220245px;}
.y14{bottom:282.660244px;}
.y65{bottom:285.181226px;}
.yc5{bottom:290.040241px;}
.y6f{bottom:290.580241px;}
.y76{bottom:290.760283px;}
.yd{bottom:291.840240px;}
.y5b{bottom:293.820239px;}
.ya7{bottom:302.460236px;}
.ybc{bottom:303.540236px;}
.y35{bottom:306.420234px;}
.y79{bottom:307.500207px;}
.yb0{bottom:308.400234px;}
.y83{bottom:308.400941px;}
.y41{bottom:312.000232px;}
.y27{bottom:317.220230px;}
.ya2{bottom:319.380229px;}
.y8a{bottom:323.340228px;}
.y4e{bottom:323.880227px;}
.y1b{bottom:324.240227px;}
.y75{bottom:324.600227px;}
.y13{bottom:325.140227px;}
.yd6{bottom:326.400226px;}
.y55{bottom:331.980224px;}
.yc{bottom:335.040223px;}
.y5a{bottom:337.020222px;}
.y78{bottom:341.700220px;}
.ybb{bottom:346.560218px;}
.y34{bottom:349.620217px;}
.yaf{bottom:351.420216px;}
.y64{bottom:357.181210px;}
.y26{bottom:360.240213px;}
.y4d{bottom:366.900210px;}
.yb5{bottom:367.260210px;}
.y1a{bottom:367.440210px;}
.y12{bottom:368.340210px;}
.yd5{bottom:369.420209px;}
.y54{bottom:375.180207px;}
.yc4{bottom:376.260206px;}
.yb{bottom:378.060206px;}
.y82{bottom:380.400925px;}
.yba{bottom:389.760201px;}
.yde{bottom:390.480201px;}
.ycf{bottom:392.280200px;}
.y33{bottom:392.640200px;}
.y63{bottom:393.181051px;}
.y40{bottom:398.220198px;}
.y25{bottom:403.440196px;}
.y4c{bottom:410.100193px;}
.y89{bottom:410.280193px;}
.y19{bottom:410.460193px;}
.y11{bottom:411.540192px;}
.y6c{bottom:414.060623px;}
.y81{bottom:416.400766px;}
.y53{bottom:418.200190px;}
.yc3{bottom:419.280189px;}
.y59{bottom:423.240188px;}
.y62{bottom:429.180893px;}
.y74{bottom:431.700234px;}
.ydd{bottom:433.680184px;}
.yce{bottom:435.480183px;}
.y32{bottom:435.840183px;}
.yae{bottom:437.640182px;}
.y3f{bottom:441.420180px;}
.y1f{bottom:446.280178px;}
.y24{bottom:446.460178px;}
.y6b{bottom:450.060465px;}
.y80{bottom:452.400608px;}
.y4b{bottom:453.300176px;}
.y88{bottom:453.480176px;}
.y18{bottom:453.660176px;}
.y10{bottom:454.560175px;}
.ya6{bottom:455.460175px;}
.yd4{bottom:455.640175px;}
.ya{bottom:464.280171px;}
.y71{bottom:464.460171px;}
.y61{bottom:465.180734px;}
.y73{bottom:465.540178px;}
.y58{bottom:466.440170px;}
.ycd{bottom:478.680166px;}
.y31{bottom:479.040165px;}
.y3e{bottom:484.620163px;}
.y9c{bottom:486.060163px;}
.y6a{bottom:486.060307px;}
.y7f{bottom:488.400450px;}
.y16{bottom:489.480000px;}
.y3{bottom:493.440160px;}
.y93{bottom:494.700159px;}
.y4a{bottom:496.320158px;}
.y87{bottom:496.500158px;}
.yb4{bottom:496.680158px;}
.yd3{bottom:498.840157px;}
.y72{bottom:499.560157px;}
.y52{bottom:504.420155px;}
.yc2{bottom:505.680155px;}
.y57{bottom:509.460153px;}
.yb9{bottom:519.180149px;}
.ydc{bottom:519.900149px;}
.ycc{bottom:521.700148px;}
.y30{bottom:522.060148px;}
.yad{bottom:524.040147px;}
.y7e{bottom:524.400291px;}
.y3d{bottom:527.640146px;}
.y9b{bottom:529.260145px;}
.y23{bottom:532.860144px;}
.y2{bottom:536.460142px;}
.y60{bottom:537.180718px;}
.y92{bottom:537.900142px;}
.y49{bottom:539.520141px;}
.y86{bottom:539.700141px;}
.yf{bottom:540.780141px;}
.yc1{bottom:548.700138px;}
.y9{bottom:550.680137px;}
.ya9{bottom:557.520134px;}
.y7d{bottom:560.400133px;}
.yb8{bottom:562.200132px;}
.ydb{bottom:562.920132px;}
.ycb{bottom:564.900131px;}
.y6d{bottom:565.080131px;}
.y2f{bottom:565.260131px;}
.yac{bottom:567.060130px;}
.y6e{bottom:567.240130px;}
.y3c{bottom:570.840129px;}
.y9a{bottom:572.280128px;}
.y5f{bottom:573.180560px;}
.y22{bottom:575.880127px;}
.y1{bottom:579.660125px;}
.y91{bottom:580.920125px;}
.y48{bottom:582.540124px;}
.yb3{bottom:582.900124px;}
.yd2{bottom:585.060123px;}
.y51{bottom:590.640121px;}
.y56{bottom:595.860119px;}
.yb7{bottom:605.400115px;}
.y2e{bottom:608.280114px;}
.y5e{bottom:609.180401px;}
.y3b{bottom:613.860111px;}
.y99{bottom:615.480111px;}
.y21{bottom:619.080109px;}
.y90{bottom:624.120107px;}
.y85{bottom:625.200107px;}
.y47{bottom:625.740107px;}
.yd1{bottom:628.260106px;}
.y50{bottom:633.840103px;}
.yc0{bottom:634.920103px;}
.y8{bottom:636.900102px;}
.y5d{bottom:645.180243px;}
.yb6{bottom:648.420098px;}
.yca{bottom:651.120097px;}
.yab{bottom:653.280096px;}
.y3a{bottom:657.060094px;}
.y7c{bottom:664.620091px;}
.y84{bottom:668.400090px;}
.y9d{bottom:668.760089px;}
.yb2{bottom:669.120089px;}
.y15{bottom:669.300089px;}
.yd0{bottom:671.280088px;}
.ybf{bottom:678.120086px;}
.y5c{bottom:681.180085px;}
.y94{bottom:682.260084px;}
.yaa{bottom:695.220079px;}
.y2d{bottom:697.200078px;}
.y39{bottom:699.540077px;}
.y20{bottom:705.300075px;}
.y4f{bottom:720.060069px;}
.h5{height:43.380000px;}
.hc{height:107.737941px;}
.h2{height:108.052691px;}
.h1{height:117.843703px;}
.h9{height:120.298663px;}
.hb{height:126.457934px;}
.h8{height:133.055947px;}
.hd{height:137.231945px;}
.h3{height:138.239945px;}
.h6{height:138.815944px;}
.h4{height:144.070255px;}
.he{height:159.875216px;}
.ha{height:190.968712px;}
.h7{height:192.333790px;}
.h0{height:892.500000px;}
.w1{width:1069.199820px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:102.225709px;}
.x13{left:114.465704px;}
.x6{left:116.265703px;}
.x25{left:118.245703px;}
.x33{left:122.925701px;}
.x32{left:128.505968px;}
.xe{left:131.565697px;}
.x34{left:135.165215px;}
.x27{left:136.425695px;}
.x1d{left:137.685618px;}
.x18{left:139.665694px;}
.x26{left:140.925694px;}
.x29{left:143.085562px;}
.x28{left:145.425692px;}
.xa{left:147.225691px;}
.xb{left:156.226438px;}
.x2a{left:164.325729px;}
.x35{left:165.766434px;}
.x24{left:167.926433px;}
.x11{left:190.426424px;}
.x1c{left:204.825841px;}
.x12{left:244.427962px;}
.x2{left:251.807583px;}
.x1{left:270.886392px;}
.x2f{left:324.346370px;}
.x15{left:330.826368px;}
.x14{left:333.166367px;}
.x1a{left:341.986363px;}
.x19{left:343.786362px;}
.x1e{left:358.546357px;}
.x9{left:363.766354px;}
.x20{left:384.646379px;}
.x10{left:400.486340px;}
.x3{left:419.206498px;}
.x1b{left:420.466332px;}
.x1f{left:430.366531px;}
.x31{left:485.986306px;}
.x2b{left:516.226294px;}
.x30{left:536.926285px;}
.x16{left:572.566271px;}
.x17{left:589.126264px;}
.xc{left:593.806262px;}
.x4{left:617.566253px;}
.xd{left:623.506251px;}
.x21{left:625.846250px;}
.x23{left:653.926495px;}
.x22{left:662.206331px;}
.x2c{left:767.686193px;}
.x8{left:807.102999px;}
.x2d{left:906.106138px;}
.x2e{left:955.246178px;}
.xf{left:1113.286055px;}
.x5{left:1122.286051px;}
@media print{
.v1{vertical-align:-7.679997pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.639993pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.210262pt;}
.ls4{letter-spacing:0.232704pt;}
.ls2{letter-spacing:0.487936pt;}
.ls5{letter-spacing:6.803984pt;}
.ls1{letter-spacing:43.458287pt;}
.ws0{word-spacing:-127.999949pt;}
.wsb{word-spacing:-106.879957pt;}
.ws1{word-spacing:-95.999962pt;}
.ws14{word-spacing:-84.674526pt;}
.ws9{word-spacing:-84.422366pt;}
.ws13{word-spacing:-84.289994pt;}
.wsa{word-spacing:-84.166366pt;}
.ws4{word-spacing:-84.154462pt;}
.ws5{word-spacing:-83.521887pt;}
.wsc{word-spacing:-70.493745pt;}
.wsd{word-spacing:-49.726544pt;}
.ws10{word-spacing:-44.821500pt;}
.ws12{word-spacing:-41.455343pt;}
.ws11{word-spacing:-35.583986pt;}
.ws8{word-spacing:-31.999987pt;}
.wsf{word-spacing:-27.936246pt;}
.ws6{word-spacing:-0.691968pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.083328pt;}
.ws3{word-spacing:180.159928pt;}
.wse{word-spacing:1847.650668pt;}
._3{margin-left:-84.503646pt;}
._c{margin-left:-83.224415pt;}
._9{margin-left:-81.945055pt;}
._1f{margin-left:-80.898432pt;}
._2d{margin-left:-76.060002pt;}
._20{margin-left:-74.731458pt;}
._2b{margin-left:-73.782978pt;}
._30{margin-left:-71.700100pt;}
._1d{margin-left:-69.888612pt;}
._1e{margin-left:-68.933700pt;}
._33{margin-left:-67.749105pt;}
._7{margin-left:-64.674534pt;}
._13{margin-left:-63.377831pt;}
._17{margin-left:-62.099943pt;}
._36{margin-left:-60.801610pt;}
._24{margin-left:-58.963560pt;}
._0{margin-left:-57.935209pt;}
._2a{margin-left:-56.697577pt;}
._4{margin-left:-52.521067pt;}
._b{margin-left:-51.241836pt;}
._2f{margin-left:-49.160264pt;}
._28{margin-left:-47.247629pt;}
._26{margin-left:-45.878158pt;}
._e{margin-left:-44.845294pt;}
._21{margin-left:-43.235183pt;}
._5{margin-left:-42.286703pt;}
._6{margin-left:-40.367728pt;}
._15{margin-left:-39.450704pt;}
._2{margin-left:-38.448753pt;}
._1{margin-left:-37.169521pt;}
._29{margin-left:-36.041842pt;}
._8{margin-left:-34.610930pt;}
._31{margin-left:-33.321430pt;}
._12{margin-left:-32.033267pt;}
._35{margin-left:-31.049898pt;}
._11{margin-left:-30.115956pt;}
._42{margin-left:-29.212916pt;}
._16{margin-left:-28.287189pt;}
._22{margin-left:-26.907349pt;}
._a{margin-left:-24.376438pt;}
._1b{margin-left:-23.344247pt;}
._1c{margin-left:-21.995287pt;}
._10{margin-left:-20.905432pt;}
._1a{margin-left:-19.053816pt;}
._18{margin-left:-17.962649pt;}
._14{margin-left:-16.043706pt;}
._23{margin-left:-5.846622pt;}
._2c{margin-left:-2.271103pt;}
._19{margin-left:-0.929056pt;}
._f{width:0.976896pt;}
._3b{width:2.614803pt;}
._37{width:3.969216pt;}
._34{width:5.829870pt;}
._32{width:6.743247pt;}
._d{width:7.655677pt;}
._2e{width:8.991164pt;}
._38{width:11.680006pt;}
._39{width:12.595203pt;}
._3e{width:15.458810pt;}
._3f{width:16.919289pt;}
._3c{width:22.168951pt;}
._3d{width:23.355895pt;}
._40{width:24.458230pt;}
._41{width:33.512963pt;}
._43{width:44.393038pt;}
._3a{width:63.408995pt;}
._25{width:87.667101pt;}
._27{width:2009.841628pt;}
.fs1{font-size:95.999962pt;}
.fs5{font-size:100.490093pt;}
.fs3{font-size:106.879957pt;}
.fs0{font-size:127.999949pt;}
.fs6{font-size:149.119940pt;}
.fs2{font-size:170.879932pt;}
.fs4{font-size:178.872462pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:6.560141pt;}
.y2c{bottom:52.533630pt;}
.y8f{bottom:58.133627pt;}
.yda{bottom:60.053627pt;}
.y7{bottom:63.573625pt;}
.yc9{bottom:66.133624pt;}
.y98{bottom:71.413622pt;}
.y70{bottom:78.773619pt;}
.y46{bottom:85.653616pt;}
.y2b{bottom:90.933614pt;}
.y6{bottom:91.413534pt;}
.y69{bottom:93.494860pt;}
.y8e{bottom:96.373612pt;}
.yd9{bottom:98.453611pt;}
.yc8{bottom:104.373609pt;}
.y97{bottom:110.293607pt;}
.y5{bottom:120.373603pt;}
.ya0{bottom:122.933601pt;}
.y45{bottom:124.053601pt;}
.y2a{bottom:129.493599pt;}
.y8d{bottom:134.773597pt;}
.y1e{bottom:134.933597pt;}
.yc7{bottom:142.773594pt;}
.y96{bottom:148.533591pt;}
.y4{bottom:149.173591pt;}
.y38{bottom:157.493588pt;}
.y68{bottom:157.494845pt;}
.y9f{bottom:161.653586pt;}
.y44{bottom:162.293586pt;}
.y8c{bottom:173.013581pt;}
.yd8{bottom:175.093581pt;}
.y95{bottom:186.933576pt;}
.y67{bottom:189.494704pt;}
.ybe{bottom:193.013573pt;}
.y37{bottom:195.733572pt;}
.y9e{bottom:200.053571pt;}
.y43{bottom:200.693570pt;}
.y29{bottom:205.173569pt;}
.ya4{bottom:207.253568pt;}
.y1d{bottom:211.733566pt;}
.y7b{bottom:213.013585pt;}
.yd7{bottom:213.493565pt;}
.yc6{bottom:219.413563pt;}
.ye{bottom:221.013562pt;}
.y66{bottom:221.494564pt;}
.y77{bottom:228.213603pt;}
.ya8{bottom:230.613558pt;}
.ybd{bottom:231.413558pt;}
.y36{bottom:234.133557pt;}
.yb1{bottom:235.733556pt;}
.y42{bottom:239.093555pt;}
.y7a{bottom:243.253567pt;}
.y28{bottom:243.573553pt;}
.ya5{bottom:244.373553pt;}
.ya3{bottom:245.493552pt;}
.ya1{bottom:247.413552pt;}
.y8b{bottom:249.173551pt;}
.y1c{bottom:249.973551pt;}
.y14{bottom:251.253550pt;}
.y65{bottom:253.494423pt;}
.yc5{bottom:257.813548pt;}
.y6f{bottom:258.293547pt;}
.y76{bottom:258.453584pt;}
.yd{bottom:259.413547pt;}
.y5b{bottom:261.173546pt;}
.ya7{bottom:268.853543pt;}
.ybc{bottom:269.813543pt;}
.y35{bottom:272.373542pt;}
.y79{bottom:273.333517pt;}
.yb0{bottom:274.133541pt;}
.y83{bottom:274.134170pt;}
.y41{bottom:277.333540pt;}
.y27{bottom:281.973538pt;}
.ya2{bottom:283.893537pt;}
.y8a{bottom:287.413536pt;}
.y4e{bottom:287.893536pt;}
.y1b{bottom:288.213535pt;}
.y75{bottom:288.533535pt;}
.y13{bottom:289.013535pt;}
.yd6{bottom:290.133535pt;}
.y55{bottom:295.093533pt;}
.yc{bottom:297.813532pt;}
.y5a{bottom:299.573531pt;}
.y78{bottom:303.733529pt;}
.ybb{bottom:308.053527pt;}
.y34{bottom:310.773526pt;}
.yaf{bottom:312.373526pt;}
.y64{bottom:317.494408pt;}
.y26{bottom:320.213523pt;}
.y4d{bottom:326.133520pt;}
.yb5{bottom:326.453520pt;}
.y1a{bottom:326.613520pt;}
.y12{bottom:327.413520pt;}
.yd5{bottom:328.373519pt;}
.y54{bottom:333.493517pt;}
.yc4{bottom:334.453517pt;}
.yb{bottom:336.053516pt;}
.y82{bottom:338.134155pt;}
.yba{bottom:346.453512pt;}
.yde{bottom:347.093512pt;}
.ycf{bottom:348.693511pt;}
.y33{bottom:349.013511pt;}
.y63{bottom:349.494268pt;}
.y40{bottom:353.973509pt;}
.y25{bottom:358.613507pt;}
.y4c{bottom:364.533505pt;}
.y89{bottom:364.693505pt;}
.y19{bottom:364.853505pt;}
.y11{bottom:365.813504pt;}
.y6c{bottom:368.053887pt;}
.y81{bottom:370.134015pt;}
.y53{bottom:371.733502pt;}
.yc3{bottom:372.693502pt;}
.y59{bottom:376.213500pt;}
.y62{bottom:381.494127pt;}
.y74{bottom:383.733541pt;}
.ydd{bottom:385.493496pt;}
.yce{bottom:387.093496pt;}
.y32{bottom:387.413496pt;}
.yae{bottom:389.013495pt;}
.y3f{bottom:392.373494pt;}
.y1f{bottom:396.693492pt;}
.y24{bottom:396.853492pt;}
.y6b{bottom:400.053747pt;}
.y80{bottom:402.133874pt;}
.y4b{bottom:402.933489pt;}
.y88{bottom:403.093489pt;}
.y18{bottom:403.253489pt;}
.y10{bottom:404.053489pt;}
.ya6{bottom:404.853489pt;}
.yd4{bottom:405.013489pt;}
.ya{bottom:412.693486pt;}
.y71{bottom:412.853486pt;}
.y61{bottom:413.493986pt;}
.y73{bottom:413.813492pt;}
.y58{bottom:414.613485pt;}
.ycd{bottom:425.493480pt;}
.y31{bottom:425.813480pt;}
.y3e{bottom:430.773478pt;}
.y9c{bottom:432.053478pt;}
.y6a{bottom:432.053606pt;}
.y7f{bottom:434.133733pt;}
.y16{bottom:435.093333pt;}
.y3{bottom:438.613475pt;}
.y93{bottom:439.733475pt;}
.y4a{bottom:441.173474pt;}
.y87{bottom:441.333474pt;}
.yb4{bottom:441.493474pt;}
.yd3{bottom:443.413473pt;}
.y72{bottom:444.053473pt;}
.y52{bottom:448.373471pt;}
.yc2{bottom:449.493471pt;}
.y57{bottom:452.853470pt;}
.yb9{bottom:461.493466pt;}
.ydc{bottom:462.133466pt;}
.ycc{bottom:463.733465pt;}
.y30{bottom:464.053465pt;}
.yad{bottom:465.813464pt;}
.y7e{bottom:466.133592pt;}
.y3d{bottom:469.013463pt;}
.y9b{bottom:470.453462pt;}
.y23{bottom:473.653461pt;}
.y2{bottom:476.853460pt;}
.y60{bottom:477.493972pt;}
.y92{bottom:478.133459pt;}
.y49{bottom:479.573459pt;}
.y86{bottom:479.733459pt;}
.yf{bottom:480.693458pt;}
.yc1{bottom:487.733456pt;}
.y9{bottom:489.493455pt;}
.ya9{bottom:495.573452pt;}
.y7d{bottom:498.133451pt;}
.yb8{bottom:499.733451pt;}
.ydb{bottom:500.373451pt;}
.ycb{bottom:502.133450pt;}
.y6d{bottom:502.293450pt;}
.y2f{bottom:502.453450pt;}
.yac{bottom:504.053449pt;}
.y6e{bottom:504.213449pt;}
.y3c{bottom:507.413448pt;}
.y9a{bottom:508.693447pt;}
.y5f{bottom:509.493831pt;}
.y22{bottom:511.893446pt;}
.y1{bottom:515.253445pt;}
.y91{bottom:516.373444pt;}
.y48{bottom:517.813444pt;}
.yb3{bottom:518.133443pt;}
.yd2{bottom:520.053443pt;}
.y51{bottom:525.013441pt;}
.y56{bottom:529.653439pt;}
.yb7{bottom:538.133435pt;}
.y2e{bottom:540.693434pt;}
.y5e{bottom:541.493690pt;}
.y3b{bottom:545.653432pt;}
.y99{bottom:547.093432pt;}
.y21{bottom:550.293431pt;}
.y90{bottom:554.773429pt;}
.y85{bottom:555.733428pt;}
.y47{bottom:556.213428pt;}
.yd1{bottom:558.453427pt;}
.y50{bottom:563.413425pt;}
.yc0{bottom:564.373425pt;}
.y8{bottom:566.133424pt;}
.y5d{bottom:573.493549pt;}
.yb6{bottom:576.373420pt;}
.yca{bottom:578.773419pt;}
.yab{bottom:580.693418pt;}
.y3a{bottom:584.053417pt;}
.y7c{bottom:590.773414pt;}
.y84{bottom:594.133413pt;}
.y9d{bottom:594.453413pt;}
.yb2{bottom:594.773413pt;}
.y15{bottom:594.933413pt;}
.yd0{bottom:596.693412pt;}
.ybf{bottom:602.773410pt;}
.y5c{bottom:605.493408pt;}
.y94{bottom:606.453408pt;}
.yaa{bottom:617.973403pt;}
.y2d{bottom:619.733403pt;}
.y39{bottom:621.813402pt;}
.y20{bottom:626.933400pt;}
.y4f{bottom:640.053395pt;}
.h5{height:38.560000pt;}
.hc{height:95.767059pt;}
.h2{height:96.046837pt;}
.h1{height:104.749958pt;}
.h9{height:106.932145pt;}
.hb{height:112.407052pt;}
.h8{height:118.271953pt;}
.hd{height:121.983951pt;}
.h3{height:122.879951pt;}
.h6{height:123.391951pt;}
.h4{height:128.062449pt;}
.he{height:142.111303pt;}
.ha{height:169.749966pt;}
.h7{height:170.963369pt;}
.h0{height:793.333333pt;}
.w1{width:950.399840pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:90.867297pt;}
.x13{left:101.747293pt;}
.x6{left:103.347292pt;}
.x25{left:105.107291pt;}
.x33{left:109.267290pt;}
.x32{left:114.227527pt;}
.xe{left:116.947287pt;}
.x34{left:120.146858pt;}
.x27{left:121.267285pt;}
.x1d{left:122.387216pt;}
.x18{left:124.147284pt;}
.x26{left:125.267283pt;}
.x29{left:127.187166pt;}
.x28{left:129.267282pt;}
.xa{left:130.867281pt;}
.xb{left:138.867944pt;}
.x2a{left:146.067315pt;}
.x35{left:147.347941pt;}
.x24{left:149.267940pt;}
.x11{left:169.267932pt;}
.x1c{left:182.067414pt;}
.x12{left:217.269300pt;}
.x2{left:223.828963pt;}
.x1{left:240.787904pt;}
.x2f{left:288.307885pt;}
.x15{left:294.067882pt;}
.x14{left:296.147882pt;}
.x1a{left:303.987878pt;}
.x19{left:305.587878pt;}
.x1e{left:318.707873pt;}
.x9{left:323.347871pt;}
.x20{left:341.907893pt;}
.x10{left:355.987858pt;}
.x3{left:372.627998pt;}
.x1b{left:373.747851pt;}
.x1f{left:382.548028pt;}
.x31{left:431.987827pt;}
.x2b{left:458.867816pt;}
.x30{left:477.267809pt;}
.x16{left:508.947796pt;}
.x17{left:523.667791pt;}
.xc{left:527.827789pt;}
.x4{left:548.947780pt;}
.xd{left:554.227778pt;}
.x21{left:556.307777pt;}
.x23{left:581.267995pt;}
.x22{left:588.627850pt;}
.x2c{left:682.387727pt;}
.x8{left:717.424888pt;}
.x2d{left:805.427678pt;}
.x2e{left:849.107713pt;}
.xf{left:989.587604pt;}
.x5{left:997.587601pt;}
}




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