
    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_1e344747c8725784994e6a59.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2d848ad4fe9c3f8a1bc862b9.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_a86b57dfead9e75b38fdf141.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0c0a5f04af2cc17eb8bdd7a5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_67164e080ccb61eb8549a47f.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_6067f979ff791559b9a98188.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_621eff1198ea32e930e3a40c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_200832363a561a84b73d23f0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4d06050ee144ee6d3ea7770a.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_474ab72d5da09cb28b7867f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_97355cc288d601d0c158992e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9ed8a95821a76f70501a788.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3ebe51ea68b791de3d7bcf61.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.925293;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.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,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);}
.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:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:2.940000px;}
.v1{vertical-align:21.619200px;}
.ls69{letter-spacing:-7.980000px;}
.ls11{letter-spacing:-7.740000px;}
.ls79{letter-spacing:-7.680000px;}
.ls80{letter-spacing:-7.620000px;}
.ls6b{letter-spacing:-7.320000px;}
.ls7c{letter-spacing:-6.960000px;}
.ls6a{letter-spacing:-6.840000px;}
.ls56{letter-spacing:-6.540000px;}
.ls59{letter-spacing:-6.360000px;}
.ls43{letter-spacing:-6.192000px;}
.ls68{letter-spacing:-6.060000px;}
.ls2c{letter-spacing:-5.805000px;}
.ls57{letter-spacing:-5.700000px;}
.ls58{letter-spacing:-5.640000px;}
.ls7a{letter-spacing:-5.580000px;}
.ls89{letter-spacing:-5.520000px;}
.ls7b{letter-spacing:-4.680000px;}
.ls8a{letter-spacing:-2.880000px;}
.lsa9{letter-spacing:-2.640000px;}
.ls2d{letter-spacing:-2.475000px;}
.ls78{letter-spacing:-2.340000px;}
.ls10{letter-spacing:-0.780000px;}
.ls3e{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.480000px;}
.ls60{letter-spacing:-0.360000px;}
.ls67{letter-spacing:-0.300000px;}
.ls61{letter-spacing:-0.240000px;}
.ls6f{letter-spacing:-0.192000px;}
.ls12{letter-spacing:-0.180000px;}
.ls86{letter-spacing:-0.143717px;}
.ls3f{letter-spacing:-0.120000px;}
.ls6e{letter-spacing:-0.096000px;}
.ls29{letter-spacing:-0.060000px;}
.ls99{letter-spacing:-0.048000px;}
.ls2b{letter-spacing:-0.045000px;}
.lsf{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.ls82{letter-spacing:0.011623px;}
.ls88{letter-spacing:0.039761px;}
.ls4a{letter-spacing:0.048000px;}
.ls85{letter-spacing:0.048001px;}
.lsc{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.069600px;}
.ls84{letter-spacing:0.095812px;}
.ls96{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.120000px;}
.ls81{letter-spacing:0.143717px;}
.ls5a{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls87{letter-spacing:0.191623px;}
.ls92{letter-spacing:0.192000px;}
.ls1c{letter-spacing:0.240000px;}
.ls93{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.ls8c{letter-spacing:0.336000px;}
.ls39{letter-spacing:0.360000px;}
.ls9e{letter-spacing:0.384000px;}
.ls1f{letter-spacing:0.420000px;}
.ls77{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.480000px;}
.ls6c{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.540000px;}
.ls6d{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.600000px;}
.lsa3{letter-spacing:0.624000px;}
.ls24{letter-spacing:0.660000px;}
.ls98{letter-spacing:0.672000px;}
.ls8{letter-spacing:0.720000px;}
.lsa6{letter-spacing:0.768000px;}
.ls9{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.840000px;}
.ls1d{letter-spacing:0.900000px;}
.ls2e{letter-spacing:0.960000px;}
.ls9f{letter-spacing:1.008000px;}
.ls48{letter-spacing:1.020000px;}
.ls22{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.140000px;}
.ls91{letter-spacing:1.152000px;}
.ls18{letter-spacing:1.200000px;}
.ls30{letter-spacing:1.260000px;}
.ls31{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.380000px;}
.ls1b{letter-spacing:1.440000px;}
.ls42{letter-spacing:1.488000px;}
.ls44{letter-spacing:1.500000px;}
.ls36{letter-spacing:1.560000px;}
.ls8e{letter-spacing:1.584000px;}
.ls2a{letter-spacing:1.620000px;}
.ls37{letter-spacing:1.680000px;}
.ls95{letter-spacing:1.728000px;}
.ls25{letter-spacing:1.740000px;}
.ls8f{letter-spacing:1.776000px;}
.ls6{letter-spacing:1.800000px;}
.lsa7{letter-spacing:1.824000px;}
.ls45{letter-spacing:1.860000px;}
.lse{letter-spacing:1.920000px;}
.ls27{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.040000px;}
.lsa8{letter-spacing:2.064000px;}
.ls20{letter-spacing:2.100000px;}
.ls97{letter-spacing:2.112000px;}
.ls65{letter-spacing:2.160000px;}
.ls9d{letter-spacing:2.208000px;}
.ls4{letter-spacing:2.220000px;}
.lsa5{letter-spacing:2.256000px;}
.ls3a{letter-spacing:2.280000px;}
.ls13{letter-spacing:2.340000px;}
.ls51{letter-spacing:2.400000px;}
.ls50{letter-spacing:2.460000px;}
.ls32{letter-spacing:2.520000px;}
.ls90{letter-spacing:2.544000px;}
.ls21{letter-spacing:2.580000px;}
.ls54{letter-spacing:2.640000px;}
.lsa0{letter-spacing:2.688000px;}
.ls3{letter-spacing:2.700000px;}
.ls3d{letter-spacing:2.760000px;}
.lsa4{letter-spacing:2.784000px;}
.ls3b{letter-spacing:2.820000px;}
.ls19{letter-spacing:2.880000px;}
.ls8d{letter-spacing:2.928000px;}
.ls63{letter-spacing:2.940000px;}
.ls3c{letter-spacing:3.000000px;}
.ls35{letter-spacing:3.060000px;}
.lsa2{letter-spacing:3.072000px;}
.ls49{letter-spacing:3.120000px;}
.ls4d{letter-spacing:3.180000px;}
.ls94{letter-spacing:3.216000px;}
.ls46{letter-spacing:3.240000px;}
.ls1a{letter-spacing:3.300000px;}
.ls41{letter-spacing:3.360000px;}
.ls1e{letter-spacing:3.540000px;}
.ls9c{letter-spacing:3.552000px;}
.ls4c{letter-spacing:3.660000px;}
.ls9a{letter-spacing:3.696000px;}
.ls2f{letter-spacing:3.720000px;}
.ls9b{letter-spacing:3.744000px;}
.ls5e{letter-spacing:3.780000px;}
.ls5b{letter-spacing:3.840000px;}
.ls5c{letter-spacing:3.900000px;}
.ls55{letter-spacing:3.960000px;}
.ls47{letter-spacing:4.020000px;}
.ls28{letter-spacing:4.080000px;}
.ls73{letter-spacing:4.140000px;}
.ls4f{letter-spacing:4.200000px;}
.ls4b{letter-spacing:4.260000px;}
.ls8b{letter-spacing:4.320000px;}
.ls14{letter-spacing:4.440000px;}
.ls5f{letter-spacing:4.500000px;}
.ls17{letter-spacing:4.740000px;}
.lsa1{letter-spacing:4.752000px;}
.ls83{letter-spacing:4.860000px;}
.ls7{letter-spacing:4.920000px;}
.ls74{letter-spacing:4.980000px;}
.ls7e{letter-spacing:5.040000px;}
.ls71{letter-spacing:5.400000px;}
.ls64{letter-spacing:5.700000px;}
.ls5d{letter-spacing:5.820000px;}
.ls53{letter-spacing:5.940000px;}
.ls38{letter-spacing:6.025200px;}
.ls7d{letter-spacing:6.180000px;}
.ls7f{letter-spacing:6.240000px;}
.ls70{letter-spacing:6.300000px;}
.ls62{letter-spacing:6.600000px;}
.ls76{letter-spacing:7.020000px;}
.ls66{letter-spacing:7.080000px;}
.ls33{letter-spacing:7.380000px;}
.ls4e{letter-spacing:7.500000px;}
.ls52{letter-spacing:7.676400px;}
.ls75{letter-spacing:7.980000px;}
.ls72{letter-spacing:10.320000px;}
.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;}
}
.ws28{word-spacing:-62.116583px;}
.ws27{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.wsa9{word-spacing:-21.180000px;}
.ws97{word-spacing:-20.400000px;}
.wsb8{word-spacing:-19.860000px;}
.ws4c{word-spacing:-19.260000px;}
.wsa8{word-spacing:-18.960000px;}
.wsb9{word-spacing:-18.540000px;}
.wsc5{word-spacing:-18.480000px;}
.ws53{word-spacing:-17.880000px;}
.ws2b{word-spacing:-17.820000px;}
.ws9d{word-spacing:-17.700000px;}
.ws2a{word-spacing:-17.280000px;}
.ws7f{word-spacing:-17.160000px;}
.ws79{word-spacing:-17.100000px;}
.ws99{word-spacing:-17.040000px;}
.ws2{word-spacing:-16.680000px;}
.ws4e{word-spacing:-16.620000px;}
.ws4d{word-spacing:-16.560000px;}
.wsab{word-spacing:-16.500000px;}
.ws4f{word-spacing:-16.440000px;}
.ws52{word-spacing:-16.260000px;}
.ws50{word-spacing:-16.140000px;}
.ws29{word-spacing:-16.080000px;}
.ws54{word-spacing:-16.020000px;}
.wsb7{word-spacing:-15.960000px;}
.ws12{word-spacing:-15.900000px;}
.wsaa{word-spacing:-15.780000px;}
.wsb6{word-spacing:-15.720000px;}
.ws3{word-spacing:-15.600000px;}
.wsdd{word-spacing:-15.552000px;}
.wsad{word-spacing:-15.360000px;}
.ws70{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.240000px;}
.ws4{word-spacing:-15.120000px;}
.ws51{word-spacing:-15.060000px;}
.ws10{word-spacing:-15.000000px;}
.ws8f{word-spacing:-14.820000px;}
.wsc9{word-spacing:-14.544000px;}
.wscb{word-spacing:-14.400000px;}
.wsde{word-spacing:-14.208000px;}
.wse2{word-spacing:-13.824000px;}
.wsc8{word-spacing:-13.776000px;}
.ws26{word-spacing:-13.500000px;}
.wsdf{word-spacing:-13.440000px;}
.ws6{word-spacing:-13.344000px;}
.wsc7{word-spacing:-12.960000px;}
.ws96{word-spacing:-12.660000px;}
.wse0{word-spacing:-12.624000px;}
.ws5{word-spacing:-12.510000px;}
.ws3d{word-spacing:-12.480000px;}
.wsc6{word-spacing:-12.336000px;}
.wsca{word-spacing:-12.288000px;}
.wse1{word-spacing:-12.240000px;}
.wscc{word-spacing:-12.096000px;}
.ws6a{word-spacing:-12.000000px;}
.ws90{word-spacing:-11.808000px;}
.ws9c{word-spacing:-11.760000px;}
.wsb3{word-spacing:-10.944274px;}
.wsb2{word-spacing:-10.922522px;}
.ws1{word-spacing:-10.508400px;}
.ws9b{word-spacing:-10.320000px;}
.ws9a{word-spacing:-9.420000px;}
.wsdc{word-spacing:-9.360000px;}
.wsb5{word-spacing:-9.087487px;}
.wsb4{word-spacing:-9.065599px;}
.ws7e{word-spacing:-8.940000px;}
.ws22{word-spacing:-8.775000px;}
.wsac{word-spacing:-7.380000px;}
.ws98{word-spacing:-7.320000px;}
.ws95{word-spacing:-7.260000px;}
.ws40{word-spacing:-5.808000px;}
.wse3{word-spacing:-3.696000px;}
.wse4{word-spacing:-3.552000px;}
.wse8{word-spacing:-3.072000px;}
.ws6b{word-spacing:-3.060000px;}
.wsc1{word-spacing:-2.940000px;}
.wscf{word-spacing:-2.928000px;}
.ws8{word-spacing:-2.886000px;}
.ws82{word-spacing:-2.760000px;}
.ws5e{word-spacing:-2.520000px;}
.ws1f{word-spacing:-2.475000px;}
.wsf{word-spacing:-2.220000px;}
.ws89{word-spacing:-2.160000px;}
.ws80{word-spacing:-1.920000px;}
.wsae{word-spacing:-1.860000px;}
.wsf0{word-spacing:-1.824000px;}
.ws21{word-spacing:-1.665000px;}
.ws81{word-spacing:-1.620000px;}
.wsb0{word-spacing:-1.500000px;}
.ws83{word-spacing:-1.440000px;}
.ws9e{word-spacing:-1.380000px;}
.wsa6{word-spacing:-1.320000px;}
.ws86{word-spacing:-1.260000px;}
.wsd2{word-spacing:-1.152000px;}
.wsa{word-spacing:-1.080000px;}
.ws67{word-spacing:-1.020000px;}
.ws6c{word-spacing:-0.840000px;}
.ws20{word-spacing:-0.810000px;}
.ws64{word-spacing:-0.780000px;}
.wsda{word-spacing:-0.672000px;}
.wsaf{word-spacing:-0.660000px;}
.wse5{word-spacing:-0.480000px;}
.ws1a{word-spacing:-0.420000px;}
.wse7{word-spacing:-0.336000px;}
.ws1e{word-spacing:-0.300000px;}
.ws66{word-spacing:-0.240000px;}
.wsbd{word-spacing:-0.191623px;}
.wsa0{word-spacing:-0.180000px;}
.wse9{word-spacing:-0.144000px;}
.ws5f{word-spacing:-0.120000px;}
.wsd8{word-spacing:-0.096000px;}
.wsba{word-spacing:-0.095812px;}
.wsa4{word-spacing:-0.060000px;}
.wsbb{word-spacing:-0.048001px;}
.wsbe{word-spacing:-0.039761px;}
.ws7{word-spacing:0.000000px;}
.ws41{word-spacing:0.048000px;}
.ws47{word-spacing:0.060000px;}
.ws5b{word-spacing:0.120000px;}
.wsbc{word-spacing:0.143717px;}
.ws3f{word-spacing:0.144000px;}
.ws9f{word-spacing:0.180000px;}
.ws57{word-spacing:0.240000px;}
.wsd6{word-spacing:0.288000px;}
.ws2f{word-spacing:0.300000px;}
.ws71{word-spacing:0.360000px;}
.ws56{word-spacing:0.420000px;}
.ws8e{word-spacing:0.432000px;}
.wseb{word-spacing:0.528000px;}
.ws7b{word-spacing:0.540000px;}
.ws78{word-spacing:0.576000px;}
.ws5d{word-spacing:0.600000px;}
.wsee{word-spacing:0.624000px;}
.ws88{word-spacing:0.660000px;}
.ws75{word-spacing:0.720000px;}
.ws31{word-spacing:0.780000px;}
.wsef{word-spacing:0.816000px;}
.ws58{word-spacing:0.840000px;}
.ws6d{word-spacing:0.900000px;}
.ws76{word-spacing:0.960000px;}
.ws18{word-spacing:1.020000px;}
.ws46{word-spacing:1.056000px;}
.ws2c{word-spacing:1.080000px;}
.ws19{word-spacing:1.140000px;}
.ws30{word-spacing:1.260000px;}
.ws8d{word-spacing:1.296000px;}
.ws36{word-spacing:1.380000px;}
.wse6{word-spacing:1.392000px;}
.ws3b{word-spacing:1.440000px;}
.ws42{word-spacing:1.488000px;}
.ws8a{word-spacing:1.500000px;}
.ws38{word-spacing:1.560000px;}
.ws1d{word-spacing:1.620000px;}
.ws7c{word-spacing:1.632000px;}
.ws49{word-spacing:1.680000px;}
.ws68{word-spacing:1.740000px;}
.ws94{word-spacing:1.776000px;}
.ws7a{word-spacing:1.800000px;}
.ws93{word-spacing:1.860000px;}
.wsd7{word-spacing:1.872000px;}
.ws6e{word-spacing:1.968000px;}
.ws74{word-spacing:1.980000px;}
.wse{word-spacing:2.040000px;}
.ws32{word-spacing:2.100000px;}
.ws6f{word-spacing:2.112000px;}
.ws55{word-spacing:2.160000px;}
.ws77{word-spacing:2.220000px;}
.wsc4{word-spacing:2.256000px;}
.ws2e{word-spacing:2.280000px;}
.ws7d{word-spacing:2.304000px;}
.ws2d{word-spacing:2.340000px;}
.ws92{word-spacing:2.400000px;}
.wsd5{word-spacing:2.448000px;}
.ws69{word-spacing:2.460000px;}
.wsa5{word-spacing:2.496000px;}
.ws15{word-spacing:2.520000px;}
.wsce{word-spacing:2.544000px;}
.ws16{word-spacing:2.580000px;}
.wsf1{word-spacing:2.592000px;}
.ws39{word-spacing:2.640000px;}
.wsa2{word-spacing:2.760000px;}
.wsd0{word-spacing:2.784000px;}
.ws3a{word-spacing:2.820000px;}
.wsc0{word-spacing:2.880000px;}
.wsdb{word-spacing:2.928000px;}
.ws1b{word-spacing:2.940000px;}
.ws44{word-spacing:3.060000px;}
.wsd4{word-spacing:3.072000px;}
.ws37{word-spacing:3.120000px;}
.wsd1{word-spacing:3.168000px;}
.wsec{word-spacing:3.216000px;}
.wsd9{word-spacing:3.264000px;}
.wsd3{word-spacing:3.312000px;}
.ws1c{word-spacing:3.360000px;}
.wsea{word-spacing:3.408000px;}
.ws72{word-spacing:3.420000px;}
.wsa1{word-spacing:3.480000px;}
.ws45{word-spacing:3.540000px;}
.wsed{word-spacing:3.552000px;}
.wscd{word-spacing:3.600000px;}
.ws4b{word-spacing:3.648000px;}
.ws33{word-spacing:3.660000px;}
.wsa7{word-spacing:3.696000px;}
.ws91{word-spacing:3.720000px;}
.ws59{word-spacing:3.840000px;}
.ws8b{word-spacing:3.936000px;}
.ws35{word-spacing:3.960000px;}
.ws3e{word-spacing:3.984000px;}
.ws17{word-spacing:4.020000px;}
.ws4a{word-spacing:4.032000px;}
.ws34{word-spacing:4.080000px;}
.ws5c{word-spacing:4.140000px;}
.ws48{word-spacing:4.200000px;}
.ws43{word-spacing:4.320000px;}
.ws65{word-spacing:4.380000px;}
.wsd{word-spacing:4.500000px;}
.ws8c{word-spacing:4.512000px;}
.wsb1{word-spacing:4.620000px;}
.ws73{word-spacing:4.680000px;}
.ws5a{word-spacing:4.740000px;}
.ws3c{word-spacing:4.860000px;}
.wsc{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.wsc2{word-spacing:5.520000px;}
.ws62{word-spacing:5.640000px;}
.ws61{word-spacing:5.700000px;}
.ws25{word-spacing:5.805000px;}
.wsc3{word-spacing:5.940000px;}
.ws63{word-spacing:6.360000px;}
.ws60{word-spacing:6.540000px;}
.ws85{word-spacing:6.840000px;}
.wsa3{word-spacing:6.960000px;}
.ws87{word-spacing:7.320000px;}
.wsbf{word-spacing:7.680000px;}
.ws9{word-spacing:7.740000px;}
.ws84{word-spacing:7.980000px;}
.ws13{word-spacing:165.420000px;}
.ws23{word-spacing:206.145000px;}
.ws14{word-spacing:252.900000px;}
.ws24{word-spacing:1269.045000px;}
._47{margin-left:-2898.096000px;}
._82{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._4{margin-left:-7.680000px;}
._6{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.005000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.020000px;}
._8{width:1.905000px;}
._9{width:3.096000px;}
._a{width:4.368000px;}
._b{width:6.312000px;}
._7{width:7.860000px;}
._83{width:11.976450px;}
._76{width:19.845000px;}
._1a{width:26.730000px;}
._6f{width:43.245000px;}
._1b{width:45.990000px;}
._3c{width:48.465000px;}
._77{width:49.785000px;}
._3e{width:52.161000px;}
._5f{width:56.070000px;}
._7f{width:67.365000px;}
._22{width:69.255000px;}
._4e{width:73.680000px;}
._19{width:77.310000px;}
._38{width:79.740000px;}
._12{width:86.685000px;}
._65{width:89.925000px;}
._41{width:94.185000px;}
._43{width:97.627800px;}
._1e{width:99.720000px;}
._20{width:106.530000px;}
._26{width:107.910000px;}
._5b{width:111.660000px;}
._56{width:113.535000px;}
._5a{width:117.285000px;}
._4f{width:119.550000px;}
._1f{width:122.355000px;}
._3b{width:127.305000px;}
._5c{width:128.790000px;}
._69{width:131.910000px;}
._58{width:133.071000px;}
._6a{width:135.390000px;}
._44{width:136.620000px;}
._53{width:138.630000px;}
._51{width:141.045000px;}
._7a{width:144.240000px;}
._45{width:151.290000px;}
._6d{width:154.440000px;}
._4d{width:157.410000px;}
._52{width:161.640000px;}
._32{width:162.990000px;}
._11{width:164.790000px;}
._48{width:167.535000px;}
._16{width:173.400000px;}
._10{width:175.410000px;}
._66{width:176.490000px;}
._4c{width:182.835000px;}
._25{width:186.750000px;}
._61{width:191.295000px;}
._70{width:196.755000px;}
._72{width:197.805000px;}
._63{width:199.335000px;}
._13{width:203.355000px;}
._50{width:213.825000px;}
._2d{width:215.370000px;}
._46{width:216.810000px;}
._18{width:218.964000px;}
._62{width:222.800400px;}
._5e{width:223.875000px;}
._36{width:227.025000px;}
._7e{width:234.900000px;}
._21{width:236.790000px;}
._40{width:240.585000px;}
._15{width:253.575000px;}
._74{width:255.060000px;}
._42{width:256.995000px;}
._3d{width:258.840000px;}
._7d{width:262.575000px;}
._14{width:264.150000px;}
._1d{width:267.345000px;}
._33{width:270.495000px;}
._60{width:275.565000px;}
._71{width:280.035000px;}
._59{width:284.940000px;}
._29{width:288.405000px;}
._30{width:290.310000px;}
._2b{width:294.045000px;}
._68{width:298.185000px;}
._37{width:299.835000px;}
._2e{width:301.515000px;}
._79{width:303.735000px;}
._57{width:307.035000px;}
._73{width:310.095000px;}
._28{width:312.930000px;}
._f{width:318.825000px;}
._67{width:325.125000px;}
._1c{width:327.645000px;}
._31{width:329.475000px;}
._34{width:333.045000px;}
._17{width:347.625000px;}
._55{width:350.145000px;}
._6c{width:355.725000px;}
._7c{width:360.270000px;}
._80{width:362.610000px;}
._3a{width:363.825000px;}
._75{width:365.496000px;}
._27{width:370.080000px;}
._35{width:373.185000px;}
._2f{width:377.640000px;}
._2c{width:382.950000px;}
._7b{width:387.540000px;}
._d{width:393.255000px;}
._64{width:396.903000px;}
._78{width:401.895000px;}
._4b{width:402.930000px;}
._24{width:406.395000px;}
._4a{width:411.390000px;}
._3f{width:416.880000px;}
._6b{width:426.780000px;}
._81{width:433.260000px;}
._39{width:454.995000px;}
._2a{width:467.145000px;}
._23{width:495.045000px;}
._e{width:507.960000px;}
._5d{width:520.290000px;}
._49{width:542.475000px;}
._54{width:543.735000px;}
._c{width:646.470000px;}
._6e{width:1132.560000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fse{font-size:39.761400px;}
.fsf{font-size:39.857400px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsc{font-size:47.905800px;}
.fs9{font-size:48.000000px;}
.fsd{font-size:48.001200px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fsb{font-size:62.116583px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs10{font-size:95.811000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y20e{bottom:80.121900px;}
.y24f{bottom:80.263500px;}
.y10f{bottom:83.129700px;}
.y154{bottom:83.224350px;}
.y13a{bottom:83.236050px;}
.y158{bottom:83.554950px;}
.y141{bottom:83.637750px;}
.y10c{bottom:83.661150px;}
.y1ab{bottom:83.673000px;}
.y146{bottom:83.755800px;}
.y104{bottom:83.770350px;}
.y108{bottom:83.862150px;}
.y112{bottom:83.991750px;}
.y2c{bottom:88.029450px;}
.y14d{bottom:90.377850px;}
.y14c{bottom:91.112100px;}
.y67{bottom:91.202850px;}
.ydd{bottom:93.236100px;}
.yde{bottom:93.970350px;}
.y191{bottom:93.977850px;}
.y190{bottom:94.712100px;}
.y20d{bottom:95.121900px;}
.y24e{bottom:95.263500px;}
.ya4{bottom:95.650200px;}
.y10e{bottom:98.873700px;}
.y153{bottom:98.968350px;}
.y139{bottom:98.980050px;}
.y157{bottom:99.298950px;}
.y140{bottom:99.381750px;}
.y10b{bottom:99.405150px;}
.y1aa{bottom:99.417000px;}
.y145{bottom:99.499800px;}
.y107{bottom:99.606150px;}
.y111{bottom:99.735750px;}
.y103{bottom:101.770350px;}
.y2b{bottom:103.023000px;}
.y66{bottom:106.683900px;}
.y20c{bottom:110.121900px;}
.y24d{bottom:110.263500px;}
.ydc{bottom:111.970350px;}
.y10d{bottom:114.617700px;}
.y152{bottom:114.712350px;}
.y138{bottom:114.724050px;}
.y156{bottom:115.042950px;}
.y13f{bottom:115.125750px;}
.y10a{bottom:115.149150px;}
.y144{bottom:115.243800px;}
.y106{bottom:115.350150px;}
.y102{bottom:119.770350px;}
.y65{bottom:122.186400px;}
.ya3{bottom:123.910200px;}
.y1af{bottom:124.728600px;}
.y20b{bottom:125.121900px;}
.y24c{bottom:125.263500px;}
.y14b{bottom:125.952600px;}
.ydb{bottom:129.970350px;}
.y18f{bottom:130.205250px;}
.y151{bottom:130.456350px;}
.y13e{bottom:130.869750px;}
.y143{bottom:130.987800px;}
.y105{bottom:131.094150px;}
.y1da{bottom:135.866700px;}
.y1b3{bottom:136.944157px;}
.y64{bottom:137.688900px;}
.y101{bottom:137.770350px;}
.ya2{bottom:139.412700px;}
.y20a{bottom:140.121900px;}
.y24b{bottom:140.263500px;}
.y14a{bottom:141.558600px;}
.y18e{bottom:145.205250px;}
.y13d{bottom:146.613750px;}
.yda{bottom:147.970350px;}
.y1d7{bottom:149.184300px;}
.y63{bottom:153.191400px;}
.ya1{bottom:154.915200px;}
.y24a{bottom:155.263500px;}
.y100{bottom:155.770350px;}
.y149{bottom:155.920350px;}
.y2a{bottom:156.463500px;}
.y26{bottom:156.598500px;}
.y1e2{bottom:159.940431px;}
.y18d{bottom:160.205250px;}
.y1b1{bottom:161.400068px;}
.yd9{bottom:165.970350px;}
.y62{bottom:168.693900px;}
.y249{bottom:170.263500px;}
.ya0{bottom:170.417700px;}
.y209{bottom:173.230350px;}
.y148{bottom:173.515350px;}
.y1b0{bottom:173.640000px;}
.yff{bottom:173.770350px;}
.y25{bottom:174.598500px;}
.y18c{bottom:175.205250px;}
.y1dc{bottom:178.669950px;}
.y1dd{bottom:181.661995px;}
.yd8{bottom:183.970350px;}
.y61{bottom:184.196400px;}
.y1e0{bottom:184.538400px;}
.y248{bottom:185.263500px;}
.y1ae{bottom:185.860357px;}
.y9f{bottom:185.920200px;}
.y18b{bottom:190.205250px;}
.yfe{bottom:191.770350px;}
.y29{bottom:192.058500px;}
.y24{bottom:192.598500px;}
.y1db{bottom:197.017650px;}
.y1b2{bottom:198.095911px;}
.y60{bottom:199.698900px;}
.y247{bottom:200.263500px;}
.y9e{bottom:201.409350px;}
.yd7{bottom:201.970350px;}
.y1e4{bottom:208.993950px;}
.yfd{bottom:209.770350px;}
.y1d6{bottom:210.306606px;}
.y23{bottom:210.598500px;}
.y5f{bottom:215.201400px;}
.y246{bottom:215.263500px;}
.y9d{bottom:216.911850px;}
.yd6{bottom:219.236100px;}
.yd5{bottom:219.970350px;}
.y18a{bottom:221.320350px;}
.y1ad{bottom:222.556200px;}
.y1e8{bottom:226.837650px;}
.yfc{bottom:227.770350px;}
.y22{bottom:228.598500px;}
.y245{bottom:230.263500px;}
.y5e{bottom:230.703900px;}
.y9c{bottom:232.414350px;}
.y1e7{bottom:233.451955px;}
.y1b5{bottom:234.779777px;}
.yd4{bottom:237.236100px;}
.yd3{bottom:237.970350px;}
.y189{bottom:238.915350px;}
.y244{bottom:245.263500px;}
.y208{bottom:245.365350px;}
.yfb{bottom:245.770350px;}
.y5d{bottom:246.206400px;}
.y21{bottom:246.598500px;}
.y1ba{bottom:247.007733px;}
.y1d9{bottom:247.057650px;}
.y9b{bottom:247.916850px;}
.yd2{bottom:255.970350px;}
.y1bd{bottom:259.223712px;}
.y243{bottom:260.263500px;}
.y1e6{bottom:261.016546px;}
.y5c{bottom:261.708900px;}
.y9a{bottom:263.419350px;}
.yfa{bottom:263.770350px;}
.y20{bottom:264.598500px;}
.y1b6{bottom:271.463644px;}
.yd1{bottom:273.970350px;}
.y1f9{bottom:274.503450px;}
.y188{bottom:275.170350px;}
.y242{bottom:275.263500px;}
.y5b{bottom:277.211400px;}
.y99{bottom:278.921850px;}
.y207{bottom:281.365350px;}
.yf9{bottom:281.770350px;}
.y1f{bottom:282.598500px;}
.y1b4{bottom:283.679623px;}
.y241{bottom:290.263500px;}
.yd0{bottom:291.236100px;}
.ycf{bottom:291.970350px;}
.y5a{bottom:292.713900px;}
.y187{bottom:293.170350px;}
.y98{bottom:294.424350px;}
.y1b7{bottom:295.919555px;}
.yf8{bottom:299.770350px;}
.y1e{bottom:300.598500px;}
.y1e5{bottom:302.318700px;}
.y240{bottom:305.263500px;}
.y1b8{bottom:308.015769px;}
.y59{bottom:308.216400px;}
.yce{bottom:309.235350px;}
.y97{bottom:309.926850px;}
.y186{bottom:311.170350px;}
.y1f8{bottom:316.044163px;}
.yf7{bottom:317.770350px;}
.y1d{bottom:318.598500px;}
.y1e9{bottom:319.177281px;}
.y1b9{bottom:320.255701px;}
.y23f{bottom:320.263500px;}
.y58{bottom:323.718900px;}
.y96{bottom:325.429350px;}
.ycd{bottom:327.970350px;}
.y185{bottom:329.170350px;}
.y1de{bottom:331.383547px;}
.y1bc{bottom:332.471680px;}
.y23e{bottom:335.263500px;}
.yf6{bottom:335.770350px;}
.y28{bottom:336.598500px;}
.y57{bottom:339.221400px;}
.y95{bottom:340.931850px;}
.y1e3{bottom:343.876667px;}
.y1bb{bottom:344.711612px;}
.ycc{bottom:345.236100px;}
.ycb{bottom:345.970350px;}
.y184{bottom:347.170350px;}
.y23d{bottom:350.263500px;}
.yf5{bottom:353.770350px;}
.y1c{bottom:354.193500px;}
.y27{bottom:354.598500px;}
.y56{bottom:354.723900px;}
.y94{bottom:356.434350px;}
.y1be{bottom:356.927591px;}
.yca{bottom:363.236100px;}
.yc9{bottom:363.970350px;}
.y183{bottom:365.170350px;}
.y23c{bottom:365.263500px;}
.y1d1{bottom:369.141403px;}
.y55{bottom:370.226400px;}
.y1ec{bottom:370.962600px;}
.y206{bottom:371.365350px;}
.yf4{bottom:371.770350px;}
.y93{bottom:371.936850px;}
.y23b{bottom:380.263500px;}
.y1c3{bottom:381.402000px;}
.yc8{bottom:381.970350px;}
.y182{bottom:383.170350px;}
.y54{bottom:385.728900px;}
.y92{bottom:387.439350px;}
.yf3{bottom:389.770350px;}
.y1d3{bottom:393.585337px;}
.y23a{bottom:395.263500px;}
.yc7{bottom:399.236100px;}
.yc6{bottom:399.970350px;}
.y181{bottom:401.170350px;}
.y53{bottom:401.231400px;}
.y91{bottom:402.941850px;}
.y1c8{bottom:405.864000px;}
.y1ed{bottom:407.391300px;}
.yf2{bottom:407.770350px;}
.y239{bottom:410.263500px;}
.y52{bottom:416.733900px;}
.yc5{bottom:417.235350px;}
.y1cd{bottom:418.065201px;}
.y1e1{bottom:418.369650px;}
.y90{bottom:418.444350px;}
.y180{bottom:419.170350px;}
.y238{bottom:425.263500px;}
.y205{bottom:425.365350px;}
.yf1{bottom:425.770350px;}
.y1f7{bottom:425.865150px;}
.y1b{bottom:430.108500px;}
.y1cc{bottom:430.305133px;}
.y51{bottom:432.236400px;}
.y8f{bottom:433.946850px;}
.yc4{bottom:435.970350px;}
.y17f{bottom:437.170350px;}
.y237{bottom:440.263500px;}
.y1d0{bottom:442.509135px;}
.yf0{bottom:443.770350px;}
.y1f0{bottom:444.208800px;}
.y50{bottom:447.738900px;}
.y1a{bottom:448.114200px;}
.y8e{bottom:449.449350px;}
.yc3{bottom:453.970350px;}
.y1c4{bottom:454.777800px;}
.y17e{bottom:455.170350px;}
.y236{bottom:455.263500px;}
.yef{bottom:461.770350px;}
.y8d{bottom:464.951850px;}
.y1df{bottom:465.518630px;}
.y1c1{bottom:466.989239px;}
.y235{bottom:470.263500px;}
.yc2{bottom:471.970350px;}
.y17d{bottom:473.170350px;}
.y19{bottom:475.459200px;}
.y4d{bottom:475.998900px;}
.y1c7{bottom:479.233711px;}
.yee{bottom:479.770350px;}
.y8c{bottom:480.454350px;}
.y276{bottom:485.263500px;}
.y234{bottom:485.265900px;}
.yc1{bottom:489.970350px;}
.y17c{bottom:491.170350px;}
.y1c0{bottom:491.447077px;}
.y4f{bottom:492.491400px;}
.y4c{bottom:492.502650px;}
.y18{bottom:493.459200px;}
.y8b{bottom:495.956850px;}
.yed{bottom:497.770350px;}
.y275{bottom:500.263500px;}
.y233{bottom:500.265900px;}
.y1ee{bottom:502.102955px;}
.y1c6{bottom:503.689622px;}
.y1eb{bottom:504.483791px;}
.yc0{bottom:507.236100px;}
.ybf{bottom:507.970350px;}
.y4e{bottom:508.995150px;}
.y4b{bottom:509.006400px;}
.y17b{bottom:509.170350px;}
.y17{bottom:511.459200px;}
.y8a{bottom:511.459350px;}
.y274{bottom:515.263500px;}
.y232{bottom:515.265900px;}
.y1f1{bottom:515.328300px;}
.yec{bottom:515.770350px;}
.y1d4{bottom:515.900821px;}
.ybe{bottom:525.236100px;}
.ybd{bottom:525.970350px;}
.y89{bottom:526.961850px;}
.y17a{bottom:527.170350px;}
.y1c2{bottom:528.021228px;}
.y16{bottom:529.459200px;}
.y273{bottom:530.263500px;}
.y231{bottom:530.265900px;}
.yeb{bottom:533.770350px;}
.y1f4{bottom:537.793491px;}
.y1bf{bottom:540.239134px;}
.y4a{bottom:540.775350px;}
.y88{bottom:542.464350px;}
.y1fc{bottom:542.534400px;}
.ybc{bottom:543.236100px;}
.ybb{bottom:543.970350px;}
.y179{bottom:545.170350px;}
.y272{bottom:545.263500px;}
.y230{bottom:545.265900px;}
.y15{bottom:547.459200px;}
.y1ac{bottom:548.982150px;}
.yea{bottom:551.770350px;}
.y1cb{bottom:552.464923px;}
.y87{bottom:557.966850px;}
.y271{bottom:560.263500px;}
.y22f{bottom:560.265900px;}
.y49{bottom:560.275350px;}
.yba{bottom:561.236100px;}
.yb9{bottom:561.970350px;}
.y178{bottom:562.436100px;}
.y177{bottom:563.170350px;}
.y1f5{bottom:563.489296px;}
.y1cf{bottom:564.668925px;}
.y14{bottom:565.459200px;}
.y204{bottom:569.365350px;}
.ye9{bottom:569.770350px;}
.y86{bottom:573.438750px;}
.y270{bottom:575.263500px;}
.y22e{bottom:575.265900px;}
.y1d8{bottom:576.098550px;}
.y1d2{bottom:576.908857px;}
.yb8{bottom:579.970350px;}
.y176{bottom:580.436100px;}
.y175{bottom:581.170350px;}
.y13{bottom:583.459200px;}
.y1fb{bottom:586.916850px;}
.ye8{bottom:587.770350px;}
.y85{bottom:588.941250px;}
.y1ca{bottom:589.148789px;}
.y26f{bottom:590.263500px;}
.y22d{bottom:590.265900px;}
.yb7{bottom:597.236100px;}
.y1f3{bottom:597.793444px;}
.yb6{bottom:597.970350px;}
.y174{bottom:599.170350px;}
.y1ef{bottom:600.552181px;}
.y1c5{bottom:601.393501px;}
.y12{bottom:601.459200px;}
.y84{bottom:604.443750px;}
.y26e{bottom:605.263500px;}
.y22c{bottom:605.265900px;}
.y48{bottom:605.770350px;}
.y1c9{bottom:613.604700px;}
.y1f2{bottom:614.035976px;}
.y1fa{bottom:615.660150px;}
.yb5{bottom:615.970350px;}
.y173{bottom:617.170350px;}
.y11{bottom:619.459200px;}
.y83{bottom:619.946250px;}
.y26d{bottom:620.263500px;}
.y22b{bottom:620.265900px;}
.y47{bottom:623.770350px;}
.y1d5{bottom:625.841516px;}
.y1f6{bottom:628.111511px;}
.yb4{bottom:633.970350px;}
.y172{bottom:635.170350px;}
.y26c{bottom:635.263500px;}
.y22a{bottom:635.265900px;}
.y82{bottom:635.448750px;}
.y1ea{bottom:637.098000px;}
.y10{bottom:637.459200px;}
.y1ce{bottom:638.036658px;}
.y46{bottom:641.770350px;}
.y26b{bottom:650.263500px;}
.y229{bottom:650.265900px;}
.y81{bottom:650.951250px;}
.yb3{bottom:651.970350px;}
.y171{bottom:652.436100px;}
.y170{bottom:653.170350px;}
.ye7{bottom:659.036100px;}
.y45{bottom:659.770350px;}
.y26a{bottom:665.263500px;}
.y228{bottom:665.265900px;}
.y131{bottom:666.236100px;}
.y80{bottom:666.453750px;}
.y130{bottom:666.970350px;}
.yb2{bottom:669.970350px;}
.y16f{bottom:671.170350px;}
.y137{bottom:677.036100px;}
.y1a9{bottom:677.650350px;}
.y44{bottom:677.770350px;}
.y197{bottom:677.920350px;}
.y269{bottom:680.263500px;}
.y227{bottom:680.265900px;}
.y7f{bottom:681.956250px;}
.yf{bottom:682.617300px;}
.y12f{bottom:684.970350px;}
.yb1{bottom:687.970350px;}
.y16e{bottom:688.436100px;}
.y16d{bottom:689.170350px;}
.ye6{bottom:695.036100px;}
.ye{bottom:695.068050px;}
.y268{bottom:695.263500px;}
.y226{bottom:695.265900px;}
.y201{bottom:695.635350px;}
.y1a8{bottom:695.650350px;}
.y43{bottom:695.770350px;}
.y196{bottom:695.920350px;}
.y7e{bottom:697.458750px;}
.y12e{bottom:702.236100px;}
.y12d{bottom:702.970350px;}
.yb0{bottom:705.236100px;}
.yaf{bottom:705.970350px;}
.y16c{bottom:707.170350px;}
.y267{bottom:710.263500px;}
.y225{bottom:710.265900px;}
.y7d{bottom:712.961250px;}
.y136{bottom:713.036100px;}
.y200{bottom:713.635350px;}
.y1a7{bottom:713.650350px;}
.y42{bottom:713.770350px;}
.y195{bottom:713.920350px;}
.y12c{bottom:720.236100px;}
.y12b{bottom:720.970350px;}
.y16b{bottom:725.170350px;}
.y266{bottom:725.263500px;}
.y224{bottom:725.265900px;}
.y7c{bottom:728.463750px;}
.yd{bottom:730.644150px;}
.y1ff{bottom:731.635350px;}
.y1a6{bottom:731.650350px;}
.y41{bottom:731.770350px;}
.y194{bottom:731.920350px;}
.y12a{bottom:738.236100px;}
.y129{bottom:738.970350px;}
.y265{bottom:740.263500px;}
.y223{bottom:740.265900px;}
.yc{bottom:740.283600px;}
.yae{bottom:741.463500px;}
.y16a{bottom:743.170350px;}
.y7b{bottom:743.966250px;}
.ye5{bottom:749.036100px;}
.y1fe{bottom:749.635350px;}
.y1a5{bottom:749.650350px;}
.y40{bottom:749.770350px;}
.y193{bottom:749.920350px;}
.y264{bottom:755.263500px;}
.y222{bottom:755.265900px;}
.y128{bottom:756.236100px;}
.y127{bottom:756.970350px;}
.yb{bottom:757.644150px;}
.y7a{bottom:759.468750px;}
.y169{bottom:761.170350px;}
.y1a4{bottom:767.650350px;}
.y3f{bottom:767.770350px;}
.y263{bottom:770.263500px;}
.y221{bottom:770.265900px;}
.ya{bottom:771.144150px;}
.yad{bottom:773.811000px;}
.y126{bottom:774.970350px;}
.y79{bottom:774.971250px;}
.y168{bottom:779.170350px;}
.y9{bottom:784.644150px;}
.y135{bottom:785.036100px;}
.y1fd{bottom:785.230350px;}
.y262{bottom:785.263500px;}
.y220{bottom:785.265900px;}
.y192{bottom:785.515350px;}
.y3e{bottom:785.770350px;}
.yac{bottom:789.417000px;}
.y78{bottom:791.475000px;}
.y125{bottom:792.236100px;}
.y124{bottom:792.970350px;}
.y167{bottom:797.170350px;}
.y261{bottom:800.263500px;}
.y21f{bottom:800.265900px;}
.y1a3{bottom:803.245350px;}
.y3d{bottom:803.770350px;}
.yab{bottom:803.785350px;}
.y77{bottom:806.977500px;}
.y123{bottom:810.236100px;}
.y122{bottom:810.970350px;}
.y166{bottom:814.436100px;}
.y8{bottom:814.930800px;}
.y165{bottom:815.170350px;}
.y260{bottom:815.263500px;}
.y21e{bottom:815.265900px;}
.y134{bottom:821.036100px;}
.yaa{bottom:821.380350px;}
.y3c{bottom:821.770350px;}
.y76{bottom:822.480000px;}
.y121{bottom:828.970350px;}
.y25f{bottom:830.263500px;}
.y21d{bottom:830.265900px;}
.y164{bottom:833.170350px;}
.y75{bottom:837.982500px;}
.ye4{bottom:839.036100px;}
.y3b{bottom:839.770350px;}
.y25e{bottom:845.263500px;}
.y21c{bottom:845.265900px;}
.y120{bottom:846.236100px;}
.y11f{bottom:846.970350px;}
.y74{bottom:853.485000px;}
.ya9{bottom:857.230350px;}
.y3a{bottom:857.770350px;}
.y1a2{bottom:857.785350px;}
.y25d{bottom:860.263500px;}
.y21b{bottom:860.265900px;}
.y7{bottom:861.082800px;}
.y11e{bottom:864.970350px;}
.y163{bottom:868.663500px;}
.y73{bottom:868.987500px;}
.y133{bottom:875.036100px;}
.ya8{bottom:875.230350px;}
.y25c{bottom:875.263500px;}
.y21a{bottom:875.265900px;}
.y39{bottom:875.770350px;}
.y1a1{bottom:875.785350px;}
.y11d{bottom:882.236100px;}
.y11c{bottom:882.970350px;}
.y162{bottom:883.663500px;}
.y72{bottom:884.490000px;}
.y25b{bottom:890.263500px;}
.y219{bottom:890.265900px;}
.ye3{bottom:893.036100px;}
.y38{bottom:893.770350px;}
.y1a0{bottom:893.785350px;}
.y6{bottom:897.543600px;}
.y161{bottom:898.663500px;}
.y71{bottom:899.992500px;}
.y11b{bottom:900.970350px;}
.y25a{bottom:905.263500px;}
.y218{bottom:905.265900px;}
.ya7{bottom:911.095350px;}
.y37{bottom:911.770350px;}
.y19f{bottom:911.785350px;}
.y160{bottom:913.663500px;}
.y70{bottom:915.495000px;}
.y11a{bottom:918.970350px;}
.y259{bottom:920.263500px;}
.y217{bottom:920.265900px;}
.y15f{bottom:928.663500px;}
.ye2{bottom:929.036100px;}
.y36{bottom:929.770350px;}
.y19e{bottom:929.785350px;}
.y6f{bottom:930.997500px;}
.y5{bottom:934.004400px;}
.y258{bottom:935.263500px;}
.y216{bottom:935.265900px;}
.y119{bottom:936.970350px;}
.y15e{bottom:943.663500px;}
.y6e{bottom:946.500000px;}
.ye1{bottom:947.036100px;}
.y35{bottom:947.770350px;}
.y19d{bottom:947.785350px;}
.y257{bottom:950.263500px;}
.y215{bottom:950.265900px;}
.y118{bottom:954.236100px;}
.y117{bottom:954.970350px;}
.y15d{bottom:958.663500px;}
.ye0{bottom:965.036100px;}
.ya6{bottom:965.230350px;}
.y256{bottom:965.263500px;}
.y214{bottom:965.265900px;}
.y203{bottom:965.365350px;}
.y34{bottom:965.770350px;}
.y19c{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y15c{bottom:973.663500px;}
.y6b{bottom:974.388750px;}
.y255{bottom:980.263500px;}
.y213{bottom:980.265900px;}
.y132{bottom:983.036100px;}
.y33{bottom:983.770350px;}
.y19b{bottom:983.785350px;}
.y15b{bottom:988.663500px;}
.y116{bottom:989.811000px;}
.y6d{bottom:990.881250px;}
.y6a{bottom:990.892500px;}
.y254{bottom:995.263500px;}
.y212{bottom:995.265900px;}
.ydf{bottom:1001.036100px;}
.y32{bottom:1001.770350px;}
.y150{bottom:1001.777100px;}
.y19a{bottom:1001.785350px;}
.y115{bottom:1005.417000px;}
.y3{bottom:1006.926000px;}
.y6c{bottom:1007.385000px;}
.y69{bottom:1007.396250px;}
.y253{bottom:1010.263500px;}
.y211{bottom:1010.265900px;}
.y13c{bottom:1019.036100px;}
.y31{bottom:1019.770350px;}
.y114{bottom:1019.772600px;}
.y14f{bottom:1019.777100px;}
.y199{bottom:1019.785350px;}
.y252{bottom:1025.263500px;}
.y210{bottom:1025.265900px;}
.y15a{bottom:1037.365350px;}
.y113{bottom:1037.371200px;}
.y30{bottom:1037.770350px;}
.y14e{bottom:1037.777100px;}
.y198{bottom:1037.785350px;}
.ya5{bottom:1039.045950px;}
.y251{bottom:1040.263500px;}
.y20f{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y68{bottom:1132.418700px;}
.y109{bottom:1132.421700px;}
.y250{bottom:1132.423500px;}
.y202{bottom:1132.425000px;}
.y159{bottom:1132.426950px;}
.y13b{bottom:1132.432050px;}
.y155{bottom:1132.432350px;}
.y110{bottom:1132.433700px;}
.y147{bottom:1132.435800px;}
.y142{bottom:1132.437750px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.393066px;}
.h1e{height:28.947386px;}
.h1f{height:29.017277px;}
.h2{height:30.577148px;}
.h12{height:31.267090px;}
.h13{height:31.352890px;}
.h14{height:31.389490px;}
.he{height:32.761230px;}
.h7{height:32.805176px;}
.hd{height:32.815976px;}
.h1a{height:33.328125px;}
.h16{height:33.351562px;}
.h1b{height:34.876732px;}
.h10{height:34.945312px;}
.h1c{height:34.946186px;}
.hf{height:34.992188px;}
.h1d{height:35.020450px;}
.h15{height:37.520508px;}
.h11{height:41.660156px;}
.hc{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.h18{height:44.100000px;}
.h19{height:47.040000px;}
.h17{height:48.699401px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h20{height:69.753028px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x64{left:70.582650px;}
.x53{left:75.008100px;}
.xd{left:76.535400px;}
.x11{left:78.661350px;}
.x50{left:87.272850px;}
.x40{left:92.502750px;}
.xb{left:96.094500px;}
.x1{left:97.795200px;}
.x25{left:99.921300px;}
.xc9{left:102.047250px;}
.x51{left:103.800300px;}
.x4{left:106.299300px;}
.xe{left:110.555400px;}
.x89{left:112.635600px;}
.x67{left:116.010450px;}
.x66{left:117.681150px;}
.x3d{left:123.815400px;}
.x3{left:125.433150px;}
.x83{left:129.219000px;}
.x7{left:131.818650px;}
.xbb{left:134.131800px;}
.x3c{left:136.325400px;}
.x44{left:139.453650px;}
.x3e{left:142.595400px;}
.xa1{left:146.108700px;}
.x65{left:148.008600px;}
.x70{left:150.515700px;}
.x3f{left:152.495400px;}
.xc5{left:154.587000px;}
.x88{left:156.321000px;}
.x4f{left:157.530900px;}
.x84{left:160.746300px;}
.x71{left:167.368650px;}
.xbe{left:176.791350px;}
.x52{left:179.668200px;}
.x4b{left:182.044950px;}
.x1a{left:188.832600px;}
.x5{left:191.338650px;}
.xc8{left:194.285400px;}
.x45{left:196.537200px;}
.x4c{left:198.936750px;}
.x41{left:200.921250px;}
.x32{left:202.037550px;}
.x18{left:205.572600px;}
.x6c{left:207.128550px;}
.x33{left:210.182550px;}
.x6{left:212.878650px;}
.x30{left:215.560050px;}
.x20{left:219.083850px;}
.x2e{left:221.185050px;}
.x8a{left:223.673100px;}
.x2c{left:225.223800px;}
.x22{left:226.812600px;}
.x1f{left:229.838850px;}
.x31{left:231.208800px;}
.x37{left:233.010150px;}
.x1e{left:234.732600px;}
.x1c{left:237.533850px;}
.x86{left:238.730250px;}
.x6d{left:239.758500px;}
.x19{left:244.160100px;}
.x36{left:247.162650px;}
.x34{left:251.177550px;}
.x21{left:253.283850px;}
.x1b{left:254.791350px;}
.x1d{left:256.692600px;}
.x35{left:257.782650px;}
.x2d{left:260.312550px;}
.xbf{left:263.503084px;}
.x85{left:267.436800px;}
.x87{left:270.264750px;}
.x39{left:274.195950px;}
.x38{left:280.203450px;}
.x3a{left:291.835950px;}
.x42{left:295.194900px;}
.x46{left:296.373000px;}
.x4d{left:307.397250px;}
.x43{left:311.722200px;}
.x47{left:312.892950px;}
.xb9{left:323.020950px;}
.x8b{left:328.505550px;}
.xc4{left:332.400191px;}
.xc2{left:337.752150px;}
.x4e{left:338.965950px;}
.x4a{left:344.427000px;}
.xc1{left:347.482950px;}
.xa7{left:358.026540px;}
.xa4{left:360.437400px;}
.x68{left:361.874250px;}
.x6e{left:363.256350px;}
.xb2{left:371.260913px;}
.xbc{left:375.662424px;}
.x69{left:379.369650px;}
.x6f{left:380.579100px;}
.x6a{left:381.717450px;}
.x48{left:382.968300px;}
.xaf{left:385.777050px;}
.xb1{left:387.763350px;}
.xb4{left:389.716623px;}
.xb3{left:392.375394px;}
.x6b{left:398.469750px;}
.xc0{left:410.618100px;}
.x49{left:414.566850px;}
.x12{left:418.580100px;}
.x72{left:435.826800px;}
.x26{left:439.840050px;}
.xba{left:446.926500px;}
.xc6{left:449.541300px;}
.xad{left:452.149460px;}
.xc{left:455.041500px;}
.xf{left:457.085400px;}
.xb5{left:461.096265px;}
.x14{left:462.173850px;}
.x13{left:472.906350px;}
.x73{left:476.819100px;}
.x62{left:478.345350px;}
.x9{left:480.463650px;}
.x28{left:483.433800px;}
.x15{left:487.756350px;}
.x92{left:490.016550px;}
.x10{left:491.105400px;}
.x27{left:494.166300px;}
.x9e{left:498.978000px;}
.xc3{left:501.833456px;}
.x95{left:503.859600px;}
.x79{left:505.030650px;}
.x93{left:506.898750px;}
.x29{left:509.016300px;}
.x54{left:512.611200px;}
.x8{left:514.483650px;}
.xb6{left:518.858683px;}
.xa9{left:523.469220px;}
.x94{left:525.235350px;}
.x76{left:526.404900px;}
.x9a{left:527.519100px;}
.x55{left:529.814550px;}
.x5c{left:532.050000px;}
.xbd{left:537.258600px;}
.x77{left:542.932200px;}
.x9b{left:544.046400px;}
.x96{left:546.910350px;}
.x5d{left:548.577300px;}
.xa{left:549.718650px;}
.xa3{left:552.847950px;}
.xb8{left:555.073050px;}
.xb0{left:558.046307px;}
.xa8{left:560.656097px;}
.xaa{left:562.392683px;}
.x5a{left:563.523300px;}
.xb7{left:566.189613px;}
.x8e{left:567.257550px;}
.xae{left:568.445332px;}
.xa6{left:569.662388px;}
.x7a{left:570.781950px;}
.xac{left:574.452968px;}
.xa2{left:579.458700px;}
.x56{left:581.746650px;}
.x7c{left:585.027750px;}
.xc7{left:591.910350px;}
.x5b{left:595.050600px;}
.x57{left:598.273950px;}
.x90{left:600.967800px;}
.x7b{left:602.309400px;}
.xa5{left:603.627600px;}
.x7e{left:606.057450px;}
.xab{left:607.076818px;}
.x16{left:612.068850px;}
.x78{left:614.832300px;}
.x7d{left:617.847000px;}
.x80{left:631.972650px;}
.x2a{left:633.328800px;}
.x7f{left:637.584750px;}
.x5e{left:646.323150px;}
.x24{left:663.492300px;}
.x9f{left:668.840700px;}
.x97{left:670.483350px;}
.x5f{left:678.387600px;}
.x61{left:679.404300px;}
.x8c{left:682.177650px;}
.xa0{left:686.387550px;}
.x2{left:693.365400px;}
.x8f{left:694.733700px;}
.x8d{left:698.907150px;}
.x98{left:702.163800px;}
.x58{left:709.907700px;}
.x63{left:721.717650px;}
.x60{left:724.333650px;}
.x23{left:728.391600px;}
.x81{left:731.736600px;}
.x59{left:742.324800px;}
.x82{left:743.863350px;}
.x17{left:747.462600px;}
.x3b{left:749.651400px;}
.x91{left:750.889200px;}
.x2f{left:760.465050px;}
.x74{left:764.978100px;}
.x99{left:766.035600px;}
.x2b{left:768.722550px;}
.x75{left:781.485000px;}
.x9c{left:784.074900px;}
.x9d{left:816.378000px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:2.613333pt;}
.v1{vertical-align:19.217067pt;}
.ls69{letter-spacing:-7.093333pt;}
.ls11{letter-spacing:-6.880000pt;}
.ls79{letter-spacing:-6.826667pt;}
.ls80{letter-spacing:-6.773333pt;}
.ls6b{letter-spacing:-6.506667pt;}
.ls7c{letter-spacing:-6.186667pt;}
.ls6a{letter-spacing:-6.080000pt;}
.ls56{letter-spacing:-5.813333pt;}
.ls59{letter-spacing:-5.653333pt;}
.ls43{letter-spacing:-5.504000pt;}
.ls68{letter-spacing:-5.386667pt;}
.ls2c{letter-spacing:-5.160000pt;}
.ls57{letter-spacing:-5.066667pt;}
.ls58{letter-spacing:-5.013333pt;}
.ls7a{letter-spacing:-4.960000pt;}
.ls89{letter-spacing:-4.906667pt;}
.ls7b{letter-spacing:-4.160000pt;}
.ls8a{letter-spacing:-2.560000pt;}
.lsa9{letter-spacing:-2.346667pt;}
.ls2d{letter-spacing:-2.200000pt;}
.ls78{letter-spacing:-2.080000pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls3e{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.426667pt;}
.ls60{letter-spacing:-0.320000pt;}
.ls67{letter-spacing:-0.266667pt;}
.ls61{letter-spacing:-0.213333pt;}
.ls6f{letter-spacing:-0.170667pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls86{letter-spacing:-0.127749pt;}
.ls3f{letter-spacing:-0.106667pt;}
.ls6e{letter-spacing:-0.085333pt;}
.ls29{letter-spacing:-0.053333pt;}
.ls99{letter-spacing:-0.042667pt;}
.ls2b{letter-spacing:-0.040000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.ls82{letter-spacing:0.010331pt;}
.ls88{letter-spacing:0.035343pt;}
.ls4a{letter-spacing:0.042667pt;}
.ls85{letter-spacing:0.042668pt;}
.lsc{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.061867pt;}
.ls84{letter-spacing:0.085166pt;}
.ls96{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls81{letter-spacing:0.127749pt;}
.ls5a{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls87{letter-spacing:0.170332pt;}
.ls92{letter-spacing:0.170667pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls93{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls8c{letter-spacing:0.298667pt;}
.ls39{letter-spacing:0.320000pt;}
.ls9e{letter-spacing:0.341333pt;}
.ls1f{letter-spacing:0.373333pt;}
.ls77{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls6c{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.480000pt;}
.ls6d{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.533333pt;}
.lsa3{letter-spacing:0.554667pt;}
.ls24{letter-spacing:0.586667pt;}
.ls98{letter-spacing:0.597333pt;}
.ls8{letter-spacing:0.640000pt;}
.lsa6{letter-spacing:0.682667pt;}
.ls9{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls2e{letter-spacing:0.853333pt;}
.ls9f{letter-spacing:0.896000pt;}
.ls48{letter-spacing:0.906667pt;}
.ls22{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.013333pt;}
.ls91{letter-spacing:1.024000pt;}
.ls18{letter-spacing:1.066667pt;}
.ls30{letter-spacing:1.120000pt;}
.ls31{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.226667pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls42{letter-spacing:1.322667pt;}
.ls44{letter-spacing:1.333333pt;}
.ls36{letter-spacing:1.386667pt;}
.ls8e{letter-spacing:1.408000pt;}
.ls2a{letter-spacing:1.440000pt;}
.ls37{letter-spacing:1.493333pt;}
.ls95{letter-spacing:1.536000pt;}
.ls25{letter-spacing:1.546667pt;}
.ls8f{letter-spacing:1.578667pt;}
.ls6{letter-spacing:1.600000pt;}
.lsa7{letter-spacing:1.621333pt;}
.ls45{letter-spacing:1.653333pt;}
.lse{letter-spacing:1.706667pt;}
.ls27{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.813333pt;}
.lsa8{letter-spacing:1.834667pt;}
.ls20{letter-spacing:1.866667pt;}
.ls97{letter-spacing:1.877333pt;}
.ls65{letter-spacing:1.920000pt;}
.ls9d{letter-spacing:1.962667pt;}
.ls4{letter-spacing:1.973333pt;}
.lsa5{letter-spacing:2.005333pt;}
.ls3a{letter-spacing:2.026667pt;}
.ls13{letter-spacing:2.080000pt;}
.ls51{letter-spacing:2.133333pt;}
.ls50{letter-spacing:2.186667pt;}
.ls32{letter-spacing:2.240000pt;}
.ls90{letter-spacing:2.261333pt;}
.ls21{letter-spacing:2.293333pt;}
.ls54{letter-spacing:2.346667pt;}
.lsa0{letter-spacing:2.389333pt;}
.ls3{letter-spacing:2.400000pt;}
.ls3d{letter-spacing:2.453333pt;}
.lsa4{letter-spacing:2.474667pt;}
.ls3b{letter-spacing:2.506667pt;}
.ls19{letter-spacing:2.560000pt;}
.ls8d{letter-spacing:2.602667pt;}
.ls63{letter-spacing:2.613333pt;}
.ls3c{letter-spacing:2.666667pt;}
.ls35{letter-spacing:2.720000pt;}
.lsa2{letter-spacing:2.730667pt;}
.ls49{letter-spacing:2.773333pt;}
.ls4d{letter-spacing:2.826667pt;}
.ls94{letter-spacing:2.858667pt;}
.ls46{letter-spacing:2.880000pt;}
.ls1a{letter-spacing:2.933333pt;}
.ls41{letter-spacing:2.986667pt;}
.ls1e{letter-spacing:3.146667pt;}
.ls9c{letter-spacing:3.157333pt;}
.ls4c{letter-spacing:3.253333pt;}
.ls9a{letter-spacing:3.285333pt;}
.ls2f{letter-spacing:3.306667pt;}
.ls9b{letter-spacing:3.328000pt;}
.ls5e{letter-spacing:3.360000pt;}
.ls5b{letter-spacing:3.413333pt;}
.ls5c{letter-spacing:3.466667pt;}
.ls55{letter-spacing:3.520000pt;}
.ls47{letter-spacing:3.573333pt;}
.ls28{letter-spacing:3.626667pt;}
.ls73{letter-spacing:3.680000pt;}
.ls4f{letter-spacing:3.733333pt;}
.ls4b{letter-spacing:3.786667pt;}
.ls8b{letter-spacing:3.840000pt;}
.ls14{letter-spacing:3.946667pt;}
.ls5f{letter-spacing:4.000000pt;}
.ls17{letter-spacing:4.213333pt;}
.lsa1{letter-spacing:4.224000pt;}
.ls83{letter-spacing:4.320000pt;}
.ls7{letter-spacing:4.373333pt;}
.ls74{letter-spacing:4.426667pt;}
.ls7e{letter-spacing:4.480000pt;}
.ls71{letter-spacing:4.800000pt;}
.ls64{letter-spacing:5.066667pt;}
.ls5d{letter-spacing:5.173333pt;}
.ls53{letter-spacing:5.280000pt;}
.ls38{letter-spacing:5.355733pt;}
.ls7d{letter-spacing:5.493333pt;}
.ls7f{letter-spacing:5.546667pt;}
.ls70{letter-spacing:5.600000pt;}
.ls62{letter-spacing:5.866667pt;}
.ls76{letter-spacing:6.240000pt;}
.ls66{letter-spacing:6.293333pt;}
.ls33{letter-spacing:6.560000pt;}
.ls4e{letter-spacing:6.666667pt;}
.ls52{letter-spacing:6.823467pt;}
.ls75{letter-spacing:7.093333pt;}
.ls72{letter-spacing:9.173333pt;}
.ws28{word-spacing:-55.214741pt;}
.ws27{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.wsa9{word-spacing:-18.826667pt;}
.ws97{word-spacing:-18.133333pt;}
.wsb8{word-spacing:-17.653333pt;}
.ws4c{word-spacing:-17.120000pt;}
.wsa8{word-spacing:-16.853333pt;}
.wsb9{word-spacing:-16.480000pt;}
.wsc5{word-spacing:-16.426667pt;}
.ws53{word-spacing:-15.893333pt;}
.ws2b{word-spacing:-15.840000pt;}
.ws9d{word-spacing:-15.733333pt;}
.ws2a{word-spacing:-15.360000pt;}
.ws7f{word-spacing:-15.253333pt;}
.ws79{word-spacing:-15.200000pt;}
.ws99{word-spacing:-15.146667pt;}
.ws2{word-spacing:-14.826667pt;}
.ws4e{word-spacing:-14.773333pt;}
.ws4d{word-spacing:-14.720000pt;}
.wsab{word-spacing:-14.666667pt;}
.ws4f{word-spacing:-14.613333pt;}
.ws52{word-spacing:-14.453333pt;}
.ws50{word-spacing:-14.346667pt;}
.ws29{word-spacing:-14.293333pt;}
.ws54{word-spacing:-14.240000pt;}
.wsb7{word-spacing:-14.186667pt;}
.ws12{word-spacing:-14.133333pt;}
.wsaa{word-spacing:-14.026667pt;}
.wsb6{word-spacing:-13.973333pt;}
.ws3{word-spacing:-13.866667pt;}
.wsdd{word-spacing:-13.824000pt;}
.wsad{word-spacing:-13.653333pt;}
.ws70{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.546667pt;}
.ws4{word-spacing:-13.440000pt;}
.ws51{word-spacing:-13.386667pt;}
.ws10{word-spacing:-13.333333pt;}
.ws8f{word-spacing:-13.173333pt;}
.wsc9{word-spacing:-12.928000pt;}
.wscb{word-spacing:-12.800000pt;}
.wsde{word-spacing:-12.629333pt;}
.wse2{word-spacing:-12.288000pt;}
.wsc8{word-spacing:-12.245333pt;}
.ws26{word-spacing:-12.000000pt;}
.wsdf{word-spacing:-11.946667pt;}
.ws6{word-spacing:-11.861333pt;}
.wsc7{word-spacing:-11.520000pt;}
.ws96{word-spacing:-11.253333pt;}
.wse0{word-spacing:-11.221333pt;}
.ws5{word-spacing:-11.120000pt;}
.ws3d{word-spacing:-11.093333pt;}
.wsc6{word-spacing:-10.965333pt;}
.wsca{word-spacing:-10.922667pt;}
.wse1{word-spacing:-10.880000pt;}
.wscc{word-spacing:-10.752000pt;}
.ws6a{word-spacing:-10.666667pt;}
.ws90{word-spacing:-10.496000pt;}
.ws9c{word-spacing:-10.453333pt;}
.wsb3{word-spacing:-9.728243pt;}
.wsb2{word-spacing:-9.708909pt;}
.ws1{word-spacing:-9.340800pt;}
.ws9b{word-spacing:-9.173333pt;}
.ws9a{word-spacing:-8.373333pt;}
.wsdc{word-spacing:-8.320000pt;}
.wsb5{word-spacing:-8.077766pt;}
.wsb4{word-spacing:-8.058310pt;}
.ws7e{word-spacing:-7.946667pt;}
.ws22{word-spacing:-7.800000pt;}
.wsac{word-spacing:-6.560000pt;}
.ws98{word-spacing:-6.506667pt;}
.ws95{word-spacing:-6.453333pt;}
.ws40{word-spacing:-5.162667pt;}
.wse3{word-spacing:-3.285333pt;}
.wse4{word-spacing:-3.157333pt;}
.wse8{word-spacing:-2.730667pt;}
.ws6b{word-spacing:-2.720000pt;}
.wsc1{word-spacing:-2.613333pt;}
.wscf{word-spacing:-2.602667pt;}
.ws8{word-spacing:-2.565333pt;}
.ws82{word-spacing:-2.453333pt;}
.ws5e{word-spacing:-2.240000pt;}
.ws1f{word-spacing:-2.200000pt;}
.wsf{word-spacing:-1.973333pt;}
.ws89{word-spacing:-1.920000pt;}
.ws80{word-spacing:-1.706667pt;}
.wsae{word-spacing:-1.653333pt;}
.wsf0{word-spacing:-1.621333pt;}
.ws21{word-spacing:-1.480000pt;}
.ws81{word-spacing:-1.440000pt;}
.wsb0{word-spacing:-1.333333pt;}
.ws83{word-spacing:-1.280000pt;}
.ws9e{word-spacing:-1.226667pt;}
.wsa6{word-spacing:-1.173333pt;}
.ws86{word-spacing:-1.120000pt;}
.wsd2{word-spacing:-1.024000pt;}
.wsa{word-spacing:-0.960000pt;}
.ws67{word-spacing:-0.906667pt;}
.ws6c{word-spacing:-0.746667pt;}
.ws20{word-spacing:-0.720000pt;}
.ws64{word-spacing:-0.693333pt;}
.wsda{word-spacing:-0.597333pt;}
.wsaf{word-spacing:-0.586667pt;}
.wse5{word-spacing:-0.426667pt;}
.ws1a{word-spacing:-0.373333pt;}
.wse7{word-spacing:-0.298667pt;}
.ws1e{word-spacing:-0.266667pt;}
.ws66{word-spacing:-0.213333pt;}
.wsbd{word-spacing:-0.170332pt;}
.wsa0{word-spacing:-0.160000pt;}
.wse9{word-spacing:-0.128000pt;}
.ws5f{word-spacing:-0.106667pt;}
.wsd8{word-spacing:-0.085333pt;}
.wsba{word-spacing:-0.085166pt;}
.wsa4{word-spacing:-0.053333pt;}
.wsbb{word-spacing:-0.042668pt;}
.wsbe{word-spacing:-0.035343pt;}
.ws7{word-spacing:0.000000pt;}
.ws41{word-spacing:0.042667pt;}
.ws47{word-spacing:0.053333pt;}
.ws5b{word-spacing:0.106667pt;}
.wsbc{word-spacing:0.127749pt;}
.ws3f{word-spacing:0.128000pt;}
.ws9f{word-spacing:0.160000pt;}
.ws57{word-spacing:0.213333pt;}
.wsd6{word-spacing:0.256000pt;}
.ws2f{word-spacing:0.266667pt;}
.ws71{word-spacing:0.320000pt;}
.ws56{word-spacing:0.373333pt;}
.ws8e{word-spacing:0.384000pt;}
.wseb{word-spacing:0.469333pt;}
.ws7b{word-spacing:0.480000pt;}
.ws78{word-spacing:0.512000pt;}
.ws5d{word-spacing:0.533333pt;}
.wsee{word-spacing:0.554667pt;}
.ws88{word-spacing:0.586667pt;}
.ws75{word-spacing:0.640000pt;}
.ws31{word-spacing:0.693333pt;}
.wsef{word-spacing:0.725333pt;}
.ws58{word-spacing:0.746667pt;}
.ws6d{word-spacing:0.800000pt;}
.ws76{word-spacing:0.853333pt;}
.ws18{word-spacing:0.906667pt;}
.ws46{word-spacing:0.938667pt;}
.ws2c{word-spacing:0.960000pt;}
.ws19{word-spacing:1.013333pt;}
.ws30{word-spacing:1.120000pt;}
.ws8d{word-spacing:1.152000pt;}
.ws36{word-spacing:1.226667pt;}
.wse6{word-spacing:1.237333pt;}
.ws3b{word-spacing:1.280000pt;}
.ws42{word-spacing:1.322667pt;}
.ws8a{word-spacing:1.333333pt;}
.ws38{word-spacing:1.386667pt;}
.ws1d{word-spacing:1.440000pt;}
.ws7c{word-spacing:1.450667pt;}
.ws49{word-spacing:1.493333pt;}
.ws68{word-spacing:1.546667pt;}
.ws94{word-spacing:1.578667pt;}
.ws7a{word-spacing:1.600000pt;}
.ws93{word-spacing:1.653333pt;}
.wsd7{word-spacing:1.664000pt;}
.ws6e{word-spacing:1.749333pt;}
.ws74{word-spacing:1.760000pt;}
.wse{word-spacing:1.813333pt;}
.ws32{word-spacing:1.866667pt;}
.ws6f{word-spacing:1.877333pt;}
.ws55{word-spacing:1.920000pt;}
.ws77{word-spacing:1.973333pt;}
.wsc4{word-spacing:2.005333pt;}
.ws2e{word-spacing:2.026667pt;}
.ws7d{word-spacing:2.048000pt;}
.ws2d{word-spacing:2.080000pt;}
.ws92{word-spacing:2.133333pt;}
.wsd5{word-spacing:2.176000pt;}
.ws69{word-spacing:2.186667pt;}
.wsa5{word-spacing:2.218667pt;}
.ws15{word-spacing:2.240000pt;}
.wsce{word-spacing:2.261333pt;}
.ws16{word-spacing:2.293333pt;}
.wsf1{word-spacing:2.304000pt;}
.ws39{word-spacing:2.346667pt;}
.wsa2{word-spacing:2.453333pt;}
.wsd0{word-spacing:2.474667pt;}
.ws3a{word-spacing:2.506667pt;}
.wsc0{word-spacing:2.560000pt;}
.wsdb{word-spacing:2.602667pt;}
.ws1b{word-spacing:2.613333pt;}
.ws44{word-spacing:2.720000pt;}
.wsd4{word-spacing:2.730667pt;}
.ws37{word-spacing:2.773333pt;}
.wsd1{word-spacing:2.816000pt;}
.wsec{word-spacing:2.858667pt;}
.wsd9{word-spacing:2.901333pt;}
.wsd3{word-spacing:2.944000pt;}
.ws1c{word-spacing:2.986667pt;}
.wsea{word-spacing:3.029333pt;}
.ws72{word-spacing:3.040000pt;}
.wsa1{word-spacing:3.093333pt;}
.ws45{word-spacing:3.146667pt;}
.wsed{word-spacing:3.157333pt;}
.wscd{word-spacing:3.200000pt;}
.ws4b{word-spacing:3.242667pt;}
.ws33{word-spacing:3.253333pt;}
.wsa7{word-spacing:3.285333pt;}
.ws91{word-spacing:3.306667pt;}
.ws59{word-spacing:3.413333pt;}
.ws8b{word-spacing:3.498667pt;}
.ws35{word-spacing:3.520000pt;}
.ws3e{word-spacing:3.541333pt;}
.ws17{word-spacing:3.573333pt;}
.ws4a{word-spacing:3.584000pt;}
.ws34{word-spacing:3.626667pt;}
.ws5c{word-spacing:3.680000pt;}
.ws48{word-spacing:3.733333pt;}
.ws43{word-spacing:3.840000pt;}
.ws65{word-spacing:3.893333pt;}
.wsd{word-spacing:4.000000pt;}
.ws8c{word-spacing:4.010667pt;}
.wsb1{word-spacing:4.106667pt;}
.ws73{word-spacing:4.160000pt;}
.ws5a{word-spacing:4.213333pt;}
.ws3c{word-spacing:4.320000pt;}
.wsc{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.wsc2{word-spacing:4.906667pt;}
.ws62{word-spacing:5.013333pt;}
.ws61{word-spacing:5.066667pt;}
.ws25{word-spacing:5.160000pt;}
.wsc3{word-spacing:5.280000pt;}
.ws63{word-spacing:5.653333pt;}
.ws60{word-spacing:5.813333pt;}
.ws85{word-spacing:6.080000pt;}
.wsa3{word-spacing:6.186667pt;}
.ws87{word-spacing:6.506667pt;}
.wsbf{word-spacing:6.826667pt;}
.ws9{word-spacing:6.880000pt;}
.ws84{word-spacing:7.093333pt;}
.ws13{word-spacing:147.040000pt;}
.ws23{word-spacing:183.240000pt;}
.ws14{word-spacing:224.800000pt;}
.ws24{word-spacing:1128.040000pt;}
._47{margin-left:-2576.085333pt;}
._82{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._4{margin-left:-6.826667pt;}
._6{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.560000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.906667pt;}
._8{width:1.693333pt;}
._9{width:2.752000pt;}
._a{width:3.882667pt;}
._b{width:5.610667pt;}
._7{width:6.986667pt;}
._83{width:10.645733pt;}
._76{width:17.640000pt;}
._1a{width:23.760000pt;}
._6f{width:38.440000pt;}
._1b{width:40.880000pt;}
._3c{width:43.080000pt;}
._77{width:44.253333pt;}
._3e{width:46.365333pt;}
._5f{width:49.840000pt;}
._7f{width:59.880000pt;}
._22{width:61.560000pt;}
._4e{width:65.493333pt;}
._19{width:68.720000pt;}
._38{width:70.880000pt;}
._12{width:77.053333pt;}
._65{width:79.933333pt;}
._41{width:83.720000pt;}
._43{width:86.780267pt;}
._1e{width:88.640000pt;}
._20{width:94.693333pt;}
._26{width:95.920000pt;}
._5b{width:99.253333pt;}
._56{width:100.920000pt;}
._5a{width:104.253333pt;}
._4f{width:106.266667pt;}
._1f{width:108.760000pt;}
._3b{width:113.160000pt;}
._5c{width:114.480000pt;}
._69{width:117.253333pt;}
._58{width:118.285333pt;}
._6a{width:120.346667pt;}
._44{width:121.440000pt;}
._53{width:123.226667pt;}
._51{width:125.373333pt;}
._7a{width:128.213333pt;}
._45{width:134.480000pt;}
._6d{width:137.280000pt;}
._4d{width:139.920000pt;}
._52{width:143.680000pt;}
._32{width:144.880000pt;}
._11{width:146.480000pt;}
._48{width:148.920000pt;}
._16{width:154.133333pt;}
._10{width:155.920000pt;}
._66{width:156.880000pt;}
._4c{width:162.520000pt;}
._25{width:166.000000pt;}
._61{width:170.040000pt;}
._70{width:174.893333pt;}
._72{width:175.826667pt;}
._63{width:177.186667pt;}
._13{width:180.760000pt;}
._50{width:190.066667pt;}
._2d{width:191.440000pt;}
._46{width:192.720000pt;}
._18{width:194.634667pt;}
._62{width:198.044800pt;}
._5e{width:199.000000pt;}
._36{width:201.800000pt;}
._7e{width:208.800000pt;}
._21{width:210.480000pt;}
._40{width:213.853333pt;}
._15{width:225.400000pt;}
._74{width:226.720000pt;}
._42{width:228.440000pt;}
._3d{width:230.080000pt;}
._7d{width:233.400000pt;}
._14{width:234.800000pt;}
._1d{width:237.640000pt;}
._33{width:240.440000pt;}
._60{width:244.946667pt;}
._71{width:248.920000pt;}
._59{width:253.280000pt;}
._29{width:256.360000pt;}
._30{width:258.053333pt;}
._2b{width:261.373333pt;}
._68{width:265.053333pt;}
._37{width:266.520000pt;}
._2e{width:268.013333pt;}
._79{width:269.986667pt;}
._57{width:272.920000pt;}
._73{width:275.640000pt;}
._28{width:278.160000pt;}
._f{width:283.400000pt;}
._67{width:289.000000pt;}
._1c{width:291.240000pt;}
._31{width:292.866667pt;}
._34{width:296.040000pt;}
._17{width:309.000000pt;}
._55{width:311.240000pt;}
._6c{width:316.200000pt;}
._7c{width:320.240000pt;}
._80{width:322.320000pt;}
._3a{width:323.400000pt;}
._75{width:324.885333pt;}
._27{width:328.960000pt;}
._35{width:331.720000pt;}
._2f{width:335.680000pt;}
._2c{width:340.400000pt;}
._7b{width:344.480000pt;}
._d{width:349.560000pt;}
._64{width:352.802667pt;}
._78{width:357.240000pt;}
._4b{width:358.160000pt;}
._24{width:361.240000pt;}
._4a{width:365.680000pt;}
._3f{width:370.560000pt;}
._6b{width:379.360000pt;}
._81{width:385.120000pt;}
._39{width:404.440000pt;}
._2a{width:415.240000pt;}
._23{width:440.040000pt;}
._e{width:451.520000pt;}
._5d{width:462.480000pt;}
._49{width:482.200000pt;}
._54{width:483.320000pt;}
._c{width:574.640000pt;}
._6e{width:1006.720000pt;}
.fs5{font-size:24.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fse{font-size:35.343467pt;}
.fsf{font-size:35.428800pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsc{font-size:42.582933pt;}
.fs9{font-size:42.666667pt;}
.fsd{font-size:42.667733pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fsb{font-size:55.214741pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs10{font-size:85.165333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y20e{bottom:71.219467pt;}
.y24f{bottom:71.345333pt;}
.y10f{bottom:73.893067pt;}
.y154{bottom:73.977200pt;}
.y13a{bottom:73.987600pt;}
.y158{bottom:74.271067pt;}
.y141{bottom:74.344667pt;}
.y10c{bottom:74.365467pt;}
.y1ab{bottom:74.376000pt;}
.y146{bottom:74.449600pt;}
.y104{bottom:74.462533pt;}
.y108{bottom:74.544133pt;}
.y112{bottom:74.659333pt;}
.y2c{bottom:78.248400pt;}
.y14d{bottom:80.335867pt;}
.y14c{bottom:80.988533pt;}
.y67{bottom:81.069200pt;}
.ydd{bottom:82.876533pt;}
.yde{bottom:83.529200pt;}
.y191{bottom:83.535867pt;}
.y190{bottom:84.188533pt;}
.y20d{bottom:84.552800pt;}
.y24e{bottom:84.678667pt;}
.ya4{bottom:85.022400pt;}
.y10e{bottom:87.887733pt;}
.y153{bottom:87.971867pt;}
.y139{bottom:87.982267pt;}
.y157{bottom:88.265733pt;}
.y140{bottom:88.339333pt;}
.y10b{bottom:88.360133pt;}
.y1aa{bottom:88.370667pt;}
.y145{bottom:88.444267pt;}
.y107{bottom:88.538800pt;}
.y111{bottom:88.654000pt;}
.y103{bottom:90.462533pt;}
.y2b{bottom:91.576000pt;}
.y66{bottom:94.830133pt;}
.y20c{bottom:97.886133pt;}
.y24d{bottom:98.012000pt;}
.ydc{bottom:99.529200pt;}
.y10d{bottom:101.882400pt;}
.y152{bottom:101.966533pt;}
.y138{bottom:101.976933pt;}
.y156{bottom:102.260400pt;}
.y13f{bottom:102.334000pt;}
.y10a{bottom:102.354800pt;}
.y144{bottom:102.438933pt;}
.y106{bottom:102.533467pt;}
.y102{bottom:106.462533pt;}
.y65{bottom:108.610133pt;}
.ya3{bottom:110.142400pt;}
.y1af{bottom:110.869867pt;}
.y20b{bottom:111.219467pt;}
.y24c{bottom:111.345333pt;}
.y14b{bottom:111.957867pt;}
.ydb{bottom:115.529200pt;}
.y18f{bottom:115.738000pt;}
.y151{bottom:115.961200pt;}
.y13e{bottom:116.328667pt;}
.y143{bottom:116.433600pt;}
.y105{bottom:116.528133pt;}
.y1da{bottom:120.770400pt;}
.y1b3{bottom:121.728140pt;}
.y64{bottom:122.390133pt;}
.y101{bottom:122.462533pt;}
.ya2{bottom:123.922400pt;}
.y20a{bottom:124.552800pt;}
.y24b{bottom:124.678667pt;}
.y14a{bottom:125.829867pt;}
.y18e{bottom:129.071333pt;}
.y13d{bottom:130.323333pt;}
.yda{bottom:131.529200pt;}
.y1d7{bottom:132.608267pt;}
.y63{bottom:136.170133pt;}
.ya1{bottom:137.702400pt;}
.y24a{bottom:138.012000pt;}
.y100{bottom:138.462533pt;}
.y149{bottom:138.595867pt;}
.y2a{bottom:139.078667pt;}
.y26{bottom:139.198667pt;}
.y1e2{bottom:142.169272pt;}
.y18d{bottom:142.404667pt;}
.y1b1{bottom:143.466727pt;}
.yd9{bottom:147.529200pt;}
.y62{bottom:149.950133pt;}
.y249{bottom:151.345333pt;}
.ya0{bottom:151.482400pt;}
.y209{bottom:153.982533pt;}
.y148{bottom:154.235867pt;}
.y1b0{bottom:154.346667pt;}
.yff{bottom:154.462533pt;}
.y25{bottom:155.198667pt;}
.y18c{bottom:155.738000pt;}
.y1dc{bottom:158.817733pt;}
.y1dd{bottom:161.477329pt;}
.yd8{bottom:163.529200pt;}
.y61{bottom:163.730133pt;}
.y1e0{bottom:164.034133pt;}
.y248{bottom:164.678667pt;}
.y1ae{bottom:165.209206pt;}
.y9f{bottom:165.262400pt;}
.y18b{bottom:169.071333pt;}
.yfe{bottom:170.462533pt;}
.y29{bottom:170.718667pt;}
.y24{bottom:171.198667pt;}
.y1db{bottom:175.126800pt;}
.y1b2{bottom:176.085254pt;}
.y60{bottom:177.510133pt;}
.y247{bottom:178.012000pt;}
.y9e{bottom:179.030533pt;}
.yd7{bottom:179.529200pt;}
.y1e4{bottom:185.772400pt;}
.yfd{bottom:186.462533pt;}
.y1d6{bottom:186.939206pt;}
.y23{bottom:187.198667pt;}
.y5f{bottom:191.290133pt;}
.y246{bottom:191.345333pt;}
.y9d{bottom:192.810533pt;}
.yd6{bottom:194.876533pt;}
.yd5{bottom:195.529200pt;}
.y18a{bottom:196.729200pt;}
.y1ad{bottom:197.827733pt;}
.y1e8{bottom:201.633467pt;}
.yfc{bottom:202.462533pt;}
.y22{bottom:203.198667pt;}
.y245{bottom:204.678667pt;}
.y5e{bottom:205.070133pt;}
.y9c{bottom:206.590533pt;}
.y1e7{bottom:207.512849pt;}
.y1b5{bottom:208.693135pt;}
.yd4{bottom:210.876533pt;}
.yd3{bottom:211.529200pt;}
.y189{bottom:212.369200pt;}
.y244{bottom:218.012000pt;}
.y208{bottom:218.102533pt;}
.yfb{bottom:218.462533pt;}
.y5d{bottom:218.850133pt;}
.y21{bottom:219.198667pt;}
.y1ba{bottom:219.562429pt;}
.y1d9{bottom:219.606800pt;}
.y9b{bottom:220.370533pt;}
.yd2{bottom:227.529200pt;}
.y1bd{bottom:230.421077pt;}
.y243{bottom:231.345333pt;}
.y1e6{bottom:232.014707pt;}
.y5c{bottom:232.630133pt;}
.y9a{bottom:234.150533pt;}
.yfa{bottom:234.462533pt;}
.y20{bottom:235.198667pt;}
.y1b6{bottom:241.301017pt;}
.yd1{bottom:243.529200pt;}
.y1f9{bottom:244.003067pt;}
.y188{bottom:244.595867pt;}
.y242{bottom:244.678667pt;}
.y5b{bottom:246.410133pt;}
.y99{bottom:247.930533pt;}
.y207{bottom:250.102533pt;}
.yf9{bottom:250.462533pt;}
.y1f{bottom:251.198667pt;}
.y1b4{bottom:252.159665pt;}
.y241{bottom:258.012000pt;}
.yd0{bottom:258.876533pt;}
.ycf{bottom:259.529200pt;}
.y5a{bottom:260.190133pt;}
.y187{bottom:260.595867pt;}
.y98{bottom:261.710533pt;}
.y1b7{bottom:263.039604pt;}
.yf8{bottom:266.462533pt;}
.y1e{bottom:267.198667pt;}
.y1e5{bottom:268.727733pt;}
.y240{bottom:271.345333pt;}
.y1b8{bottom:273.791795pt;}
.y59{bottom:273.970133pt;}
.yce{bottom:274.875867pt;}
.y97{bottom:275.490533pt;}
.y186{bottom:276.595867pt;}
.y1f8{bottom:280.928145pt;}
.yf7{bottom:282.462533pt;}
.y1d{bottom:283.198667pt;}
.y1e9{bottom:283.713139pt;}
.y1b9{bottom:284.671734pt;}
.y23f{bottom:284.678667pt;}
.y58{bottom:287.750133pt;}
.y96{bottom:289.270533pt;}
.ycd{bottom:291.529200pt;}
.y185{bottom:292.595867pt;}
.y1de{bottom:294.563153pt;}
.y1bc{bottom:295.530382pt;}
.y23e{bottom:298.012000pt;}
.yf6{bottom:298.462533pt;}
.y28{bottom:299.198667pt;}
.y57{bottom:301.530133pt;}
.y95{bottom:303.050533pt;}
.y1e3{bottom:305.668149pt;}
.y1bb{bottom:306.410322pt;}
.ycc{bottom:306.876533pt;}
.ycb{bottom:307.529200pt;}
.y184{bottom:308.595867pt;}
.y23d{bottom:311.345333pt;}
.yf5{bottom:314.462533pt;}
.y1c{bottom:314.838667pt;}
.y27{bottom:315.198667pt;}
.y56{bottom:315.310133pt;}
.y94{bottom:316.830533pt;}
.y1be{bottom:317.268970pt;}
.yca{bottom:322.876533pt;}
.yc9{bottom:323.529200pt;}
.y183{bottom:324.595867pt;}
.y23c{bottom:324.678667pt;}
.y1d1{bottom:328.125691pt;}
.y55{bottom:329.090133pt;}
.y1ec{bottom:329.744533pt;}
.y206{bottom:330.102533pt;}
.yf4{bottom:330.462533pt;}
.y93{bottom:330.610533pt;}
.y23b{bottom:338.012000pt;}
.y1c3{bottom:339.024000pt;}
.yc8{bottom:339.529200pt;}
.y182{bottom:340.595867pt;}
.y54{bottom:342.870133pt;}
.y92{bottom:344.390533pt;}
.yf3{bottom:346.462533pt;}
.y1d3{bottom:349.853633pt;}
.y23a{bottom:351.345333pt;}
.yc7{bottom:354.876533pt;}
.yc6{bottom:355.529200pt;}
.y181{bottom:356.595867pt;}
.y53{bottom:356.650133pt;}
.y91{bottom:358.170533pt;}
.y1c8{bottom:360.768000pt;}
.y1ed{bottom:362.125600pt;}
.yf2{bottom:362.462533pt;}
.y239{bottom:364.678667pt;}
.y52{bottom:370.430133pt;}
.yc5{bottom:370.875867pt;}
.y1cd{bottom:371.613512pt;}
.y1e1{bottom:371.884133pt;}
.y90{bottom:371.950533pt;}
.y180{bottom:372.595867pt;}
.y238{bottom:378.012000pt;}
.y205{bottom:378.102533pt;}
.yf1{bottom:378.462533pt;}
.y1f7{bottom:378.546800pt;}
.y1b{bottom:382.318667pt;}
.y1cc{bottom:382.493451pt;}
.y51{bottom:384.210133pt;}
.y8f{bottom:385.730533pt;}
.yc4{bottom:387.529200pt;}
.y17f{bottom:388.595867pt;}
.y237{bottom:391.345333pt;}
.y1d0{bottom:393.341454pt;}
.yf0{bottom:394.462533pt;}
.y1f0{bottom:394.852267pt;}
.y50{bottom:397.990133pt;}
.y1a{bottom:398.323733pt;}
.y8e{bottom:399.510533pt;}
.yc3{bottom:403.529200pt;}
.y1c4{bottom:404.246933pt;}
.y17e{bottom:404.595867pt;}
.y236{bottom:404.678667pt;}
.yef{bottom:410.462533pt;}
.y8d{bottom:413.290533pt;}
.y1df{bottom:413.794338pt;}
.y1c1{bottom:415.101546pt;}
.y235{bottom:418.012000pt;}
.yc2{bottom:419.529200pt;}
.y17d{bottom:420.595867pt;}
.y19{bottom:422.630400pt;}
.y4d{bottom:423.110133pt;}
.y1c7{bottom:425.985521pt;}
.yee{bottom:426.462533pt;}
.y8c{bottom:427.070533pt;}
.y276{bottom:431.345333pt;}
.y234{bottom:431.347467pt;}
.yc1{bottom:435.529200pt;}
.y17c{bottom:436.595867pt;}
.y1c0{bottom:436.841846pt;}
.y4f{bottom:437.770133pt;}
.y4c{bottom:437.780133pt;}
.y18{bottom:438.630400pt;}
.y8b{bottom:440.850533pt;}
.yed{bottom:442.462533pt;}
.y275{bottom:444.678667pt;}
.y233{bottom:444.680800pt;}
.y1ee{bottom:446.313738pt;}
.y1c6{bottom:447.724108pt;}
.y1eb{bottom:448.430036pt;}
.yc0{bottom:450.876533pt;}
.ybf{bottom:451.529200pt;}
.y4e{bottom:452.440133pt;}
.y4b{bottom:452.450133pt;}
.y17b{bottom:452.595867pt;}
.y17{bottom:454.630400pt;}
.y8a{bottom:454.630533pt;}
.y274{bottom:458.012000pt;}
.y232{bottom:458.014133pt;}
.y1f1{bottom:458.069600pt;}
.yec{bottom:458.462533pt;}
.y1d4{bottom:458.578507pt;}
.ybe{bottom:466.876533pt;}
.ybd{bottom:467.529200pt;}
.y89{bottom:468.410533pt;}
.y17a{bottom:468.595867pt;}
.y1c2{bottom:469.352203pt;}
.y16{bottom:470.630400pt;}
.y273{bottom:471.345333pt;}
.y231{bottom:471.347467pt;}
.yeb{bottom:474.462533pt;}
.y1f4{bottom:478.038659pt;}
.y1bf{bottom:480.212564pt;}
.y4a{bottom:480.689200pt;}
.y88{bottom:482.190533pt;}
.y1fc{bottom:482.252800pt;}
.ybc{bottom:482.876533pt;}
.ybb{bottom:483.529200pt;}
.y179{bottom:484.595867pt;}
.y272{bottom:484.678667pt;}
.y230{bottom:484.680800pt;}
.y15{bottom:486.630400pt;}
.y1ac{bottom:487.984133pt;}
.yea{bottom:490.462533pt;}
.y1cb{bottom:491.079931pt;}
.y87{bottom:495.970533pt;}
.y271{bottom:498.012000pt;}
.y22f{bottom:498.014133pt;}
.y49{bottom:498.022533pt;}
.yba{bottom:498.876533pt;}
.yb9{bottom:499.529200pt;}
.y178{bottom:499.943200pt;}
.y177{bottom:500.595867pt;}
.y1f5{bottom:500.879374pt;}
.y1cf{bottom:501.927934pt;}
.y14{bottom:502.630400pt;}
.y204{bottom:506.102533pt;}
.ye9{bottom:506.462533pt;}
.y86{bottom:509.723333pt;}
.y270{bottom:511.345333pt;}
.y22e{bottom:511.347467pt;}
.y1d8{bottom:512.087600pt;}
.y1d2{bottom:512.807873pt;}
.yb8{bottom:515.529200pt;}
.y176{bottom:515.943200pt;}
.y175{bottom:516.595867pt;}
.y13{bottom:518.630400pt;}
.y1fb{bottom:521.703867pt;}
.ye8{bottom:522.462533pt;}
.y85{bottom:523.503333pt;}
.y1ca{bottom:523.687813pt;}
.y26f{bottom:524.678667pt;}
.y22d{bottom:524.680800pt;}
.yb7{bottom:530.876533pt;}
.y1f3{bottom:531.371950pt;}
.yb6{bottom:531.529200pt;}
.y174{bottom:532.595867pt;}
.y1ef{bottom:533.824161pt;}
.y1c5{bottom:534.572001pt;}
.y12{bottom:534.630400pt;}
.y84{bottom:537.283333pt;}
.y26e{bottom:538.012000pt;}
.y22c{bottom:538.014133pt;}
.y48{bottom:538.462533pt;}
.y1c9{bottom:545.426400pt;}
.y1f2{bottom:545.809756pt;}
.y1fa{bottom:547.253467pt;}
.yb5{bottom:547.529200pt;}
.y173{bottom:548.595867pt;}
.y11{bottom:550.630400pt;}
.y83{bottom:551.063333pt;}
.y26d{bottom:551.345333pt;}
.y22b{bottom:551.347467pt;}
.y47{bottom:554.462533pt;}
.y1d5{bottom:556.303569pt;}
.y1f6{bottom:558.321343pt;}
.yb4{bottom:563.529200pt;}
.y172{bottom:564.595867pt;}
.y26c{bottom:564.678667pt;}
.y22a{bottom:564.680800pt;}
.y82{bottom:564.843333pt;}
.y1ea{bottom:566.309333pt;}
.y10{bottom:566.630400pt;}
.y1ce{bottom:567.143696pt;}
.y46{bottom:570.462533pt;}
.y26b{bottom:578.012000pt;}
.y229{bottom:578.014133pt;}
.y81{bottom:578.623333pt;}
.yb3{bottom:579.529200pt;}
.y171{bottom:579.943200pt;}
.y170{bottom:580.595867pt;}
.ye7{bottom:585.809867pt;}
.y45{bottom:586.462533pt;}
.y26a{bottom:591.345333pt;}
.y228{bottom:591.347467pt;}
.y131{bottom:592.209867pt;}
.y80{bottom:592.403333pt;}
.y130{bottom:592.862533pt;}
.yb2{bottom:595.529200pt;}
.y16f{bottom:596.595867pt;}
.y137{bottom:601.809867pt;}
.y1a9{bottom:602.355867pt;}
.y44{bottom:602.462533pt;}
.y197{bottom:602.595867pt;}
.y269{bottom:604.678667pt;}
.y227{bottom:604.680800pt;}
.y7f{bottom:606.183333pt;}
.yf{bottom:606.770933pt;}
.y12f{bottom:608.862533pt;}
.yb1{bottom:611.529200pt;}
.y16e{bottom:611.943200pt;}
.y16d{bottom:612.595867pt;}
.ye6{bottom:617.809867pt;}
.ye{bottom:617.838267pt;}
.y268{bottom:618.012000pt;}
.y226{bottom:618.014133pt;}
.y201{bottom:618.342533pt;}
.y1a8{bottom:618.355867pt;}
.y43{bottom:618.462533pt;}
.y196{bottom:618.595867pt;}
.y7e{bottom:619.963333pt;}
.y12e{bottom:624.209867pt;}
.y12d{bottom:624.862533pt;}
.yb0{bottom:626.876533pt;}
.yaf{bottom:627.529200pt;}
.y16c{bottom:628.595867pt;}
.y267{bottom:631.345333pt;}
.y225{bottom:631.347467pt;}
.y7d{bottom:633.743333pt;}
.y136{bottom:633.809867pt;}
.y200{bottom:634.342533pt;}
.y1a7{bottom:634.355867pt;}
.y42{bottom:634.462533pt;}
.y195{bottom:634.595867pt;}
.y12c{bottom:640.209867pt;}
.y12b{bottom:640.862533pt;}
.y16b{bottom:644.595867pt;}
.y266{bottom:644.678667pt;}
.y224{bottom:644.680800pt;}
.y7c{bottom:647.523333pt;}
.yd{bottom:649.461467pt;}
.y1ff{bottom:650.342533pt;}
.y1a6{bottom:650.355867pt;}
.y41{bottom:650.462533pt;}
.y194{bottom:650.595867pt;}
.y12a{bottom:656.209867pt;}
.y129{bottom:656.862533pt;}
.y265{bottom:658.012000pt;}
.y223{bottom:658.014133pt;}
.yc{bottom:658.029867pt;}
.yae{bottom:659.078667pt;}
.y16a{bottom:660.595867pt;}
.y7b{bottom:661.303333pt;}
.ye5{bottom:665.809867pt;}
.y1fe{bottom:666.342533pt;}
.y1a5{bottom:666.355867pt;}
.y40{bottom:666.462533pt;}
.y193{bottom:666.595867pt;}
.y264{bottom:671.345333pt;}
.y222{bottom:671.347467pt;}
.y128{bottom:672.209867pt;}
.y127{bottom:672.862533pt;}
.yb{bottom:673.461467pt;}
.y7a{bottom:675.083333pt;}
.y169{bottom:676.595867pt;}
.y1a4{bottom:682.355867pt;}
.y3f{bottom:682.462533pt;}
.y263{bottom:684.678667pt;}
.y221{bottom:684.680800pt;}
.ya{bottom:685.461467pt;}
.yad{bottom:687.832000pt;}
.y126{bottom:688.862533pt;}
.y79{bottom:688.863333pt;}
.y168{bottom:692.595867pt;}
.y9{bottom:697.461467pt;}
.y135{bottom:697.809867pt;}
.y1fd{bottom:697.982533pt;}
.y262{bottom:698.012000pt;}
.y220{bottom:698.014133pt;}
.y192{bottom:698.235867pt;}
.y3e{bottom:698.462533pt;}
.yac{bottom:701.704000pt;}
.y78{bottom:703.533333pt;}
.y125{bottom:704.209867pt;}
.y124{bottom:704.862533pt;}
.y167{bottom:708.595867pt;}
.y261{bottom:711.345333pt;}
.y21f{bottom:711.347467pt;}
.y1a3{bottom:713.995867pt;}
.y3d{bottom:714.462533pt;}
.yab{bottom:714.475867pt;}
.y77{bottom:717.313333pt;}
.y123{bottom:720.209867pt;}
.y122{bottom:720.862533pt;}
.y166{bottom:723.943200pt;}
.y8{bottom:724.382933pt;}
.y165{bottom:724.595867pt;}
.y260{bottom:724.678667pt;}
.y21e{bottom:724.680800pt;}
.y134{bottom:729.809867pt;}
.yaa{bottom:730.115867pt;}
.y3c{bottom:730.462533pt;}
.y76{bottom:731.093333pt;}
.y121{bottom:736.862533pt;}
.y25f{bottom:738.012000pt;}
.y21d{bottom:738.014133pt;}
.y164{bottom:740.595867pt;}
.y75{bottom:744.873333pt;}
.ye4{bottom:745.809867pt;}
.y3b{bottom:746.462533pt;}
.y25e{bottom:751.345333pt;}
.y21c{bottom:751.347467pt;}
.y120{bottom:752.209867pt;}
.y11f{bottom:752.862533pt;}
.y74{bottom:758.653333pt;}
.ya9{bottom:761.982533pt;}
.y3a{bottom:762.462533pt;}
.y1a2{bottom:762.475867pt;}
.y25d{bottom:764.678667pt;}
.y21b{bottom:764.680800pt;}
.y7{bottom:765.406933pt;}
.y11e{bottom:768.862533pt;}
.y163{bottom:772.145333pt;}
.y73{bottom:772.433333pt;}
.y133{bottom:777.809867pt;}
.ya8{bottom:777.982533pt;}
.y25c{bottom:778.012000pt;}
.y21a{bottom:778.014133pt;}
.y39{bottom:778.462533pt;}
.y1a1{bottom:778.475867pt;}
.y11d{bottom:784.209867pt;}
.y11c{bottom:784.862533pt;}
.y162{bottom:785.478667pt;}
.y72{bottom:786.213333pt;}
.y25b{bottom:791.345333pt;}
.y219{bottom:791.347467pt;}
.ye3{bottom:793.809867pt;}
.y38{bottom:794.462533pt;}
.y1a0{bottom:794.475867pt;}
.y6{bottom:797.816533pt;}
.y161{bottom:798.812000pt;}
.y71{bottom:799.993333pt;}
.y11b{bottom:800.862533pt;}
.y25a{bottom:804.678667pt;}
.y218{bottom:804.680800pt;}
.ya7{bottom:809.862533pt;}
.y37{bottom:810.462533pt;}
.y19f{bottom:810.475867pt;}
.y160{bottom:812.145333pt;}
.y70{bottom:813.773333pt;}
.y11a{bottom:816.862533pt;}
.y259{bottom:818.012000pt;}
.y217{bottom:818.014133pt;}
.y15f{bottom:825.478667pt;}
.ye2{bottom:825.809867pt;}
.y36{bottom:826.462533pt;}
.y19e{bottom:826.475867pt;}
.y6f{bottom:827.553333pt;}
.y5{bottom:830.226133pt;}
.y258{bottom:831.345333pt;}
.y216{bottom:831.347467pt;}
.y119{bottom:832.862533pt;}
.y15e{bottom:838.812000pt;}
.y6e{bottom:841.333333pt;}
.ye1{bottom:841.809867pt;}
.y35{bottom:842.462533pt;}
.y19d{bottom:842.475867pt;}
.y257{bottom:844.678667pt;}
.y215{bottom:844.680800pt;}
.y118{bottom:848.209867pt;}
.y117{bottom:848.862533pt;}
.y15d{bottom:852.145333pt;}
.ye0{bottom:857.809867pt;}
.ya6{bottom:857.982533pt;}
.y256{bottom:858.012000pt;}
.y214{bottom:858.014133pt;}
.y203{bottom:858.102533pt;}
.y34{bottom:858.462533pt;}
.y19c{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y15c{bottom:865.478667pt;}
.y6b{bottom:866.123333pt;}
.y255{bottom:871.345333pt;}
.y213{bottom:871.347467pt;}
.y132{bottom:873.809867pt;}
.y33{bottom:874.462533pt;}
.y19b{bottom:874.475867pt;}
.y15b{bottom:878.812000pt;}
.y116{bottom:879.832000pt;}
.y6d{bottom:880.783333pt;}
.y6a{bottom:880.793333pt;}
.y254{bottom:884.678667pt;}
.y212{bottom:884.680800pt;}
.ydf{bottom:889.809867pt;}
.y32{bottom:890.462533pt;}
.y150{bottom:890.468533pt;}
.y19a{bottom:890.475867pt;}
.y115{bottom:893.704000pt;}
.y3{bottom:895.045333pt;}
.y6c{bottom:895.453333pt;}
.y69{bottom:895.463333pt;}
.y253{bottom:898.012000pt;}
.y211{bottom:898.014133pt;}
.y13c{bottom:905.809867pt;}
.y31{bottom:906.462533pt;}
.y114{bottom:906.464533pt;}
.y14f{bottom:906.468533pt;}
.y199{bottom:906.475867pt;}
.y252{bottom:911.345333pt;}
.y210{bottom:911.347467pt;}
.y15a{bottom:922.102533pt;}
.y113{bottom:922.107733pt;}
.y30{bottom:922.462533pt;}
.y14e{bottom:922.468533pt;}
.y198{bottom:922.475867pt;}
.ya5{bottom:923.596400pt;}
.y251{bottom:924.678667pt;}
.y20f{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y68{bottom:1006.594400pt;}
.y109{bottom:1006.597067pt;}
.y250{bottom:1006.598667pt;}
.y202{bottom:1006.600000pt;}
.y159{bottom:1006.601733pt;}
.y13b{bottom:1006.606267pt;}
.y155{bottom:1006.606533pt;}
.y110{bottom:1006.607733pt;}
.y147{bottom:1006.609600pt;}
.y142{bottom:1006.611333pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.238281pt;}
.h1e{height:25.731010pt;}
.h1f{height:25.793135pt;}
.h2{height:27.179688pt;}
.h12{height:27.792969pt;}
.h13{height:27.869235pt;}
.h14{height:27.901769pt;}
.he{height:29.121094pt;}
.h7{height:29.160156pt;}
.hd{height:29.169756pt;}
.h1a{height:29.625000pt;}
.h16{height:29.645833pt;}
.h1b{height:31.001540pt;}
.h10{height:31.062500pt;}
.h1c{height:31.063277pt;}
.hf{height:31.104167pt;}
.h1d{height:31.129289pt;}
.h15{height:33.351562pt;}
.h11{height:37.031250pt;}
.hc{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.h18{height:39.200000pt;}
.h19{height:41.813333pt;}
.h17{height:43.288357pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h20{height:62.002691pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x64{left:62.740133pt;}
.x53{left:66.673867pt;}
.xd{left:68.031467pt;}
.x11{left:69.921200pt;}
.x50{left:77.575867pt;}
.x40{left:82.224667pt;}
.xb{left:85.417333pt;}
.x1{left:86.929067pt;}
.x25{left:88.818933pt;}
.xc9{left:90.708667pt;}
.x51{left:92.266933pt;}
.x4{left:94.488267pt;}
.xe{left:98.271467pt;}
.x89{left:100.120533pt;}
.x67{left:103.120400pt;}
.x66{left:104.605467pt;}
.x3d{left:110.058133pt;}
.x3{left:111.496133pt;}
.x83{left:114.861333pt;}
.x7{left:117.172133pt;}
.xbb{left:119.228267pt;}
.x3c{left:121.178133pt;}
.x44{left:123.958800pt;}
.x3e{left:126.751467pt;}
.xa1{left:129.874400pt;}
.x65{left:131.563200pt;}
.x70{left:133.791733pt;}
.x3f{left:135.551467pt;}
.xc5{left:137.410667pt;}
.x88{left:138.952000pt;}
.x4f{left:140.027467pt;}
.x84{left:142.885600pt;}
.x71{left:148.772133pt;}
.xbe{left:157.147867pt;}
.x52{left:159.705067pt;}
.x4b{left:161.817733pt;}
.x1a{left:167.851200pt;}
.x5{left:170.078800pt;}
.xc8{left:172.698133pt;}
.x45{left:174.699733pt;}
.x4c{left:176.832667pt;}
.x41{left:178.596667pt;}
.x32{left:179.588933pt;}
.x18{left:182.731200pt;}
.x6c{left:184.114267pt;}
.x33{left:186.828933pt;}
.x6{left:189.225467pt;}
.x30{left:191.608933pt;}
.x20{left:194.741200pt;}
.x2e{left:196.608933pt;}
.x8a{left:198.820533pt;}
.x2c{left:200.198933pt;}
.x22{left:201.611200pt;}
.x1f{left:204.301200pt;}
.x31{left:205.518933pt;}
.x37{left:207.120133pt;}
.x1e{left:208.651200pt;}
.x1c{left:211.141200pt;}
.x86{left:212.204667pt;}
.x6d{left:213.118667pt;}
.x19{left:217.031200pt;}
.x36{left:219.700133pt;}
.x34{left:223.268933pt;}
.x21{left:225.141200pt;}
.x1b{left:226.481200pt;}
.x1d{left:228.171200pt;}
.x35{left:229.140133pt;}
.x2d{left:231.388933pt;}
.xbf{left:234.224964pt;}
.x85{left:237.721600pt;}
.x87{left:240.235333pt;}
.x39{left:243.729733pt;}
.x38{left:249.069733pt;}
.x3a{left:259.409733pt;}
.x42{left:262.395467pt;}
.x46{left:263.442667pt;}
.x4d{left:273.242000pt;}
.x43{left:277.086400pt;}
.x47{left:278.127067pt;}
.xb9{left:287.129733pt;}
.x8b{left:292.004933pt;}
.xc4{left:295.466836pt;}
.xc2{left:300.224133pt;}
.x4e{left:301.303067pt;}
.x4a{left:306.157333pt;}
.xc1{left:308.873733pt;}
.xa7{left:318.245813pt;}
.xa4{left:320.388800pt;}
.x68{left:321.666000pt;}
.x6e{left:322.894533pt;}
.xb2{left:330.009701pt;}
.xbc{left:333.922155pt;}
.x69{left:337.217467pt;}
.x6f{left:338.292533pt;}
.x6a{left:339.304400pt;}
.x48{left:340.416267pt;}
.xaf{left:342.912933pt;}
.xb1{left:344.678533pt;}
.xb4{left:346.414776pt;}
.xb3{left:348.778128pt;}
.x6b{left:354.195333pt;}
.xc0{left:364.993867pt;}
.x49{left:368.503867pt;}
.x12{left:372.071200pt;}
.x72{left:387.401600pt;}
.x26{left:390.968933pt;}
.xba{left:397.268000pt;}
.xc6{left:399.592267pt;}
.xad{left:401.910631pt;}
.xc{left:404.481333pt;}
.xf{left:406.298133pt;}
.xb5{left:409.863346pt;}
.x14{left:410.821200pt;}
.x13{left:420.361200pt;}
.x73{left:423.839200pt;}
.x62{left:425.195867pt;}
.x9{left:427.078800pt;}
.x28{left:429.718933pt;}
.x15{left:433.561200pt;}
.x92{left:435.570267pt;}
.x10{left:436.538133pt;}
.x27{left:439.258933pt;}
.x9e{left:443.536000pt;}
.xc3{left:446.074183pt;}
.x95{left:447.875200pt;}
.x79{left:448.916133pt;}
.x93{left:450.576667pt;}
.x29{left:452.458933pt;}
.x54{left:455.654400pt;}
.x8{left:457.318800pt;}
.xb6{left:461.207718pt;}
.xa9{left:465.305973pt;}
.x94{left:466.875867pt;}
.x76{left:467.915467pt;}
.x9a{left:468.905867pt;}
.x55{left:470.946267pt;}
.x5c{left:472.933333pt;}
.xbd{left:477.563200pt;}
.x77{left:482.606400pt;}
.x9b{left:483.596800pt;}
.x96{left:486.142533pt;}
.x5d{left:487.624267pt;}
.xa{left:488.638800pt;}
.xa3{left:491.420400pt;}
.xb8{left:493.398267pt;}
.xb0{left:496.041162pt;}
.xa8{left:498.360975pt;}
.xaa{left:499.904607pt;}
.x5a{left:500.909600pt;}
.xb7{left:503.279656pt;}
.x8e{left:504.228933pt;}
.xae{left:505.284739pt;}
.xa6{left:506.366567pt;}
.x7a{left:507.361733pt;}
.xac{left:510.624860pt;}
.xa2{left:515.074400pt;}
.x56{left:517.108133pt;}
.x7c{left:520.024667pt;}
.xc7{left:526.142533pt;}
.x5b{left:528.933867pt;}
.x57{left:531.799067pt;}
.x90{left:534.193600pt;}
.x7b{left:535.386133pt;}
.xa5{left:536.557867pt;}
.x7e{left:538.717733pt;}
.xab{left:539.623838pt;}
.x16{left:544.061200pt;}
.x78{left:546.517600pt;}
.x7d{left:549.197333pt;}
.x80{left:561.753467pt;}
.x2a{left:562.958933pt;}
.x7f{left:566.742000pt;}
.x5e{left:574.509467pt;}
.x24{left:589.770933pt;}
.x9f{left:594.525067pt;}
.x97{left:595.985200pt;}
.x5f{left:603.011200pt;}
.x61{left:603.914933pt;}
.x8c{left:606.380133pt;}
.xa0{left:610.122267pt;}
.x2{left:616.324800pt;}
.x8f{left:617.541067pt;}
.x8d{left:621.250800pt;}
.x98{left:624.145600pt;}
.x58{left:631.029067pt;}
.x63{left:641.526800pt;}
.x60{left:643.852133pt;}
.x23{left:647.459200pt;}
.x81{left:650.432533pt;}
.x59{left:659.844267pt;}
.x82{left:661.211867pt;}
.x17{left:664.411200pt;}
.x3b{left:666.356800pt;}
.x91{left:667.457067pt;}
.x2f{left:675.968933pt;}
.x74{left:679.980533pt;}
.x99{left:680.920533pt;}
.x2b{left:683.308933pt;}
.x75{left:694.653333pt;}
.x9c{left:696.955467pt;}
.x9d{left:725.669333pt;}
}




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