
    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_8ba6d73b1ac9f991c5b6b206.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_57ce90603b18b3a575fc7f9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.891113;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_bdac9939c85a3614b8497d26.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.068848;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_d8487c5b39b9f54d8bdcf683.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ffa0716218445063211bb76f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_6f2367dc7840146468954d38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-50.360400px;}
.v5{vertical-align:-30.691200px;}
.v3{vertical-align:-13.574400px;}
.v1{vertical-align:-4.251600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.685200px;}
.v7{vertical-align:33.361800px;}
.v4{vertical-align:45.514200px;}
.ls4{letter-spacing:-2.664000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.035400px;}
.ls5{letter-spacing:0.360000px;}
.lsc{letter-spacing:3.585000px;}
.ls7{letter-spacing:3.669600px;}
.ls9{letter-spacing:5.476800px;}
.lsb{letter-spacing:7.468200px;}
.lsa{letter-spacing:7.771800px;}
.ls8{letter-spacing:9.323400px;}
.ls2{letter-spacing:197.820000px;}
.ls1{letter-spacing:198.000000px;}
.ls3{letter-spacing:958.243800px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws8f{word-spacing:-62.136000px;}
.ws9b{word-spacing:-62.064000px;}
.wsd2{word-spacing:-61.992000px;}
.ws9a{word-spacing:-61.488000px;}
.ws6e{word-spacing:-61.416000px;}
.ws1e{word-spacing:-58.248000px;}
.ws9f{word-spacing:-55.512000px;}
.wsd9{word-spacing:-54.288000px;}
.wseb{word-spacing:-48.816000px;}
.wsea{word-spacing:-46.944000px;}
.wse9{word-spacing:-39.744000px;}
.wsfe{word-spacing:-21.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws41{word-spacing:-15.000000px;}
.ws64{word-spacing:-11.880000px;}
.wsac{word-spacing:-8.784000px;}
.wsf2{word-spacing:-7.848000px;}
.ws8b{word-spacing:-7.560000px;}
.wscd{word-spacing:-6.984000px;}
.ws9d{word-spacing:-6.552000px;}
.wse3{word-spacing:-6.408000px;}
.wsf1{word-spacing:-5.328000px;}
.ws29{word-spacing:-5.256000px;}
.wscb{word-spacing:-5.184000px;}
.wsa2{word-spacing:-5.112000px;}
.ws6{word-spacing:-5.040000px;}
.ws67{word-spacing:-4.680000px;}
.ws9c{word-spacing:-4.536000px;}
.wsad{word-spacing:-4.464000px;}
.ws6a{word-spacing:-4.320000px;}
.ws103{word-spacing:-4.104000px;}
.wsd7{word-spacing:-3.960000px;}
.ws5b{word-spacing:-3.888000px;}
.wsf0{word-spacing:-3.816000px;}
.ws58{word-spacing:-3.672000px;}
.wse7{word-spacing:-3.528000px;}
.wsa3{word-spacing:-3.456000px;}
.wse4{word-spacing:-3.312000px;}
.wse8{word-spacing:-3.300000px;}
.wsda{word-spacing:-3.240000px;}
.ws13{word-spacing:-3.096000px;}
.wsa4{word-spacing:-2.952000px;}
.wse{word-spacing:-2.880000px;}
.ws104{word-spacing:-2.808000px;}
.ws98{word-spacing:-2.448000px;}
.ws2a{word-spacing:-2.376000px;}
.wsdb{word-spacing:-2.304000px;}
.ws7d{word-spacing:-2.160000px;}
.wsd{word-spacing:-2.016000px;}
.wsc1{word-spacing:-1.944000px;}
.ws5f{word-spacing:-1.872000px;}
.ws3d{word-spacing:-1.656000px;}
.ws7e{word-spacing:-1.584000px;}
.ws5e{word-spacing:-1.512000px;}
.ws7{word-spacing:-1.440000px;}
.ws1{word-spacing:-1.296000px;}
.ws90{word-spacing:-1.224000px;}
.ws71{word-spacing:-1.152000px;}
.ws6d{word-spacing:-1.080000px;}
.ws12{word-spacing:-0.936000px;}
.wsd0{word-spacing:-0.864000px;}
.ws22{word-spacing:-0.792000px;}
.ws15{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.648000px;}
.ws77{word-spacing:-0.504000px;}
.ws3e{word-spacing:-0.432000px;}
.ws2b{word-spacing:-0.360000px;}
.ws33{word-spacing:-0.216000px;}
.ws69{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wse2{word-spacing:0.072000px;}
.ws1f{word-spacing:0.144000px;}
.ws70{word-spacing:0.216000px;}
.ws3f{word-spacing:0.288000px;}
.ws93{word-spacing:0.432000px;}
.ws44{word-spacing:0.648000px;}
.wsa8{word-spacing:0.720000px;}
.ws5a{word-spacing:0.792000px;}
.wsdf{word-spacing:0.936000px;}
.ws3a{word-spacing:1.008000px;}
.wsa7{word-spacing:1.080000px;}
.ws97{word-spacing:1.152000px;}
.ws18{word-spacing:1.368000px;}
.ws5c{word-spacing:1.440000px;}
.ws16{word-spacing:1.512000px;}
.ws10{word-spacing:1.584000px;}
.wsca{word-spacing:1.656000px;}
.ws39{word-spacing:1.728000px;}
.ws6f{word-spacing:1.800000px;}
.wsbf{word-spacing:1.872000px;}
.ws92{word-spacing:1.944000px;}
.ws3c{word-spacing:2.016000px;}
.wsbd{word-spacing:2.040000px;}
.ws36{word-spacing:2.088000px;}
.ws8a{word-spacing:2.160000px;}
.ws68{word-spacing:2.232000px;}
.ws61{word-spacing:2.376000px;}
.ws59{word-spacing:2.448000px;}
.wsa{word-spacing:2.664000px;}
.ws40{word-spacing:2.736000px;}
.ws91{word-spacing:2.808000px;}
.ws9e{word-spacing:2.880000px;}
.ws1d{word-spacing:2.952000px;}
.ws95{word-spacing:3.024000px;}
.ws87{word-spacing:3.096000px;}
.ws62{word-spacing:3.168000px;}
.ws45{word-spacing:3.240000px;}
.ws99{word-spacing:3.312000px;}
.ws65{word-spacing:3.384000px;}
.ws96{word-spacing:3.528000px;}
.ws102{word-spacing:3.600000px;}
.ws6b{word-spacing:3.672000px;}
.ws75{word-spacing:3.744000px;}
.wsb3{word-spacing:3.780000px;}
.ws35{word-spacing:3.816000px;}
.ws7c{word-spacing:3.888000px;}
.ws2c{word-spacing:4.032000px;}
.ws88{word-spacing:4.248000px;}
.ws1c{word-spacing:4.320000px;}
.ws17{word-spacing:4.392000px;}
.wse1{word-spacing:4.464000px;}
.ws57{word-spacing:4.536000px;}
.ws43{word-spacing:4.560000px;}
.ws94{word-spacing:4.608000px;}
.ws14{word-spacing:4.680000px;}
.ws9{word-spacing:4.752000px;}
.ws19{word-spacing:4.824000px;}
.wsb2{word-spacing:4.860000px;}
.ws66{word-spacing:4.896000px;}
.ws7b{word-spacing:4.968000px;}
.ws30{word-spacing:5.040000px;}
.wscc{word-spacing:5.256000px;}
.wsd6{word-spacing:5.328000px;}
.ws8{word-spacing:5.400000px;}
.wsc8{word-spacing:5.472000px;}
.ws1b{word-spacing:5.544000px;}
.wsbe{word-spacing:5.616000px;}
.ws6c{word-spacing:5.688000px;}
.wsc7{word-spacing:5.832000px;}
.wsa9{word-spacing:5.940000px;}
.wsd3{word-spacing:5.976000px;}
.ws32{word-spacing:6.048000px;}
.wsa6{word-spacing:6.120000px;}
.wsb{word-spacing:6.192000px;}
.ws28{word-spacing:6.264000px;}
.wsa1{word-spacing:6.336000px;}
.ws38{word-spacing:6.408000px;}
.ws78{word-spacing:6.552000px;}
.ws20{word-spacing:6.624000px;}
.ws1a{word-spacing:6.696000px;}
.ws84{word-spacing:6.840000px;}
.ws3b{word-spacing:6.912000px;}
.wse5{word-spacing:7.056000px;}
.wsc{word-spacing:7.128000px;}
.ws83{word-spacing:7.200000px;}
.wsfc{word-spacing:7.272000px;}
.ws26{word-spacing:7.344000px;}
.wsc6{word-spacing:7.416000px;}
.wsff{word-spacing:7.488000px;}
.ws86{word-spacing:7.560000px;}
.wsc4{word-spacing:7.632000px;}
.ws85{word-spacing:7.776000px;}
.wsb4{word-spacing:7.848000px;}
.ws37{word-spacing:7.992000px;}
.ws89{word-spacing:8.064000px;}
.ws4a{word-spacing:8.136000px;}
.wsc3{word-spacing:8.280000px;}
.ws8c{word-spacing:8.712000px;}
.wsae{word-spacing:9.000000px;}
.wsb8{word-spacing:9.072000px;}
.ws7f{word-spacing:9.216000px;}
.wsdc{word-spacing:9.288000px;}
.ws101{word-spacing:9.360000px;}
.wsf{word-spacing:9.504000px;}
.ws34{word-spacing:9.576000px;}
.ws8d{word-spacing:9.648000px;}
.wsa0{word-spacing:9.792000px;}
.ws51{word-spacing:9.864000px;}
.wsab{word-spacing:10.008000px;}
.wsc5{word-spacing:10.080000px;}
.ws74{word-spacing:10.152000px;}
.wsaf{word-spacing:10.224000px;}
.wse6{word-spacing:10.296000px;}
.wsc2{word-spacing:10.440000px;}
.wsb9{word-spacing:10.512000px;}
.ws63{word-spacing:10.584000px;}
.wsbc{word-spacing:10.656000px;}
.ws82{word-spacing:10.728000px;}
.ws24{word-spacing:10.944000px;}
.wsaa{word-spacing:11.088000px;}
.ws79{word-spacing:11.160000px;}
.ws46{word-spacing:11.304000px;}
.wsb0{word-spacing:11.520000px;}
.ws4d{word-spacing:11.664000px;}
.ws81{word-spacing:11.736000px;}
.ws52{word-spacing:11.808000px;}
.ws5d{word-spacing:11.880000px;}
.wsb6{word-spacing:11.952000px;}
.ws4f{word-spacing:12.600000px;}
.ws8e{word-spacing:12.816000px;}
.ws21{word-spacing:12.888000px;}
.wsba{word-spacing:13.248000px;}
.wsb5{word-spacing:13.464000px;}
.wsed{word-spacing:14.328000px;}
.wsde{word-spacing:14.400000px;}
.ws47{word-spacing:15.192000px;}
.ws31{word-spacing:15.264000px;}
.ws56{word-spacing:15.768000px;}
.ws42{word-spacing:16.200000px;}
.ws100{word-spacing:16.272000px;}
.wsc9{word-spacing:16.320000px;}
.ws76{word-spacing:16.344000px;}
.wsd4{word-spacing:16.620000px;}
.ws4c{word-spacing:16.704000px;}
.ws72{word-spacing:16.848000px;}
.ws73{word-spacing:17.424000px;}
.wsd5{word-spacing:17.568000px;}
.ws55{word-spacing:18.144000px;}
.wsc0{word-spacing:18.216000px;}
.ws60{word-spacing:18.288000px;}
.ws54{word-spacing:18.864000px;}
.ws80{word-spacing:18.936000px;}
.wscf{word-spacing:19.008000px;}
.ws27{word-spacing:20.088000px;}
.ws4e{word-spacing:20.160000px;}
.ws49{word-spacing:20.520000px;}
.ws53{word-spacing:20.736000px;}
.ws50{word-spacing:21.024000px;}
.wsce{word-spacing:21.528000px;}
.ws2e{word-spacing:22.104000px;}
.wsdd{word-spacing:22.896000px;}
.ws48{word-spacing:22.968000px;}
.ws2f{word-spacing:23.760000px;}
.ws25{word-spacing:24.048000px;}
.wse0{word-spacing:24.336000px;}
.wsd8{word-spacing:25.704000px;}
.wsef{word-spacing:26.784000px;}
.wsb7{word-spacing:28.008000px;}
.ws23{word-spacing:28.296000px;}
.wsbb{word-spacing:29.520000px;}
.ws4b{word-spacing:30.096000px;}
.wsb1{word-spacing:32.904000px;}
.wsec{word-spacing:33.264000px;}
.ws2d{word-spacing:41.256000px;}
.wsa5{word-spacing:46.020000px;}
.wsd1{word-spacing:53.040000px;}
.wsee{word-spacing:54.864000px;}
.ws4{word-spacing:126.000000px;}
.wsf6{word-spacing:422.029800px;}
.wsf9{word-spacing:630.413400px;}
.wsfa{word-spacing:648.413400px;}
.wsfb{word-spacing:666.413400px;}
.wsf7{word-spacing:675.413400px;}
.wsf8{word-spacing:693.413400px;}
.ws11{word-spacing:728.442000px;}
.wsf3{word-spacing:2689.725000px;}
.wsf4{word-spacing:2689.725600px;}
.wsf5{word-spacing:2701.677000px;}
.wsfd{word-spacing:2701.677600px;}
.ws2{word-spacing:2817.669000px;}
._30{margin-left:-2073.784800px;}
._4f{margin-left:-25.064400px;}
._40{margin-left:-22.778400px;}
._b{margin-left:-20.354400px;}
._31{margin-left:-16.884000px;}
._4e{margin-left:-9.266400px;}
._2c{margin-left:-8.186400px;}
._f{margin-left:-6.900000px;}
._2{margin-left:-5.854800px;}
._3{margin-left:-4.544400px;}
._0{margin-left:-3.390000px;}
._1{margin-left:-2.118000px;}
._c{margin-left:-1.029600px;}
._4{width:1.332000px;}
._8{width:3.276000px;}
._12{width:4.608000px;}
._39{width:5.633400px;}
._27{width:7.312200px;}
._2b{width:8.447400px;}
._13{width:9.720000px;}
._17{width:11.802600px;}
._34{width:16.956000px;}
._35{width:18.025800px;}
._33{width:21.498600px;}
._16{width:22.921200px;}
._3e{width:26.763000px;}
._36{width:52.926600px;}
._25{width:108.144000px;}
._10{width:130.248000px;}
._38{width:150.028200px;}
._37{width:151.061400px;}
._e{width:156.744000px;}
._3d{width:164.736000px;}
._2d{width:169.992000px;}
._3c{width:173.664000px;}
._19{width:179.136000px;}
._22{width:181.656000px;}
._2a{width:185.400000px;}
._d{width:187.056000px;}
._9{width:188.496000px;}
._3f{width:190.368000px;}
._7{width:191.808000px;}
._6{width:193.248000px;}
._1b{width:194.832000px;}
._1f{width:196.200000px;}
._5{width:198.000000px;}
._14{width:199.296000px;}
._1a{width:201.672000px;}
._32{width:203.184000px;}
._23{width:205.560000px;}
._1d{width:210.880200px;}
._3a{width:286.281000px;}
._47{width:335.407800px;}
._4c{width:361.411200px;}
._4b{width:367.423800px;}
._4d{width:369.397200px;}
._46{width:375.390000px;}
._4a{width:376.423800px;}
._49{width:393.390000px;}
._45{width:408.348000px;}
._29{width:446.278200px;}
._41{width:450.234600px;}
._42{width:468.760800px;}
._20{width:474.484800px;}
._24{width:520.444800px;}
._2f{width:643.504800px;}
._21{width:650.148000px;}
._43{width:666.413400px;}
._26{width:679.917600px;}
._44{width:684.413400px;}
._48{width:693.413400px;}
._3b{width:749.580600px;}
._2e{width:1367.955600px;}
._11{width:1507.977600px;}
._28{width:1797.933000px;}
._1c{width:2113.797000px;}
._1e{width:2116.469400px;}
._a{width:2171.901600px;}
._50{width:2399.781000px;}
._18{width:2607.147600px;}
._15{width:2625.147000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:72.720000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y184{bottom:50.519550px;}
.y7e{bottom:55.119900px;}
.y80{bottom:55.136100px;}
.y82{bottom:57.829050px;}
.ya6{bottom:58.476300px;}
.y157{bottom:59.289150px;}
.y51{bottom:59.902200px;}
.y226{bottom:60.624600px;}
.yf2{bottom:62.118150px;}
.y1a3{bottom:63.155850px;}
.y10f{bottom:64.985100px;}
.y10c{bottom:65.331150px;}
.y31{bottom:65.702550px;}
.yb4{bottom:66.545550px;}
.y113{bottom:66.854400px;}
.ybc{bottom:67.756050px;}
.yb3{bottom:68.363100px;}
.ye1{bottom:69.133650px;}
.y170{bottom:70.313250px;}
.y67{bottom:80.106150px;}
.yb0{bottom:81.612150px;}
.y16c{bottom:82.368000px;}
.y3{bottom:84.926400px;}
.y1b8{bottom:84.972300px;}
.y1ee{bottom:85.529700px;}
.y183{bottom:85.769550px;}
.yc0{bottom:86.035350px;}
.y1a1{bottom:87.718350px;}
.ye9{bottom:88.039950px;}
.ycd{bottom:88.134450px;}
.ybb{bottom:88.756050px;}
.y7d{bottom:90.369900px;}
.y16f{bottom:91.313250px;}
.y156{bottom:94.539150px;}
.y50{bottom:95.152200px;}
.y225{bottom:95.874600px;}
.yf1{bottom:97.368150px;}
.y10b{bottom:100.581150px;}
.y30{bottom:100.952550px;}
.y112{bottom:102.104400px;}
.ye0{bottom:104.383650px;}
.y234{bottom:106.486200px;}
.y66{bottom:115.356150px;}
.yaf{bottom:116.862150px;}
.y16b{bottom:117.618000px;}
.y2{bottom:120.176400px;}
.y1b7{bottom:120.222300px;}
.y182{bottom:121.019550px;}
.ybf{bottom:121.285350px;}
.y141{bottom:122.005800px;}
.y1a0{bottom:122.968350px;}
.ye8{bottom:123.289950px;}
.ycc{bottom:123.384450px;}
.y7c{bottom:125.619900px;}
.y155{bottom:129.789150px;}
.y4f{bottom:130.402200px;}
.y224{bottom:131.124600px;}
.yf0{bottom:132.618150px;}
.y10a{bottom:135.831150px;}
.y2f{bottom:136.202550px;}
.y111{bottom:137.354400px;}
.ydf{bottom:139.633650px;}
.y1da{bottom:140.467800px;}
.y233{bottom:141.736200px;}
.y65{bottom:150.606150px;}
.yae{bottom:152.112150px;}
.y16a{bottom:152.868000px;}
.y1{bottom:155.426400px;}
.y1b6{bottom:155.472300px;}
.y181{bottom:156.269550px;}
.ybe{bottom:156.535350px;}
.y140{bottom:157.255800px;}
.y19f{bottom:158.218350px;}
.ye7{bottom:158.539950px;}
.ycb{bottom:158.634450px;}
.y1db{bottom:159.217800px;}
.y7b{bottom:160.869900px;}
.y1fd{bottom:164.279850px;}
.y154{bottom:165.039150px;}
.y4e{bottom:165.652200px;}
.y223{bottom:166.374600px;}
.y1d9{bottom:167.467800px;}
.yef{bottom:167.868150px;}
.y231{bottom:170.063700px;}
.y109{bottom:171.081150px;}
.y2e{bottom:171.452550px;}
.y1ec{bottom:172.260150px;}
.y110{bottom:172.604400px;}
.y232{bottom:176.986200px;}
.y64{bottom:185.856150px;}
.yad{bottom:187.362150px;}
.y169{bottom:188.118000px;}
.y1fc{bottom:191.279850px;}
.y180{bottom:191.519550px;}
.y13f{bottom:192.505800px;}
.y19e{bottom:193.468350px;}
.ye6{bottom:193.789950px;}
.yca{bottom:193.884450px;}
.yb8{bottom:193.906650px;}
.y1b5{bottom:195.730200px;}
.y7a{bottom:196.119900px;}
.y4d{bottom:199.447200px;}
.y222{bottom:201.624600px;}
.y153{bottom:202.775550px;}
.yee{bottom:203.118150px;}
.y230{bottom:205.313700px;}
.y108{bottom:206.578650px;}
.y2d{bottom:206.702550px;}
.y1eb{bottom:207.510150px;}
.yde{bottom:210.133650px;}
.ybd{bottom:210.702000px;}
.y1ed{bottom:215.760150px;}
.y63{bottom:221.106150px;}
.y168{bottom:223.368000px;}
.y23d{bottom:224.206650px;}
.y17f{bottom:226.769550px;}
.y13e{bottom:227.755800px;}
.y19d{bottom:228.718350px;}
.ye5{bottom:229.039950px;}
.yc9{bottom:229.134450px;}
.y1b4{bottom:230.980200px;}
.y79{bottom:231.369900px;}
.y32{bottom:231.666600px;}
.y22e{bottom:232.710600px;}
.y4c{bottom:234.697200px;}
.y221{bottom:236.874600px;}
.y152{bottom:238.025550px;}
.yed{bottom:238.368150px;}
.y22f{bottom:240.563700px;}
.y107{bottom:241.828650px;}
.y2c{bottom:241.952550px;}
.yab{bottom:245.213700px;}
.ydd{bottom:245.383650px;}
.y240{bottom:245.466450px;}
.y1d7{bottom:245.948250px;}
.y127{bottom:251.554950px;}
.y129{bottom:253.821150px;}
.y62{bottom:256.356150px;}
.y167{bottom:258.618000px;}
.y23c{bottom:259.456650px;}
.y17e{bottom:262.019550px;}
.y19c{bottom:263.968350px;}
.ye4{bottom:264.289950px;}
.yc8{bottom:264.384450px;}
.y1b3{bottom:266.230200px;}
.y78{bottom:266.619900px;}
.y22d{bottom:267.960600px;}
.y1fb{bottom:269.760300px;}
.y4b{bottom:269.947200px;}
.y220{bottom:272.124600px;}
.y1d6{bottom:272.948250px;}
.y151{bottom:273.275550px;}
.y128{bottom:274.821150px;}
.y106{bottom:277.078650px;}
.y2b{bottom:277.202550px;}
.ydc{bottom:280.633650px;}
.y23f{bottom:280.716450px;}
.y126{bottom:286.804950px;}
.y1d8{bottom:291.698250px;}
.y166{bottom:293.868000px;}
.y1ea{bottom:294.240750px;}
.y23b{bottom:294.706650px;}
.y1fa{bottom:296.760300px;}
.y17d{bottom:297.269550px;}
.y16e{bottom:297.474750px;}
.y19b{bottom:299.218350px;}
.yc7{bottom:299.634450px;}
.y1d5{bottom:299.948250px;}
.y237{bottom:301.013700px;}
.y1b2{bottom:301.480200px;}
.y77{bottom:301.869900px;}
.y22c{bottom:303.210600px;}
.y4a{bottom:305.197200px;}
.y21f{bottom:307.374600px;}
.y150{bottom:308.525550px;}
.yf{bottom:312.181050px;}
.y2a{bottom:312.452550px;}
.y13d{bottom:314.667750px;}
.ydb{bottom:315.883650px;}
.y23e{bottom:315.966450px;}
.y16d{bottom:318.474750px;}
.y1e9{bottom:321.240750px;}
.y125{bottom:322.054950px;}
.y1f9{bottom:323.760300px;}
.yec{bottom:325.379700px;}
.y61{bottom:326.856150px;}
.y165{bottom:329.118000px;}
.ye3{bottom:331.136700px;}
.y17c{bottom:332.519550px;}
.y19a{bottom:334.468350px;}
.yc6{bottom:334.884450px;}
.y13c{bottom:335.667750px;}
.y236{bottom:336.263700px;}
.y1b1{bottom:336.730200px;}
.y76{bottom:337.119900px;}
.y49{bottom:340.447200px;}
.y105{bottom:340.964550px;}
.y23a{bottom:341.490150px;}
.y25{bottom:342.334500px;}
.y21e{bottom:342.624600px;}
.y29{bottom:347.702550px;}
.yda{bottom:351.133650px;}
.y13b{bottom:356.242050px;}
.y124{bottom:357.304950px;}
.yeb{bottom:360.629700px;}
.y60{bottom:362.106150px;}
.y164{bottom:364.368000px;}
.y17b{bottom:367.769550px;}
.yba{bottom:369.064200px;}
.y199{bottom:369.718350px;}
.yc5{bottom:370.134450px;}
.y235{bottom:371.513700px;}
.y1b0{bottom:371.980200px;}
.y75{bottom:372.369900px;}
.y48{bottom:375.697200px;}
.y104{bottom:376.214550px;}
.y239{bottom:376.740150px;}
.ya5{bottom:377.144400px;}
.y21d{bottom:377.874600px;}
.y1d3{bottom:378.428700px;}
.y95{bottom:379.137600px;}
.y7f{bottom:379.898250px;}
.ye{bottom:382.681050px;}
.y28{bottom:382.952550px;}
.yd9{bottom:386.383650px;}
.y14f{bottom:387.765600px;}
.yb9{bottom:390.064200px;}
.y13a{bottom:391.492050px;}
.y123{bottom:392.554950px;}
.y1d4{bottom:397.178700px;}
.y5f{bottom:397.356150px;}
.y163{bottom:399.618000px;}
.y1e8{bottom:399.721200px;}
.y1f8{bottom:402.240750px;}
.y17a{bottom:403.019550px;}
.y198{bottom:404.968350px;}
.y1d2{bottom:405.428700px;}
.y1af{bottom:407.230200px;}
.y74{bottom:407.619900px;}
.y47{bottom:410.947200px;}
.y103{bottom:411.464550px;}
.y238{bottom:411.990150px;}
.ya4{bottom:412.394400px;}
.y21c{bottom:413.124600px;}
.y94{bottom:414.387600px;}
.yea{bottom:417.970800px;}
.yd8{bottom:421.633650px;}
.y14e{bottom:423.015600px;}
.y139{bottom:426.742050px;}
.y122{bottom:427.804950px;}
.y1a2{bottom:428.600700px;}
.y1f7{bottom:429.240750px;}
.yac{bottom:431.005650px;}
.y5e{bottom:432.606150px;}
.y162{bottom:434.868000px;}
.y179{bottom:438.269550px;}
.y197{bottom:440.218350px;}
.yc4{bottom:440.308350px;}
.y1ae{bottom:442.480200px;}
.y73{bottom:442.869900px;}
.y26{bottom:443.482650px;}
.y46{bottom:446.197200px;}
.y102{bottom:446.714550px;}
.yb6{bottom:447.304950px;}
.ya3{bottom:447.644400px;}
.y24{bottom:448.084500px;}
.y21b{bottom:448.374600px;}
.y93{bottom:449.637600px;}
.yd{bottom:453.181050px;}
.y1f6{bottom:456.240750px;}
.yd7{bottom:456.883650px;}
.y14d{bottom:458.265600px;}
.y138{bottom:461.992050px;}
.y121{bottom:463.054950px;}
.y5d{bottom:467.856150px;}
.y161{bottom:470.118000px;}
.y178{bottom:473.519550px;}
.y196{bottom:475.468350px;}
.y72{bottom:478.119900px;}
.y1e7{bottom:478.201650px;}
.y45{bottom:481.447200px;}
.yb5{bottom:482.554950px;}
.ya2{bottom:482.894400px;}
.yf8{bottom:483.063000px;}
.y23{bottom:483.334500px;}
.y1ad{bottom:483.458550px;}
.y21a{bottom:483.624600px;}
.y1d0{bottom:483.909150px;}
.y92{bottom:484.887600px;}
.y209{bottom:491.515500px;}
.yd6{bottom:492.133650px;}
.y14c{bottom:493.515600px;}
.y137{bottom:497.242050px;}
.y120{bottom:498.304950px;}
.y1d1{bottom:502.659150px;}
.y5c{bottom:503.106150px;}
.y160{bottom:508.237950px;}
.y195{bottom:510.718350px;}
.y1cf{bottom:510.909150px;}
.y71{bottom:513.369900px;}
.y44{bottom:516.697200px;}
.yf7{bottom:518.313000px;}
.y22{bottom:518.584500px;}
.y1ac{bottom:518.708550px;}
.y219{bottom:518.874600px;}
.y91{bottom:520.137600px;}
.yc{bottom:523.681050px;}
.yd5{bottom:527.383650px;}
.y14b{bottom:528.765600px;}
.ya1{bottom:532.063050px;}
.y136{bottom:532.492050px;}
.y11f{bottom:533.554950px;}
.y1f5{bottom:534.721200px;}
.y5b{bottom:538.356150px;}
.y177{bottom:538.785750px;}
.yb2{bottom:540.163050px;}
.y15f{bottom:543.487950px;}
.y194{bottom:545.968350px;}
.y70{bottom:548.619900px;}
.y43{bottom:551.947200px;}
.yf6{bottom:553.563000px;}
.y21{bottom:553.834500px;}
.y1ab{bottom:553.958550px;}
.y218{bottom:554.124600px;}
.y208{bottom:554.162700px;}
.y90{bottom:555.387600px;}
.y1e6{bottom:556.682100px;}
.y176{bottom:559.785750px;}
.yd4{bottom:562.633650px;}
.y14a{bottom:564.015600px;}
.y135{bottom:567.742050px;}
.y11e{bottom:568.804950px;}
.y5a{bottom:573.606150px;}
.y15e{bottom:578.737950px;}
.y207{bottom:581.162700px;}
.y193{bottom:581.218350px;}
.y1e5{bottom:583.682100px;}
.y6f{bottom:583.869900px;}
.y42{bottom:587.197200px;}
.yf5{bottom:588.813000px;}
.y20{bottom:589.084500px;}
.y1aa{bottom:589.208550px;}
.y217{bottom:589.374600px;}
.y1cd{bottom:589.389750px;}
.y8f{bottom:590.637600px;}
.yb{bottom:594.181050px;}
.yd3{bottom:597.883650px;}
.y149{bottom:598.496250px;}
.y134{bottom:602.992050px;}
.y11d{bottom:604.054950px;}
.y1ce{bottom:608.139750px;}
.y206{bottom:608.162700px;}
.y59{bottom:608.856150px;}
.y1f4{bottom:613.201650px;}
.y15d{bottom:613.987950px;}
.y1cc{bottom:616.389750px;}
.y192{bottom:616.468350px;}
.y6e{bottom:619.119900px;}
.y41{bottom:622.447200px;}
.y52{bottom:623.411700px;}
.yf4{bottom:624.063000px;}
.y1f{bottom:624.334500px;}
.y1a9{bottom:624.458550px;}
.y216{bottom:624.624600px;}
.y8e{bottom:625.887600px;}
.yd2{bottom:633.133650px;}
.y148{bottom:633.746250px;}
.y133{bottom:640.728300px;}
.y11c{bottom:642.531600px;}
.y58{bottom:644.106150px;}
.y15c{bottom:649.237950px;}
.yaa{bottom:651.333300px;}
.y191{bottom:651.718350px;}
.y6d{bottom:654.369900px;}
.y40{bottom:657.697200px;}
.yf3{bottom:659.313000px;}
.y1e{bottom:659.584500px;}
.y1a8{bottom:659.708550px;}
.y215{bottom:659.874600px;}
.y8d{bottom:661.137600px;}
.yb7{bottom:661.410600px;}
.y1e4{bottom:662.162550px;}
.ya{bottom:664.681050px;}
.y147{bottom:668.996250px;}
.y132{bottom:675.978300px;}
.y11b{bottom:677.781600px;}
.y57{bottom:679.356150px;}
.y15b{bottom:684.487950px;}
.ya9{bottom:686.583300px;}
.y205{bottom:686.643150px;}
.y190{bottom:686.968350px;}
.y1e3{bottom:689.162550px;}
.y1f3{bottom:691.682250px;}
.y3f{bottom:692.947200px;}
.y1d{bottom:694.834500px;}
.y1ca{bottom:694.870200px;}
.y1a7{bottom:694.958550px;}
.y214{bottom:695.124600px;}
.y8c{bottom:696.387600px;}
.yd1{bottom:703.633650px;}
.y146{bottom:703.799250px;}
.y131{bottom:711.228300px;}
.y11a{bottom:713.031600px;}
.y204{bottom:713.643150px;}
.y56{bottom:714.606150px;}
.ya8{bottom:721.833300px;}
.y1c9{bottom:721.870200px;}
.y3e{bottom:728.197200px;}
.y1c{bottom:730.084500px;}
.y213{bottom:730.374600px;}
.y8b{bottom:731.637600px;}
.y5{bottom:732.131100px;}
.y101{bottom:734.647950px;}
.y9{bottom:735.181050px;}
.y10e{bottom:736.419600px;}
.yd0{bottom:738.883650px;}
.y145{bottom:739.049250px;}
.y1cb{bottom:740.620200px;}
.y203{bottom:740.643150px;}
.y69{bottom:743.417850px;}
.y15a{bottom:744.266400px;}
.y130{bottom:746.478300px;}
.y119{bottom:748.281600px;}
.y1c8{bottom:748.870200px;}
.y100{bottom:755.647950px;}
.y81{bottom:756.002250px;}
.y10d{bottom:757.419600px;}
.y18f{bottom:759.354750px;}
.y3d{bottom:763.447200px;}
.y68{bottom:764.417850px;}
.y1b{bottom:765.334500px;}
.y1a6{bottom:765.458550px;}
.y212{bottom:765.624600px;}
.y8a{bottom:766.887600px;}
.y1e2{bottom:767.643000px;}
.y202{bottom:767.643150px;}
.ya0{bottom:769.940700px;}
.y1f2{bottom:770.162700px;}
.ycf{bottom:774.133650px;}
.y144{bottom:774.299250px;}
.yc2{bottom:777.151500px;}
.y55{bottom:777.843000px;}
.ya7{bottom:778.147050px;}
.y4{bottom:779.441700px;}
.y118{bottom:783.531600px;}
.y18e{bottom:794.604750px;}
.y1e1{bottom:794.643000px;}
.yff{bottom:795.429000px;}
.y3c{bottom:798.697200px;}
.y27{bottom:800.232000px;}
.y1a{bottom:800.584500px;}
.y1a5{bottom:800.708550px;}
.y211{bottom:800.874600px;}
.y89{bottom:802.137600px;}
.y9f{bottom:805.190700px;}
.y8{bottom:805.681050px;}
.y175{bottom:807.464400px;}
.y143{bottom:809.549250px;}
.yc1{bottom:812.401500px;}
.y54{bottom:813.093000px;}
.y117{bottom:818.781600px;}
.y1c6{bottom:827.350650px;}
.y18d{bottom:829.854750px;}
.ye2{bottom:830.426400px;}
.yfe{bottom:830.679000px;}
.y12f{bottom:831.033300px;}
.y3b{bottom:833.947200px;}
.y19{bottom:835.834500px;}
.y210{bottom:836.124600px;}
.y88{bottom:837.387600px;}
.y9e{bottom:840.440700px;}
.y174{bottom:842.714400px;}
.y1c7{bottom:846.100650px;}
.y201{bottom:846.123600px;}
.yb1{bottom:846.194100px;}
.y53{bottom:848.343000px;}
.y1f1{bottom:848.643150px;}
.y116{bottom:854.031600px;}
.y1c5{bottom:854.350650px;}
.y1a4{bottom:860.045700px;}
.yc3{bottom:861.253200px;}
.y18c{bottom:865.104750px;}
.yfd{bottom:865.929000px;}
.y12e{bottom:866.283300px;}
.y3a{bottom:869.197200px;}
.y18{bottom:871.084500px;}
.y20f{bottom:871.374600px;}
.y87{bottom:872.637600px;}
.y1e0{bottom:873.123450px;}
.y200{bottom:873.123600px;}
.y9d{bottom:875.690700px;}
.y7{bottom:876.181050px;}
.y173{bottom:877.964400px;}
.y115{bottom:889.281600px;}
.y158{bottom:891.262050px;}
.y1df{bottom:900.123450px;}
.y18b{bottom:900.354750px;}
.yfc{bottom:901.179000px;}
.y12d{bottom:901.533300px;}
.y39{bottom:904.447200px;}
.y17{bottom:906.334500px;}
.y20e{bottom:906.624600px;}
.y86{bottom:907.882050px;}
.y9c{bottom:910.940700px;}
.y1bc{bottom:911.637600px;}
.y142{bottom:912.262050px;}
.y172{bottom:913.214400px;}
.y114{bottom:924.531600px;}
.y1f0{bottom:927.123600px;}
.y1c3{bottom:932.831100px;}
.y18a{bottom:935.604750px;}
.yfb{bottom:936.429000px;}
.y12c{bottom:936.783300px;}
.y38{bottom:939.697200px;}
.y22b{bottom:941.566950px;}
.y16{bottom:941.584500px;}
.y20d{bottom:941.874600px;}
.y85{bottom:943.132050px;}
.y9b{bottom:946.190700px;}
.y1bb{bottom:946.887600px;}
.y171{bottom:948.464400px;}
.y1ff{bottom:951.604050px;}
.y1c2{bottom:959.831100px;}
.y1c4{bottom:970.331100px;}
.y189{bottom:970.854750px;}
.yfa{bottom:971.679000px;}
.y12b{bottom:972.033300px;}
.y37{bottom:975.299700px;}
.y22a{bottom:976.816950px;}
.y15{bottom:976.834500px;}
.y20c{bottom:977.124600px;}
.y84{bottom:978.382050px;}
.y1de{bottom:978.603900px;}
.y1fe{bottom:978.604050px;}
.y9a{bottom:981.440700px;}
.y1ba{bottom:982.137600px;}
.y1c1{bottom:986.831100px;}
.y1ef{bottom:1005.604050px;}
.y188{bottom:1006.104750px;}
.yf9{bottom:1006.929000px;}
.y12a{bottom:1007.283300px;}
.y36{bottom:1010.902200px;}
.y229{bottom:1012.066950px;}
.y14{bottom:1012.084500px;}
.y20b{bottom:1012.374600px;}
.y83{bottom:1013.632050px;}
.y1c0{bottom:1013.831100px;}
.y99{bottom:1016.690700px;}
.y1b9{bottom:1017.387600px;}
.y187{bottom:1041.354750px;}
.y35{bottom:1046.504700px;}
.y228{bottom:1047.316950px;}
.y13{bottom:1047.334500px;}
.y20a{bottom:1047.624600px;}
.y6c{bottom:1048.882050px;}
.y98{bottom:1051.940700px;}
.y1dd{bottom:1057.084500px;}
.y1bf{bottom:1065.311550px;}
.y186{bottom:1076.604750px;}
.y34{bottom:1082.107200px;}
.y6{bottom:1082.338500px;}
.y227{bottom:1082.566950px;}
.y12{bottom:1082.584500px;}
.y1dc{bottom:1084.084500px;}
.y6b{bottom:1084.132050px;}
.y97{bottom:1087.190700px;}
.y185{bottom:1111.854750px;}
.y33{bottom:1117.709700px;}
.y159{bottom:1117.816950px;}
.y11{bottom:1117.834500px;}
.y1bd{bottom:1118.124600px;}
.y6a{bottom:1119.382050px;}
.y1be{bottom:1120.959300px;}
.y96{bottom:1122.440700px;}
.yce{bottom:1129.881750px;}
.y10{bottom:1196.354250px;}
.h2{height:41.689453px;}
.h9{height:45.374653px;}
.hc{height:49.992188px;}
.h7{height:50.027344px;}
.h8{height:50.527617px;}
.h6{height:63.949219px;}
.h4{height:66.703125px;}
.he{height:75.041016px;}
.hd{height:75.051253px;}
.hb{height:87.203653px;}
.ha{height:95.923828px;}
.h3{height:146.285156px;}
.h5{height:191.847656px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:52.086600px;}
.x6{left:54.000000px;}
.x2e{left:55.017600px;}
.x24{left:56.338650px;}
.x44{left:60.750000px;}
.x45{left:66.196650px;}
.x41{left:68.446650px;}
.x3f{left:69.457500px;}
.x3b{left:70.969200px;}
.x4b{left:72.217200px;}
.x3a{left:73.575150px;}
.x52{left:75.438450px;}
.x53{left:76.699650px;}
.x51{left:77.943300px;}
.x4a{left:79.186950px;}
.x3d{left:80.707500px;}
.x55{left:81.951150px;}
.x46{left:84.697650px;}
.x4e{left:86.688450px;}
.x4c{left:90.182100px;}
.x4f{left:91.425750px;}
.x3c{left:92.950650px;}
.x47{left:94.945650px;}
.x56{left:95.947650px;}
.x39{left:101.836350px;}
.x33{left:104.714850px;}
.xd{left:107.716500px;}
.x25{left:109.275600px;}
.x2a{left:110.551200px;}
.x2c{left:114.635400px;}
.x4d{left:117.687450px;}
.x49{left:119.436450px;}
.x50{left:120.688950px;}
.x54{left:125.184450px;}
.x1c{left:126.988200px;}
.x15{left:129.385350px;}
.xe{left:130.913550px;}
.x42{left:134.676750px;}
.x17{left:138.822900px;}
.x38{left:163.700850px;}
.x3{left:183.972900px;}
.x13{left:200.740950px;}
.x9{left:222.601200px;}
.x21{left:240.829200px;}
.x20{left:242.008950px;}
.x1f{left:254.365050px;}
.x28{left:281.480250px;}
.x23{left:282.755850px;}
.x2d{left:283.902450px;}
.x22{left:302.549700px;}
.x59{left:304.576200px;}
.x62{left:306.702300px;}
.x5c{left:307.765200px;}
.x64{left:309.692250px;}
.x5e{left:311.071200px;}
.x40{left:319.279950px;}
.x43{left:323.779950px;}
.x48{left:328.279950px;}
.x18{left:330.621000px;}
.x3e{left:335.029950px;}
.x1{left:340.032150px;}
.x5d{left:346.300950px;}
.x5b{left:363.215400px;}
.x2{left:368.625900px;}
.x5{left:374.447850px;}
.x60{left:378.831000px;}
.x61{left:383.140800px;}
.x5a{left:403.022550px;}
.x16{left:404.604300px;}
.x65{left:406.222650px;}
.x58{left:408.515700px;}
.x63{left:411.898650px;}
.x14{left:414.526200px;}
.x5f{left:416.267550px;}
.x4{left:479.767200px;}
.x1e{left:480.941100px;}
.xf{left:505.866300px;}
.x29{left:508.043250px;}
.x27{left:511.610700px;}
.x35{left:519.528900px;}
.x11{left:520.621500px;}
.x10{left:524.756400px;}
.x1b{left:530.948550px;}
.x2b{left:536.811000px;}
.x31{left:537.874050px;}
.x32{left:541.458600px;}
.x2f{left:542.568450px;}
.x30{left:545.355750px;}
.xb{left:550.817850px;}
.x37{left:565.774050px;}
.x1a{left:574.510800px;}
.x36{left:580.898550px;}
.xa{left:582.139800px;}
.x12{left:607.057200px;}
.x1d{left:608.803650px;}
.x34{left:616.911150px;}
.x57{left:637.377600px;}
.x19{left:655.923750px;}
.x26{left:692.691000px;}
.x8{left:823.039350px;}
.x7{left:832.039350px;}
@media print{
.v6{vertical-align:-44.764800pt;}
.v5{vertical-align:-27.281067pt;}
.v3{vertical-align:-12.066133pt;}
.v1{vertical-align:-3.779200pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.275733pt;}
.v7{vertical-align:29.654933pt;}
.v4{vertical-align:40.457067pt;}
.ls4{letter-spacing:-2.368000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.031467pt;}
.ls5{letter-spacing:0.320000pt;}
.lsc{letter-spacing:3.186667pt;}
.ls7{letter-spacing:3.261867pt;}
.ls9{letter-spacing:4.868267pt;}
.lsb{letter-spacing:6.638400pt;}
.lsa{letter-spacing:6.908267pt;}
.ls8{letter-spacing:8.287467pt;}
.ls2{letter-spacing:175.840000pt;}
.ls1{letter-spacing:176.000000pt;}
.ls3{letter-spacing:851.772267pt;}
.ws5{word-spacing:-64.000000pt;}
.ws8f{word-spacing:-55.232000pt;}
.ws9b{word-spacing:-55.168000pt;}
.wsd2{word-spacing:-55.104000pt;}
.ws9a{word-spacing:-54.656000pt;}
.ws6e{word-spacing:-54.592000pt;}
.ws1e{word-spacing:-51.776000pt;}
.ws9f{word-spacing:-49.344000pt;}
.wsd9{word-spacing:-48.256000pt;}
.wseb{word-spacing:-43.392000pt;}
.wsea{word-spacing:-41.728000pt;}
.wse9{word-spacing:-35.328000pt;}
.wsfe{word-spacing:-18.666667pt;}
.ws3{word-spacing:-16.000000pt;}
.ws41{word-spacing:-13.333333pt;}
.ws64{word-spacing:-10.560000pt;}
.wsac{word-spacing:-7.808000pt;}
.wsf2{word-spacing:-6.976000pt;}
.ws8b{word-spacing:-6.720000pt;}
.wscd{word-spacing:-6.208000pt;}
.ws9d{word-spacing:-5.824000pt;}
.wse3{word-spacing:-5.696000pt;}
.wsf1{word-spacing:-4.736000pt;}
.ws29{word-spacing:-4.672000pt;}
.wscb{word-spacing:-4.608000pt;}
.wsa2{word-spacing:-4.544000pt;}
.ws6{word-spacing:-4.480000pt;}
.ws67{word-spacing:-4.160000pt;}
.ws9c{word-spacing:-4.032000pt;}
.wsad{word-spacing:-3.968000pt;}
.ws6a{word-spacing:-3.840000pt;}
.ws103{word-spacing:-3.648000pt;}
.wsd7{word-spacing:-3.520000pt;}
.ws5b{word-spacing:-3.456000pt;}
.wsf0{word-spacing:-3.392000pt;}
.ws58{word-spacing:-3.264000pt;}
.wse7{word-spacing:-3.136000pt;}
.wsa3{word-spacing:-3.072000pt;}
.wse4{word-spacing:-2.944000pt;}
.wse8{word-spacing:-2.933333pt;}
.wsda{word-spacing:-2.880000pt;}
.ws13{word-spacing:-2.752000pt;}
.wsa4{word-spacing:-2.624000pt;}
.wse{word-spacing:-2.560000pt;}
.ws104{word-spacing:-2.496000pt;}
.ws98{word-spacing:-2.176000pt;}
.ws2a{word-spacing:-2.112000pt;}
.wsdb{word-spacing:-2.048000pt;}
.ws7d{word-spacing:-1.920000pt;}
.wsd{word-spacing:-1.792000pt;}
.wsc1{word-spacing:-1.728000pt;}
.ws5f{word-spacing:-1.664000pt;}
.ws3d{word-spacing:-1.472000pt;}
.ws7e{word-spacing:-1.408000pt;}
.ws5e{word-spacing:-1.344000pt;}
.ws7{word-spacing:-1.280000pt;}
.ws1{word-spacing:-1.152000pt;}
.ws90{word-spacing:-1.088000pt;}
.ws71{word-spacing:-1.024000pt;}
.ws6d{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.832000pt;}
.wsd0{word-spacing:-0.768000pt;}
.ws22{word-spacing:-0.704000pt;}
.ws15{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.576000pt;}
.ws77{word-spacing:-0.448000pt;}
.ws3e{word-spacing:-0.384000pt;}
.ws2b{word-spacing:-0.320000pt;}
.ws33{word-spacing:-0.192000pt;}
.ws69{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wse2{word-spacing:0.064000pt;}
.ws1f{word-spacing:0.128000pt;}
.ws70{word-spacing:0.192000pt;}
.ws3f{word-spacing:0.256000pt;}
.ws93{word-spacing:0.384000pt;}
.ws44{word-spacing:0.576000pt;}
.wsa8{word-spacing:0.640000pt;}
.ws5a{word-spacing:0.704000pt;}
.wsdf{word-spacing:0.832000pt;}
.ws3a{word-spacing:0.896000pt;}
.wsa7{word-spacing:0.960000pt;}
.ws97{word-spacing:1.024000pt;}
.ws18{word-spacing:1.216000pt;}
.ws5c{word-spacing:1.280000pt;}
.ws16{word-spacing:1.344000pt;}
.ws10{word-spacing:1.408000pt;}
.wsca{word-spacing:1.472000pt;}
.ws39{word-spacing:1.536000pt;}
.ws6f{word-spacing:1.600000pt;}
.wsbf{word-spacing:1.664000pt;}
.ws92{word-spacing:1.728000pt;}
.ws3c{word-spacing:1.792000pt;}
.wsbd{word-spacing:1.813333pt;}
.ws36{word-spacing:1.856000pt;}
.ws8a{word-spacing:1.920000pt;}
.ws68{word-spacing:1.984000pt;}
.ws61{word-spacing:2.112000pt;}
.ws59{word-spacing:2.176000pt;}
.wsa{word-spacing:2.368000pt;}
.ws40{word-spacing:2.432000pt;}
.ws91{word-spacing:2.496000pt;}
.ws9e{word-spacing:2.560000pt;}
.ws1d{word-spacing:2.624000pt;}
.ws95{word-spacing:2.688000pt;}
.ws87{word-spacing:2.752000pt;}
.ws62{word-spacing:2.816000pt;}
.ws45{word-spacing:2.880000pt;}
.ws99{word-spacing:2.944000pt;}
.ws65{word-spacing:3.008000pt;}
.ws96{word-spacing:3.136000pt;}
.ws102{word-spacing:3.200000pt;}
.ws6b{word-spacing:3.264000pt;}
.ws75{word-spacing:3.328000pt;}
.wsb3{word-spacing:3.360000pt;}
.ws35{word-spacing:3.392000pt;}
.ws7c{word-spacing:3.456000pt;}
.ws2c{word-spacing:3.584000pt;}
.ws88{word-spacing:3.776000pt;}
.ws1c{word-spacing:3.840000pt;}
.ws17{word-spacing:3.904000pt;}
.wse1{word-spacing:3.968000pt;}
.ws57{word-spacing:4.032000pt;}
.ws43{word-spacing:4.053333pt;}
.ws94{word-spacing:4.096000pt;}
.ws14{word-spacing:4.160000pt;}
.ws9{word-spacing:4.224000pt;}
.ws19{word-spacing:4.288000pt;}
.wsb2{word-spacing:4.320000pt;}
.ws66{word-spacing:4.352000pt;}
.ws7b{word-spacing:4.416000pt;}
.ws30{word-spacing:4.480000pt;}
.wscc{word-spacing:4.672000pt;}
.wsd6{word-spacing:4.736000pt;}
.ws8{word-spacing:4.800000pt;}
.wsc8{word-spacing:4.864000pt;}
.ws1b{word-spacing:4.928000pt;}
.wsbe{word-spacing:4.992000pt;}
.ws6c{word-spacing:5.056000pt;}
.wsc7{word-spacing:5.184000pt;}
.wsa9{word-spacing:5.280000pt;}
.wsd3{word-spacing:5.312000pt;}
.ws32{word-spacing:5.376000pt;}
.wsa6{word-spacing:5.440000pt;}
.wsb{word-spacing:5.504000pt;}
.ws28{word-spacing:5.568000pt;}
.wsa1{word-spacing:5.632000pt;}
.ws38{word-spacing:5.696000pt;}
.ws78{word-spacing:5.824000pt;}
.ws20{word-spacing:5.888000pt;}
.ws1a{word-spacing:5.952000pt;}
.ws84{word-spacing:6.080000pt;}
.ws3b{word-spacing:6.144000pt;}
.wse5{word-spacing:6.272000pt;}
.wsc{word-spacing:6.336000pt;}
.ws83{word-spacing:6.400000pt;}
.wsfc{word-spacing:6.464000pt;}
.ws26{word-spacing:6.528000pt;}
.wsc6{word-spacing:6.592000pt;}
.wsff{word-spacing:6.656000pt;}
.ws86{word-spacing:6.720000pt;}
.wsc4{word-spacing:6.784000pt;}
.ws85{word-spacing:6.912000pt;}
.wsb4{word-spacing:6.976000pt;}
.ws37{word-spacing:7.104000pt;}
.ws89{word-spacing:7.168000pt;}
.ws4a{word-spacing:7.232000pt;}
.wsc3{word-spacing:7.360000pt;}
.ws8c{word-spacing:7.744000pt;}
.wsae{word-spacing:8.000000pt;}
.wsb8{word-spacing:8.064000pt;}
.ws7f{word-spacing:8.192000pt;}
.wsdc{word-spacing:8.256000pt;}
.ws101{word-spacing:8.320000pt;}
.wsf{word-spacing:8.448000pt;}
.ws34{word-spacing:8.512000pt;}
.ws8d{word-spacing:8.576000pt;}
.wsa0{word-spacing:8.704000pt;}
.ws51{word-spacing:8.768000pt;}
.wsab{word-spacing:8.896000pt;}
.wsc5{word-spacing:8.960000pt;}
.ws74{word-spacing:9.024000pt;}
.wsaf{word-spacing:9.088000pt;}
.wse6{word-spacing:9.152000pt;}
.wsc2{word-spacing:9.280000pt;}
.wsb9{word-spacing:9.344000pt;}
.ws63{word-spacing:9.408000pt;}
.wsbc{word-spacing:9.472000pt;}
.ws82{word-spacing:9.536000pt;}
.ws24{word-spacing:9.728000pt;}
.wsaa{word-spacing:9.856000pt;}
.ws79{word-spacing:9.920000pt;}
.ws46{word-spacing:10.048000pt;}
.wsb0{word-spacing:10.240000pt;}
.ws4d{word-spacing:10.368000pt;}
.ws81{word-spacing:10.432000pt;}
.ws52{word-spacing:10.496000pt;}
.ws5d{word-spacing:10.560000pt;}
.wsb6{word-spacing:10.624000pt;}
.ws4f{word-spacing:11.200000pt;}
.ws8e{word-spacing:11.392000pt;}
.ws21{word-spacing:11.456000pt;}
.wsba{word-spacing:11.776000pt;}
.wsb5{word-spacing:11.968000pt;}
.wsed{word-spacing:12.736000pt;}
.wsde{word-spacing:12.800000pt;}
.ws47{word-spacing:13.504000pt;}
.ws31{word-spacing:13.568000pt;}
.ws56{word-spacing:14.016000pt;}
.ws42{word-spacing:14.400000pt;}
.ws100{word-spacing:14.464000pt;}
.wsc9{word-spacing:14.506667pt;}
.ws76{word-spacing:14.528000pt;}
.wsd4{word-spacing:14.773333pt;}
.ws4c{word-spacing:14.848000pt;}
.ws72{word-spacing:14.976000pt;}
.ws73{word-spacing:15.488000pt;}
.wsd5{word-spacing:15.616000pt;}
.ws55{word-spacing:16.128000pt;}
.wsc0{word-spacing:16.192000pt;}
.ws60{word-spacing:16.256000pt;}
.ws54{word-spacing:16.768000pt;}
.ws80{word-spacing:16.832000pt;}
.wscf{word-spacing:16.896000pt;}
.ws27{word-spacing:17.856000pt;}
.ws4e{word-spacing:17.920000pt;}
.ws49{word-spacing:18.240000pt;}
.ws53{word-spacing:18.432000pt;}
.ws50{word-spacing:18.688000pt;}
.wsce{word-spacing:19.136000pt;}
.ws2e{word-spacing:19.648000pt;}
.wsdd{word-spacing:20.352000pt;}
.ws48{word-spacing:20.416000pt;}
.ws2f{word-spacing:21.120000pt;}
.ws25{word-spacing:21.376000pt;}
.wse0{word-spacing:21.632000pt;}
.wsd8{word-spacing:22.848000pt;}
.wsef{word-spacing:23.808000pt;}
.wsb7{word-spacing:24.896000pt;}
.ws23{word-spacing:25.152000pt;}
.wsbb{word-spacing:26.240000pt;}
.ws4b{word-spacing:26.752000pt;}
.wsb1{word-spacing:29.248000pt;}
.wsec{word-spacing:29.568000pt;}
.ws2d{word-spacing:36.672000pt;}
.wsa5{word-spacing:40.906667pt;}
.wsd1{word-spacing:47.146667pt;}
.wsee{word-spacing:48.768000pt;}
.ws4{word-spacing:112.000000pt;}
.wsf6{word-spacing:375.137600pt;}
.wsf9{word-spacing:560.367467pt;}
.wsfa{word-spacing:576.367467pt;}
.wsfb{word-spacing:592.367467pt;}
.wsf7{word-spacing:600.367467pt;}
.wsf8{word-spacing:616.367467pt;}
.ws11{word-spacing:647.504000pt;}
.wsf3{word-spacing:2390.866667pt;}
.wsf4{word-spacing:2390.867200pt;}
.wsf5{word-spacing:2401.490667pt;}
.wsfd{word-spacing:2401.491200pt;}
.ws2{word-spacing:2504.594667pt;}
._30{margin-left:-1843.364267pt;}
._4f{margin-left:-22.279467pt;}
._40{margin-left:-20.247467pt;}
._b{margin-left:-18.092800pt;}
._31{margin-left:-15.008000pt;}
._4e{margin-left:-8.236800pt;}
._2c{margin-left:-7.276800pt;}
._f{margin-left:-6.133333pt;}
._2{margin-left:-5.204267pt;}
._3{margin-left:-4.039467pt;}
._0{margin-left:-3.013333pt;}
._1{margin-left:-1.882667pt;}
._c{margin-left:-0.915200pt;}
._4{width:1.184000pt;}
._8{width:2.912000pt;}
._12{width:4.096000pt;}
._39{width:5.007467pt;}
._27{width:6.499733pt;}
._2b{width:7.508800pt;}
._13{width:8.640000pt;}
._17{width:10.491200pt;}
._34{width:15.072000pt;}
._35{width:16.022933pt;}
._33{width:19.109867pt;}
._16{width:20.374400pt;}
._3e{width:23.789333pt;}
._36{width:47.045867pt;}
._25{width:96.128000pt;}
._10{width:115.776000pt;}
._38{width:133.358400pt;}
._37{width:134.276800pt;}
._e{width:139.328000pt;}
._3d{width:146.432000pt;}
._2d{width:151.104000pt;}
._3c{width:154.368000pt;}
._19{width:159.232000pt;}
._22{width:161.472000pt;}
._2a{width:164.800000pt;}
._d{width:166.272000pt;}
._9{width:167.552000pt;}
._3f{width:169.216000pt;}
._7{width:170.496000pt;}
._6{width:171.776000pt;}
._1b{width:173.184000pt;}
._1f{width:174.400000pt;}
._5{width:176.000000pt;}
._14{width:177.152000pt;}
._1a{width:179.264000pt;}
._32{width:180.608000pt;}
._23{width:182.720000pt;}
._1d{width:187.449067pt;}
._3a{width:254.472000pt;}
._47{width:298.140267pt;}
._4c{width:321.254400pt;}
._4b{width:326.598933pt;}
._4d{width:328.353067pt;}
._46{width:333.680000pt;}
._4a{width:334.598933pt;}
._49{width:349.680000pt;}
._45{width:362.976000pt;}
._29{width:396.691733pt;}
._41{width:400.208533pt;}
._42{width:416.676267pt;}
._20{width:421.764267pt;}
._24{width:462.617600pt;}
._2f{width:572.004267pt;}
._21{width:577.909333pt;}
._43{width:592.367467pt;}
._26{width:604.371200pt;}
._44{width:608.367467pt;}
._48{width:616.367467pt;}
._3b{width:666.293867pt;}
._2e{width:1215.960533pt;}
._11{width:1340.424533pt;}
._28{width:1598.162667pt;}
._1c{width:1878.930667pt;}
._1e{width:1881.306133pt;}
._a{width:1930.579200pt;}
._50{width:2133.138667pt;}
._18{width:2317.464533pt;}
._15{width:2333.464000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:64.640000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y184{bottom:44.906267pt;}
.y7e{bottom:48.995467pt;}
.y80{bottom:49.009867pt;}
.y82{bottom:51.403600pt;}
.ya6{bottom:51.978933pt;}
.y157{bottom:52.701467pt;}
.y51{bottom:53.246400pt;}
.y226{bottom:53.888533pt;}
.yf2{bottom:55.216133pt;}
.y1a3{bottom:56.138533pt;}
.y10f{bottom:57.764533pt;}
.y10c{bottom:58.072133pt;}
.y31{bottom:58.402267pt;}
.yb4{bottom:59.151600pt;}
.y113{bottom:59.426133pt;}
.ybc{bottom:60.227600pt;}
.yb3{bottom:60.767200pt;}
.ye1{bottom:61.452133pt;}
.y170{bottom:62.500667pt;}
.y67{bottom:71.205467pt;}
.yb0{bottom:72.544133pt;}
.y16c{bottom:73.216000pt;}
.y3{bottom:75.490133pt;}
.y1b8{bottom:75.530933pt;}
.y1ee{bottom:76.026400pt;}
.y183{bottom:76.239600pt;}
.yc0{bottom:76.475867pt;}
.y1a1{bottom:77.971867pt;}
.ye9{bottom:78.257733pt;}
.ycd{bottom:78.341733pt;}
.ybb{bottom:78.894267pt;}
.y7d{bottom:80.328800pt;}
.y16f{bottom:81.167333pt;}
.y156{bottom:84.034800pt;}
.y50{bottom:84.579733pt;}
.y225{bottom:85.221867pt;}
.yf1{bottom:86.549467pt;}
.y10b{bottom:89.405467pt;}
.y30{bottom:89.735600pt;}
.y112{bottom:90.759467pt;}
.ye0{bottom:92.785467pt;}
.y234{bottom:94.654400pt;}
.y66{bottom:102.538800pt;}
.yaf{bottom:103.877467pt;}
.y16b{bottom:104.549333pt;}
.y2{bottom:106.823467pt;}
.y1b7{bottom:106.864267pt;}
.y182{bottom:107.572933pt;}
.ybf{bottom:107.809200pt;}
.y141{bottom:108.449600pt;}
.y1a0{bottom:109.305200pt;}
.ye8{bottom:109.591067pt;}
.ycc{bottom:109.675067pt;}
.y7c{bottom:111.662133pt;}
.y155{bottom:115.368133pt;}
.y4f{bottom:115.913067pt;}
.y224{bottom:116.555200pt;}
.yf0{bottom:117.882800pt;}
.y10a{bottom:120.738800pt;}
.y2f{bottom:121.068933pt;}
.y111{bottom:122.092800pt;}
.ydf{bottom:124.118800pt;}
.y1da{bottom:124.860267pt;}
.y233{bottom:125.987733pt;}
.y65{bottom:133.872133pt;}
.yae{bottom:135.210800pt;}
.y16a{bottom:135.882667pt;}
.y1{bottom:138.156800pt;}
.y1b6{bottom:138.197600pt;}
.y181{bottom:138.906267pt;}
.ybe{bottom:139.142533pt;}
.y140{bottom:139.782933pt;}
.y19f{bottom:140.638533pt;}
.ye7{bottom:140.924400pt;}
.ycb{bottom:141.008400pt;}
.y1db{bottom:141.526933pt;}
.y7b{bottom:142.995467pt;}
.y1fd{bottom:146.026533pt;}
.y154{bottom:146.701467pt;}
.y4e{bottom:147.246400pt;}
.y223{bottom:147.888533pt;}
.y1d9{bottom:148.860267pt;}
.yef{bottom:149.216133pt;}
.y231{bottom:151.167733pt;}
.y109{bottom:152.072133pt;}
.y2e{bottom:152.402267pt;}
.y1ec{bottom:153.120133pt;}
.y110{bottom:153.426133pt;}
.y232{bottom:157.321067pt;}
.y64{bottom:165.205467pt;}
.yad{bottom:166.544133pt;}
.y169{bottom:167.216000pt;}
.y1fc{bottom:170.026533pt;}
.y180{bottom:170.239600pt;}
.y13f{bottom:171.116267pt;}
.y19e{bottom:171.971867pt;}
.ye6{bottom:172.257733pt;}
.yca{bottom:172.341733pt;}
.yb8{bottom:172.361467pt;}
.y1b5{bottom:173.982400pt;}
.y7a{bottom:174.328800pt;}
.y4d{bottom:177.286400pt;}
.y222{bottom:179.221867pt;}
.y153{bottom:180.244933pt;}
.yee{bottom:180.549467pt;}
.y230{bottom:182.501067pt;}
.y108{bottom:183.625467pt;}
.y2d{bottom:183.735600pt;}
.y1eb{bottom:184.453467pt;}
.yde{bottom:186.785467pt;}
.ybd{bottom:187.290667pt;}
.y1ed{bottom:191.786800pt;}
.y63{bottom:196.538800pt;}
.y168{bottom:198.549333pt;}
.y23d{bottom:199.294800pt;}
.y17f{bottom:201.572933pt;}
.y13e{bottom:202.449600pt;}
.y19d{bottom:203.305200pt;}
.ye5{bottom:203.591067pt;}
.yc9{bottom:203.675067pt;}
.y1b4{bottom:205.315733pt;}
.y79{bottom:205.662133pt;}
.y32{bottom:205.925867pt;}
.y22e{bottom:206.853867pt;}
.y4c{bottom:208.619733pt;}
.y221{bottom:210.555200pt;}
.y152{bottom:211.578267pt;}
.yed{bottom:211.882800pt;}
.y22f{bottom:213.834400pt;}
.y107{bottom:214.958800pt;}
.y2c{bottom:215.068933pt;}
.yab{bottom:217.967733pt;}
.ydd{bottom:218.118800pt;}
.y240{bottom:218.192400pt;}
.y1d7{bottom:218.620667pt;}
.y127{bottom:223.604400pt;}
.y129{bottom:225.618800pt;}
.y62{bottom:227.872133pt;}
.y167{bottom:229.882667pt;}
.y23c{bottom:230.628133pt;}
.y17e{bottom:232.906267pt;}
.y19c{bottom:234.638533pt;}
.ye4{bottom:234.924400pt;}
.yc8{bottom:235.008400pt;}
.y1b3{bottom:236.649067pt;}
.y78{bottom:236.995467pt;}
.y22d{bottom:238.187200pt;}
.y1fb{bottom:239.786933pt;}
.y4b{bottom:239.953067pt;}
.y220{bottom:241.888533pt;}
.y1d6{bottom:242.620667pt;}
.y151{bottom:242.911600pt;}
.y128{bottom:244.285467pt;}
.y106{bottom:246.292133pt;}
.y2b{bottom:246.402267pt;}
.ydc{bottom:249.452133pt;}
.y23f{bottom:249.525733pt;}
.y126{bottom:254.937733pt;}
.y1d8{bottom:259.287333pt;}
.y166{bottom:261.216000pt;}
.y1ea{bottom:261.547333pt;}
.y23b{bottom:261.961467pt;}
.y1fa{bottom:263.786933pt;}
.y17d{bottom:264.239600pt;}
.y16e{bottom:264.422000pt;}
.y19b{bottom:265.971867pt;}
.yc7{bottom:266.341733pt;}
.y1d5{bottom:266.620667pt;}
.y237{bottom:267.567733pt;}
.y1b2{bottom:267.982400pt;}
.y77{bottom:268.328800pt;}
.y22c{bottom:269.520533pt;}
.y4a{bottom:271.286400pt;}
.y21f{bottom:273.221867pt;}
.y150{bottom:274.244933pt;}
.yf{bottom:277.494267pt;}
.y2a{bottom:277.735600pt;}
.y13d{bottom:279.704667pt;}
.ydb{bottom:280.785467pt;}
.y23e{bottom:280.859067pt;}
.y16d{bottom:283.088667pt;}
.y1e9{bottom:285.547333pt;}
.y125{bottom:286.271067pt;}
.y1f9{bottom:287.786933pt;}
.yec{bottom:289.226400pt;}
.y61{bottom:290.538800pt;}
.y165{bottom:292.549333pt;}
.ye3{bottom:294.343733pt;}
.y17c{bottom:295.572933pt;}
.y19a{bottom:297.305200pt;}
.yc6{bottom:297.675067pt;}
.y13c{bottom:298.371333pt;}
.y236{bottom:298.901067pt;}
.y1b1{bottom:299.315733pt;}
.y76{bottom:299.662133pt;}
.y49{bottom:302.619733pt;}
.y105{bottom:303.079600pt;}
.y23a{bottom:303.546800pt;}
.y25{bottom:304.297333pt;}
.y21e{bottom:304.555200pt;}
.y29{bottom:309.068933pt;}
.yda{bottom:312.118800pt;}
.y13b{bottom:316.659600pt;}
.y124{bottom:317.604400pt;}
.yeb{bottom:320.559733pt;}
.y60{bottom:321.872133pt;}
.y164{bottom:323.882667pt;}
.y17b{bottom:326.906267pt;}
.yba{bottom:328.057067pt;}
.y199{bottom:328.638533pt;}
.yc5{bottom:329.008400pt;}
.y235{bottom:330.234400pt;}
.y1b0{bottom:330.649067pt;}
.y75{bottom:330.995467pt;}
.y48{bottom:333.953067pt;}
.y104{bottom:334.412933pt;}
.y239{bottom:334.880133pt;}
.ya5{bottom:335.239467pt;}
.y21d{bottom:335.888533pt;}
.y1d3{bottom:336.381067pt;}
.y95{bottom:337.011200pt;}
.y7f{bottom:337.687333pt;}
.ye{bottom:340.160933pt;}
.y28{bottom:340.402267pt;}
.yd9{bottom:343.452133pt;}
.y14f{bottom:344.680533pt;}
.yb9{bottom:346.723733pt;}
.y13a{bottom:347.992933pt;}
.y123{bottom:348.937733pt;}
.y1d4{bottom:353.047733pt;}
.y5f{bottom:353.205467pt;}
.y163{bottom:355.216000pt;}
.y1e8{bottom:355.307733pt;}
.y1f8{bottom:357.547333pt;}
.y17a{bottom:358.239600pt;}
.y198{bottom:359.971867pt;}
.y1d2{bottom:360.381067pt;}
.y1af{bottom:361.982400pt;}
.y74{bottom:362.328800pt;}
.y47{bottom:365.286400pt;}
.y103{bottom:365.746267pt;}
.y238{bottom:366.213467pt;}
.ya4{bottom:366.572800pt;}
.y21c{bottom:367.221867pt;}
.y94{bottom:368.344533pt;}
.yea{bottom:371.529600pt;}
.yd8{bottom:374.785467pt;}
.y14e{bottom:376.013867pt;}
.y139{bottom:379.326267pt;}
.y122{bottom:380.271067pt;}
.y1a2{bottom:380.978400pt;}
.y1f7{bottom:381.547333pt;}
.yac{bottom:383.116133pt;}
.y5e{bottom:384.538800pt;}
.y162{bottom:386.549333pt;}
.y179{bottom:389.572933pt;}
.y197{bottom:391.305200pt;}
.yc4{bottom:391.385200pt;}
.y1ae{bottom:393.315733pt;}
.y73{bottom:393.662133pt;}
.y26{bottom:394.206800pt;}
.y46{bottom:396.619733pt;}
.y102{bottom:397.079600pt;}
.yb6{bottom:397.604400pt;}
.ya3{bottom:397.906133pt;}
.y24{bottom:398.297333pt;}
.y21b{bottom:398.555200pt;}
.y93{bottom:399.677867pt;}
.yd{bottom:402.827600pt;}
.y1f6{bottom:405.547333pt;}
.yd7{bottom:406.118800pt;}
.y14d{bottom:407.347200pt;}
.y138{bottom:410.659600pt;}
.y121{bottom:411.604400pt;}
.y5d{bottom:415.872133pt;}
.y161{bottom:417.882667pt;}
.y178{bottom:420.906267pt;}
.y196{bottom:422.638533pt;}
.y72{bottom:424.995467pt;}
.y1e7{bottom:425.068133pt;}
.y45{bottom:427.953067pt;}
.yb5{bottom:428.937733pt;}
.ya2{bottom:429.239467pt;}
.yf8{bottom:429.389333pt;}
.y23{bottom:429.630667pt;}
.y1ad{bottom:429.740933pt;}
.y21a{bottom:429.888533pt;}
.y1d0{bottom:430.141467pt;}
.y92{bottom:431.011200pt;}
.y209{bottom:436.902667pt;}
.yd6{bottom:437.452133pt;}
.y14c{bottom:438.680533pt;}
.y137{bottom:441.992933pt;}
.y120{bottom:442.937733pt;}
.y1d1{bottom:446.808133pt;}
.y5c{bottom:447.205467pt;}
.y160{bottom:451.767067pt;}
.y195{bottom:453.971867pt;}
.y1cf{bottom:454.141467pt;}
.y71{bottom:456.328800pt;}
.y44{bottom:459.286400pt;}
.yf7{bottom:460.722667pt;}
.y22{bottom:460.964000pt;}
.y1ac{bottom:461.074267pt;}
.y219{bottom:461.221867pt;}
.y91{bottom:462.344533pt;}
.yc{bottom:465.494267pt;}
.yd5{bottom:468.785467pt;}
.y14b{bottom:470.013867pt;}
.ya1{bottom:472.944933pt;}
.y136{bottom:473.326267pt;}
.y11f{bottom:474.271067pt;}
.y1f5{bottom:475.307733pt;}
.y5b{bottom:478.538800pt;}
.y177{bottom:478.920667pt;}
.yb2{bottom:480.144933pt;}
.y15f{bottom:483.100400pt;}
.y194{bottom:485.305200pt;}
.y70{bottom:487.662133pt;}
.y43{bottom:490.619733pt;}
.yf6{bottom:492.056000pt;}
.y21{bottom:492.297333pt;}
.y1ab{bottom:492.407600pt;}
.y218{bottom:492.555200pt;}
.y208{bottom:492.589067pt;}
.y90{bottom:493.677867pt;}
.y1e6{bottom:494.828533pt;}
.y176{bottom:497.587333pt;}
.yd4{bottom:500.118800pt;}
.y14a{bottom:501.347200pt;}
.y135{bottom:504.659600pt;}
.y11e{bottom:505.604400pt;}
.y5a{bottom:509.872133pt;}
.y15e{bottom:514.433733pt;}
.y207{bottom:516.589067pt;}
.y193{bottom:516.638533pt;}
.y1e5{bottom:518.828533pt;}
.y6f{bottom:518.995467pt;}
.y42{bottom:521.953067pt;}
.yf5{bottom:523.389333pt;}
.y20{bottom:523.630667pt;}
.y1aa{bottom:523.740933pt;}
.y217{bottom:523.888533pt;}
.y1cd{bottom:523.902000pt;}
.y8f{bottom:525.011200pt;}
.yb{bottom:528.160933pt;}
.yd3{bottom:531.452133pt;}
.y149{bottom:531.996667pt;}
.y134{bottom:535.992933pt;}
.y11d{bottom:536.937733pt;}
.y1ce{bottom:540.568667pt;}
.y206{bottom:540.589067pt;}
.y59{bottom:541.205467pt;}
.y1f4{bottom:545.068133pt;}
.y15d{bottom:545.767067pt;}
.y1cc{bottom:547.902000pt;}
.y192{bottom:547.971867pt;}
.y6e{bottom:550.328800pt;}
.y41{bottom:553.286400pt;}
.y52{bottom:554.143733pt;}
.yf4{bottom:554.722667pt;}
.y1f{bottom:554.964000pt;}
.y1a9{bottom:555.074267pt;}
.y216{bottom:555.221867pt;}
.y8e{bottom:556.344533pt;}
.yd2{bottom:562.785467pt;}
.y148{bottom:563.330000pt;}
.y133{bottom:569.536267pt;}
.y11c{bottom:571.139200pt;}
.y58{bottom:572.538800pt;}
.y15c{bottom:577.100400pt;}
.yaa{bottom:578.962933pt;}
.y191{bottom:579.305200pt;}
.y6d{bottom:581.662133pt;}
.y40{bottom:584.619733pt;}
.yf3{bottom:586.056000pt;}
.y1e{bottom:586.297333pt;}
.y1a8{bottom:586.407600pt;}
.y215{bottom:586.555200pt;}
.y8d{bottom:587.677867pt;}
.yb7{bottom:587.920533pt;}
.y1e4{bottom:588.588933pt;}
.ya{bottom:590.827600pt;}
.y147{bottom:594.663333pt;}
.y132{bottom:600.869600pt;}
.y11b{bottom:602.472533pt;}
.y57{bottom:603.872133pt;}
.y15b{bottom:608.433733pt;}
.ya9{bottom:610.296267pt;}
.y205{bottom:610.349467pt;}
.y190{bottom:610.638533pt;}
.y1e3{bottom:612.588933pt;}
.y1f3{bottom:614.828667pt;}
.y3f{bottom:615.953067pt;}
.y1d{bottom:617.630667pt;}
.y1ca{bottom:617.662400pt;}
.y1a7{bottom:617.740933pt;}
.y214{bottom:617.888533pt;}
.y8c{bottom:619.011200pt;}
.yd1{bottom:625.452133pt;}
.y146{bottom:625.599333pt;}
.y131{bottom:632.202933pt;}
.y11a{bottom:633.805867pt;}
.y204{bottom:634.349467pt;}
.y56{bottom:635.205467pt;}
.ya8{bottom:641.629600pt;}
.y1c9{bottom:641.662400pt;}
.y3e{bottom:647.286400pt;}
.y1c{bottom:648.964000pt;}
.y213{bottom:649.221867pt;}
.y8b{bottom:650.344533pt;}
.y5{bottom:650.783200pt;}
.y101{bottom:653.020400pt;}
.y9{bottom:653.494267pt;}
.y10e{bottom:654.595200pt;}
.yd0{bottom:656.785467pt;}
.y145{bottom:656.932667pt;}
.y1cb{bottom:658.329067pt;}
.y203{bottom:658.349467pt;}
.y69{bottom:660.815867pt;}
.y15a{bottom:661.570133pt;}
.y130{bottom:663.536267pt;}
.y119{bottom:665.139200pt;}
.y1c8{bottom:665.662400pt;}
.y100{bottom:671.687067pt;}
.y81{bottom:672.002000pt;}
.y10d{bottom:673.261867pt;}
.y18f{bottom:674.982000pt;}
.y3d{bottom:678.619733pt;}
.y68{bottom:679.482533pt;}
.y1b{bottom:680.297333pt;}
.y1a6{bottom:680.407600pt;}
.y212{bottom:680.555200pt;}
.y8a{bottom:681.677867pt;}
.y1e2{bottom:682.349333pt;}
.y202{bottom:682.349467pt;}
.ya0{bottom:684.391733pt;}
.y1f2{bottom:684.589067pt;}
.ycf{bottom:688.118800pt;}
.y144{bottom:688.266000pt;}
.yc2{bottom:690.801333pt;}
.y55{bottom:691.416000pt;}
.ya7{bottom:691.686267pt;}
.y4{bottom:692.837067pt;}
.y118{bottom:696.472533pt;}
.y18e{bottom:706.315333pt;}
.y1e1{bottom:706.349333pt;}
.yff{bottom:707.048000pt;}
.y3c{bottom:709.953067pt;}
.y27{bottom:711.317333pt;}
.y1a{bottom:711.630667pt;}
.y1a5{bottom:711.740933pt;}
.y211{bottom:711.888533pt;}
.y89{bottom:713.011200pt;}
.y9f{bottom:715.725067pt;}
.y8{bottom:716.160933pt;}
.y175{bottom:717.746133pt;}
.y143{bottom:719.599333pt;}
.yc1{bottom:722.134667pt;}
.y54{bottom:722.749333pt;}
.y117{bottom:727.805867pt;}
.y1c6{bottom:735.422800pt;}
.y18d{bottom:737.648667pt;}
.ye2{bottom:738.156800pt;}
.yfe{bottom:738.381333pt;}
.y12f{bottom:738.696267pt;}
.y3b{bottom:741.286400pt;}
.y19{bottom:742.964000pt;}
.y210{bottom:743.221867pt;}
.y88{bottom:744.344533pt;}
.y9e{bottom:747.058400pt;}
.y174{bottom:749.079467pt;}
.y1c7{bottom:752.089467pt;}
.y201{bottom:752.109867pt;}
.yb1{bottom:752.172533pt;}
.y53{bottom:754.082667pt;}
.y1f1{bottom:754.349467pt;}
.y116{bottom:759.139200pt;}
.y1c5{bottom:759.422800pt;}
.y1a4{bottom:764.485067pt;}
.yc3{bottom:765.558400pt;}
.y18c{bottom:768.982000pt;}
.yfd{bottom:769.714667pt;}
.y12e{bottom:770.029600pt;}
.y3a{bottom:772.619733pt;}
.y18{bottom:774.297333pt;}
.y20f{bottom:774.555200pt;}
.y87{bottom:775.677867pt;}
.y1e0{bottom:776.109733pt;}
.y200{bottom:776.109867pt;}
.y9d{bottom:778.391733pt;}
.y7{bottom:778.827600pt;}
.y173{bottom:780.412800pt;}
.y115{bottom:790.472533pt;}
.y158{bottom:792.232933pt;}
.y1df{bottom:800.109733pt;}
.y18b{bottom:800.315333pt;}
.yfc{bottom:801.048000pt;}
.y12d{bottom:801.362933pt;}
.y39{bottom:803.953067pt;}
.y17{bottom:805.630667pt;}
.y20e{bottom:805.888533pt;}
.y86{bottom:807.006267pt;}
.y9c{bottom:809.725067pt;}
.y1bc{bottom:810.344533pt;}
.y142{bottom:810.899600pt;}
.y172{bottom:811.746133pt;}
.y114{bottom:821.805867pt;}
.y1f0{bottom:824.109867pt;}
.y1c3{bottom:829.183200pt;}
.y18a{bottom:831.648667pt;}
.yfb{bottom:832.381333pt;}
.y12c{bottom:832.696267pt;}
.y38{bottom:835.286400pt;}
.y22b{bottom:836.948400pt;}
.y16{bottom:836.964000pt;}
.y20d{bottom:837.221867pt;}
.y85{bottom:838.339600pt;}
.y9b{bottom:841.058400pt;}
.y1bb{bottom:841.677867pt;}
.y171{bottom:843.079467pt;}
.y1ff{bottom:845.870267pt;}
.y1c2{bottom:853.183200pt;}
.y1c4{bottom:862.516533pt;}
.y189{bottom:862.982000pt;}
.yfa{bottom:863.714667pt;}
.y12b{bottom:864.029600pt;}
.y37{bottom:866.933067pt;}
.y22a{bottom:868.281733pt;}
.y15{bottom:868.297333pt;}
.y20c{bottom:868.555200pt;}
.y84{bottom:869.672933pt;}
.y1de{bottom:869.870133pt;}
.y1fe{bottom:869.870267pt;}
.y9a{bottom:872.391733pt;}
.y1ba{bottom:873.011200pt;}
.y1c1{bottom:877.183200pt;}
.y1ef{bottom:893.870267pt;}
.y188{bottom:894.315333pt;}
.yf9{bottom:895.048000pt;}
.y12a{bottom:895.362933pt;}
.y36{bottom:898.579733pt;}
.y229{bottom:899.615067pt;}
.y14{bottom:899.630667pt;}
.y20b{bottom:899.888533pt;}
.y83{bottom:901.006267pt;}
.y1c0{bottom:901.183200pt;}
.y99{bottom:903.725067pt;}
.y1b9{bottom:904.344533pt;}
.y187{bottom:925.648667pt;}
.y35{bottom:930.226400pt;}
.y228{bottom:930.948400pt;}
.y13{bottom:930.964000pt;}
.y20a{bottom:931.221867pt;}
.y6c{bottom:932.339600pt;}
.y98{bottom:935.058400pt;}
.y1dd{bottom:939.630667pt;}
.y1bf{bottom:946.943600pt;}
.y186{bottom:956.982000pt;}
.y34{bottom:961.873067pt;}
.y6{bottom:962.078667pt;}
.y227{bottom:962.281733pt;}
.y12{bottom:962.297333pt;}
.y1dc{bottom:963.630667pt;}
.y6b{bottom:963.672933pt;}
.y97{bottom:966.391733pt;}
.y185{bottom:988.315333pt;}
.y33{bottom:993.519733pt;}
.y159{bottom:993.615067pt;}
.y11{bottom:993.630667pt;}
.y1bd{bottom:993.888533pt;}
.y6a{bottom:995.006267pt;}
.y1be{bottom:996.408267pt;}
.y96{bottom:997.725067pt;}
.yce{bottom:1004.339333pt;}
.y10{bottom:1063.426000pt;}
.h2{height:37.057292pt;}
.h9{height:40.333025pt;}
.hc{height:44.437500pt;}
.h7{height:44.468750pt;}
.h8{height:44.913437pt;}
.h6{height:56.843750pt;}
.h4{height:59.291667pt;}
.he{height:66.703125pt;}
.hd{height:66.712225pt;}
.hb{height:77.514358pt;}
.ha{height:85.265625pt;}
.h3{height:130.031250pt;}
.h5{height:170.531250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:46.299200pt;}
.x6{left:48.000000pt;}
.x2e{left:48.904533pt;}
.x24{left:50.078800pt;}
.x44{left:54.000000pt;}
.x45{left:58.841467pt;}
.x41{left:60.841467pt;}
.x3f{left:61.740000pt;}
.x3b{left:63.083733pt;}
.x4b{left:64.193067pt;}
.x3a{left:65.400133pt;}
.x52{left:67.056400pt;}
.x53{left:68.177467pt;}
.x51{left:69.282933pt;}
.x4a{left:70.388400pt;}
.x3d{left:71.740000pt;}
.x55{left:72.845467pt;}
.x46{left:75.286800pt;}
.x4e{left:77.056400pt;}
.x4c{left:80.161867pt;}
.x4f{left:81.267333pt;}
.x3c{left:82.622800pt;}
.x47{left:84.396133pt;}
.x56{left:85.286800pt;}
.x39{left:90.521200pt;}
.x33{left:93.079867pt;}
.xd{left:95.748000pt;}
.x25{left:97.133867pt;}
.x2a{left:98.267733pt;}
.x2c{left:101.898133pt;}
.x4d{left:104.611067pt;}
.x49{left:106.165733pt;}
.x50{left:107.279067pt;}
.x54{left:111.275067pt;}
.x1c{left:112.878400pt;}
.x15{left:115.009200pt;}
.xe{left:116.367600pt;}
.x42{left:119.712667pt;}
.x17{left:123.398133pt;}
.x38{left:145.511867pt;}
.x3{left:163.531467pt;}
.x13{left:178.436400pt;}
.x9{left:197.867733pt;}
.x21{left:214.070400pt;}
.x20{left:215.119067pt;}
.x1f{left:226.102267pt;}
.x28{left:250.204667pt;}
.x23{left:251.338533pt;}
.x2d{left:252.357733pt;}
.x22{left:268.933067pt;}
.x59{left:270.734400pt;}
.x62{left:272.624267pt;}
.x5c{left:273.569067pt;}
.x64{left:275.282000pt;}
.x5e{left:276.507733pt;}
.x40{left:283.804400pt;}
.x43{left:287.804400pt;}
.x48{left:291.804400pt;}
.x18{left:293.885333pt;}
.x3e{left:297.804400pt;}
.x1{left:302.250800pt;}
.x5d{left:307.823067pt;}
.x5b{left:322.858133pt;}
.x2{left:327.667467pt;}
.x5{left:332.842533pt;}
.x60{left:336.738667pt;}
.x61{left:340.569600pt;}
.x5a{left:358.242267pt;}
.x16{left:359.648267pt;}
.x65{left:361.086800pt;}
.x58{left:363.125067pt;}
.x63{left:366.132133pt;}
.x14{left:368.467733pt;}
.x5f{left:370.015600pt;}
.x4{left:426.459733pt;}
.x1e{left:427.503200pt;}
.xf{left:449.658933pt;}
.x29{left:451.594000pt;}
.x27{left:454.765067pt;}
.x35{left:461.803467pt;}
.x11{left:462.774667pt;}
.x10{left:466.450133pt;}
.x1b{left:471.954267pt;}
.x2b{left:477.165333pt;}
.x31{left:478.110267pt;}
.x32{left:481.296533pt;}
.x2f{left:482.283067pt;}
.x30{left:484.760667pt;}
.xb{left:489.615867pt;}
.x37{left:502.910267pt;}
.x1a{left:510.676267pt;}
.x36{left:516.354267pt;}
.xa{left:517.457600pt;}
.x12{left:539.606400pt;}
.x1d{left:541.158800pt;}
.x34{left:548.365467pt;}
.x57{left:566.557867pt;}
.x19{left:583.043333pt;}
.x26{left:615.725333pt;}
.x8{left:731.590533pt;}
.x7{left:739.590533pt;}
}




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