
    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_7c1841a12df66b140e5abe2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ddaf4624c9ab884a45efa704.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d879809b0cd2a10c224a9295.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_5f3c626900f538a3b94d8cf8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_7f81f69026fdb9fb72dc608f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_50663d63119b4f424e747257.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928711;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_46f23a46490f7c1f370b9e9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_b79ad60c4bc7a1d9c864a7c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.726074;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);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.780000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.336000px;}
.v2{vertical-align:31.800000px;}
.v1{vertical-align:84.240000px;}
.ls13{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.405600px;}
.ls1e{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.259800px;}
.ls1f{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.202800px;}
.ls2{letter-spacing:-0.162600px;}
.ls21{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.109200px;}
.ls16{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.037440px;}
.ls10{letter-spacing:-0.025920px;}
.ls1a{letter-spacing:-0.018720px;}
.ls11{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.017280px;}
.ls15{letter-spacing:0.026460px;}
.ls3{letter-spacing:0.058740px;}
.ls14{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.197400px;}
.lsa{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.247800px;}
.ls17{letter-spacing:0.288000px;}
.lsf{letter-spacing:1.422720px;}
.ls1b{letter-spacing:52.930080px;}
.ls19{letter-spacing:53.050080px;}
.ls18{letter-spacing:58.536000px;}
.ls1c{letter-spacing:64.141920px;}
.ls9{letter-spacing:97.560000px;}
.ls6{letter-spacing:101.793600px;}
.ls5{letter-spacing:101.844000px;}
.lsb{letter-spacing:149.113440px;}
.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;}
}
.ws8{word-spacing:-53.482752px;}
.ws9{word-spacing:-53.077152px;}
.ws25{word-spacing:-40.072032px;}
.ws1c{word-spacing:-40.032000px;}
.ws27{word-spacing:-39.888000px;}
.ws26{word-spacing:-39.848232px;}
.ws24{word-spacing:-39.744000px;}
.ws22{word-spacing:-33.426720px;}
.wsb{word-spacing:-30.240000px;}
.ws20{word-spacing:-30.064032px;}
.wsa{word-spacing:-30.024000px;}
.wsc{word-spacing:-29.808000px;}
.wsd{word-spacing:-29.090736px;}
.ws0{word-spacing:-26.621280px;}
.ws21{word-spacing:-23.458752px;}
.ws1e{word-spacing:-23.418720px;}
.ws18{word-spacing:-22.660560px;}
.ws11{word-spacing:-21.726480px;}
.ws10{word-spacing:-21.657312px;}
.ws14{word-spacing:-21.634560px;}
.ws15{word-spacing:-21.617280px;}
.wsf{word-spacing:-21.600000px;}
.wse{word-spacing:-21.591360px;}
.ws1f{word-spacing:-20.056032px;}
.ws1b{word-spacing:-20.016000px;}
.ws23{word-spacing:-18.305520px;}
.ws7{word-spacing:-16.613280px;}
.ws6{word-spacing:-16.353480px;}
.ws2{word-spacing:-5.766000px;}
.ws3{word-spacing:-5.098320px;}
.ws4{word-spacing:-1.376400px;}
.ws1{word-spacing:-0.394920px;}
.ws5{word-spacing:0.000000px;}
.ws19{word-spacing:82.092720px;}
.ws1a{word-spacing:82.173612px;}
.ws13{word-spacing:376.244160px;}
.ws12{word-spacing:430.990080px;}
.ws17{word-spacing:1954.140240px;}
.ws16{word-spacing:2002.680240px;}
.ws1d{word-spacing:2717.900160px;}
._12{margin-left:-3836.143440px;}
._11{margin-left:-2236.124448px;}
._13{margin-left:-1861.401360px;}
._10{margin-left:-1695.907200px;}
._14{margin-left:-21.277872px;}
._17{margin-left:-15.984000px;}
._5{margin-left:-13.962240px;}
._f{margin-left:-12.896256px;}
._e{margin-left:-10.664928px;}
._9{margin-left:-7.639920px;}
._6{margin-left:-6.612960px;}
._b{margin-left:-5.466528px;}
._3{margin-left:-4.309200px;}
._0{margin-left:-2.681280px;}
._4{margin-left:-1.340160px;}
._2{width:1.053360px;}
._d{width:2.107392px;}
._1{width:3.160080px;}
._c{width:4.192560px;}
._15{width:31.640112px;}
._8{width:44.932512px;}
._7{width:52.791840px;}
._a{width:101.844000px;}
._1b{width:261.804000px;}
._1c{width:310.044000px;}
._1a{width:341.891712px;}
._18{width:429.996000px;}
._19{width:462.540000px;}
._16{width:1900.839888px;}
.fcf{color:rgb(127,127,127);}
.fcd{color:rgb(31,128,0);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(137,137,137);}
.fc3{color:rgb(191,191,191);}
.fc7{color:rgb(217,217,217);}
.fc8{color:rgb(89,89,89);}
.fc4{color:rgb(0,101,139);}
.fc9{color:rgb(0,51,69);}
.fce{color:rgb(251,190,0);}
.fcc{color:rgb(108,186,220);}
.fc5{color:rgb(0,176,240);}
.fc6{color:transparent;}
.fca{color:rgb(4,50,68);}
.fcb{color:rgb(57,95,108);}
.fs4{font-size:59.760000px;}
.fsf{font-size:59.904000px;}
.fs12{font-size:66.240000px;}
.fs13{font-size:66.384000px;}
.fsd{font-size:72.000000px;}
.fse{font-size:72.144000px;}
.fs9{font-size:77.760000px;}
.fsa{font-size:77.904000px;}
.fs1{font-size:84.240000px;}
.fs10{font-size:84.384000px;}
.fs0{font-size:95.760000px;}
.fs5{font-size:95.904000px;}
.fs7{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fsb{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs6{font-size:144.000000px;}
.fs15{font-size:144.144000px;}
.fs14{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fs3{font-size:192.384000px;}
.fs11{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.yb{bottom:15.984000px;}
.y9{bottom:16.020000px;}
.y3d{bottom:23.508000px;}
.y21{bottom:24.192000px;}
.y3c{bottom:58.716000px;}
.y55{bottom:64.584000px;}
.y36{bottom:67.464000px;}
.y3b{bottom:76.752000px;}
.y38{bottom:78.156000px;}
.y35{bottom:89.064000px;}
.y47{bottom:91.512000px;}
.y22{bottom:93.348000px;}
.y17{bottom:102.528000px;}
.y5a{bottom:129.816000px;}
.y5e{bottom:129.852000px;}
.y16{bottom:131.328000px;}
.y46{bottom:131.472000px;}
.y65{bottom:140.076000px;}
.y45{bottom:171.435000px;}
.y1f{bottom:175.035000px;}
.y64{bottom:176.250000px;}
.y4c{bottom:187.275000px;}
.y15{bottom:188.970000px;}
.y1e{bottom:207.435000px;}
.y58{bottom:209.910000px;}
.y30{bottom:210.060000px;}
.y44{bottom:211.245000px;}
.y63{bottom:212.610000px;}
.y18{bottom:217.770000px;}
.y2f{bottom:235.260000px;}
.y31{bottom:235.875000px;}
.yc{bottom:236.850000px;}
.y4b{bottom:238.395000px;}
.y1d{bottom:239.865000px;}
.y14{bottom:246.570000px;}
.y43{bottom:251.205000px;}
.y62{bottom:256.890000px;}
.y73{bottom:258.045000px;}
.y20{bottom:263.160000px;}
.y5d{bottom:267.330000px;}
.y1c{bottom:272.265000px;}
.y13{bottom:275.370000px;}
.y6b{bottom:277.815000px;}
.y4{bottom:277.890000px;}
.y57{bottom:277.950000px;}
.y42{bottom:283.605000px;}
.y4a{bottom:289.335000px;}
.y53{bottom:294.150000px;}
.y4f{bottom:297.105000px;}
.y6a{bottom:297.645000px;}
.y29{bottom:300.810000px;}
.y56{bottom:303.150000px;}
.y5c{bottom:303.375000px;}
.y1b{bottom:304.665000px;}
.y72{bottom:316.185000px;}
.y69{bottom:317.445000px;}
.y3{bottom:318.750000px;}
.y28{bottom:321.870000px;}
.y61{bottom:326.055000px;}
.y24{bottom:332.385000px;}
.y2b{bottom:332.535000px;}
.y1a{bottom:337.065000px;}
.y5b{bottom:339.375000px;}
.y27{bottom:342.930000px;}
.y34{bottom:344.805000px;}
.y12{bottom:346.575000px;}
.y68{bottom:347.865000px;}
.y67{bottom:347.910000px;}
.y54{bottom:352.335000px;}
.y23{bottom:353.445000px;}
.y2a{bottom:353.595000px;}
.y39{bottom:354.750000px;}
.y50{bottom:355.245000px;}
.y41{bottom:357.765000px;}
.y19{bottom:359.130000px;}
.y2{bottom:362.490000px;}
.y26{bottom:363.990000px;}
.y49{bottom:364.140000px;}
.y71{bottom:374.550000px;}
.y3a{bottom:376.455000px;}
.y25{bottom:385.050000px;}
.y60{bottom:394.995000px;}
.y11{bottom:404.205000px;}
.y1{bottom:406.260000px;}
.y33{bottom:431.925000px;}
.y70{bottom:432.690000px;}
.y51{bottom:433.290000px;}
.y2d{bottom:435.600000px;}
.y2c{bottom:452.850000px;}
.y4d{bottom:455.580000px;}
.y2e{bottom:460.800000px;}
.y10{bottom:461.805000px;}
.y52{bottom:462.855000px;}
.y3f{bottom:478.875000px;}
.y48{bottom:482.910000px;}
.y8{bottom:484.020000px;}
.y6f{bottom:490.830000px;}
.y5f{bottom:508.425000px;}
.y3e{bottom:511.305000px;}
.y32{bottom:518.910000px;}
.yf{bottom:519.405000px;}
.y37{bottom:524.910000px;}
.y6e{bottom:534.060000px;}
.y7{bottom:535.890000px;}
.y59{bottom:539.385000px;}
.y4e{bottom:542.520000px;}
.ye{bottom:548.250000px;}
.y66{bottom:577.080000px;}
.y6d{bottom:577.260000px;}
.y40{bottom:581.370000px;}
.y6{bottom:587.730000px;}
.yd{bottom:605.850000px;}
.y5{bottom:639.570000px;}
.ya{bottom:695.955000px;}
.y6c{bottom:729.390000px;}
.h11{height:60.424102px;}
.h5{height:62.327813px;}
.h6{height:62.327845px;}
.h17{height:62.478000px;}
.h1e{height:69.086250px;}
.h1f{height:69.236437px;}
.h15{height:75.093750px;}
.h16{height:75.243937px;}
.h1c{height:77.466797px;}
.hc{height:77.570086px;}
.hd{height:81.101250px;}
.he{height:81.251437px;}
.h8{height:82.340508px;}
.h2{height:87.859687px;}
.h1b{height:88.009875px;}
.h10{height:92.224102px;}
.h18{height:92.865234px;}
.h1{height:99.874688px;}
.h7{height:100.024875px;}
.h19{height:103.389961px;}
.ha{height:112.640625px;}
.hb{height:112.790813px;}
.h1a{height:119.126813px;}
.h13{height:125.406562px;}
.h14{height:125.556750px;}
.h9{height:150.187500px;}
.h21{height:150.337688px;}
.h12{height:165.341250px;}
.h20{height:175.118625px;}
.h3{height:200.500313px;}
.h4{height:200.650500px;}
.hf{height:249.581250px;}
.h1d{height:338.072063px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2e{left:6.947979px;}
.x6{left:9.179979px;}
.x46{left:19.403979px;}
.x47{left:35.783979px;}
.xd{left:92.951979px;}
.x3{left:179.204979px;}
.x5{left:296.354979px;}
.x2d{left:297.719979px;}
.x45{left:298.829979px;}
.x7{left:302.609979px;}
.x48{left:304.634979px;}
.x2f{left:320.969979px;}
.x30{left:324.509979px;}
.x4{left:332.204979px;}
.x8{left:336.449979px;}
.x12{left:353.084979px;}
.x32{left:362.984979px;}
.x31{left:374.969979px;}
.x28{left:385.889979px;}
.x23{left:392.069979px;}
.x2{left:412.844979px;}
.x36{left:446.789979px;}
.x34{left:453.029979px;}
.x35{left:462.959979px;}
.x37{left:471.029979px;}
.x3e{left:486.794979px;}
.x16{left:503.204979px;}
.x1{left:506.129979px;}
.x14{left:508.784979px;}
.x17{left:518.504979px;}
.x15{left:528.584979px;}
.x3a{left:531.359979px;}
.xc{left:605.054979px;}
.x2b{left:628.379979px;}
.x2c{left:640.259979px;}
.x1a{left:672.839979px;}
.x19{left:673.919979px;}
.x11{left:681.734979px;}
.x18{left:682.919979px;}
.x24{left:755.564979px;}
.x38{left:808.169979px;}
.x3c{left:809.354979px;}
.x41{left:855.464979px;}
.x3f{left:856.904979px;}
.x9{left:871.889979px;}
.x40{left:876.164979px;}
.x21{left:879.089979px;}
.xa{left:905.729979px;}
.x43{left:920.129979px;}
.xb{left:925.889979px;}
.x22{left:940.604979px;}
.x27{left:944.309979px;}
.x29{left:948.089979px;}
.x20{left:955.439979px;}
.x44{left:974.159979px;}
.xf{left:1001.774979px;}
.x10{left:1035.614979px;}
.x1b{left:1049.609979px;}
.x25{left:1069.229979px;}
.x1c{left:1071.029979px;}
.x26{left:1116.284979px;}
.x3d{left:1125.749979px;}
.x2a{left:1162.874979px;}
.x39{left:1179.899979px;}
.x42{left:1237.709979px;}
.x1e{left:1258.229979px;}
.x13{left:1265.549979px;}
.x1d{left:1266.689979px;}
.x3b{left:1274.579979px;}
.x1f{left:1296.749979px;}
.xe{left:1408.244979px;}
.x33{left:1420.199979px;}
@media print{
.v3{vertical-align:-24.693333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.632000pt;}
.v2{vertical-align:28.266667pt;}
.v1{vertical-align:74.880000pt;}
.ls13{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.360533pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.230933pt;}
.ls1f{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.180267pt;}
.ls2{letter-spacing:-0.144533pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.097067pt;}
.ls16{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.033280pt;}
.ls10{letter-spacing:-0.023040pt;}
.ls1a{letter-spacing:-0.016640pt;}
.ls11{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.015360pt;}
.ls15{letter-spacing:0.023520pt;}
.ls3{letter-spacing:0.052213pt;}
.ls14{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.175467pt;}
.lsa{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.220267pt;}
.ls17{letter-spacing:0.256000pt;}
.lsf{letter-spacing:1.264640pt;}
.ls1b{letter-spacing:47.048960pt;}
.ls19{letter-spacing:47.155627pt;}
.ls18{letter-spacing:52.032000pt;}
.ls1c{letter-spacing:57.015040pt;}
.ls9{letter-spacing:86.720000pt;}
.ls6{letter-spacing:90.483200pt;}
.ls5{letter-spacing:90.528000pt;}
.lsb{letter-spacing:132.545280pt;}
.ws8{word-spacing:-47.540224pt;}
.ws9{word-spacing:-47.179691pt;}
.ws25{word-spacing:-35.619584pt;}
.ws1c{word-spacing:-35.584000pt;}
.ws27{word-spacing:-35.456000pt;}
.ws26{word-spacing:-35.420651pt;}
.ws24{word-spacing:-35.328000pt;}
.ws22{word-spacing:-29.712640pt;}
.wsb{word-spacing:-26.880000pt;}
.ws20{word-spacing:-26.723584pt;}
.wsa{word-spacing:-26.688000pt;}
.wsc{word-spacing:-26.496000pt;}
.wsd{word-spacing:-25.858432pt;}
.ws0{word-spacing:-23.663360pt;}
.ws21{word-spacing:-20.852224pt;}
.ws1e{word-spacing:-20.816640pt;}
.ws18{word-spacing:-20.142720pt;}
.ws11{word-spacing:-19.312427pt;}
.ws10{word-spacing:-19.250944pt;}
.ws14{word-spacing:-19.230720pt;}
.ws15{word-spacing:-19.215360pt;}
.wsf{word-spacing:-19.200000pt;}
.wse{word-spacing:-19.192320pt;}
.ws1f{word-spacing:-17.827584pt;}
.ws1b{word-spacing:-17.792000pt;}
.ws23{word-spacing:-16.271573pt;}
.ws7{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.536427pt;}
.ws2{word-spacing:-5.125333pt;}
.ws3{word-spacing:-4.531840pt;}
.ws4{word-spacing:-1.223467pt;}
.ws1{word-spacing:-0.351040pt;}
.ws5{word-spacing:0.000000pt;}
.ws19{word-spacing:72.971307pt;}
.ws1a{word-spacing:73.043211pt;}
.ws13{word-spacing:334.439253pt;}
.ws12{word-spacing:383.102293pt;}
.ws17{word-spacing:1737.013547pt;}
.ws16{word-spacing:1780.160213pt;}
.ws1d{word-spacing:2415.911253pt;}
._12{margin-left:-3409.905280pt;}
._11{margin-left:-1987.666176pt;}
._13{margin-left:-1654.578987pt;}
._10{margin-left:-1507.473067pt;}
._14{margin-left:-18.913664pt;}
._17{margin-left:-14.208000pt;}
._5{margin-left:-12.410880pt;}
._f{margin-left:-11.463339pt;}
._e{margin-left:-9.479936pt;}
._9{margin-left:-6.791040pt;}
._6{margin-left:-5.878187pt;}
._b{margin-left:-4.859136pt;}
._3{margin-left:-3.830400pt;}
._0{margin-left:-2.383360pt;}
._4{margin-left:-1.191253pt;}
._2{width:0.936320pt;}
._d{width:1.873237pt;}
._1{width:2.808960pt;}
._c{width:3.726720pt;}
._15{width:28.124544pt;}
._8{width:39.940011pt;}
._7{width:46.926080pt;}
._a{width:90.528000pt;}
._1b{width:232.714667pt;}
._1c{width:275.594667pt;}
._1a{width:303.903744pt;}
._18{width:382.218667pt;}
._19{width:411.146667pt;}
._16{width:1689.635456pt;}
.fs4{font-size:53.120000pt;}
.fsf{font-size:53.248000pt;}
.fs12{font-size:58.880000pt;}
.fs13{font-size:59.008000pt;}
.fsd{font-size:64.000000pt;}
.fse{font-size:64.128000pt;}
.fs9{font-size:69.120000pt;}
.fsa{font-size:69.248000pt;}
.fs1{font-size:74.880000pt;}
.fs10{font-size:75.008000pt;}
.fs0{font-size:85.120000pt;}
.fs5{font-size:85.248000pt;}
.fs7{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fsb{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs6{font-size:128.000000pt;}
.fs15{font-size:128.128000pt;}
.fs14{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fs3{font-size:171.008000pt;}
.fs11{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:14.208000pt;}
.y9{bottom:14.240000pt;}
.y3d{bottom:20.896000pt;}
.y21{bottom:21.504000pt;}
.y3c{bottom:52.192000pt;}
.y55{bottom:57.408000pt;}
.y36{bottom:59.968000pt;}
.y3b{bottom:68.224000pt;}
.y38{bottom:69.472000pt;}
.y35{bottom:79.168000pt;}
.y47{bottom:81.344000pt;}
.y22{bottom:82.976000pt;}
.y17{bottom:91.136000pt;}
.y5a{bottom:115.392000pt;}
.y5e{bottom:115.424000pt;}
.y16{bottom:116.736000pt;}
.y46{bottom:116.864000pt;}
.y65{bottom:124.512000pt;}
.y45{bottom:152.386667pt;}
.y1f{bottom:155.586667pt;}
.y64{bottom:156.666667pt;}
.y4c{bottom:166.466667pt;}
.y15{bottom:167.973333pt;}
.y1e{bottom:184.386667pt;}
.y58{bottom:186.586667pt;}
.y30{bottom:186.720000pt;}
.y44{bottom:187.773333pt;}
.y63{bottom:188.986667pt;}
.y18{bottom:193.573333pt;}
.y2f{bottom:209.120000pt;}
.y31{bottom:209.666667pt;}
.yc{bottom:210.533333pt;}
.y4b{bottom:211.906667pt;}
.y1d{bottom:213.213333pt;}
.y14{bottom:219.173333pt;}
.y43{bottom:223.293333pt;}
.y62{bottom:228.346667pt;}
.y73{bottom:229.373333pt;}
.y20{bottom:233.920000pt;}
.y5d{bottom:237.626667pt;}
.y1c{bottom:242.013333pt;}
.y13{bottom:244.773333pt;}
.y6b{bottom:246.946667pt;}
.y4{bottom:247.013333pt;}
.y57{bottom:247.066667pt;}
.y42{bottom:252.093333pt;}
.y4a{bottom:257.186667pt;}
.y53{bottom:261.466667pt;}
.y4f{bottom:264.093333pt;}
.y6a{bottom:264.573333pt;}
.y29{bottom:267.386667pt;}
.y56{bottom:269.466667pt;}
.y5c{bottom:269.666667pt;}
.y1b{bottom:270.813333pt;}
.y72{bottom:281.053333pt;}
.y69{bottom:282.173333pt;}
.y3{bottom:283.333333pt;}
.y28{bottom:286.106667pt;}
.y61{bottom:289.826667pt;}
.y24{bottom:295.453333pt;}
.y2b{bottom:295.586667pt;}
.y1a{bottom:299.613333pt;}
.y5b{bottom:301.666667pt;}
.y27{bottom:304.826667pt;}
.y34{bottom:306.493333pt;}
.y12{bottom:308.066667pt;}
.y68{bottom:309.213333pt;}
.y67{bottom:309.253333pt;}
.y54{bottom:313.186667pt;}
.y23{bottom:314.173333pt;}
.y2a{bottom:314.306667pt;}
.y39{bottom:315.333333pt;}
.y50{bottom:315.773333pt;}
.y41{bottom:318.013333pt;}
.y19{bottom:319.226667pt;}
.y2{bottom:322.213333pt;}
.y26{bottom:323.546667pt;}
.y49{bottom:323.680000pt;}
.y71{bottom:332.933333pt;}
.y3a{bottom:334.626667pt;}
.y25{bottom:342.266667pt;}
.y60{bottom:351.106667pt;}
.y11{bottom:359.293333pt;}
.y1{bottom:361.120000pt;}
.y33{bottom:383.933333pt;}
.y70{bottom:384.613333pt;}
.y51{bottom:385.146667pt;}
.y2d{bottom:387.200000pt;}
.y2c{bottom:402.533333pt;}
.y4d{bottom:404.960000pt;}
.y2e{bottom:409.600000pt;}
.y10{bottom:410.493333pt;}
.y52{bottom:411.426667pt;}
.y3f{bottom:425.666667pt;}
.y48{bottom:429.253333pt;}
.y8{bottom:430.240000pt;}
.y6f{bottom:436.293333pt;}
.y5f{bottom:451.933333pt;}
.y3e{bottom:454.493333pt;}
.y32{bottom:461.253333pt;}
.yf{bottom:461.693333pt;}
.y37{bottom:466.586667pt;}
.y6e{bottom:474.720000pt;}
.y7{bottom:476.346667pt;}
.y59{bottom:479.453333pt;}
.y4e{bottom:482.240000pt;}
.ye{bottom:487.333333pt;}
.y66{bottom:512.960000pt;}
.y6d{bottom:513.120000pt;}
.y40{bottom:516.773333pt;}
.y6{bottom:522.426667pt;}
.yd{bottom:538.533333pt;}
.y5{bottom:568.506667pt;}
.ya{bottom:618.626667pt;}
.y6c{bottom:648.346667pt;}
.h11{height:53.710312pt;}
.h5{height:55.402500pt;}
.h6{height:55.402529pt;}
.h17{height:55.536000pt;}
.h1e{height:61.410000pt;}
.h1f{height:61.543500pt;}
.h15{height:66.750000pt;}
.h16{height:66.883500pt;}
.h1c{height:68.859375pt;}
.hc{height:68.951188pt;}
.hd{height:72.090000pt;}
.he{height:72.223500pt;}
.h8{height:73.191563pt;}
.h2{height:78.097500pt;}
.h1b{height:78.231000pt;}
.h10{height:81.976979pt;}
.h18{height:82.546875pt;}
.h1{height:88.777500pt;}
.h7{height:88.911000pt;}
.h19{height:91.902187pt;}
.ha{height:100.125000pt;}
.hb{height:100.258500pt;}
.h1a{height:105.890500pt;}
.h13{height:111.472500pt;}
.h14{height:111.606000pt;}
.h9{height:133.500000pt;}
.h21{height:133.633500pt;}
.h12{height:146.970000pt;}
.h20{height:155.661000pt;}
.h3{height:178.222500pt;}
.h4{height:178.356000pt;}
.hf{height:221.850000pt;}
.h1d{height:300.508500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.175981pt;}
.x6{left:8.159981pt;}
.x46{left:17.247981pt;}
.x47{left:31.807981pt;}
.xd{left:82.623981pt;}
.x3{left:159.293314pt;}
.x5{left:263.426648pt;}
.x2d{left:264.639981pt;}
.x45{left:265.626648pt;}
.x7{left:268.986648pt;}
.x48{left:270.786648pt;}
.x2f{left:285.306648pt;}
.x30{left:288.453314pt;}
.x4{left:295.293314pt;}
.x8{left:299.066648pt;}
.x12{left:313.853314pt;}
.x32{left:322.653314pt;}
.x31{left:333.306648pt;}
.x28{left:343.013314pt;}
.x23{left:348.506648pt;}
.x2{left:366.973314pt;}
.x36{left:397.146648pt;}
.x34{left:402.693314pt;}
.x35{left:411.519981pt;}
.x37{left:418.693314pt;}
.x3e{left:432.706648pt;}
.x16{left:447.293314pt;}
.x1{left:449.893314pt;}
.x14{left:452.253314pt;}
.x17{left:460.893314pt;}
.x15{left:469.853314pt;}
.x3a{left:472.319981pt;}
.xc{left:537.826648pt;}
.x2b{left:558.559981pt;}
.x2c{left:569.119981pt;}
.x1a{left:598.079981pt;}
.x19{left:599.039981pt;}
.x11{left:605.986648pt;}
.x18{left:607.039981pt;}
.x24{left:671.613314pt;}
.x38{left:718.373314pt;}
.x3c{left:719.426648pt;}
.x41{left:760.413314pt;}
.x3f{left:761.693314pt;}
.x9{left:775.013314pt;}
.x40{left:778.813314pt;}
.x21{left:781.413314pt;}
.xa{left:805.093314pt;}
.x43{left:817.893314pt;}
.xb{left:823.013314pt;}
.x22{left:836.093314pt;}
.x27{left:839.386648pt;}
.x29{left:842.746648pt;}
.x20{left:849.279981pt;}
.x44{left:865.919981pt;}
.xf{left:890.466648pt;}
.x10{left:920.546648pt;}
.x1b{left:932.986648pt;}
.x25{left:950.426648pt;}
.x1c{left:952.026648pt;}
.x26{left:992.253314pt;}
.x3d{left:1000.666648pt;}
.x2a{left:1033.666648pt;}
.x39{left:1048.799981pt;}
.x42{left:1100.186648pt;}
.x1e{left:1118.426648pt;}
.x13{left:1124.933314pt;}
.x1d{left:1125.946648pt;}
.x3b{left:1132.959981pt;}
.x1f{left:1152.666648pt;}
.xe{left:1251.773314pt;}
.x33{left:1262.399981pt;}
}




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