
    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_abd75793e031a7628213d547.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_a214771e09c5d596b6477f79.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_f86b7cb78265d471030ab8f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_1b238dbbf954f4900e70c747.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.718750;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_b054f68e5618ff51e5322496.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_3e123020f3c9da76818aa8d2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e1fb48ec9d2b4a3a0eb958a0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_31c5eb31ff4ddf1564860103.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d95b530180dab260eaa3b2cf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_315b4889ef8da2d3040fa2c9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.442200px;}
.v3{vertical-align:-3.403800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.ls91{letter-spacing:-2.640000px;}
.ls9{letter-spacing:-0.780000px;}
.ls52{letter-spacing:-0.300000px;}
.ls39{letter-spacing:-0.240000px;}
.ls3a{letter-spacing:-0.192000px;}
.ls53{letter-spacing:-0.180000px;}
.ls70{letter-spacing:-0.120000px;}
.lsa0{letter-spacing:-0.096000px;}
.ls33{letter-spacing:-0.060000px;}
.ls54{letter-spacing:-0.048000px;}
.ls8{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.006000px;}
.ls48{letter-spacing:0.041400px;}
.ls47{letter-spacing:0.042000px;}
.ls57{letter-spacing:0.048000px;}
.ls22{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.069600px;}
.ls59{letter-spacing:0.096000px;}
.ls36{letter-spacing:0.106200px;}
.ls3e{letter-spacing:0.117000px;}
.lse{letter-spacing:0.120000px;}
.ls2b{letter-spacing:0.180000px;}
.ls8c{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.240000px;}
.ls3c{letter-spacing:0.250200px;}
.ls3d{letter-spacing:0.250800px;}
.ls5e{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.300000px;}
.ls8b{letter-spacing:0.336000px;}
.ls32{letter-spacing:0.360000px;}
.ls7d{letter-spacing:0.384000px;}
.ls31{letter-spacing:0.420000px;}
.ls5a{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.480000px;}
.ls66{letter-spacing:0.528000px;}
.ls23{letter-spacing:0.540000px;}
.ls9a{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.600000px;}
.ls42{letter-spacing:0.616200px;}
.ls5f{letter-spacing:0.624000px;}
.ls43{letter-spacing:0.660000px;}
.ls99{letter-spacing:0.672000px;}
.ls4a{letter-spacing:0.675600px;}
.ls13{letter-spacing:0.720000px;}
.ls65{letter-spacing:0.768000px;}
.ls2c{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.840000px;}
.ls12{letter-spacing:0.900000px;}
.ls94{letter-spacing:0.912000px;}
.ls4c{letter-spacing:0.919800px;}
.ls1d{letter-spacing:0.960000px;}
.ls2f{letter-spacing:0.962400px;}
.ls9b{letter-spacing:1.008000px;}
.ls11{letter-spacing:1.020000px;}
.ls92{letter-spacing:1.056000px;}
.ls15{letter-spacing:1.080000px;}
.ls3f{letter-spacing:1.086000px;}
.ls41{letter-spacing:1.099800px;}
.ls84{letter-spacing:1.104000px;}
.ls4b{letter-spacing:1.108800px;}
.ls76{letter-spacing:1.129200px;}
.ls24{letter-spacing:1.140000px;}
.ls81{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.200000px;}
.ls9d{letter-spacing:1.248000px;}
.ls16{letter-spacing:1.260000px;}
.ls1c{letter-spacing:1.320000px;}
.ls86{letter-spacing:1.344000px;}
.ls3b{letter-spacing:1.380000px;}
.ls89{letter-spacing:1.392000px;}
.ls75{letter-spacing:1.406400px;}
.ls55{letter-spacing:1.440000px;}
.ls97{letter-spacing:1.488000px;}
.ls2d{letter-spacing:1.500000px;}
.ls82{letter-spacing:1.536000px;}
.ls77{letter-spacing:1.551000px;}
.ls35{letter-spacing:1.560000px;}
.ls80{letter-spacing:1.584000px;}
.ls2e{letter-spacing:1.620000px;}
.ls29{letter-spacing:1.680000px;}
.ls85{letter-spacing:1.728000px;}
.ls20{letter-spacing:1.740000px;}
.ls90{letter-spacing:1.776000px;}
.ls26{letter-spacing:1.800000px;}
.ls40{letter-spacing:1.846200px;}
.ls18{letter-spacing:1.860000px;}
.ls7e{letter-spacing:1.872000px;}
.ls19{letter-spacing:1.920000px;}
.ls8a{letter-spacing:1.968000px;}
.ls5{letter-spacing:1.980000px;}
.ls5b{letter-spacing:2.040000px;}
.ls87{letter-spacing:2.064000px;}
.lsf{letter-spacing:2.100000px;}
.ls2a{letter-spacing:2.160000px;}
.ls93{letter-spacing:2.208000px;}
.ls37{letter-spacing:2.220000px;}
.ls1f{letter-spacing:2.280000px;}
.ls1b{letter-spacing:2.340000px;}
.lsa{letter-spacing:2.400000px;}
.ls4{letter-spacing:2.460000px;}
.ls6d{letter-spacing:2.520000px;}
.ls5c{letter-spacing:2.580000px;}
.ls98{letter-spacing:2.592000px;}
.ls50{letter-spacing:2.640000px;}
.ls60{letter-spacing:2.700000px;}
.ls4f{letter-spacing:2.760000px;}
.ls83{letter-spacing:2.784000px;}
.lsd{letter-spacing:2.820000px;}
.ls88{letter-spacing:2.832000px;}
.ls6e{letter-spacing:2.880000px;}
.ls8f{letter-spacing:2.928000px;}
.ls25{letter-spacing:2.940000px;}
.ls7{letter-spacing:3.000000px;}
.ls6{letter-spacing:3.060000px;}
.ls8d{letter-spacing:3.072000px;}
.ls64{letter-spacing:3.120000px;}
.ls56{letter-spacing:3.180000px;}
.ls9e{letter-spacing:3.216000px;}
.ls61{letter-spacing:3.240000px;}
.ls96{letter-spacing:3.264000px;}
.ls68{letter-spacing:3.360000px;}
.ls28{letter-spacing:3.420000px;}
.ls49{letter-spacing:3.480000px;}
.ls27{letter-spacing:3.540000px;}
.ls63{letter-spacing:3.660000px;}
.ls6a{letter-spacing:3.720000px;}
.ls9c{letter-spacing:3.744000px;}
.ls46{letter-spacing:3.780000px;}
.ls62{letter-spacing:3.840000px;}
.ls9f{letter-spacing:3.888000px;}
.ls74{letter-spacing:3.900000px;}
.ls1a{letter-spacing:3.960000px;}
.lsc{letter-spacing:4.020000px;}
.ls58{letter-spacing:4.032000px;}
.lsb{letter-spacing:4.080000px;}
.ls4d{letter-spacing:4.140000px;}
.ls71{letter-spacing:4.200000px;}
.ls6b{letter-spacing:4.260000px;}
.ls7a{letter-spacing:4.320000px;}
.ls6f{letter-spacing:4.380000px;}
.ls8e{letter-spacing:4.608000px;}
.ls72{letter-spacing:4.680000px;}
.ls4e{letter-spacing:4.740000px;}
.ls44{letter-spacing:4.860000px;}
.ls21{letter-spacing:5.220000px;}
.ls95{letter-spacing:5.616000px;}
.ls7f{letter-spacing:5.856000px;}
.ls78{letter-spacing:6.120000px;}
.ls45{letter-spacing:6.300000px;}
.ls73{letter-spacing:6.360000px;}
.ls7b{letter-spacing:6.420000px;}
.ls6c{letter-spacing:6.480000px;}
.ls79{letter-spacing:6.840000px;}
.ls69{letter-spacing:6.900000px;}
.ls67{letter-spacing:7.140000px;}
.ls7c{letter-spacing:7.200000px;}
.ls5d{letter-spacing:85.248000px;}
.ls38{letter-spacing:1308.768000px;}
.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;}
}
.ws7d{word-spacing:-18.900000px;}
.ws74{word-spacing:-18.120000px;}
.ws65{word-spacing:-16.800000px;}
.ws1{word-spacing:-16.680000px;}
.ws5c{word-spacing:-16.200000px;}
.ws64{word-spacing:-15.960000px;}
.ws7e{word-spacing:-15.840000px;}
.ws67{word-spacing:-15.600000px;}
.ws63{word-spacing:-15.360000px;}
.ws7{word-spacing:-15.300000px;}
.ws66{word-spacing:-15.180000px;}
.ws1b{word-spacing:-15.000000px;}
.ws73{word-spacing:-14.940000px;}
.ws90{word-spacing:-13.872000px;}
.ws8{word-spacing:-13.344000px;}
.ws7f{word-spacing:-12.624000px;}
.ws26{word-spacing:-12.000000px;}
.ws91{word-spacing:-11.904000px;}
.ws0{word-spacing:-10.508400px;}
.ws80{word-spacing:-9.360000px;}
.ws1c{word-spacing:-9.000000px;}
.ws1d{word-spacing:-7.200000px;}
.ws8f{word-spacing:-4.608000px;}
.ws96{word-spacing:-3.264000px;}
.ws8e{word-spacing:-3.072000px;}
.ws3{word-spacing:-2.886000px;}
.ws70{word-spacing:-2.880000px;}
.ws83{word-spacing:-2.640000px;}
.ws10{word-spacing:-2.460000px;}
.ws4{word-spacing:-2.331000px;}
.ws12{word-spacing:-2.220000px;}
.ws93{word-spacing:-2.208000px;}
.ws89{word-spacing:-2.064000px;}
.ws8c{word-spacing:-1.968000px;}
.ws78{word-spacing:-1.920000px;}
.ws6e{word-spacing:-1.440000px;}
.ws68{word-spacing:-1.200000px;}
.ws84{word-spacing:-1.152000px;}
.wsb{word-spacing:-1.080000px;}
.ws92{word-spacing:-1.056000px;}
.ws75{word-spacing:-0.900000px;}
.ws95{word-spacing:-0.864000px;}
.ws98{word-spacing:-0.672000px;}
.ws61{word-spacing:-0.660000px;}
.ws86{word-spacing:-0.624000px;}
.ws6d{word-spacing:-0.600000px;}
.ws69{word-spacing:-0.420000px;}
.wsa{word-spacing:-0.360000px;}
.ws9e{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.240000px;}
.ws94{word-spacing:-0.192000px;}
.ws1a{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.120000px;}
.ws72{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws23{word-spacing:0.048000px;}
.ws22{word-spacing:0.096000px;}
.ws6a{word-spacing:0.180000px;}
.ws18{word-spacing:0.240000px;}
.ws8a{word-spacing:0.288000px;}
.ws58{word-spacing:0.300000px;}
.ws35{word-spacing:0.336000px;}
.ws6b{word-spacing:0.360000px;}
.ws36{word-spacing:0.420000px;}
.ws7b{word-spacing:0.540000px;}
.ws9b{word-spacing:0.576000px;}
.ws30{word-spacing:0.600000px;}
.ws47{word-spacing:0.660000px;}
.ws20{word-spacing:0.720000px;}
.ws43{word-spacing:0.768000px;}
.ws3a{word-spacing:0.816000px;}
.ws4e{word-spacing:0.840000px;}
.ws41{word-spacing:0.960000px;}
.ws48{word-spacing:1.080000px;}
.ws4d{word-spacing:1.140000px;}
.ws8b{word-spacing:1.152000px;}
.ws59{word-spacing:1.200000px;}
.ws4a{word-spacing:1.248000px;}
.ws5f{word-spacing:1.260000px;}
.ws88{word-spacing:1.392000px;}
.ws2e{word-spacing:1.440000px;}
.ws7c{word-spacing:1.500000px;}
.ws42{word-spacing:1.536000px;}
.ws31{word-spacing:1.560000px;}
.ws4b{word-spacing:1.632000px;}
.ws2c{word-spacing:1.680000px;}
.ws17{word-spacing:1.740000px;}
.ws37{word-spacing:1.800000px;}
.ws2d{word-spacing:1.920000px;}
.ws99{word-spacing:1.968000px;}
.ws46{word-spacing:1.980000px;}
.ws82{word-spacing:2.040000px;}
.ws49{word-spacing:2.064000px;}
.ws77{word-spacing:2.100000px;}
.ws85{word-spacing:2.112000px;}
.ws16{word-spacing:2.160000px;}
.ws8d{word-spacing:2.208000px;}
.ws9d{word-spacing:2.256000px;}
.ws5d{word-spacing:2.280000px;}
.ws9a{word-spacing:2.304000px;}
.ws4c{word-spacing:2.400000px;}
.ws79{word-spacing:2.460000px;}
.ws4f{word-spacing:2.520000px;}
.ws62{word-spacing:2.544000px;}
.ws38{word-spacing:2.580000px;}
.ws51{word-spacing:2.592000px;}
.ws54{word-spacing:2.640000px;}
.ws97{word-spacing:2.688000px;}
.ws6f{word-spacing:2.700000px;}
.ws9f{word-spacing:2.784000px;}
.wsf{word-spacing:2.880000px;}
.ws87{word-spacing:2.928000px;}
.ws6c{word-spacing:2.940000px;}
.ws50{word-spacing:2.976000px;}
.ws57{word-spacing:3.000000px;}
.ws60{word-spacing:3.060000px;}
.ws5b{word-spacing:3.120000px;}
.ws39{word-spacing:3.180000px;}
.ws3c{word-spacing:3.216000px;}
.wsc{word-spacing:3.240000px;}
.ws1f{word-spacing:3.300000px;}
.ws9c{word-spacing:3.312000px;}
.ws14{word-spacing:3.360000px;}
.ws19{word-spacing:3.420000px;}
.ws2b{word-spacing:3.480000px;}
.ws29{word-spacing:3.540000px;}
.ws3b{word-spacing:3.552000px;}
.ws27{word-spacing:3.600000px;}
.ws5e{word-spacing:3.660000px;}
.ws56{word-spacing:3.720000px;}
.ws21{word-spacing:3.780000px;}
.ws53{word-spacing:3.840000px;}
.ws40{word-spacing:3.888000px;}
.ws71{word-spacing:3.900000px;}
.ws34{word-spacing:3.936000px;}
.ws52{word-spacing:3.960000px;}
.ws32{word-spacing:3.984000px;}
.ws28{word-spacing:4.020000px;}
.ws33{word-spacing:4.032000px;}
.ws3f{word-spacing:4.080000px;}
.ws45{word-spacing:4.320000px;}
.ws15{word-spacing:4.380000px;}
.ws7a{word-spacing:4.440000px;}
.ws76{word-spacing:4.500000px;}
.ws9{word-spacing:4.560000px;}
.ws5a{word-spacing:4.620000px;}
.wsd{word-spacing:4.680000px;}
.ws55{word-spacing:4.740000px;}
.ws11{word-spacing:4.800000px;}
.wse{word-spacing:4.860000px;}
.ws6{word-spacing:4.920000px;}
.ws5{word-spacing:4.980000px;}
.ws81{word-spacing:5.520000px;}
.ws3d{word-spacing:59.664000px;}
.ws3e{word-spacing:65.664000px;}
.ws25{word-spacing:203.664000px;}
.ws24{word-spacing:204.432000px;}
.ws2f{word-spacing:553.728000px;}
.ws44{word-spacing:657.792000px;}
.ws1e{word-spacing:687.936000px;}
._a{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._5{margin-left:-7.462800px;}
._16{margin-left:-6.420000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.170000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.020000px;}
._6{width:1.110000px;}
._2{width:2.331000px;}
._9{width:3.900000px;}
._7{width:5.220000px;}
._15{width:6.360000px;}
._8{width:7.440000px;}
._12{width:78.672000px;}
._13{width:79.728000px;}
._11{width:138.432000px;}
._10{width:447.072000px;}
._f{width:464.400000px;}
._e{width:548.490000px;}
._14{width:634.176000px;}
._b{width:797.952000px;}
._d{width:1007.712000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsb{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2c{bottom:47.777250px;}
.y109{bottom:82.999950px;}
.y115{bottom:83.401650px;}
.y144{bottom:83.519850px;}
.ye2{bottom:83.578650px;}
.y1b7{bottom:83.635350px;}
.y14f{bottom:83.732400px;}
.y5e{bottom:83.770350px;}
.y185{bottom:83.800350px;}
.y160{bottom:83.920350px;}
.y101{bottom:84.062700px;}
.y86{bottom:84.195600px;}
.y98{bottom:84.505650px;}
.y25{bottom:88.026000px;}
.y1f5{bottom:89.263500px;}
.yd8{bottom:90.898950px;}
.y108{bottom:98.743950px;}
.y114{bottom:99.145650px;}
.y143{bottom:99.263850px;}
.ye1{bottom:99.322650px;}
.y14e{bottom:99.476400px;}
.y100{bottom:99.812700px;}
.y97{bottom:100.255650px;}
.y1b6{bottom:101.635350px;}
.y5d{bottom:101.770350px;}
.y184{bottom:101.800350px;}
.y15f{bottom:101.920350px;}
.y85{bottom:102.195600px;}
.y24{bottom:103.023000px;}
.y1f4{bottom:104.263500px;}
.yd7{bottom:107.398950px;}
.y107{bottom:114.487950px;}
.y113{bottom:114.889650px;}
.y142{bottom:115.007850px;}
.ye0{bottom:115.066650px;}
.y14d{bottom:115.220400px;}
.yff{bottom:115.562700px;}
.y96{bottom:115.999650px;}
.y1b5{bottom:119.230350px;}
.y1f3{bottom:119.263500px;}
.y5c{bottom:119.770350px;}
.y183{bottom:119.800350px;}
.y15e{bottom:119.920350px;}
.y84{bottom:120.195600px;}
.yd9{bottom:123.898950px;}
.yd6{bottom:123.902850px;}
.y106{bottom:130.231950px;}
.y112{bottom:130.633650px;}
.y141{bottom:130.751850px;}
.ydf{bottom:130.834650px;}
.y14c{bottom:130.964400px;}
.yfe{bottom:131.306700px;}
.y1f2{bottom:134.263500px;}
.y5b{bottom:137.770350px;}
.y182{bottom:137.800350px;}
.y15d{bottom:137.920350px;}
.y83{bottom:138.195600px;}
.yd4{bottom:140.150850px;}
.y105{bottom:145.975950px;}
.y111{bottom:146.377650px;}
.y140{bottom:146.495850px;}
.yde{bottom:146.578650px;}
.y14b{bottom:146.708400px;}
.y1f1{bottom:149.263500px;}
.y1b4{bottom:155.230350px;}
.y5a{bottom:155.770350px;}
.y181{bottom:155.800350px;}
.y15c{bottom:155.920350px;}
.y82{bottom:156.195600px;}
.yd3{bottom:156.650850px;}
.y110{bottom:162.121650px;}
.y13f{bottom:162.239850px;}
.ydd{bottom:162.322650px;}
.y14a{bottom:162.452400px;}
.y1f0{bottom:164.263500px;}
.y27{bottom:164.985150px;}
.yd5{bottom:173.150850px;}
.yd2{bottom:173.154900px;}
.y59{bottom:173.770350px;}
.y180{bottom:173.800350px;}
.y15b{bottom:173.920350px;}
.y81{bottom:174.220350px;}
.y10c{bottom:174.567750px;}
.y10f{bottom:177.865650px;}
.ydc{bottom:178.066650px;}
.y1ef{bottom:179.263500px;}
.y29{bottom:182.985150px;}
.yd0{bottom:189.402900px;}
.y1b3{bottom:191.635350px;}
.y18e{bottom:191.770350px;}
.y17f{bottom:191.800350px;}
.y15a{bottom:191.920350px;}
.y80{bottom:192.220350px;}
.ydb{bottom:193.810650px;}
.y1ee{bottom:194.263500px;}
.y26{bottom:200.580150px;}
.y28{bottom:200.985150px;}
.ycf{bottom:205.902900px;}
.y1b2{bottom:209.230350px;}
.y1ed{bottom:209.263500px;}
.y58{bottom:209.365350px;}
.y18d{bottom:209.770350px;}
.y17e{bottom:209.800350px;}
.y159{bottom:209.920350px;}
.y119{bottom:210.203850px;}
.y11d{bottom:210.215850px;}
.y7f{bottom:210.220350px;}
.yd1{bottom:222.402900px;}
.yce{bottom:222.410550px;}
.y1ec{bottom:224.263500px;}
.y18c{bottom:227.770350px;}
.y17d{bottom:227.800350px;}
.y158{bottom:227.920350px;}
.y7e{bottom:228.220350px;}
.y1eb{bottom:239.263500px;}
.y57{bottom:245.230350px;}
.y22c{bottom:245.263500px;}
.y1b1{bottom:245.635350px;}
.y18b{bottom:245.770350px;}
.y17c{bottom:245.800350px;}
.y157{bottom:245.920350px;}
.y7d{bottom:246.220350px;}
.ycd{bottom:251.414550px;}
.y1ea{bottom:254.263500px;}
.y22b{bottom:260.263500px;}
.y1b0{bottom:263.230350px;}
.y18a{bottom:263.770350px;}
.y17b{bottom:263.800350px;}
.y156{bottom:263.920350px;}
.y7c{bottom:264.220350px;}
.y1e9{bottom:269.263500px;}
.y22a{bottom:275.263500px;}
.y23{bottom:275.608500px;}
.ycc{bottom:280.418550px;}
.y189{bottom:281.770350px;}
.y17a{bottom:281.800350px;}
.y7b{bottom:282.220350px;}
.y1e8{bottom:284.263500px;}
.y229{bottom:290.263500px;}
.y22{bottom:293.614200px;}
.y1e7{bottom:299.263500px;}
.y155{bottom:299.515350px;}
.y1af{bottom:299.635350px;}
.y56{bottom:299.770350px;}
.y179{bottom:299.800350px;}
.y149{bottom:301.058700px;}
.y228{bottom:305.263500px;}
.ycb{bottom:312.820350px;}
.y1e6{bottom:314.263500px;}
.y1ae{bottom:317.635350px;}
.y55{bottom:317.770350px;}
.y178{bottom:317.800350px;}
.y7a{bottom:317.815350px;}
.y227{bottom:320.263500px;}
.y21{bottom:320.959200px;}
.y1e5{bottom:329.263500px;}
.y226{bottom:335.263500px;}
.y1ad{bottom:335.635350px;}
.y54{bottom:335.770350px;}
.y177{bottom:335.800350px;}
.y20{bottom:338.959200px;}
.y1e4{bottom:344.263500px;}
.y225{bottom:350.263500px;}
.y1ac{bottom:353.635350px;}
.y53{bottom:353.770350px;}
.yb4{bottom:353.912100px;}
.yca{bottom:353.920350px;}
.y79{bottom:354.070350px;}
.y1f{bottom:356.959200px;}
.y1e3{bottom:359.263500px;}
.y103{bottom:359.517750px;}
.y224{bottom:365.263500px;}
.y187{bottom:365.904900px;}
.y176{bottom:371.395350px;}
.y1ab{bottom:371.635350px;}
.y52{bottom:371.770350px;}
.yb3{bottom:371.912100px;}
.yc9{bottom:371.920350px;}
.y78{bottom:372.070350px;}
.y1e2{bottom:374.263500px;}
.y1e{bottom:374.959200px;}
.y223{bottom:380.263500px;}
.y102{bottom:381.633750px;}
.ye5{bottom:382.498650px;}
.y1e1{bottom:389.263500px;}
.y1aa{bottom:389.635350px;}
.y51{bottom:389.770350px;}
.yb2{bottom:389.912100px;}
.yc8{bottom:389.920350px;}
.y77{bottom:390.070350px;}
.y1d{bottom:392.959200px;}
.y222{bottom:395.263500px;}
.y9a{bottom:402.678000px;}
.y1e0{bottom:404.263500px;}
.y1a9{bottom:407.635350px;}
.y50{bottom:407.770350px;}
.yb1{bottom:407.912100px;}
.yc7{bottom:407.920350px;}
.y76{bottom:408.070350px;}
.y221{bottom:410.263500px;}
.y1c{bottom:410.959200px;}
.y152{bottom:413.948850px;}
.y1df{bottom:419.263500px;}
.y220{bottom:425.263500px;}
.y1a8{bottom:425.635350px;}
.y4f{bottom:425.770350px;}
.yb0{bottom:425.912100px;}
.yc6{bottom:425.920350px;}
.y175{bottom:425.935350px;}
.y75{bottom:426.070350px;}
.y1b{bottom:428.959200px;}
.y10b{bottom:429.255750px;}
.y1de{bottom:434.263500px;}
.y21f{bottom:440.263500px;}
.y148{bottom:440.942700px;}
.y1a7{bottom:443.635350px;}
.y4e{bottom:443.770350px;}
.yaf{bottom:443.912100px;}
.yc5{bottom:443.920350px;}
.y174{bottom:443.935350px;}
.y74{bottom:444.070350px;}
.y118{bottom:444.995850px;}
.y11c{bottom:445.007850px;}
.y1a{bottom:446.959200px;}
.y1dd{bottom:449.263500px;}
.y21e{bottom:455.263500px;}
.y1a6{bottom:461.230350px;}
.y4d{bottom:461.770350px;}
.yae{bottom:461.912100px;}
.yc4{bottom:461.920350px;}
.y173{bottom:461.935350px;}
.y73{bottom:462.070350px;}
.y1dc{bottom:464.263500px;}
.y19{bottom:464.959200px;}
.y21d{bottom:470.263500px;}
.y1db{bottom:479.263500px;}
.y4c{bottom:479.770350px;}
.yad{bottom:479.912100px;}
.yc3{bottom:479.920350px;}
.y172{bottom:479.935350px;}
.y72{bottom:480.070350px;}
.y18{bottom:482.959200px;}
.y21c{bottom:485.263500px;}
.y146{bottom:492.901650px;}
.y1da{bottom:494.263500px;}
.y1a5{bottom:497.635350px;}
.y4b{bottom:497.770350px;}
.y13e{bottom:497.772600px;}
.yac{bottom:497.912100px;}
.yc2{bottom:497.920350px;}
.y171{bottom:497.935350px;}
.y71{bottom:498.070350px;}
.y21b{bottom:500.263500px;}
.y17{bottom:500.959200px;}
.y145{bottom:508.645650px;}
.y1d9{bottom:509.263500px;}
.y21a{bottom:515.263500px;}
.y1a4{bottom:515.635350px;}
.y4a{bottom:515.770350px;}
.y13d{bottom:515.772600px;}
.yab{bottom:515.912100px;}
.yc1{bottom:515.920350px;}
.y170{bottom:515.935350px;}
.y70{bottom:516.070350px;}
.y16{bottom:518.959200px;}
.y1d8{bottom:524.263500px;}
.y219{bottom:530.263500px;}
.y1a3{bottom:533.635350px;}
.y49{bottom:533.770350px;}
.y13c{bottom:533.772600px;}
.yaa{bottom:533.912100px;}
.yc0{bottom:533.920350px;}
.y6f{bottom:534.070350px;}
.y15{bottom:536.959200px;}
.y147{bottom:537.170700px;}
.y1d7{bottom:539.263500px;}
.y218{bottom:545.263500px;}
.y16f{bottom:551.530350px;}
.y1a2{bottom:551.635350px;}
.y48{bottom:551.770350px;}
.y13b{bottom:551.772600px;}
.ya9{bottom:551.912100px;}
.ybf{bottom:551.920350px;}
.y6e{bottom:552.070350px;}
.y1d6{bottom:554.263500px;}
.y14{bottom:554.959200px;}
.y217{bottom:560.263500px;}
.ye6{bottom:562.354650px;}
.y186{bottom:568.932900px;}
.y1d5{bottom:569.263500px;}
.y1a1{bottom:569.635350px;}
.y47{bottom:569.770350px;}
.y13a{bottom:569.772600px;}
.ya8{bottom:569.912100px;}
.ybe{bottom:569.920350px;}
.y6d{bottom:570.070350px;}
.y13{bottom:572.959200px;}
.y216{bottom:575.263500px;}
.y1d4{bottom:584.263500px;}
.y1a0{bottom:587.635350px;}
.y46{bottom:587.770350px;}
.y139{bottom:587.772600px;}
.y16e{bottom:587.785350px;}
.ya7{bottom:587.912100px;}
.ybd{bottom:587.920350px;}
.y6c{bottom:588.070350px;}
.y215{bottom:590.263500px;}
.y12{bottom:590.959200px;}
.y1d3{bottom:599.263500px;}
.y214{bottom:605.263500px;}
.y19f{bottom:605.635350px;}
.y45{bottom:605.770350px;}
.y138{bottom:605.772600px;}
.y16d{bottom:605.785350px;}
.ya6{bottom:605.912100px;}
.ybc{bottom:605.920350px;}
.y11{bottom:608.959200px;}
.y1d2{bottom:614.263500px;}
.y213{bottom:620.263500px;}
.y19e{bottom:623.635350px;}
.y6b{bottom:623.665350px;}
.y44{bottom:623.770350px;}
.y137{bottom:623.772600px;}
.y16c{bottom:623.785350px;}
.ya5{bottom:623.912100px;}
.ybb{bottom:623.920350px;}
.y10{bottom:626.959200px;}
.y1d1{bottom:629.263500px;}
.y212{bottom:635.263500px;}
.y19d{bottom:641.635350px;}
.y6a{bottom:641.665350px;}
.y43{bottom:641.770350px;}
.y136{bottom:641.772600px;}
.y16b{bottom:641.785350px;}
.ya4{bottom:641.912100px;}
.yba{bottom:641.920350px;}
.yfd{bottom:641.935350px;}
.y1d0{bottom:644.263500px;}
.yf{bottom:644.959200px;}
.y117{bottom:648.659850px;}
.y11b{bottom:648.671850px;}
.y211{bottom:650.263500px;}
.y151{bottom:658.436850px;}
.y1cf{bottom:659.263500px;}
.y19c{bottom:659.635350px;}
.y42{bottom:659.770350px;}
.y135{bottom:659.772600px;}
.y16a{bottom:659.785350px;}
.ya3{bottom:659.912100px;}
.yb9{bottom:659.920350px;}
.yfc{bottom:659.935350px;}
.y210{bottom:665.263500px;}
.y1ce{bottom:674.263500px;}
.y19b{bottom:677.635350px;}
.y41{bottom:677.770350px;}
.y134{bottom:677.772600px;}
.y169{bottom:677.785350px;}
.ya2{bottom:677.912100px;}
.y69{bottom:677.920350px;}
.yfb{bottom:677.935350px;}
.y20f{bottom:680.263500px;}
.y1cd{bottom:689.263500px;}
.ye{bottom:690.118500px;}
.y19a{bottom:695.230350px;}
.y20e{bottom:695.263500px;}
.y40{bottom:695.770350px;}
.y131{bottom:695.772600px;}
.y168{bottom:695.785350px;}
.ya1{bottom:695.912100px;}
.y68{bottom:695.920350px;}
.yfa{bottom:695.935350px;}
.yd{bottom:702.568500px;}
.y1cc{bottom:704.263500px;}
.y10a{bottom:707.121900px;}
.y10d{bottom:707.127750px;}
.y20d{bottom:710.263500px;}
.y3f{bottom:713.770350px;}
.y130{bottom:713.772600px;}
.y167{bottom:713.785350px;}
.ya0{bottom:713.912100px;}
.y67{bottom:713.920350px;}
.yf9{bottom:713.935350px;}
.y1cb{bottom:719.263500px;}
.y20c{bottom:725.263500px;}
.y199{bottom:731.635350px;}
.y3e{bottom:731.770350px;}
.y12f{bottom:731.772600px;}
.y166{bottom:731.785350px;}
.y9f{bottom:731.912100px;}
.y66{bottom:731.920350px;}
.yf8{bottom:731.935350px;}
.y99{bottom:733.314000px;}
.y1ca{bottom:734.263500px;}
.y20b{bottom:740.263500px;}
.yc{bottom:740.283600px;}
.ye4{bottom:743.494650px;}
.y1c9{bottom:749.263500px;}
.y198{bottom:749.635350px;}
.y3d{bottom:749.770350px;}
.y12e{bottom:749.772600px;}
.y165{bottom:749.785350px;}
.y9e{bottom:749.912100px;}
.y65{bottom:749.920350px;}
.yf7{bottom:749.935350px;}
.y20a{bottom:755.263500px;}
.yb{bottom:757.644150px;}
.y1c8{bottom:764.263500px;}
.ya{bottom:767.283600px;}
.y197{bottom:767.635350px;}
.y3c{bottom:767.770350px;}
.y12d{bottom:767.772600px;}
.y164{bottom:767.785350px;}
.y9d{bottom:767.912100px;}
.y64{bottom:767.920350px;}
.y209{bottom:770.263500px;}
.y1c7{bottom:779.263500px;}
.y9{bottom:784.644150px;}
.y208{bottom:785.263500px;}
.yf6{bottom:785.530350px;}
.y196{bottom:785.635350px;}
.y3b{bottom:785.770350px;}
.y12c{bottom:785.772600px;}
.y163{bottom:785.785350px;}
.y95{bottom:785.912100px;}
.y63{bottom:785.920350px;}
.y1c6{bottom:794.263500px;}
.y207{bottom:800.263500px;}
.yf5{bottom:803.530350px;}
.y195{bottom:803.635350px;}
.y3a{bottom:803.770350px;}
.y12b{bottom:803.772600px;}
.y162{bottom:803.785350px;}
.y94{bottom:803.912100px;}
.y62{bottom:803.920350px;}
.y1c5{bottom:809.263500px;}
.y8{bottom:814.930800px;}
.y206{bottom:815.263500px;}
.yb8{bottom:821.515350px;}
.y194{bottom:821.635350px;}
.y39{bottom:821.770350px;}
.y12a{bottom:821.772600px;}
.y161{bottom:821.785350px;}
.y93{bottom:821.912100px;}
.y61{bottom:821.920350px;}
.y1c4{bottom:824.263500px;}
.y205{bottom:830.263500px;}
.y1c3{bottom:839.263500px;}
.yb7{bottom:839.515350px;}
.y193{bottom:839.635350px;}
.y38{bottom:839.770350px;}
.y129{bottom:839.772600px;}
.yf4{bottom:839.785350px;}
.y8c{bottom:839.920350px;}
.y204{bottom:845.263500px;}
.y1c2{bottom:854.263500px;}
.y116{bottom:855.047850px;}
.y11a{bottom:855.059850px;}
.y60{bottom:857.515350px;}
.y192{bottom:857.635350px;}
.y37{bottom:857.770350px;}
.y128{bottom:857.772600px;}
.yf3{bottom:857.785350px;}
.y8b{bottom:857.920350px;}
.y203{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.y1c1{bottom:869.263500px;}
.y202{bottom:875.263500px;}
.y5f{bottom:875.515350px;}
.y191{bottom:875.635350px;}
.y36{bottom:875.770350px;}
.y127{bottom:875.772600px;}
.yf2{bottom:875.785350px;}
.y8a{bottom:875.920350px;}
.y1c0{bottom:884.263500px;}
.y201{bottom:890.263500px;}
.y190{bottom:893.635350px;}
.y35{bottom:893.770350px;}
.y126{bottom:893.772600px;}
.yf1{bottom:893.785350px;}
.y89{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y1bf{bottom:899.263500px;}
.y153{bottom:902.924850px;}
.y150{bottom:902.925000px;}
.y200{bottom:905.263500px;}
.y9c{bottom:911.515350px;}
.y34{bottom:911.770350px;}
.y125{bottom:911.772600px;}
.yf0{bottom:911.785350px;}
.y92{bottom:911.920350px;}
.y1be{bottom:914.263500px;}
.y1ff{bottom:920.263500px;}
.ye3{bottom:922.498650px;}
.y18f{bottom:929.230350px;}
.y1bd{bottom:929.263500px;}
.y88{bottom:929.515350px;}
.y33{bottom:929.770350px;}
.y124{bottom:929.772600px;}
.yef{bottom:929.785350px;}
.y91{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y1fe{bottom:935.263500px;}
.y1bc{bottom:944.263500px;}
.ye8{bottom:947.515350px;}
.y32{bottom:947.770350px;}
.y123{bottom:947.772600px;}
.yee{bottom:947.785350px;}
.y90{bottom:947.920350px;}
.y1fd{bottom:950.263500px;}
.y1bb{bottom:959.263500px;}
.y1fc{bottom:965.263500px;}
.y31{bottom:965.770350px;}
.y122{bottom:965.772600px;}
.yed{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1ba{bottom:974.263500px;}
.y1fb{bottom:980.263500px;}
.y8f{bottom:983.515350px;}
.y30{bottom:983.770350px;}
.y121{bottom:983.772600px;}
.yec{bottom:983.785350px;}
.y1b9{bottom:989.263500px;}
.y1fa{bottom:995.263500px;}
.y8e{bottom:1001.515350px;}
.y2f{bottom:1001.770350px;}
.y120{bottom:1001.772600px;}
.yeb{bottom:1001.785350px;}
.y1b8{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y1f9{bottom:1010.263500px;}
.y2e{bottom:1019.770350px;}
.y133{bottom:1019.772600px;}
.yb6{bottom:1019.777100px;}
.yea{bottom:1019.785350px;}
.y1f8{bottom:1025.263500px;}
.y11f{bottom:1037.367600px;}
.y8d{bottom:1037.380350px;}
.y2d{bottom:1037.770350px;}
.y132{bottom:1037.772600px;}
.yb5{bottom:1037.777100px;}
.ye9{bottom:1037.785350px;}
.y1f7{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y104{bottom:1132.413750px;}
.yda{bottom:1132.414950px;}
.y188{bottom:1132.416900px;}
.y87{bottom:1132.418700px;}
.y10e{bottom:1132.419750px;}
.y9b{bottom:1132.422000px;}
.y1f6{bottom:1132.423500px;}
.y154{bottom:1132.424850px;}
.ye7{bottom:1132.438650px;}
.y11e{bottom:1132.439850px;}
.y2b{bottom:1136.089500px;}
.y2a{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h11{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.he{height:41.689453px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.hc{height:43.717434px;}
.ha{height:43.740234px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x19{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x2f{left:102.472500px;}
.x4{left:106.299300px;}
.xd{left:110.540400px;}
.x38{left:111.826800px;}
.x3{left:125.433150px;}
.x33{left:126.708600px;}
.x2d{left:130.705500px;}
.x7{left:131.816400px;}
.xc{left:144.725400px;}
.x1b{left:149.438700px;}
.x5{left:191.338650px;}
.x3b{left:211.390350px;}
.x6{left:212.876400px;}
.x1a{left:215.701350px;}
.x15{left:220.081950px;}
.x24{left:255.546000px;}
.x25{left:261.498000px;}
.x39{left:284.242800px;}
.x30{left:285.304500px;}
.x1c{left:326.978700px;}
.x22{left:341.858700px;}
.x28{left:345.047250px;}
.x2a{left:390.433950px;}
.x29{left:407.125950px;}
.x27{left:417.968550px;}
.x34{left:428.592600px;}
.x16{left:440.185950px;}
.x2e{left:444.757500px;}
.xa{left:455.041500px;}
.xe{left:457.085400px;}
.x31{left:464.104500px;}
.x26{left:468.990000px;}
.x13{left:478.345350px;}
.x8{left:480.476400px;}
.x3d{left:482.627400px;}
.xf{left:491.105400px;}
.x23{left:495.710700px;}
.x2c{left:503.005950px;}
.x1d{left:507.686700px;}
.x14{left:512.350350px;}
.x20{left:516.242700px;}
.x2b{left:557.857950px;}
.x3a{left:591.442800px;}
.x3c{left:596.095350px;}
.x36{left:600.685350px;}
.x12{left:612.910350px;}
.x32{left:645.664500px;}
.x21{left:651.470700px;}
.x1f{left:657.338700px;}
.x11{left:663.492300px;}
.x1e{left:666.446700px;}
.x2{left:693.365400px;}
.x35{left:721.716600px;}
.x10{left:728.391600px;}
.x37{left:743.868150px;}
.x18{left:749.653950px;}
.x17{left:796.177950px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v3{vertical-align:-3.025600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.ls91{letter-spacing:-2.346667pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls52{letter-spacing:-0.266667pt;}
.ls39{letter-spacing:-0.213333pt;}
.ls3a{letter-spacing:-0.170667pt;}
.ls53{letter-spacing:-0.160000pt;}
.ls70{letter-spacing:-0.106667pt;}
.lsa0{letter-spacing:-0.085333pt;}
.ls33{letter-spacing:-0.053333pt;}
.ls54{letter-spacing:-0.042667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.005333pt;}
.ls48{letter-spacing:0.036800pt;}
.ls47{letter-spacing:0.037333pt;}
.ls57{letter-spacing:0.042667pt;}
.ls22{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.061867pt;}
.ls59{letter-spacing:0.085333pt;}
.ls36{letter-spacing:0.094400pt;}
.ls3e{letter-spacing:0.104000pt;}
.lse{letter-spacing:0.106667pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls8c{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.213333pt;}
.ls3c{letter-spacing:0.222400pt;}
.ls3d{letter-spacing:0.222933pt;}
.ls5e{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.266667pt;}
.ls8b{letter-spacing:0.298667pt;}
.ls32{letter-spacing:0.320000pt;}
.ls7d{letter-spacing:0.341333pt;}
.ls31{letter-spacing:0.373333pt;}
.ls5a{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.426667pt;}
.ls66{letter-spacing:0.469333pt;}
.ls23{letter-spacing:0.480000pt;}
.ls9a{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.533333pt;}
.ls42{letter-spacing:0.547733pt;}
.ls5f{letter-spacing:0.554667pt;}
.ls43{letter-spacing:0.586667pt;}
.ls99{letter-spacing:0.597333pt;}
.ls4a{letter-spacing:0.600533pt;}
.ls13{letter-spacing:0.640000pt;}
.ls65{letter-spacing:0.682667pt;}
.ls2c{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.746667pt;}
.ls12{letter-spacing:0.800000pt;}
.ls94{letter-spacing:0.810667pt;}
.ls4c{letter-spacing:0.817600pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls2f{letter-spacing:0.855467pt;}
.ls9b{letter-spacing:0.896000pt;}
.ls11{letter-spacing:0.906667pt;}
.ls92{letter-spacing:0.938667pt;}
.ls15{letter-spacing:0.960000pt;}
.ls3f{letter-spacing:0.965333pt;}
.ls41{letter-spacing:0.977600pt;}
.ls84{letter-spacing:0.981333pt;}
.ls4b{letter-spacing:0.985600pt;}
.ls76{letter-spacing:1.003733pt;}
.ls24{letter-spacing:1.013333pt;}
.ls81{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls9d{letter-spacing:1.109333pt;}
.ls16{letter-spacing:1.120000pt;}
.ls1c{letter-spacing:1.173333pt;}
.ls86{letter-spacing:1.194667pt;}
.ls3b{letter-spacing:1.226667pt;}
.ls89{letter-spacing:1.237333pt;}
.ls75{letter-spacing:1.250133pt;}
.ls55{letter-spacing:1.280000pt;}
.ls97{letter-spacing:1.322667pt;}
.ls2d{letter-spacing:1.333333pt;}
.ls82{letter-spacing:1.365333pt;}
.ls77{letter-spacing:1.378667pt;}
.ls35{letter-spacing:1.386667pt;}
.ls80{letter-spacing:1.408000pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls29{letter-spacing:1.493333pt;}
.ls85{letter-spacing:1.536000pt;}
.ls20{letter-spacing:1.546667pt;}
.ls90{letter-spacing:1.578667pt;}
.ls26{letter-spacing:1.600000pt;}
.ls40{letter-spacing:1.641067pt;}
.ls18{letter-spacing:1.653333pt;}
.ls7e{letter-spacing:1.664000pt;}
.ls19{letter-spacing:1.706667pt;}
.ls8a{letter-spacing:1.749333pt;}
.ls5{letter-spacing:1.760000pt;}
.ls5b{letter-spacing:1.813333pt;}
.ls87{letter-spacing:1.834667pt;}
.lsf{letter-spacing:1.866667pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls93{letter-spacing:1.962667pt;}
.ls37{letter-spacing:1.973333pt;}
.ls1f{letter-spacing:2.026667pt;}
.ls1b{letter-spacing:2.080000pt;}
.lsa{letter-spacing:2.133333pt;}
.ls4{letter-spacing:2.186667pt;}
.ls6d{letter-spacing:2.240000pt;}
.ls5c{letter-spacing:2.293333pt;}
.ls98{letter-spacing:2.304000pt;}
.ls50{letter-spacing:2.346667pt;}
.ls60{letter-spacing:2.400000pt;}
.ls4f{letter-spacing:2.453333pt;}
.ls83{letter-spacing:2.474667pt;}
.lsd{letter-spacing:2.506667pt;}
.ls88{letter-spacing:2.517333pt;}
.ls6e{letter-spacing:2.560000pt;}
.ls8f{letter-spacing:2.602667pt;}
.ls25{letter-spacing:2.613333pt;}
.ls7{letter-spacing:2.666667pt;}
.ls6{letter-spacing:2.720000pt;}
.ls8d{letter-spacing:2.730667pt;}
.ls64{letter-spacing:2.773333pt;}
.ls56{letter-spacing:2.826667pt;}
.ls9e{letter-spacing:2.858667pt;}
.ls61{letter-spacing:2.880000pt;}
.ls96{letter-spacing:2.901333pt;}
.ls68{letter-spacing:2.986667pt;}
.ls28{letter-spacing:3.040000pt;}
.ls49{letter-spacing:3.093333pt;}
.ls27{letter-spacing:3.146667pt;}
.ls63{letter-spacing:3.253333pt;}
.ls6a{letter-spacing:3.306667pt;}
.ls9c{letter-spacing:3.328000pt;}
.ls46{letter-spacing:3.360000pt;}
.ls62{letter-spacing:3.413333pt;}
.ls9f{letter-spacing:3.456000pt;}
.ls74{letter-spacing:3.466667pt;}
.ls1a{letter-spacing:3.520000pt;}
.lsc{letter-spacing:3.573333pt;}
.ls58{letter-spacing:3.584000pt;}
.lsb{letter-spacing:3.626667pt;}
.ls4d{letter-spacing:3.680000pt;}
.ls71{letter-spacing:3.733333pt;}
.ls6b{letter-spacing:3.786667pt;}
.ls7a{letter-spacing:3.840000pt;}
.ls6f{letter-spacing:3.893333pt;}
.ls8e{letter-spacing:4.096000pt;}
.ls72{letter-spacing:4.160000pt;}
.ls4e{letter-spacing:4.213333pt;}
.ls44{letter-spacing:4.320000pt;}
.ls21{letter-spacing:4.640000pt;}
.ls95{letter-spacing:4.992000pt;}
.ls7f{letter-spacing:5.205333pt;}
.ls78{letter-spacing:5.440000pt;}
.ls45{letter-spacing:5.600000pt;}
.ls73{letter-spacing:5.653333pt;}
.ls7b{letter-spacing:5.706667pt;}
.ls6c{letter-spacing:5.760000pt;}
.ls79{letter-spacing:6.080000pt;}
.ls69{letter-spacing:6.133333pt;}
.ls67{letter-spacing:6.346667pt;}
.ls7c{letter-spacing:6.400000pt;}
.ls5d{letter-spacing:75.776000pt;}
.ls38{letter-spacing:1163.349333pt;}
.ws7d{word-spacing:-16.800000pt;}
.ws74{word-spacing:-16.106667pt;}
.ws65{word-spacing:-14.933333pt;}
.ws1{word-spacing:-14.826667pt;}
.ws5c{word-spacing:-14.400000pt;}
.ws64{word-spacing:-14.186667pt;}
.ws7e{word-spacing:-14.080000pt;}
.ws67{word-spacing:-13.866667pt;}
.ws63{word-spacing:-13.653333pt;}
.ws7{word-spacing:-13.600000pt;}
.ws66{word-spacing:-13.493333pt;}
.ws1b{word-spacing:-13.333333pt;}
.ws73{word-spacing:-13.280000pt;}
.ws90{word-spacing:-12.330667pt;}
.ws8{word-spacing:-11.861333pt;}
.ws7f{word-spacing:-11.221333pt;}
.ws26{word-spacing:-10.666667pt;}
.ws91{word-spacing:-10.581333pt;}
.ws0{word-spacing:-9.340800pt;}
.ws80{word-spacing:-8.320000pt;}
.ws1c{word-spacing:-8.000000pt;}
.ws1d{word-spacing:-6.400000pt;}
.ws8f{word-spacing:-4.096000pt;}
.ws96{word-spacing:-2.901333pt;}
.ws8e{word-spacing:-2.730667pt;}
.ws3{word-spacing:-2.565333pt;}
.ws70{word-spacing:-2.560000pt;}
.ws83{word-spacing:-2.346667pt;}
.ws10{word-spacing:-2.186667pt;}
.ws4{word-spacing:-2.072000pt;}
.ws12{word-spacing:-1.973333pt;}
.ws93{word-spacing:-1.962667pt;}
.ws89{word-spacing:-1.834667pt;}
.ws8c{word-spacing:-1.749333pt;}
.ws78{word-spacing:-1.706667pt;}
.ws6e{word-spacing:-1.280000pt;}
.ws68{word-spacing:-1.066667pt;}
.ws84{word-spacing:-1.024000pt;}
.wsb{word-spacing:-0.960000pt;}
.ws92{word-spacing:-0.938667pt;}
.ws75{word-spacing:-0.800000pt;}
.ws95{word-spacing:-0.768000pt;}
.ws98{word-spacing:-0.597333pt;}
.ws61{word-spacing:-0.586667pt;}
.ws86{word-spacing:-0.554667pt;}
.ws6d{word-spacing:-0.533333pt;}
.ws69{word-spacing:-0.373333pt;}
.wsa{word-spacing:-0.320000pt;}
.ws9e{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.213333pt;}
.ws94{word-spacing:-0.170667pt;}
.ws1a{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.106667pt;}
.ws72{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws23{word-spacing:0.042667pt;}
.ws22{word-spacing:0.085333pt;}
.ws6a{word-spacing:0.160000pt;}
.ws18{word-spacing:0.213333pt;}
.ws8a{word-spacing:0.256000pt;}
.ws58{word-spacing:0.266667pt;}
.ws35{word-spacing:0.298667pt;}
.ws6b{word-spacing:0.320000pt;}
.ws36{word-spacing:0.373333pt;}
.ws7b{word-spacing:0.480000pt;}
.ws9b{word-spacing:0.512000pt;}
.ws30{word-spacing:0.533333pt;}
.ws47{word-spacing:0.586667pt;}
.ws20{word-spacing:0.640000pt;}
.ws43{word-spacing:0.682667pt;}
.ws3a{word-spacing:0.725333pt;}
.ws4e{word-spacing:0.746667pt;}
.ws41{word-spacing:0.853333pt;}
.ws48{word-spacing:0.960000pt;}
.ws4d{word-spacing:1.013333pt;}
.ws8b{word-spacing:1.024000pt;}
.ws59{word-spacing:1.066667pt;}
.ws4a{word-spacing:1.109333pt;}
.ws5f{word-spacing:1.120000pt;}
.ws88{word-spacing:1.237333pt;}
.ws2e{word-spacing:1.280000pt;}
.ws7c{word-spacing:1.333333pt;}
.ws42{word-spacing:1.365333pt;}
.ws31{word-spacing:1.386667pt;}
.ws4b{word-spacing:1.450667pt;}
.ws2c{word-spacing:1.493333pt;}
.ws17{word-spacing:1.546667pt;}
.ws37{word-spacing:1.600000pt;}
.ws2d{word-spacing:1.706667pt;}
.ws99{word-spacing:1.749333pt;}
.ws46{word-spacing:1.760000pt;}
.ws82{word-spacing:1.813333pt;}
.ws49{word-spacing:1.834667pt;}
.ws77{word-spacing:1.866667pt;}
.ws85{word-spacing:1.877333pt;}
.ws16{word-spacing:1.920000pt;}
.ws8d{word-spacing:1.962667pt;}
.ws9d{word-spacing:2.005333pt;}
.ws5d{word-spacing:2.026667pt;}
.ws9a{word-spacing:2.048000pt;}
.ws4c{word-spacing:2.133333pt;}
.ws79{word-spacing:2.186667pt;}
.ws4f{word-spacing:2.240000pt;}
.ws62{word-spacing:2.261333pt;}
.ws38{word-spacing:2.293333pt;}
.ws51{word-spacing:2.304000pt;}
.ws54{word-spacing:2.346667pt;}
.ws97{word-spacing:2.389333pt;}
.ws6f{word-spacing:2.400000pt;}
.ws9f{word-spacing:2.474667pt;}
.wsf{word-spacing:2.560000pt;}
.ws87{word-spacing:2.602667pt;}
.ws6c{word-spacing:2.613333pt;}
.ws50{word-spacing:2.645333pt;}
.ws57{word-spacing:2.666667pt;}
.ws60{word-spacing:2.720000pt;}
.ws5b{word-spacing:2.773333pt;}
.ws39{word-spacing:2.826667pt;}
.ws3c{word-spacing:2.858667pt;}
.wsc{word-spacing:2.880000pt;}
.ws1f{word-spacing:2.933333pt;}
.ws9c{word-spacing:2.944000pt;}
.ws14{word-spacing:2.986667pt;}
.ws19{word-spacing:3.040000pt;}
.ws2b{word-spacing:3.093333pt;}
.ws29{word-spacing:3.146667pt;}
.ws3b{word-spacing:3.157333pt;}
.ws27{word-spacing:3.200000pt;}
.ws5e{word-spacing:3.253333pt;}
.ws56{word-spacing:3.306667pt;}
.ws21{word-spacing:3.360000pt;}
.ws53{word-spacing:3.413333pt;}
.ws40{word-spacing:3.456000pt;}
.ws71{word-spacing:3.466667pt;}
.ws34{word-spacing:3.498667pt;}
.ws52{word-spacing:3.520000pt;}
.ws32{word-spacing:3.541333pt;}
.ws28{word-spacing:3.573333pt;}
.ws33{word-spacing:3.584000pt;}
.ws3f{word-spacing:3.626667pt;}
.ws45{word-spacing:3.840000pt;}
.ws15{word-spacing:3.893333pt;}
.ws7a{word-spacing:3.946667pt;}
.ws76{word-spacing:4.000000pt;}
.ws9{word-spacing:4.053333pt;}
.ws5a{word-spacing:4.106667pt;}
.wsd{word-spacing:4.160000pt;}
.ws55{word-spacing:4.213333pt;}
.ws11{word-spacing:4.266667pt;}
.wse{word-spacing:4.320000pt;}
.ws6{word-spacing:4.373333pt;}
.ws5{word-spacing:4.426667pt;}
.ws81{word-spacing:4.906667pt;}
.ws3d{word-spacing:53.034667pt;}
.ws3e{word-spacing:58.368000pt;}
.ws25{word-spacing:181.034667pt;}
.ws24{word-spacing:181.717333pt;}
.ws2f{word-spacing:492.202667pt;}
.ws44{word-spacing:584.704000pt;}
.ws1e{word-spacing:611.498667pt;}
._a{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._5{margin-left:-6.633600pt;}
._16{margin-left:-5.706667pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.706667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.906667pt;}
._6{width:0.986667pt;}
._2{width:2.072000pt;}
._9{width:3.466667pt;}
._7{width:4.640000pt;}
._15{width:5.653333pt;}
._8{width:6.613333pt;}
._12{width:69.930667pt;}
._13{width:70.869333pt;}
._11{width:123.050667pt;}
._10{width:397.397333pt;}
._f{width:412.800000pt;}
._e{width:487.546667pt;}
._14{width:563.712000pt;}
._b{width:709.290667pt;}
._d{width:895.744000pt;}
.fs5{font-size:24.000000pt;}
.fsb{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2c{bottom:42.468667pt;}
.y109{bottom:73.777733pt;}
.y115{bottom:74.134800pt;}
.y144{bottom:74.239867pt;}
.ye2{bottom:74.292133pt;}
.y1b7{bottom:74.342533pt;}
.y14f{bottom:74.428800pt;}
.y5e{bottom:74.462533pt;}
.y185{bottom:74.489200pt;}
.y160{bottom:74.595867pt;}
.y101{bottom:74.722400pt;}
.y86{bottom:74.840533pt;}
.y98{bottom:75.116133pt;}
.y25{bottom:78.245333pt;}
.y1f5{bottom:79.345333pt;}
.yd8{bottom:80.799067pt;}
.y108{bottom:87.772400pt;}
.y114{bottom:88.129467pt;}
.y143{bottom:88.234533pt;}
.ye1{bottom:88.286800pt;}
.y14e{bottom:88.423467pt;}
.y100{bottom:88.722400pt;}
.y97{bottom:89.116133pt;}
.y1b6{bottom:90.342533pt;}
.y5d{bottom:90.462533pt;}
.y184{bottom:90.489200pt;}
.y15f{bottom:90.595867pt;}
.y85{bottom:90.840533pt;}
.y24{bottom:91.576000pt;}
.y1f4{bottom:92.678667pt;}
.yd7{bottom:95.465733pt;}
.y107{bottom:101.767067pt;}
.y113{bottom:102.124133pt;}
.y142{bottom:102.229200pt;}
.ye0{bottom:102.281467pt;}
.y14d{bottom:102.418133pt;}
.yff{bottom:102.722400pt;}
.y96{bottom:103.110800pt;}
.y1b5{bottom:105.982533pt;}
.y1f3{bottom:106.012000pt;}
.y5c{bottom:106.462533pt;}
.y183{bottom:106.489200pt;}
.y15e{bottom:106.595867pt;}
.y84{bottom:106.840533pt;}
.yd9{bottom:110.132400pt;}
.yd6{bottom:110.135867pt;}
.y106{bottom:115.761733pt;}
.y112{bottom:116.118800pt;}
.y141{bottom:116.223867pt;}
.ydf{bottom:116.297467pt;}
.y14c{bottom:116.412800pt;}
.yfe{bottom:116.717067pt;}
.y1f2{bottom:119.345333pt;}
.y5b{bottom:122.462533pt;}
.y182{bottom:122.489200pt;}
.y15d{bottom:122.595867pt;}
.y83{bottom:122.840533pt;}
.yd4{bottom:124.578533pt;}
.y105{bottom:129.756400pt;}
.y111{bottom:130.113467pt;}
.y140{bottom:130.218533pt;}
.yde{bottom:130.292133pt;}
.y14b{bottom:130.407467pt;}
.y1f1{bottom:132.678667pt;}
.y1b4{bottom:137.982533pt;}
.y5a{bottom:138.462533pt;}
.y181{bottom:138.489200pt;}
.y15c{bottom:138.595867pt;}
.y82{bottom:138.840533pt;}
.yd3{bottom:139.245200pt;}
.y110{bottom:144.108133pt;}
.y13f{bottom:144.213200pt;}
.ydd{bottom:144.286800pt;}
.y14a{bottom:144.402133pt;}
.y1f0{bottom:146.012000pt;}
.y27{bottom:146.653467pt;}
.yd5{bottom:153.911867pt;}
.yd2{bottom:153.915467pt;}
.y59{bottom:154.462533pt;}
.y180{bottom:154.489200pt;}
.y15b{bottom:154.595867pt;}
.y81{bottom:154.862533pt;}
.y10c{bottom:155.171333pt;}
.y10f{bottom:158.102800pt;}
.ydc{bottom:158.281467pt;}
.y1ef{bottom:159.345333pt;}
.y29{bottom:162.653467pt;}
.yd0{bottom:168.358133pt;}
.y1b3{bottom:170.342533pt;}
.y18e{bottom:170.462533pt;}
.y17f{bottom:170.489200pt;}
.y15a{bottom:170.595867pt;}
.y80{bottom:170.862533pt;}
.ydb{bottom:172.276133pt;}
.y1ee{bottom:172.678667pt;}
.y26{bottom:178.293467pt;}
.y28{bottom:178.653467pt;}
.ycf{bottom:183.024800pt;}
.y1b2{bottom:185.982533pt;}
.y1ed{bottom:186.012000pt;}
.y58{bottom:186.102533pt;}
.y18d{bottom:186.462533pt;}
.y17e{bottom:186.489200pt;}
.y159{bottom:186.595867pt;}
.y119{bottom:186.847867pt;}
.y11d{bottom:186.858533pt;}
.y7f{bottom:186.862533pt;}
.yd1{bottom:197.691467pt;}
.yce{bottom:197.698267pt;}
.y1ec{bottom:199.345333pt;}
.y18c{bottom:202.462533pt;}
.y17d{bottom:202.489200pt;}
.y158{bottom:202.595867pt;}
.y7e{bottom:202.862533pt;}
.y1eb{bottom:212.678667pt;}
.y57{bottom:217.982533pt;}
.y22c{bottom:218.012000pt;}
.y1b1{bottom:218.342533pt;}
.y18b{bottom:218.462533pt;}
.y17c{bottom:218.489200pt;}
.y157{bottom:218.595867pt;}
.y7d{bottom:218.862533pt;}
.ycd{bottom:223.479600pt;}
.y1ea{bottom:226.012000pt;}
.y22b{bottom:231.345333pt;}
.y1b0{bottom:233.982533pt;}
.y18a{bottom:234.462533pt;}
.y17b{bottom:234.489200pt;}
.y156{bottom:234.595867pt;}
.y7c{bottom:234.862533pt;}
.y1e9{bottom:239.345333pt;}
.y22a{bottom:244.678667pt;}
.y23{bottom:244.985333pt;}
.ycc{bottom:249.260933pt;}
.y189{bottom:250.462533pt;}
.y17a{bottom:250.489200pt;}
.y7b{bottom:250.862533pt;}
.y1e8{bottom:252.678667pt;}
.y229{bottom:258.012000pt;}
.y22{bottom:260.990400pt;}
.y1e7{bottom:266.012000pt;}
.y155{bottom:266.235867pt;}
.y1af{bottom:266.342533pt;}
.y56{bottom:266.462533pt;}
.y179{bottom:266.489200pt;}
.y149{bottom:267.607733pt;}
.y228{bottom:271.345333pt;}
.ycb{bottom:278.062533pt;}
.y1e6{bottom:279.345333pt;}
.y1ae{bottom:282.342533pt;}
.y55{bottom:282.462533pt;}
.y178{bottom:282.489200pt;}
.y7a{bottom:282.502533pt;}
.y227{bottom:284.678667pt;}
.y21{bottom:285.297067pt;}
.y1e5{bottom:292.678667pt;}
.y226{bottom:298.012000pt;}
.y1ad{bottom:298.342533pt;}
.y54{bottom:298.462533pt;}
.y177{bottom:298.489200pt;}
.y20{bottom:301.297067pt;}
.y1e4{bottom:306.012000pt;}
.y225{bottom:311.345333pt;}
.y1ac{bottom:314.342533pt;}
.y53{bottom:314.462533pt;}
.yb4{bottom:314.588533pt;}
.yca{bottom:314.595867pt;}
.y79{bottom:314.729200pt;}
.y1f{bottom:317.297067pt;}
.y1e3{bottom:319.345333pt;}
.y103{bottom:319.571333pt;}
.y224{bottom:324.678667pt;}
.y187{bottom:325.248800pt;}
.y176{bottom:330.129200pt;}
.y1ab{bottom:330.342533pt;}
.y52{bottom:330.462533pt;}
.yb3{bottom:330.588533pt;}
.yc9{bottom:330.595867pt;}
.y78{bottom:330.729200pt;}
.y1e2{bottom:332.678667pt;}
.y1e{bottom:333.297067pt;}
.y223{bottom:338.012000pt;}
.y102{bottom:339.230000pt;}
.ye5{bottom:339.998800pt;}
.y1e1{bottom:346.012000pt;}
.y1aa{bottom:346.342533pt;}
.y51{bottom:346.462533pt;}
.yb2{bottom:346.588533pt;}
.yc8{bottom:346.595867pt;}
.y77{bottom:346.729200pt;}
.y1d{bottom:349.297067pt;}
.y222{bottom:351.345333pt;}
.y9a{bottom:357.936000pt;}
.y1e0{bottom:359.345333pt;}
.y1a9{bottom:362.342533pt;}
.y50{bottom:362.462533pt;}
.yb1{bottom:362.588533pt;}
.yc7{bottom:362.595867pt;}
.y76{bottom:362.729200pt;}
.y221{bottom:364.678667pt;}
.y1c{bottom:365.297067pt;}
.y152{bottom:367.954533pt;}
.y1df{bottom:372.678667pt;}
.y220{bottom:378.012000pt;}
.y1a8{bottom:378.342533pt;}
.y4f{bottom:378.462533pt;}
.yb0{bottom:378.588533pt;}
.yc6{bottom:378.595867pt;}
.y175{bottom:378.609200pt;}
.y75{bottom:378.729200pt;}
.y1b{bottom:381.297067pt;}
.y10b{bottom:381.560667pt;}
.y1de{bottom:386.012000pt;}
.y21f{bottom:391.345333pt;}
.y148{bottom:391.949067pt;}
.y1a7{bottom:394.342533pt;}
.y4e{bottom:394.462533pt;}
.yaf{bottom:394.588533pt;}
.yc5{bottom:394.595867pt;}
.y174{bottom:394.609200pt;}
.y74{bottom:394.729200pt;}
.y118{bottom:395.551867pt;}
.y11c{bottom:395.562533pt;}
.y1a{bottom:397.297067pt;}
.y1dd{bottom:399.345333pt;}
.y21e{bottom:404.678667pt;}
.y1a6{bottom:409.982533pt;}
.y4d{bottom:410.462533pt;}
.yae{bottom:410.588533pt;}
.yc4{bottom:410.595867pt;}
.y173{bottom:410.609200pt;}
.y73{bottom:410.729200pt;}
.y1dc{bottom:412.678667pt;}
.y19{bottom:413.297067pt;}
.y21d{bottom:418.012000pt;}
.y1db{bottom:426.012000pt;}
.y4c{bottom:426.462533pt;}
.yad{bottom:426.588533pt;}
.yc3{bottom:426.595867pt;}
.y172{bottom:426.609200pt;}
.y72{bottom:426.729200pt;}
.y18{bottom:429.297067pt;}
.y21c{bottom:431.345333pt;}
.y146{bottom:438.134800pt;}
.y1da{bottom:439.345333pt;}
.y1a5{bottom:442.342533pt;}
.y4b{bottom:442.462533pt;}
.y13e{bottom:442.464533pt;}
.yac{bottom:442.588533pt;}
.yc2{bottom:442.595867pt;}
.y171{bottom:442.609200pt;}
.y71{bottom:442.729200pt;}
.y21b{bottom:444.678667pt;}
.y17{bottom:445.297067pt;}
.y145{bottom:452.129467pt;}
.y1d9{bottom:452.678667pt;}
.y21a{bottom:458.012000pt;}
.y1a4{bottom:458.342533pt;}
.y4a{bottom:458.462533pt;}
.y13d{bottom:458.464533pt;}
.yab{bottom:458.588533pt;}
.yc1{bottom:458.595867pt;}
.y170{bottom:458.609200pt;}
.y70{bottom:458.729200pt;}
.y16{bottom:461.297067pt;}
.y1d8{bottom:466.012000pt;}
.y219{bottom:471.345333pt;}
.y1a3{bottom:474.342533pt;}
.y49{bottom:474.462533pt;}
.y13c{bottom:474.464533pt;}
.yaa{bottom:474.588533pt;}
.yc0{bottom:474.595867pt;}
.y6f{bottom:474.729200pt;}
.y15{bottom:477.297067pt;}
.y147{bottom:477.485067pt;}
.y1d7{bottom:479.345333pt;}
.y218{bottom:484.678667pt;}
.y16f{bottom:490.249200pt;}
.y1a2{bottom:490.342533pt;}
.y48{bottom:490.462533pt;}
.y13b{bottom:490.464533pt;}
.ya9{bottom:490.588533pt;}
.ybf{bottom:490.595867pt;}
.y6e{bottom:490.729200pt;}
.y1d6{bottom:492.678667pt;}
.y14{bottom:493.297067pt;}
.y217{bottom:498.012000pt;}
.ye6{bottom:499.870800pt;}
.y186{bottom:505.718133pt;}
.y1d5{bottom:506.012000pt;}
.y1a1{bottom:506.342533pt;}
.y47{bottom:506.462533pt;}
.y13a{bottom:506.464533pt;}
.ya8{bottom:506.588533pt;}
.ybe{bottom:506.595867pt;}
.y6d{bottom:506.729200pt;}
.y13{bottom:509.297067pt;}
.y216{bottom:511.345333pt;}
.y1d4{bottom:519.345333pt;}
.y1a0{bottom:522.342533pt;}
.y46{bottom:522.462533pt;}
.y139{bottom:522.464533pt;}
.y16e{bottom:522.475867pt;}
.ya7{bottom:522.588533pt;}
.ybd{bottom:522.595867pt;}
.y6c{bottom:522.729200pt;}
.y215{bottom:524.678667pt;}
.y12{bottom:525.297067pt;}
.y1d3{bottom:532.678667pt;}
.y214{bottom:538.012000pt;}
.y19f{bottom:538.342533pt;}
.y45{bottom:538.462533pt;}
.y138{bottom:538.464533pt;}
.y16d{bottom:538.475867pt;}
.ya6{bottom:538.588533pt;}
.ybc{bottom:538.595867pt;}
.y11{bottom:541.297067pt;}
.y1d2{bottom:546.012000pt;}
.y213{bottom:551.345333pt;}
.y19e{bottom:554.342533pt;}
.y6b{bottom:554.369200pt;}
.y44{bottom:554.462533pt;}
.y137{bottom:554.464533pt;}
.y16c{bottom:554.475867pt;}
.ya5{bottom:554.588533pt;}
.ybb{bottom:554.595867pt;}
.y10{bottom:557.297067pt;}
.y1d1{bottom:559.345333pt;}
.y212{bottom:564.678667pt;}
.y19d{bottom:570.342533pt;}
.y6a{bottom:570.369200pt;}
.y43{bottom:570.462533pt;}
.y136{bottom:570.464533pt;}
.y16b{bottom:570.475867pt;}
.ya4{bottom:570.588533pt;}
.yba{bottom:570.595867pt;}
.yfd{bottom:570.609200pt;}
.y1d0{bottom:572.678667pt;}
.yf{bottom:573.297067pt;}
.y117{bottom:576.586533pt;}
.y11b{bottom:576.597200pt;}
.y211{bottom:578.012000pt;}
.y151{bottom:585.277200pt;}
.y1cf{bottom:586.012000pt;}
.y19c{bottom:586.342533pt;}
.y42{bottom:586.462533pt;}
.y135{bottom:586.464533pt;}
.y16a{bottom:586.475867pt;}
.ya3{bottom:586.588533pt;}
.yb9{bottom:586.595867pt;}
.yfc{bottom:586.609200pt;}
.y210{bottom:591.345333pt;}
.y1ce{bottom:599.345333pt;}
.y19b{bottom:602.342533pt;}
.y41{bottom:602.462533pt;}
.y134{bottom:602.464533pt;}
.y169{bottom:602.475867pt;}
.ya2{bottom:602.588533pt;}
.y69{bottom:602.595867pt;}
.yfb{bottom:602.609200pt;}
.y20f{bottom:604.678667pt;}
.y1cd{bottom:612.678667pt;}
.ye{bottom:613.438667pt;}
.y19a{bottom:617.982533pt;}
.y20e{bottom:618.012000pt;}
.y40{bottom:618.462533pt;}
.y131{bottom:618.464533pt;}
.y168{bottom:618.475867pt;}
.ya1{bottom:618.588533pt;}
.y68{bottom:618.595867pt;}
.yfa{bottom:618.609200pt;}
.yd{bottom:624.505333pt;}
.y1cc{bottom:626.012000pt;}
.y10a{bottom:628.552800pt;}
.y10d{bottom:628.558000pt;}
.y20d{bottom:631.345333pt;}
.y3f{bottom:634.462533pt;}
.y130{bottom:634.464533pt;}
.y167{bottom:634.475867pt;}
.ya0{bottom:634.588533pt;}
.y67{bottom:634.595867pt;}
.yf9{bottom:634.609200pt;}
.y1cb{bottom:639.345333pt;}
.y20c{bottom:644.678667pt;}
.y199{bottom:650.342533pt;}
.y3e{bottom:650.462533pt;}
.y12f{bottom:650.464533pt;}
.y166{bottom:650.475867pt;}
.y9f{bottom:650.588533pt;}
.y66{bottom:650.595867pt;}
.yf8{bottom:650.609200pt;}
.y99{bottom:651.834667pt;}
.y1ca{bottom:652.678667pt;}
.y20b{bottom:658.012000pt;}
.yc{bottom:658.029867pt;}
.ye4{bottom:660.884133pt;}
.y1c9{bottom:666.012000pt;}
.y198{bottom:666.342533pt;}
.y3d{bottom:666.462533pt;}
.y12e{bottom:666.464533pt;}
.y165{bottom:666.475867pt;}
.y9e{bottom:666.588533pt;}
.y65{bottom:666.595867pt;}
.yf7{bottom:666.609200pt;}
.y20a{bottom:671.345333pt;}
.yb{bottom:673.461467pt;}
.y1c8{bottom:679.345333pt;}
.ya{bottom:682.029867pt;}
.y197{bottom:682.342533pt;}
.y3c{bottom:682.462533pt;}
.y12d{bottom:682.464533pt;}
.y164{bottom:682.475867pt;}
.y9d{bottom:682.588533pt;}
.y64{bottom:682.595867pt;}
.y209{bottom:684.678667pt;}
.y1c7{bottom:692.678667pt;}
.y9{bottom:697.461467pt;}
.y208{bottom:698.012000pt;}
.yf6{bottom:698.249200pt;}
.y196{bottom:698.342533pt;}
.y3b{bottom:698.462533pt;}
.y12c{bottom:698.464533pt;}
.y163{bottom:698.475867pt;}
.y95{bottom:698.588533pt;}
.y63{bottom:698.595867pt;}
.y1c6{bottom:706.012000pt;}
.y207{bottom:711.345333pt;}
.yf5{bottom:714.249200pt;}
.y195{bottom:714.342533pt;}
.y3a{bottom:714.462533pt;}
.y12b{bottom:714.464533pt;}
.y162{bottom:714.475867pt;}
.y94{bottom:714.588533pt;}
.y62{bottom:714.595867pt;}
.y1c5{bottom:719.345333pt;}
.y8{bottom:724.382933pt;}
.y206{bottom:724.678667pt;}
.yb8{bottom:730.235867pt;}
.y194{bottom:730.342533pt;}
.y39{bottom:730.462533pt;}
.y12a{bottom:730.464533pt;}
.y161{bottom:730.475867pt;}
.y93{bottom:730.588533pt;}
.y61{bottom:730.595867pt;}
.y1c4{bottom:732.678667pt;}
.y205{bottom:738.012000pt;}
.y1c3{bottom:746.012000pt;}
.yb7{bottom:746.235867pt;}
.y193{bottom:746.342533pt;}
.y38{bottom:746.462533pt;}
.y129{bottom:746.464533pt;}
.yf4{bottom:746.475867pt;}
.y8c{bottom:746.595867pt;}
.y204{bottom:751.345333pt;}
.y1c2{bottom:759.345333pt;}
.y116{bottom:760.042533pt;}
.y11a{bottom:760.053200pt;}
.y60{bottom:762.235867pt;}
.y192{bottom:762.342533pt;}
.y37{bottom:762.462533pt;}
.y128{bottom:762.464533pt;}
.yf3{bottom:762.475867pt;}
.y8b{bottom:762.595867pt;}
.y203{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.y1c1{bottom:772.678667pt;}
.y202{bottom:778.012000pt;}
.y5f{bottom:778.235867pt;}
.y191{bottom:778.342533pt;}
.y36{bottom:778.462533pt;}
.y127{bottom:778.464533pt;}
.yf2{bottom:778.475867pt;}
.y8a{bottom:778.595867pt;}
.y1c0{bottom:786.012000pt;}
.y201{bottom:791.345333pt;}
.y190{bottom:794.342533pt;}
.y35{bottom:794.462533pt;}
.y126{bottom:794.464533pt;}
.yf1{bottom:794.475867pt;}
.y89{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y1bf{bottom:799.345333pt;}
.y153{bottom:802.599867pt;}
.y150{bottom:802.600000pt;}
.y200{bottom:804.678667pt;}
.y9c{bottom:810.235867pt;}
.y34{bottom:810.462533pt;}
.y125{bottom:810.464533pt;}
.yf0{bottom:810.475867pt;}
.y92{bottom:810.595867pt;}
.y1be{bottom:812.678667pt;}
.y1ff{bottom:818.012000pt;}
.ye3{bottom:819.998800pt;}
.y18f{bottom:825.982533pt;}
.y1bd{bottom:826.012000pt;}
.y88{bottom:826.235867pt;}
.y33{bottom:826.462533pt;}
.y124{bottom:826.464533pt;}
.yef{bottom:826.475867pt;}
.y91{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y1fe{bottom:831.345333pt;}
.y1bc{bottom:839.345333pt;}
.ye8{bottom:842.235867pt;}
.y32{bottom:842.462533pt;}
.y123{bottom:842.464533pt;}
.yee{bottom:842.475867pt;}
.y90{bottom:842.595867pt;}
.y1fd{bottom:844.678667pt;}
.y1bb{bottom:852.678667pt;}
.y1fc{bottom:858.012000pt;}
.y31{bottom:858.462533pt;}
.y122{bottom:858.464533pt;}
.yed{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1ba{bottom:866.012000pt;}
.y1fb{bottom:871.345333pt;}
.y8f{bottom:874.235867pt;}
.y30{bottom:874.462533pt;}
.y121{bottom:874.464533pt;}
.yec{bottom:874.475867pt;}
.y1b9{bottom:879.345333pt;}
.y1fa{bottom:884.678667pt;}
.y8e{bottom:890.235867pt;}
.y2f{bottom:890.462533pt;}
.y120{bottom:890.464533pt;}
.yeb{bottom:890.475867pt;}
.y1b8{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y1f9{bottom:898.012000pt;}
.y2e{bottom:906.462533pt;}
.y133{bottom:906.464533pt;}
.yb6{bottom:906.468533pt;}
.yea{bottom:906.475867pt;}
.y1f8{bottom:911.345333pt;}
.y11f{bottom:922.104533pt;}
.y8d{bottom:922.115867pt;}
.y2d{bottom:922.462533pt;}
.y132{bottom:922.464533pt;}
.yb5{bottom:922.468533pt;}
.ye9{bottom:922.475867pt;}
.y1f7{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y104{bottom:1006.590000pt;}
.yda{bottom:1006.591067pt;}
.y188{bottom:1006.592800pt;}
.y87{bottom:1006.594400pt;}
.y10e{bottom:1006.595333pt;}
.y9b{bottom:1006.597333pt;}
.y1f6{bottom:1006.598667pt;}
.y154{bottom:1006.599867pt;}
.ye7{bottom:1006.612133pt;}
.y11e{bottom:1006.613200pt;}
.y2b{bottom:1009.857333pt;}
.y2a{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h11{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.he{height:37.057292pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.hc{height:38.859942pt;}
.ha{height:38.880208pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x19{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2f{left:91.086667pt;}
.x4{left:94.488267pt;}
.xd{left:98.258133pt;}
.x38{left:99.401600pt;}
.x3{left:111.496133pt;}
.x33{left:112.629867pt;}
.x2d{left:116.182667pt;}
.x7{left:117.170133pt;}
.xc{left:128.644800pt;}
.x1b{left:132.834400pt;}
.x5{left:170.078800pt;}
.x3b{left:187.902533pt;}
.x6{left:189.223467pt;}
.x1a{left:191.734533pt;}
.x15{left:195.628400pt;}
.x24{left:227.152000pt;}
.x25{left:232.442667pt;}
.x39{left:252.660267pt;}
.x30{left:253.604000pt;}
.x1c{left:290.647733pt;}
.x22{left:303.874400pt;}
.x28{left:306.708667pt;}
.x2a{left:347.052400pt;}
.x29{left:361.889733pt;}
.x27{left:371.527600pt;}
.x34{left:380.971200pt;}
.x16{left:391.276400pt;}
.x2e{left:395.340000pt;}
.xa{left:404.481333pt;}
.xe{left:406.298133pt;}
.x31{left:412.537333pt;}
.x26{left:416.880000pt;}
.x13{left:425.195867pt;}
.x8{left:427.090133pt;}
.x3d{left:429.002133pt;}
.xf{left:436.538133pt;}
.x23{left:440.631733pt;}
.x2c{left:447.116400pt;}
.x1d{left:451.277067pt;}
.x14{left:455.422533pt;}
.x20{left:458.882400pt;}
.x2b{left:495.873733pt;}
.x3a{left:525.726933pt;}
.x3c{left:529.862533pt;}
.x36{left:533.942533pt;}
.x12{left:544.809200pt;}
.x32{left:573.924000pt;}
.x21{left:579.085067pt;}
.x1f{left:584.301067pt;}
.x11{left:589.770933pt;}
.x1e{left:592.397067pt;}
.x2{left:616.324800pt;}
.x35{left:641.525867pt;}
.x10{left:647.459200pt;}
.x37{left:661.216133pt;}
.x18{left:666.359067pt;}
.x17{left:707.713733pt;}
}




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