
    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_c6d88a3f686b679c744a3b27.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0ec4a2dd6b803f856ff02f26.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_0425f474024c86e882d99b60.woff')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_0d1a88ab80b984127f87d811.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_021beb8e33112e7bd35d70f4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_62f106d85cc141f46a373f88.woff')format("woff");}.ff6{font-family:ff6;line-height:1.067000;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_158b007ce413299e16ed4b80.woff')format("woff");}.ff7{font-family:ff7;line-height:1.045000;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_2d45ab8b25b70b2fe3bdee9a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.816000;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_cec9cb6ab2f9aae65f3c1b36.woff')format("woff");}.ff9{font-family:ff9;line-height:0.878418;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_82ac1aaa7e875017210f6c27.woff')format("woff");}.ffa{font-family:ffa;line-height:1.058594;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_327f8030bff3f4f113bb984f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.082520;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_b31f490978f1ebde2182496a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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);}
.v5{vertical-align:-16.830000px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.840000px;}
.v6{vertical-align:18.000000px;}
.v4{vertical-align:19.848000px;}
.v3{vertical-align:23.544000px;}
.v2{vertical-align:174.000000px;}
.ls11{letter-spacing:-7.500000px;}
.ls35{letter-spacing:-7.200000px;}
.ls39{letter-spacing:-1.368000px;}
.ls29{letter-spacing:-1.008000px;}
.ls34{letter-spacing:-0.936000px;}
.ls2a{letter-spacing:-0.864000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls28{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls9{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls36{letter-spacing:0.259200px;}
.ls1d{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.648000px;}
.ls22{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.792000px;}
.ls27{letter-spacing:0.864000px;}
.ls30{letter-spacing:0.936000px;}
.ls17{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.224000px;}
.ls18{letter-spacing:1.296000px;}
.ls37{letter-spacing:1.368000px;}
.ls21{letter-spacing:1.440000px;}
.lse{letter-spacing:2.016000px;}
.ls20{letter-spacing:2.664000px;}
.ls26{letter-spacing:3.168000px;}
.ls3a{letter-spacing:3.408000px;}
.ls2e{letter-spacing:4.176000px;}
.ls1{letter-spacing:4.260000px;}
.ls1a{letter-spacing:4.392000px;}
.lsb{letter-spacing:4.560000px;}
.lsf{letter-spacing:4.752000px;}
.ls38{letter-spacing:6.984000px;}
.ls8{letter-spacing:8.460000px;}
.ls2f{letter-spacing:9.000000px;}
.ls1e{letter-spacing:9.288000px;}
.ls2d{letter-spacing:10.152000px;}
.ls3{letter-spacing:10.312658px;}
.ls24{letter-spacing:10.728000px;}
.ls2{letter-spacing:10.740000px;}
.ls25{letter-spacing:10.800000px;}
.ls0{letter-spacing:75.180000px;}
.lsa{letter-spacing:75.240000px;}
.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;}
}
.ws27{word-spacing:-49.752000px;}
.wse{word-spacing:-49.680000px;}
.ws13{word-spacing:-49.608000px;}
.wsd{word-spacing:-49.536000px;}
.ws14{word-spacing:-49.248000px;}
.ws1a{word-spacing:-49.176000px;}
.ws4{word-spacing:-49.032000px;}
.ws26{word-spacing:-48.960000px;}
.wsf{word-spacing:-48.888000px;}
.ws6{word-spacing:-48.744000px;}
.ws12{word-spacing:-48.600000px;}
.ws3{word-spacing:-48.528000px;}
.ws1c{word-spacing:-48.384000px;}
.ws24{word-spacing:-48.312000px;}
.ws16{word-spacing:-48.168000px;}
.ws19{word-spacing:-48.024000px;}
.ws17{word-spacing:-47.664000px;}
.ws1{word-spacing:-40.440000px;}
.wsc{word-spacing:-32.352000px;}
.ws29{word-spacing:-25.320000px;}
.ws15{word-spacing:-21.096000px;}
.ws10{word-spacing:-20.232000px;}
.ws25{word-spacing:-19.944000px;}
.ws18{word-spacing:-19.440000px;}
.ws11{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.860000px;}
.ws7{word-spacing:-14.162400px;}
.ws5{word-spacing:-13.910400px;}
.wsa{word-spacing:-11.802000px;}
.ws28{word-spacing:-9.441600px;}
.wsb{word-spacing:-9.360000px;}
.ws9{word-spacing:-8.520000px;}
.ws8{word-spacing:0.000000px;}
.ws20{word-spacing:119.100000px;}
.ws1d{word-spacing:126.180000px;}
.ws1b{word-spacing:146.100000px;}
.ws1e{word-spacing:161.880000px;}
.ws0{word-spacing:184.560000px;}
.ws1f{word-spacing:187.920000px;}
.ws22{word-spacing:241.260000px;}
.ws21{word-spacing:341.880000px;}
.ws23{word-spacing:427.920000px;}
._10{margin-left:-948.900000px;}
._6{margin-left:-71.520000px;}
._7{margin-left:-18.480000px;}
._14{margin-left:-10.968000px;}
._f{margin-left:-9.432000px;}
._13{margin-left:-8.208000px;}
._e{margin-left:-7.104000px;}
._5{margin-left:-5.760000px;}
._9{margin-left:-4.680000px;}
._a{margin-left:-3.120000px;}
._1{margin-left:-1.200000px;}
._2{width:1.860000px;}
._4{width:3.180000px;}
._0{width:4.200000px;}
._c{width:5.280000px;}
._3{width:6.840000px;}
._8{width:8.640000px;}
._b{width:10.152000px;}
._d{width:11.232000px;}
._11{width:12.336000px;}
._12{width:31.646100px;}
._15{width:33.432000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs7{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:412.700400px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y3{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y4a{bottom:117.000000px;}
.y131{bottom:117.000300px;}
.y10f{bottom:117.324150px;}
.y23{bottom:118.004550px;}
.y15d{bottom:119.615850px;}
.ya4{bottom:120.774000px;}
.y6e{bottom:121.207500px;}
.yc8{bottom:122.214000px;}
.y85{bottom:122.610000px;}
.yeb{bottom:127.635300px;}
.y15c{bottom:134.915850px;}
.y10e{bottom:135.018150px;}
.y49{bottom:136.207500px;}
.y130{bottom:136.207800px;}
.y22{bottom:139.748550px;}
.ya3{bottom:142.518000px;}
.yc7{bottom:143.958000px;}
.y84{bottom:144.354000px;}
.yea{bottom:146.385300px;}
.y15b{bottom:150.215850px;}
.y48{bottom:154.500000px;}
.y6d{bottom:158.100000px;}
.y21{bottom:161.492550px;}
.y10d{bottom:161.712150px;}
.ya2{bottom:164.262000px;}
.y15a{bottom:165.515850px;}
.yc6{bottom:165.702000px;}
.y83{bottom:166.098000px;}
.y47{bottom:169.500000px;}
.ye9{bottom:173.370300px;}
.y12f{bottom:177.300300px;}
.y6c{bottom:179.700000px;}
.y159{bottom:180.815850px;}
.y20{bottom:183.236550px;}
.y10c{bottom:183.906150px;}
.y46{bottom:184.500000px;}
.ya1{bottom:186.006000px;}
.yc5{bottom:187.446000px;}
.y82{bottom:187.842000px;}
.ye8{bottom:192.120300px;}
.y158{bottom:196.115850px;}
.y12e{bottom:200.700300px;}
.y6b{bottom:201.300000px;}
.y45{bottom:203.707500px;}
.y1f{bottom:204.980550px;}
.ya0{bottom:207.750000px;}
.yc4{bottom:209.190000px;}
.y81{bottom:209.586000px;}
.y157{bottom:211.415850px;}
.y10b{bottom:217.062150px;}
.ye7{bottom:219.105300px;}
.y6a{bottom:222.900000px;}
.y12d{bottom:224.100300px;}
.y156{bottom:226.715850px;}
.y1e{bottom:226.724550px;}
.y9f{bottom:229.494000px;}
.yc3{bottom:230.934000px;}
.y80{bottom:231.330000px;}
.ye6{bottom:237.855300px;}
.y10a{bottom:239.256150px;}
.y44{bottom:241.246050px;}
.y155{bottom:242.015850px;}
.y69{bottom:244.500000px;}
.y12c{bottom:247.500300px;}
.y1d{bottom:248.534550px;}
.y9e{bottom:251.238000px;}
.yc2{bottom:252.678000px;}
.y7f{bottom:253.074000px;}
.y109{bottom:256.950150px;}
.y154{bottom:257.315850px;}
.y43{bottom:259.996050px;}
.ye5{bottom:264.840300px;}
.y68{bottom:266.100000px;}
.y1c{bottom:270.278550px;}
.y12b{bottom:270.900300px;}
.y153{bottom:272.615850px;}
.y9d{bottom:272.982000px;}
.yc1{bottom:274.422000px;}
.y7e{bottom:274.818000px;}
.y42{bottom:278.746050px;}
.ye4{bottom:283.590300px;}
.y108{bottom:283.644150px;}
.y67{bottom:287.700000px;}
.y152{bottom:287.915850px;}
.y1b{bottom:292.022550px;}
.y12a{bottom:294.300300px;}
.yc0{bottom:296.166000px;}
.y7d{bottom:296.562000px;}
.y107{bottom:301.338150px;}
.ye3{bottom:302.340300px;}
.y151{bottom:303.215850px;}
.y41{bottom:305.838000px;}
.y66{bottom:309.300000px;}
.y1a{bottom:313.766550px;}
.y9c{bottom:317.082000px;}
.y129{bottom:317.700300px;}
.ybf{bottom:317.910000px;}
.y7c{bottom:318.306000px;}
.y150{bottom:318.515850px;}
.y40{bottom:327.294000px;}
.y106{bottom:328.032150px;}
.ye2{bottom:329.325300px;}
.y65{bottom:330.900000px;}
.y14f{bottom:333.815850px;}
.y19{bottom:335.510550px;}
.y9b{bottom:338.826000px;}
.ybe{bottom:339.654000px;}
.y7b{bottom:340.050000px;}
.y128{bottom:341.100300px;}
.ye1{bottom:348.075300px;}
.y3f{bottom:348.750000px;}
.y14e{bottom:349.115850px;}
.y105{bottom:350.226150px;}
.y64{bottom:352.500000px;}
.y18{bottom:357.254550px;}
.y9a{bottom:360.570000px;}
.ybd{bottom:361.398000px;}
.y7a{bottom:361.794000px;}
.y14d{bottom:364.415850px;}
.y127{bottom:364.500300px;}
.y3e{bottom:370.206000px;}
.y104{bottom:372.420150px;}
.y63{bottom:374.100000px;}
.ye0{bottom:375.060300px;}
.y17{bottom:378.998550px;}
.y14c{bottom:379.715850px;}
.y99{bottom:382.314000px;}
.ybc{bottom:383.142000px;}
.y79{bottom:383.538000px;}
.y126{bottom:387.900300px;}
.y103{bottom:390.114150px;}
.y3d{bottom:391.662000px;}
.ydf{bottom:393.810300px;}
.y14b{bottom:395.015850px;}
.y62{bottom:395.700000px;}
.y16{bottom:400.742550px;}
.y98{bottom:404.058000px;}
.ybb{bottom:404.886000px;}
.y78{bottom:405.282000px;}
.y14a{bottom:410.315850px;}
.y125{bottom:411.300300px;}
.y3c{bottom:413.118000px;}
.y102{bottom:416.808150px;}
.yde{bottom:420.795300px;}
.y15{bottom:422.486550px;}
.y149{bottom:425.615850px;}
.y97{bottom:425.802000px;}
.yba{bottom:426.630000px;}
.y77{bottom:427.026000px;}
.y3b{bottom:434.574000px;}
.y124{bottom:434.700300px;}
.y61{bottom:438.930000px;}
.y101{bottom:439.002150px;}
.ydd{bottom:439.545300px;}
.y148{bottom:440.915850px;}
.y14{bottom:444.230550px;}
.y96{bottom:447.546000px;}
.yb9{bottom:448.374000px;}
.y76{bottom:448.770000px;}
.y3a{bottom:456.030000px;}
.y147{bottom:456.215850px;}
.y123{bottom:458.100300px;}
.y60{bottom:460.530000px;}
.y100{bottom:461.196150px;}
.y13{bottom:465.974550px;}
.y95{bottom:469.290000px;}
.yb8{bottom:470.118000px;}
.y75{bottom:470.514000px;}
.y146{bottom:471.515850px;}
.ydc{bottom:475.752000px;}
.y39{bottom:477.486000px;}
.yff{bottom:478.890150px;}
.y122{bottom:481.500300px;}
.y145{bottom:486.815850px;}
.y12{bottom:487.772550px;}
.yb7{bottom:491.862000px;}
.y5f{bottom:492.786000px;}
.ydb{bottom:498.846000px;}
.y38{bottom:498.942000px;}
.y144{bottom:502.115850px;}
.y121{bottom:504.900300px;}
.yfe{bottom:505.584150px;}
.y11{bottom:509.516550px;}
.y5e{bottom:510.030000px;}
.y74{bottom:510.114000px;}
.y172{bottom:511.872000px;}
.y94{bottom:513.390000px;}
.yb6{bottom:513.606000px;}
.y143{bottom:517.415850px;}
.y37{bottom:520.398000px;}
.yda{bottom:521.940000px;}
.yfd{bottom:527.778150px;}
.y120{bottom:528.300300px;}
.y171{bottom:530.622000px;}
.y10{bottom:531.260550px;}
.y93{bottom:535.134000px;}
.yb5{bottom:535.350000px;}
.y5d{bottom:536.274000px;}
.y73{bottom:536.358000px;}
.y142{bottom:539.099850px;}
.y36{bottom:541.854000px;}
.yd9{bottom:545.034000px;}
.y170{bottom:549.372000px;}
.yfc{bottom:549.972150px;}
.y11f{bottom:551.700300px;}
.yf{bottom:553.004550px;}
.y5c{bottom:553.518000px;}
.y92{bottom:556.878000px;}
.yb4{bottom:557.100000px;}
.y72{bottom:558.102000px;}
.y35{bottom:563.310000px;}
.y16f{bottom:568.122000px;}
.yfb{bottom:572.166150px;}
.ye{bottom:574.748550px;}
.y11e{bottom:575.100300px;}
.y5b{bottom:575.262000px;}
.y71{bottom:575.346000px;}
.y91{bottom:578.622000px;}
.yd8{bottom:579.990000px;}
.y141{bottom:584.616000px;}
.y34{bottom:584.766000px;}
.yfa{bottom:594.360150px;}
.yd{bottom:596.492550px;}
.y16e{bottom:598.122000px;}
.y11d{bottom:598.500300px;}
.y90{bottom:600.366000px;}
.yb3{bottom:600.666000px;}
.y5a{bottom:601.506000px;}
.y70{bottom:601.590000px;}
.yd7{bottom:603.084000px;}
.y33{bottom:606.222000px;}
.y140{bottom:607.422000px;}
.yf9{bottom:616.554150px;}
.yc{bottom:618.236550px;}
.y59{bottom:618.834000px;}
.y11c{bottom:621.900300px;}
.y8f{bottom:622.110000px;}
.yb2{bottom:622.410000px;}
.y6f{bottom:623.334000px;}
.yd6{bottom:626.178000px;}
.y32{bottom:627.678000px;}
.y13f{bottom:630.228000px;}
.yf8{bottom:638.748150px;}
.y16d{bottom:639.372000px;}
.y9{bottom:639.968550px;}
.yb{bottom:639.980550px;}
.y8e{bottom:643.854000px;}
.yb1{bottom:644.154000px;}
.y58{bottom:645.078000px;}
.y11b{bottom:645.300300px;}
.y31{bottom:649.134000px;}
.yd5{bottom:649.272000px;}
.y13e{bottom:653.034000px;}
.y16c{bottom:658.122000px;}
.yf7{bottom:660.942150px;}
.ya{bottom:661.724550px;}
.y8d{bottom:665.598000px;}
.yb0{bottom:665.898000px;}
.y57{bottom:666.822000px;}
.y11a{bottom:668.700300px;}
.y30{bottom:670.590000px;}
.yd4{bottom:672.366000px;}
.y13d{bottom:675.840000px;}
.y16b{bottom:676.872000px;}
.yf6{bottom:683.136150px;}
.y8c{bottom:687.342000px;}
.yaf{bottom:687.642000px;}
.y56{bottom:688.566000px;}
.y2f{bottom:692.046000px;}
.yd3{bottom:695.460000px;}
.y16a{bottom:695.622000px;}
.y13c{bottom:698.646000px;}
.yf5{bottom:705.330150px;}
.yae{bottom:709.386000px;}
.y55{bottom:710.310000px;}
.y2e{bottom:713.502000px;}
.yd2{bottom:714.054000px;}
.y169{bottom:714.372000px;}
.y119{bottom:715.500000px;}
.y13b{bottom:721.452000px;}
.yf4{bottom:727.524150px;}
.y8{bottom:727.718550px;}
.yad{bottom:731.130000px;}
.y8b{bottom:731.442000px;}
.y54{bottom:732.054000px;}
.y168{bottom:733.122000px;}
.y2d{bottom:734.958000px;}
.y118{bottom:738.900000px;}
.yd1{bottom:741.648000px;}
.y13a{bottom:744.258000px;}
.yf3{bottom:749.718150px;}
.y167{bottom:751.872000px;}
.yac{bottom:752.874000px;}
.y8a{bottom:753.186000px;}
.y53{bottom:753.798000px;}
.y2c{bottom:756.414000px;}
.y117{bottom:757.800000px;}
.yd0{bottom:764.742000px;}
.y139{bottom:767.064000px;}
.y7{bottom:769.854300px;}
.y166{bottom:770.622000px;}
.yf2{bottom:771.912150px;}
.yab{bottom:774.618000px;}
.y89{bottom:774.930000px;}
.y52{bottom:775.542000px;}
.y2b{bottom:777.870000px;}
.y116{bottom:785.700000px;}
.ycf{bottom:787.836000px;}
.y165{bottom:789.372000px;}
.y138{bottom:789.870000px;}
.y6{bottom:792.354300px;}
.yf1{bottom:794.106150px;}
.yaa{bottom:796.362000px;}
.y88{bottom:796.674000px;}
.y51{bottom:797.286000px;}
.y2a{bottom:799.326000px;}
.y164{bottom:808.122000px;}
.y115{bottom:809.100000px;}
.yce{bottom:810.930000px;}
.y137{bottom:812.676000px;}
.yf0{bottom:816.300150px;}
.ya9{bottom:818.106000px;}
.y87{bottom:818.418000px;}
.y50{bottom:819.030000px;}
.y29{bottom:820.782000px;}
.y163{bottom:826.872000px;}
.y114{bottom:828.000000px;}
.ycd{bottom:834.024000px;}
.y136{bottom:835.482000px;}
.yef{bottom:838.500150px;}
.ya8{bottom:839.850000px;}
.y86{bottom:840.162000px;}
.y4f{bottom:840.774000px;}
.y28{bottom:842.238000px;}
.y162{bottom:845.622000px;}
.y113{bottom:855.900000px;}
.ycc{bottom:857.118000px;}
.y135{bottom:858.288000px;}
.y5{bottom:859.500000px;}
.ya7{bottom:861.594000px;}
.y4e{bottom:862.518000px;}
.y27{bottom:863.694000px;}
.y161{bottom:864.372000px;}
.y112{bottom:874.800000px;}
.ycb{bottom:875.712000px;}
.y134{bottom:881.094000px;}
.yee{bottom:882.912000px;}
.y160{bottom:883.122000px;}
.y4d{bottom:884.262000px;}
.y26{bottom:885.138000px;}
.y4{bottom:889.500000px;}
.y15f{bottom:901.872000px;}
.y111{bottom:902.700000px;}
.yca{bottom:903.306000px;}
.y133{bottom:903.900000px;}
.yed{bottom:905.106000px;}
.ya6{bottom:905.694000px;}
.y4c{bottom:906.006000px;}
.y25{bottom:906.594000px;}
.y110{bottom:926.100000px;}
.yc9{bottom:926.400000px;}
.y132{bottom:926.700000px;}
.y15e{bottom:927.000000px;}
.yec{bottom:927.300000px;}
.ya5{bottom:927.600000px;}
.y4b{bottom:927.750000px;}
.y24{bottom:928.050000px;}
.h8{height:24.630908px;}
.hb{height:30.313623px;}
.hc{height:39.888000px;}
.h2{height:39.990234px;}
.h9{height:40.757812px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.h5{height:61.136719px;}
.h7{height:61.184719px;}
.ha{height:79.136719px;}
.h3{height:101.894531px;}
.h6{height:333.461923px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xb{left:76.378950px;}
.x5{left:82.410150px;}
.xa{left:97.272750px;}
.x4{left:106.602150px;}
.x7{left:112.500000px;}
.x8{left:127.394700px;}
.x2{left:134.985000px;}
.x9{left:142.263750px;}
.x3{left:234.900000px;}
.xc{left:256.123950px;}
.xd{left:435.868950px;}
.xe{left:625.781250px;}
.x6{left:635.390550px;}
@media print{
.v5{vertical-align:-14.960000pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.080000pt;}
.v6{vertical-align:16.000000pt;}
.v4{vertical-align:17.642667pt;}
.v3{vertical-align:20.928000pt;}
.v2{vertical-align:154.666667pt;}
.ls11{letter-spacing:-6.666667pt;}
.ls35{letter-spacing:-6.400000pt;}
.ls39{letter-spacing:-1.216000pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls34{letter-spacing:-0.832000pt;}
.ls2a{letter-spacing:-0.768000pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls28{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls36{letter-spacing:0.230400pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.704000pt;}
.ls27{letter-spacing:0.768000pt;}
.ls30{letter-spacing:0.832000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.088000pt;}
.ls18{letter-spacing:1.152000pt;}
.ls37{letter-spacing:1.216000pt;}
.ls21{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.792000pt;}
.ls20{letter-spacing:2.368000pt;}
.ls26{letter-spacing:2.816000pt;}
.ls3a{letter-spacing:3.029333pt;}
.ls2e{letter-spacing:3.712000pt;}
.ls1{letter-spacing:3.786667pt;}
.ls1a{letter-spacing:3.904000pt;}
.lsb{letter-spacing:4.053333pt;}
.lsf{letter-spacing:4.224000pt;}
.ls38{letter-spacing:6.208000pt;}
.ls8{letter-spacing:7.520000pt;}
.ls2f{letter-spacing:8.000000pt;}
.ls1e{letter-spacing:8.256000pt;}
.ls2d{letter-spacing:9.024000pt;}
.ls3{letter-spacing:9.166807pt;}
.ls24{letter-spacing:9.536000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls25{letter-spacing:9.600000pt;}
.ls0{letter-spacing:66.826667pt;}
.lsa{letter-spacing:66.880000pt;}
.ws27{word-spacing:-44.224000pt;}
.wse{word-spacing:-44.160000pt;}
.ws13{word-spacing:-44.096000pt;}
.wsd{word-spacing:-44.032000pt;}
.ws14{word-spacing:-43.776000pt;}
.ws1a{word-spacing:-43.712000pt;}
.ws4{word-spacing:-43.584000pt;}
.ws26{word-spacing:-43.520000pt;}
.wsf{word-spacing:-43.456000pt;}
.ws6{word-spacing:-43.328000pt;}
.ws12{word-spacing:-43.200000pt;}
.ws3{word-spacing:-43.136000pt;}
.ws1c{word-spacing:-43.008000pt;}
.ws24{word-spacing:-42.944000pt;}
.ws16{word-spacing:-42.816000pt;}
.ws19{word-spacing:-42.688000pt;}
.ws17{word-spacing:-42.368000pt;}
.ws1{word-spacing:-35.946667pt;}
.wsc{word-spacing:-28.757333pt;}
.ws29{word-spacing:-22.506667pt;}
.ws15{word-spacing:-18.752000pt;}
.ws10{word-spacing:-17.984000pt;}
.ws25{word-spacing:-17.728000pt;}
.ws18{word-spacing:-17.280000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws7{word-spacing:-12.588800pt;}
.ws5{word-spacing:-12.364800pt;}
.wsa{word-spacing:-10.490667pt;}
.ws28{word-spacing:-8.392533pt;}
.wsb{word-spacing:-8.320000pt;}
.ws9{word-spacing:-7.573333pt;}
.ws8{word-spacing:0.000000pt;}
.ws20{word-spacing:105.866667pt;}
.ws1d{word-spacing:112.160000pt;}
.ws1b{word-spacing:129.866667pt;}
.ws1e{word-spacing:143.893333pt;}
.ws0{word-spacing:164.053333pt;}
.ws1f{word-spacing:167.040000pt;}
.ws22{word-spacing:214.453333pt;}
.ws21{word-spacing:303.893333pt;}
.ws23{word-spacing:380.373333pt;}
._10{margin-left:-843.466667pt;}
._6{margin-left:-63.573333pt;}
._7{margin-left:-16.426667pt;}
._14{margin-left:-9.749333pt;}
._f{margin-left:-8.384000pt;}
._13{margin-left:-7.296000pt;}
._e{margin-left:-6.314667pt;}
._5{margin-left:-5.120000pt;}
._9{margin-left:-4.160000pt;}
._a{margin-left:-2.773333pt;}
._1{margin-left:-1.066667pt;}
._2{width:1.653333pt;}
._4{width:2.826667pt;}
._0{width:3.733333pt;}
._c{width:4.693333pt;}
._3{width:6.080000pt;}
._8{width:7.680000pt;}
._b{width:9.024000pt;}
._d{width:9.984000pt;}
._11{width:10.965333pt;}
._12{width:28.129867pt;}
._15{width:29.717333pt;}
.fs8{font-size:29.866667pt;}
.fs7{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:366.844800pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y3{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y4a{bottom:104.000000pt;}
.y131{bottom:104.000267pt;}
.y10f{bottom:104.288133pt;}
.y23{bottom:104.892933pt;}
.y15d{bottom:106.325200pt;}
.ya4{bottom:107.354667pt;}
.y6e{bottom:107.740000pt;}
.yc8{bottom:108.634667pt;}
.y85{bottom:108.986667pt;}
.yeb{bottom:113.453600pt;}
.y15c{bottom:119.925200pt;}
.y10e{bottom:120.016133pt;}
.y49{bottom:121.073333pt;}
.y130{bottom:121.073600pt;}
.y22{bottom:124.220933pt;}
.ya3{bottom:126.682667pt;}
.yc7{bottom:127.962667pt;}
.y84{bottom:128.314667pt;}
.yea{bottom:130.120267pt;}
.y15b{bottom:133.525200pt;}
.y48{bottom:137.333333pt;}
.y6d{bottom:140.533333pt;}
.y21{bottom:143.548933pt;}
.y10d{bottom:143.744133pt;}
.ya2{bottom:146.010667pt;}
.y15a{bottom:147.125200pt;}
.yc6{bottom:147.290667pt;}
.y83{bottom:147.642667pt;}
.y47{bottom:150.666667pt;}
.ye9{bottom:154.106933pt;}
.y12f{bottom:157.600267pt;}
.y6c{bottom:159.733333pt;}
.y159{bottom:160.725200pt;}
.y20{bottom:162.876933pt;}
.y10c{bottom:163.472133pt;}
.y46{bottom:164.000000pt;}
.ya1{bottom:165.338667pt;}
.yc5{bottom:166.618667pt;}
.y82{bottom:166.970667pt;}
.ye8{bottom:170.773600pt;}
.y158{bottom:174.325200pt;}
.y12e{bottom:178.400267pt;}
.y6b{bottom:178.933333pt;}
.y45{bottom:181.073333pt;}
.y1f{bottom:182.204933pt;}
.ya0{bottom:184.666667pt;}
.yc4{bottom:185.946667pt;}
.y81{bottom:186.298667pt;}
.y157{bottom:187.925200pt;}
.y10b{bottom:192.944133pt;}
.ye7{bottom:194.760267pt;}
.y6a{bottom:198.133333pt;}
.y12d{bottom:199.200267pt;}
.y156{bottom:201.525200pt;}
.y1e{bottom:201.532933pt;}
.y9f{bottom:203.994667pt;}
.yc3{bottom:205.274667pt;}
.y80{bottom:205.626667pt;}
.ye6{bottom:211.426933pt;}
.y10a{bottom:212.672133pt;}
.y44{bottom:214.440933pt;}
.y155{bottom:215.125200pt;}
.y69{bottom:217.333333pt;}
.y12c{bottom:220.000267pt;}
.y1d{bottom:220.919600pt;}
.y9e{bottom:223.322667pt;}
.yc2{bottom:224.602667pt;}
.y7f{bottom:224.954667pt;}
.y109{bottom:228.400133pt;}
.y154{bottom:228.725200pt;}
.y43{bottom:231.107600pt;}
.ye5{bottom:235.413600pt;}
.y68{bottom:236.533333pt;}
.y1c{bottom:240.247600pt;}
.y12b{bottom:240.800267pt;}
.y153{bottom:242.325200pt;}
.y9d{bottom:242.650667pt;}
.yc1{bottom:243.930667pt;}
.y7e{bottom:244.282667pt;}
.y42{bottom:247.774267pt;}
.ye4{bottom:252.080267pt;}
.y108{bottom:252.128133pt;}
.y67{bottom:255.733333pt;}
.y152{bottom:255.925200pt;}
.y1b{bottom:259.575600pt;}
.y12a{bottom:261.600267pt;}
.yc0{bottom:263.258667pt;}
.y7d{bottom:263.610667pt;}
.y107{bottom:267.856133pt;}
.ye3{bottom:268.746933pt;}
.y151{bottom:269.525200pt;}
.y41{bottom:271.856000pt;}
.y66{bottom:274.933333pt;}
.y1a{bottom:278.903600pt;}
.y9c{bottom:281.850667pt;}
.y129{bottom:282.400267pt;}
.ybf{bottom:282.586667pt;}
.y7c{bottom:282.938667pt;}
.y150{bottom:283.125200pt;}
.y40{bottom:290.928000pt;}
.y106{bottom:291.584133pt;}
.ye2{bottom:292.733600pt;}
.y65{bottom:294.133333pt;}
.y14f{bottom:296.725200pt;}
.y19{bottom:298.231600pt;}
.y9b{bottom:301.178667pt;}
.ybe{bottom:301.914667pt;}
.y7b{bottom:302.266667pt;}
.y128{bottom:303.200267pt;}
.ye1{bottom:309.400267pt;}
.y3f{bottom:310.000000pt;}
.y14e{bottom:310.325200pt;}
.y105{bottom:311.312133pt;}
.y64{bottom:313.333333pt;}
.y18{bottom:317.559600pt;}
.y9a{bottom:320.506667pt;}
.ybd{bottom:321.242667pt;}
.y7a{bottom:321.594667pt;}
.y14d{bottom:323.925200pt;}
.y127{bottom:324.000267pt;}
.y3e{bottom:329.072000pt;}
.y104{bottom:331.040133pt;}
.y63{bottom:332.533333pt;}
.ye0{bottom:333.386933pt;}
.y17{bottom:336.887600pt;}
.y14c{bottom:337.525200pt;}
.y99{bottom:339.834667pt;}
.ybc{bottom:340.570667pt;}
.y79{bottom:340.922667pt;}
.y126{bottom:344.800267pt;}
.y103{bottom:346.768133pt;}
.y3d{bottom:348.144000pt;}
.ydf{bottom:350.053600pt;}
.y14b{bottom:351.125200pt;}
.y62{bottom:351.733333pt;}
.y16{bottom:356.215600pt;}
.y98{bottom:359.162667pt;}
.ybb{bottom:359.898667pt;}
.y78{bottom:360.250667pt;}
.y14a{bottom:364.725200pt;}
.y125{bottom:365.600267pt;}
.y3c{bottom:367.216000pt;}
.y102{bottom:370.496133pt;}
.yde{bottom:374.040267pt;}
.y15{bottom:375.543600pt;}
.y149{bottom:378.325200pt;}
.y97{bottom:378.490667pt;}
.yba{bottom:379.226667pt;}
.y77{bottom:379.578667pt;}
.y3b{bottom:386.288000pt;}
.y124{bottom:386.400267pt;}
.y61{bottom:390.160000pt;}
.y101{bottom:390.224133pt;}
.ydd{bottom:390.706933pt;}
.y148{bottom:391.925200pt;}
.y14{bottom:394.871600pt;}
.y96{bottom:397.818667pt;}
.yb9{bottom:398.554667pt;}
.y76{bottom:398.906667pt;}
.y3a{bottom:405.360000pt;}
.y147{bottom:405.525200pt;}
.y123{bottom:407.200267pt;}
.y60{bottom:409.360000pt;}
.y100{bottom:409.952133pt;}
.y13{bottom:414.199600pt;}
.y95{bottom:417.146667pt;}
.yb8{bottom:417.882667pt;}
.y75{bottom:418.234667pt;}
.y146{bottom:419.125200pt;}
.ydc{bottom:422.890667pt;}
.y39{bottom:424.432000pt;}
.yff{bottom:425.680133pt;}
.y122{bottom:428.000267pt;}
.y145{bottom:432.725200pt;}
.y12{bottom:433.575600pt;}
.yb7{bottom:437.210667pt;}
.y5f{bottom:438.032000pt;}
.ydb{bottom:443.418667pt;}
.y38{bottom:443.504000pt;}
.y144{bottom:446.325200pt;}
.y121{bottom:448.800267pt;}
.yfe{bottom:449.408133pt;}
.y11{bottom:452.903600pt;}
.y5e{bottom:453.360000pt;}
.y74{bottom:453.434667pt;}
.y172{bottom:454.997333pt;}
.y94{bottom:456.346667pt;}
.yb6{bottom:456.538667pt;}
.y143{bottom:459.925200pt;}
.y37{bottom:462.576000pt;}
.yda{bottom:463.946667pt;}
.yfd{bottom:469.136133pt;}
.y120{bottom:469.600267pt;}
.y171{bottom:471.664000pt;}
.y10{bottom:472.231600pt;}
.y93{bottom:475.674667pt;}
.yb5{bottom:475.866667pt;}
.y5d{bottom:476.688000pt;}
.y73{bottom:476.762667pt;}
.y142{bottom:479.199867pt;}
.y36{bottom:481.648000pt;}
.yd9{bottom:484.474667pt;}
.y170{bottom:488.330667pt;}
.yfc{bottom:488.864133pt;}
.y11f{bottom:490.400267pt;}
.yf{bottom:491.559600pt;}
.y5c{bottom:492.016000pt;}
.y92{bottom:495.002667pt;}
.yb4{bottom:495.200000pt;}
.y72{bottom:496.090667pt;}
.y35{bottom:500.720000pt;}
.y16f{bottom:504.997333pt;}
.yfb{bottom:508.592133pt;}
.ye{bottom:510.887600pt;}
.y11e{bottom:511.200267pt;}
.y5b{bottom:511.344000pt;}
.y71{bottom:511.418667pt;}
.y91{bottom:514.330667pt;}
.yd8{bottom:515.546667pt;}
.y141{bottom:519.658667pt;}
.y34{bottom:519.792000pt;}
.yfa{bottom:528.320133pt;}
.yd{bottom:530.215600pt;}
.y16e{bottom:531.664000pt;}
.y11d{bottom:532.000267pt;}
.y90{bottom:533.658667pt;}
.yb3{bottom:533.925333pt;}
.y5a{bottom:534.672000pt;}
.y70{bottom:534.746667pt;}
.yd7{bottom:536.074667pt;}
.y33{bottom:538.864000pt;}
.y140{bottom:539.930667pt;}
.yf9{bottom:548.048133pt;}
.yc{bottom:549.543600pt;}
.y59{bottom:550.074667pt;}
.y11c{bottom:552.800267pt;}
.y8f{bottom:552.986667pt;}
.yb2{bottom:553.253333pt;}
.y6f{bottom:554.074667pt;}
.yd6{bottom:556.602667pt;}
.y32{bottom:557.936000pt;}
.y13f{bottom:560.202667pt;}
.yf8{bottom:567.776133pt;}
.y16d{bottom:568.330667pt;}
.y9{bottom:568.860933pt;}
.yb{bottom:568.871600pt;}
.y8e{bottom:572.314667pt;}
.yb1{bottom:572.581333pt;}
.y58{bottom:573.402667pt;}
.y11b{bottom:573.600267pt;}
.y31{bottom:577.008000pt;}
.yd5{bottom:577.130667pt;}
.y13e{bottom:580.474667pt;}
.y16c{bottom:584.997333pt;}
.yf7{bottom:587.504133pt;}
.ya{bottom:588.199600pt;}
.y8d{bottom:591.642667pt;}
.yb0{bottom:591.909333pt;}
.y57{bottom:592.730667pt;}
.y11a{bottom:594.400267pt;}
.y30{bottom:596.080000pt;}
.yd4{bottom:597.658667pt;}
.y13d{bottom:600.746667pt;}
.y16b{bottom:601.664000pt;}
.yf6{bottom:607.232133pt;}
.y8c{bottom:610.970667pt;}
.yaf{bottom:611.237333pt;}
.y56{bottom:612.058667pt;}
.y2f{bottom:615.152000pt;}
.yd3{bottom:618.186667pt;}
.y16a{bottom:618.330667pt;}
.y13c{bottom:621.018667pt;}
.yf5{bottom:626.960133pt;}
.yae{bottom:630.565333pt;}
.y55{bottom:631.386667pt;}
.y2e{bottom:634.224000pt;}
.yd2{bottom:634.714667pt;}
.y169{bottom:634.997333pt;}
.y119{bottom:636.000000pt;}
.y13b{bottom:641.290667pt;}
.yf4{bottom:646.688133pt;}
.y8{bottom:646.860933pt;}
.yad{bottom:649.893333pt;}
.y8b{bottom:650.170667pt;}
.y54{bottom:650.714667pt;}
.y168{bottom:651.664000pt;}
.y2d{bottom:653.296000pt;}
.y118{bottom:656.800000pt;}
.yd1{bottom:659.242667pt;}
.y13a{bottom:661.562667pt;}
.yf3{bottom:666.416133pt;}
.y167{bottom:668.330667pt;}
.yac{bottom:669.221333pt;}
.y8a{bottom:669.498667pt;}
.y53{bottom:670.042667pt;}
.y2c{bottom:672.368000pt;}
.y117{bottom:673.600000pt;}
.yd0{bottom:679.770667pt;}
.y139{bottom:681.834667pt;}
.y7{bottom:684.314933pt;}
.y166{bottom:684.997333pt;}
.yf2{bottom:686.144133pt;}
.yab{bottom:688.549333pt;}
.y89{bottom:688.826667pt;}
.y52{bottom:689.370667pt;}
.y2b{bottom:691.440000pt;}
.y116{bottom:698.400000pt;}
.ycf{bottom:700.298667pt;}
.y165{bottom:701.664000pt;}
.y138{bottom:702.106667pt;}
.y6{bottom:704.314933pt;}
.yf1{bottom:705.872133pt;}
.yaa{bottom:707.877333pt;}
.y88{bottom:708.154667pt;}
.y51{bottom:708.698667pt;}
.y2a{bottom:710.512000pt;}
.y164{bottom:718.330667pt;}
.y115{bottom:719.200000pt;}
.yce{bottom:720.826667pt;}
.y137{bottom:722.378667pt;}
.yf0{bottom:725.600133pt;}
.ya9{bottom:727.205333pt;}
.y87{bottom:727.482667pt;}
.y50{bottom:728.026667pt;}
.y29{bottom:729.584000pt;}
.y163{bottom:734.997333pt;}
.y114{bottom:736.000000pt;}
.ycd{bottom:741.354667pt;}
.y136{bottom:742.650667pt;}
.yef{bottom:745.333467pt;}
.ya8{bottom:746.533333pt;}
.y86{bottom:746.810667pt;}
.y4f{bottom:747.354667pt;}
.y28{bottom:748.656000pt;}
.y162{bottom:751.664000pt;}
.y113{bottom:760.800000pt;}
.ycc{bottom:761.882667pt;}
.y135{bottom:762.922667pt;}
.y5{bottom:764.000000pt;}
.ya7{bottom:765.861333pt;}
.y4e{bottom:766.682667pt;}
.y27{bottom:767.728000pt;}
.y161{bottom:768.330667pt;}
.y112{bottom:777.600000pt;}
.ycb{bottom:778.410667pt;}
.y134{bottom:783.194667pt;}
.yee{bottom:784.810667pt;}
.y160{bottom:784.997333pt;}
.y4d{bottom:786.010667pt;}
.y26{bottom:786.789333pt;}
.y4{bottom:790.666667pt;}
.y15f{bottom:801.664000pt;}
.y111{bottom:802.400000pt;}
.yca{bottom:802.938667pt;}
.y133{bottom:803.466667pt;}
.yed{bottom:804.538667pt;}
.ya6{bottom:805.061333pt;}
.y4c{bottom:805.338667pt;}
.y25{bottom:805.861333pt;}
.y110{bottom:823.200000pt;}
.yc9{bottom:823.466667pt;}
.y132{bottom:823.733333pt;}
.y15e{bottom:824.000000pt;}
.yec{bottom:824.266667pt;}
.ya5{bottom:824.533333pt;}
.y4b{bottom:824.666667pt;}
.y24{bottom:824.933333pt;}
.h8{height:21.894141pt;}
.hb{height:26.945443pt;}
.hc{height:35.456000pt;}
.h2{height:35.546875pt;}
.h9{height:36.229167pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.h5{height:54.343750pt;}
.h7{height:54.386417pt;}
.ha{height:70.343750pt;}
.h3{height:90.572917pt;}
.h6{height:296.410598pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xb{left:67.892400pt;}
.x5{left:73.253467pt;}
.xa{left:86.464667pt;}
.x4{left:94.757467pt;}
.x7{left:100.000000pt;}
.x8{left:113.239733pt;}
.x2{left:119.986667pt;}
.x9{left:126.456667pt;}
.x3{left:208.800000pt;}
.xc{left:227.665733pt;}
.xd{left:387.439067pt;}
.xe{left:556.250000pt;}
.x6{left:564.791600pt;}
}




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