
    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_6159c535e45a4ba3b8f4a27b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_6edfc6e921fddf0f56addc0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117000;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_50e69822f7f646687436eeb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_c7155ebf631ce93dca321e62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112000;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_c1ad1f7abab82acc5cf0e27c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_a4e842bf66d253207b458ba8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.756000;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_28b5969a17026a44a41626f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981000;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_67be20a30184507974b942ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.656000px;}
.v2{vertical-align:23.899800px;}
.ls3{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.300000px;}
.ls4{letter-spacing:-0.240000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:4.560000px;}
.ls0{letter-spacing:6.216000px;}
.ls1{letter-spacing:9.504000px;}
.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;}
}
.wscc{word-spacing:-18.240000px;}
.ws3{word-spacing:-16.704000px;}
.ws8e{word-spacing:-16.416000px;}
.ws2{word-spacing:-15.048000px;}
.ws3a{word-spacing:-13.980000px;}
.wsce{word-spacing:-13.920000px;}
.wscd{word-spacing:-13.680000px;}
.wse0{word-spacing:-13.080000px;}
.ws0{word-spacing:-11.184000px;}
.ws4{word-spacing:-10.656000px;}
.ws3b{word-spacing:-9.786000px;}
.ws79{word-spacing:-9.570528px;}
.ws1{word-spacing:-7.828800px;}
.ws84{word-spacing:-4.248000px;}
.wsc5{word-spacing:-3.888000px;}
.wsbc{word-spacing:-3.528000px;}
.ws94{word-spacing:-3.384000px;}
.ws1c{word-spacing:-3.312000px;}
.ws80{word-spacing:-3.240000px;}
.wsad{word-spacing:-3.168000px;}
.wsbb{word-spacing:-3.096000px;}
.ws6e{word-spacing:-3.024000px;}
.ws8a{word-spacing:-2.952000px;}
.ws4a{word-spacing:-2.880000px;}
.ws87{word-spacing:-2.808000px;}
.wse9{word-spacing:-2.640000px;}
.wsc3{word-spacing:-2.592000px;}
.wsf6{word-spacing:-2.580000px;}
.wsc0{word-spacing:-2.520000px;}
.ws102{word-spacing:-2.460000px;}
.wse6{word-spacing:-2.340000px;}
.wsb8{word-spacing:-2.304000px;}
.ws5a{word-spacing:-2.232000px;}
.ws103{word-spacing:-2.220000px;}
.ws52{word-spacing:-2.160000px;}
.ws66{word-spacing:-2.088000px;}
.ws6a{word-spacing:-2.016000px;}
.ws10a{word-spacing:-1.980000px;}
.ws86{word-spacing:-1.944000px;}
.wse{word-spacing:-1.920000px;}
.ws89{word-spacing:-1.872000px;}
.wsed{word-spacing:-1.860000px;}
.wsc4{word-spacing:-1.800000px;}
.ws100{word-spacing:-1.740000px;}
.ws78{word-spacing:-1.728000px;}
.wsd9{word-spacing:-1.680000px;}
.ws6b{word-spacing:-1.656000px;}
.wsda{word-spacing:-1.620000px;}
.ws64{word-spacing:-1.584000px;}
.ws5b{word-spacing:-1.512000px;}
.ws10{word-spacing:-1.488000px;}
.ws40{word-spacing:-1.440000px;}
.wsd5{word-spacing:-1.380000px;}
.ws7f{word-spacing:-1.368000px;}
.wsd6{word-spacing:-1.320000px;}
.wsa1{word-spacing:-1.296000px;}
.ws9a{word-spacing:-1.224000px;}
.ws31{word-spacing:-1.104000px;}
.ws68{word-spacing:-1.080000px;}
.wse2{word-spacing:-1.020000px;}
.ws53{word-spacing:-1.008000px;}
.wse1{word-spacing:-0.960000px;}
.ws51{word-spacing:-0.936000px;}
.ws9b{word-spacing:-0.864000px;}
.wsbe{word-spacing:-0.792000px;}
.ws62{word-spacing:-0.780000px;}
.ws19{word-spacing:-0.720000px;}
.wsf0{word-spacing:-0.660000px;}
.ws44{word-spacing:-0.648000px;}
.ws101{word-spacing:-0.600000px;}
.ws20{word-spacing:-0.576000px;}
.wsf2{word-spacing:-0.540000px;}
.ws9e{word-spacing:-0.504000px;}
.wsf1{word-spacing:-0.480000px;}
.ws4c{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.360000px;}
.ws11{word-spacing:-0.336000px;}
.wsef{word-spacing:-0.300000px;}
.wscb{word-spacing:-0.288000px;}
.ws109{word-spacing:-0.240000px;}
.ws45{word-spacing:-0.216000px;}
.wsec{word-spacing:-0.180000px;}
.ws32{word-spacing:-0.144000px;}
.ws3c{word-spacing:-0.072000px;}
.ws3d{word-spacing:-0.050400px;}
.ws5{word-spacing:-0.042000px;}
.ws8{word-spacing:0.000000px;}
.ws33{word-spacing:0.048000px;}
.ws106{word-spacing:0.060000px;}
.ws8b{word-spacing:0.072000px;}
.ws28{word-spacing:0.096000px;}
.ws61{word-spacing:0.120000px;}
.ws73{word-spacing:0.144000px;}
.wsfd{word-spacing:0.180000px;}
.ws29{word-spacing:0.192000px;}
.ws91{word-spacing:0.216000px;}
.ws2b{word-spacing:0.240000px;}
.ws92{word-spacing:0.288000px;}
.wsf9{word-spacing:0.300000px;}
.ws6f{word-spacing:0.360000px;}
.ws43{word-spacing:0.432000px;}
.wsfa{word-spacing:0.480000px;}
.ws1f{word-spacing:0.504000px;}
.wsea{word-spacing:0.540000px;}
.wsca{word-spacing:0.576000px;}
.wse8{word-spacing:0.600000px;}
.ws67{word-spacing:0.648000px;}
.ws10c{word-spacing:0.660000px;}
.ws2a{word-spacing:0.672000px;}
.ws36{word-spacing:0.720000px;}
.ws108{word-spacing:0.780000px;}
.ws3f{word-spacing:0.792000px;}
.ws63{word-spacing:0.864000px;}
.ws5e{word-spacing:0.900000px;}
.ws15{word-spacing:0.912000px;}
.wsae{word-spacing:0.936000px;}
.wsf5{word-spacing:0.960000px;}
.wsb2{word-spacing:1.008000px;}
.ws6d{word-spacing:1.080000px;}
.ws50{word-spacing:1.152000px;}
.ws6{word-spacing:1.200000px;}
.ws22{word-spacing:1.224000px;}
.wsa{word-spacing:1.248000px;}
.ws95{word-spacing:1.296000px;}
.wsee{word-spacing:1.320000px;}
.wsc7{word-spacing:1.344000px;}
.ws93{word-spacing:1.368000px;}
.ws60{word-spacing:1.380000px;}
.ws70{word-spacing:1.440000px;}
.wsf4{word-spacing:1.500000px;}
.ws7a{word-spacing:1.512000px;}
.ws85{word-spacing:1.584000px;}
.wsa9{word-spacing:1.656000px;}
.ws7b{word-spacing:1.728000px;}
.ws4e{word-spacing:1.800000px;}
.ws104{word-spacing:1.860000px;}
.ws42{word-spacing:1.872000px;}
.ws17{word-spacing:1.920000px;}
.ws4f{word-spacing:1.944000px;}
.ws105{word-spacing:1.980000px;}
.ws34{word-spacing:2.016000px;}
.ws107{word-spacing:2.040000px;}
.ws74{word-spacing:2.088000px;}
.wsfe{word-spacing:2.100000px;}
.ws18{word-spacing:2.112000px;}
.ws65{word-spacing:2.160000px;}
.wsf{word-spacing:2.304000px;}
.ws10b{word-spacing:2.340000px;}
.ws96{word-spacing:2.376000px;}
.ws4b{word-spacing:2.448000px;}
.ws48{word-spacing:2.520000px;}
.ws14{word-spacing:2.592000px;}
.ws76{word-spacing:2.664000px;}
.ws57{word-spacing:2.736000px;}
.ws1d{word-spacing:2.808000px;}
.ws7d{word-spacing:2.880000px;}
.ws55{word-spacing:3.024000px;}
.wsd2{word-spacing:3.060000px;}
.wsbd{word-spacing:3.096000px;}
.ws47{word-spacing:3.168000px;}
.wsf8{word-spacing:3.180000px;}
.ws25{word-spacing:3.240000px;}
.wsff{word-spacing:3.300000px;}
.ws72{word-spacing:3.384000px;}
.ws75{word-spacing:3.456000px;}
.wsdd{word-spacing:3.480000px;}
.wsd{word-spacing:3.504000px;}
.ws38{word-spacing:3.600000px;}
.wsaf{word-spacing:3.672000px;}
.ws26{word-spacing:3.744000px;}
.ws9f{word-spacing:3.816000px;}
.ws2e{word-spacing:3.888000px;}
.wsde{word-spacing:3.900000px;}
.wsaa{word-spacing:3.960000px;}
.wsdf{word-spacing:4.020000px;}
.ws59{word-spacing:4.032000px;}
.ws1b{word-spacing:4.104000px;}
.wsb3{word-spacing:4.176000px;}
.wsdb{word-spacing:4.200000px;}
.ws56{word-spacing:4.248000px;}
.wsfc{word-spacing:4.260000px;}
.ws8c{word-spacing:4.320000px;}
.ws35{word-spacing:4.368000px;}
.ws82{word-spacing:4.392000px;}
.ws54{word-spacing:4.464000px;}
.ws99{word-spacing:4.536000px;}
.ws23{word-spacing:4.608000px;}
.wscf{word-spacing:4.620000px;}
.ws13{word-spacing:4.656000px;}
.wsac{word-spacing:4.680000px;}
.wsd7{word-spacing:4.740000px;}
.wsa0{word-spacing:4.752000px;}
.wsfb{word-spacing:4.800000px;}
.ws8f{word-spacing:4.824000px;}
.wsb0{word-spacing:4.896000px;}
.wse7{word-spacing:4.920000px;}
.ws30{word-spacing:4.944000px;}
.ws4d{word-spacing:4.968000px;}
.ws27{word-spacing:5.040000px;}
.wsc{word-spacing:5.088000px;}
.ws41{word-spacing:5.112000px;}
.ws77{word-spacing:5.184000px;}
.ws2f{word-spacing:5.232000px;}
.ws69{word-spacing:5.256000px;}
.ws5c{word-spacing:5.328000px;}
.wse5{word-spacing:5.340000px;}
.wsb5{word-spacing:5.400000px;}
.ws5f{word-spacing:5.460000px;}
.ws9c{word-spacing:5.472000px;}
.wseb{word-spacing:5.520000px;}
.ws83{word-spacing:5.544000px;}
.wsc1{word-spacing:5.616000px;}
.ws7e{word-spacing:5.688000px;}
.wsb{word-spacing:5.760000px;}
.wsa3{word-spacing:5.832000px;}
.wsa8{word-spacing:5.904000px;}
.ws9d{word-spacing:5.976000px;}
.ws2c{word-spacing:6.048000px;}
.ws1a{word-spacing:6.096000px;}
.ws81{word-spacing:6.120000px;}
.ws7{word-spacing:6.144000px;}
.ws2d{word-spacing:6.192000px;}
.ws49{word-spacing:6.336000px;}
.wsa7{word-spacing:6.480000px;}
.ws16{word-spacing:6.528000px;}
.ws88{word-spacing:6.552000px;}
.wsd1{word-spacing:6.600000px;}
.wsb7{word-spacing:6.624000px;}
.wse4{word-spacing:6.660000px;}
.wsb6{word-spacing:6.696000px;}
.wsd0{word-spacing:6.720000px;}
.ws37{word-spacing:6.768000px;}
.wse3{word-spacing:6.780000px;}
.ws90{word-spacing:6.840000px;}
.wsd4{word-spacing:6.900000px;}
.ws24{word-spacing:6.912000px;}
.wsd3{word-spacing:7.020000px;}
.wsbf{word-spacing:7.056000px;}
.wsa6{word-spacing:7.128000px;}
.wsdc{word-spacing:7.140000px;}
.wsa5{word-spacing:7.200000px;}
.ws97{word-spacing:7.272000px;}
.ws7c{word-spacing:7.344000px;}
.ws71{word-spacing:7.416000px;}
.ws1e{word-spacing:7.488000px;}
.wsf3{word-spacing:7.500000px;}
.wsa4{word-spacing:7.560000px;}
.ws46{word-spacing:7.704000px;}
.ws12{word-spacing:7.728000px;}
.wsd8{word-spacing:7.740000px;}
.ws98{word-spacing:7.848000px;}
.ws58{word-spacing:7.920000px;}
.wsa2{word-spacing:8.064000px;}
.wsb9{word-spacing:8.136000px;}
.wsc6{word-spacing:8.208000px;}
.wsab{word-spacing:8.352000px;}
.wsb4{word-spacing:8.568000px;}
.ws3e{word-spacing:8.640000px;}
.wsb1{word-spacing:8.928000px;}
.ws8d{word-spacing:9.000000px;}
.ws5d{word-spacing:9.072000px;}
.wsc9{word-spacing:9.144000px;}
.ws39{word-spacing:9.312000px;}
.wsc2{word-spacing:9.360000px;}
.ws6c{word-spacing:9.576000px;}
.wsba{word-spacing:9.648000px;}
.ws9{word-spacing:10.704000px;}
.wsc8{word-spacing:10.728000px;}
.wsf7{word-spacing:21.660000px;}
._b{margin-left:-3071.622600px;}
._4{margin-left:-17.712000px;}
._9{margin-left:-4.995240px;}
._2{margin-left:-3.967200px;}
._1{margin-left:-2.220600px;}
._3{margin-left:-1.161600px;}
._0{width:1.679400px;}
._5{width:3.470400px;}
._6{width:4.780800px;}
._c{width:5.911200px;}
._7{width:6.912000px;}
._d{width:8.668800px;}
._e{width:10.267200px;}
._12{width:37.020000px;}
._13{width:39.000000px;}
._f{width:71.040000px;}
._10{width:72.120000px;}
._11{width:74.580000px;}
._a{width:413.286240px;}
._8{width:2429.269800px;}
.fc3{color:rgb(145,143,143);}
.fc2{color:rgb(4,6,6);}
.fc1{color:rgb(48,79,170);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:33.600000px;}
.fs9{font-size:41.976000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:50.400000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:103.457100px;}
.y47{bottom:108.433200px;}
.y4c{bottom:111.747000px;}
.y49{bottom:120.707100px;}
.y46{bottom:122.833200px;}
.y48{bottom:137.957100px;}
.y45{bottom:141.724800px;}
.y286{bottom:148.413450px;}
.y19f{bottom:148.657950px;}
.y12d{bottom:148.704750px;}
.y1ca{bottom:148.772550px;}
.y230{bottom:148.776900px;}
.yf3{bottom:148.785300px;}
.y104{bottom:148.794450px;}
.y157{bottom:148.800750px;}
.ycb{bottom:148.823250px;}
.y181{bottom:148.830750px;}
.y76{bottom:148.837950px;}
.ya4{bottom:148.853250px;}
.y25b{bottom:148.870800px;}
.y209{bottom:148.888050px;}
.y285{bottom:166.413450px;}
.y25a{bottom:167.725800px;}
.y22f{bottom:167.781900px;}
.y19e{bottom:169.411950px;}
.y12c{bottom:169.458750px;}
.yf2{bottom:169.683300px;}
.y103{bottom:169.692450px;}
.y180{bottom:169.692750px;}
.yca{bottom:169.703250px;}
.ya3{bottom:169.751250px;}
.y1c9{bottom:169.850550px;}
.y208{bottom:169.876050px;}
.y156{bottom:170.022750px;}
.y75{bottom:170.743950px;}
.y30{bottom:180.584850px;}
.y284{bottom:184.413450px;}
.y22e{bottom:186.786900px;}
.y19d{bottom:190.165950px;}
.y12b{bottom:190.212750px;}
.y17f{bottom:190.554750px;}
.yc9{bottom:190.583250px;}
.y102{bottom:190.590450px;}
.ya2{bottom:190.649250px;}
.y1c8{bottom:190.928550px;}
.y155{bottom:191.244750px;}
.y74{bottom:192.649950px;}
.y259{bottom:195.085800px;}
.y2f{bottom:201.824850px;}
.yf1{bottom:205.575300px;}
.y207{bottom:205.858050px;}
.y283{bottom:210.918450px;}
.y19c{bottom:210.919950px;}
.y12a{bottom:210.966750px;}
.y17e{bottom:211.416750px;}
.ya1{bottom:211.547250px;}
.y1c7{bottom:212.006550px;}
.y154{bottom:212.466750px;}
.y258{bottom:213.940800px;}
.y22d{bottom:214.296900px;}
.y2e{bottom:223.064850px;}
.yc8{bottom:226.465350px;}
.yf0{bottom:226.473300px;}
.y101{bottom:226.482450px;}
.y206{bottom:226.846050px;}
.y282{bottom:228.918450px;}
.y73{bottom:229.549950px;}
.y19b{bottom:231.673950px;}
.y129{bottom:231.720750px;}
.y17d{bottom:232.278750px;}
.ya0{bottom:232.445250px;}
.y257{bottom:232.795800px;}
.y1c6{bottom:233.084550px;}
.y153{bottom:233.688750px;}
.y22c{bottom:241.806900px;}
.y2d{bottom:244.304850px;}
.y281{bottom:246.918450px;}
.yef{bottom:247.371300px;}
.y100{bottom:247.380450px;}
.y205{bottom:247.834050px;}
.y72{bottom:251.455950px;}
.y256{bottom:251.650800px;}
.y19a{bottom:252.427950px;}
.y128{bottom:252.474750px;}
.y1c5{bottom:254.162550px;}
.y152{bottom:254.910750px;}
.y22b{bottom:260.811900px;}
.y2c{bottom:265.544850px;}
.y17c{bottom:268.134750px;}
.yee{bottom:268.269300px;}
.yff{bottom:268.278450px;}
.y9f{bottom:268.337250px;}
.y204{bottom:268.822050px;}
.y127{bottom:273.228750px;}
.y71{bottom:273.361950px;}
.y280{bottom:273.423450px;}
.y1c4{bottom:275.240550px;}
.y151{bottom:276.132750px;}
.y255{bottom:279.010800px;}
.y22a{bottom:279.816900px;}
.y2b{bottom:286.784850px;}
.y199{bottom:288.175950px;}
.y17b{bottom:288.996750px;}
.yed{bottom:289.167300px;}
.yfe{bottom:289.176450px;}
.y9e{bottom:289.235250px;}
.y203{bottom:289.810050px;}
.y27f{bottom:291.423450px;}
.y126{bottom:293.982750px;}
.y70{bottom:295.267950px;}
.y150{bottom:297.354750px;}
.y254{bottom:297.865800px;}
.y229{bottom:307.326900px;}
.y2a{bottom:308.024850px;}
.y198{bottom:308.929950px;}
.y27e{bottom:309.423450px;}
.y17a{bottom:309.858750px;}
.yec{bottom:310.065300px;}
.y9d{bottom:310.133250px;}
.y202{bottom:310.798050px;}
.y1c3{bottom:311.312550px;}
.y6f{bottom:317.173950px;}
.y14f{bottom:318.576750px;}
.yc7{bottom:324.251100px;}
.yfd{bottom:324.931950px;}
.y253{bottom:325.225800px;}
.y228{bottom:326.331900px;}
.y27d{bottom:327.423450px;}
.y29{bottom:329.264850px;}
.y197{bottom:329.683950px;}
.y125{bottom:329.730750px;}
.y179{bottom:330.720750px;}
.yeb{bottom:330.963300px;}
.y9c{bottom:331.031250px;}
.y201{bottom:331.786050px;}
.y1c2{bottom:332.390550px;}
.y6e{bottom:339.079950px;}
.y252{bottom:344.080800px;}
.yc6{bottom:345.131100px;}
.y227{bottom:345.336900px;}
.y27c{bottom:345.423450px;}
.yfc{bottom:345.829950px;}
.y196{bottom:350.437950px;}
.y124{bottom:350.484750px;}
.y28{bottom:350.504850px;}
.y178{bottom:351.582750px;}
.y9b{bottom:351.929250px;}
.y1c1{bottom:353.468550px;}
.y14e{bottom:354.739950px;}
.y6d{bottom:360.985950px;}
.y251{bottom:362.935800px;}
.yc5{bottom:366.011100px;}
.yea{bottom:366.727950px;}
.y200{bottom:367.768050px;}
.y195{bottom:371.191950px;}
.y123{bottom:371.238750px;}
.y27{bottom:371.744850px;}
.y27b{bottom:371.928450px;}
.y177{bottom:372.448350px;}
.y9a{bottom:372.827250px;}
.y226{bottom:372.846900px;}
.y1c0{bottom:374.546550px;}
.y14d{bottom:375.961950px;}
.y250{bottom:381.790800px;}
.yc4{bottom:386.891100px;}
.ye9{bottom:387.625950px;}
.y1ff{bottom:388.756050px;}
.y27a{bottom:389.928450px;}
.y225{bottom:391.851900px;}
.y194{bottom:391.945950px;}
.y122{bottom:391.992750px;}
.y26{bottom:392.984850px;}
.y176{bottom:393.310350px;}
.y99{bottom:393.725250px;}
.y1bf{bottom:395.624550px;}
.y14c{bottom:397.183950px;}
.y6c{bottom:397.885950px;}
.yc3{bottom:407.771100px;}
.ye8{bottom:408.523950px;}
.y24f{bottom:409.150800px;}
.y1fe{bottom:409.744050px;}
.y224{bottom:410.856900px;}
.y193{bottom:412.699950px;}
.y121{bottom:412.746750px;}
.y175{bottom:414.172350px;}
.y25{bottom:414.224850px;}
.y98{bottom:414.623250px;}
.y279{bottom:416.433450px;}
.y1be{bottom:416.702550px;}
.y14b{bottom:418.405950px;}
.y6b{bottom:419.791950px;}
.y1e3{bottom:427.693950px;}
.y24e{bottom:428.005800px;}
.yc2{bottom:428.651100px;}
.ye7{bottom:429.421950px;}
.y1fd{bottom:430.732050px;}
.y192{bottom:433.453950px;}
.y120{bottom:433.500750px;}
.y278{bottom:434.433450px;}
.y174{bottom:435.034350px;}
.y24{bottom:435.464850px;}
.y97{bottom:435.521250px;}
.y1bd{bottom:437.780550px;}
.y223{bottom:438.366900px;}
.y14a{bottom:439.627950px;}
.y6a{bottom:441.697950px;}
.y1e2{bottom:448.447950px;}
.yc1{bottom:449.531100px;}
.ye6{bottom:450.319950px;}
.y1fc{bottom:451.720050px;}
.y277{bottom:452.433450px;}
.y191{bottom:454.207950px;}
.y24d{bottom:455.365800px;}
.y173{bottom:455.896350px;}
.y96{bottom:456.419250px;}
.y23{bottom:456.704850px;}
.y222{bottom:457.371900px;}
.y1bc{bottom:458.858550px;}
.y149{bottom:460.849950px;}
.y69{bottom:463.603950px;}
.y1e1{bottom:469.201950px;}
.y11f{bottom:469.248750px;}
.yc0{bottom:470.411100px;}
.y276{bottom:470.433450px;}
.ye5{bottom:471.217950px;}
.y1fb{bottom:472.708050px;}
.y24c{bottom:474.220800px;}
.y190{bottom:474.961950px;}
.y172{bottom:476.758350px;}
.y22{bottom:477.944850px;}
.y1bb{bottom:479.936550px;}
.y148{bottom:482.071950px;}
.y221{bottom:484.881900px;}
.y68{bottom:485.509950px;}
.y1e0{bottom:489.955950px;}
.ybf{bottom:491.291100px;}
.ye4{bottom:492.115950px;}
.y95{bottom:492.349350px;}
.y1fa{bottom:493.696050px;}
.y18f{bottom:495.715950px;}
.y275{bottom:496.938450px;}
.y171{bottom:497.620350px;}
.y21{bottom:499.184850px;}
.y1ba{bottom:501.014550px;}
.y24b{bottom:501.580800px;}
.y147{bottom:503.293950px;}
.y220{bottom:503.886900px;}
.y67{bottom:507.415950px;}
.y94{bottom:510.544350px;}
.y1df{bottom:510.709950px;}
.ye3{bottom:513.013950px;}
.y1f9{bottom:514.684050px;}
.y274{bottom:514.938450px;}
.y18e{bottom:516.469950px;}
.y20{bottom:520.424850px;}
.y24a{bottom:520.435800px;}
.y1b9{bottom:522.092550px;}
.y21f{bottom:522.891900px;}
.y146{bottom:524.515950px;}
.ybe{bottom:527.165100px;}
.y93{bottom:528.739350px;}
.y66{bottom:529.321950px;}
.y11e{bottom:530.502750px;}
.y1de{bottom:531.463950px;}
.y170{bottom:533.515950px;}
.ye2{bottom:533.911950px;}
.y18d{bottom:537.223950px;}
.y273{bottom:541.443450px;}
.y21e{bottom:541.896900px;}
.y1b8{bottom:543.109950px;}
.y92{bottom:546.934350px;}
.y249{bottom:547.795800px;}
.ybd{bottom:548.045100px;}
.yfb{bottom:548.905950px;}
.y1f8{bottom:550.666050px;}
.y11d{bottom:551.256750px;}
.y1dd{bottom:552.217950px;}
.y16f{bottom:554.377950px;}
.ye1{bottom:554.809950px;}
.y1f{bottom:556.657050px;}
.y18c{bottom:557.977950px;}
.y272{bottom:559.443450px;}
.y145{bottom:560.731950px;}
.y1b7{bottom:564.187950px;}
.y91{bottom:565.129350px;}
.y65{bottom:566.221950px;}
.y248{bottom:566.650800px;}
.ybc{bottom:568.925100px;}
.y21d{bottom:569.406900px;}
.yfa{bottom:569.803950px;}
.y1f7{bottom:571.654050px;}
.y11c{bottom:572.010750px;}
.y1dc{bottom:572.971950px;}
.y16e{bottom:575.239950px;}
.y271{bottom:577.443450px;}
.y144{bottom:581.953950px;}
.y90{bottom:583.324350px;}
.y1b6{bottom:585.265950px;}
.y64{bottom:588.127950px;}
.y21c{bottom:588.411900px;}
.ybb{bottom:589.805100px;}
.ye0{bottom:590.701950px;}
.y1f6{bottom:592.642050px;}
.y11b{bottom:592.764750px;}
.y18b{bottom:593.725950px;}
.y247{bottom:594.010800px;}
.y270{bottom:595.443450px;}
.y16d{bottom:596.101950px;}
.y8f{bottom:601.519350px;}
.y143{bottom:603.175950px;}
.y1b5{bottom:606.343950px;}
.y1db{bottom:608.719950px;}
.y63{bottom:610.033950px;}
.yba{bottom:610.685100px;}
.ydf{bottom:611.599950px;}
.y246{bottom:612.865800px;}
.y26f{bottom:613.443450px;}
.y11a{bottom:613.518750px;}
.y1f5{bottom:613.630050px;}
.y18a{bottom:614.479950px;}
.y21b{bottom:615.921900px;}
.y16c{bottom:616.963950px;}
.y17{bottom:617.116500px;}
.y142{bottom:624.397950px;}
.y1b4{bottom:627.421950px;}
.y1da{bottom:629.473950px;}
.y26e{bottom:631.443450px;}
.y16{bottom:631.516500px;}
.yb9{bottom:631.565100px;}
.y62{bottom:631.939950px;}
.yde{bottom:632.497950px;}
.y119{bottom:634.272750px;}
.y1f4{bottom:634.618050px;}
.y8e{bottom:634.769850px;}
.y21a{bottom:634.926900px;}
.y189{bottom:635.233950px;}
.y16b{bottom:637.825950px;}
.y245{bottom:640.225800px;}
.y141{bottom:645.619950px;}
.y4d{bottom:647.367150px;}
.y1b3{bottom:648.499950px;}
.y1d9{bottom:650.227950px;}
.yb8{bottom:652.445100px;}
.ydd{bottom:653.395950px;}
.y61{bottom:653.845950px;}
.y219{bottom:653.931900px;}
.y118{bottom:655.026750px;}
.y1f3{bottom:655.606050px;}
.y188{bottom:655.987950px;}
.y26d{bottom:657.948450px;}
.y16a{bottom:658.687950px;}
.y244{bottom:659.080800px;}
.y15{bottom:661.507200px;}
.y140{bottom:666.841950px;}
.y1b2{bottom:669.577950px;}
.y8d{bottom:670.661850px;}
.y1d8{bottom:670.981950px;}
.yb7{bottom:673.325100px;}
.ydc{bottom:674.293950px;}
.y60{bottom:675.751950px;}
.y117{bottom:675.780750px;}
.y14{bottom:675.907200px;}
.y26c{bottom:675.948450px;}
.y187{bottom:676.741950px;}
.y218{bottom:681.441900px;}
.y243{bottom:686.440800px;}
.y13f{bottom:688.063950px;}
.y43{bottom:690.207900px;}
.y13{bottom:690.307200px;}
.y1b1{bottom:690.655950px;}
.y8c{bottom:691.559850px;}
.y1f2{bottom:691.588050px;}
.y1d7{bottom:691.735950px;}
.y26b{bottom:693.948450px;}
.yb6{bottom:694.205100px;}
.y169{bottom:694.543950px;}
.y116{bottom:696.534750px;}
.y5f{bottom:697.657950px;}
.y217{bottom:700.446900px;}
.y42{bottom:704.607900px;}
.y12{bottom:704.707200px;}
.ydb{bottom:710.185950px;}
.y1b0{bottom:711.733950px;}
.y26a{bottom:711.948450px;}
.y8b{bottom:712.457850px;}
.y186{bottom:712.489950px;}
.y1f1{bottom:712.576050px;}
.y242{bottom:713.800800px;}
.yb5{bottom:715.085100px;}
.y168{bottom:715.405950px;}
.y115{bottom:717.288750px;}
.y41{bottom:719.007900px;}
.y11{bottom:719.107200px;}
.y5e{bottom:719.563950px;}
.y13e{bottom:724.279950px;}
.y216{bottom:727.956900px;}
.y269{bottom:729.948450px;}
.y1d6{bottom:733.243950px;}
.y8a{bottom:733.355850px;}
.y40{bottom:733.407900px;}
.y10{bottom:733.507200px;}
.y1f0{bottom:733.564050px;}
.yb4{bottom:735.965100px;}
.y167{bottom:736.267950px;}
.y114{bottom:738.042750px;}
.y241{bottom:741.160800px;}
.y294{bottom:744.355800px;}
.y13d{bottom:745.501950px;}
.y215{bottom:746.961900px;}
.y1af{bottom:747.805950px;}
.y3f{bottom:747.807900px;}
.yf{bottom:747.907200px;}
.y268{bottom:747.948450px;}
.y1d5{bottom:753.997950px;}
.y89{bottom:754.253850px;}
.y1ef{bottom:754.552050px;}
.y5d{bottom:756.463950px;}
.yb3{bottom:756.845100px;}
.y166{bottom:757.129950px;}
.y113{bottom:758.796750px;}
.y240{bottom:760.015800px;}
.y3e{bottom:762.207900px;}
.ye{bottom:762.307200px;}
.y293{bottom:762.355800px;}
.y214{bottom:765.966900px;}
.y13c{bottom:766.723950px;}
.y1ae{bottom:768.883950px;}
.yda{bottom:771.583950px;}
.y185{bottom:773.743950px;}
.y1d4{bottom:774.751950px;}
.y88{bottom:775.151850px;}
.y1ee{bottom:775.540050px;}
.y3d{bottom:776.607900px;}
.yd{bottom:776.707200px;}
.yb2{bottom:777.725100px;}
.y165{bottom:777.991950px;}
.y5c{bottom:778.369950px;}
.y267{bottom:780.948450px;}
.y23f{bottom:787.375800px;}
.y13b{bottom:787.945950px;}
.y292{bottom:788.860800px;}
.y1ad{bottom:789.961950px;}
.y3c{bottom:791.007900px;}
.yc{bottom:791.107200px;}
.yd9{bottom:792.481950px;}
.y213{bottom:793.476900px;}
.y184{bottom:794.497950px;}
.y112{bottom:794.544750px;}
.y1d3{bottom:795.505950px;}
.y87{bottom:796.049850px;}
.y1ed{bottom:796.528050px;}
.y164{bottom:798.853950px;}
.y5b{bottom:800.275950px;}
.y3b{bottom:805.407900px;}
.yb{bottom:805.507200px;}
.y291{bottom:806.860800px;}
.y13a{bottom:809.167950px;}
.y1ac{bottom:811.039950px;}
.y212{bottom:812.481900px;}
.yd8{bottom:813.379950px;}
.yb1{bottom:813.599100px;}
.y23e{bottom:814.735800px;}
.y183{bottom:815.251950px;}
.y111{bottom:815.298750px;}
.y1d2{bottom:816.259950px;}
.y86{bottom:816.947850px;}
.y163{bottom:819.715950px;}
.y3a{bottom:819.807900px;}
.ya{bottom:819.907200px;}
.y5a{bottom:822.181950px;}
.y139{bottom:830.389950px;}
.y211{bottom:831.486900px;}
.y1ab{bottom:832.117950px;}
.y1ec{bottom:832.507350px;}
.y290{bottom:833.365800px;}
.y23d{bottom:833.590800px;}
.y39{bottom:834.207900px;}
.yd7{bottom:834.277950px;}
.y9{bottom:834.307200px;}
.yb0{bottom:834.479100px;}
.y182{bottom:836.005950px;}
.y110{bottom:836.052750px;}
.y1d1{bottom:837.013950px;}
.y85{bottom:837.845850px;}
.y59{bottom:844.087950px;}
.y38{bottom:848.607900px;}
.y8{bottom:848.707200px;}
.y210{bottom:850.491900px;}
.y28f{bottom:851.365800px;}
.y138{bottom:851.611950px;}
.y1aa{bottom:853.195950px;}
.yd6{bottom:855.175950px;}
.yaf{bottom:855.359100px;}
.y162{bottom:855.571950px;}
.y10f{bottom:856.759950px;}
.y1d0{bottom:857.767950px;}
.y84{bottom:858.743850px;}
.y1eb{bottom:859.807350px;}
.y23c{bottom:860.950800px;}
.y37{bottom:863.007900px;}
.y7{bottom:863.107200px;}
.y58{bottom:865.993950px;}
.y266{bottom:870.355800px;}
.y1a9{bottom:874.273950px;}
.yd5{bottom:876.073950px;}
.yae{bottom:876.239100px;}
.y161{bottom:876.433950px;}
.y36{bottom:877.407900px;}
.y6{bottom:877.507200px;}
.y10e{bottom:877.513950px;}
.y28e{bottom:877.870800px;}
.y1cf{bottom:878.521950px;}
.y83{bottom:879.641850px;}
.y23b{bottom:879.805800px;}
.y20f{bottom:884.496150px;}
.y137{bottom:887.827950px;}
.y57{bottom:887.899950px;}
.y265{bottom:888.355800px;}
.yf9{bottom:891.067950px;}
.y35{bottom:891.807900px;}
.y5{bottom:891.907200px;}
.y77{bottom:894.189000px;}
.y1a8{bottom:895.351950px;}
.y28d{bottom:895.870800px;}
.yd4{bottom:896.971950px;}
.yad{bottom:897.119100px;}
.y160{bottom:897.295950px;}
.y10d{bottom:898.267950px;}
.y1ce{bottom:899.275950px;}
.y34{bottom:906.207900px;}
.y4{bottom:906.307200px;}
.y264{bottom:906.355800px;}
.y23a{bottom:907.165800px;}
.y136{bottom:909.049950px;}
.y56{bottom:909.805950px;}
.yf8{bottom:911.965950px;}
.y28c{bottom:913.870800px;}
.y82{bottom:915.533850px;}
.y1a7{bottom:916.429950px;}
.yd3{bottom:917.869950px;}
.yac{bottom:917.999100px;}
.y15f{bottom:918.157950px;}
.y10c{bottom:919.021950px;}
.y1cd{bottom:920.029950px;}
.y33{bottom:920.607900px;}
.y3{bottom:920.707200px;}
.y239{bottom:926.020800px;}
.y135{bottom:930.271950px;}
.y55{bottom:931.711950px;}
.y28b{bottom:931.870800px;}
.y263{bottom:932.860800px;}
.yf7{bottom:932.863950px;}
.y32{bottom:935.007900px;}
.y2{bottom:935.107200px;}
.y81{bottom:936.431850px;}
.y1a6{bottom:937.507950px;}
.yd2{bottom:938.767950px;}
.yab{bottom:938.879100px;}
.y15e{bottom:939.019950px;}
.y10b{bottom:939.775950px;}
.y1cc{bottom:940.783950px;}
.y238{bottom:944.875800px;}
.y31{bottom:949.407900px;}
.y1{bottom:949.507200px;}
.y28a{bottom:949.870800px;}
.y262{bottom:950.860800px;}
.y134{bottom:951.493950px;}
.y1ea{bottom:953.131950px;}
.y54{bottom:953.617950px;}
.yf6{bottom:953.761950px;}
.y80{bottom:957.329850px;}
.y1a5{bottom:958.585950px;}
.yd1{bottom:959.665950px;}
.yaa{bottom:959.759100px;}
.y15d{bottom:959.881950px;}
.y10a{bottom:960.529950px;}
.y289{bottom:967.870800px;}
.y237{bottom:972.235800px;}
.y133{bottom:972.715950px;}
.y1e9{bottom:974.119950px;}
.yf5{bottom:974.659950px;}
.y53{bottom:975.523950px;}
.y1cb{bottom:976.531950px;}
.y261{bottom:977.365800px;}
.y7f{bottom:978.227850px;}
.yd0{bottom:980.563950px;}
.ya9{bottom:980.639100px;}
.y15c{bottom:980.743950px;}
.y109{bottom:981.283950px;}
.y288{bottom:985.870800px;}
.y1e{bottom:989.376300px;}
.y236{bottom:991.090800px;}
.y20e{bottom:991.507950px;}
.y132{bottom:993.937950px;}
.y1a4{bottom:994.657950px;}
.y1e8{bottom:995.107950px;}
.y260{bottom:995.365800px;}
.yf4{bottom:995.557950px;}
.y52{bottom:997.429950px;}
.y7e{bottom:999.125850px;}
.ya8{bottom:1001.519100px;}
.y15b{bottom:1001.605950px;}
.y108{bottom:1002.037950px;}
.y287{bottom:1003.870800px;}
.y44{bottom:1008.123900px;}
.y235{bottom:1009.945800px;}
.y1d{bottom:1010.976300px;}
.y20d{bottom:1013.215950px;}
.y131{bottom:1015.159950px;}
.y1a3{bottom:1015.735950px;}
.y1e7{bottom:1016.095950px;}
.ycf{bottom:1016.455950px;}
.y51{bottom:1019.335950px;}
.y7d{bottom:1020.023850px;}
.y25f{bottom:1021.870800px;}
.y15a{bottom:1022.467950px;}
.y20c{bottom:1034.923950px;}
.y130{bottom:1036.381950px;}
.y1a2{bottom:1036.813950px;}
.y1e6{bottom:1037.083950px;}
.y234{bottom:1037.305800px;}
.yce{bottom:1037.353950px;}
.ya7{bottom:1037.407950px;}
.y107{bottom:1037.785950px;}
.y25e{bottom:1039.870800px;}
.y7c{bottom:1040.921850px;}
.y159{bottom:1043.329950px;}
.y1c{bottom:1053.836100px;}
.y50{bottom:1056.235950px;}
.y20b{bottom:1056.631950px;}
.y12f{bottom:1057.603950px;}
.y1a{bottom:1057.846050px;}
.y1a1{bottom:1057.891950px;}
.y1e5{bottom:1058.071950px;}
.ycd{bottom:1058.251950px;}
.ya6{bottom:1058.287950px;}
.y106{bottom:1058.539950px;}
.y7b{bottom:1061.819850px;}
.y158{bottom:1064.191950px;}
.y233{bottom:1064.665800px;}
.y25d{bottom:1066.375800px;}
.y19{bottom:1076.821050px;}
.y4f{bottom:1078.141950px;}
.y20a{bottom:1078.339950px;}
.y12e{bottom:1078.825950px;}
.y1a0{bottom:1078.969950px;}
.y1e4{bottom:1079.059950px;}
.ycc{bottom:1079.149950px;}
.ya5{bottom:1079.167950px;}
.y105{bottom:1079.293950px;}
.y1b{bottom:1082.636100px;}
.y232{bottom:1083.520800px;}
.y25c{bottom:1084.375800px;}
.y7a{bottom:1097.720100px;}
.y4e{bottom:1100.047950px;}
.y18{bottom:1100.048100px;}
.y231{bottom:1102.375800px;}
.y78{bottom:1105.511850px;}
.y79{bottom:1141.432650px;}
.y4b{bottom:1143.232200px;}
.ha{height:37.584000px;}
.h3{height:44.592000px;}
.h2{height:46.560000px;}
.hd{height:46.980000px;}
.hb{height:48.480000px;}
.h17{height:55.380000px;}
.hc{height:55.740000px;}
.h9{height:56.376000px;}
.h11{height:57.024000px;}
.h4{height:58.176000px;}
.he{height:58.200000px;}
.h5{height:61.314000px;}
.h15{height:62.839704px;}
.h13{height:63.521304px;}
.h10{height:66.456000px;}
.h8{height:66.888000px;}
.h14{height:67.075200px;}
.h16{height:67.130400px;}
.h12{height:67.397400px;}
.h7{height:67.872000px;}
.hf{height:69.840000px;}
.h6{height:77.568000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.xe{left:62.503950px;}
.x17{left:75.255000px;}
.xf{left:77.566500px;}
.x19{left:83.763750px;}
.xa{left:88.073850px;}
.x15{left:96.519750px;}
.xb{left:102.473850px;}
.x6{left:104.731650px;}
.x10{left:106.299150px;}
.xc{left:120.473850px;}
.x16{left:127.554150px;}
.x18{left:136.059150px;}
.x7{left:148.818900px;}
.x5{left:299.905650px;}
.x8{left:455.456700px;}
.x14{left:486.076350px;}
.x3{left:647.946300px;}
.x2{left:665.540100px;}
.x4{left:678.669300px;}
.xd{left:700.094100px;}
.x9{left:730.855050px;}
.x11{left:813.369600px;}
.x12{left:815.346750px;}
.x13{left:816.510750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.138667pt;}
.v2{vertical-align:21.244267pt;}
.ls3{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:4.053333pt;}
.ls0{letter-spacing:5.525333pt;}
.ls1{letter-spacing:8.448000pt;}
.wscc{word-spacing:-16.213333pt;}
.ws3{word-spacing:-14.848000pt;}
.ws8e{word-spacing:-14.592000pt;}
.ws2{word-spacing:-13.376000pt;}
.ws3a{word-spacing:-12.426667pt;}
.wsce{word-spacing:-12.373333pt;}
.wscd{word-spacing:-12.160000pt;}
.wse0{word-spacing:-11.626667pt;}
.ws0{word-spacing:-9.941333pt;}
.ws4{word-spacing:-9.472000pt;}
.ws3b{word-spacing:-8.698667pt;}
.ws79{word-spacing:-8.507136pt;}
.ws1{word-spacing:-6.958933pt;}
.ws84{word-spacing:-3.776000pt;}
.wsc5{word-spacing:-3.456000pt;}
.wsbc{word-spacing:-3.136000pt;}
.ws94{word-spacing:-3.008000pt;}
.ws1c{word-spacing:-2.944000pt;}
.ws80{word-spacing:-2.880000pt;}
.wsad{word-spacing:-2.816000pt;}
.wsbb{word-spacing:-2.752000pt;}
.ws6e{word-spacing:-2.688000pt;}
.ws8a{word-spacing:-2.624000pt;}
.ws4a{word-spacing:-2.560000pt;}
.ws87{word-spacing:-2.496000pt;}
.wse9{word-spacing:-2.346667pt;}
.wsc3{word-spacing:-2.304000pt;}
.wsf6{word-spacing:-2.293333pt;}
.wsc0{word-spacing:-2.240000pt;}
.ws102{word-spacing:-2.186667pt;}
.wse6{word-spacing:-2.080000pt;}
.wsb8{word-spacing:-2.048000pt;}
.ws5a{word-spacing:-1.984000pt;}
.ws103{word-spacing:-1.973333pt;}
.ws52{word-spacing:-1.920000pt;}
.ws66{word-spacing:-1.856000pt;}
.ws6a{word-spacing:-1.792000pt;}
.ws10a{word-spacing:-1.760000pt;}
.ws86{word-spacing:-1.728000pt;}
.wse{word-spacing:-1.706667pt;}
.ws89{word-spacing:-1.664000pt;}
.wsed{word-spacing:-1.653333pt;}
.wsc4{word-spacing:-1.600000pt;}
.ws100{word-spacing:-1.546667pt;}
.ws78{word-spacing:-1.536000pt;}
.wsd9{word-spacing:-1.493333pt;}
.ws6b{word-spacing:-1.472000pt;}
.wsda{word-spacing:-1.440000pt;}
.ws64{word-spacing:-1.408000pt;}
.ws5b{word-spacing:-1.344000pt;}
.ws10{word-spacing:-1.322667pt;}
.ws40{word-spacing:-1.280000pt;}
.wsd5{word-spacing:-1.226667pt;}
.ws7f{word-spacing:-1.216000pt;}
.wsd6{word-spacing:-1.173333pt;}
.wsa1{word-spacing:-1.152000pt;}
.ws9a{word-spacing:-1.088000pt;}
.ws31{word-spacing:-0.981333pt;}
.ws68{word-spacing:-0.960000pt;}
.wse2{word-spacing:-0.906667pt;}
.ws53{word-spacing:-0.896000pt;}
.wse1{word-spacing:-0.853333pt;}
.ws51{word-spacing:-0.832000pt;}
.ws9b{word-spacing:-0.768000pt;}
.wsbe{word-spacing:-0.704000pt;}
.ws62{word-spacing:-0.693333pt;}
.ws19{word-spacing:-0.640000pt;}
.wsf0{word-spacing:-0.586667pt;}
.ws44{word-spacing:-0.576000pt;}
.ws101{word-spacing:-0.533333pt;}
.ws20{word-spacing:-0.512000pt;}
.wsf2{word-spacing:-0.480000pt;}
.ws9e{word-spacing:-0.448000pt;}
.wsf1{word-spacing:-0.426667pt;}
.ws4c{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.320000pt;}
.ws11{word-spacing:-0.298667pt;}
.wsef{word-spacing:-0.266667pt;}
.wscb{word-spacing:-0.256000pt;}
.ws109{word-spacing:-0.213333pt;}
.ws45{word-spacing:-0.192000pt;}
.wsec{word-spacing:-0.160000pt;}
.ws32{word-spacing:-0.128000pt;}
.ws3c{word-spacing:-0.064000pt;}
.ws3d{word-spacing:-0.044800pt;}
.ws5{word-spacing:-0.037333pt;}
.ws8{word-spacing:0.000000pt;}
.ws33{word-spacing:0.042667pt;}
.ws106{word-spacing:0.053333pt;}
.ws8b{word-spacing:0.064000pt;}
.ws28{word-spacing:0.085333pt;}
.ws61{word-spacing:0.106667pt;}
.ws73{word-spacing:0.128000pt;}
.wsfd{word-spacing:0.160000pt;}
.ws29{word-spacing:0.170667pt;}
.ws91{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.213333pt;}
.ws92{word-spacing:0.256000pt;}
.wsf9{word-spacing:0.266667pt;}
.ws6f{word-spacing:0.320000pt;}
.ws43{word-spacing:0.384000pt;}
.wsfa{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.448000pt;}
.wsea{word-spacing:0.480000pt;}
.wsca{word-spacing:0.512000pt;}
.wse8{word-spacing:0.533333pt;}
.ws67{word-spacing:0.576000pt;}
.ws10c{word-spacing:0.586667pt;}
.ws2a{word-spacing:0.597333pt;}
.ws36{word-spacing:0.640000pt;}
.ws108{word-spacing:0.693333pt;}
.ws3f{word-spacing:0.704000pt;}
.ws63{word-spacing:0.768000pt;}
.ws5e{word-spacing:0.800000pt;}
.ws15{word-spacing:0.810667pt;}
.wsae{word-spacing:0.832000pt;}
.wsf5{word-spacing:0.853333pt;}
.wsb2{word-spacing:0.896000pt;}
.ws6d{word-spacing:0.960000pt;}
.ws50{word-spacing:1.024000pt;}
.ws6{word-spacing:1.066667pt;}
.ws22{word-spacing:1.088000pt;}
.wsa{word-spacing:1.109333pt;}
.ws95{word-spacing:1.152000pt;}
.wsee{word-spacing:1.173333pt;}
.wsc7{word-spacing:1.194667pt;}
.ws93{word-spacing:1.216000pt;}
.ws60{word-spacing:1.226667pt;}
.ws70{word-spacing:1.280000pt;}
.wsf4{word-spacing:1.333333pt;}
.ws7a{word-spacing:1.344000pt;}
.ws85{word-spacing:1.408000pt;}
.wsa9{word-spacing:1.472000pt;}
.ws7b{word-spacing:1.536000pt;}
.ws4e{word-spacing:1.600000pt;}
.ws104{word-spacing:1.653333pt;}
.ws42{word-spacing:1.664000pt;}
.ws17{word-spacing:1.706667pt;}
.ws4f{word-spacing:1.728000pt;}
.ws105{word-spacing:1.760000pt;}
.ws34{word-spacing:1.792000pt;}
.ws107{word-spacing:1.813333pt;}
.ws74{word-spacing:1.856000pt;}
.wsfe{word-spacing:1.866667pt;}
.ws18{word-spacing:1.877333pt;}
.ws65{word-spacing:1.920000pt;}
.wsf{word-spacing:2.048000pt;}
.ws10b{word-spacing:2.080000pt;}
.ws96{word-spacing:2.112000pt;}
.ws4b{word-spacing:2.176000pt;}
.ws48{word-spacing:2.240000pt;}
.ws14{word-spacing:2.304000pt;}
.ws76{word-spacing:2.368000pt;}
.ws57{word-spacing:2.432000pt;}
.ws1d{word-spacing:2.496000pt;}
.ws7d{word-spacing:2.560000pt;}
.ws55{word-spacing:2.688000pt;}
.wsd2{word-spacing:2.720000pt;}
.wsbd{word-spacing:2.752000pt;}
.ws47{word-spacing:2.816000pt;}
.wsf8{word-spacing:2.826667pt;}
.ws25{word-spacing:2.880000pt;}
.wsff{word-spacing:2.933333pt;}
.ws72{word-spacing:3.008000pt;}
.ws75{word-spacing:3.072000pt;}
.wsdd{word-spacing:3.093333pt;}
.wsd{word-spacing:3.114667pt;}
.ws38{word-spacing:3.200000pt;}
.wsaf{word-spacing:3.264000pt;}
.ws26{word-spacing:3.328000pt;}
.ws9f{word-spacing:3.392000pt;}
.ws2e{word-spacing:3.456000pt;}
.wsde{word-spacing:3.466667pt;}
.wsaa{word-spacing:3.520000pt;}
.wsdf{word-spacing:3.573333pt;}
.ws59{word-spacing:3.584000pt;}
.ws1b{word-spacing:3.648000pt;}
.wsb3{word-spacing:3.712000pt;}
.wsdb{word-spacing:3.733333pt;}
.ws56{word-spacing:3.776000pt;}
.wsfc{word-spacing:3.786667pt;}
.ws8c{word-spacing:3.840000pt;}
.ws35{word-spacing:3.882667pt;}
.ws82{word-spacing:3.904000pt;}
.ws54{word-spacing:3.968000pt;}
.ws99{word-spacing:4.032000pt;}
.ws23{word-spacing:4.096000pt;}
.wscf{word-spacing:4.106667pt;}
.ws13{word-spacing:4.138667pt;}
.wsac{word-spacing:4.160000pt;}
.wsd7{word-spacing:4.213333pt;}
.wsa0{word-spacing:4.224000pt;}
.wsfb{word-spacing:4.266667pt;}
.ws8f{word-spacing:4.288000pt;}
.wsb0{word-spacing:4.352000pt;}
.wse7{word-spacing:4.373333pt;}
.ws30{word-spacing:4.394667pt;}
.ws4d{word-spacing:4.416000pt;}
.ws27{word-spacing:4.480000pt;}
.wsc{word-spacing:4.522667pt;}
.ws41{word-spacing:4.544000pt;}
.ws77{word-spacing:4.608000pt;}
.ws2f{word-spacing:4.650667pt;}
.ws69{word-spacing:4.672000pt;}
.ws5c{word-spacing:4.736000pt;}
.wse5{word-spacing:4.746667pt;}
.wsb5{word-spacing:4.800000pt;}
.ws5f{word-spacing:4.853333pt;}
.ws9c{word-spacing:4.864000pt;}
.wseb{word-spacing:4.906667pt;}
.ws83{word-spacing:4.928000pt;}
.wsc1{word-spacing:4.992000pt;}
.ws7e{word-spacing:5.056000pt;}
.wsb{word-spacing:5.120000pt;}
.wsa3{word-spacing:5.184000pt;}
.wsa8{word-spacing:5.248000pt;}
.ws9d{word-spacing:5.312000pt;}
.ws2c{word-spacing:5.376000pt;}
.ws1a{word-spacing:5.418667pt;}
.ws81{word-spacing:5.440000pt;}
.ws7{word-spacing:5.461333pt;}
.ws2d{word-spacing:5.504000pt;}
.ws49{word-spacing:5.632000pt;}
.wsa7{word-spacing:5.760000pt;}
.ws16{word-spacing:5.802667pt;}
.ws88{word-spacing:5.824000pt;}
.wsd1{word-spacing:5.866667pt;}
.wsb7{word-spacing:5.888000pt;}
.wse4{word-spacing:5.920000pt;}
.wsb6{word-spacing:5.952000pt;}
.wsd0{word-spacing:5.973333pt;}
.ws37{word-spacing:6.016000pt;}
.wse3{word-spacing:6.026667pt;}
.ws90{word-spacing:6.080000pt;}
.wsd4{word-spacing:6.133333pt;}
.ws24{word-spacing:6.144000pt;}
.wsd3{word-spacing:6.240000pt;}
.wsbf{word-spacing:6.272000pt;}
.wsa6{word-spacing:6.336000pt;}
.wsdc{word-spacing:6.346667pt;}
.wsa5{word-spacing:6.400000pt;}
.ws97{word-spacing:6.464000pt;}
.ws7c{word-spacing:6.528000pt;}
.ws71{word-spacing:6.592000pt;}
.ws1e{word-spacing:6.656000pt;}
.wsf3{word-spacing:6.666667pt;}
.wsa4{word-spacing:6.720000pt;}
.ws46{word-spacing:6.848000pt;}
.ws12{word-spacing:6.869333pt;}
.wsd8{word-spacing:6.880000pt;}
.ws98{word-spacing:6.976000pt;}
.ws58{word-spacing:7.040000pt;}
.wsa2{word-spacing:7.168000pt;}
.wsb9{word-spacing:7.232000pt;}
.wsc6{word-spacing:7.296000pt;}
.wsab{word-spacing:7.424000pt;}
.wsb4{word-spacing:7.616000pt;}
.ws3e{word-spacing:7.680000pt;}
.wsb1{word-spacing:7.936000pt;}
.ws8d{word-spacing:8.000000pt;}
.ws5d{word-spacing:8.064000pt;}
.wsc9{word-spacing:8.128000pt;}
.ws39{word-spacing:8.277333pt;}
.wsc2{word-spacing:8.320000pt;}
.ws6c{word-spacing:8.512000pt;}
.wsba{word-spacing:8.576000pt;}
.ws9{word-spacing:9.514667pt;}
.wsc8{word-spacing:9.536000pt;}
.wsf7{word-spacing:19.253333pt;}
._b{margin-left:-2730.331200pt;}
._4{margin-left:-15.744000pt;}
._9{margin-left:-4.440213pt;}
._2{margin-left:-3.526400pt;}
._1{margin-left:-1.973867pt;}
._3{margin-left:-1.032533pt;}
._0{width:1.492800pt;}
._5{width:3.084800pt;}
._6{width:4.249600pt;}
._c{width:5.254400pt;}
._7{width:6.144000pt;}
._d{width:7.705600pt;}
._e{width:9.126400pt;}
._12{width:32.906667pt;}
._13{width:34.666667pt;}
._f{width:63.146667pt;}
._10{width:64.106667pt;}
._11{width:66.293333pt;}
._a{width:367.365547pt;}
._8{width:2159.350933pt;}
.fs1{font-size:29.866667pt;}
.fs9{font-size:37.312000pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:44.800000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:91.961867pt;}
.y47{bottom:96.385067pt;}
.y4c{bottom:99.330667pt;}
.y49{bottom:107.295200pt;}
.y46{bottom:109.185067pt;}
.y48{bottom:122.628533pt;}
.y45{bottom:125.977600pt;}
.y286{bottom:131.923067pt;}
.y19f{bottom:132.140400pt;}
.y12d{bottom:132.182000pt;}
.y1ca{bottom:132.242267pt;}
.y230{bottom:132.246133pt;}
.yf3{bottom:132.253600pt;}
.y104{bottom:132.261733pt;}
.y157{bottom:132.267333pt;}
.ycb{bottom:132.287333pt;}
.y181{bottom:132.294000pt;}
.y76{bottom:132.300400pt;}
.ya4{bottom:132.314000pt;}
.y25b{bottom:132.329600pt;}
.y209{bottom:132.344933pt;}
.y285{bottom:147.923067pt;}
.y25a{bottom:149.089600pt;}
.y22f{bottom:149.139467pt;}
.y19e{bottom:150.588400pt;}
.y12c{bottom:150.630000pt;}
.yf2{bottom:150.829600pt;}
.y103{bottom:150.837733pt;}
.y180{bottom:150.838000pt;}
.yca{bottom:150.847333pt;}
.ya3{bottom:150.890000pt;}
.y1c9{bottom:150.978267pt;}
.y208{bottom:151.000933pt;}
.y156{bottom:151.131333pt;}
.y75{bottom:151.772400pt;}
.y30{bottom:160.519867pt;}
.y284{bottom:163.923067pt;}
.y22e{bottom:166.032800pt;}
.y19d{bottom:169.036400pt;}
.y12b{bottom:169.078000pt;}
.y17f{bottom:169.382000pt;}
.yc9{bottom:169.407333pt;}
.y102{bottom:169.413733pt;}
.ya2{bottom:169.466000pt;}
.y1c8{bottom:169.714267pt;}
.y155{bottom:169.995333pt;}
.y74{bottom:171.244400pt;}
.y259{bottom:173.409600pt;}
.y2f{bottom:179.399867pt;}
.yf1{bottom:182.733600pt;}
.y207{bottom:182.984933pt;}
.y283{bottom:187.483067pt;}
.y19c{bottom:187.484400pt;}
.y12a{bottom:187.526000pt;}
.y17e{bottom:187.926000pt;}
.ya1{bottom:188.042000pt;}
.y1c7{bottom:188.450267pt;}
.y154{bottom:188.859333pt;}
.y258{bottom:190.169600pt;}
.y22d{bottom:190.486133pt;}
.y2e{bottom:198.279867pt;}
.yc8{bottom:201.302533pt;}
.yf0{bottom:201.309600pt;}
.y101{bottom:201.317733pt;}
.y206{bottom:201.640933pt;}
.y282{bottom:203.483067pt;}
.y73{bottom:204.044400pt;}
.y19b{bottom:205.932400pt;}
.y129{bottom:205.974000pt;}
.y17d{bottom:206.470000pt;}
.ya0{bottom:206.618000pt;}
.y257{bottom:206.929600pt;}
.y1c6{bottom:207.186267pt;}
.y153{bottom:207.723333pt;}
.y22c{bottom:214.939467pt;}
.y2d{bottom:217.159867pt;}
.y281{bottom:219.483067pt;}
.yef{bottom:219.885600pt;}
.y100{bottom:219.893733pt;}
.y205{bottom:220.296933pt;}
.y72{bottom:223.516400pt;}
.y256{bottom:223.689600pt;}
.y19a{bottom:224.380400pt;}
.y128{bottom:224.422000pt;}
.y1c5{bottom:225.922267pt;}
.y152{bottom:226.587333pt;}
.y22b{bottom:231.832800pt;}
.y2c{bottom:236.039867pt;}
.y17c{bottom:238.342000pt;}
.yee{bottom:238.461600pt;}
.yff{bottom:238.469733pt;}
.y9f{bottom:238.522000pt;}
.y204{bottom:238.952933pt;}
.y127{bottom:242.870000pt;}
.y71{bottom:242.988400pt;}
.y280{bottom:243.043067pt;}
.y1c4{bottom:244.658267pt;}
.y151{bottom:245.451333pt;}
.y255{bottom:248.009600pt;}
.y22a{bottom:248.726133pt;}
.y2b{bottom:254.919867pt;}
.y199{bottom:256.156400pt;}
.y17b{bottom:256.886000pt;}
.yed{bottom:257.037600pt;}
.yfe{bottom:257.045733pt;}
.y9e{bottom:257.098000pt;}
.y203{bottom:257.608933pt;}
.y27f{bottom:259.043067pt;}
.y126{bottom:261.318000pt;}
.y70{bottom:262.460400pt;}
.y150{bottom:264.315333pt;}
.y254{bottom:264.769600pt;}
.y229{bottom:273.179467pt;}
.y2a{bottom:273.799867pt;}
.y198{bottom:274.604400pt;}
.y27e{bottom:275.043067pt;}
.y17a{bottom:275.430000pt;}
.yec{bottom:275.613600pt;}
.y9d{bottom:275.674000pt;}
.y202{bottom:276.264933pt;}
.y1c3{bottom:276.722267pt;}
.y6f{bottom:281.932400pt;}
.y14f{bottom:283.179333pt;}
.yc7{bottom:288.223200pt;}
.yfd{bottom:288.828400pt;}
.y253{bottom:289.089600pt;}
.y228{bottom:290.072800pt;}
.y27d{bottom:291.043067pt;}
.y29{bottom:292.679867pt;}
.y197{bottom:293.052400pt;}
.y125{bottom:293.094000pt;}
.y179{bottom:293.974000pt;}
.yeb{bottom:294.189600pt;}
.y9c{bottom:294.250000pt;}
.y201{bottom:294.920933pt;}
.y1c2{bottom:295.458267pt;}
.y6e{bottom:301.404400pt;}
.y252{bottom:305.849600pt;}
.yc6{bottom:306.783200pt;}
.y227{bottom:306.966133pt;}
.y27c{bottom:307.043067pt;}
.yfc{bottom:307.404400pt;}
.y196{bottom:311.500400pt;}
.y124{bottom:311.542000pt;}
.y28{bottom:311.559867pt;}
.y178{bottom:312.518000pt;}
.y9b{bottom:312.826000pt;}
.y1c1{bottom:314.194267pt;}
.y14e{bottom:315.324400pt;}
.y6d{bottom:320.876400pt;}
.y251{bottom:322.609600pt;}
.yc5{bottom:325.343200pt;}
.yea{bottom:325.980400pt;}
.y200{bottom:326.904933pt;}
.y195{bottom:329.948400pt;}
.y123{bottom:329.990000pt;}
.y27{bottom:330.439867pt;}
.y27b{bottom:330.603067pt;}
.y177{bottom:331.065200pt;}
.y9a{bottom:331.402000pt;}
.y226{bottom:331.419467pt;}
.y1c0{bottom:332.930267pt;}
.y14d{bottom:334.188400pt;}
.y250{bottom:339.369600pt;}
.yc4{bottom:343.903200pt;}
.ye9{bottom:344.556400pt;}
.y1ff{bottom:345.560933pt;}
.y27a{bottom:346.603067pt;}
.y225{bottom:348.312800pt;}
.y194{bottom:348.396400pt;}
.y122{bottom:348.438000pt;}
.y26{bottom:349.319867pt;}
.y176{bottom:349.609200pt;}
.y99{bottom:349.978000pt;}
.y1bf{bottom:351.666267pt;}
.y14c{bottom:353.052400pt;}
.y6c{bottom:353.676400pt;}
.yc3{bottom:362.463200pt;}
.ye8{bottom:363.132400pt;}
.y24f{bottom:363.689600pt;}
.y1fe{bottom:364.216933pt;}
.y224{bottom:365.206133pt;}
.y193{bottom:366.844400pt;}
.y121{bottom:366.886000pt;}
.y175{bottom:368.153200pt;}
.y25{bottom:368.199867pt;}
.y98{bottom:368.554000pt;}
.y279{bottom:370.163067pt;}
.y1be{bottom:370.402267pt;}
.y14b{bottom:371.916400pt;}
.y6b{bottom:373.148400pt;}
.y1e3{bottom:380.172400pt;}
.y24e{bottom:380.449600pt;}
.yc2{bottom:381.023200pt;}
.ye7{bottom:381.708400pt;}
.y1fd{bottom:382.872933pt;}
.y192{bottom:385.292400pt;}
.y120{bottom:385.334000pt;}
.y278{bottom:386.163067pt;}
.y174{bottom:386.697200pt;}
.y24{bottom:387.079867pt;}
.y97{bottom:387.130000pt;}
.y1bd{bottom:389.138267pt;}
.y223{bottom:389.659467pt;}
.y14a{bottom:390.780400pt;}
.y6a{bottom:392.620400pt;}
.y1e2{bottom:398.620400pt;}
.yc1{bottom:399.583200pt;}
.ye6{bottom:400.284400pt;}
.y1fc{bottom:401.528933pt;}
.y277{bottom:402.163067pt;}
.y191{bottom:403.740400pt;}
.y24d{bottom:404.769600pt;}
.y173{bottom:405.241200pt;}
.y96{bottom:405.706000pt;}
.y23{bottom:405.959867pt;}
.y222{bottom:406.552800pt;}
.y1bc{bottom:407.874267pt;}
.y149{bottom:409.644400pt;}
.y69{bottom:412.092400pt;}
.y1e1{bottom:417.068400pt;}
.y11f{bottom:417.110000pt;}
.yc0{bottom:418.143200pt;}
.y276{bottom:418.163067pt;}
.ye5{bottom:418.860400pt;}
.y1fb{bottom:420.184933pt;}
.y24c{bottom:421.529600pt;}
.y190{bottom:422.188400pt;}
.y172{bottom:423.785200pt;}
.y22{bottom:424.839867pt;}
.y1bb{bottom:426.610267pt;}
.y148{bottom:428.508400pt;}
.y221{bottom:431.006133pt;}
.y68{bottom:431.564400pt;}
.y1e0{bottom:435.516400pt;}
.ybf{bottom:436.703200pt;}
.ye4{bottom:437.436400pt;}
.y95{bottom:437.643867pt;}
.y1fa{bottom:438.840933pt;}
.y18f{bottom:440.636400pt;}
.y275{bottom:441.723067pt;}
.y171{bottom:442.329200pt;}
.y21{bottom:443.719867pt;}
.y1ba{bottom:445.346267pt;}
.y24b{bottom:445.849600pt;}
.y147{bottom:447.372400pt;}
.y220{bottom:447.899467pt;}
.y67{bottom:451.036400pt;}
.y94{bottom:453.817200pt;}
.y1df{bottom:453.964400pt;}
.ye3{bottom:456.012400pt;}
.y1f9{bottom:457.496933pt;}
.y274{bottom:457.723067pt;}
.y18e{bottom:459.084400pt;}
.y20{bottom:462.599867pt;}
.y24a{bottom:462.609600pt;}
.y1b9{bottom:464.082267pt;}
.y21f{bottom:464.792800pt;}
.y146{bottom:466.236400pt;}
.ybe{bottom:468.591200pt;}
.y93{bottom:469.990533pt;}
.y66{bottom:470.508400pt;}
.y11e{bottom:471.558000pt;}
.y1de{bottom:472.412400pt;}
.y170{bottom:474.236400pt;}
.ye2{bottom:474.588400pt;}
.y18d{bottom:477.532400pt;}
.y273{bottom:481.283067pt;}
.y21e{bottom:481.686133pt;}
.y1b8{bottom:482.764400pt;}
.y92{bottom:486.163867pt;}
.y249{bottom:486.929600pt;}
.ybd{bottom:487.151200pt;}
.yfb{bottom:487.916400pt;}
.y1f8{bottom:489.480933pt;}
.y11d{bottom:490.006000pt;}
.y1dd{bottom:490.860400pt;}
.y16f{bottom:492.780400pt;}
.ye1{bottom:493.164400pt;}
.y1f{bottom:494.806267pt;}
.y18c{bottom:495.980400pt;}
.y272{bottom:497.283067pt;}
.y145{bottom:498.428400pt;}
.y1b7{bottom:501.500400pt;}
.y91{bottom:502.337200pt;}
.y65{bottom:503.308400pt;}
.y248{bottom:503.689600pt;}
.ybc{bottom:505.711200pt;}
.y21d{bottom:506.139467pt;}
.yfa{bottom:506.492400pt;}
.y1f7{bottom:508.136933pt;}
.y11c{bottom:508.454000pt;}
.y1dc{bottom:509.308400pt;}
.y16e{bottom:511.324400pt;}
.y271{bottom:513.283067pt;}
.y144{bottom:517.292400pt;}
.y90{bottom:518.510533pt;}
.y1b6{bottom:520.236400pt;}
.y64{bottom:522.780400pt;}
.y21c{bottom:523.032800pt;}
.ybb{bottom:524.271200pt;}
.ye0{bottom:525.068400pt;}
.y1f6{bottom:526.792933pt;}
.y11b{bottom:526.902000pt;}
.y18b{bottom:527.756400pt;}
.y247{bottom:528.009600pt;}
.y270{bottom:529.283067pt;}
.y16d{bottom:529.868400pt;}
.y8f{bottom:534.683867pt;}
.y143{bottom:536.156400pt;}
.y1b5{bottom:538.972400pt;}
.y1db{bottom:541.084400pt;}
.y63{bottom:542.252400pt;}
.yba{bottom:542.831200pt;}
.ydf{bottom:543.644400pt;}
.y246{bottom:544.769600pt;}
.y26f{bottom:545.283067pt;}
.y11a{bottom:545.350000pt;}
.y1f5{bottom:545.448933pt;}
.y18a{bottom:546.204400pt;}
.y21b{bottom:547.486133pt;}
.y16c{bottom:548.412400pt;}
.y17{bottom:548.548000pt;}
.y142{bottom:555.020400pt;}
.y1b4{bottom:557.708400pt;}
.y1da{bottom:559.532400pt;}
.y26e{bottom:561.283067pt;}
.y16{bottom:561.348000pt;}
.yb9{bottom:561.391200pt;}
.y62{bottom:561.724400pt;}
.yde{bottom:562.220400pt;}
.y119{bottom:563.798000pt;}
.y1f4{bottom:564.104933pt;}
.y8e{bottom:564.239867pt;}
.y21a{bottom:564.379467pt;}
.y189{bottom:564.652400pt;}
.y16b{bottom:566.956400pt;}
.y245{bottom:569.089600pt;}
.y141{bottom:573.884400pt;}
.y4d{bottom:575.437467pt;}
.y1b3{bottom:576.444400pt;}
.y1d9{bottom:577.980400pt;}
.yb8{bottom:579.951200pt;}
.ydd{bottom:580.796400pt;}
.y61{bottom:581.196400pt;}
.y219{bottom:581.272800pt;}
.y118{bottom:582.246000pt;}
.y1f3{bottom:582.760933pt;}
.y188{bottom:583.100400pt;}
.y26d{bottom:584.843067pt;}
.y16a{bottom:585.500400pt;}
.y244{bottom:585.849600pt;}
.y15{bottom:588.006400pt;}
.y140{bottom:592.748400pt;}
.y1b2{bottom:595.180400pt;}
.y8d{bottom:596.143867pt;}
.y1d8{bottom:596.428400pt;}
.yb7{bottom:598.511200pt;}
.ydc{bottom:599.372400pt;}
.y60{bottom:600.668400pt;}
.y117{bottom:600.694000pt;}
.y14{bottom:600.806400pt;}
.y26c{bottom:600.843067pt;}
.y187{bottom:601.548400pt;}
.y218{bottom:605.726133pt;}
.y243{bottom:610.169600pt;}
.y13f{bottom:611.612400pt;}
.y43{bottom:613.518133pt;}
.y13{bottom:613.606400pt;}
.y1b1{bottom:613.916400pt;}
.y8c{bottom:614.719867pt;}
.y1f2{bottom:614.744933pt;}
.y1d7{bottom:614.876400pt;}
.y26b{bottom:616.843067pt;}
.yb6{bottom:617.071200pt;}
.y169{bottom:617.372400pt;}
.y116{bottom:619.142000pt;}
.y5f{bottom:620.140400pt;}
.y217{bottom:622.619467pt;}
.y42{bottom:626.318133pt;}
.y12{bottom:626.406400pt;}
.ydb{bottom:631.276400pt;}
.y1b0{bottom:632.652400pt;}
.y26a{bottom:632.843067pt;}
.y8b{bottom:633.295867pt;}
.y186{bottom:633.324400pt;}
.y1f1{bottom:633.400933pt;}
.y242{bottom:634.489600pt;}
.yb5{bottom:635.631200pt;}
.y168{bottom:635.916400pt;}
.y115{bottom:637.590000pt;}
.y41{bottom:639.118133pt;}
.y11{bottom:639.206400pt;}
.y5e{bottom:639.612400pt;}
.y13e{bottom:643.804400pt;}
.y216{bottom:647.072800pt;}
.y269{bottom:648.843067pt;}
.y1d6{bottom:651.772400pt;}
.y8a{bottom:651.871867pt;}
.y40{bottom:651.918133pt;}
.y10{bottom:652.006400pt;}
.y1f0{bottom:652.056933pt;}
.yb4{bottom:654.191200pt;}
.y167{bottom:654.460400pt;}
.y114{bottom:656.038000pt;}
.y241{bottom:658.809600pt;}
.y294{bottom:661.649600pt;}
.y13d{bottom:662.668400pt;}
.y215{bottom:663.966133pt;}
.y1af{bottom:664.716400pt;}
.y3f{bottom:664.718133pt;}
.yf{bottom:664.806400pt;}
.y268{bottom:664.843067pt;}
.y1d5{bottom:670.220400pt;}
.y89{bottom:670.447867pt;}
.y1ef{bottom:670.712933pt;}
.y5d{bottom:672.412400pt;}
.yb3{bottom:672.751200pt;}
.y166{bottom:673.004400pt;}
.y113{bottom:674.486000pt;}
.y240{bottom:675.569600pt;}
.y3e{bottom:677.518133pt;}
.ye{bottom:677.606400pt;}
.y293{bottom:677.649600pt;}
.y214{bottom:680.859467pt;}
.y13c{bottom:681.532400pt;}
.y1ae{bottom:683.452400pt;}
.yda{bottom:685.852400pt;}
.y185{bottom:687.772400pt;}
.y1d4{bottom:688.668400pt;}
.y88{bottom:689.023867pt;}
.y1ee{bottom:689.368933pt;}
.y3d{bottom:690.318133pt;}
.yd{bottom:690.406400pt;}
.yb2{bottom:691.311200pt;}
.y165{bottom:691.548400pt;}
.y5c{bottom:691.884400pt;}
.y267{bottom:694.176400pt;}
.y23f{bottom:699.889600pt;}
.y13b{bottom:700.396400pt;}
.y292{bottom:701.209600pt;}
.y1ad{bottom:702.188400pt;}
.y3c{bottom:703.118133pt;}
.yc{bottom:703.206400pt;}
.yd9{bottom:704.428400pt;}
.y213{bottom:705.312800pt;}
.y184{bottom:706.220400pt;}
.y112{bottom:706.262000pt;}
.y1d3{bottom:707.116400pt;}
.y87{bottom:707.599867pt;}
.y1ed{bottom:708.024933pt;}
.y164{bottom:710.092400pt;}
.y5b{bottom:711.356400pt;}
.y3b{bottom:715.918133pt;}
.yb{bottom:716.006400pt;}
.y291{bottom:717.209600pt;}
.y13a{bottom:719.260400pt;}
.y1ac{bottom:720.924400pt;}
.y212{bottom:722.206133pt;}
.yd8{bottom:723.004400pt;}
.yb1{bottom:723.199200pt;}
.y23e{bottom:724.209600pt;}
.y183{bottom:724.668400pt;}
.y111{bottom:724.710000pt;}
.y1d2{bottom:725.564400pt;}
.y86{bottom:726.175867pt;}
.y163{bottom:728.636400pt;}
.y3a{bottom:728.718133pt;}
.ya{bottom:728.806400pt;}
.y5a{bottom:730.828400pt;}
.y139{bottom:738.124400pt;}
.y211{bottom:739.099467pt;}
.y1ab{bottom:739.660400pt;}
.y1ec{bottom:740.006533pt;}
.y290{bottom:740.769600pt;}
.y23d{bottom:740.969600pt;}
.y39{bottom:741.518133pt;}
.yd7{bottom:741.580400pt;}
.y9{bottom:741.606400pt;}
.yb0{bottom:741.759200pt;}
.y182{bottom:743.116400pt;}
.y110{bottom:743.158000pt;}
.y1d1{bottom:744.012400pt;}
.y85{bottom:744.751867pt;}
.y59{bottom:750.300400pt;}
.y38{bottom:754.318133pt;}
.y8{bottom:754.406400pt;}
.y210{bottom:755.992800pt;}
.y28f{bottom:756.769600pt;}
.y138{bottom:756.988400pt;}
.y1aa{bottom:758.396400pt;}
.yd6{bottom:760.156400pt;}
.yaf{bottom:760.319200pt;}
.y162{bottom:760.508400pt;}
.y10f{bottom:761.564400pt;}
.y1d0{bottom:762.460400pt;}
.y84{bottom:763.327867pt;}
.y1eb{bottom:764.273200pt;}
.y23c{bottom:765.289600pt;}
.y37{bottom:767.118133pt;}
.y7{bottom:767.206400pt;}
.y58{bottom:769.772400pt;}
.y266{bottom:773.649600pt;}
.y1a9{bottom:777.132400pt;}
.yd5{bottom:778.732400pt;}
.yae{bottom:778.879200pt;}
.y161{bottom:779.052400pt;}
.y36{bottom:779.918133pt;}
.y6{bottom:780.006400pt;}
.y10e{bottom:780.012400pt;}
.y28e{bottom:780.329600pt;}
.y1cf{bottom:780.908400pt;}
.y83{bottom:781.903867pt;}
.y23b{bottom:782.049600pt;}
.y20f{bottom:786.218800pt;}
.y137{bottom:789.180400pt;}
.y57{bottom:789.244400pt;}
.y265{bottom:789.649600pt;}
.yf9{bottom:792.060400pt;}
.y35{bottom:792.718133pt;}
.y5{bottom:792.806400pt;}
.y77{bottom:794.834667pt;}
.y1a8{bottom:795.868400pt;}
.y28d{bottom:796.329600pt;}
.yd4{bottom:797.308400pt;}
.yad{bottom:797.439200pt;}
.y160{bottom:797.596400pt;}
.y10d{bottom:798.460400pt;}
.y1ce{bottom:799.356400pt;}
.y34{bottom:805.518133pt;}
.y4{bottom:805.606400pt;}
.y264{bottom:805.649600pt;}
.y23a{bottom:806.369600pt;}
.y136{bottom:808.044400pt;}
.y56{bottom:808.716400pt;}
.yf8{bottom:810.636400pt;}
.y28c{bottom:812.329600pt;}
.y82{bottom:813.807867pt;}
.y1a7{bottom:814.604400pt;}
.yd3{bottom:815.884400pt;}
.yac{bottom:815.999200pt;}
.y15f{bottom:816.140400pt;}
.y10c{bottom:816.908400pt;}
.y1cd{bottom:817.804400pt;}
.y33{bottom:818.318133pt;}
.y3{bottom:818.406400pt;}
.y239{bottom:823.129600pt;}
.y135{bottom:826.908400pt;}
.y55{bottom:828.188400pt;}
.y28b{bottom:828.329600pt;}
.y263{bottom:829.209600pt;}
.yf7{bottom:829.212400pt;}
.y32{bottom:831.118133pt;}
.y2{bottom:831.206400pt;}
.y81{bottom:832.383867pt;}
.y1a6{bottom:833.340400pt;}
.yd2{bottom:834.460400pt;}
.yab{bottom:834.559200pt;}
.y15e{bottom:834.684400pt;}
.y10b{bottom:835.356400pt;}
.y1cc{bottom:836.252400pt;}
.y238{bottom:839.889600pt;}
.y31{bottom:843.918133pt;}
.y1{bottom:844.006400pt;}
.y28a{bottom:844.329600pt;}
.y262{bottom:845.209600pt;}
.y134{bottom:845.772400pt;}
.y1ea{bottom:847.228400pt;}
.y54{bottom:847.660400pt;}
.yf6{bottom:847.788400pt;}
.y80{bottom:850.959867pt;}
.y1a5{bottom:852.076400pt;}
.yd1{bottom:853.036400pt;}
.yaa{bottom:853.119200pt;}
.y15d{bottom:853.228400pt;}
.y10a{bottom:853.804400pt;}
.y289{bottom:860.329600pt;}
.y237{bottom:864.209600pt;}
.y133{bottom:864.636400pt;}
.y1e9{bottom:865.884400pt;}
.yf5{bottom:866.364400pt;}
.y53{bottom:867.132400pt;}
.y1cb{bottom:868.028400pt;}
.y261{bottom:868.769600pt;}
.y7f{bottom:869.535867pt;}
.yd0{bottom:871.612400pt;}
.ya9{bottom:871.679200pt;}
.y15c{bottom:871.772400pt;}
.y109{bottom:872.252400pt;}
.y288{bottom:876.329600pt;}
.y1e{bottom:879.445600pt;}
.y236{bottom:880.969600pt;}
.y20e{bottom:881.340400pt;}
.y132{bottom:883.500400pt;}
.y1a4{bottom:884.140400pt;}
.y1e8{bottom:884.540400pt;}
.y260{bottom:884.769600pt;}
.yf4{bottom:884.940400pt;}
.y52{bottom:886.604400pt;}
.y7e{bottom:888.111867pt;}
.ya8{bottom:890.239200pt;}
.y15b{bottom:890.316400pt;}
.y108{bottom:890.700400pt;}
.y287{bottom:892.329600pt;}
.y44{bottom:896.110133pt;}
.y235{bottom:897.729600pt;}
.y1d{bottom:898.645600pt;}
.y20d{bottom:900.636400pt;}
.y131{bottom:902.364400pt;}
.y1a3{bottom:902.876400pt;}
.y1e7{bottom:903.196400pt;}
.ycf{bottom:903.516400pt;}
.y51{bottom:906.076400pt;}
.y7d{bottom:906.687867pt;}
.y25f{bottom:908.329600pt;}
.y15a{bottom:908.860400pt;}
.y20c{bottom:919.932400pt;}
.y130{bottom:921.228400pt;}
.y1a2{bottom:921.612400pt;}
.y1e6{bottom:921.852400pt;}
.y234{bottom:922.049600pt;}
.yce{bottom:922.092400pt;}
.ya7{bottom:922.140400pt;}
.y107{bottom:922.476400pt;}
.y25e{bottom:924.329600pt;}
.y7c{bottom:925.263867pt;}
.y159{bottom:927.404400pt;}
.y1c{bottom:936.743200pt;}
.y50{bottom:938.876400pt;}
.y20b{bottom:939.228400pt;}
.y12f{bottom:940.092400pt;}
.y1a{bottom:940.307600pt;}
.y1a1{bottom:940.348400pt;}
.y1e5{bottom:940.508400pt;}
.ycd{bottom:940.668400pt;}
.ya6{bottom:940.700400pt;}
.y106{bottom:940.924400pt;}
.y7b{bottom:943.839867pt;}
.y158{bottom:945.948400pt;}
.y233{bottom:946.369600pt;}
.y25d{bottom:947.889600pt;}
.y19{bottom:957.174267pt;}
.y4f{bottom:958.348400pt;}
.y20a{bottom:958.524400pt;}
.y12e{bottom:958.956400pt;}
.y1a0{bottom:959.084400pt;}
.y1e4{bottom:959.164400pt;}
.ycc{bottom:959.244400pt;}
.ya5{bottom:959.260400pt;}
.y105{bottom:959.372400pt;}
.y1b{bottom:962.343200pt;}
.y232{bottom:963.129600pt;}
.y25c{bottom:963.889600pt;}
.y7a{bottom:975.751200pt;}
.y4e{bottom:977.820400pt;}
.y18{bottom:977.820533pt;}
.y231{bottom:979.889600pt;}
.y78{bottom:982.677200pt;}
.y79{bottom:1014.606800pt;}
.y4b{bottom:1016.206400pt;}
.ha{height:33.408000pt;}
.h3{height:39.637333pt;}
.h2{height:41.386667pt;}
.hd{height:41.760000pt;}
.hb{height:43.093333pt;}
.h17{height:49.226667pt;}
.hc{height:49.546667pt;}
.h9{height:50.112000pt;}
.h11{height:50.688000pt;}
.h4{height:51.712000pt;}
.he{height:51.733333pt;}
.h5{height:54.501333pt;}
.h15{height:55.857515pt;}
.h13{height:56.463381pt;}
.h10{height:59.072000pt;}
.h8{height:59.456000pt;}
.h14{height:59.622400pt;}
.h16{height:59.671467pt;}
.h12{height:59.908800pt;}
.h7{height:60.330667pt;}
.hf{height:62.080000pt;}
.h6{height:68.949333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.xe{left:55.559067pt;}
.x17{left:66.893333pt;}
.xf{left:68.948000pt;}
.x19{left:74.456667pt;}
.xa{left:78.287867pt;}
.x15{left:85.795333pt;}
.xb{left:91.087867pt;}
.x6{left:93.094800pt;}
.x10{left:94.488133pt;}
.xc{left:107.087867pt;}
.x16{left:113.381467pt;}
.x18{left:120.941467pt;}
.x7{left:132.283467pt;}
.x5{left:266.582800pt;}
.x8{left:404.850400pt;}
.x14{left:432.067867pt;}
.x3{left:575.952267pt;}
.x2{left:591.591200pt;}
.x4{left:603.261600pt;}
.xd{left:622.305867pt;}
.x9{left:649.648933pt;}
.x11{left:722.995200pt;}
.x12{left:724.752667pt;}
.x13{left:725.787333pt;}
}




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