
    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_d4b907cc8f2e1287c043f17c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.038000;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_85e145d0dcf3564cf8cd0d65.woff')format("woff");}.ff2{font-family:ff2;line-height:1.038000;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_1e18a30c0cb1c88630fef461.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_508745ed1eb85e3a1002f9a8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_9466c72604634ec785706370.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000977;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_a17419b8834eae40fa3a473a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_352cd9bc85d656ea5ef26512.woff')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_bbd78762db9ff97daaa52746.woff')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_d286fe9b07eb070d072723d8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.038000;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_24b6f7b67ae07522e5475458.woff')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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:ffb;src:url('chunks/assets/font_af0bb64d56bfda9ced2a7630.woff')format("woff");}.ffb{font-family:ffb;line-height:0.998000;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:ffc;src:url('chunks/assets/font_3472d242a34c8b49dd44320c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.976562;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,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;}
.v1{vertical-align:4.335885px;}
.v2{vertical-align:24.946543px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008438px;}
.ls1{letter-spacing:0.012654px;}
.ls2{letter-spacing:0.057938px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(230,248,254),0 0.015em rgb(230,248,254),0.015em 0 rgb(230,248,254),0 -0.015em  rgb(230,248,254);}
.sc1{text-shadow:-0.015em 0 rgb(246,235,162),0 0.015em rgb(246,235,162),0.015em 0 rgb(246,235,162),0 -0.015em  rgb(246,235,162);}
.sc2{text-shadow:-0.015em 0 rgb(210,224,229),0 0.015em rgb(210,224,229),0.015em 0 rgb(210,224,229),0 -0.015em  rgb(210,224,229);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(230,248,254);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(246,235,162);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(210,224,229);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-46.116000px;}
.wsf{word-spacing:-44.730003px;}
.ws13{word-spacing:-39.528001px;}
.ws4{word-spacing:-30.240001px;}
.ws6{word-spacing:-29.484001px;}
.wsb{word-spacing:-26.880002px;}
.ws11{word-spacing:-26.727022px;}
.wsa{word-spacing:-25.200001px;}
.ws3{word-spacing:-24.570001px;}
.ws7{word-spacing:-23.520000px;}
.ws0{word-spacing:-21.294002px;}
.ws1d{word-spacing:-20.160001px;}
.ws14{word-spacing:-17.960376px;}
.ws15{word-spacing:-15.322506px;}
.ws1c{word-spacing:-0.129600px;}
.ws8{word-spacing:-0.108000px;}
.ws2{word-spacing:-0.096000px;}
.ws10{word-spacing:-0.086930px;}
.wsc{word-spacing:-0.084000px;}
.ws9{word-spacing:-0.070896px;}
.wse{word-spacing:-0.066000px;}
.ws1a{word-spacing:-0.049282px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:105.703409px;}
.ws16{word-spacing:116.740221px;}
.ws17{word-spacing:132.221953px;}
.ws12{word-spacing:136.588446px;}
.ws19{word-spacing:137.939163px;}
.ws1b{word-spacing:710.085014px;}
.ws5{word-spacing:1139.830599px;}
.ws1e{word-spacing:1626.885908px;}
._0{margin-left:-16.739980px;}
._c{margin-left:-10.710001px;}
._9{margin-left:-7.599835px;}
._2{margin-left:-6.199993px;}
._4{margin-left:-5.103000px;}
._3{margin-left:-3.099996px;}
._1{margin-left:-1.446665px;}
._8{width:1.404000px;}
._6{width:2.882781px;}
._a{width:4.500000px;}
._5{width:7.128000px;}
._b{width:107.987309px;}
._d{width:141.458393px;}
._e{width:714.073488px;}
._7{width:1169.571349px;}
.fc14{color:rgb(7,56,57);}
.fc12{color:rgb(56,118,29);}
.fc13{color:rgb(17,85,204);}
.fce{color:rgb(0,255,0);}
.fc0{color:rgb(210,224,229);}
.fc10{color:rgb(74,134,232);}
.fca{color:rgb(153,0,255);}
.fc2{color:rgb(230,248,254);}
.fcd{color:rgb(255,255,0);}
.fc3{color:rgb(91,15,0);}
.fc4{color:rgb(0,0,0);}
.fcf{color:rgb(0,255,255);}
.fc5{color:rgb(255,0,0);}
.fc11{color:rgb(153,0,0);}
.fc7{color:rgb(43,69,79);}
.fcc{color:rgb(255,153,0);}
.fc1{color:rgb(246,235,162);}
.fc8{color:rgb(47,72,88);}
.fcb{color:rgb(255,0,255);}
.fc6{color:transparent;}
.fc9{color:rgb(0,0,255);}
.fs19{font-size:49.282206px;}
.fsd{font-size:55.500000px;}
.fs16{font-size:56.126396px;}
.fs17{font-size:60.582606px;}
.fs1c{font-size:61.724405px;}
.fs15{font-size:64.144199px;}
.fs10{font-size:66.000004px;}
.fs18{font-size:67.202998px;}
.fse{font-size:70.895995px;}
.fs1a{font-size:71.683202px;}
.fs14{font-size:72.000002px;}
.fs3{font-size:78.000005px;}
.fs5{font-size:83.534997px;}
.fsc{font-size:84.000000px;}
.fs13{font-size:85.663528px;}
.fs11{font-size:86.929806px;}
.fs4{font-size:90.000003px;}
.fs1d{font-size:91.360803px;}
.fs6{font-size:96.000006px;}
.fs12{font-size:97.901181px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:108.000003px;}
.fs1b{font-size:111.183601px;}
.fs1e{font-size:129.599991px;}
.fsa{font-size:133.800115px;}
.fs9{font-size:138.000001px;}
.fs7{font-size:145.799996px;}
.fs8{font-size:162.000005px;}
.fs0{font-size:206.666422px;}
.fsf{font-size:210.000013px;}
.fs1{font-size:264.000014px;}
.y0{bottom:0.000000px;}
.y94{bottom:48.813770px;}
.y36{bottom:51.847407px;}
.y9c{bottom:57.287754px;}
.y1b{bottom:57.701300px;}
.y4f{bottom:58.206245px;}
.y4e{bottom:59.280935px;}
.y75{bottom:61.854058px;}
.y74{bottom:81.654058px;}
.y4d{bottom:84.030932px;}
.y92{bottom:85.958065px;}
.y9b{bottom:88.230138px;}
.y8f{bottom:93.162100px;}
.y98{bottom:95.447330px;}
.yaa{bottom:95.622531px;}
.y5b{bottom:103.330176px;}
.y7d{bottom:108.089759px;}
.y47{bottom:110.735714px;}
.y2a{bottom:113.320143px;}
.y86{bottom:114.601732px;}
.y8e{bottom:115.051394px;}
.y32{bottom:115.079519px;}
.y93{bottom:120.932213px;}
.y91{bottom:122.016229px;}
.y5a{bottom:128.080177px;}
.y38{bottom:129.737981px;}
.y62{bottom:131.771910px;}
.y35{bottom:133.494011px;}
.ya9{bottom:136.302532px;}
.y85{bottom:136.491026px;}
.y8d{bottom:136.940689px;}
.y7c{bottom:138.869726px;}
.y46{bottom:139.535726px;}
.y65{bottom:139.700314px;}
.y3e{bottom:144.098035px;}
.y29{bottom:145.720121px;}
.y59{bottom:152.830178px;}
.y18{bottom:155.033716px;}
.y84{bottom:158.380321px;}
.y8c{bottom:158.829982px;}
.y20{bottom:159.449509px;}
.y45{bottom:168.335727px;}
.y31{bottom:172.679555px;}
.y71{bottom:172.754244px;}
.y61{bottom:173.504405px;}
.y3d{bottom:175.148031px;}
.ya8{bottom:176.982511px;}
.y28{bottom:178.120145px;}
.y83{bottom:180.269614px;}
.y64{bottom:182.450319px;}
.y8b{bottom:186.647870px;}
.y17{bottom:187.433717px;}
.y7b{bottom:187.649728px;}
.y99{bottom:193.694956px;}
.y97{bottom:193.696216px;}
.y30{bottom:201.479556px;}
.y70{bottom:201.554256px;}
.y58{bottom:202.330146px;}
.y1f{bottom:208.049505px;}
.y82{bottom:208.087446px;}
.y4{bottom:210.259229px;}
.y60{bottom:210.764395px;}
.yd{bottom:216.077837px;}
.ya7{bottom:217.662513px;}
.y7a{bottom:218.429729px;}
.y6a{bottom:220.428865px;}
.y44{bottom:225.935763px;}
.y6f{bottom:230.354268px;}
.y4c{bottom:231.705325px;}
.y3{bottom:235.099228px;}
.y27{bottom:242.920147px;}
.y5c{bottom:245.765435px;}
.y6{bottom:248.683467px;}
.y13{bottom:248.770136px;}
.y57{bottom:251.830147px;}
.y16{bottom:252.233707px;}
.y43{bottom:254.735775px;}
.y1e{bottom:256.649504px;}
.ya6{bottom:258.342514px;}
.y2f{bottom:259.079569px;}
.y6e{bottom:259.154269px;}
.y4b{bottom:262.485326px;}
.y9e{bottom:266.511850px;}
.y79{bottom:267.209730px;}
.y37{bottom:270.420064px;}
.y26{bottom:275.320148px;}
.y56{bottom:276.580148px;}
.y69{bottom:278.028867px;}
.y12{bottom:281.170144px;}
.y2e{bottom:287.879581px;}
.y3c{bottom:290.235820px;}
.y90{bottom:294.970737px;}
.y78{bottom:297.989731px;}
.ya5{bottom:299.022515px;}
.y34{bottom:301.107204px;}
.y55{bottom:301.330149px;}
.y2{bottom:303.089975px;}
.y68{bottom:306.828874px;}
.y25{bottom:307.720149px;}
.y9d{bottom:308.129282px;}
.y39{bottom:309.499595px;}
.y42{bottom:312.335788px;}
.y11{bottom:313.570149px;}
.y81{bottom:315.179327px;}
.y8a{bottom:316.646676px;}
.y15{bottom:317.033721px;}
.y9f{bottom:317.790111px;}
.ye{bottom:318.840933px;}
.y6d{bottom:321.074271px;}
.y5f{bottom:321.284376px;}
.y3b{bottom:321.285817px;}
.y1d{bottom:324.141021px;}
.y54{bottom:326.080150px;}
.y5{bottom:332.606681px;}
.ya4{bottom:339.702516px;}
.y80{bottom:340.436211px;}
.y41{bottom:341.135800px;}
.y89{bottom:341.903560px;}
.y2d{bottom:345.479583px;}
.y77{bottom:346.769733px;}
.y53{bottom:350.830151px;}
.y73{bottom:351.646766px;}
.y6c{bottom:353.474279px;}
.y9a{bottom:355.969956px;}
.y96{bottom:355.971205px;}
.y5e{bottom:358.544388px;}
.y7{bottom:359.197564px;}
.y4a{bottom:360.045330px;}
.y7f{bottom:365.693087px;}
.y88{bottom:367.160436px;}
.y67{bottom:368.748877px;}
.y24{bottom:372.520140px;}
.y2c{bottom:374.279575px;}
.y52{bottom:375.580151px;}
.y1{bottom:378.849964px;}
.ya3{bottom:380.382518px;}
.y6b{bottom:385.874284px;}
.y72{bottom:388.906767px;}
.y49{bottom:390.825331px;}
.y7e{bottom:393.510942px;}
.y87{bottom:394.978302px;}
.y14{bottom:395.053584px;}
.y5d{bottom:395.804389px;}
.y8{bottom:396.865501px;}
.y40{bottom:398.735782px;}
.y51{bottom:400.330155px;}
.y66{bottom:401.148882px;}
.y2b{bottom:403.079573px;}
.y23{bottom:404.920148px;}
.y10{bottom:408.554525px;}
.yc{bottom:417.257007px;}
.ya2{bottom:421.062519px;}
.y1a{bottom:421.591826px;}
.y48{bottom:421.605333px;}
.y50{bottom:425.080156px;}
.y3f{bottom:427.535780px;}
.yf{bottom:435.554523px;}
.y3a{bottom:436.065352px;}
.y22{bottom:437.320153px;}
.y76{bottom:444.329737px;}
.ya0{bottom:464.441671px;}
.y19{bottom:465.331821px;}
.yb{bottom:465.857004px;}
.y33{bottom:468.720408px;}
.yab{bottom:485.003082px;}
.y63{bottom:486.594921px;}
.ya1{bottom:493.625405px;}
.y95{bottom:500.045505px;}
.ya{bottom:514.457003px;}
.y21{bottom:515.975313px;}
.y9{bottom:519.863315px;}
.y1c{bottom:528.935311px;}
.h21{height:36.095366px;}
.h1e{height:44.046631px;}
.hd{height:44.344500px;}
.h1d{height:44.844990px;}
.h24{height:44.937055px;}
.h1c{height:47.466707px;}
.h1f{height:48.382516px;}
.h20{height:50.205364px;}
.h10{height:51.045116px;}
.h1b{height:52.347658px;}
.h15{height:52.668003px;}
.h19{height:52.734003px;}
.h27{height:53.280002px;}
.h14{height:55.986328px;}
.h28{height:57.528002px;}
.h22{height:58.636859px;}
.h16{height:61.072265px;}
.hc{height:62.160000px;}
.h4{height:62.322004px;}
.h6{height:62.406516px;}
.h17{height:62.589460px;}
.h1a{height:63.391010px;}
.h13{height:67.116000px;}
.h25{height:67.606994px;}
.h7{height:69.890629px;}
.h5{height:71.910002px;}
.he{height:76.704005px;}
.hf{height:77.760002px;}
.h18{height:78.223044px;}
.h12{height:79.920003px;}
.h3{height:81.498000px;}
.hb{height:86.292003px;}
.h23{height:90.948185px;}
.h26{height:106.012792px;}
.ha{height:112.884001px;}
.h8{height:119.264396px;}
.h9{height:132.516004px;}
.h1{height:169.053133px;}
.h11{height:171.780010px;}
.h2{height:215.952012px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3f{left:10.125000px;}
.x1b{left:60.103350px;}
.x1{left:63.274609px;}
.x32{left:66.404390px;}
.x31{left:67.462670px;}
.x1c{left:82.453388px;}
.x2e{left:95.807962px;}
.x3a{left:99.807129px;}
.x18{left:102.154608px;}
.x2f{left:108.713535px;}
.x6{left:109.727362px;}
.x1e{left:123.268065px;}
.x24{left:130.954729px;}
.xb{left:143.994483px;}
.x1a{left:152.215239px;}
.xc{left:162.178925px;}
.x23{left:165.634847px;}
.x29{left:168.355721px;}
.x5{left:172.045288px;}
.xd{left:175.894903px;}
.x2b{left:179.666546px;}
.x38{left:187.227091px;}
.x39{left:191.448897px;}
.x20{left:224.302153px;}
.xa{left:233.467003px;}
.x1f{left:266.296734px;}
.x34{left:271.914905px;}
.x3e{left:278.037414px;}
.x3c{left:291.694588px;}
.x19{left:296.820279px;}
.x1d{left:301.880428px;}
.x33{left:316.015588px;}
.x21{left:349.696018px;}
.x4{left:391.047650px;}
.x3b{left:419.900357px;}
.x3{left:423.445325px;}
.xe{left:448.497273px;}
.x35{left:459.612437px;}
.x37{left:463.378840px;}
.xf{left:464.967212px;}
.x10{left:478.710191px;}
.x27{left:480.289403px;}
.x2a{left:486.658478px;}
.x26{left:489.841553px;}
.x28{left:494.068577px;}
.x25{left:501.510841px;}
.x3d{left:526.519875px;}
.x30{left:529.536967px;}
.x9{left:673.875022px;}
.x14{left:689.244142px;}
.x16{left:691.526124px;}
.x15{left:702.922680px;}
.x17{left:708.652951px;}
.x22{left:713.632087px;}
.x2{left:717.404985px;}
.x36{left:730.186157px;}
.x13{left:743.199075px;}
.x11{left:748.531547px;}
.x12{left:780.445458px;}
.x2d{left:799.900293px;}
.x2c{left:812.808814px;}
.x8{left:822.632118px;}
.x7{left:833.544612px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.854120pt;}
.v2{vertical-align:22.174705pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007500pt;}
.ls1{letter-spacing:0.011248pt;}
.ls2{letter-spacing:0.051500pt;}
.wsd{word-spacing:-40.992000pt;}
.wsf{word-spacing:-39.760002pt;}
.ws13{word-spacing:-35.136001pt;}
.ws4{word-spacing:-26.880001pt;}
.ws6{word-spacing:-26.208001pt;}
.wsb{word-spacing:-23.893335pt;}
.ws11{word-spacing:-23.757353pt;}
.wsa{word-spacing:-22.400001pt;}
.ws3{word-spacing:-21.840001pt;}
.ws7{word-spacing:-20.906667pt;}
.ws0{word-spacing:-18.928001pt;}
.ws1d{word-spacing:-17.920001pt;}
.ws14{word-spacing:-15.964778pt;}
.ws15{word-spacing:-13.620005pt;}
.ws1c{word-spacing:-0.115200pt;}
.ws8{word-spacing:-0.096000pt;}
.ws2{word-spacing:-0.085333pt;}
.ws10{word-spacing:-0.077271pt;}
.wsc{word-spacing:-0.074667pt;}
.ws9{word-spacing:-0.063019pt;}
.wse{word-spacing:-0.058667pt;}
.ws1a{word-spacing:-0.043806pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:93.958586pt;}
.ws16{word-spacing:103.769086pt;}
.ws17{word-spacing:117.530625pt;}
.ws12{word-spacing:121.411952pt;}
.ws19{word-spacing:122.612589pt;}
.ws1b{word-spacing:631.186679pt;}
.ws5{word-spacing:1013.182755pt;}
.ws1e{word-spacing:1446.120807pt;}
._0{margin-left:-14.879982pt;}
._c{margin-left:-9.520001pt;}
._9{margin-left:-6.755409pt;}
._2{margin-left:-5.511105pt;}
._4{margin-left:-4.536000pt;}
._3{margin-left:-2.755552pt;}
._1{margin-left:-1.285924pt;}
._8{width:1.248000pt;}
._6{width:2.562472pt;}
._a{width:4.000000pt;}
._5{width:6.336000pt;}
._b{width:95.988719pt;}
._d{width:125.740794pt;}
._e{width:634.731989pt;}
._7{width:1039.618977pt;}
.fs19{font-size:43.806405pt;}
.fsd{font-size:49.333334pt;}
.fs16{font-size:49.890130pt;}
.fs17{font-size:53.851206pt;}
.fs1c{font-size:54.866138pt;}
.fs15{font-size:57.017066pt;}
.fs10{font-size:58.666670pt;}
.fs18{font-size:59.735998pt;}
.fse{font-size:63.018662pt;}
.fs1a{font-size:63.718402pt;}
.fs14{font-size:64.000002pt;}
.fs3{font-size:69.333338pt;}
.fs5{font-size:74.253330pt;}
.fsc{font-size:74.666666pt;}
.fs13{font-size:76.145358pt;}
.fs11{font-size:77.270938pt;}
.fs4{font-size:80.000003pt;}
.fs1d{font-size:81.209603pt;}
.fs6{font-size:85.333339pt;}
.fs12{font-size:87.023272pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:96.000003pt;}
.fs1b{font-size:98.829867pt;}
.fs1e{font-size:115.199992pt;}
.fsa{font-size:118.933436pt;}
.fs9{font-size:122.666668pt;}
.fs7{font-size:129.599996pt;}
.fs8{font-size:144.000005pt;}
.fs0{font-size:183.703486pt;}
.fsf{font-size:186.666678pt;}
.fs1{font-size:234.666680pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:43.390018pt;}
.y36{bottom:46.086584pt;}
.y9c{bottom:50.922448pt;}
.y1b{bottom:51.290044pt;}
.y4f{bottom:51.738884pt;}
.y4e{bottom:52.694164pt;}
.y75{bottom:54.981384pt;}
.y74{bottom:72.581385pt;}
.y4d{bottom:74.694162pt;}
.y92{bottom:76.407169pt;}
.y9b{bottom:78.426789pt;}
.y8f{bottom:82.810755pt;}
.y98{bottom:84.842071pt;}
.yaa{bottom:84.997805pt;}
.y5b{bottom:91.849046pt;}
.y7d{bottom:96.079786pt;}
.y47{bottom:98.431746pt;}
.y2a{bottom:100.729016pt;}
.y86{bottom:101.868206pt;}
.y8e{bottom:102.267906pt;}
.y32{bottom:102.292906pt;}
.y93{bottom:107.495300pt;}
.y91{bottom:108.458870pt;}
.y5a{bottom:113.849046pt;}
.y38{bottom:115.322649pt;}
.y62{bottom:117.130586pt;}
.y35{bottom:118.661344pt;}
.ya9{bottom:121.157807pt;}
.y85{bottom:121.325357pt;}
.y8d{bottom:121.725057pt;}
.y7c{bottom:123.439757pt;}
.y46{bottom:124.031757pt;}
.y65{bottom:124.178057pt;}
.y3e{bottom:128.087142pt;}
.y29{bottom:129.528997pt;}
.y59{bottom:135.849047pt;}
.y18{bottom:137.807747pt;}
.y84{bottom:140.782507pt;}
.y8c{bottom:141.182206pt;}
.y20{bottom:141.732897pt;}
.y45{bottom:149.631758pt;}
.y31{bottom:153.492938pt;}
.y71{bottom:153.559328pt;}
.y61{bottom:154.226138pt;}
.y3d{bottom:155.687139pt;}
.ya8{bottom:157.317788pt;}
.y28{bottom:158.329018pt;}
.y83{bottom:160.239657pt;}
.y64{bottom:162.178061pt;}
.y8b{bottom:165.909218pt;}
.y17{bottom:166.607748pt;}
.y7b{bottom:166.799758pt;}
.y99{bottom:172.173294pt;}
.y97{bottom:172.174414pt;}
.y30{bottom:179.092938pt;}
.y70{bottom:179.159338pt;}
.y58{bottom:179.849018pt;}
.y1f{bottom:184.932894pt;}
.y82{bottom:184.966619pt;}
.y4{bottom:186.897093pt;}
.y60{bottom:187.346129pt;}
.yd{bottom:192.069189pt;}
.ya7{bottom:193.477789pt;}
.y7a{bottom:194.159759pt;}
.y6a{bottom:195.936769pt;}
.y44{bottom:200.831789pt;}
.y6f{bottom:204.759349pt;}
.y4c{bottom:205.960289pt;}
.y3{bottom:208.977091pt;}
.y27{bottom:215.929020pt;}
.y5c{bottom:218.458165pt;}
.y6{bottom:221.051971pt;}
.y13{bottom:221.129010pt;}
.y57{bottom:223.849020pt;}
.y16{bottom:224.207740pt;}
.y43{bottom:226.431800pt;}
.y1e{bottom:228.132892pt;}
.ya6{bottom:229.637790pt;}
.y2f{bottom:230.292950pt;}
.y6e{bottom:230.359350pt;}
.y4b{bottom:233.320290pt;}
.y9e{bottom:236.899422pt;}
.y79{bottom:237.519760pt;}
.y37{bottom:240.373390pt;}
.y26{bottom:244.729021pt;}
.y56{bottom:245.849021pt;}
.y69{bottom:247.136771pt;}
.y12{bottom:249.929017pt;}
.y2e{bottom:255.892961pt;}
.y3c{bottom:257.987396pt;}
.y90{bottom:262.196211pt;}
.y78{bottom:264.879761pt;}
.ya5{bottom:265.797791pt;}
.y34{bottom:267.650848pt;}
.y55{bottom:267.849021pt;}
.y2{bottom:269.413311pt;}
.y68{bottom:272.736776pt;}
.y25{bottom:273.529021pt;}
.y9d{bottom:273.892695pt;}
.y39{bottom:275.110752pt;}
.y42{bottom:277.631812pt;}
.y11{bottom:278.729022pt;}
.y81{bottom:280.159402pt;}
.y8a{bottom:281.463712pt;}
.y15{bottom:281.807752pt;}
.y9f{bottom:282.480099pt;}
.ye{bottom:283.414163pt;}
.y6d{bottom:285.399352pt;}
.y5f{bottom:285.586112pt;}
.y3b{bottom:285.587393pt;}
.y1d{bottom:288.125352pt;}
.y54{bottom:289.849022pt;}
.y5{bottom:295.650383pt;}
.ya4{bottom:301.957792pt;}
.y80{bottom:302.609965pt;}
.y41{bottom:303.231822pt;}
.y89{bottom:303.914275pt;}
.y2d{bottom:307.092963pt;}
.y77{bottom:308.239763pt;}
.y53{bottom:311.849023pt;}
.y73{bottom:312.574903pt;}
.y6c{bottom:314.199359pt;}
.y9a{bottom:316.417739pt;}
.y96{bottom:316.418849pt;}
.y5e{bottom:318.706123pt;}
.y7{bottom:319.286724pt;}
.y4a{bottom:320.040293pt;}
.y7f{bottom:325.060522pt;}
.y88{bottom:326.364832pt;}
.y67{bottom:327.776779pt;}
.y24{bottom:331.129013pt;}
.y2c{bottom:332.692955pt;}
.y52{bottom:333.849023pt;}
.y1{bottom:336.755523pt;}
.ya3{bottom:338.117794pt;}
.y6b{bottom:342.999364pt;}
.y72{bottom:345.694904pt;}
.y49{bottom:347.400294pt;}
.y7e{bottom:349.787504pt;}
.y87{bottom:351.091824pt;}
.y14{bottom:351.158741pt;}
.y5d{bottom:351.826124pt;}
.y8{bottom:352.769334pt;}
.y40{bottom:354.431806pt;}
.y51{bottom:355.849027pt;}
.y66{bottom:356.576784pt;}
.y2b{bottom:358.292954pt;}
.y23{bottom:359.929020pt;}
.y10{bottom:363.159577pt;}
.yc{bottom:370.895118pt;}
.ya2{bottom:374.277795pt;}
.y1a{bottom:374.748290pt;}
.y48{bottom:374.760296pt;}
.y50{bottom:377.849028pt;}
.y3f{bottom:380.031805pt;}
.yf{bottom:387.159576pt;}
.y3a{bottom:387.613646pt;}
.y22{bottom:388.729025pt;}
.y76{bottom:394.959766pt;}
.ya0{bottom:412.837041pt;}
.y19{bottom:413.628285pt;}
.yb{bottom:414.095115pt;}
.y33{bottom:416.640363pt;}
.yab{bottom:431.113851pt;}
.y63{bottom:432.528819pt;}
.ya1{bottom:438.778138pt;}
.y95{bottom:444.484893pt;}
.ya{bottom:457.295113pt;}
.y21{bottom:458.644722pt;}
.y9{bottom:462.100725pt;}
.y1c{bottom:470.164721pt;}
.h21{height:32.084770pt;}
.h1e{height:39.152561pt;}
.hd{height:39.417334pt;}
.h1d{height:39.862214pt;}
.h24{height:39.944049pt;}
.h1c{height:42.192629pt;}
.h1f{height:43.006681pt;}
.h20{height:44.626991pt;}
.h10{height:45.373437pt;}
.h1b{height:46.531251pt;}
.h15{height:46.816003pt;}
.h19{height:46.874669pt;}
.h27{height:47.360002pt;}
.h14{height:49.765625pt;}
.h28{height:51.136002pt;}
.h22{height:52.121653pt;}
.h16{height:54.286458pt;}
.hc{height:55.253333pt;}
.h4{height:55.397337pt;}
.h6{height:55.472459pt;}
.h17{height:55.635076pt;}
.h1a{height:56.347565pt;}
.h13{height:59.658666pt;}
.h25{height:60.095106pt;}
.h7{height:62.125004pt;}
.h5{height:63.920002pt;}
.he{height:68.181338pt;}
.hf{height:69.120002pt;}
.h18{height:69.531594pt;}
.h12{height:71.040002pt;}
.h3{height:72.442667pt;}
.hb{height:76.704002pt;}
.h23{height:80.842831pt;}
.h26{height:94.233593pt;}
.ha{height:100.341334pt;}
.h8{height:106.012797pt;}
.h9{height:117.792004pt;}
.h1{height:150.269451pt;}
.h11{height:152.693343pt;}
.h2{height:191.957344pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:9.000000pt;}
.x1b{left:53.425200pt;}
.x1{left:56.244097pt;}
.x32{left:59.026125pt;}
.x31{left:59.966818pt;}
.x1c{left:73.291900pt;}
.x2e{left:85.162633pt;}
.x3a{left:88.717448pt;}
.x18{left:90.804096pt;}
.x2f{left:96.634253pt;}
.x6{left:97.535433pt;}
.x1e{left:109.571614pt;}
.x24{left:116.404204pt;}
.xb{left:127.995096pt;}
.x1a{left:135.302434pt;}
.xc{left:144.159045pt;}
.x23{left:147.230975pt;}
.x29{left:149.649530pt;}
.x5{left:152.929145pt;}
.xd{left:156.351025pt;}
.x2b{left:159.703596pt;}
.x38{left:166.424081pt;}
.x39{left:170.176797pt;}
.x20{left:199.379691pt;}
.xa{left:207.526225pt;}
.x1f{left:236.708208pt;}
.x34{left:241.702138pt;}
.x3e{left:247.144368pt;}
.x3c{left:259.284078pt;}
.x19{left:263.840248pt;}
.x1d{left:268.338159pt;}
.x33{left:280.902745pt;}
.x21{left:310.840905pt;}
.x4{left:347.597911pt;}
.x3b{left:373.244762pt;}
.x3{left:376.395844pt;}
.xe{left:398.664243pt;}
.x35{left:408.544388pt;}
.x37{left:411.892302pt;}
.xf{left:413.304188pt;}
.x10{left:425.520170pt;}
.x27{left:426.923914pt;}
.x2a{left:432.585314pt;}
.x26{left:435.414714pt;}
.x28{left:439.172068pt;}
.x25{left:445.787414pt;}
.x3d{left:468.017667pt;}
.x30{left:470.699526pt;}
.x9{left:599.000019pt;}
.x14{left:612.661460pt;}
.x16{left:614.689888pt;}
.x15{left:624.820160pt;}
.x17{left:629.913734pt;}
.x22{left:634.339633pt;}
.x2{left:637.693320pt;}
.x36{left:649.054362pt;}
.x13{left:660.621400pt;}
.x11{left:665.361375pt;}
.x12{left:693.729296pt;}
.x2d{left:711.022483pt;}
.x2c{left:722.496723pt;}
.x8{left:731.228549pt;}
.x7{left:740.928544pt;}
}




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