
    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_c76dc1ad4172d85efadeae45.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_4f48a443067de83a88e50f5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_e34a0ea8cdf08276ad85de7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853516;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.949219;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_69ab60e1b68feed0468c8ab4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929199;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_3537918be5f90ea687f2158e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_f9c8072d843a2512932ae121.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_a7c90e511d2500ad8ddc7145.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eeb55ef915bd7840fdc0c45a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8f0768129c7096c9f21f457a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_79d064759d0fd5090df2fb63.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.995605;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:ffd;src:url('chunks/assets/font_0e4d5d40cbc27ed975547836.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995605;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:ffe;src:url('chunks/assets/font_c7d72d238628515f65e6d8ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.030273;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:fff;src:url('chunks/assets/font_62fa8c7909d0d5b0d2382e50.woff2')format("woff");}.fff{font-family:fff;line-height:1.090332;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:ff10;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.231600px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.378000px;}
.ls2{letter-spacing:0.488160px;}
.ls8{letter-spacing:0.488400px;}
.lsa{letter-spacing:0.792000px;}
.lse{letter-spacing:54.840000px;}
.lsb{letter-spacing:197.976000px;}
.ls0{letter-spacing:202.529280px;}
.ls1{letter-spacing:202.733280px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws7{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.439280px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-12.643080px;}
.ws1{word-spacing:-12.619680px;}
.ws6{word-spacing:-12.240000px;}
.ws5{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.899680px;}
.ws4{word-spacing:-9.437760px;}
.ws3{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
._23{margin-left:-9.072000px;}
._24{margin-left:-7.130880px;}
._6{margin-left:-6.048960px;}
._5{margin-left:-4.633200px;}
._2{margin-left:-2.735040px;}
._0{margin-left:-1.149120px;}
._1{width:1.423200px;}
._3{width:2.520240px;}
._a{width:3.688800px;}
._9{width:5.616000px;}
._b{width:6.696000px;}
._d{width:7.776000px;}
._1a{width:8.781120px;}
._8{width:9.792000px;}
._7{width:10.872000px;}
._18{width:12.672000px;}
._c{width:14.184000px;}
._14{width:15.552000px;}
._13{width:16.864800px;}
._17{width:19.437120px;}
._1b{width:21.173760px;}
._1c{width:22.752000px;}
._f{width:24.480000px;}
._16{width:25.789920px;}
._e{width:26.928000px;}
._10{width:28.080000px;}
._12{width:29.376000px;}
._11{width:30.384000px;}
._21{width:32.808000px;}
._1d{width:34.560000px;}
._22{width:35.568000px;}
._15{width:37.152960px;}
._19{width:38.663040px;}
._4{width:66.267120px;}
._1e{width:179.976000px;}
._1f{width:198.000000px;}
._20{width:846.156000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.960000px;}
.y85{bottom:4.680000px;}
.y9f{bottom:4.860000px;}
.y2{bottom:5.040000px;}
.y83{bottom:5.220000px;}
.y88{bottom:5.400000px;}
.ya6{bottom:6.120000px;}
.y66{bottom:6.660000px;}
.ye3{bottom:7.740000px;}
.ye1{bottom:8.100000px;}
.y91{bottom:8.640000px;}
.yab{bottom:9.720000px;}
.yb1{bottom:10.260000px;}
.ye5{bottom:10.980000px;}
.ya3{bottom:12.285000px;}
.y6f{bottom:14.220000px;}
.y6a{bottom:14.400000px;}
.yca{bottom:14.760000px;}
.y9d{bottom:15.120000px;}
.yc2{bottom:15.300000px;}
.y81{bottom:15.660000px;}
.y89{bottom:15.840000px;}
.yc4{bottom:16.200000px;}
.ya7{bottom:16.380000px;}
.y73{bottom:17.100000px;}
.yc7{bottom:17.640000px;}
.yde{bottom:17.820000px;}
.ycc{bottom:18.180000px;}
.ya9{bottom:20.160000px;}
.yae{bottom:20.520000px;}
.ya1{bottom:22.725000px;}
.y8f{bottom:23.580000px;}
.y5{bottom:24.480000px;}
.y68{bottom:24.660000px;}
.yc9{bottom:24.840000px;}
.yc1{bottom:25.380000px;}
.y9e{bottom:25.560000px;}
.y82{bottom:25.920000px;}
.y87{bottom:26.100000px;}
.ya5{bottom:26.820000px;}
.ybf{bottom:27.000000px;}
.y65{bottom:27.360000px;}
.y9{bottom:29.700000px;}
.yaa{bottom:30.420000px;}
.yaf{bottom:30.960000px;}
.ya2{bottom:32.985000px;}
.y6c{bottom:35.100000px;}
.yad{bottom:41.220000px;}
.ye{bottom:44.100000px;}
.y4{bottom:48.990000px;}
.y8{bottom:49.350000px;}
.yb0{bottom:51.660000px;}
.yd{bottom:60.660000px;}
.y7{bottom:69.150000px;}
.yc{bottom:76.140000px;}
.y3{bottom:80.670000px;}
.y6{bottom:88.950000px;}
.yb{bottom:91.656000px;}
.y94{bottom:112.896000px;}
.y30{bottom:123.156000px;}
.yf9{bottom:123.336000px;}
.y93{bottom:130.356000px;}
.y9b{bottom:133.236000px;}
.y5e{bottom:140.436000px;}
.y79{bottom:142.056000px;}
.y10e{bottom:144.576000px;}
.y4e{bottom:145.296000px;}
.ydc{bottom:153.750000px;}
.y2f{bottom:154.110000px;}
.yf8{bottom:154.470000px;}
.y92{bottom:160.950000px;}
.y9a{bottom:164.370000px;}
.y5d{bottom:171.390000px;}
.y78{bottom:173.010000px;}
.y10d{bottom:175.350000px;}
.y4d{bottom:176.430000px;}
.ydb{bottom:184.710000px;}
.y2e{bottom:185.070000px;}
.yf7{bottom:185.430000px;}
.y90{bottom:191.730000px;}
.y99{bottom:195.330000px;}
.y5c{bottom:202.530000px;}
.y77{bottom:204.150000px;}
.y4c{bottom:207.390000px;}
.yda{bottom:215.850000px;}
.y2d{bottom:216.210000px;}
.yf6{bottom:216.570000px;}
.y10c{bottom:216.930000px;}
.y8e{bottom:222.330000px;}
.y98{bottom:226.470000px;}
.y4b{bottom:238.530000px;}
.y5b{bottom:245.550000px;}
.yd9{bottom:246.810000px;}
.y2c{bottom:247.170000px;}
.yf5{bottom:247.530000px;}
.y10b{bottom:247.890000px;}
.y97{bottom:257.430000px;}
.ybd{bottom:264.450000px;}
.y76{bottom:264.630000px;}
.y4a{bottom:269.490000px;}
.y2b{bottom:278.310000px;}
.yf4{bottom:278.670000px;}
.y5a{bottom:288.570000px;}
.y10a{bottom:289.290000px;}
.yd8{bottom:290.010000px;}
.y49{bottom:300.630000px;}
.y75{bottom:306.750000px;}
.ybc{bottom:307.470000px;}
.y8d{bottom:309.270000px;}
.y2a{bottom:312.690000px;}
.y59{bottom:319.530000px;}
.y109{bottom:320.250000px;}
.yf3{bottom:321.690000px;}
.y48{bottom:331.590000px;}
.yd7{bottom:333.030000px;}
.ybb{bottom:338.430000px;}
.y58{bottom:350.670000px;}
.y8c{bottom:352.290000px;}
.yf2{bottom:352.650000px;}
.y29{bottom:355.755000px;}
.y108{bottom:361.695000px;}
.y47{bottom:362.595000px;}
.yd6{bottom:364.035000px;}
.y74{bottom:369.615000px;}
.y8b{bottom:369.795000px;}
.y57{bottom:381.675000px;}
.yf1{bottom:383.835000px;}
.y107{bottom:392.655000px;}
.y46{bottom:393.735000px;}
.yd5{bottom:395.175000px;}
.y28{bottom:398.775000px;}
.yba{bottom:400.575000px;}
.y72{bottom:411.735000px;}
.y56{bottom:412.815000px;}
.y8a{bottom:414.795000px;}
.y45{bottom:424.695000px;}
.yd4{bottom:426.135000px;}
.y27{bottom:429.735000px;}
.yb9{bottom:431.715000px;}
.y106{bottom:434.055000px;}
.y55{bottom:443.775000px;}
.yf0{bottom:445.935000px;}
.y44{bottom:455.835000px;}
.yd3{bottom:457.275000px;}
.y86{bottom:459.795000px;}
.y26{bottom:460.875000px;}
.yb8{bottom:462.675000px;}
.y105{bottom:465.195000px;}
.y54{bottom:474.915000px;}
.y71{bottom:485.715000px;}
.y43{bottom:486.795000px;}
.yd2{bottom:488.235000px;}
.yef{bottom:488.955000px;}
.y25{bottom:491.835000px;}
.yb7{bottom:493.815000px;}
.y104{bottom:496.155000px;}
.y84{bottom:504.795000px;}
.y53{bottom:505.875000px;}
.y42{bottom:517.935000px;}
.yd1{bottom:519.375000px;}
.yee{bottom:519.915000px;}
.y24{bottom:522.975000px;}
.yb6{bottom:524.775000px;}
.y80{bottom:527.835000px;}
.y70{bottom:528.735000px;}
.y52{bottom:537.015000px;}
.y103{bottom:537.555000px;}
.y6e{bottom:546.195000px;}
.y41{bottom:548.895000px;}
.yd0{bottom:550.335000px;}
.yed{bottom:551.055000px;}
.y23{bottom:553.935000px;}
.yb5{bottom:555.915000px;}
.y96{bottom:560.955000px;}
.y102{bottom:568.515000px;}
.y40{bottom:580.035000px;}
.ycf{bottom:581.475000px;}
.yec{bottom:582.015000px;}
.y22{bottom:585.075000px;}
.yb4{bottom:586.875000px;}
.y6d{bottom:588.315000px;}
.y95{bottom:592.095000px;}
.y7f{bottom:599.115000px;}
.y101{bottom:609.915000px;}
.y3f{bottom:610.995000px;}
.yce{bottom:612.435000px;}
.yeb{bottom:613.155000px;}
.y21{bottom:616.065000px;}
.y51{bottom:623.085000px;}
.yb3{bottom:629.925000px;}
.y6b{bottom:630.465000px;}
.y100{bottom:640.905000px;}
.y7e{bottom:642.165000px;}
.yea{bottom:644.145000px;}
.y20{bottom:647.205000px;}
.y3e{bottom:654.225000px;}
.ycd{bottom:655.485000px;}
.yb2{bottom:672.945000px;}
.y7d{bottom:673.125000px;}
.ye9{bottom:675.285000px;}
.y1f{bottom:678.165000px;}
.yff{bottom:682.305000px;}
.y3d{bottom:685.185000px;}
.yac{bottom:690.585000px;}
.y67{bottom:693.285000px;}
.y7c{bottom:704.265000px;}
.ye8{bottom:706.245000px;}
.y1e{bottom:709.305000px;}
.yfe{bottom:713.265000px;}
.ycb{bottom:713.985000px;}
.y3c{bottom:716.145000px;}
.y7b{bottom:735.225000px;}
.y64{bottom:735.585000px;}
.y1d{bottom:743.685000px;}
.y3b{bottom:747.285000px;}
.ye7{bottom:749.445000px;}
.yfd{bottom:754.665000px;}
.yc8{bottom:762.045000px;}
.ya8{bottom:766.185000px;}
.y7a{bottom:766.365000px;}
.ye6{bottom:766.905000px;}
.y1c{bottom:777.885000px;}
.y3a{bottom:778.245000px;}
.yfc{bottom:785.625000px;}
.ye4{bottom:793.905000px;}
.y1b{bottom:798.585000px;}
.yc6{bottom:803.085000px;}
.y39{bottom:809.385000px;}
.y1a{bottom:819.285000px;}
.ya4{bottom:820.185000px;}
.yfb{bottom:827.205000px;}
.ye2{bottom:827.565000px;}
.y19{bottom:839.985000px;}
.y38{bottom:840.345000px;}
.yc5{bottom:849.705000px;}
.y63{bottom:852.405000px;}
.ye0{bottom:854.565000px;}
.yfa{bottom:857.985000px;}
.y18{bottom:860.685000px;}
.ya0{bottom:866.625000px;}
.y37{bottom:871.485000px;}
.y17{bottom:881.430000px;}
.ydf{bottom:882.330000px;}
.y62{bottom:883.590000px;}
.yc3{bottom:891.870000px;}
.y16{bottom:902.130000px;}
.y36{bottom:902.490000px;}
.y61{bottom:914.550000px;}
.ydd{bottom:922.110000px;}
.y15{bottom:922.830000px;}
.y9c{bottom:925.530000px;}
.y35{bottom:933.630000px;}
.yc0{bottom:935.790000px;}
.y14{bottom:943.530000px;}
.y60{bottom:945.690000px;}
.y112{bottom:954.690000px;}
.y13{bottom:964.230000px;}
.y34{bottom:964.590000px;}
.y5f{bottom:976.650000px;}
.ybe{bottom:977.910000px;}
.y12{bottom:984.930000px;}
.y50{bottom:995.730000px;}
.y111{bottom:995.910000px;}
.y11{bottom:1005.630000px;}
.y33{bottom:1007.790000px;}
.y4f{bottom:1026.690000px;}
.y110{bottom:1037.490000px;}
.y32{bottom:1038.750000px;}
.y10{bottom:1040.910000px;}
.yf{bottom:1066.830000px;}
.y10f{bottom:1068.270000px;}
.y31{bottom:1069.710000px;}
.ya{bottom:1091.130000px;}
.y1{bottom:1106.610000px;}
.h13{height:22.140000px;}
.h24{height:26.280000px;}
.h23{height:27.036000px;}
.h16{height:29.880000px;}
.h17{height:30.060000px;}
.h25{height:32.940000px;}
.h22{height:39.060000px;}
.h1f{height:40.320000px;}
.h7{height:40.579102px;}
.he{height:41.400000px;}
.h10{height:41.436000px;}
.h18{height:43.200000px;}
.h12{height:44.100000px;}
.h14{height:44.280000px;}
.h1a{height:45.720000px;}
.h1e{height:45.900000px;}
.h21{height:46.620000px;}
.hd{height:46.800000px;}
.h20{height:47.160000px;}
.h8{height:50.273438px;}
.hb{height:50.800781px;}
.h6{height:51.793945px;}
.h26{height:52.417969px;}
.h1b{height:53.100000px;}
.h9{height:53.709961px;}
.hc{height:54.246094px;}
.h5{height:55.987031px;}
.h3{height:57.410156px;}
.h19{height:57.996000px;}
.ha{height:59.436914px;}
.h15{height:59.940000px;}
.hf{height:62.100000px;}
.h11{height:62.136000px;}
.h1d{height:64.800000px;}
.h1c{height:74.700000px;}
.h4{height:82.995117px;}
.h2{height:103.176000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:71.640000px;}
.w18{width:71.676000px;}
.w7{width:72.756000px;}
.w15{width:94.176000px;}
.w14{width:107.676000px;}
.wb{width:112.176000px;}
.wa{width:113.220000px;}
.w11{width:113.796000px;}
.w2{width:123.480000px;}
.we{width:133.956000px;}
.wc{width:137.736000px;}
.w9{width:141.516000px;}
.w6{width:141.876000px;}
.wd{width:142.776000px;}
.w8{width:148.140000px;}
.w4{width:159.690000px;}
.w1b{width:163.650000px;}
.w12{width:174.990000px;}
.w10{width:175.530000px;}
.wf{width:186.870000px;}
.w1c{width:187.230000px;}
.w16{width:188.670000px;}
.w17{width:204.690000px;}
.w1a{width:223.590000px;}
.w13{width:282.450000px;}
.w3{width:393.945000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x24{left:9.180000px;}
.x2b{left:10.620000px;}
.x3f{left:12.780000px;}
.x17{left:14.580000px;}
.x31{left:15.840000px;}
.x1a{left:17.460000px;}
.x2c{left:21.420000px;}
.x21{left:22.500000px;}
.x25{left:23.580000px;}
.x1d{left:25.200000px;}
.x33{left:27.720000px;}
.x44{left:29.160000px;}
.x5{left:30.600000px;}
.x35{left:34.425000px;}
.x1c{left:35.865000px;}
.x15{left:36.900000px;}
.x19{left:38.160000px;}
.x28{left:40.140000px;}
.x3c{left:42.660000px;}
.x39{left:43.950000px;}
.x26{left:47.190000px;}
.x7{left:48.420000px;}
.x6{left:51.300000px;}
.x27{left:52.560000px;}
.x3d{left:57.234000px;}
.x1e{left:58.500000px;}
.x4a{left:61.560000px;}
.x48{left:65.700000px;}
.x4b{left:66.780000px;}
.x34{left:70.965000px;}
.x3e{left:71.994000px;}
.x2e{left:73.620000px;}
.x40{left:77.940000px;}
.x49{left:84.465000px;}
.x37{left:88.914000px;}
.x41{left:94.134000px;}
.x1{left:108.036000px;}
.x8{left:135.035987px;}
.x43{left:160.230000px;}
.x12{left:162.029987px;}
.x14{left:193.890000px;}
.x2a{left:214.410000px;}
.x3{left:231.510000px;}
.x42{left:258.374987px;}
.x20{left:264.675000px;}
.x11{left:269.174987px;}
.x4d{left:270.795000px;}
.xb{left:281.414987px;}
.x1f{left:282.854987px;}
.x13{left:287.354987px;}
.x29{left:292.394987px;}
.x36{left:297.254987px;}
.xf{left:310.214987px;}
.x2f{left:330.914987px;}
.x4c{left:333.254987px;}
.x16{left:336.135000px;}
.xc{left:354.674987px;}
.x10{left:357.014987px;}
.x45{left:365.295000px;}
.x22{left:378.255000px;}
.x30{left:389.955000px;}
.x38{left:391.575000px;}
.xe{left:398.234987px;}
.xa{left:406.334987px;}
.x9{left:407.414987px;}
.x18{left:409.245000px;}
.x4e{left:435.165000px;}
.x46{left:437.325000px;}
.xd{left:446.504987px;}
.x23{left:490.785000px;}
.x2d{left:491.865000px;}
.x3a{left:499.605000px;}
.x32{left:504.465000px;}
.x47{left:509.325000px;}
.x1b{left:557.745000px;}
.x3b{left:594.150000px;}
.x4{left:625.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.205867pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.336000pt;}
.ls2{letter-spacing:0.433920pt;}
.ls8{letter-spacing:0.434133pt;}
.lsa{letter-spacing:0.704000pt;}
.lse{letter-spacing:48.746667pt;}
.lsb{letter-spacing:175.978667pt;}
.ls0{letter-spacing:180.026027pt;}
.ls1{letter-spacing:180.207360pt;}
.wsb{word-spacing:-64.000000pt;}
.ws7{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.279360pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-11.238293pt;}
.ws1{word-spacing:-11.217493pt;}
.ws6{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.577493pt;}
.ws4{word-spacing:-8.389120pt;}
.ws3{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
._23{margin-left:-8.064000pt;}
._24{margin-left:-6.338560pt;}
._6{margin-left:-5.376853pt;}
._5{margin-left:-4.118400pt;}
._2{margin-left:-2.431147pt;}
._0{margin-left:-1.021440pt;}
._1{width:1.265067pt;}
._3{width:2.240213pt;}
._a{width:3.278933pt;}
._9{width:4.992000pt;}
._b{width:5.952000pt;}
._d{width:6.912000pt;}
._1a{width:7.805440pt;}
._8{width:8.704000pt;}
._7{width:9.664000pt;}
._18{width:11.264000pt;}
._c{width:12.608000pt;}
._14{width:13.824000pt;}
._13{width:14.990933pt;}
._17{width:17.277440pt;}
._1b{width:18.821120pt;}
._1c{width:20.224000pt;}
._f{width:21.760000pt;}
._16{width:22.924373pt;}
._e{width:23.936000pt;}
._10{width:24.960000pt;}
._12{width:26.112000pt;}
._11{width:27.008000pt;}
._21{width:29.162667pt;}
._1d{width:30.720000pt;}
._22{width:31.616000pt;}
._15{width:33.024853pt;}
._19{width:34.367147pt;}
._4{width:58.904107pt;}
._1e{width:159.978667pt;}
._1f{width:176.000000pt;}
._20{width:752.138667pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:3.520000pt;}
.y85{bottom:4.160000pt;}
.y9f{bottom:4.320000pt;}
.y2{bottom:4.480000pt;}
.y83{bottom:4.640000pt;}
.y88{bottom:4.800000pt;}
.ya6{bottom:5.440000pt;}
.y66{bottom:5.920000pt;}
.ye3{bottom:6.880000pt;}
.ye1{bottom:7.200000pt;}
.y91{bottom:7.680000pt;}
.yab{bottom:8.640000pt;}
.yb1{bottom:9.120000pt;}
.ye5{bottom:9.760000pt;}
.ya3{bottom:10.920000pt;}
.y6f{bottom:12.640000pt;}
.y6a{bottom:12.800000pt;}
.yca{bottom:13.120000pt;}
.y9d{bottom:13.440000pt;}
.yc2{bottom:13.600000pt;}
.y81{bottom:13.920000pt;}
.y89{bottom:14.080000pt;}
.yc4{bottom:14.400000pt;}
.ya7{bottom:14.560000pt;}
.y73{bottom:15.200000pt;}
.yc7{bottom:15.680000pt;}
.yde{bottom:15.840000pt;}
.ycc{bottom:16.160000pt;}
.ya9{bottom:17.920000pt;}
.yae{bottom:18.240000pt;}
.ya1{bottom:20.200000pt;}
.y8f{bottom:20.960000pt;}
.y5{bottom:21.760000pt;}
.y68{bottom:21.920000pt;}
.yc9{bottom:22.080000pt;}
.yc1{bottom:22.560000pt;}
.y9e{bottom:22.720000pt;}
.y82{bottom:23.040000pt;}
.y87{bottom:23.200000pt;}
.ya5{bottom:23.840000pt;}
.ybf{bottom:24.000000pt;}
.y65{bottom:24.320000pt;}
.y9{bottom:26.400000pt;}
.yaa{bottom:27.040000pt;}
.yaf{bottom:27.520000pt;}
.ya2{bottom:29.320000pt;}
.y6c{bottom:31.200000pt;}
.yad{bottom:36.640000pt;}
.ye{bottom:39.200000pt;}
.y4{bottom:43.546667pt;}
.y8{bottom:43.866667pt;}
.yb0{bottom:45.920000pt;}
.yd{bottom:53.920000pt;}
.y7{bottom:61.466667pt;}
.yc{bottom:67.680000pt;}
.y3{bottom:71.706667pt;}
.y6{bottom:79.066667pt;}
.yb{bottom:81.472000pt;}
.y94{bottom:100.352000pt;}
.y30{bottom:109.472000pt;}
.yf9{bottom:109.632000pt;}
.y93{bottom:115.872000pt;}
.y9b{bottom:118.432000pt;}
.y5e{bottom:124.832000pt;}
.y79{bottom:126.272000pt;}
.y10e{bottom:128.512000pt;}
.y4e{bottom:129.152000pt;}
.ydc{bottom:136.666667pt;}
.y2f{bottom:136.986667pt;}
.yf8{bottom:137.306667pt;}
.y92{bottom:143.066667pt;}
.y9a{bottom:146.106667pt;}
.y5d{bottom:152.346667pt;}
.y78{bottom:153.786667pt;}
.y10d{bottom:155.866667pt;}
.y4d{bottom:156.826667pt;}
.ydb{bottom:164.186667pt;}
.y2e{bottom:164.506667pt;}
.yf7{bottom:164.826667pt;}
.y90{bottom:170.426667pt;}
.y99{bottom:173.626667pt;}
.y5c{bottom:180.026667pt;}
.y77{bottom:181.466667pt;}
.y4c{bottom:184.346667pt;}
.yda{bottom:191.866667pt;}
.y2d{bottom:192.186667pt;}
.yf6{bottom:192.506667pt;}
.y10c{bottom:192.826667pt;}
.y8e{bottom:197.626667pt;}
.y98{bottom:201.306667pt;}
.y4b{bottom:212.026667pt;}
.y5b{bottom:218.266667pt;}
.yd9{bottom:219.386667pt;}
.y2c{bottom:219.706667pt;}
.yf5{bottom:220.026667pt;}
.y10b{bottom:220.346667pt;}
.y97{bottom:228.826667pt;}
.ybd{bottom:235.066667pt;}
.y76{bottom:235.226667pt;}
.y4a{bottom:239.546667pt;}
.y2b{bottom:247.386667pt;}
.yf4{bottom:247.706667pt;}
.y5a{bottom:256.506667pt;}
.y10a{bottom:257.146667pt;}
.yd8{bottom:257.786667pt;}
.y49{bottom:267.226667pt;}
.y75{bottom:272.666667pt;}
.ybc{bottom:273.306667pt;}
.y8d{bottom:274.906667pt;}
.y2a{bottom:277.946667pt;}
.y59{bottom:284.026667pt;}
.y109{bottom:284.666667pt;}
.yf3{bottom:285.946667pt;}
.y48{bottom:294.746667pt;}
.yd7{bottom:296.026667pt;}
.ybb{bottom:300.826667pt;}
.y58{bottom:311.706667pt;}
.y8c{bottom:313.146667pt;}
.yf2{bottom:313.466667pt;}
.y29{bottom:316.226667pt;}
.y108{bottom:321.506667pt;}
.y47{bottom:322.306667pt;}
.yd6{bottom:323.586667pt;}
.y74{bottom:328.546667pt;}
.y8b{bottom:328.706667pt;}
.y57{bottom:339.266667pt;}
.yf1{bottom:341.186667pt;}
.y107{bottom:349.026667pt;}
.y46{bottom:349.986667pt;}
.yd5{bottom:351.266667pt;}
.y28{bottom:354.466667pt;}
.yba{bottom:356.066667pt;}
.y72{bottom:365.986667pt;}
.y56{bottom:366.946667pt;}
.y8a{bottom:368.706667pt;}
.y45{bottom:377.506667pt;}
.yd4{bottom:378.786667pt;}
.y27{bottom:381.986667pt;}
.yb9{bottom:383.746667pt;}
.y106{bottom:385.826667pt;}
.y55{bottom:394.466667pt;}
.yf0{bottom:396.386667pt;}
.y44{bottom:405.186667pt;}
.yd3{bottom:406.466667pt;}
.y86{bottom:408.706667pt;}
.y26{bottom:409.666667pt;}
.yb8{bottom:411.266667pt;}
.y105{bottom:413.506667pt;}
.y54{bottom:422.146667pt;}
.y71{bottom:431.746667pt;}
.y43{bottom:432.706667pt;}
.yd2{bottom:433.986667pt;}
.yef{bottom:434.626667pt;}
.y25{bottom:437.186667pt;}
.yb7{bottom:438.946667pt;}
.y104{bottom:441.026667pt;}
.y84{bottom:448.706667pt;}
.y53{bottom:449.666667pt;}
.y42{bottom:460.386667pt;}
.yd1{bottom:461.666667pt;}
.yee{bottom:462.146667pt;}
.y24{bottom:464.866667pt;}
.yb6{bottom:466.466667pt;}
.y80{bottom:469.186667pt;}
.y70{bottom:469.986667pt;}
.y52{bottom:477.346667pt;}
.y103{bottom:477.826667pt;}
.y6e{bottom:485.506667pt;}
.y41{bottom:487.906667pt;}
.yd0{bottom:489.186667pt;}
.yed{bottom:489.826667pt;}
.y23{bottom:492.386667pt;}
.yb5{bottom:494.146667pt;}
.y96{bottom:498.626667pt;}
.y102{bottom:505.346667pt;}
.y40{bottom:515.586667pt;}
.ycf{bottom:516.866667pt;}
.yec{bottom:517.346667pt;}
.y22{bottom:520.066667pt;}
.yb4{bottom:521.666667pt;}
.y6d{bottom:522.946667pt;}
.y95{bottom:526.306667pt;}
.y7f{bottom:532.546667pt;}
.y101{bottom:542.146667pt;}
.y3f{bottom:543.106667pt;}
.yce{bottom:544.386667pt;}
.yeb{bottom:545.026667pt;}
.y21{bottom:547.613333pt;}
.y51{bottom:553.853333pt;}
.yb3{bottom:559.933333pt;}
.y6b{bottom:560.413333pt;}
.y100{bottom:569.693333pt;}
.y7e{bottom:570.813333pt;}
.yea{bottom:572.573333pt;}
.y20{bottom:575.293333pt;}
.y3e{bottom:581.533333pt;}
.ycd{bottom:582.653333pt;}
.yb2{bottom:598.173333pt;}
.y7d{bottom:598.333333pt;}
.ye9{bottom:600.253333pt;}
.y1f{bottom:602.813333pt;}
.yff{bottom:606.493333pt;}
.y3d{bottom:609.053333pt;}
.yac{bottom:613.853333pt;}
.y67{bottom:616.253333pt;}
.y7c{bottom:626.013333pt;}
.ye8{bottom:627.773333pt;}
.y1e{bottom:630.493333pt;}
.yfe{bottom:634.013333pt;}
.ycb{bottom:634.653333pt;}
.y3c{bottom:636.573333pt;}
.y7b{bottom:653.533333pt;}
.y64{bottom:653.853333pt;}
.y1d{bottom:661.053333pt;}
.y3b{bottom:664.253333pt;}
.ye7{bottom:666.173333pt;}
.yfd{bottom:670.813333pt;}
.yc8{bottom:677.373333pt;}
.ya8{bottom:681.053333pt;}
.y7a{bottom:681.213333pt;}
.ye6{bottom:681.693333pt;}
.y1c{bottom:691.453333pt;}
.y3a{bottom:691.773333pt;}
.yfc{bottom:698.333333pt;}
.ye4{bottom:705.693333pt;}
.y1b{bottom:709.853333pt;}
.yc6{bottom:713.853333pt;}
.y39{bottom:719.453333pt;}
.y1a{bottom:728.253333pt;}
.ya4{bottom:729.053333pt;}
.yfb{bottom:735.293333pt;}
.ye2{bottom:735.613333pt;}
.y19{bottom:746.653333pt;}
.y38{bottom:746.973333pt;}
.yc5{bottom:755.293333pt;}
.y63{bottom:757.693333pt;}
.ye0{bottom:759.613333pt;}
.yfa{bottom:762.653333pt;}
.y18{bottom:765.053333pt;}
.ya0{bottom:770.333333pt;}
.y37{bottom:774.653333pt;}
.y17{bottom:783.493333pt;}
.ydf{bottom:784.293333pt;}
.y62{bottom:785.413333pt;}
.yc3{bottom:792.773333pt;}
.y16{bottom:801.893333pt;}
.y36{bottom:802.213333pt;}
.y61{bottom:812.933333pt;}
.ydd{bottom:819.653333pt;}
.y15{bottom:820.293333pt;}
.y9c{bottom:822.693333pt;}
.y35{bottom:829.893333pt;}
.yc0{bottom:831.813333pt;}
.y14{bottom:838.693333pt;}
.y60{bottom:840.613333pt;}
.y112{bottom:848.613333pt;}
.y13{bottom:857.093333pt;}
.y34{bottom:857.413333pt;}
.y5f{bottom:868.133333pt;}
.ybe{bottom:869.253333pt;}
.y12{bottom:875.493333pt;}
.y50{bottom:885.093333pt;}
.y111{bottom:885.253333pt;}
.y11{bottom:893.893333pt;}
.y33{bottom:895.813333pt;}
.y4f{bottom:912.613333pt;}
.y110{bottom:922.213333pt;}
.y32{bottom:923.333333pt;}
.y10{bottom:925.253333pt;}
.yf{bottom:948.293333pt;}
.y10f{bottom:949.573333pt;}
.y31{bottom:950.853333pt;}
.ya{bottom:969.893333pt;}
.y1{bottom:983.653333pt;}
.h13{height:19.680000pt;}
.h24{height:23.360000pt;}
.h23{height:24.032000pt;}
.h16{height:26.560000pt;}
.h17{height:26.720000pt;}
.h25{height:29.280000pt;}
.h22{height:34.720000pt;}
.h1f{height:35.840000pt;}
.h7{height:36.070312pt;}
.he{height:36.800000pt;}
.h10{height:36.832000pt;}
.h18{height:38.400000pt;}
.h12{height:39.200000pt;}
.h14{height:39.360000pt;}
.h1a{height:40.640000pt;}
.h1e{height:40.800000pt;}
.h21{height:41.440000pt;}
.hd{height:41.600000pt;}
.h20{height:41.920000pt;}
.h8{height:44.687500pt;}
.hb{height:45.156250pt;}
.h6{height:46.039063pt;}
.h26{height:46.593750pt;}
.h1b{height:47.200000pt;}
.h9{height:47.742188pt;}
.hc{height:48.218750pt;}
.h5{height:49.766250pt;}
.h3{height:51.031250pt;}
.h19{height:51.552000pt;}
.ha{height:52.832812pt;}
.h15{height:53.280000pt;}
.hf{height:55.200000pt;}
.h11{height:55.232000pt;}
.h1d{height:57.600000pt;}
.h1c{height:66.400000pt;}
.h4{height:73.773438pt;}
.h2{height:91.712000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:63.680000pt;}
.w18{width:63.712000pt;}
.w7{width:64.672000pt;}
.w15{width:83.712000pt;}
.w14{width:95.712000pt;}
.wb{width:99.712000pt;}
.wa{width:100.640000pt;}
.w11{width:101.152000pt;}
.w2{width:109.760000pt;}
.we{width:119.072000pt;}
.wc{width:122.432000pt;}
.w9{width:125.792000pt;}
.w6{width:126.112000pt;}
.wd{width:126.912000pt;}
.w8{width:131.680000pt;}
.w4{width:141.946667pt;}
.w1b{width:145.466667pt;}
.w12{width:155.546667pt;}
.w10{width:156.026667pt;}
.wf{width:166.106667pt;}
.w1c{width:166.426667pt;}
.w16{width:167.706667pt;}
.w17{width:181.946667pt;}
.w1a{width:198.746667pt;}
.w13{width:251.066667pt;}
.w3{width:350.173333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x24{left:8.160000pt;}
.x2b{left:9.440000pt;}
.x3f{left:11.360000pt;}
.x17{left:12.960000pt;}
.x31{left:14.080000pt;}
.x1a{left:15.520000pt;}
.x2c{left:19.040000pt;}
.x21{left:20.000000pt;}
.x25{left:20.960000pt;}
.x1d{left:22.400000pt;}
.x33{left:24.640000pt;}
.x44{left:25.920000pt;}
.x5{left:27.200000pt;}
.x35{left:30.600000pt;}
.x1c{left:31.880000pt;}
.x15{left:32.800000pt;}
.x19{left:33.920000pt;}
.x28{left:35.680000pt;}
.x3c{left:37.920000pt;}
.x39{left:39.066667pt;}
.x26{left:41.946667pt;}
.x7{left:43.040000pt;}
.x6{left:45.600000pt;}
.x27{left:46.720000pt;}
.x3d{left:50.874667pt;}
.x1e{left:52.000000pt;}
.x4a{left:54.720000pt;}
.x48{left:58.400000pt;}
.x4b{left:59.360000pt;}
.x34{left:63.080000pt;}
.x3e{left:63.994667pt;}
.x2e{left:65.440000pt;}
.x40{left:69.280000pt;}
.x49{left:75.080000pt;}
.x37{left:79.034667pt;}
.x41{left:83.674667pt;}
.x1{left:96.032000pt;}
.x8{left:120.031988pt;}
.x43{left:142.426667pt;}
.x12{left:144.026655pt;}
.x14{left:172.346667pt;}
.x2a{left:190.586667pt;}
.x3{left:205.786667pt;}
.x42{left:229.666655pt;}
.x20{left:235.266667pt;}
.x11{left:239.266655pt;}
.x4d{left:240.706667pt;}
.xb{left:250.146655pt;}
.x1f{left:251.426655pt;}
.x13{left:255.426655pt;}
.x29{left:259.906655pt;}
.x36{left:264.226655pt;}
.xf{left:275.746655pt;}
.x2f{left:294.146655pt;}
.x4c{left:296.226655pt;}
.x16{left:298.786667pt;}
.xc{left:315.266655pt;}
.x10{left:317.346655pt;}
.x45{left:324.706667pt;}
.x22{left:336.226667pt;}
.x30{left:346.626667pt;}
.x38{left:348.066667pt;}
.xe{left:353.986655pt;}
.xa{left:361.186655pt;}
.x9{left:362.146655pt;}
.x18{left:363.773333pt;}
.x4e{left:386.813333pt;}
.x46{left:388.733333pt;}
.xd{left:396.893322pt;}
.x23{left:436.253333pt;}
.x2d{left:437.213333pt;}
.x3a{left:444.093333pt;}
.x32{left:448.413333pt;}
.x47{left:452.733333pt;}
.x1b{left:495.773333pt;}
.x3b{left:528.133333pt;}
.x4{left:555.973333pt;}
}




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