
    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_010ec3d66aba061ac0e48d31.woff')format("woff");}.ff1{font-family:ff1;line-height:1.131836;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_324bf59b8afdf42963c4177e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_91c06e644ebe917206d466f7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.688477;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_191a0ae62fee94038be4d853.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_e57f305fb07a7954c8005999.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4e661e9d2a31d8f4b10c962c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_988c7b17f348f9408dd75ab9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_a39b9edb2ae9fd17df15facc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_5d123772bb4c8abe91c34807.woff')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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4f6b93e8eac0ddd36a0f7571.woff')format("woff");}.ffd{font-family:ffd;line-height:0.968262;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_ec1837c01af5cfeea9593d63.woff')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.fff{font-family:fff;line-height:0.767578;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_d6cdf21ab97f77bbe90fd8a7.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ff11{font-family:ff11;line-height:0.682617;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);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls21{letter-spacing:-1.026000px;}
.ls7{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.567600px;}
.ls4{letter-spacing:-0.472200px;}
.ls5{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.305400px;}
.ls20{letter-spacing:-0.282000px;}
.lsb{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.238800px;}
.lsc{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.017280px;}
.ls15{letter-spacing:0.109200px;}
.ls19{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.262080px;}
.ls1d{letter-spacing:0.262200px;}
.ls23{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.720000px;}
.ls1f{letter-spacing:15.120000px;}
.ls9{letter-spacing:18.144000px;}
.lsf{letter-spacing:23.040000px;}
.ls10{letter-spacing:29.105280px;}
.ls1b{letter-spacing:30.545280px;}
.ls11{letter-spacing:34.865280px;}
.ls12{letter-spacing:38.465280px;}
.ls8{letter-spacing:39.905280px;}
.ls18{letter-spacing:45.665280px;}
.ls1a{letter-spacing:55.362720px;}
.ls1c{letter-spacing:55.386720px;}
.lsd{letter-spacing:59.345280px;}
.ls17{letter-spacing:64.026720px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws3{word-spacing:-20.821200px;}
.wsf{word-spacing:-17.856000px;}
.ws14{word-spacing:-16.822200px;}
.ws11{word-spacing:-16.712400px;}
.ws13{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.297800px;}
.ws12{word-spacing:-16.254600px;}
.ws17{word-spacing:-15.992400px;}
.ws8{word-spacing:-15.840000px;}
.ws16{word-spacing:-15.534000px;}
.wsc{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.060000px;}
.wse{word-spacing:-10.800000px;}
.ws5{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.258800px;}
._2{width:1.042800px;}
._1{width:2.122560px;}
._7{width:4.040640px;}
._5{width:5.299200px;}
._6{width:6.690240px;}
._3{width:8.639040px;}
._f{width:9.649200px;}
._b{width:10.665600px;}
._9{width:12.519360px;}
._a{width:13.711680px;}
._10{width:14.857680px;}
._12{width:17.766240px;}
._8{width:18.812160px;}
._11{width:20.468160px;}
._d{width:22.224960px;}
._e{width:23.513040px;}
._4{width:25.470000px;}
._13{width:28.549680px;}
._c{width:847.740000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:8.820000px;}
.y1e{bottom:11.880000px;}
.y7f{bottom:12.600000px;}
.y81{bottom:19.080000px;}
.y11{bottom:27.720000px;}
.y45{bottom:32.940000px;}
.y1f{bottom:34.380000px;}
.y44{bottom:37.620000px;}
.y1d{bottom:37.800000px;}
.y46{bottom:56.520000px;}
.y20{bottom:57.420000px;}
.y43{bottom:63.540000px;}
.y1c{bottom:63.720000px;}
.y7{bottom:72.540000px;}
.y42{bottom:77.220000px;}
.y1b{bottom:78.300000px;}
.y6{bottom:104.760000px;}
.y5{bottom:137.160000px;}
.y4{bottom:160.200000px;}
.y65{bottom:177.480000px;}
.yca{bottom:178.200000px;}
.yba{bottom:178.560000px;}
.ya7{bottom:178.740000px;}
.yff{bottom:183.420000px;}
.y95{bottom:186.120000px;}
.y41{bottom:189.540000px;}
.ye2{bottom:194.790000px;}
.yc9{bottom:200.190000px;}
.yb9{bottom:200.370000px;}
.ya6{bottom:200.550000px;}
.y3{bottom:202.530000px;}
.yfe{bottom:205.230000px;}
.y94{bottom:207.930000px;}
.y64{bottom:208.470000px;}
.y40{bottom:211.530000px;}
.ye1{bottom:216.750000px;}
.yc8{bottom:221.970000px;}
.ya5{bottom:222.330000px;}
.y2{bottom:223.410000px;}
.yfd{bottom:227.010000px;}
.y93{bottom:229.710000px;}
.y3f{bottom:233.310000px;}
.y63{bottom:239.250000px;}
.yc7{bottom:243.750000px;}
.yb8{bottom:244.110000px;}
.ya4{bottom:244.290000px;}
.y7c{bottom:246.090000px;}
.ye0{bottom:247.530000px;}
.yfc{bottom:248.790000px;}
.y3e{bottom:255.090000px;}
.y92{bottom:260.670000px;}
.y19{bottom:264.450000px;}
.yc6{bottom:265.530000px;}
.yb7{bottom:265.890000px;}
.y7b{bottom:268.050000px;}
.ydf{bottom:269.310000px;}
.y62{bottom:270.030000px;}
.ya3{bottom:274.530000px;}
.y3d{bottom:276.870000px;}
.yfb{bottom:279.750000px;}
.y91{bottom:282.450000px;}
.y18{bottom:286.230000px;}
.yc5{bottom:287.310000px;}
.yb6{bottom:287.670000px;}
.y7a{bottom:289.830000px;}
.y10e{bottom:291.090000px;}
.y61{bottom:291.810000px;}
.yde{bottom:300.090000px;}
.ya2{bottom:301.350000px;}
.y90{bottom:304.230000px;}
.y3c{bottom:307.830000px;}
.y17{bottom:308.190000px;}
.yc4{bottom:309.270000px;}
.yb5{bottom:309.450000px;}
.yfa{bottom:310.530000px;}
.y79{bottom:311.610000px;}
.y10d{bottom:313.050000px;}
.y60{bottom:313.770000px;}
.ydd{bottom:322.050000px;}
.y8f{bottom:326.010000px;}
.y16{bottom:329.970000px;}
.yc3{bottom:331.050000px;}
.yb4{bottom:331.410000px;}
.yf9{bottom:332.310000px;}
.y10c{bottom:334.830000px;}
.y3b{bottom:340.050000px;}
.y78{bottom:342.390000px;}
.y5f{bottom:345.630000px;}
.y8e{bottom:347.790000px;}
.y15{bottom:351.750000px;}
.yc2{bottom:352.830000px;}
.yf8{bottom:354.090000px;}
.yb3{bottom:361.650000px;}
.y10b{bottom:365.610000px;}
.y5e{bottom:367.410000px;}
.y8d{bottom:369.750000px;}
.y3a{bottom:370.830000px;}
.y77{bottom:373.170000px;}
.y14{bottom:373.530000px;}
.yc1{bottom:374.610000px;}
.yf7{bottom:376.050000px;}
.y10a{bottom:387.390000px;}
.yb2{bottom:387.750000px;}
.y5d{bottom:389.370000px;}
.y8c{bottom:391.530000px;}
.y39{bottom:392.610000px;}
.y13{bottom:395.490000px;}
.yc0{bottom:396.435000px;}
.yf6{bottom:397.875000px;}
.y76{bottom:404.175000px;}
.ydc{bottom:405.435000px;}
.y5c{bottom:411.195000px;}
.y8b{bottom:413.355000px;}
.y38{bottom:414.435000px;}
.y12{bottom:417.315000px;}
.y109{bottom:418.215000px;}
.ybf{bottom:418.395000px;}
.yf5{bottom:419.655000px;}
.y75{bottom:434.955000px;}
.y8a{bottom:435.135000px;}
.ydb{bottom:436.215000px;}
.ybe{bottom:440.175000px;}
.yf4{bottom:441.435000px;}
.y5b{bottom:443.235000px;}
.y37{bottom:445.215000px;}
.y74{bottom:456.735000px;}
.y89{bottom:457.095000px;}
.yda{bottom:458.175000px;}
.ybd{bottom:461.955000px;}
.yf3{bottom:463.215000px;}
.y36{bottom:467.175000px;}
.y10{bottom:468.795000px;}
.y108{bottom:470.955000px;}
.y5a{bottom:474.015000px;}
.y88{bottom:478.875000px;}
.yd9{bottom:479.955000px;}
.y73{bottom:487.515000px;}
.y35{bottom:488.955000px;}
.ybc{bottom:492.195000px;}
.y107{bottom:492.735000px;}
.yf2{bottom:494.175000px;}
.y59{bottom:495.795000px;}
.y87{bottom:500.655000px;}
.yd8{bottom:501.735000px;}
.y34{bottom:510.735000px;}
.yf1{bottom:515.955000px;}
.y58{bottom:517.755000px;}
.y72{bottom:518.295000px;}
.yd7{bottom:523.515000px;}
.y86{bottom:531.435000px;}
.y33{bottom:532.515000px;}
.yf0{bottom:537.735000px;}
.y71{bottom:540.255000px;}
.y106{bottom:545.295000px;}
.yd6{bottom:545.475000px;}
.y57{bottom:549.615000px;}
.y85{bottom:553.215000px;}
.y32{bottom:554.295000px;}
.yef{bottom:559.515000px;}
.yd5{bottom:567.255000px;}
.y70{bottom:571.035000px;}
.y56{bottom:571.575000px;}
.y84{bottom:575.175000px;}
.yf{bottom:575.355000px;}
.y31{bottom:576.255000px;}
.yee{bottom:581.295000px;}
.yd4{bottom:589.035000px;}
.y30{bottom:598.035000px;}
.y6f{bottom:601.845000px;}
.yed{bottom:603.285000px;}
.y55{bottom:603.465000px;}
.y83{bottom:605.445000px;}
.yd3{bottom:610.845000px;}
.ye{bottom:613.725000px;}
.y2f{bottom:619.845000px;}
.yec{bottom:625.065000px;}
.y80{bottom:628.485000px;}
.y105{bottom:628.845000px;}
.y6e{bottom:632.625000px;}
.y54{bottom:634.245000px;}
.yd{bottom:641.445000px;}
.y2e{bottom:641.625000px;}
.yeb{bottom:646.845000px;}
.y104{bottom:650.625000px;}
.ya1{bottom:652.065000px;}
.yd2{bottom:654.585000px;}
.y2d{bottom:663.585000px;}
.y53{bottom:665.205000px;}
.yc{bottom:672.945000px;}
.ya0{bottom:673.845000px;}
.yd1{bottom:676.365000px;}
.yea{bottom:677.625000px;}
.y103{bottom:681.585000px;}
.y2c{bottom:685.365000px;}
.y52{bottom:686.985000px;}
.y6d{bottom:694.365000px;}
.y9f{bottom:695.625000px;}
.yd0{bottom:698.145000px;}
.ye9{bottom:699.585000px;}
.y102{bottom:703.365000px;}
.y51{bottom:708.765000px;}
.y2b{bottom:716.145000px;}
.yb1{bottom:717.585000px;}
.ycf{bottom:719.925000px;}
.ye8{bottom:721.365000px;}
.y101{bottom:725.145000px;}
.y9e{bottom:726.585000px;}
.yb{bottom:736.485000px;}
.y2a{bottom:737.925000px;}
.yb0{bottom:739.365000px;}
.y50{bottom:739.545000px;}
.yce{bottom:741.885000px;}
.ye7{bottom:743.145000px;}
.y6c{bottom:746.925000px;}
.y100{bottom:755.925000px;}
.y9d{bottom:757.365000px;}
.y29{bottom:759.705000px;}
.yaf{bottom:761.145000px;}
.ycd{bottom:763.665000px;}
.ye6{bottom:764.925000px;}
.y4f{bottom:770.505000px;}
.ya{bottom:772.845000px;}
.y6b{bottom:777.705000px;}
.y9c{bottom:779.145000px;}
.y28{bottom:781.665000px;}
.yae{bottom:782.925000px;}
.ye5{bottom:786.705000px;}
.y4e{bottom:792.285000px;}
.ycc{bottom:793.905000px;}
.y6a{bottom:799.665000px;}
.y9b{bottom:800.925000px;}
.yad{bottom:804.705000px;}
.ye4{bottom:808.710000px;}
.y9{bottom:809.250000px;}
.y27{bottom:812.490000px;}
.ybb{bottom:813.750000px;}
.y4d{bottom:814.290000px;}
.ycb{bottom:819.870000px;}
.y9a{bottom:822.750000px;}
.y69{bottom:830.490000px;}
.yac{bottom:835.710000px;}
.ye3{bottom:839.490000px;}
.y99{bottom:844.710000px;}
.y4c{bottom:846.150000px;}
.yab{bottom:857.490000px;}
.y68{bottom:861.270000px;}
.y98{bottom:866.490000px;}
.y4b{bottom:867.930000px;}
.y26{bottom:870.270000px;}
.yaa{bottom:879.270000px;}
.y97{bottom:888.270000px;}
.y4a{bottom:889.890000px;}
.y25{bottom:892.050000px;}
.ya9{bottom:901.050000px;}
.y8{bottom:906.270000px;}
.y96{bottom:910.050000px;}
.y67{bottom:914.010000px;}
.y7e{bottom:914.190000px;}
.y49{bottom:921.750000px;}
.ya8{bottom:923.010000px;}
.y24{bottom:932.010000px;}
.y48{bottom:943.530000px;}
.y66{bottom:944.790000px;}
.y23{bottom:953.790000px;}
.y47{bottom:965.490000px;}
.y7d{bottom:966.570000px;}
.y22{bottom:975.570000px;}
.y21{bottom:997.350000px;}
.y1{bottom:1036.980000px;}
.y1a{bottom:1037.160000px;}
.h17{height:37.080000px;}
.h8{height:37.437188px;}
.h3{height:43.246406px;}
.h12{height:46.736719px;}
.hf{height:48.224531px;}
.h4{height:48.410156px;}
.h16{height:50.229844px;}
.h9{height:50.488594px;}
.h11{height:52.417969px;}
.he{height:53.573906px;}
.ha{height:55.735313px;}
.h5{height:57.051211px;}
.h7{height:57.796523px;}
.hc{height:59.383125px;}
.h15{height:59.439023px;}
.h10{height:61.197188px;}
.h1a{height:64.546875px;}
.hb{height:64.800000px;}
.h2{height:65.884219px;}
.h14{height:67.824844px;}
.h13{height:77.580000px;}
.hd{height:77.760000px;}
.h19{height:83.787539px;}
.h6{height:91.441406px;}
.h18{height:285.690000px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w4{width:39.600000px;}
.w6{width:39.996000px;}
.w8{width:353.775000px;}
.w7{width:367.275000px;}
.w5{width:676.230000px;}
.w3{width:682.530000px;}
.w2{width:702.105000px;}
.w1{width:850.499987px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x5{left:45.360000px;}
.x3{left:48.960000px;}
.x8{left:53.999987px;}
.x11{left:80.999987px;}
.xb{left:83.160000px;}
.x14{left:87.875987px;}
.x1{left:91.835987px;}
.x2{left:93.096000px;}
.x9{left:108.035987px;}
.x15{left:114.875987px;}
.xe{left:118.835987px;}
.x18{left:124.740000px;}
.x12{left:129.635987px;}
.x16{left:137.514000px;}
.xa{left:138.815987px;}
.xf{left:145.835987px;}
.x13{left:156.629987px;}
.x1d{left:238.169987px;}
.x4{left:263.954987px;}
.x10{left:268.454987px;}
.x1f{left:276.554987px;}
.x22{left:312.014987px;}
.x1b{left:315.074987px;}
.x1a{left:347.835000px;}
.x19{left:361.329000px;}
.x17{left:451.005000px;}
.x1c{left:606.704987px;}
.x1e{left:654.989987px;}
.x20{left:720.149987px;}
.x7{left:727.890000px;}
.xc{left:759.390000px;}
.x21{left:762.989987px;}
.xd{left:796.679987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls21{letter-spacing:-0.912000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.504533pt;}
.ls4{letter-spacing:-0.419733pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls20{letter-spacing:-0.250667pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.212267pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.015360pt;}
.ls15{letter-spacing:0.097067pt;}
.ls19{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.232960pt;}
.ls1d{letter-spacing:0.233067pt;}
.ls23{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:13.440000pt;}
.ls9{letter-spacing:16.128000pt;}
.lsf{letter-spacing:20.480000pt;}
.ls10{letter-spacing:25.871360pt;}
.ls1b{letter-spacing:27.151360pt;}
.ls11{letter-spacing:30.991360pt;}
.ls12{letter-spacing:34.191360pt;}
.ls8{letter-spacing:35.471360pt;}
.ls18{letter-spacing:40.591360pt;}
.ls1a{letter-spacing:49.211307pt;}
.ls1c{letter-spacing:49.232640pt;}
.lsd{letter-spacing:52.751360pt;}
.ls17{letter-spacing:56.912640pt;}
.ws10{word-spacing:-58.880000pt;}
.ws3{word-spacing:-18.507733pt;}
.wsf{word-spacing:-15.872000pt;}
.ws14{word-spacing:-14.953067pt;}
.ws11{word-spacing:-14.855467pt;}
.ws13{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.486933pt;}
.ws12{word-spacing:-14.448533pt;}
.ws17{word-spacing:-14.215467pt;}
.ws8{word-spacing:-14.080000pt;}
.ws16{word-spacing:-13.808000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws4{word-spacing:-10.720000pt;}
.wse{word-spacing:-9.600000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-1.118933pt;}
._2{width:0.926933pt;}
._1{width:1.886720pt;}
._7{width:3.591680pt;}
._5{width:4.710400pt;}
._6{width:5.946880pt;}
._3{width:7.679147pt;}
._f{width:8.577067pt;}
._b{width:9.480533pt;}
._9{width:11.128320pt;}
._a{width:12.188160pt;}
._10{width:13.206827pt;}
._12{width:15.792213pt;}
._8{width:16.721920pt;}
._11{width:18.193920pt;}
._d{width:19.755520pt;}
._e{width:20.900480pt;}
._4{width:22.640000pt;}
._13{width:25.377493pt;}
._c{width:753.546667pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:7.840000pt;}
.y1e{bottom:10.560000pt;}
.y7f{bottom:11.200000pt;}
.y81{bottom:16.960000pt;}
.y11{bottom:24.640000pt;}
.y45{bottom:29.280000pt;}
.y1f{bottom:30.560000pt;}
.y44{bottom:33.440000pt;}
.y1d{bottom:33.600000pt;}
.y46{bottom:50.240000pt;}
.y20{bottom:51.040000pt;}
.y43{bottom:56.480000pt;}
.y1c{bottom:56.640000pt;}
.y7{bottom:64.480000pt;}
.y42{bottom:68.640000pt;}
.y1b{bottom:69.600000pt;}
.y6{bottom:93.120000pt;}
.y5{bottom:121.920000pt;}
.y4{bottom:142.400000pt;}
.y65{bottom:157.760000pt;}
.yca{bottom:158.400000pt;}
.yba{bottom:158.720000pt;}
.ya7{bottom:158.880000pt;}
.yff{bottom:163.040000pt;}
.y95{bottom:165.440000pt;}
.y41{bottom:168.480000pt;}
.ye2{bottom:173.146667pt;}
.yc9{bottom:177.946667pt;}
.yb9{bottom:178.106667pt;}
.ya6{bottom:178.266667pt;}
.y3{bottom:180.026667pt;}
.yfe{bottom:182.426667pt;}
.y94{bottom:184.826667pt;}
.y64{bottom:185.306667pt;}
.y40{bottom:188.026667pt;}
.ye1{bottom:192.666667pt;}
.yc8{bottom:197.306667pt;}
.ya5{bottom:197.626667pt;}
.y2{bottom:198.586667pt;}
.yfd{bottom:201.786667pt;}
.y93{bottom:204.186667pt;}
.y3f{bottom:207.386667pt;}
.y63{bottom:212.666667pt;}
.yc7{bottom:216.666667pt;}
.yb8{bottom:216.986667pt;}
.ya4{bottom:217.146667pt;}
.y7c{bottom:218.746667pt;}
.ye0{bottom:220.026667pt;}
.yfc{bottom:221.146667pt;}
.y3e{bottom:226.746667pt;}
.y92{bottom:231.706667pt;}
.y19{bottom:235.066667pt;}
.yc6{bottom:236.026667pt;}
.yb7{bottom:236.346667pt;}
.y7b{bottom:238.266667pt;}
.ydf{bottom:239.386667pt;}
.y62{bottom:240.026667pt;}
.ya3{bottom:244.026667pt;}
.y3d{bottom:246.106667pt;}
.yfb{bottom:248.666667pt;}
.y91{bottom:251.066667pt;}
.y18{bottom:254.426667pt;}
.yc5{bottom:255.386667pt;}
.yb6{bottom:255.706667pt;}
.y7a{bottom:257.626667pt;}
.y10e{bottom:258.746667pt;}
.y61{bottom:259.386667pt;}
.yde{bottom:266.746667pt;}
.ya2{bottom:267.866667pt;}
.y90{bottom:270.426667pt;}
.y3c{bottom:273.626667pt;}
.y17{bottom:273.946667pt;}
.yc4{bottom:274.906667pt;}
.yb5{bottom:275.066667pt;}
.yfa{bottom:276.026667pt;}
.y79{bottom:276.986667pt;}
.y10d{bottom:278.266667pt;}
.y60{bottom:278.906667pt;}
.ydd{bottom:286.266667pt;}
.y8f{bottom:289.786667pt;}
.y16{bottom:293.306667pt;}
.yc3{bottom:294.266667pt;}
.yb4{bottom:294.586667pt;}
.yf9{bottom:295.386667pt;}
.y10c{bottom:297.626667pt;}
.y3b{bottom:302.266667pt;}
.y78{bottom:304.346667pt;}
.y5f{bottom:307.226667pt;}
.y8e{bottom:309.146667pt;}
.y15{bottom:312.666667pt;}
.yc2{bottom:313.626667pt;}
.yf8{bottom:314.746667pt;}
.yb3{bottom:321.466667pt;}
.y10b{bottom:324.986667pt;}
.y5e{bottom:326.586667pt;}
.y8d{bottom:328.666667pt;}
.y3a{bottom:329.626667pt;}
.y77{bottom:331.706667pt;}
.y14{bottom:332.026667pt;}
.yc1{bottom:332.986667pt;}
.yf7{bottom:334.266667pt;}
.y10a{bottom:344.346667pt;}
.yb2{bottom:344.666667pt;}
.y5d{bottom:346.106667pt;}
.y8c{bottom:348.026667pt;}
.y39{bottom:348.986667pt;}
.y13{bottom:351.546667pt;}
.yc0{bottom:352.386667pt;}
.yf6{bottom:353.666667pt;}
.y76{bottom:359.266667pt;}
.ydc{bottom:360.386667pt;}
.y5c{bottom:365.506667pt;}
.y8b{bottom:367.426667pt;}
.y38{bottom:368.386667pt;}
.y12{bottom:370.946667pt;}
.y109{bottom:371.746667pt;}
.ybf{bottom:371.906667pt;}
.yf5{bottom:373.026667pt;}
.y75{bottom:386.626667pt;}
.y8a{bottom:386.786667pt;}
.ydb{bottom:387.746667pt;}
.ybe{bottom:391.266667pt;}
.yf4{bottom:392.386667pt;}
.y5b{bottom:393.986667pt;}
.y37{bottom:395.746667pt;}
.y74{bottom:405.986667pt;}
.y89{bottom:406.306667pt;}
.yda{bottom:407.266667pt;}
.ybd{bottom:410.626667pt;}
.yf3{bottom:411.746667pt;}
.y36{bottom:415.266667pt;}
.y10{bottom:416.706667pt;}
.y108{bottom:418.626667pt;}
.y5a{bottom:421.346667pt;}
.y88{bottom:425.666667pt;}
.yd9{bottom:426.626667pt;}
.y73{bottom:433.346667pt;}
.y35{bottom:434.626667pt;}
.ybc{bottom:437.506667pt;}
.y107{bottom:437.986667pt;}
.yf2{bottom:439.266667pt;}
.y59{bottom:440.706667pt;}
.y87{bottom:445.026667pt;}
.yd8{bottom:445.986667pt;}
.y34{bottom:453.986667pt;}
.yf1{bottom:458.626667pt;}
.y58{bottom:460.226667pt;}
.y72{bottom:460.706667pt;}
.yd7{bottom:465.346667pt;}
.y86{bottom:472.386667pt;}
.y33{bottom:473.346667pt;}
.yf0{bottom:477.986667pt;}
.y71{bottom:480.226667pt;}
.y106{bottom:484.706667pt;}
.yd6{bottom:484.866667pt;}
.y57{bottom:488.546667pt;}
.y85{bottom:491.746667pt;}
.y32{bottom:492.706667pt;}
.yef{bottom:497.346667pt;}
.yd5{bottom:504.226667pt;}
.y70{bottom:507.586667pt;}
.y56{bottom:508.066667pt;}
.y84{bottom:511.266667pt;}
.yf{bottom:511.426667pt;}
.y31{bottom:512.226667pt;}
.yee{bottom:516.706667pt;}
.yd4{bottom:523.586667pt;}
.y30{bottom:531.586667pt;}
.y6f{bottom:534.973333pt;}
.yed{bottom:536.253333pt;}
.y55{bottom:536.413333pt;}
.y83{bottom:538.173333pt;}
.yd3{bottom:542.973333pt;}
.ye{bottom:545.533333pt;}
.y2f{bottom:550.973333pt;}
.yec{bottom:555.613333pt;}
.y80{bottom:558.653333pt;}
.y105{bottom:558.973333pt;}
.y6e{bottom:562.333333pt;}
.y54{bottom:563.773333pt;}
.yd{bottom:570.173333pt;}
.y2e{bottom:570.333333pt;}
.yeb{bottom:574.973333pt;}
.y104{bottom:578.333333pt;}
.ya1{bottom:579.613333pt;}
.yd2{bottom:581.853333pt;}
.y2d{bottom:589.853333pt;}
.y53{bottom:591.293333pt;}
.yc{bottom:598.173333pt;}
.ya0{bottom:598.973333pt;}
.yd1{bottom:601.213333pt;}
.yea{bottom:602.333333pt;}
.y103{bottom:605.853333pt;}
.y2c{bottom:609.213333pt;}
.y52{bottom:610.653333pt;}
.y6d{bottom:617.213333pt;}
.y9f{bottom:618.333333pt;}
.yd0{bottom:620.573333pt;}
.ye9{bottom:621.853333pt;}
.y102{bottom:625.213333pt;}
.y51{bottom:630.013333pt;}
.y2b{bottom:636.573333pt;}
.yb1{bottom:637.853333pt;}
.ycf{bottom:639.933333pt;}
.ye8{bottom:641.213333pt;}
.y101{bottom:644.573333pt;}
.y9e{bottom:645.853333pt;}
.yb{bottom:654.653333pt;}
.y2a{bottom:655.933333pt;}
.yb0{bottom:657.213333pt;}
.y50{bottom:657.373333pt;}
.yce{bottom:659.453333pt;}
.ye7{bottom:660.573333pt;}
.y6c{bottom:663.933333pt;}
.y100{bottom:671.933333pt;}
.y9d{bottom:673.213333pt;}
.y29{bottom:675.293333pt;}
.yaf{bottom:676.573333pt;}
.ycd{bottom:678.813333pt;}
.ye6{bottom:679.933333pt;}
.y4f{bottom:684.893333pt;}
.ya{bottom:686.973333pt;}
.y6b{bottom:691.293333pt;}
.y9c{bottom:692.573333pt;}
.y28{bottom:694.813333pt;}
.yae{bottom:695.933333pt;}
.ye5{bottom:699.293333pt;}
.y4e{bottom:704.253333pt;}
.ycc{bottom:705.693333pt;}
.y6a{bottom:710.813333pt;}
.y9b{bottom:711.933333pt;}
.yad{bottom:715.293333pt;}
.ye4{bottom:718.853333pt;}
.y9{bottom:719.333333pt;}
.y27{bottom:722.213333pt;}
.ybb{bottom:723.333333pt;}
.y4d{bottom:723.813333pt;}
.ycb{bottom:728.773333pt;}
.y9a{bottom:731.333333pt;}
.y69{bottom:738.213333pt;}
.yac{bottom:742.853333pt;}
.ye3{bottom:746.213333pt;}
.y99{bottom:750.853333pt;}
.y4c{bottom:752.133333pt;}
.yab{bottom:762.213333pt;}
.y68{bottom:765.573333pt;}
.y98{bottom:770.213333pt;}
.y4b{bottom:771.493333pt;}
.y26{bottom:773.573333pt;}
.yaa{bottom:781.573333pt;}
.y97{bottom:789.573333pt;}
.y4a{bottom:791.013333pt;}
.y25{bottom:792.933333pt;}
.ya9{bottom:800.933333pt;}
.y8{bottom:805.573333pt;}
.y96{bottom:808.933333pt;}
.y67{bottom:812.453333pt;}
.y7e{bottom:812.613333pt;}
.y49{bottom:819.333333pt;}
.ya8{bottom:820.453333pt;}
.y24{bottom:828.453333pt;}
.y48{bottom:838.693333pt;}
.y66{bottom:839.813333pt;}
.y23{bottom:847.813333pt;}
.y47{bottom:858.213333pt;}
.y7d{bottom:859.173333pt;}
.y22{bottom:867.173333pt;}
.y21{bottom:886.533333pt;}
.y1{bottom:921.760000pt;}
.y1a{bottom:921.920000pt;}
.h17{height:32.960000pt;}
.h8{height:33.277500pt;}
.h3{height:38.441250pt;}
.h12{height:41.543750pt;}
.hf{height:42.866250pt;}
.h4{height:43.031250pt;}
.h16{height:44.648750pt;}
.h9{height:44.878750pt;}
.h11{height:46.593750pt;}
.he{height:47.621250pt;}
.ha{height:49.542500pt;}
.h5{height:50.712187pt;}
.h7{height:51.374688pt;}
.hc{height:52.785000pt;}
.h15{height:52.834688pt;}
.h10{height:54.397500pt;}
.h1a{height:57.375000pt;}
.hb{height:57.600000pt;}
.h2{height:58.563750pt;}
.h14{height:60.288750pt;}
.h13{height:68.960000pt;}
.hd{height:69.120000pt;}
.h19{height:74.477812pt;}
.h6{height:81.281250pt;}
.h18{height:253.946667pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w4{width:35.200000pt;}
.w6{width:35.552000pt;}
.w8{width:314.466667pt;}
.w7{width:326.466667pt;}
.w5{width:601.093333pt;}
.w3{width:606.693333pt;}
.w2{width:624.093333pt;}
.w1{width:755.999989pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x5{left:40.320000pt;}
.x3{left:43.520000pt;}
.x8{left:47.999989pt;}
.x11{left:71.999989pt;}
.xb{left:73.920000pt;}
.x14{left:78.111989pt;}
.x1{left:81.631989pt;}
.x2{left:82.752000pt;}
.x9{left:96.031989pt;}
.x15{left:102.111989pt;}
.xe{left:105.631989pt;}
.x18{left:110.880000pt;}
.x12{left:115.231989pt;}
.x16{left:122.234667pt;}
.xa{left:123.391989pt;}
.xf{left:129.631989pt;}
.x13{left:139.226655pt;}
.x1d{left:211.706655pt;}
.x4{left:234.626655pt;}
.x10{left:238.626655pt;}
.x1f{left:245.826655pt;}
.x22{left:277.346655pt;}
.x1b{left:280.066655pt;}
.x1a{left:309.186667pt;}
.x19{left:321.181333pt;}
.x17{left:400.893333pt;}
.x1c{left:539.293322pt;}
.x1e{left:582.213322pt;}
.x20{left:640.133322pt;}
.x7{left:647.013333pt;}
.xc{left:675.013333pt;}
.x21{left:678.213322pt;}
.xd{left:708.159989pt;}
}




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