
    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_88d68a2a8d41d405304783a2.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_53dab03558640b56e0784890.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_8d432d1a96743a6d83dd3826.woff')format("woff");}.ff3{font-family:ff3;line-height:0.931152;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_a34b0c9c4205c8e2071b92b9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a72c9b2174d23468018b1ded.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_dce0a5d3171448d97a4a260c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_f6735efc5249c0bc5e3ba584.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_f32d6499db3649738cf974e2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_3a87f0da1b7e51cfe5d5e16f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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);}
.v4{vertical-align:-23.760000px;}
.v5{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.840000px;}
.v1{vertical-align:19.804200px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:176.400000px;}
.ls25{letter-spacing:-7.200000px;}
.ls37{letter-spacing:-3.096000px;}
.ls38{letter-spacing:-2.376000px;}
.ls35{letter-spacing:-1.440000px;}
.ls34{letter-spacing:-1.296000px;}
.ls2d{letter-spacing:-1.152000px;}
.ls2c{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls20{letter-spacing:-0.864000px;}
.ls2e{letter-spacing:-0.792000px;}
.ls23{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.504000px;}
.ls3c{letter-spacing:-0.480000px;}
.ls30{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.252000px;}
.ls1b{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.151200px;}
.ls29{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.120000px;}
.ls18{letter-spacing:-0.072000px;}
.ls36{letter-spacing:-0.050400px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.103800px;}
.ls19{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.302400px;}
.ls15{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.453600px;}
.ls16{letter-spacing:0.498000px;}
.ls13{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.792000px;}
.ls1a{letter-spacing:0.864000px;}
.ls28{letter-spacing:0.936000px;}
.ls33{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.152000px;}
.ls32{letter-spacing:1.224000px;}
.ls2a{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.850000px;}
.ls9{letter-spacing:4.512000px;}
.ls3{letter-spacing:4.560000px;}
.ls3a{letter-spacing:4.752000px;}
.ls1e{letter-spacing:5.522400px;}
.ls3b{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls8{letter-spacing:8.460000px;}
.ls4{letter-spacing:10.425115px;}
.ls2{letter-spacing:10.740000px;}
.ls2f{letter-spacing:13.796100px;}
.ls7{letter-spacing:75.180000px;}
.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;}
}
.ws6{word-spacing:-75.180000px;}
.ws2{word-spacing:-25.320000px;}
.ws4d{word-spacing:-23.274000px;}
.ws21{word-spacing:-20.376000px;}
.ws47{word-spacing:-19.872000px;}
.ws1{word-spacing:-18.867000px;}
.ws3a{word-spacing:-18.216000px;}
.ws48{word-spacing:-17.856000px;}
.ws2b{word-spacing:-17.784000px;}
.ws38{word-spacing:-17.640000px;}
.ws4a{word-spacing:-17.424000px;}
.ws46{word-spacing:-17.280000px;}
.ws3d{word-spacing:-17.208000px;}
.ws3f{word-spacing:-17.064000px;}
.ws50{word-spacing:-16.860000px;}
.ws3e{word-spacing:-16.704000px;}
.ws4f{word-spacing:-14.820000px;}
.ws49{word-spacing:-14.616000px;}
.ws32{word-spacing:-14.464800px;}
.ws18{word-spacing:-14.162400px;}
.ws40{word-spacing:-14.112000px;}
.ws2e{word-spacing:-14.011200px;}
.ws37{word-spacing:-13.910400px;}
.ws45{word-spacing:-13.658400px;}
.ws4b{word-spacing:-12.336000px;}
.ws26{word-spacing:-12.096000px;}
.ws41{word-spacing:-11.856000px;}
.ws3{word-spacing:-11.802000px;}
.ws4c{word-spacing:-11.376000px;}
.ws2c{word-spacing:-10.584000px;}
.ws19{word-spacing:-9.441600px;}
.wsd{word-spacing:-8.496000px;}
.ws1a{word-spacing:-8.460000px;}
.ws9{word-spacing:-4.512000px;}
.ws33{word-spacing:-1.296000px;}
.ws3c{word-spacing:-1.224000px;}
.ws13{word-spacing:-1.152000px;}
.ws3b{word-spacing:-1.080000px;}
.ws30{word-spacing:-0.936000px;}
.ws1e{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.648000px;}
.ws24{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.504000px;}
.ws12{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.360000px;}
.wsf{word-spacing:-0.288000px;}
.ws29{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.144000px;}
.ws16{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:0.048000px;}
.ws1c{word-spacing:0.072000px;}
.wsa{word-spacing:0.120000px;}
.ws31{word-spacing:0.144000px;}
.ws2f{word-spacing:0.216000px;}
.ws20{word-spacing:0.240000px;}
.ws2d{word-spacing:0.288000px;}
.ws14{word-spacing:0.360000px;}
.ws39{word-spacing:0.432000px;}
.ws4e{word-spacing:0.480000px;}
.ws10{word-spacing:0.504000px;}
.ws17{word-spacing:0.576000px;}
.ws27{word-spacing:0.648000px;}
.ws28{word-spacing:0.720000px;}
.ws36{word-spacing:0.792000px;}
.ws25{word-spacing:0.864000px;}
.ws23{word-spacing:0.936000px;}
.ws34{word-spacing:1.080000px;}
.ws35{word-spacing:1.152000px;}
.ws42{word-spacing:1.296000px;}
.ws43{word-spacing:1.440000px;}
.ws7{word-spacing:1.800000px;}
.ws2a{word-spacing:2.400000px;}
.ws4{word-spacing:2.880000px;}
.ws44{word-spacing:3.096000px;}
.ws22{word-spacing:3.888000px;}
.wse{word-spacing:4.200000px;}
.ws0{word-spacing:146.196000px;}
._12{margin-left:-948.820800px;}
._17{margin-left:-15.462000px;}
._15{margin-left:-14.172000px;}
._18{margin-left:-12.614400px;}
._1b{margin-left:-10.512000px;}
._1a{margin-left:-8.344800px;}
._f{margin-left:-7.266000px;}
._e{margin-left:-6.032400px;}
._a{margin-left:-4.140000px;}
._9{margin-left:-2.460000px;}
._b{margin-left:-1.260000px;}
._0{width:1.374000px;}
._d{width:2.448000px;}
._2{width:3.672000px;}
._c{width:5.227200px;}
._11{width:6.470400px;}
._8{width:8.340000px;}
._13{width:9.561600px;}
._10{width:10.936800px;}
._14{width:12.139200px;}
._19{width:13.796100px;}
._1{width:23.106000px;}
._7{width:24.780000px;}
._6{width:29.580000px;}
._16{width:31.646100px;}
._5{width:73.056000px;}
._3{width:75.180000px;}
._4{width:77.304000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs8{font-size:35.700000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:50.400000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs6{font-size:417.151200px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y47{bottom:117.000000px;}
.y129{bottom:117.240000px;}
.y22{bottom:118.446750px;}
.y198{bottom:121.207500px;}
.y1d8{bottom:123.300000px;}
.y155{bottom:123.756000px;}
.y205{bottom:125.558250px;}
.y57{bottom:132.000000px;}
.y82{bottom:136.207500px;}
.y128{bottom:138.984000px;}
.y46{bottom:139.500000px;}
.y20{bottom:140.352750px;}
.y204{bottom:144.158250px;}
.y154{bottom:145.806000px;}
.y1d7{bottom:146.250000px;}
.y56{bottom:147.000000px;}
.y7a{bottom:151.207500px;}
.y81{bottom:158.707500px;}
.y127{bottom:160.890000px;}
.y45{bottom:162.000000px;}
.y21{bottom:162.402750px;}
.y203{bottom:162.758250px;}
.y197{bottom:164.718000px;}
.ye5{bottom:166.207500px;}
.y153{bottom:167.856000px;}
.y1d6{bottom:169.200000px;}
.yc7{bottom:173.707500px;}
.y55{bottom:177.000000px;}
.y1b5{bottom:177.750000px;}
.ya6{bottom:181.207500px;}
.y202{bottom:181.358250px;}
.y126{bottom:182.796000px;}
.y44{bottom:184.500000px;}
.y196{bottom:187.362000px;}
.y79{bottom:189.612000px;}
.y152{bottom:189.906000px;}
.y54{bottom:192.000000px;}
.y1d5{bottom:192.150000px;}
.y175{bottom:195.078000px;}
.y84{bottom:196.207500px;}
.ya5{bottom:199.500000px;}
.y1b4{bottom:199.800000px;}
.y201{bottom:199.958250px;}
.y125{bottom:204.702000px;}
.y43{bottom:207.000000px;}
.ye4{bottom:207.300000px;}
.y195{bottom:210.006000px;}
.y151{bottom:211.956000px;}
.y78{bottom:213.012000px;}
.ya4{bottom:214.500000px;}
.y1d4{bottom:215.100000px;}
.yc6{bottom:217.806000px;}
.y174{bottom:218.028000px;}
.y200{bottom:218.558250px;}
.y1b3{bottom:221.850000px;}
.y53{bottom:222.000000px;}
.y124{bottom:226.608000px;}
.y1f{bottom:228.552750px;}
.ye3{bottom:229.350000px;}
.y42{bottom:229.500000px;}
.y194{bottom:232.650000px;}
.ya3{bottom:233.707500px;}
.y150{bottom:234.006000px;}
.y77{bottom:235.656000px;}
.y52{bottom:237.000000px;}
.y1ff{bottom:237.158250px;}
.y83{bottom:237.456000px;}
.y1d3{bottom:238.050000px;}
.yc5{bottom:239.550000px;}
.y173{bottom:240.978000px;}
.y1b2{bottom:243.900000px;}
.y1e{bottom:246.852750px;}
.y123{bottom:248.514000px;}
.y103{bottom:248.707500px;}
.ye2{bottom:251.400000px;}
.y41{bottom:252.000000px;}
.y193{bottom:255.294000px;}
.y1fe{bottom:255.758250px;}
.y14f{bottom:256.056000px;}
.y76{bottom:258.300000px;}
.y1d2{bottom:261.000000px;}
.yc4{bottom:261.294000px;}
.y172{bottom:263.928000px;}
.y1b1{bottom:265.950000px;}
.y51{bottom:267.000000px;}
.y122{bottom:270.420000px;}
.ye1{bottom:273.450000px;}
.y1d{bottom:273.656700px;}
.y1fd{bottom:274.358250px;}
.y40{bottom:274.500000px;}
.ya2{bottom:275.310000px;}
.y192{bottom:277.938000px;}
.y14e{bottom:278.106000px;}
.y75{bottom:279.900000px;}
.y226{bottom:281.700000px;}
.y50{bottom:282.000000px;}
.yc3{bottom:283.038000px;}
.y1d1{bottom:283.950000px;}
.y1a4{bottom:286.207500px;}
.y171{bottom:286.878000px;}
.y1b0{bottom:288.000000px;}
.y102{bottom:291.204000px;}
.y1c{bottom:291.956700px;}
.y121{bottom:292.326000px;}
.y1fc{bottom:292.958250px;}
.y130{bottom:294.900000px;}
.ye0{bottom:295.500000px;}
.y3f{bottom:297.000000px;}
.ya1{bottom:297.054000px;}
.y14d{bottom:300.156000px;}
.y225{bottom:300.450000px;}
.y191{bottom:300.582000px;}
.y4f{bottom:301.207500px;}
.y74{bottom:301.500000px;}
.y1a3{bottom:304.500000px;}
.yc2{bottom:304.782000px;}
.y1d0{bottom:306.900000px;}
.y170{bottom:309.828000px;}
.y1af{bottom:310.050000px;}
.y1b{bottom:310.256700px;}
.y1fb{bottom:311.558250px;}
.y80{bottom:312.000000px;}
.y101{bottom:313.110000px;}
.y120{bottom:314.232000px;}
.y12f{bottom:316.950000px;}
.ydf{bottom:317.550000px;}
.ya0{bottom:318.798000px;}
.y224{bottom:319.200000px;}
.y3e{bottom:319.500000px;}
.y14c{bottom:322.206000px;}
.y73{bottom:323.100000px;}
.y190{bottom:323.226000px;}
.yc1{bottom:326.526000px;}
.y7f{bottom:327.000000px;}
.y1a{bottom:328.556700px;}
.y1cf{bottom:329.850000px;}
.y1fa{bottom:330.158250px;}
.y1ae{bottom:332.100000px;}
.y16f{bottom:332.778000px;}
.y4e{bottom:334.500000px;}
.y100{bottom:334.854000px;}
.y11f{bottom:336.138000px;}
.y223{bottom:337.950000px;}
.y12e{bottom:339.000000px;}
.yde{bottom:339.600000px;}
.y9f{bottom:340.542000px;}
.y3d{bottom:342.000000px;}
.y14b{bottom:344.256000px;}
.y72{bottom:344.700000px;}
.y18f{bottom:345.870000px;}
.y7e{bottom:346.207500px;}
.y19{bottom:346.856700px;}
.yc0{bottom:348.270000px;}
.y1f9{bottom:348.758250px;}
.y4d{bottom:349.500000px;}
.y1ce{bottom:352.800000px;}
.y1ad{bottom:354.150000px;}
.y16e{bottom:355.728000px;}
.yff{bottom:356.598000px;}
.y11e{bottom:358.044000px;}
.y12d{bottom:361.050000px;}
.ydd{bottom:361.650000px;}
.y9e{bottom:362.286000px;}
.y3c{bottom:364.500000px;}
.y18{bottom:365.156700px;}
.y71{bottom:366.300000px;}
.y14a{bottom:366.306000px;}
.y1f8{bottom:367.358250px;}
.y222{bottom:367.950000px;}
.y18e{bottom:368.514000px;}
.ybf{bottom:370.014000px;}
.y1cd{bottom:375.750000px;}
.y1ac{bottom:376.200000px;}
.yfe{bottom:378.342000px;}
.y16d{bottom:378.678000px;}
.y11d{bottom:379.950000px;}
.y12c{bottom:383.100000px;}
.y17{bottom:383.456700px;}
.ydc{bottom:383.700000px;}
.y4c{bottom:383.707500px;}
.y9d{bottom:384.030000px;}
.y1f7{bottom:385.958250px;}
.y3b{bottom:387.000000px;}
.y70{bottom:387.900000px;}
.y149{bottom:388.356000px;}
.y7d{bottom:389.700000px;}
.y18d{bottom:391.158000px;}
.ybe{bottom:391.470000px;}
.y1ab{bottom:398.250000px;}
.y1cc{bottom:398.700000px;}
.yfd{bottom:400.086000px;}
.y16c{bottom:401.628000px;}
.y16{bottom:401.756700px;}
.y11c{bottom:401.856000px;}
.y4b{bottom:402.000000px;}
.y1f6{bottom:404.558250px;}
.y12b{bottom:405.150000px;}
.y9c{bottom:405.774000px;}
.ydb{bottom:405.894000px;}
.y221{bottom:409.200000px;}
.y3a{bottom:409.500000px;}
.y148{bottom:410.406000px;}
.y7c{bottom:410.850000px;}
.ybd{bottom:412.926000px;}
.y18c{bottom:413.802000px;}
.y4a{bottom:417.000000px;}
.y15{bottom:420.056700px;}
.y1aa{bottom:420.300000px;}
.y1cb{bottom:421.650000px;}
.yfc{bottom:421.830000px;}
.y1f5{bottom:423.158250px;}
.y11b{bottom:423.762000px;}
.y16b{bottom:424.578000px;}
.y1a2{bottom:424.800000px;}
.y12a{bottom:427.332000px;}
.y9b{bottom:427.518000px;}
.yda{bottom:427.638000px;}
.y220{bottom:427.950000px;}
.y6f{bottom:431.100000px;}
.y39{bottom:432.000000px;}
.y147{bottom:432.456000px;}
.ybc{bottom:434.382000px;}
.y49{bottom:436.207500px;}
.y18b{bottom:436.446000px;}
.y14{bottom:438.355650px;}
.y1f4{bottom:441.758250px;}
.y1a9{bottom:442.350000px;}
.yfb{bottom:443.574000px;}
.y1ca{bottom:444.600000px;}
.y11a{bottom:445.668000px;}
.y1a1{bottom:446.400000px;}
.y21f{bottom:446.700000px;}
.y16a{bottom:447.528000px;}
.y9a{bottom:449.262000px;}
.yd9{bottom:449.382000px;}
.y6e{bottom:452.700000px;}
.y7b{bottom:453.150000px;}
.y38{bottom:454.500000px;}
.y146{bottom:454.506000px;}
.ybb{bottom:455.838000px;}
.y18a{bottom:459.090000px;}
.y1a8{bottom:464.400000px;}
.y13{bottom:465.160650px;}
.yfa{bottom:465.318000px;}
.y21e{bottom:465.450000px;}
.y1c9{bottom:467.550000px;}
.y119{bottom:467.574000px;}
.y1a0{bottom:468.000000px;}
.y169{bottom:470.478000px;}
.y99{bottom:471.006000px;}
.yd8{bottom:471.126000px;}
.y1f3{bottom:473.114250px;}
.y6d{bottom:474.300000px;}
.y145{bottom:476.700000px;}
.y37{bottom:477.000000px;}
.y48{bottom:477.144000px;}
.yba{bottom:477.294000px;}
.y189{bottom:481.734000px;}
.y21d{bottom:484.200000px;}
.y1a7{bottom:486.450000px;}
.yf9{bottom:487.062000px;}
.y118{bottom:489.480000px;}
.y19f{bottom:489.600000px;}
.y1c8{bottom:490.500000px;}
.y98{bottom:492.828000px;}
.yd7{bottom:492.870000px;}
.y168{bottom:493.428000px;}
.y6c{bottom:495.900000px;}
.yb9{bottom:498.750000px;}
.y144{bottom:499.200000px;}
.y36{bottom:499.500000px;}
.y21c{bottom:502.950000px;}
.y1f2{bottom:503.880000px;}
.y188{bottom:504.378000px;}
.y1a6{bottom:508.500000px;}
.yf8{bottom:508.806000px;}
.y12{bottom:509.260650px;}
.y19e{bottom:511.200000px;}
.y117{bottom:511.386000px;}
.y1c7{bottom:513.450000px;}
.y97{bottom:514.572000px;}
.yd6{bottom:514.614000px;}
.y167{bottom:516.378000px;}
.y6b{bottom:517.500000px;}
.yb8{bottom:520.200000px;}
.y143{bottom:521.700000px;}
.y35{bottom:522.000000px;}
.y187{bottom:527.022000px;}
.y11{bottom:527.560650px;}
.yf7{bottom:530.550000px;}
.y19d{bottom:532.800000px;}
.y116{bottom:533.292000px;}
.y96{bottom:536.316000px;}
.yd5{bottom:536.358000px;}
.y1c6{bottom:536.400000px;}
.y6a{bottom:539.100000px;}
.y166{bottom:539.328000px;}
.y21b{bottom:540.300000px;}
.y142{bottom:544.200000px;}
.y34{bottom:544.500000px;}
.y1f1{bottom:545.628000px;}
.y186{bottom:549.666000px;}
.yf6{bottom:552.600000px;}
.y10{bottom:554.363550px;}
.y19c{bottom:554.400000px;}
.y115{bottom:555.198000px;}
.y95{bottom:558.060000px;}
.yd4{bottom:558.102000px;}
.y21a{bottom:558.900000px;}
.y1c5{bottom:559.350000px;}
.y1f0{bottom:560.628000px;}
.y69{bottom:560.700000px;}
.y165{bottom:562.134000px;}
.yb7{bottom:563.028000px;}
.y141{bottom:566.700000px;}
.y33{bottom:567.000000px;}
.y185{bottom:571.860000px;}
.yf{bottom:572.663550px;}
.yf5{bottom:574.650000px;}
.y1ef{bottom:575.628000px;}
.y19b{bottom:576.000000px;}
.y114{bottom:577.104000px;}
.y219{bottom:577.500000px;}
.y94{bottom:579.804000px;}
.yd3{bottom:579.846000px;}
.y68{bottom:582.300000px;}
.yb6{bottom:584.484000px;}
.y164{bottom:584.940000px;}
.y140{bottom:589.200000px;}
.y32{bottom:589.500000px;}
.y1ee{bottom:590.628000px;}
.ye{bottom:590.963550px;}
.y184{bottom:594.054000px;}
.y218{bottom:596.100000px;}
.yf4{bottom:596.700000px;}
.y19a{bottom:597.600000px;}
.y113{bottom:599.010000px;}
.y93{bottom:601.548000px;}
.yd2{bottom:601.590000px;}
.y67{bottom:603.900000px;}
.y1c4{bottom:605.250000px;}
.y1ed{bottom:605.628000px;}
.yb5{bottom:605.940000px;}
.y163{bottom:607.746000px;}
.yd{bottom:609.263550px;}
.y13f{bottom:611.700000px;}
.y31{bottom:612.000000px;}
.y217{bottom:614.700000px;}
.y183{bottom:616.248000px;}
.y1a5{bottom:618.750000px;}
.y199{bottom:619.200000px;}
.y1ec{bottom:620.628000px;}
.y112{bottom:620.916000px;}
.y92{bottom:623.292000px;}
.yd1{bottom:623.334000px;}
.y66{bottom:625.500000px;}
.yb4{bottom:627.396000px;}
.yc{bottom:627.563550px;}
.y1c3{bottom:628.200000px;}
.y162{bottom:630.552000px;}
.y216{bottom:633.300000px;}
.y13e{bottom:634.200000px;}
.y30{bottom:634.500000px;}
.y1eb{bottom:635.628000px;}
.y182{bottom:638.442000px;}
.yf3{bottom:640.800000px;}
.y111{bottom:642.822000px;}
.y91{bottom:645.036000px;}
.yd0{bottom:645.078000px;}
.yb{bottom:645.863550px;}
.y65{bottom:647.100000px;}
.yb3{bottom:648.852000px;}
.y1ea{bottom:650.628000px;}
.y1c2{bottom:651.150000px;}
.y215{bottom:651.900000px;}
.y161{bottom:653.358000px;}
.y13d{bottom:656.700000px;}
.y2f{bottom:657.000000px;}
.y181{bottom:660.636000px;}
.yf2{bottom:662.850000px;}
.ya{bottom:664.163550px;}
.y110{bottom:664.728000px;}
.y1e9{bottom:665.628000px;}
.y90{bottom:666.780000px;}
.ycf{bottom:666.822000px;}
.y64{bottom:668.700000px;}
.yb2{bottom:670.308000px;}
.y214{bottom:670.500000px;}
.y1c1{bottom:674.100000px;}
.y160{bottom:676.164000px;}
.y13c{bottom:679.200000px;}
.y2e{bottom:679.500000px;}
.y1e8{bottom:680.628000px;}
.y9{bottom:682.463550px;}
.y180{bottom:682.830000px;}
.yf1{bottom:684.900000px;}
.y10f{bottom:686.634000px;}
.y8f{bottom:688.524000px;}
.yce{bottom:688.566000px;}
.y213{bottom:689.100000px;}
.y63{bottom:690.300000px;}
.yb1{bottom:691.764000px;}
.y1e7{bottom:695.628000px;}
.y1c0{bottom:697.050000px;}
.y15f{bottom:698.970000px;}
.y13b{bottom:701.700000px;}
.y2d{bottom:702.000000px;}
.y17f{bottom:705.024000px;}
.yf0{bottom:706.950000px;}
.y212{bottom:707.700000px;}
.y10e{bottom:708.540000px;}
.y8{bottom:709.268550px;}
.y8e{bottom:710.268000px;}
.ycd{bottom:710.310000px;}
.y1e6{bottom:710.628000px;}
.y62{bottom:711.900000px;}
.yb0{bottom:713.220000px;}
.y1bf{bottom:720.000000px;}
.y15e{bottom:721.776000px;}
.y13a{bottom:724.200000px;}
.y2c{bottom:724.500000px;}
.y1e5{bottom:725.628000px;}
.y211{bottom:726.300000px;}
.y17e{bottom:727.218000px;}
.yef{bottom:729.000000px;}
.y10d{bottom:730.446000px;}
.y8d{bottom:732.012000px;}
.ycc{bottom:732.054000px;}
.y61{bottom:733.500000px;}
.yaf{bottom:734.676000px;}
.y1e4{bottom:740.628000px;}
.y1be{bottom:742.950000px;}
.y15d{bottom:744.582000px;}
.y210{bottom:744.900000px;}
.y139{bottom:746.700000px;}
.y2b{bottom:747.000000px;}
.y17d{bottom:749.412000px;}
.yee{bottom:751.050000px;}
.y10c{bottom:752.352000px;}
.y8c{bottom:753.756000px;}
.ycb{bottom:753.798000px;}
.y7{bottom:754.704300px;}
.y60{bottom:755.100000px;}
.y1e3{bottom:755.628000px;}
.yae{bottom:756.132000px;}
.y20f{bottom:763.500000px;}
.y1bd{bottom:765.900000px;}
.y15c{bottom:767.388000px;}
.y138{bottom:769.200000px;}
.y2a{bottom:769.500000px;}
.y1e2{bottom:770.628000px;}
.y17c{bottom:771.606000px;}
.yed{bottom:773.100000px;}
.y10b{bottom:774.258000px;}
.y8b{bottom:775.500000px;}
.yca{bottom:775.542000px;}
.y6{bottom:776.604300px;}
.y5f{bottom:776.700000px;}
.yad{bottom:777.588000px;}
.y20e{bottom:782.100000px;}
.y1e1{bottom:785.628000px;}
.y1bc{bottom:788.850000px;}
.y15b{bottom:790.194000px;}
.y137{bottom:791.700000px;}
.y29{bottom:792.000000px;}
.y17b{bottom:793.830000px;}
.yec{bottom:795.150000px;}
.y10a{bottom:796.164000px;}
.y8a{bottom:797.250000px;}
.yc9{bottom:797.286000px;}
.y5e{bottom:798.300000px;}
.yac{bottom:799.044000px;}
.y1e0{bottom:800.628000px;}
.y20d{bottom:800.700000px;}
.y1bb{bottom:811.800000px;}
.y15a{bottom:812.970000px;}
.y136{bottom:814.200000px;}
.y28{bottom:814.500000px;}
.y1df{bottom:815.628000px;}
.y17a{bottom:816.024000px;}
.yeb{bottom:817.200000px;}
.y109{bottom:818.070000px;}
.yc8{bottom:819.030000px;}
.y20c{bottom:819.300000px;}
.y5d{bottom:819.900000px;}
.yab{bottom:820.470000px;}
.y1de{bottom:830.628000px;}
.y1ba{bottom:834.750000px;}
.y159{bottom:835.776000px;}
.y135{bottom:836.700000px;}
.y27{bottom:837.000000px;}
.y20b{bottom:837.900000px;}
.y179{bottom:838.218000px;}
.yea{bottom:839.250000px;}
.y108{bottom:839.976000px;}
.y89{bottom:840.774000px;}
.y5c{bottom:841.500000px;}
.yaa{bottom:841.926000px;}
.y5{bottom:843.150000px;}
.y1dd{bottom:845.628000px;}
.y20a{bottom:856.500000px;}
.y1b9{bottom:857.700000px;}
.y158{bottom:858.582000px;}
.y134{bottom:859.200000px;}
.y26{bottom:859.500000px;}
.y178{bottom:860.412000px;}
.y1dc{bottom:860.628000px;}
.ye9{bottom:861.300000px;}
.y107{bottom:861.882000px;}
.y88{bottom:862.518000px;}
.y5b{bottom:863.100000px;}
.ya9{bottom:863.382000px;}
.y4{bottom:872.550000px;}
.y209{bottom:875.100000px;}
.y1db{bottom:875.628000px;}
.y1b8{bottom:880.650000px;}
.y157{bottom:881.388000px;}
.y133{bottom:881.700000px;}
.y25{bottom:882.000000px;}
.y177{bottom:882.606000px;}
.ye8{bottom:883.350000px;}
.y106{bottom:883.788000px;}
.y87{bottom:884.262000px;}
.y5a{bottom:884.700000px;}
.ya8{bottom:884.838000px;}
.y1da{bottom:890.628000px;}
.y208{bottom:893.700000px;}
.y1b7{bottom:903.600000px;}
.y156{bottom:904.194000px;}
.y132{bottom:904.200000px;}
.y24{bottom:904.500000px;}
.y176{bottom:904.800000px;}
.ye7{bottom:905.400000px;}
.y1d9{bottom:905.628000px;}
.y105{bottom:905.694000px;}
.y86{bottom:906.006000px;}
.ya7{bottom:906.294000px;}
.y59{bottom:906.300000px;}
.y207{bottom:912.300000px;}
.y3{bottom:924.450000px;}
.y1b6{bottom:926.550000px;}
.y131{bottom:926.700000px;}
.y23{bottom:927.000000px;}
.ye6{bottom:927.450000px;}
.y104{bottom:927.600000px;}
.y85{bottom:927.750000px;}
.y58{bottom:927.900000px;}
.y206{bottom:930.900000px;}
.hb{height:23.927813px;}
.he{height:30.313623px;}
.h15{height:35.991211px;}
.h2{height:37.990723px;}
.h14{height:39.072000px;}
.h6{height:39.990234px;}
.hc{height:40.757812px;}
.h1{height:41.396484px;}
.h4{height:42.000000px;}
.hf{height:48.840000px;}
.h5{height:49.675781px;}
.h7{height:50.947266px;}
.h8{height:50.951466px;}
.ha{height:61.136719px;}
.h11{height:61.256719px;}
.h13{height:66.435703px;}
.h10{height:66.531703px;}
.hd{height:66.555703px;}
.h12{height:66.675703px;}
.h3{height:101.894531px;}
.h9{height:292.005840px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x7{left:82.381950px;}
.x3{left:97.263750px;}
.x4{left:112.238550px;}
.x6{left:127.386000px;}
.x2{left:135.000000px;}
.x5{left:625.781250px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v5{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.080000pt;}
.v1{vertical-align:17.603733pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:156.800000pt;}
.ls25{letter-spacing:-6.400000pt;}
.ls37{letter-spacing:-2.752000pt;}
.ls38{letter-spacing:-2.112000pt;}
.ls35{letter-spacing:-1.280000pt;}
.ls34{letter-spacing:-1.152000pt;}
.ls2d{letter-spacing:-1.024000pt;}
.ls2c{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls20{letter-spacing:-0.768000pt;}
.ls2e{letter-spacing:-0.704000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls3c{letter-spacing:-0.426667pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.224000pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.134400pt;}
.ls29{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls36{letter-spacing:-0.044800pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.092267pt;}
.ls19{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.268800pt;}
.ls15{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.403200pt;}
.ls16{letter-spacing:0.442667pt;}
.ls13{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls28{letter-spacing:0.832000pt;}
.ls33{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.024000pt;}
.ls32{letter-spacing:1.088000pt;}
.ls2a{letter-spacing:1.152000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls9{letter-spacing:4.010667pt;}
.ls3{letter-spacing:4.053333pt;}
.ls3a{letter-spacing:4.224000pt;}
.ls1e{letter-spacing:4.908800pt;}
.ls3b{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls8{letter-spacing:7.520000pt;}
.ls4{letter-spacing:9.266769pt;}
.ls2{letter-spacing:9.546667pt;}
.ls2f{letter-spacing:12.263200pt;}
.ls7{letter-spacing:66.826667pt;}
.ws6{word-spacing:-66.826667pt;}
.ws2{word-spacing:-22.506667pt;}
.ws4d{word-spacing:-20.688000pt;}
.ws21{word-spacing:-18.112000pt;}
.ws47{word-spacing:-17.664000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws3a{word-spacing:-16.192000pt;}
.ws48{word-spacing:-15.872000pt;}
.ws2b{word-spacing:-15.808000pt;}
.ws38{word-spacing:-15.680000pt;}
.ws4a{word-spacing:-15.488000pt;}
.ws46{word-spacing:-15.360000pt;}
.ws3d{word-spacing:-15.296000pt;}
.ws3f{word-spacing:-15.168000pt;}
.ws50{word-spacing:-14.986667pt;}
.ws3e{word-spacing:-14.848000pt;}
.ws4f{word-spacing:-13.173333pt;}
.ws49{word-spacing:-12.992000pt;}
.ws32{word-spacing:-12.857600pt;}
.ws18{word-spacing:-12.588800pt;}
.ws40{word-spacing:-12.544000pt;}
.ws2e{word-spacing:-12.454400pt;}
.ws37{word-spacing:-12.364800pt;}
.ws45{word-spacing:-12.140800pt;}
.ws4b{word-spacing:-10.965333pt;}
.ws26{word-spacing:-10.752000pt;}
.ws41{word-spacing:-10.538667pt;}
.ws3{word-spacing:-10.490667pt;}
.ws4c{word-spacing:-10.112000pt;}
.ws2c{word-spacing:-9.408000pt;}
.ws19{word-spacing:-8.392533pt;}
.wsd{word-spacing:-7.552000pt;}
.ws1a{word-spacing:-7.520000pt;}
.ws9{word-spacing:-4.010667pt;}
.ws33{word-spacing:-1.152000pt;}
.ws3c{word-spacing:-1.088000pt;}
.ws13{word-spacing:-1.024000pt;}
.ws3b{word-spacing:-0.960000pt;}
.ws30{word-spacing:-0.832000pt;}
.ws1e{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.576000pt;}
.ws24{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.448000pt;}
.ws12{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.320000pt;}
.wsf{word-spacing:-0.256000pt;}
.ws29{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.128000pt;}
.ws16{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:0.042667pt;}
.ws1c{word-spacing:0.064000pt;}
.wsa{word-spacing:0.106667pt;}
.ws31{word-spacing:0.128000pt;}
.ws2f{word-spacing:0.192000pt;}
.ws20{word-spacing:0.213333pt;}
.ws2d{word-spacing:0.256000pt;}
.ws14{word-spacing:0.320000pt;}
.ws39{word-spacing:0.384000pt;}
.ws4e{word-spacing:0.426667pt;}
.ws10{word-spacing:0.448000pt;}
.ws17{word-spacing:0.512000pt;}
.ws27{word-spacing:0.576000pt;}
.ws28{word-spacing:0.640000pt;}
.ws36{word-spacing:0.704000pt;}
.ws25{word-spacing:0.768000pt;}
.ws23{word-spacing:0.832000pt;}
.ws34{word-spacing:0.960000pt;}
.ws35{word-spacing:1.024000pt;}
.ws42{word-spacing:1.152000pt;}
.ws43{word-spacing:1.280000pt;}
.ws7{word-spacing:1.600000pt;}
.ws2a{word-spacing:2.133333pt;}
.ws4{word-spacing:2.560000pt;}
.ws44{word-spacing:2.752000pt;}
.ws22{word-spacing:3.456000pt;}
.wse{word-spacing:3.733333pt;}
.ws0{word-spacing:129.952000pt;}
._12{margin-left:-843.396267pt;}
._17{margin-left:-13.744000pt;}
._15{margin-left:-12.597333pt;}
._18{margin-left:-11.212800pt;}
._1b{margin-left:-9.344000pt;}
._1a{margin-left:-7.417600pt;}
._f{margin-left:-6.458667pt;}
._e{margin-left:-5.362133pt;}
._a{margin-left:-3.680000pt;}
._9{margin-left:-2.186667pt;}
._b{margin-left:-1.120000pt;}
._0{width:1.221333pt;}
._d{width:2.176000pt;}
._2{width:3.264000pt;}
._c{width:4.646400pt;}
._11{width:5.751467pt;}
._8{width:7.413333pt;}
._13{width:8.499200pt;}
._10{width:9.721600pt;}
._14{width:10.790400pt;}
._19{width:12.263200pt;}
._1{width:20.538667pt;}
._7{width:22.026667pt;}
._6{width:26.293333pt;}
._16{width:28.129867pt;}
._5{width:64.938667pt;}
._3{width:66.826667pt;}
._4{width:68.714667pt;}
.fs9{font-size:29.866667pt;}
.fs8{font-size:31.733333pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:44.800000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs6{font-size:370.801067pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y47{bottom:104.000000pt;}
.y129{bottom:104.213333pt;}
.y22{bottom:105.286000pt;}
.y198{bottom:107.740000pt;}
.y1d8{bottom:109.600000pt;}
.y155{bottom:110.005333pt;}
.y205{bottom:111.607333pt;}
.y57{bottom:117.333333pt;}
.y82{bottom:121.073333pt;}
.y128{bottom:123.541333pt;}
.y46{bottom:124.000000pt;}
.y20{bottom:124.758000pt;}
.y204{bottom:128.140667pt;}
.y154{bottom:129.605333pt;}
.y1d7{bottom:130.000000pt;}
.y56{bottom:130.666667pt;}
.y7a{bottom:134.406667pt;}
.y81{bottom:141.073333pt;}
.y127{bottom:143.013333pt;}
.y45{bottom:144.000000pt;}
.y21{bottom:144.358000pt;}
.y203{bottom:144.674000pt;}
.y197{bottom:146.416000pt;}
.ye5{bottom:147.740000pt;}
.y153{bottom:149.205333pt;}
.y1d6{bottom:150.400000pt;}
.yc7{bottom:154.406667pt;}
.y55{bottom:157.333333pt;}
.y1b5{bottom:158.000000pt;}
.ya6{bottom:161.073333pt;}
.y202{bottom:161.207333pt;}
.y126{bottom:162.485333pt;}
.y44{bottom:164.000000pt;}
.y196{bottom:166.544000pt;}
.y79{bottom:168.544000pt;}
.y152{bottom:168.805333pt;}
.y54{bottom:170.666667pt;}
.y1d5{bottom:170.800000pt;}
.y175{bottom:173.402667pt;}
.y84{bottom:174.406667pt;}
.ya5{bottom:177.333333pt;}
.y1b4{bottom:177.600000pt;}
.y201{bottom:177.740667pt;}
.y125{bottom:181.957333pt;}
.y43{bottom:184.000000pt;}
.ye4{bottom:184.266667pt;}
.y195{bottom:186.672000pt;}
.y151{bottom:188.405333pt;}
.y78{bottom:189.344000pt;}
.ya4{bottom:190.666667pt;}
.y1d4{bottom:191.200000pt;}
.yc6{bottom:193.605333pt;}
.y174{bottom:193.802667pt;}
.y200{bottom:194.274000pt;}
.y1b3{bottom:197.200000pt;}
.y53{bottom:197.333333pt;}
.y124{bottom:201.429333pt;}
.y1f{bottom:203.158000pt;}
.ye3{bottom:203.866667pt;}
.y42{bottom:204.000000pt;}
.y194{bottom:206.800000pt;}
.ya3{bottom:207.740000pt;}
.y150{bottom:208.005333pt;}
.y77{bottom:209.472000pt;}
.y52{bottom:210.666667pt;}
.y1ff{bottom:210.807333pt;}
.y83{bottom:211.072000pt;}
.y1d3{bottom:211.600000pt;}
.yc5{bottom:212.933333pt;}
.y173{bottom:214.202667pt;}
.y1b2{bottom:216.800000pt;}
.y1e{bottom:219.424667pt;}
.y123{bottom:220.901333pt;}
.y103{bottom:221.073333pt;}
.ye2{bottom:223.466667pt;}
.y41{bottom:224.000000pt;}
.y193{bottom:226.928000pt;}
.y1fe{bottom:227.340667pt;}
.y14f{bottom:227.605333pt;}
.y76{bottom:229.600000pt;}
.y1d2{bottom:232.000000pt;}
.yc4{bottom:232.261333pt;}
.y172{bottom:234.602667pt;}
.y1b1{bottom:236.400000pt;}
.y51{bottom:237.333333pt;}
.y122{bottom:240.373333pt;}
.ye1{bottom:243.066667pt;}
.y1d{bottom:243.250400pt;}
.y1fd{bottom:243.874000pt;}
.y40{bottom:244.000000pt;}
.ya2{bottom:244.720000pt;}
.y192{bottom:247.056000pt;}
.y14e{bottom:247.205333pt;}
.y75{bottom:248.800000pt;}
.y226{bottom:250.400000pt;}
.y50{bottom:250.666667pt;}
.yc3{bottom:251.589333pt;}
.y1d1{bottom:252.400000pt;}
.y1a4{bottom:254.406667pt;}
.y171{bottom:255.002667pt;}
.y1b0{bottom:256.000000pt;}
.y102{bottom:258.848000pt;}
.y1c{bottom:259.517067pt;}
.y121{bottom:259.845333pt;}
.y1fc{bottom:260.407333pt;}
.y130{bottom:262.133333pt;}
.ye0{bottom:262.666667pt;}
.y3f{bottom:264.000000pt;}
.ya1{bottom:264.048000pt;}
.y14d{bottom:266.805333pt;}
.y225{bottom:267.066667pt;}
.y191{bottom:267.184000pt;}
.y4f{bottom:267.740000pt;}
.y74{bottom:268.000000pt;}
.y1a3{bottom:270.666667pt;}
.yc2{bottom:270.917333pt;}
.y1d0{bottom:272.800000pt;}
.y170{bottom:275.402667pt;}
.y1af{bottom:275.600000pt;}
.y1b{bottom:275.783733pt;}
.y1fb{bottom:276.940667pt;}
.y80{bottom:277.333333pt;}
.y101{bottom:278.320000pt;}
.y120{bottom:279.317333pt;}
.y12f{bottom:281.733333pt;}
.ydf{bottom:282.266667pt;}
.ya0{bottom:283.376000pt;}
.y224{bottom:283.733333pt;}
.y3e{bottom:284.000000pt;}
.y14c{bottom:286.405333pt;}
.y73{bottom:287.200000pt;}
.y190{bottom:287.312000pt;}
.yc1{bottom:290.245333pt;}
.y7f{bottom:290.666667pt;}
.y1a{bottom:292.050400pt;}
.y1cf{bottom:293.200000pt;}
.y1fa{bottom:293.474000pt;}
.y1ae{bottom:295.200000pt;}
.y16f{bottom:295.802667pt;}
.y4e{bottom:297.333333pt;}
.y100{bottom:297.648000pt;}
.y11f{bottom:298.789333pt;}
.y223{bottom:300.400000pt;}
.y12e{bottom:301.333333pt;}
.yde{bottom:301.866667pt;}
.y9f{bottom:302.704000pt;}
.y3d{bottom:304.000000pt;}
.y14b{bottom:306.005333pt;}
.y72{bottom:306.400000pt;}
.y18f{bottom:307.440000pt;}
.y7e{bottom:307.740000pt;}
.y19{bottom:308.317067pt;}
.yc0{bottom:309.573333pt;}
.y1f9{bottom:310.007333pt;}
.y4d{bottom:310.666667pt;}
.y1ce{bottom:313.600000pt;}
.y1ad{bottom:314.800000pt;}
.y16e{bottom:316.202667pt;}
.yff{bottom:316.976000pt;}
.y11e{bottom:318.261333pt;}
.y12d{bottom:320.933333pt;}
.ydd{bottom:321.466667pt;}
.y9e{bottom:322.032000pt;}
.y3c{bottom:324.000000pt;}
.y18{bottom:324.583733pt;}
.y71{bottom:325.600000pt;}
.y14a{bottom:325.605333pt;}
.y1f8{bottom:326.540667pt;}
.y222{bottom:327.066667pt;}
.y18e{bottom:327.568000pt;}
.ybf{bottom:328.901333pt;}
.y1cd{bottom:334.000000pt;}
.y1ac{bottom:334.400000pt;}
.yfe{bottom:336.304000pt;}
.y16d{bottom:336.602667pt;}
.y11d{bottom:337.733333pt;}
.y12c{bottom:340.533333pt;}
.y17{bottom:340.850400pt;}
.ydc{bottom:341.066667pt;}
.y4c{bottom:341.073333pt;}
.y9d{bottom:341.360000pt;}
.y1f7{bottom:343.074000pt;}
.y3b{bottom:344.000000pt;}
.y70{bottom:344.800000pt;}
.y149{bottom:345.205333pt;}
.y7d{bottom:346.400000pt;}
.y18d{bottom:347.696000pt;}
.ybe{bottom:347.973333pt;}
.y1ab{bottom:354.000000pt;}
.y1cc{bottom:354.400000pt;}
.yfd{bottom:355.632000pt;}
.y16c{bottom:357.002667pt;}
.y16{bottom:357.117067pt;}
.y11c{bottom:357.205333pt;}
.y4b{bottom:357.333333pt;}
.y1f6{bottom:359.607333pt;}
.y12b{bottom:360.133333pt;}
.y9c{bottom:360.688000pt;}
.ydb{bottom:360.794667pt;}
.y221{bottom:363.733333pt;}
.y3a{bottom:364.000000pt;}
.y148{bottom:364.805333pt;}
.y7c{bottom:365.200000pt;}
.ybd{bottom:367.045333pt;}
.y18c{bottom:367.824000pt;}
.y4a{bottom:370.666667pt;}
.y15{bottom:373.383733pt;}
.y1aa{bottom:373.600000pt;}
.y1cb{bottom:374.800000pt;}
.yfc{bottom:374.960000pt;}
.y1f5{bottom:376.140667pt;}
.y11b{bottom:376.677333pt;}
.y16b{bottom:377.402667pt;}
.y1a2{bottom:377.600000pt;}
.y12a{bottom:379.850667pt;}
.y9b{bottom:380.016000pt;}
.yda{bottom:380.122667pt;}
.y220{bottom:380.400000pt;}
.y6f{bottom:383.200000pt;}
.y39{bottom:384.000000pt;}
.y147{bottom:384.405333pt;}
.ybc{bottom:386.117333pt;}
.y49{bottom:387.740000pt;}
.y18b{bottom:387.952000pt;}
.y14{bottom:389.649467pt;}
.y1f4{bottom:392.674000pt;}
.y1a9{bottom:393.200000pt;}
.yfb{bottom:394.288000pt;}
.y1ca{bottom:395.200000pt;}
.y11a{bottom:396.149333pt;}
.y1a1{bottom:396.800000pt;}
.y21f{bottom:397.066667pt;}
.y16a{bottom:397.802667pt;}
.y9a{bottom:399.344000pt;}
.yd9{bottom:399.450667pt;}
.y6e{bottom:402.400000pt;}
.y7b{bottom:402.800000pt;}
.y38{bottom:404.000000pt;}
.y146{bottom:404.005333pt;}
.ybb{bottom:405.189333pt;}
.y18a{bottom:408.080000pt;}
.y1a8{bottom:412.800000pt;}
.y13{bottom:413.476133pt;}
.yfa{bottom:413.616000pt;}
.y21e{bottom:413.733333pt;}
.y1c9{bottom:415.600000pt;}
.y119{bottom:415.621333pt;}
.y1a0{bottom:416.000000pt;}
.y169{bottom:418.202667pt;}
.y99{bottom:418.672000pt;}
.yd8{bottom:418.778667pt;}
.y1f3{bottom:420.546000pt;}
.y6d{bottom:421.600000pt;}
.y145{bottom:423.733333pt;}
.y37{bottom:424.000000pt;}
.y48{bottom:424.128000pt;}
.yba{bottom:424.261333pt;}
.y189{bottom:428.208000pt;}
.y21d{bottom:430.400000pt;}
.y1a7{bottom:432.400000pt;}
.yf9{bottom:432.944000pt;}
.y118{bottom:435.093333pt;}
.y19f{bottom:435.200000pt;}
.y1c8{bottom:436.000000pt;}
.y98{bottom:438.069333pt;}
.yd7{bottom:438.106667pt;}
.y168{bottom:438.602667pt;}
.y6c{bottom:440.800000pt;}
.yb9{bottom:443.333333pt;}
.y144{bottom:443.733333pt;}
.y36{bottom:444.000000pt;}
.y21c{bottom:447.066667pt;}
.y1f2{bottom:447.893333pt;}
.y188{bottom:448.336000pt;}
.y1a6{bottom:452.000000pt;}
.yf8{bottom:452.272000pt;}
.y12{bottom:452.676133pt;}
.y19e{bottom:454.400000pt;}
.y117{bottom:454.565333pt;}
.y1c7{bottom:456.400000pt;}
.y97{bottom:457.397333pt;}
.yd6{bottom:457.434667pt;}
.y167{bottom:459.002667pt;}
.y6b{bottom:460.000000pt;}
.yb8{bottom:462.400000pt;}
.y143{bottom:463.733333pt;}
.y35{bottom:464.000000pt;}
.y187{bottom:468.464000pt;}
.y11{bottom:468.942800pt;}
.yf7{bottom:471.600000pt;}
.y19d{bottom:473.600000pt;}
.y116{bottom:474.037333pt;}
.y96{bottom:476.725333pt;}
.yd5{bottom:476.762667pt;}
.y1c6{bottom:476.800000pt;}
.y6a{bottom:479.200000pt;}
.y166{bottom:479.402667pt;}
.y21b{bottom:480.266667pt;}
.y142{bottom:483.733333pt;}
.y34{bottom:484.000000pt;}
.y1f1{bottom:485.002667pt;}
.y186{bottom:488.592000pt;}
.yf6{bottom:491.200000pt;}
.y10{bottom:492.767600pt;}
.y19c{bottom:492.800000pt;}
.y115{bottom:493.509333pt;}
.y95{bottom:496.053333pt;}
.yd4{bottom:496.090667pt;}
.y21a{bottom:496.800000pt;}
.y1c5{bottom:497.200000pt;}
.y1f0{bottom:498.336000pt;}
.y69{bottom:498.400000pt;}
.y165{bottom:499.674667pt;}
.yb7{bottom:500.469333pt;}
.y141{bottom:503.733333pt;}
.y33{bottom:504.000000pt;}
.y185{bottom:508.320000pt;}
.yf{bottom:509.034267pt;}
.yf5{bottom:510.800000pt;}
.y1ef{bottom:511.669333pt;}
.y19b{bottom:512.000000pt;}
.y114{bottom:512.981333pt;}
.y219{bottom:513.333333pt;}
.y94{bottom:515.381333pt;}
.yd3{bottom:515.418667pt;}
.y68{bottom:517.600000pt;}
.yb6{bottom:519.541333pt;}
.y164{bottom:519.946667pt;}
.y140{bottom:523.733333pt;}
.y32{bottom:524.000000pt;}
.y1ee{bottom:525.002667pt;}
.ye{bottom:525.300933pt;}
.y184{bottom:528.048000pt;}
.y218{bottom:529.866667pt;}
.yf4{bottom:530.400000pt;}
.y19a{bottom:531.200000pt;}
.y113{bottom:532.453333pt;}
.y93{bottom:534.709333pt;}
.yd2{bottom:534.746667pt;}
.y67{bottom:536.800000pt;}
.y1c4{bottom:538.000000pt;}
.y1ed{bottom:538.336000pt;}
.yb5{bottom:538.613333pt;}
.y163{bottom:540.218667pt;}
.yd{bottom:541.567600pt;}
.y13f{bottom:543.733333pt;}
.y31{bottom:544.000000pt;}
.y217{bottom:546.400000pt;}
.y183{bottom:547.776000pt;}
.y1a5{bottom:550.000000pt;}
.y199{bottom:550.400000pt;}
.y1ec{bottom:551.669333pt;}
.y112{bottom:551.925333pt;}
.y92{bottom:554.037333pt;}
.yd1{bottom:554.074667pt;}
.y66{bottom:556.000000pt;}
.yb4{bottom:557.685333pt;}
.yc{bottom:557.834267pt;}
.y1c3{bottom:558.400000pt;}
.y162{bottom:560.490667pt;}
.y216{bottom:562.933333pt;}
.y13e{bottom:563.733333pt;}
.y30{bottom:564.000000pt;}
.y1eb{bottom:565.002667pt;}
.y182{bottom:567.504000pt;}
.yf3{bottom:569.600000pt;}
.y111{bottom:571.397333pt;}
.y91{bottom:573.365333pt;}
.yd0{bottom:573.402667pt;}
.yb{bottom:574.100933pt;}
.y65{bottom:575.200000pt;}
.yb3{bottom:576.757333pt;}
.y1ea{bottom:578.336000pt;}
.y1c2{bottom:578.800000pt;}
.y215{bottom:579.466667pt;}
.y161{bottom:580.762667pt;}
.y13d{bottom:583.733333pt;}
.y2f{bottom:584.000000pt;}
.y181{bottom:587.232000pt;}
.yf2{bottom:589.200000pt;}
.ya{bottom:590.367600pt;}
.y110{bottom:590.869333pt;}
.y1e9{bottom:591.669333pt;}
.y90{bottom:592.693333pt;}
.ycf{bottom:592.730667pt;}
.y64{bottom:594.400000pt;}
.yb2{bottom:595.829333pt;}
.y214{bottom:596.000000pt;}
.y1c1{bottom:599.200000pt;}
.y160{bottom:601.034667pt;}
.y13c{bottom:603.733333pt;}
.y2e{bottom:604.000000pt;}
.y1e8{bottom:605.002667pt;}
.y9{bottom:606.634267pt;}
.y180{bottom:606.960000pt;}
.yf1{bottom:608.800000pt;}
.y10f{bottom:610.341333pt;}
.y8f{bottom:612.021333pt;}
.yce{bottom:612.058667pt;}
.y213{bottom:612.533333pt;}
.y63{bottom:613.600000pt;}
.yb1{bottom:614.901333pt;}
.y1e7{bottom:618.336000pt;}
.y1c0{bottom:619.600000pt;}
.y15f{bottom:621.306667pt;}
.y13b{bottom:623.733333pt;}
.y2d{bottom:624.000000pt;}
.y17f{bottom:626.688000pt;}
.yf0{bottom:628.400000pt;}
.y212{bottom:629.066667pt;}
.y10e{bottom:629.813333pt;}
.y8{bottom:630.460933pt;}
.y8e{bottom:631.349333pt;}
.ycd{bottom:631.386667pt;}
.y1e6{bottom:631.669333pt;}
.y62{bottom:632.800000pt;}
.yb0{bottom:633.973333pt;}
.y1bf{bottom:640.000000pt;}
.y15e{bottom:641.578667pt;}
.y13a{bottom:643.733333pt;}
.y2c{bottom:644.000000pt;}
.y1e5{bottom:645.002667pt;}
.y211{bottom:645.600000pt;}
.y17e{bottom:646.416000pt;}
.yef{bottom:648.000000pt;}
.y10d{bottom:649.285333pt;}
.y8d{bottom:650.677333pt;}
.ycc{bottom:650.714667pt;}
.y61{bottom:652.000000pt;}
.yaf{bottom:653.045333pt;}
.y1e4{bottom:658.336000pt;}
.y1be{bottom:660.400000pt;}
.y15d{bottom:661.850667pt;}
.y210{bottom:662.133333pt;}
.y139{bottom:663.733333pt;}
.y2b{bottom:664.000000pt;}
.y17d{bottom:666.144000pt;}
.yee{bottom:667.600000pt;}
.y10c{bottom:668.757333pt;}
.y8c{bottom:670.005333pt;}
.ycb{bottom:670.042667pt;}
.y7{bottom:670.848267pt;}
.y60{bottom:671.200000pt;}
.y1e3{bottom:671.669333pt;}
.yae{bottom:672.117333pt;}
.y20f{bottom:678.666667pt;}
.y1bd{bottom:680.800000pt;}
.y15c{bottom:682.122667pt;}
.y138{bottom:683.733333pt;}
.y2a{bottom:684.000000pt;}
.y1e2{bottom:685.002667pt;}
.y17c{bottom:685.872000pt;}
.yed{bottom:687.200000pt;}
.y10b{bottom:688.229333pt;}
.y8b{bottom:689.333333pt;}
.yca{bottom:689.370667pt;}
.y6{bottom:690.314933pt;}
.y5f{bottom:690.400000pt;}
.yad{bottom:691.189333pt;}
.y20e{bottom:695.200000pt;}
.y1e1{bottom:698.336000pt;}
.y1bc{bottom:701.200000pt;}
.y15b{bottom:702.394667pt;}
.y137{bottom:703.733333pt;}
.y29{bottom:704.000000pt;}
.y17b{bottom:705.626667pt;}
.yec{bottom:706.800000pt;}
.y10a{bottom:707.701333pt;}
.y8a{bottom:708.666667pt;}
.yc9{bottom:708.698667pt;}
.y5e{bottom:709.600000pt;}
.yac{bottom:710.261333pt;}
.y1e0{bottom:711.669333pt;}
.y20d{bottom:711.733333pt;}
.y1bb{bottom:721.600000pt;}
.y15a{bottom:722.640000pt;}
.y136{bottom:723.733333pt;}
.y28{bottom:724.000000pt;}
.y1df{bottom:725.002667pt;}
.y17a{bottom:725.354667pt;}
.yeb{bottom:726.400000pt;}
.y109{bottom:727.173333pt;}
.yc8{bottom:728.026667pt;}
.y20c{bottom:728.266667pt;}
.y5d{bottom:728.800000pt;}
.yab{bottom:729.306667pt;}
.y1de{bottom:738.336000pt;}
.y1ba{bottom:742.000000pt;}
.y159{bottom:742.912000pt;}
.y135{bottom:743.733333pt;}
.y27{bottom:744.000000pt;}
.y20b{bottom:744.800000pt;}
.y179{bottom:745.082667pt;}
.yea{bottom:746.000000pt;}
.y108{bottom:746.645333pt;}
.y89{bottom:747.354667pt;}
.y5c{bottom:748.000000pt;}
.yaa{bottom:748.378667pt;}
.y5{bottom:749.466667pt;}
.y1dd{bottom:751.669333pt;}
.y20a{bottom:761.333333pt;}
.y1b9{bottom:762.400000pt;}
.y158{bottom:763.184000pt;}
.y134{bottom:763.733333pt;}
.y26{bottom:764.000000pt;}
.y178{bottom:764.810667pt;}
.y1dc{bottom:765.002667pt;}
.ye9{bottom:765.600000pt;}
.y107{bottom:766.117333pt;}
.y88{bottom:766.682667pt;}
.y5b{bottom:767.200000pt;}
.ya9{bottom:767.450667pt;}
.y4{bottom:775.600000pt;}
.y209{bottom:777.866667pt;}
.y1db{bottom:778.336000pt;}
.y1b8{bottom:782.800000pt;}
.y157{bottom:783.456000pt;}
.y133{bottom:783.733333pt;}
.y25{bottom:784.000000pt;}
.y177{bottom:784.538667pt;}
.ye8{bottom:785.200000pt;}
.y106{bottom:785.589333pt;}
.y87{bottom:786.010667pt;}
.y5a{bottom:786.400000pt;}
.ya8{bottom:786.522667pt;}
.y1da{bottom:791.669333pt;}
.y208{bottom:794.400000pt;}
.y1b7{bottom:803.200000pt;}
.y156{bottom:803.728000pt;}
.y132{bottom:803.733333pt;}
.y24{bottom:804.000000pt;}
.y176{bottom:804.266667pt;}
.ye7{bottom:804.800000pt;}
.y1d9{bottom:805.002667pt;}
.y105{bottom:805.061333pt;}
.y86{bottom:805.338667pt;}
.ya7{bottom:805.594667pt;}
.y59{bottom:805.600000pt;}
.y207{bottom:810.933333pt;}
.y3{bottom:821.733333pt;}
.y1b6{bottom:823.600000pt;}
.y131{bottom:823.733333pt;}
.y23{bottom:824.000000pt;}
.ye6{bottom:824.400000pt;}
.y104{bottom:824.533333pt;}
.y85{bottom:824.666667pt;}
.y58{bottom:824.800000pt;}
.y206{bottom:827.466667pt;}
.hb{height:21.269167pt;}
.he{height:26.945443pt;}
.h15{height:31.992188pt;}
.h2{height:33.769531pt;}
.h14{height:34.730667pt;}
.h6{height:35.546875pt;}
.hc{height:36.229167pt;}
.h1{height:36.796875pt;}
.h4{height:37.333333pt;}
.hf{height:43.413333pt;}
.h5{height:44.156250pt;}
.h7{height:45.286458pt;}
.h8{height:45.290192pt;}
.ha{height:54.343750pt;}
.h11{height:54.450417pt;}
.h13{height:59.053958pt;}
.h10{height:59.139292pt;}
.hd{height:59.160625pt;}
.h12{height:59.267292pt;}
.h3{height:90.572917pt;}
.h9{height:259.560747pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x7{left:73.228400pt;}
.x3{left:86.456667pt;}
.x4{left:99.767600pt;}
.x6{left:113.232000pt;}
.x2{left:120.000000pt;}
.x5{left:556.250000pt;}
}




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