
    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_f05a80fe7fd029892103eb04.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_25927c01e5db1ee6126836d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_0f80bc1e5077134433e9d566.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_a0103f0c94301a00f7066d69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dc43dc7d84a8c33ca2226522.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_5d76cd7b0f6ab6641930b876.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dc6ef97bfd8abd572627d90a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.ls8{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.180000px;}
.lse{letter-spacing:16.406640px;}
.ls3{letter-spacing:46.286640px;}
.lsc{letter-spacing:63.566640px;}
.ls0{letter-spacing:1014.330000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-26.856000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.210000px;}
.ws6{word-spacing:-15.030000px;}
.ws0{word-spacing:-14.850000px;}
.ws8{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.150000px;}
.ws2{word-spacing:-11.970000px;}
.wsa{word-spacing:0.000000px;}
._11{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._3{width:1.158240px;}
._a{width:2.493120px;}
._5{width:3.727440px;}
._19{width:4.989960px;}
._24{width:6.042960px;}
._b{width:7.223400px;}
._15{width:8.336640px;}
._1a{width:9.639240px;}
._d{width:11.182320px;}
._e{width:12.504960px;}
._f{width:13.587120px;}
._12{width:14.958000px;}
._4{width:16.352640px;}
._1c{width:17.735400px;}
._10{width:19.478880px;}
._6{width:20.861640px;}
._7{width:22.433520px;}
._8{width:23.867640px;}
._9{width:25.001160px;}
._1f{width:26.933760px;}
._1e{width:28.737360px;}
._21{width:29.939760px;}
._c{width:30.961800px;}
._1b{width:32.043960px;}
._25{width:33.186240px;}
._23{width:34.299360px;}
._28{width:36.252360px;}
._18{width:37.394640px;}
._1d{width:39.017880px;}
._2d{width:40.039920px;}
._17{width:41.542920px;}
._26{width:42.925680px;}
._2a{width:44.163720px;}
._13{width:45.198000px;}
._16{width:46.437120px;}
._14{width:48.438000px;}
._20{width:50.279040px;}
._22{width:52.905600px;}
._2c{width:54.715680px;}
._2b{width:58.483440px;}
._27{width:59.699160px;}
._2e{width:79.418520px;}
._29{width:89.157960px;}
._1{width:302.788920px;}
._2{width:372.032040px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsb{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fse{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.yc5{bottom:2.700000px;}
.yc9{bottom:2.730000px;}
.y3e{bottom:2.880000px;}
.y40{bottom:2.970000px;}
.y22{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y23{bottom:4.680000px;}
.y5{bottom:8.370000px;}
.y6{bottom:16.470000px;}
.y3d{bottom:18.450000px;}
.y35{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.yfe{bottom:30.240000px;}
.ye{bottom:33.210000px;}
.y3c{bottom:33.930000px;}
.y52{bottom:35.640000px;}
.y34{bottom:37.710000px;}
.yfd{bottom:44.100000px;}
.y8{bottom:49.140000px;}
.y3b{bottom:49.500000px;}
.yd{bottom:51.690000px;}
.y33{bottom:54.990000px;}
.yfc{bottom:57.870000px;}
.y51{bottom:60.030000px;}
.y3a{bottom:64.980000px;}
.yc{bottom:65.820000px;}
.y32{bottom:72.270000px;}
.y4{bottom:73.530000px;}
.y39{bottom:80.580000px;}
.y31{bottom:89.460000px;}
.y45{bottom:94.590000px;}
.y38{bottom:96.060000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y30{bottom:106.740000px;}
.y44{bottom:110.070000px;}
.y37{bottom:111.630000px;}
.yc0{bottom:121.860000px;}
.y2f{bottom:124.020000px;}
.y43{bottom:125.640000px;}
.yf9{bottom:127.260000px;}
.y50{bottom:133.110000px;}
.ya{bottom:136.200000px;}
.y8c{bottom:139.050000px;}
.y42{bottom:141.120000px;}
.y2e{bottom:141.210000px;}
.yf8{bottom:144.540000px;}
.y4f{bottom:150.390000px;}
.y8b{bottom:156.360000px;}
.y41{bottom:156.690000px;}
.ybf{bottom:157.440000px;}
.y2d{bottom:158.490000px;}
.y85{bottom:158.520000px;}
.yf7{bottom:161.850000px;}
.y4e{bottom:167.700000px;}
.y8a{bottom:173.640000px;}
.ybe{bottom:174.720000px;}
.y2c{bottom:175.770000px;}
.y84{bottom:175.800000px;}
.yf6{bottom:179.040000px;}
.y4d{bottom:184.890000px;}
.y89{bottom:190.830000px;}
.ybd{bottom:191.910000px;}
.y2b{bottom:192.960000px;}
.y83{bottom:192.990000px;}
.yf5{bottom:196.320000px;}
.y4c{bottom:202.170000px;}
.y88{bottom:209.190000px;}
.y2a{bottom:210.240000px;}
.y82{bottom:210.270000px;}
.yf4{bottom:213.510000px;}
.y4b{bottom:219.450000px;}
.y87{bottom:226.470000px;}
.y29{bottom:227.430000px;}
.y81{bottom:227.460000px;}
.yf3{bottom:228.270000px;}
.y4a{bottom:236.640000px;}
.y86{bottom:243.660000px;}
.y28{bottom:244.710000px;}
.y80{bottom:244.740000px;}
.y49{bottom:253.920000px;}
.yf2{bottom:256.620000px;}
.ybc{bottom:260.940000px;}
.y27{bottom:262.020000px;}
.y48{bottom:271.200000px;}
.ybb{bottom:278.130000px;}
.y26{bottom:279.210000px;}
.yf1{bottom:284.970000px;}
.y47{bottom:288.390000px;}
.yba{bottom:295.410000px;}
.y25{bottom:296.490000px;}
.y46{bottom:305.220000px;}
.yb9{bottom:312.690000px;}
.yf0{bottom:313.320000px;}
.y7f{bottom:313.770000px;}
.y24{bottom:317.820000px;}
.yb8{bottom:329.880000px;}
.y7e{bottom:330.960000px;}
.yef{bottom:341.670000px;}
.yb7{bottom:347.160000px;}
.y7d{bottom:348.240000px;}
.yb6{bottom:364.440000px;}
.y7c{bottom:365.520000px;}
.yee{bottom:370.020000px;}
.yb5{bottom:381.630000px;}
.y7b{bottom:382.710000px;}
.yed{bottom:386.580000px;}
.yec{bottom:397.560000px;}
.yb4{bottom:398.910000px;}
.y7a{bottom:399.990000px;}
.yeb{bottom:411.420000px;}
.yb3{bottom:416.190000px;}
.y79{bottom:417.270000px;}
.yea{bottom:425.820000px;}
.yb2{bottom:433.380000px;}
.y78{bottom:434.460000px;}
.ye9{bottom:443.010000px;}
.yb1{bottom:450.660000px;}
.y77{bottom:451.740000px;}
.ye8{bottom:460.290000px;}
.yb0{bottom:467.940000px;}
.y76{bottom:469.020000px;}
.ye7{bottom:477.570000px;}
.yaf{bottom:485.130000px;}
.y75{bottom:486.210000px;}
.y3f{bottom:487.830000px;}
.ye6{bottom:494.760000px;}
.yae{bottom:502.410000px;}
.y74{bottom:503.490000px;}
.y36{bottom:504.120000px;}
.ye5{bottom:512.040000px;}
.yad{bottom:519.690000px;}
.y73{bottom:520.770000px;}
.ye4{bottom:529.320000px;}
.yac{bottom:536.880000px;}
.y72{bottom:537.960000px;}
.ye3{bottom:546.510000px;}
.yab{bottom:554.160000px;}
.y71{bottom:555.240000px;}
.ye2{bottom:563.790000px;}
.yaa{bottom:571.440000px;}
.y70{bottom:572.430000px;}
.ye1{bottom:581.010000px;}
.ya9{bottom:588.660000px;}
.y6f{bottom:589.740000px;}
.ye0{bottom:598.290000px;}
.ya8{bottom:605.940000px;}
.y6e{bottom:607.020000px;}
.ydf{bottom:615.570000px;}
.ya7{bottom:623.130000px;}
.y6d{bottom:624.210000px;}
.y21{bottom:629.070000px;}
.yde{bottom:632.760000px;}
.ya6{bottom:640.410000px;}
.y6c{bottom:641.490000px;}
.ydd{bottom:650.040000px;}
.ya5{bottom:657.690000px;}
.y6b{bottom:658.770000px;}
.y20{bottom:659.940000px;}
.y1e{bottom:662.820000px;}
.ydc{bottom:667.320000px;}
.y1d{bottom:668.490000px;}
.ya4{bottom:674.880000px;}
.y6a{bottom:675.960000px;}
.ydb{bottom:684.510000px;}
.y1c{bottom:685.770000px;}
.ya3{bottom:692.160000px;}
.y69{bottom:693.240000px;}
.yda{bottom:701.790000px;}
.y1b{bottom:705.660000px;}
.ya2{bottom:709.440000px;}
.y68{bottom:710.520000px;}
.yd9{bottom:719.070000px;}
.ya1{bottom:726.630000px;}
.y67{bottom:727.710000px;}
.y1a{bottom:734.460000px;}
.yd8{bottom:736.260000px;}
.ya0{bottom:743.910000px;}
.y66{bottom:744.990000px;}
.y19{bottom:753.360000px;}
.yd7{bottom:753.540000px;}
.y9f{bottom:761.190000px;}
.y65{bottom:762.270000px;}
.yd6{bottom:770.820000px;}
.y18{bottom:774.600000px;}
.y9e{bottom:778.380000px;}
.y64{bottom:779.460000px;}
.yd5{bottom:788.010000px;}
.y9d{bottom:795.660000px;}
.y63{bottom:796.740000px;}
.yff{bottom:797.910000px;}
.yd4{bottom:805.290000px;}
.y17{bottom:805.650000px;}
.yfb{bottom:812.670000px;}
.y9c{bottom:812.940000px;}
.y62{bottom:814.020000px;}
.yd3{bottom:822.570000px;}
.y9b{bottom:830.130000px;}
.y61{bottom:831.210000px;}
.y16{bottom:836.700000px;}
.yd2{bottom:839.760000px;}
.y9a{bottom:847.410000px;}
.y60{bottom:848.490000px;}
.yd1{bottom:857.040000px;}
.y99{bottom:864.690000px;}
.y5f{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.yd0{bottom:874.320000px;}
.y98{bottom:881.880000px;}
.yfa{bottom:882.420000px;}
.y5e{bottom:882.960000px;}
.ycf{bottom:891.510000px;}
.y14{bottom:898.800000px;}
.y97{bottom:899.160000px;}
.y5d{bottom:900.240000px;}
.yce{bottom:908.790000px;}
.y96{bottom:916.440000px;}
.y5c{bottom:917.430000px;}
.ycd{bottom:925.980000px;}
.y13{bottom:927.240000px;}
.y95{bottom:933.630000px;}
.y5b{bottom:934.710000px;}
.ycc{bottom:943.260000px;}
.y94{bottom:950.910000px;}
.y5a{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.ycb{bottom:960.540000px;}
.y93{bottom:968.100000px;}
.y59{bottom:969.180000px;}
.yca{bottom:975.300000px;}
.y92{bottom:985.380000px;}
.y58{bottom:986.460000px;}
.yc8{bottom:989.790000px;}
.y91{bottom:1002.690000px;}
.y57{bottom:1003.770000px;}
.yc7{bottom:1004.400000px;}
.yc6{bottom:1018.980000px;}
.y90{bottom:1019.880000px;}
.y56{bottom:1020.960000px;}
.yc4{bottom:1033.470000px;}
.y8f{bottom:1037.160000px;}
.y55{bottom:1038.240000px;}
.yc3{bottom:1048.050000px;}
.y8e{bottom:1054.440000px;}
.y54{bottom:1055.520000px;}
.yc2{bottom:1064.610000px;}
.y8d{bottom:1071.630000px;}
.y53{bottom:1072.710000px;}
.yc1{bottom:1075.590000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h14{height:1.710000px;}
.hf{height:4.318066px;}
.h15{height:5.486484px;}
.h16{height:8.382129px;}
.h21{height:13.770000px;}
.h22{height:13.860000px;}
.h23{height:13.890000px;}
.h1d{height:15.570000px;}
.h17{height:17.280000px;}
.h9{height:21.082324px;}
.h20{height:25.400391px;}
.hb{height:26.786953px;}
.h4{height:27.630000px;}
.h24{height:33.782520px;}
.h1f{height:36.068555px;}
.h18{height:38.100586px;}
.h1c{height:41.343750px;}
.h3{height:42.418652px;}
.h6{height:42.923672px;}
.h2{height:45.295488px;}
.h1b{height:48.410156px;}
.h1{height:50.800781px;}
.h11{height:53.838457px;}
.h5{height:53.896641px;}
.h25{height:55.735313px;}
.h12{height:59.060391px;}
.hd{height:64.546875px;}
.h7{height:65.526152px;}
.h26{height:69.030000px;}
.hc{height:72.418535px;}
.h10{height:76.201172px;}
.ha{height:93.219434px;}
.h13{height:96.820312px;}
.he{height:118.619824px;}
.h1a{height:124.230000px;}
.h8{height:143.220000px;}
.h1e{height:169.290000px;}
.h19{height:310.530000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.wb{width:47.070000px;}
.wd{width:69.660000px;}
.w9{width:128.280000px;}
.w5{width:165.900000px;}
.we{width:167.070000px;}
.wf{width:175.140000px;}
.wa{width:217.890000px;}
.w8{width:228.270000px;}
.w11{width:349.680000px;}
.w10{width:418.200000px;}
.wc{width:436.830000px;}
.w7{width:592.530000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x13{left:3.150000px;}
.x4{left:4.320000px;}
.x1c{left:6.749986px;}
.x14{left:8.100000px;}
.x3c{left:9.840000px;}
.x25{left:10.890000px;}
.x30{left:13.140000px;}
.x3b{left:14.850000px;}
.x2b{left:17.910000px;}
.x37{left:20.160000px;}
.x38{left:23.130000px;}
.x23{left:24.570000px;}
.x32{left:26.730000px;}
.x3f{left:30.600000px;}
.x3a{left:32.250000px;}
.x2a{left:33.420000px;}
.x39{left:36.720000px;}
.x40{left:38.190000px;}
.x2e{left:40.710000px;}
.x21{left:42.480000px;}
.x18{left:43.650000px;}
.x6{left:45.540000px;}
.x15{left:46.710000px;}
.x28{left:49.410000px;}
.x1d{left:52.110000px;}
.x1{left:53.999986px;}
.x2c{left:55.200000px;}
.x34{left:58.410000px;}
.x19{left:59.669986px;}
.x1a{left:60.749986px;}
.x17{left:65.070000px;}
.x2d{left:67.980000px;}
.xa{left:70.470000px;}
.xe{left:77.309986px;}
.x11{left:87.659986px;}
.x29{left:93.420000px;}
.x3{left:99.360000px;}
.x43{left:102.960000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x31{left:123.390000px;}
.x41{left:129.000000px;}
.x5{left:134.460000px;}
.x3e{left:159.240000px;}
.x36{left:163.110000px;}
.x3d{left:180.930000px;}
.x22{left:182.100000px;}
.x27{left:185.520000px;}
.x8{left:200.190000px;}
.x20{left:216.029986px;}
.xb{left:231.780000px;}
.x2f{left:246.179986px;}
.x33{left:291.270000px;}
.x7{left:324.030000px;}
.xf{left:398.639986px;}
.x24{left:400.710000px;}
.x26{left:448.500000px;}
.x12{left:453.539986px;}
.x10{left:464.159986px;}
.x35{left:467.130000px;}
.x1f{left:469.109986px;}
.x1b{left:486.059986px;}
.x42{left:506.940000px;}
.x1e{left:513.059986px;}
.x16{left:640.050000px;}
.xc{left:693.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.160000pt;}
.lse{letter-spacing:14.583680pt;}
.ls3{letter-spacing:41.143680pt;}
.lsc{letter-spacing:56.503680pt;}
.ls0{letter-spacing:901.626667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-23.872000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.520000pt;}
.ws6{word-spacing:-13.360000pt;}
.ws0{word-spacing:-13.200000pt;}
.ws8{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsb{word-spacing:-10.800000pt;}
.ws2{word-spacing:-10.640000pt;}
.wsa{word-spacing:0.000000pt;}
._11{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._3{width:1.029547pt;}
._a{width:2.216107pt;}
._5{width:3.313280pt;}
._19{width:4.435520pt;}
._24{width:5.371520pt;}
._b{width:6.420800pt;}
._15{width:7.410347pt;}
._1a{width:8.568213pt;}
._d{width:9.939840pt;}
._e{width:11.115520pt;}
._f{width:12.077440pt;}
._12{width:13.296000pt;}
._4{width:14.535680pt;}
._1c{width:15.764800pt;}
._10{width:17.314560pt;}
._6{width:18.543680pt;}
._7{width:19.940907pt;}
._8{width:21.215680pt;}
._9{width:22.223253pt;}
._1f{width:23.941120pt;}
._1e{width:25.544320pt;}
._21{width:26.613120pt;}
._c{width:27.521600pt;}
._1b{width:28.483520pt;}
._25{width:29.498880pt;}
._23{width:30.488320pt;}
._28{width:32.224320pt;}
._18{width:33.239680pt;}
._1d{width:34.682560pt;}
._2d{width:35.591040pt;}
._17{width:36.927040pt;}
._26{width:38.156160pt;}
._2a{width:39.256640pt;}
._13{width:40.176000pt;}
._16{width:41.277440pt;}
._14{width:43.056000pt;}
._20{width:44.692480pt;}
._22{width:47.027200pt;}
._2c{width:48.636160pt;}
._2b{width:51.985280pt;}
._27{width:53.065920pt;}
._2e{width:70.594240pt;}
._29{width:79.251520pt;}
._1{width:269.145707pt;}
._2{width:330.695147pt;}
.fs8{font-size:5.440000pt;}
.fsb{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fse{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.yc5{bottom:2.400000pt;}
.yc9{bottom:2.426667pt;}
.y3e{bottom:2.560000pt;}
.y40{bottom:2.640000pt;}
.y22{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y23{bottom:4.160000pt;}
.y5{bottom:7.440000pt;}
.y6{bottom:14.640000pt;}
.y3d{bottom:16.400000pt;}
.y35{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.yfe{bottom:26.880000pt;}
.ye{bottom:29.520000pt;}
.y3c{bottom:30.160000pt;}
.y52{bottom:31.680000pt;}
.y34{bottom:33.520000pt;}
.yfd{bottom:39.200000pt;}
.y8{bottom:43.680000pt;}
.y3b{bottom:44.000000pt;}
.yd{bottom:45.946667pt;}
.y33{bottom:48.880000pt;}
.yfc{bottom:51.440000pt;}
.y51{bottom:53.360000pt;}
.y3a{bottom:57.760000pt;}
.yc{bottom:58.506667pt;}
.y32{bottom:64.240000pt;}
.y4{bottom:65.360000pt;}
.y39{bottom:71.626667pt;}
.y31{bottom:79.520000pt;}
.y45{bottom:84.080000pt;}
.y38{bottom:85.386667pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y30{bottom:94.880000pt;}
.y44{bottom:97.840000pt;}
.y37{bottom:99.226667pt;}
.yc0{bottom:108.320000pt;}
.y2f{bottom:110.240000pt;}
.y43{bottom:111.680000pt;}
.yf9{bottom:113.120000pt;}
.y50{bottom:118.320000pt;}
.ya{bottom:121.066667pt;}
.y8c{bottom:123.600000pt;}
.y42{bottom:125.440000pt;}
.y2e{bottom:125.520000pt;}
.yf8{bottom:128.480000pt;}
.y4f{bottom:133.680000pt;}
.y8b{bottom:138.986667pt;}
.y41{bottom:139.280000pt;}
.ybf{bottom:139.946667pt;}
.y2d{bottom:140.880000pt;}
.y85{bottom:140.906667pt;}
.yf7{bottom:143.866667pt;}
.y4e{bottom:149.066667pt;}
.y8a{bottom:154.346667pt;}
.ybe{bottom:155.306667pt;}
.y2c{bottom:156.240000pt;}
.y84{bottom:156.266667pt;}
.yf6{bottom:159.146667pt;}
.y4d{bottom:164.346667pt;}
.y89{bottom:169.626667pt;}
.ybd{bottom:170.586667pt;}
.y2b{bottom:171.520000pt;}
.y83{bottom:171.546667pt;}
.yf5{bottom:174.506667pt;}
.y4c{bottom:179.706667pt;}
.y88{bottom:185.946667pt;}
.y2a{bottom:186.880000pt;}
.y82{bottom:186.906667pt;}
.yf4{bottom:189.786667pt;}
.y4b{bottom:195.066667pt;}
.y87{bottom:201.306667pt;}
.y29{bottom:202.160000pt;}
.y81{bottom:202.186667pt;}
.yf3{bottom:202.906667pt;}
.y4a{bottom:210.346667pt;}
.y86{bottom:216.586667pt;}
.y28{bottom:217.520000pt;}
.y80{bottom:217.546667pt;}
.y49{bottom:225.706667pt;}
.yf2{bottom:228.106667pt;}
.ybc{bottom:231.946667pt;}
.y27{bottom:232.906667pt;}
.y48{bottom:241.066667pt;}
.ybb{bottom:247.226667pt;}
.y26{bottom:248.186667pt;}
.yf1{bottom:253.306667pt;}
.y47{bottom:256.346667pt;}
.yba{bottom:262.586667pt;}
.y25{bottom:263.546667pt;}
.y46{bottom:271.306667pt;}
.yb9{bottom:277.946667pt;}
.yf0{bottom:278.506667pt;}
.y7f{bottom:278.906667pt;}
.y24{bottom:282.506667pt;}
.yb8{bottom:293.226667pt;}
.y7e{bottom:294.186667pt;}
.yef{bottom:303.706667pt;}
.yb7{bottom:308.586667pt;}
.y7d{bottom:309.546667pt;}
.yb6{bottom:323.946667pt;}
.y7c{bottom:324.906667pt;}
.yee{bottom:328.906667pt;}
.yb5{bottom:339.226667pt;}
.y7b{bottom:340.186667pt;}
.yed{bottom:343.626667pt;}
.yec{bottom:353.386667pt;}
.yb4{bottom:354.586667pt;}
.y7a{bottom:355.546667pt;}
.yeb{bottom:365.706667pt;}
.yb3{bottom:369.946667pt;}
.y79{bottom:370.906667pt;}
.yea{bottom:378.506667pt;}
.yb2{bottom:385.226667pt;}
.y78{bottom:386.186667pt;}
.ye9{bottom:393.786667pt;}
.yb1{bottom:400.586667pt;}
.y77{bottom:401.546667pt;}
.ye8{bottom:409.146667pt;}
.yb0{bottom:415.946667pt;}
.y76{bottom:416.906667pt;}
.ye7{bottom:424.506667pt;}
.yaf{bottom:431.226667pt;}
.y75{bottom:432.186667pt;}
.y3f{bottom:433.626667pt;}
.ye6{bottom:439.786667pt;}
.yae{bottom:446.586667pt;}
.y74{bottom:447.546667pt;}
.y36{bottom:448.106667pt;}
.ye5{bottom:455.146667pt;}
.yad{bottom:461.946667pt;}
.y73{bottom:462.906667pt;}
.ye4{bottom:470.506667pt;}
.yac{bottom:477.226667pt;}
.y72{bottom:478.186667pt;}
.ye3{bottom:485.786667pt;}
.yab{bottom:492.586667pt;}
.y71{bottom:493.546667pt;}
.ye2{bottom:501.146667pt;}
.yaa{bottom:507.946667pt;}
.y70{bottom:508.826667pt;}
.ye1{bottom:516.453333pt;}
.ya9{bottom:523.253333pt;}
.y6f{bottom:524.213333pt;}
.ye0{bottom:531.813333pt;}
.ya8{bottom:538.613333pt;}
.y6e{bottom:539.573333pt;}
.ydf{bottom:547.173333pt;}
.ya7{bottom:553.893333pt;}
.y6d{bottom:554.853333pt;}
.y21{bottom:559.173333pt;}
.yde{bottom:562.453333pt;}
.ya6{bottom:569.253333pt;}
.y6c{bottom:570.213333pt;}
.ydd{bottom:577.813333pt;}
.ya5{bottom:584.613333pt;}
.y6b{bottom:585.573333pt;}
.y20{bottom:586.613333pt;}
.y1e{bottom:589.173333pt;}
.ydc{bottom:593.173333pt;}
.y1d{bottom:594.213333pt;}
.ya4{bottom:599.893333pt;}
.y6a{bottom:600.853333pt;}
.ydb{bottom:608.453333pt;}
.y1c{bottom:609.573333pt;}
.ya3{bottom:615.253333pt;}
.y69{bottom:616.213333pt;}
.yda{bottom:623.813333pt;}
.y1b{bottom:627.253333pt;}
.ya2{bottom:630.613333pt;}
.y68{bottom:631.573333pt;}
.yd9{bottom:639.173333pt;}
.ya1{bottom:645.893333pt;}
.y67{bottom:646.853333pt;}
.y1a{bottom:652.853333pt;}
.yd8{bottom:654.453333pt;}
.ya0{bottom:661.253333pt;}
.y66{bottom:662.213333pt;}
.y19{bottom:669.653333pt;}
.yd7{bottom:669.813333pt;}
.y9f{bottom:676.613333pt;}
.y65{bottom:677.573333pt;}
.yd6{bottom:685.173333pt;}
.y18{bottom:688.533333pt;}
.y9e{bottom:691.893333pt;}
.y64{bottom:692.853333pt;}
.yd5{bottom:700.453333pt;}
.y9d{bottom:707.253333pt;}
.y63{bottom:708.213333pt;}
.yff{bottom:709.253333pt;}
.yd4{bottom:715.813333pt;}
.y17{bottom:716.133333pt;}
.yfb{bottom:722.373333pt;}
.y9c{bottom:722.613333pt;}
.y62{bottom:723.573333pt;}
.yd3{bottom:731.173333pt;}
.y9b{bottom:737.893333pt;}
.y61{bottom:738.853333pt;}
.y16{bottom:743.733333pt;}
.yd2{bottom:746.453333pt;}
.y9a{bottom:753.253333pt;}
.y60{bottom:754.213333pt;}
.yd1{bottom:761.813333pt;}
.y99{bottom:768.613333pt;}
.y5f{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.yd0{bottom:777.173333pt;}
.y98{bottom:783.893333pt;}
.yfa{bottom:784.373333pt;}
.y5e{bottom:784.853333pt;}
.ycf{bottom:792.453333pt;}
.y14{bottom:798.933333pt;}
.y97{bottom:799.253333pt;}
.y5d{bottom:800.213333pt;}
.yce{bottom:807.813333pt;}
.y96{bottom:814.613333pt;}
.y5c{bottom:815.493333pt;}
.ycd{bottom:823.093333pt;}
.y13{bottom:824.213333pt;}
.y95{bottom:829.893333pt;}
.y5b{bottom:830.853333pt;}
.ycc{bottom:838.453333pt;}
.y94{bottom:845.253333pt;}
.y5a{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.ycb{bottom:853.813333pt;}
.y93{bottom:860.533333pt;}
.y59{bottom:861.493333pt;}
.yca{bottom:866.933333pt;}
.y92{bottom:875.893333pt;}
.y58{bottom:876.853333pt;}
.yc8{bottom:879.813333pt;}
.y91{bottom:891.280000pt;}
.y57{bottom:892.240000pt;}
.yc7{bottom:892.800000pt;}
.yc6{bottom:905.760000pt;}
.y90{bottom:906.560000pt;}
.y56{bottom:907.520000pt;}
.yc4{bottom:918.640000pt;}
.y8f{bottom:921.920000pt;}
.y55{bottom:922.880000pt;}
.yc3{bottom:931.600000pt;}
.y8e{bottom:937.280000pt;}
.y54{bottom:938.240000pt;}
.yc2{bottom:946.320000pt;}
.y8d{bottom:952.560000pt;}
.y53{bottom:953.520000pt;}
.yc1{bottom:956.080000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h14{height:1.520000pt;}
.hf{height:3.838281pt;}
.h15{height:4.876875pt;}
.h16{height:7.450781pt;}
.h21{height:12.240000pt;}
.h22{height:12.320000pt;}
.h23{height:12.346667pt;}
.h1d{height:13.840000pt;}
.h17{height:15.360000pt;}
.h9{height:18.739844pt;}
.h20{height:22.578125pt;}
.hb{height:23.810625pt;}
.h4{height:24.560000pt;}
.h24{height:30.028906pt;}
.h1f{height:32.060937pt;}
.h18{height:33.867188pt;}
.h1c{height:36.750000pt;}
.h3{height:37.705469pt;}
.h6{height:38.154375pt;}
.h2{height:40.262656pt;}
.h1b{height:43.031250pt;}
.h1{height:45.156250pt;}
.h11{height:47.856406pt;}
.h5{height:47.908125pt;}
.h25{height:49.542500pt;}
.h12{height:52.498125pt;}
.hd{height:57.375000pt;}
.h7{height:58.245469pt;}
.h26{height:61.360000pt;}
.hc{height:64.372031pt;}
.h10{height:67.734375pt;}
.ha{height:82.861719pt;}
.h13{height:86.062500pt;}
.he{height:105.439844pt;}
.h1a{height:110.426667pt;}
.h8{height:127.306667pt;}
.h1e{height:150.480000pt;}
.h19{height:276.026667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.wb{width:41.840000pt;}
.wd{width:61.920000pt;}
.w9{width:114.026667pt;}
.w5{width:147.466667pt;}
.we{width:148.506667pt;}
.wf{width:155.680000pt;}
.wa{width:193.680000pt;}
.w8{width:202.906667pt;}
.w11{width:310.826667pt;}
.w10{width:371.733333pt;}
.wc{width:388.293333pt;}
.w7{width:526.693333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x13{left:2.800000pt;}
.x4{left:3.840000pt;}
.x1c{left:5.999988pt;}
.x14{left:7.200000pt;}
.x3c{left:8.746667pt;}
.x25{left:9.680000pt;}
.x30{left:11.680000pt;}
.x3b{left:13.200000pt;}
.x2b{left:15.920000pt;}
.x37{left:17.920000pt;}
.x38{left:20.560000pt;}
.x23{left:21.840000pt;}
.x32{left:23.760000pt;}
.x3f{left:27.200000pt;}
.x3a{left:28.666667pt;}
.x2a{left:29.706667pt;}
.x39{left:32.640000pt;}
.x40{left:33.946667pt;}
.x2e{left:36.186667pt;}
.x21{left:37.760000pt;}
.x18{left:38.800000pt;}
.x6{left:40.480000pt;}
.x15{left:41.520000pt;}
.x28{left:43.920000pt;}
.x1d{left:46.320000pt;}
.x1{left:47.999988pt;}
.x2c{left:49.066667pt;}
.x34{left:51.920000pt;}
.x19{left:53.039988pt;}
.x1a{left:53.999988pt;}
.x17{left:57.840000pt;}
.x2d{left:60.426667pt;}
.xa{left:62.640000pt;}
.xe{left:68.719988pt;}
.x11{left:77.919988pt;}
.x29{left:83.040000pt;}
.x3{left:88.320000pt;}
.x43{left:91.520000pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x31{left:109.680000pt;}
.x41{left:114.666667pt;}
.x5{left:119.520000pt;}
.x3e{left:141.546667pt;}
.x36{left:144.986667pt;}
.x3d{left:160.826667pt;}
.x22{left:161.866667pt;}
.x27{left:164.906667pt;}
.x8{left:177.946667pt;}
.x20{left:192.026655pt;}
.xb{left:206.026667pt;}
.x2f{left:218.826655pt;}
.x33{left:258.906667pt;}
.x7{left:288.026667pt;}
.xf{left:354.346655pt;}
.x24{left:356.186667pt;}
.x26{left:398.666667pt;}
.x12{left:403.146655pt;}
.x10{left:412.586655pt;}
.x35{left:415.226667pt;}
.x1f{left:416.986655pt;}
.x1b{left:432.053321pt;}
.x42{left:450.613333pt;}
.x1e{left:456.053321pt;}
.x16{left:568.933333pt;}
.xc{left:616.533333pt;}
}




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