
    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_14b2f1d26c1032038151fff5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_280dd0c56dfc11f97ee246e4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_ede5e4145957be47691b5d8a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.887000;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_909e7980a16e95ef55b359f5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.430000;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_00ea803a069bc9bc25a52b2a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.704000;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_4f8533e951b74ded775551a8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_62d7b94d20e60cab4a991801.woff')format("woff");}.ff7{font-family:ff7;line-height:0.706000;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_cbb5f9462ed7db26c907663f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_ea95f3d0f622b5827c72d5ae.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_437173a8a7f1abd3bc0b0cd3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.907000;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_a5983dfc7b303e8431a6c5a6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.430000;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_30e8e2c569d0e963cdc945ad.woff')format("woff");}.ffc{font-family:ffc;line-height:0.909000;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_23e3b586575a73bcc211738d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.887000;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:ffe;src:url('chunks/assets/font_0d58b09e86aad658fbede5bb.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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:fff;src:url('chunks/assets/font_a114e871f67cec123f80c425.woff')format("woff");}.fff{font-family:fff;line-height:0.951000;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:ff10;src:url('chunks/assets/font_01daa87f919024ccce58a22c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0f2f3d0aeb72de77dce34e8e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.482000;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:ff12;src:url('chunks/assets/font_c6afb5dd4233b0a2e2f220f0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.429000;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:ff13;src:url('chunks/assets/font_d38002a165ddc17f4100f416.woff')format("woff");}.ff13{font-family:ff13;line-height:0.664000;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:ff14;src:url('chunks/assets/font_4fe4a9cb758aea5fa4fd330d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.722000;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:ff15;src:url('chunks/assets/font_cf4e959acc69a965cde420d0.woff')format("woff");}.ff15{font-family:ff15;line-height:0.390000;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:ff16;src:url('chunks/assets/font_19bde9d309cd5b44d972dfda.woff')format("woff");}.ff16{font-family:ff16;line-height:0.923000;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:ff17;src:url('chunks/assets/font_6d3d9589102b93586def3a67.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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:ff18;src:url('chunks/assets/font_9b0cd1c091e08069d73493aa.woff')format("woff");}.ff18{font-family:ff18;line-height:1.000000;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:ff19;src:url('chunks/assets/font_53cd351363d5325440a11810.woff')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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:-21.690000px;}
.v3{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.836283px;}
.v6{vertical-align:21.690000px;}
.v1{vertical-align:26.034000px;}
.v4{vertical-align:35.862000px;}
.lsa{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000538px;}
.lsf{letter-spacing:0.002338px;}
.lsc{letter-spacing:0.004200px;}
.lse{letter-spacing:0.005023px;}
.ls1{letter-spacing:2.986053px;}
.ls9{letter-spacing:2.986118px;}
.ls1c{letter-spacing:6.312538px;}
.ls25{letter-spacing:6.432538px;}
.ls1b{letter-spacing:8.112538px;}
.ls1a{letter-spacing:9.962338px;}
.ls36{letter-spacing:14.310538px;}
.ls10{letter-spacing:14.831023px;}
.ls1f{letter-spacing:15.080338px;}
.ls35{letter-spacing:16.190823px;}
.ls2b{letter-spacing:16.596300px;}
.ls2a{letter-spacing:16.596450px;}
.ls29{letter-spacing:16.602300px;}
.ls28{letter-spacing:16.602450px;}
.ls23{letter-spacing:16.677392px;}
.ls26{letter-spacing:17.215373px;}
.ls2d{letter-spacing:17.228338px;}
.ls1e{letter-spacing:17.275148px;}
.ls11{letter-spacing:17.399023px;}
.ls43{letter-spacing:18.649987px;}
.lsb{letter-spacing:19.905275px;}
.ls3c{letter-spacing:19.922338px;}
.ls27{letter-spacing:19.965050px;}
.ls18{letter-spacing:20.263928px;}
.lsd{letter-spacing:20.501023px;}
.ls44{letter-spacing:20.570338px;}
.ls2c{letter-spacing:20.742133px;}
.ls3a{letter-spacing:20.744338px;}
.ls3b{letter-spacing:20.750338px;}
.ls34{letter-spacing:21.314823px;}
.ls2f{letter-spacing:21.339889px;}
.ls3e{letter-spacing:21.488338px;}
.ls14{letter-spacing:21.519216px;}
.ls19{letter-spacing:21.698543px;}
.ls32{letter-spacing:21.944338px;}
.ls7{letter-spacing:22.085251px;}
.ls38{letter-spacing:22.400338px;}
.ls13{letter-spacing:22.730338px;}
.ls31{letter-spacing:22.754338px;}
.ls30{letter-spacing:22.760338px;}
.ls5{letter-spacing:22.910017px;}
.ls6{letter-spacing:22.910177px;}
.ls12{letter-spacing:23.432035px;}
.ls41{letter-spacing:24.029791px;}
.ls8{letter-spacing:25.524181px;}
.ls37{letter-spacing:25.844823px;}
.ls24{letter-spacing:25.928338px;}
.ls20{letter-spacing:26.144338px;}
.ls45{letter-spacing:26.480591px;}
.ls3d{letter-spacing:27.197898px;}
.ls16{letter-spacing:27.517409px;}
.ls17{letter-spacing:27.734525px;}
.ls3f{letter-spacing:28.273859px;}
.ls1d{letter-spacing:28.333634px;}
.ls39{letter-spacing:28.611141px;}
.ls2e{letter-spacing:29.318338px;}
.ls40{letter-spacing:29.648698px;}
.ls22{letter-spacing:29.884178px;}
.ls42{letter-spacing:29.890178px;}
.ls33{letter-spacing:31.784338px;}
.ls21{letter-spacing:133.377500px;}
.ls2{letter-spacing:152.766479px;}
.ls4{letter-spacing:173.430960px;}
.ls3{letter-spacing:173.434053px;}
.ls0{letter-spacing:181.144053px;}
.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;}
}
.ws3b{word-spacing:-16.605662px;}
.ws13{word-spacing:-15.359443px;}
.ws7d{word-spacing:-15.278643px;}
.ws87{word-spacing:-3.156152px;}
.ws4e{word-spacing:-3.036600px;}
.ws4a{word-spacing:-2.737722px;}
.wsc3{word-spacing:-2.729952px;}
.ws107{word-spacing:-2.677947px;}
.ws68{word-spacing:-2.618171px;}
.wscc{word-spacing:-2.319293px;}
.ws126{word-spacing:-2.139966px;}
.ws28{word-spacing:-2.080191px;}
.wsa{word-spacing:-2.017440px;}
.ws131{word-spacing:-1.841088px;}
.ws3a{word-spacing:-1.781313px;}
.ws111{word-spacing:-1.542210px;}
.wsa1{word-spacing:-1.482435px;}
.ws142{word-spacing:-1.422659px;}
.wsdb{word-spacing:-1.362884px;}
.ws77{word-spacing:-1.183557px;}
.ws10e{word-spacing:-1.123781px;}
.ws2c{word-spacing:-0.944454px;}
.ws41{word-spacing:-0.884679px;}
.wsd1{word-spacing:-0.824903px;}
.wsff{word-spacing:-0.765128px;}
.ws57{word-spacing:-0.705352px;}
.ws9b{word-spacing:-0.645576px;}
.wsd0{word-spacing:-0.585801px;}
.ws50{word-spacing:-0.526025px;}
.ws165{word-spacing:-0.466250px;}
.wscd{word-spacing:-0.406474px;}
.ws125{word-spacing:-0.346698px;}
.ws78{word-spacing:-0.286923px;}
.wsb5{word-spacing:-0.167372px;}
.ws55{word-spacing:-0.107596px;}
.ws166{word-spacing:-0.086077px;}
.ws39{word-spacing:-0.059776px;}
.wse3{word-spacing:-0.049564px;}
.ws72{word-spacing:-0.047820px;}
.ws27{word-spacing:0.000000px;}
.ws1f{word-spacing:0.011955px;}
.wsce{word-spacing:0.071731px;}
.ws67{word-spacing:0.131506px;}
.wsd7{word-spacing:0.150299px;}
.wsb2{word-spacing:0.191282px;}
.ws8{word-spacing:0.242093px;}
.ws141{word-spacing:0.251058px;}
.ws13a{word-spacing:0.310833px;}
.ws5f{word-spacing:0.370609px;}
.wsd6{word-spacing:0.430384px;}
.ws54{word-spacing:0.490160px;}
.wsc2{word-spacing:0.502115px;}
.ws22{word-spacing:0.549936px;}
.ws13d{word-spacing:0.561891px;}
.wsd9{word-spacing:0.609711px;}
.ws2e{word-spacing:0.669487px;}
.ws6b{word-spacing:0.729262px;}
.ws44{word-spacing:0.789038px;}
.ws15c{word-spacing:0.848814px;}
.ws153{word-spacing:0.908589px;}
.ws104{word-spacing:1.028140px;}
.ws23{word-spacing:1.087916px;}
.ws12a{word-spacing:1.147291px;}
.ws43{word-spacing:1.147692px;}
.ws128{word-spacing:1.190224px;}
.ws12c{word-spacing:1.207467px;}
.wsd{word-spacing:1.264262px;}
.wsf8{word-spacing:1.267243px;}
.ws5e{word-spacing:1.327018px;}
.ws5d{word-spacing:1.386794px;}
.ws1c{word-spacing:1.446570px;}
.ws34{word-spacing:1.506345px;}
.ws51{word-spacing:1.566121px;}
.ws52{word-spacing:1.625896px;}
.ws46{word-spacing:1.685672px;}
.ws21{word-spacing:1.745448px;}
.ws84{word-spacing:1.805223px;}
.ws4f{word-spacing:1.864999px;}
.ws14f{word-spacing:2.044326px;}
.ws85{word-spacing:2.104101px;}
.ws2d{word-spacing:2.163877px;}
.ws139{word-spacing:2.223652px;}
.ws9a{word-spacing:2.283428px;}
.ws89{word-spacing:2.343204px;}
.ws6{word-spacing:2.462755px;}
.ws56{word-spacing:2.522530px;}
.ws25{word-spacing:2.582306px;}
.ws79{word-spacing:2.642082px;}
.ws164{word-spacing:2.654037px;}
.ws6a{word-spacing:2.701857px;}
.ws97{word-spacing:2.761633px;}
.ws20{word-spacing:2.821408px;}
.ws74{word-spacing:2.881184px;}
.ws4d{word-spacing:2.940960px;}
.wsb4{word-spacing:3.000735px;}
.wse1{word-spacing:3.012690px;}
.wsbf{word-spacing:3.060511px;}
.wsc4{word-spacing:3.074493px;}
.ws106{word-spacing:3.120286px;}
.ws9{word-spacing:3.147206px;}
.ws2f{word-spacing:3.239838px;}
.wsb3{word-spacing:3.251793px;}
.ws5{word-spacing:3.299613px;}
.ws2b{word-spacing:3.359389px;}
.ws14d{word-spacing:3.371344px;}
.ws3c{word-spacing:3.419164px;}
.wsf2{word-spacing:3.478940px;}
.ws15e{word-spacing:3.538716px;}
.wsaa{word-spacing:3.598491px;}
.ws2a{word-spacing:3.658267px;}
.wsbe{word-spacing:3.670222px;}
.ws8a{word-spacing:3.718042px;}
.wsf7{word-spacing:3.777818px;}
.wsb{word-spacing:3.792787px;}
.wsc6{word-spacing:3.837594px;}
.ws15d{word-spacing:3.849549px;}
.ws38{word-spacing:3.897369px;}
.ws66{word-spacing:3.957145px;}
.ws33{word-spacing:4.016920px;}
.ws40{word-spacing:4.076696px;}
.ws13c{word-spacing:4.088651px;}
.ws75{word-spacing:4.136472px;}
.ws152{word-spacing:4.148427px;}
.ws156{word-spacing:4.196247px;}
.ws37{word-spacing:4.256023px;}
.ws35{word-spacing:4.315798px;}
.ws24{word-spacing:4.375574px;}
.ws138{word-spacing:4.409042px;}
.ws105{word-spacing:4.435350px;}
.ws53{word-spacing:4.495125px;}
.ws115{word-spacing:4.554901px;}
.ws6c{word-spacing:4.614676px;}
.ws14e{word-spacing:4.626631px;}
.ws10d{word-spacing:4.670493px;}
.ws90{word-spacing:4.674452px;}
.wsf1{word-spacing:4.734228px;}
.ws7a{word-spacing:4.794003px;}
.ws83{word-spacing:4.853779px;}
.ws69{word-spacing:4.913554px;}
.ws30{word-spacing:4.973330px;}
.wsaf{word-spacing:5.033106px;}
.wsed{word-spacing:5.056436px;}
.wsad{word-spacing:5.077012px;}
.wse{word-spacing:5.083949px;}
.wsb0{word-spacing:5.092881px;}
.ws36{word-spacing:5.152657px;}
.ws61{word-spacing:5.212432px;}
.wsdc{word-spacing:5.272208px;}
.ws3e{word-spacing:5.451535px;}
.ws29{word-spacing:5.511310px;}
.ws7f{word-spacing:5.553892px;}
.ws135{word-spacing:5.569502px;}
.ws17{word-spacing:5.571086px;}
.wsb6{word-spacing:5.630138px;}
.wsb8{word-spacing:5.630862px;}
.wsa7{word-spacing:5.690637px;}
.ws114{word-spacing:5.750413px;}
.wse7{word-spacing:5.782436px;}
.ws108{word-spacing:5.798546px;}
.ws9c{word-spacing:5.810188px;}
.wsbb{word-spacing:5.869964px;}
.ws15f{word-spacing:5.881919px;}
.ws8e{word-spacing:5.929740px;}
.wsd8{word-spacing:5.987452px;}
.wscb{word-spacing:5.989515px;}
.ws71{word-spacing:6.049291px;}
.ws151{word-spacing:6.061246px;}
.ws148{word-spacing:6.109066px;}
.ws112{word-spacing:6.121021px;}
.ws101{word-spacing:6.168842px;}
.wsa0{word-spacing:6.228618px;}
.ws49{word-spacing:6.288393px;}
.ws103{word-spacing:6.348169px;}
.wsba{word-spacing:6.407944px;}
.ws8b{word-spacing:6.479675px;}
.ws116{word-spacing:6.527496px;}
.wse2{word-spacing:6.578139px;}
.ws95{word-spacing:6.587271px;}
.ws10a{word-spacing:6.647047px;}
.ws31{word-spacing:6.706822px;}
.ws8f{word-spacing:6.718777px;}
.wseb{word-spacing:6.766598px;}
.ws58{word-spacing:6.826374px;}
.wsac{word-spacing:6.886149px;}
.wsc0{word-spacing:6.906294px;}
.ws9f{word-spacing:6.945925px;}
.ws12b{word-spacing:6.999931px;}
.ws4c{word-spacing:7.005700px;}
.ws1d{word-spacing:7.065476px;}
.ws137{word-spacing:7.077431px;}
.wse9{word-spacing:7.125252px;}
.ws62{word-spacing:7.185027px;}
.ws11{word-spacing:7.235885px;}
.ws92{word-spacing:7.244803px;}
.wsca{word-spacing:7.304578px;}
.ws13b{word-spacing:7.316533px;}
.ws7{word-spacing:7.343482px;}
.ws32{word-spacing:7.364354px;}
.ws91{word-spacing:7.376309px;}
.ws129{word-spacing:7.409793px;}
.ws48{word-spacing:7.424130px;}
.wsef{word-spacing:7.467180px;}
.ws1e{word-spacing:7.483905px;}
.ws7c{word-spacing:7.543681px;}
.wsf9{word-spacing:7.615411px;}
.ws59{word-spacing:7.663232px;}
.wsee{word-spacing:7.675187px;}
.wsae{word-spacing:7.734963px;}
.ws13f{word-spacing:7.782783px;}
.ws63{word-spacing:7.842559px;}
.ws94{word-spacing:7.902334px;}
.ws109{word-spacing:7.914289px;}
.ws149{word-spacing:7.962110px;}
.ws12{word-spacing:7.989062px;}
.wsb9{word-spacing:8.081661px;}
.ws3f{word-spacing:8.141437px;}
.ws136{word-spacing:8.153392px;}
.wsf4{word-spacing:8.213167px;}
.wsb7{word-spacing:8.272943px;}
.wsa2{word-spacing:8.320764px;}
.wse8{word-spacing:8.332719px;}
.wsf{word-spacing:8.365651px;}
.ws18{word-spacing:8.380539px;}
.ws60{word-spacing:8.500090px;}
.ws15b{word-spacing:8.559866px;}
.ws100{word-spacing:8.679417px;}
.ws147{word-spacing:8.691372px;}
.ws64{word-spacing:8.798968px;}
.ws1b{word-spacing:8.858744px;}
.ws42{word-spacing:8.918520px;}
.ws1a{word-spacing:8.978295px;}
.ws117{word-spacing:9.050026px;}
.wsa9{word-spacing:9.097846px;}
.ws140{word-spacing:9.137727px;}
.ws65{word-spacing:9.157622px;}
.ws19{word-spacing:9.277173px;}
.ws73{word-spacing:9.336949px;}
.wsa3{word-spacing:9.456500px;}
.ws154{word-spacing:9.516276px;}
.wsa6{word-spacing:9.635827px;}
.ws14a{word-spacing:9.647782px;}
.wsa5{word-spacing:9.695602px;}
.ws93{word-spacing:9.707557px;}
.wsdd{word-spacing:9.755378px;}
.ws3d{word-spacing:9.815154px;}
.wse0{word-spacing:9.862974px;}
.ws155{word-spacing:9.873841px;}
.ws12f{word-spacing:9.874929px;}
.ws15a{word-spacing:9.890989px;}
.ws12d{word-spacing:9.903115px;}
.ws9d{word-spacing:9.934705px;}
.ws157{word-spacing:9.994480px;}
.wsf5{word-spacing:10.054256px;}
.wsbd{word-spacing:10.066211px;}
.wsda{word-spacing:10.173807px;}
.wsd4{word-spacing:10.228595px;}
.ws8d{word-spacing:10.228639px;}
.ws5b{word-spacing:10.233583px;}
.ws13e{word-spacing:10.245538px;}
.wsd2{word-spacing:10.245892px;}
.ws10b{word-spacing:10.293358px;}
.ws5c{word-spacing:10.353134px;}
.ws76{word-spacing:10.472685px;}
.wsfd{word-spacing:10.532461px;}
.wscf{word-spacing:10.544416px;}
.ws113{word-spacing:10.592236px;}
.ws82{word-spacing:10.652012px;}
.wsc5{word-spacing:10.663967px;}
.wsf3{word-spacing:10.711788px;}
.ws80{word-spacing:10.831339px;}
.wse5{word-spacing:10.862730px;}
.wsec{word-spacing:10.896664px;}
.ws47{word-spacing:10.950890px;}
.ws88{word-spacing:11.070441px;}
.ws150{word-spacing:11.130217px;}
.ws132{word-spacing:11.189992px;}
.wsc1{word-spacing:11.255452px;}
.ws10f{word-spacing:11.278497px;}
.wsb1{word-spacing:11.309544px;}
.wsa8{word-spacing:11.369319px;}
.wsc{word-spacing:11.378362px;}
.wsf6{word-spacing:11.429095px;}
.ws7b{word-spacing:11.608422px;}
.wse6{word-spacing:11.622664px;}
.ws124{word-spacing:11.668197px;}
.wsbc{word-spacing:11.727973px;}
.ws7e{word-spacing:11.795943px;}
.ws102{word-spacing:11.967075px;}
.ws143{word-spacing:12.146402px;}
.ws130{word-spacing:12.158357px;}
.ws10{word-spacing:12.239136px;}
.ws5a{word-spacing:12.325729px;}
.ws14b{word-spacing:12.385504px;}
.ws162{word-spacing:12.445280px;}
.ws8c{word-spacing:12.457235px;}
.wsab{word-spacing:12.505056px;}
.ws118{word-spacing:12.577665px;}
.ws127{word-spacing:12.684382px;}
.wsfa{word-spacing:12.803934px;}
.ws96{word-spacing:12.828294px;}
.wsa4{word-spacing:12.923485px;}
.ws4b{word-spacing:12.940141px;}
.ws9e{word-spacing:12.983260px;}
.wse4{word-spacing:12.995215px;}
.ws110{word-spacing:13.001452px;}
.ws133{word-spacing:13.043036px;}
.ws146{word-spacing:13.114767px;}
.wsfe{word-spacing:13.222363px;}
.wsea{word-spacing:13.373943px;}
.wsf0{word-spacing:13.687665px;}
.ws145{word-spacing:13.879894px;}
.ws98{word-spacing:14.067974px;}
.ws158{word-spacing:14.411636px;}
.ws163{word-spacing:14.489605px;}
.ws160{word-spacing:14.776528px;}
.wsfb{word-spacing:14.848259px;}
.wsc9{word-spacing:14.955855px;}
.ws161{word-spacing:15.493836px;}
.wsd5{word-spacing:16.064493px;}
.wsd3{word-spacing:16.067452px;}
.ws10c{word-spacing:16.097452px;}
.ws12e{word-spacing:16.145943px;}
.ws159{word-spacing:16.282873px;}
.ws26{word-spacing:16.928492px;}
.ws14c{word-spacing:17.287104px;}
.ws45{word-spacing:17.334368px;}
.ws134{word-spacing:19.305174px;}
.ws144{word-spacing:19.858814px;}
.wsdf{word-spacing:21.468800px;}
.wsde{word-spacing:21.472383px;}
.ws99{word-spacing:22.834279px;}
.ws119{word-spacing:22.894055px;}
.ws2{word-spacing:23.301830px;}
.ws4{word-spacing:23.305544px;}
.ws1{word-spacing:23.312640px;}
.wsc8{word-spacing:26.492546px;}
.ws86{word-spacing:26.827469px;}
.ws15{word-spacing:30.040943px;}
.ws0{word-spacing:31.091012px;}
.ws16{word-spacing:32.192873px;}
.ws14{word-spacing:37.960045px;}
.wsfc{word-spacing:38.447666px;}
.wsc7{word-spacing:74.062620px;}
.ws121{word-spacing:84.213449px;}
.ws6d{word-spacing:90.393369px;}
.ws81{word-spacing:96.750773px;}
.ws11e{word-spacing:98.157449px;}
.ws120{word-spacing:113.103449px;}
.ws11f{word-spacing:142.036469px;}
.ws11a{word-spacing:144.147415px;}
.ws122{word-spacing:158.579060px;}
.ws6e{word-spacing:160.051677px;}
.ws11b{word-spacing:173.525060px;}
.ws70{word-spacing:177.487138px;}
.ws6f{word-spacing:179.558938px;}
.ws3{word-spacing:221.482818px;}
.ws123{word-spacing:241.978469px;}
.ws11d{word-spacing:244.577060px;}
.ws11c{word-spacing:271.860269px;}
._8f{margin-left:-29.947576px;}
._8e{margin-left:-26.478437px;}
._0{margin-left:-8.056807px;}
._62{margin-left:-6.850297px;}
._2{margin-left:-5.799418px;}
._6{margin-left:-4.323217px;}
._1{margin-left:-2.788895px;}
._5{margin-left:-1.673717px;}
._7b{width:1.003594px;}
._3{width:2.008474px;}
._e{width:3.120307px;}
._3f{width:5.144425px;}
._65{width:6.670839px;}
._64{width:8.143949px;}
._46{width:12.519508px;}
._19{width:15.242778px;}
._14{width:16.466048px;}
._1a{width:17.498544px;}
._66{width:18.653326px;}
._44{width:19.966235px;}
._13{width:21.949647px;}
._7{width:23.704506px;}
._12{width:25.117211px;}
._8{width:26.905166px;}
._a{width:28.646060px;}
._17{width:30.546516px;}
._4{width:32.055224px;}
._15{width:33.414560px;}
._43{width:34.992623px;}
._d{width:36.116659px;}
._16{width:38.353477px;}
._b{width:40.099153px;}
._10{width:42.242036px;}
._11{width:43.397086px;}
._18{width:45.296357px;}
._60{width:46.570303px;}
._45{width:48.020217px;}
._9{width:49.267368px;}
._8c{width:50.629933px;}
._c{width:51.807826px;}
._63{width:53.582834px;}
._61{width:55.591308px;}
._90{width:59.476722px;}
._8d{width:67.227087px;}
._49{width:74.250182px;}
._42{width:80.697600px;}
._5f{width:93.085133px;}
._f{width:96.836850px;}
._3d{width:98.200077px;}
._48{width:99.363078px;}
._7d{width:104.437780px;}
._54{width:108.032933px;}
._1c{width:112.760672px;}
._3c{width:113.998741px;}
._58{width:115.865185px;}
._4d{width:123.353338px;}
._56{width:128.792933px;}
._4c{width:130.778878px;}
._5e{width:132.235858px;}
._68{width:133.975780px;}
._34{width:135.299049px;}
._55{width:142.727185px;}
._4a{width:146.642933px;}
._47{width:147.833380px;}
._2d{width:150.504600px;}
._4b{width:154.078773px;}
._41{width:156.840305px;}
._33{width:157.972548px;}
._7f{width:159.406501px;}
._28{width:161.391353px;}
._57{width:163.445474px;}
._4e{width:168.454738px;}
._38{width:170.428800px;}
._85{width:174.697077px;}
._3e{width:177.496019px;}
._40{width:178.569054px;}
._20{width:181.222800px;}
._24{width:184.546800px;}
._39{width:188.292988px;}
._21{width:189.621957px;}
._51{width:192.155550px;}
._27{width:194.092800px;}
._59{width:198.244710px;}
._2a{width:199.674150px;}
._81{width:203.390109px;}
._5c{width:206.604606px;}
._8b{width:211.232793px;}
._29{width:213.434151px;}
._36{width:217.728606px;}
._1b{width:219.490320px;}
._22{width:221.890492px;}
._1f{width:228.118200px;}
._6d{width:232.838614px;}
._2b{width:235.923533px;}
._6b{width:240.339010px;}
._2c{width:243.064200px;}
._37{width:250.789851px;}
._3a{width:255.190819px;}
._3b{width:256.872988px;}
._82{width:259.575931px;}
._35{width:270.140181px;}
._52{width:273.528600px;}
._2f{width:276.786409px;}
._23{width:285.498974px;}
._25{width:287.385004px;}
._4f{width:288.468600px;}
._26{width:292.561971px;}
._1e{width:296.282054px;}
._5d{width:303.084565px;}
._31{width:309.993078px;}
._5a{width:318.358200px;}
._1d{width:322.524353px;}
._53{width:325.560600px;}
._70{width:335.149089px;}
._50{width:340.508400px;}
._2e{width:350.368728px;}
._5b{width:355.454400px;}
._6a{width:384.584952px;}
._80{width:386.167089px;}
._30{width:396.015957px;}
._32{width:408.879353px;}
._6f{width:440.775200px;}
._7a{width:466.018436px;}
._7e{width:491.793200px;}
._6c{width:504.185157px;}
._67{width:513.820983px;}
._6e{width:542.353062px;}
._78{width:557.977206px;}
._77{width:570.746472px;}
._89{width:576.982436px;}
._75{width:579.730744px;}
._7c{width:594.376983px;}
._69{width:601.649272px;}
._79{width:609.947310px;}
._74{width:611.285099px;}
._72{width:612.958816px;}
._86{width:630.748744px;}
._76{width:634.358467px;}
._71{width:635.812185px;}
._73{width:642.165174px;}
._88{width:660.965310px;}
._83{width:663.976816px;}
._87{width:692.872341px;}
._84{width:753.129174px;}
._8a{width:800.620019px;}
.fc18{color:rgb(0,89,89);}
.fc17{color:rgb(178,89,0);}
.fc14{color:rgb(229,16,16);}
.fc13{color:rgb(33,224,19);}
.fc12{color:rgb(220,205,183);}
.fc11{color:rgb(72,126,139);}
.fc10{color:rgb(182,18,220);}
.fce{color:rgb(195,135,246);}
.fcd{color:rgb(185,115,3);}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(255,255,0);}
.fc19{color:rgb(89,89,89);}
.fc16{color:rgb(255,20,147);}
.fc4{color:rgb(245,74,0);}
.fc7{color:rgb(0,255,250);}
.fc8{color:rgb(0,183,235);}
.fc3{color:rgb(77,133,46);}
.fc5{color:rgb(227,113,24);}
.fc1a{color:rgb(0,0,153);}
.fcf{color:rgb(5,17,142);}
.fc6{color:rgb(250,206,153);}
.fc15{color:rgb(242,93,242);}
.fcc{color:rgb(122,73,10);}
.fca{color:rgb(81,6,178);}
.fc1{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fcb{color:rgb(14,122,254);}
.fs7{font-size:35.865600px;}
.fs9{font-size:38.976962px;}
.fsa{font-size:39.511299px;}
.fsb{font-size:40.265323px;}
.fsd{font-size:40.267100px;}
.fs3{font-size:41.842800px;}
.fs8{font-size:46.063683px;}
.fsc{font-size:47.588388px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2f{bottom:40.207500px;}
.y9a{bottom:85.039500px;}
.yf6{bottom:86.809500px;}
.y6c{bottom:86.886000px;}
.y228{bottom:88.504500px;}
.y1e6{bottom:89.481000px;}
.y116{bottom:90.100500px;}
.y147{bottom:90.994500px;}
.y2e{bottom:91.215000px;}
.y1ff{bottom:92.148000px;}
.y1aa{bottom:92.403000px;}
.y151{bottom:94.372500px;}
.yaf{bottom:97.529135px;}
.y1da{bottom:98.764500px;}
.y99{bottom:102.972000px;}
.yf5{bottom:104.742000px;}
.y6b{bottom:104.818500px;}
.y227{bottom:106.438500px;}
.y1e5{bottom:107.413500px;}
.y115{bottom:108.034500px;}
.y146{bottom:108.927000px;}
.y1fe{bottom:110.080500px;}
.y1a9{bottom:110.335500px;}
.y24a{bottom:110.796000px;}
.y150{bottom:112.305000px;}
.y2d{bottom:113.289000px;}
.yab{bottom:115.406773px;}
.y1d9{bottom:116.697000px;}
.y98{bottom:120.904500px;}
.yae{bottom:121.684095px;}
.yf4{bottom:122.674500px;}
.y6a{bottom:122.751000px;}
.y1e4{bottom:125.346000px;}
.y114{bottom:125.967000px;}
.y145{bottom:126.859500px;}
.y1fd{bottom:128.013000px;}
.y1a8{bottom:128.268000px;}
.y249{bottom:128.728500px;}
.y14f{bottom:130.237500px;}
.y2c{bottom:131.221500px;}
.y1d8{bottom:134.629500px;}
.y226{bottom:136.326000px;}
.ybf{bottom:138.837000px;}
.yf3{bottom:140.607000px;}
.y69{bottom:140.683500px;}
.y1e3{bottom:143.278500px;}
.y113{bottom:143.899500px;}
.y144{bottom:144.792000px;}
.y1a7{bottom:146.200500px;}
.y14e{bottom:148.171500px;}
.y2b{bottom:149.154000px;}
.y97{bottom:150.259500px;}
.y1d7{bottom:152.563500px;}
.y225{bottom:154.258500px;}
.ybe{bottom:156.769500px;}
.y184{bottom:157.998000px;}
.yf2{bottom:158.541000px;}
.y68{bottom:158.616000px;}
.y248{bottom:158.617500px;}
.y1fc{bottom:160.890000px;}
.y1e2{bottom:161.212500px;}
.y112{bottom:161.832000px;}
.y143{bottom:162.724500px;}
.y1a6{bottom:164.134500px;}
.y14d{bottom:166.104000px;}
.y2a{bottom:167.088000px;}
.y1d6{bottom:170.496000px;}
.ybd{bottom:174.703500px;}
.y183{bottom:175.930500px;}
.yf1{bottom:176.473500px;}
.y67{bottom:176.550000px;}
.y1fb{bottom:178.822500px;}
.y1e1{bottom:179.145000px;}
.y111{bottom:179.764500px;}
.y96{bottom:179.880000px;}
.y142{bottom:180.657000px;}
.y1a5{bottom:182.067000px;}
.y14c{bottom:184.036500px;}
.y224{bottom:184.146000px;}
.y29{bottom:185.020500px;}
.y1d5{bottom:188.428500px;}
.ybc{bottom:192.636000px;}
.yf0{bottom:194.406000px;}
.y66{bottom:194.482500px;}
.y1fa{bottom:196.755000px;}
.y1e0{bottom:197.077500px;}
.y110{bottom:197.698500px;}
.y95{bottom:197.812500px;}
.y141{bottom:198.591000px;}
.y1a4{bottom:199.999500px;}
.y14b{bottom:201.969000px;}
.y223{bottom:202.080000px;}
.y28{bottom:202.953000px;}
.y1d4{bottom:206.361000px;}
.y247{bottom:206.437500px;}
.y182{bottom:208.662000px;}
.ybb{bottom:210.568500px;}
.yef{bottom:212.338500px;}
.y65{bottom:212.415000px;}
.y1f9{bottom:214.687500px;}
.y1df{bottom:215.010000px;}
.y10f{bottom:215.631000px;}
.y140{bottom:216.523500px;}
.y1a3{bottom:217.932000px;}
.y14a{bottom:219.901500px;}
.y222{bottom:220.012500px;}
.y27{bottom:220.885500px;}
.y1d3{bottom:224.293500px;}
.y246{bottom:224.370000px;}
.y94{bottom:227.434500px;}
.yba{bottom:228.501000px;}
.yee{bottom:230.271000px;}
.y64{bottom:230.347500px;}
.y1f8{bottom:232.620000px;}
.y10e{bottom:233.563500px;}
.y13f{bottom:234.456000px;}
.ya9{bottom:234.549001px;}
.y1a2{bottom:235.864500px;}
.y149{bottom:237.834000px;}
.y26{bottom:238.818000px;}
.y1d2{bottom:242.227500px;}
.y245{bottom:242.302500px;}
.y93{bottom:245.367000px;}
.yb9{bottom:246.433500px;}
.yed{bottom:248.205000px;}
.y63{bottom:248.280000px;}
.y221{bottom:249.900000px;}
.y1f7{bottom:250.554000px;}
.y10d{bottom:251.496000px;}
.y13e{bottom:252.388500px;}
.y1a1{bottom:253.797000px;}
.y25{bottom:256.750500px;}
.y181{bottom:258.081000px;}
.y1d1{bottom:260.160000px;}
.y244{bottom:260.236500px;}
.yb8{bottom:264.367500px;}
.y1de{bottom:265.222500px;}
.yec{bottom:266.137500px;}
.y62{bottom:266.214000px;}
.y220{bottom:267.832500px;}
.y1f6{bottom:268.486500px;}
.y10c{bottom:269.428500px;}
.y24{bottom:274.684500px;}
.y92{bottom:274.987500px;}
.y180{bottom:276.013500px;}
.y1d0{bottom:278.092500px;}
.y13d{bottom:279.972000px;}
.y1a0{bottom:281.382000px;}
.yb7{bottom:282.300000px;}
.y1dd{bottom:283.155000px;}
.yeb{bottom:284.070000px;}
.y61{bottom:284.146500px;}
.y1f5{bottom:286.419000px;}
.y10b{bottom:287.361000px;}
.y148{bottom:288.046500px;}
.y243{bottom:290.124000px;}
.y23{bottom:292.617000px;}
.y91{bottom:292.920000px;}
.y17f{bottom:293.947500px;}
.yb6{bottom:300.232500px;}
.y21f{bottom:300.564000px;}
.y1dc{bottom:301.087500px;}
.yea{bottom:302.002500px;}
.y60{bottom:302.079000px;}
.y1f4{bottom:304.351500px;}
.y10a{bottom:305.295000px;}
.y242{bottom:308.056500px;}
.yad{bottom:309.623406px;}
.y22{bottom:310.549500px;}
.y17e{bottom:311.880000px;}
.y171{bottom:313.906500px;}
.yaa{bottom:316.134183px;}
.y1cf{bottom:317.029500px;}
.yb5{bottom:318.165000px;}
.y1db{bottom:319.020000px;}
.ye9{bottom:319.935000px;}
.y5f{bottom:320.011500px;}
.y13c{bottom:321.805500px;}
.y1f3{bottom:322.284000px;}
.y90{bottom:322.542000px;}
.y19f{bottom:323.214000px;}
.y109{bottom:323.227500px;}
.y21{bottom:328.482000px;}
.y17d{bottom:329.812500px;}
.y170{bottom:331.839000px;}
.ye8{bottom:337.867500px;}
.y5e{bottom:337.944000px;}
.yac{bottom:338.601284px;}
.y1ce{bottom:339.147000px;}
.y13b{bottom:339.738000px;}
.y1f2{bottom:340.216500px;}
.ya8{bottom:341.042575px;}
.y19e{bottom:341.146500px;}
.y108{bottom:341.160000px;}
.yb4{bottom:345.748500px;}
.y20{bottom:346.414500px;}
.y17c{bottom:347.745000px;}
.y21e{bottom:349.983000px;}
.y8f{bottom:352.162500px;}
.ye7{bottom:355.801500px;}
.y5d{bottom:355.876500px;}
.y241{bottom:355.878000px;}
.y13a{bottom:357.670500px;}
.y1cd{bottom:357.676500px;}
.y19d{bottom:359.080500px;}
.y107{bottom:359.092500px;}
.y16f{bottom:361.219500px;}
.y1f{bottom:364.347000px;}
.y17b{bottom:365.677500px;}
.y21d{bottom:367.915500px;}
.y8e{bottom:370.095000px;}
.y1f1{bottom:372.948000px;}
.ye6{bottom:373.734000px;}
.y5c{bottom:373.810500px;}
.y139{bottom:375.603000px;}
.y1cc{bottom:376.207500px;}
.y19c{bottom:377.013000px;}
.y106{bottom:377.025000px;}
.y16e{bottom:379.152000px;}
.y1e{bottom:382.281000px;}
.y17a{bottom:383.610000px;}
.y240{bottom:385.765500px;}
.y260{bottom:390.373500px;}
.ye5{bottom:391.666500px;}
.y5b{bottom:391.743000px;}
.y138{bottom:393.537000px;}
.y1cb{bottom:394.738500px;}
.y19b{bottom:394.945500px;}
.y105{bottom:394.957500px;}
.y8d{bottom:399.450000px;}
.y21c{bottom:400.792500px;}
.y179{bottom:401.544000px;}
.y23f{bottom:403.698000px;}
.yb3{bottom:406.299000px;}
.y25f{bottom:408.306000px;}
.y16d{bottom:408.532500px;}
.y5a{bottom:409.675500px;}
.y19a{bottom:412.878000px;}
.y104{bottom:412.891500px;}
.y1ca{bottom:413.268000px;}
.y1d{bottom:415.012500px;}
.y8c{bottom:417.382500px;}
.y21b{bottom:418.725000px;}
.ye4{bottom:419.250000px;}
.y178{bottom:419.476500px;}
.y23e{bottom:421.630500px;}
.y1f0{bottom:422.367000px;}
.y137{bottom:423.424500px;}
.yb2{bottom:424.231500px;}
.y25e{bottom:426.238500px;}
.y16c{bottom:426.465000px;}
.y59{bottom:427.608000px;}
.y199{bottom:430.810500px;}
.y103{bottom:430.824000px;}
.y1c9{bottom:431.799000px;}
.y8b{bottom:435.315000px;}
.y177{bottom:437.409000px;}
.y23d{bottom:439.563000px;}
.y1ef{bottom:440.299500px;}
.y136{bottom:441.357000px;}
.yb1{bottom:442.164000px;}
.y25d{bottom:444.171000px;}
.y16b{bottom:444.397500px;}
.y58{bottom:445.540500px;}
.y21a{bottom:448.612500px;}
.y198{bottom:448.743000px;}
.y102{bottom:448.756500px;}
.y1c8{bottom:450.330000px;}
.y8a{bottom:453.247500px;}
.y176{bottom:455.341500px;}
.y1ee{bottom:458.233500px;}
.yb0{bottom:460.098000px;}
.ye3{bottom:461.083500px;}
.y25c{bottom:462.105000px;}
.y16a{bottom:462.330000px;}
.y57{bottom:463.473000px;}
.y1c{bottom:464.430000px;}
.y219{bottom:466.546500px;}
.y197{bottom:466.677000px;}
.y101{bottom:466.689000px;}
.y1c7{bottom:468.859500px;}
.y23c{bottom:469.452000px;}
.y89{bottom:471.181500px;}
.y135{bottom:471.244500px;}
.y175{bottom:473.274000px;}
.y1ed{bottom:476.166000px;}
.ye2{bottom:479.016000px;}
.y25b{bottom:480.037500px;}
.y56{bottom:481.407000px;}
.y196{bottom:484.609500px;}
.y100{bottom:484.621500px;}
.y1b{bottom:485.053500px;}
.y23b{bottom:487.384500px;}
.y1c6{bottom:487.390500px;}
.ya7{bottom:487.594500px;}
.y88{bottom:489.114000px;}
.y174{bottom:491.206500px;}
.y169{bottom:493.938000px;}
.y1ec{bottom:494.098500px;}
.y218{bottom:496.434000px;}
.ye1{bottom:496.948500px;}
.y25a{bottom:497.970000px;}
.y55{bottom:499.339500px;}
.y134{bottom:501.133500px;}
.y195{bottom:502.542000px;}
.yff{bottom:502.554000px;}
.y23a{bottom:505.317000px;}
.y1c5{bottom:505.921500px;}
.y87{bottom:507.046500px;}
.y168{bottom:511.870500px;}
.y1eb{bottom:512.031000px;}
.ye0{bottom:514.881000px;}
.y54{bottom:517.272000px;}
.y194{bottom:520.474500px;}
.yfe{bottom:520.488000px;}
.y1c4{bottom:523.854000px;}
.y86{bottom:524.979000px;}
.y1a{bottom:528.960000px;}
.y217{bottom:529.311000px;}
.y1ea{bottom:529.963500px;}
.y259{bottom:530.701500px;}
.y133{bottom:531.021000px;}
.ydf{bottom:532.813500px;}
.y53{bottom:535.204500px;}
.y193{bottom:538.407000px;}
.yfd{bottom:538.420500px;}
.y173{bottom:541.419000px;}
.y1c3{bottom:542.385000px;}
.y85{bottom:542.911500px;}
.y19{bottom:545.398500px;}
.y216{bottom:547.243500px;}
.y132{bottom:548.953500px;}
.y167{bottom:549.702000px;}
.yde{bottom:550.747500px;}
.y52{bottom:553.137000px;}
.y192{bottom:556.339500px;}
.yfc{bottom:556.353000px;}
.y18{bottom:561.837000px;}
.y131{bottom:566.886000px;}
.y166{bottom:567.634500px;}
.ydd{bottom:568.680000px;}
.y51{bottom:571.069500px;}
.y191{bottom:574.273500px;}
.yfb{bottom:574.285500px;}
.y1c2{bottom:575.859000px;}
.y17{bottom:578.275500px;}
.y215{bottom:579.975000px;}
.y258{bottom:580.120500px;}
.y1e9{bottom:580.176000px;}
.y84{bottom:581.583000px;}
.y239{bottom:583.026000px;}
.y130{bottom:584.818500px;}
.ydc{bottom:586.612500px;}
.y50{bottom:589.003500px;}
.y190{bottom:592.206000px;}
.yfa{bottom:592.218000px;}
.y1c1{bottom:593.791500px;}
.y16{bottom:594.714000px;}
.y7e{bottom:596.055000px;}
.y7f{bottom:598.057500px;}
.y1e8{bottom:598.108500px;}
.y83{bottom:599.515500px;}
.y238{bottom:600.958500px;}
.y12f{bottom:602.752500px;}
.ydb{bottom:604.545000px;}
.y165{bottom:605.491500px;}
.y4f{bottom:606.936000px;}
.y18f{bottom:610.138500px;}
.y15{bottom:611.151000px;}
.y257{bottom:612.852000px;}
.y1e7{bottom:616.041000px;}
.y82{bottom:617.448000px;}
.y237{bottom:618.891000px;}
.yf9{bottom:619.803000px;}
.y12e{bottom:620.685000px;}
.yda{bottom:622.477500px;}
.y4e{bottom:624.868500px;}
.y1c0{bottom:627.183000px;}
.y14{bottom:627.589500px;}
.y18e{bottom:628.071000px;}
.y214{bottom:629.394000px;}
.y81{bottom:635.380500px;}
.yd9{bottom:640.410000px;}
.y4d{bottom:642.801000px;}
.y13{bottom:644.028000px;}
.y1bf{bottom:645.115500px;}
.y18d{bottom:646.003500px;}
.y164{bottom:646.936500px;}
.y213{bottom:647.326500px;}
.y236{bottom:648.778500px;}
.y80{bottom:653.313000px;}
.yd8{bottom:658.344000px;}
.y12{bottom:660.466500px;}
.y4c{bottom:660.733500px;}
.y256{bottom:662.269500px;}
.y1be{bottom:663.048000px;}
.y18c{bottom:663.937500px;}
.y235{bottom:666.711000px;}
.y12d{bottom:671.494500px;}
.y7d{bottom:675.430500px;}
.yd7{bottom:676.276500px;}
.y11{bottom:676.905000px;}
.y4b{bottom:678.667500px;}
.y212{bottom:680.058000px;}
.y255{bottom:680.203500px;}
.y1bd{bottom:680.980500px;}
.yf8{bottom:682.042500px;}
.y234{bottom:684.645000px;}
.y163{bottom:688.912500px;}
.y79{bottom:689.934000px;}
.y12c{bottom:690.024000px;}
.y18b{bottom:691.521000px;}
.y10{bottom:693.343500px;}
.y7c{bottom:693.363000px;}
.y4a{bottom:696.600000px;}
.y254{bottom:698.136000px;}
.y1bc{bottom:698.914500px;}
.yf7{bottom:699.975000px;}
.y233{bottom:702.577500px;}
.y160{bottom:705.423000px;}
.y12b{bottom:708.555000px;}
.yf{bottom:709.782000px;}
.y7b{bottom:711.295500px;}
.y49{bottom:714.532500px;}
.y1bb{bottom:716.847000px;}
.ye{bottom:726.220500px;}
.yd6{bottom:727.086000px;}
.y7a{bottom:729.228000px;}
.y211{bottom:729.477000px;}
.y162{bottom:730.357500px;}
.y253{bottom:730.867500px;}
.y48{bottom:732.465000px;}
.y1ba{bottom:734.779500px;}
.y18a{bottom:741.732000px;}
.y12a{bottom:745.018500px;}
.yd5{bottom:745.615500px;}
.y210{bottom:747.409500px;}
.yd{bottom:749.644500px;}
.y47{bottom:750.397500px;}
.y78{bottom:751.345500px;}
.y1b9{bottom:752.712000px;}
.y189{bottom:759.666000px;}
.y77{bottom:760.312500px;}
.y129{bottom:763.549500px;}
.yd4{bottom:764.146500px;}
.y20f{bottom:765.342000px;}
.y46{bottom:768.330000px;}
.y1b8{bottom:770.644500px;}
.y161{bottom:772.323000px;}
.y188{bottom:777.598500px;}
.y72{bottom:779.215500px;}
.y252{bottom:780.286500px;}
.yc{bottom:781.027500px;}
.y128{bottom:782.079000px;}
.yd3{bottom:782.677500px;}
.y20e{bottom:783.274500px;}
.y45{bottom:786.264000px;}
.y76{bottom:787.210500px;}
.y1b7{bottom:788.577000px;}
.y187{bottom:795.531000px;}
.y232{bottom:798.219000px;}
.y15d{bottom:800.304000px;}
.y127{bottom:800.610000px;}
.yd2{bottom:801.207000px;}
.y44{bottom:804.196500px;}
.yb{bottom:804.382500px;}
.y75{bottom:805.144500px;}
.y1b6{bottom:806.511000px;}
.y186{bottom:813.463500px;}
.y231{bottom:816.151500px;}
.ya{bottom:816.892500px;}
.y20d{bottom:819.139500px;}
.y126{bottom:819.141000px;}
.yd1{bottom:819.738000px;}
.y15f{bottom:820.194000px;}
.y43{bottom:822.129000px;}
.y74{bottom:823.077000px;}
.y1b5{bottom:824.443500px;}
.y185{bottom:831.396000px;}
.y230{bottom:834.084000px;}
.y20c{bottom:837.073500px;}
.y125{bottom:837.670500px;}
.yd0{bottom:838.269000px;}
.y42{bottom:840.061500px;}
.y9{bottom:840.249000px;}
.y73{bottom:841.009500px;}
.y1b4{bottom:842.376000px;}
.y251{bottom:852.016500px;}
.y8{bottom:852.759000px;}
.y20b{bottom:855.006000px;}
.y124{bottom:856.201500px;}
.ycf{bottom:856.798500px;}
.y41{bottom:857.994000px;}
.y1b3{bottom:860.308500px;}
.y15e{bottom:862.162500px;}
.y71{bottom:863.127000px;}
.y22f{bottom:863.971500px;}
.ya6{bottom:866.016000px;}
.y250{bottom:869.949000px;}
.y172{bottom:871.263000px;}
.y20a{bottom:872.938500px;}
.y123{bottom:874.732500px;}
.yce{bottom:875.329500px;}
.y40{bottom:875.926500px;}
.y7{bottom:876.114000px;}
.y1b2{bottom:878.241000px;}
.y22e{bottom:881.905500px;}
.ya5{bottom:883.950000px;}
.y24f{bottom:887.883000px;}
.y209{bottom:890.871000px;}
.y122{bottom:893.262000px;}
.y3f{bottom:893.860500px;}
.y1b1{bottom:896.175000px;}
.y70{bottom:896.601000px;}
.y22d{bottom:899.838000px;}
.y15c{bottom:900.549000px;}
.ya4{bottom:901.882500px;}
.y208{bottom:908.803500px;}
.y3e{bottom:911.793000px;}
.ycd{bottom:912.390000px;}
.y1b0{bottom:914.107500px;}
.y6f{bottom:914.533500px;}
.y24e{bottom:917.770500px;}
.ya3{bottom:919.815000px;}
.y3d{bottom:929.725500px;}
.y121{bottom:930.324000px;}
.ycc{bottom:930.921000px;}
.y1af{bottom:932.040000px;}
.y15b{bottom:932.157000px;}
.y6e{bottom:932.466000px;}
.y24d{bottom:935.703000px;}
.ya2{bottom:937.747500px;}
.y6{bottom:940.927500px;}
.y207{bottom:941.680500px;}
.y3c{bottom:947.658000px;}
.y120{bottom:948.853500px;}
.ycb{bottom:949.452000px;}
.y1ae{bottom:949.972500px;}
.y15a{bottom:950.089500px;}
.y6d{bottom:950.398500px;}
.y24c{bottom:953.635500px;}
.ya1{bottom:955.680000px;}
.y206{bottom:959.613000px;}
.y3b{bottom:965.590500px;}
.y11f{bottom:966.786000px;}
.y1ad{bottom:967.905000px;}
.yca{bottom:967.981500px;}
.ya0{bottom:973.612500px;}
.y5{bottom:976.096500px;}
.y205{bottom:977.545500px;}
.y159{bottom:979.468500px;}
.y3a{bottom:983.523000px;}
.y24b{bottom:983.524500px;}
.y11e{bottom:985.317000px;}
.y1ac{bottom:985.837500px;}
.yc9{bottom:986.512500px;}
.y9f{bottom:991.546500px;}
.y204{bottom:995.479500px;}
.y158{bottom:997.402500px;}
.y39{bottom:1001.457000px;}
.y11d{bottom:1003.848000px;}
.yc8{bottom:1005.043500px;}
.y4{bottom:1005.961500px;}
.y9e{bottom:1009.479000px;}
.y203{bottom:1013.412000px;}
.y1ab{bottom:1013.422500px;}
.y157{bottom:1015.335000px;}
.y38{bottom:1019.389500px;}
.y11c{bottom:1022.377500px;}
.yc7{bottom:1023.573000px;}
.y9d{bottom:1027.411500px;}
.y22c{bottom:1031.344500px;}
.y3{bottom:1035.828000px;}
.y37{bottom:1037.322000px;}
.y11b{bottom:1040.311500px;}
.yc6{bottom:1042.104000px;}
.y202{bottom:1043.299500px;}
.y156{bottom:1044.714000px;}
.y9c{bottom:1045.344000px;}
.y22b{bottom:1049.277000px;}
.y36{bottom:1055.254500px;}
.y2{bottom:1056.748500px;}
.y11a{bottom:1058.841000px;}
.y201{bottom:1061.232000px;}
.y155{bottom:1062.648000px;}
.y35{bottom:1073.187000px;}
.yc5{bottom:1075.578000px;}
.y119{bottom:1076.773500px;}
.y9b{bottom:1078.075500px;}
.y200{bottom:1079.164500px;}
.y154{bottom:1080.580500px;}
.y34{bottom:1091.121000px;}
.yc4{bottom:1093.512000px;}
.y118{bottom:1095.304500px;}
.y22a{bottom:1097.098500px;}
.y1{bottom:1100.086500px;}
.y33{bottom:1109.053500px;}
.yc3{bottom:1111.444500px;}
.y153{bottom:1112.187000px;}
.y117{bottom:1113.835500px;}
.y229{bottom:1115.031000px;}
.y32{bottom:1126.986000px;}
.yc2{bottom:1129.377000px;}
.y152{bottom:1130.119500px;}
.y31{bottom:1144.918500px;}
.yc1{bottom:1147.309500px;}
.y30{bottom:1162.851000px;}
.yc0{bottom:1165.242000px;}
.hc{height:16.787702px;}
.h10{height:28.395326px;}
.h11{height:28.784599px;}
.h6{height:29.038903px;}
.h14{height:29.337896px;}
.h12{height:32.170200px;}
.hf{height:33.558113px;}
.h13{height:34.668884px;}
.h8{height:37.658880px;}
.h9{height:38.519654px;}
.h7{height:44.831700px;}
.h16{height:49.473619px;}
.h15{height:50.642227px;}
.h5{height:51.216077px;}
.h17{height:52.303650px;}
.h4{height:59.215496px;}
.h3{height:59.221496px;}
.ha{height:60.598349px;}
.hb{height:60.770503px;}
.h2{height:72.511265px;}
.hd{height:80.693700px;}
.he{height:358.765200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.804800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:30.262220px;}
.x23{left:32.559040px;}
.x25{left:39.567723px;}
.x26{left:80.558318px;}
.xb{left:127.558500px;}
.x7{left:131.073000px;}
.x9{left:133.098000px;}
.x36{left:135.031500px;}
.x2a{left:137.122500px;}
.x1{left:138.924000px;}
.x2b{left:141.861000px;}
.x10{left:144.198000px;}
.x22{left:145.824000px;}
.x12{left:148.758000px;}
.xf{left:149.974500px;}
.x2c{left:151.936500px;}
.x37{left:158.277000px;}
.x35{left:161.106000px;}
.xe{left:164.919000px;}
.x30{left:172.380000px;}
.x13{left:174.868500px;}
.x3{left:178.405500px;}
.x1d{left:182.233500px;}
.xd{left:185.653500px;}
.x2{left:189.753000px;}
.x2d{left:197.101500px;}
.x20{left:209.131500px;}
.x1c{left:210.481500px;}
.x21{left:221.565000px;}
.x17{left:224.346000px;}
.x19{left:226.441500px;}
.x1e{left:229.950000px;}
.x1f{left:231.049500px;}
.x1a{left:236.653500px;}
.x15{left:238.833000px;}
.x16{left:240.597000px;}
.x14{left:241.738500px;}
.x1b{left:244.956000px;}
.x4{left:249.130500px;}
.x29{left:252.623939px;}
.x27{left:257.454186px;}
.x28{left:258.796407px;}
.x31{left:282.660000px;}
.x5{left:335.016000px;}
.x8{left:366.963000px;}
.x6{left:385.243500px;}
.x2e{left:394.215000px;}
.xc{left:416.016000px;}
.x32{left:421.897500px;}
.xa{left:424.383000px;}
.x34{left:438.984000px;}
.x11{left:442.720500px;}
.x2f{left:465.963000px;}
.x33{left:526.170000px;}
.x18{left:576.301500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v3{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.521141pt;}
.v6{vertical-align:19.280000pt;}
.v1{vertical-align:23.141333pt;}
.v4{vertical-align:31.877333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000479pt;}
.lsf{letter-spacing:0.002079pt;}
.lsc{letter-spacing:0.003733pt;}
.lse{letter-spacing:0.004465pt;}
.ls1{letter-spacing:2.654270pt;}
.ls9{letter-spacing:2.654327pt;}
.ls1c{letter-spacing:5.611145pt;}
.ls25{letter-spacing:5.717812pt;}
.ls1b{letter-spacing:7.211145pt;}
.ls1a{letter-spacing:8.855412pt;}
.ls36{letter-spacing:12.720479pt;}
.ls10{letter-spacing:13.183132pt;}
.ls1f{letter-spacing:13.404745pt;}
.ls35{letter-spacing:14.391842pt;}
.ls2b{letter-spacing:14.752267pt;}
.ls2a{letter-spacing:14.752400pt;}
.ls29{letter-spacing:14.757600pt;}
.ls28{letter-spacing:14.757733pt;}
.ls23{letter-spacing:14.824349pt;}
.ls26{letter-spacing:15.302554pt;}
.ls2d{letter-spacing:15.314079pt;}
.ls1e{letter-spacing:15.355687pt;}
.ls11{letter-spacing:15.465798pt;}
.ls43{letter-spacing:16.577766pt;}
.lsb{letter-spacing:17.693578pt;}
.ls3c{letter-spacing:17.708745pt;}
.ls27{letter-spacing:17.746711pt;}
.ls18{letter-spacing:18.012381pt;}
.lsd{letter-spacing:18.223132pt;}
.ls44{letter-spacing:18.284745pt;}
.ls2c{letter-spacing:18.437452pt;}
.ls3a{letter-spacing:18.439412pt;}
.ls3b{letter-spacing:18.444745pt;}
.ls34{letter-spacing:18.946509pt;}
.ls2f{letter-spacing:18.968790pt;}
.ls3e{letter-spacing:19.100745pt;}
.ls14{letter-spacing:19.128192pt;}
.ls19{letter-spacing:19.287594pt;}
.ls32{letter-spacing:19.506079pt;}
.ls7{letter-spacing:19.631334pt;}
.ls38{letter-spacing:19.911412pt;}
.ls13{letter-spacing:20.204745pt;}
.ls31{letter-spacing:20.226079pt;}
.ls30{letter-spacing:20.231412pt;}
.ls5{letter-spacing:20.364459pt;}
.ls6{letter-spacing:20.364602pt;}
.ls12{letter-spacing:20.828476pt;}
.ls41{letter-spacing:21.359814pt;}
.ls8{letter-spacing:22.688161pt;}
.ls37{letter-spacing:22.973176pt;}
.ls24{letter-spacing:23.047412pt;}
.ls20{letter-spacing:23.239412pt;}
.ls45{letter-spacing:23.538303pt;}
.ls3d{letter-spacing:24.175909pt;}
.ls16{letter-spacing:24.459919pt;}
.ls17{letter-spacing:24.652911pt;}
.ls3f{letter-spacing:25.132319pt;}
.ls1d{letter-spacing:25.185453pt;}
.ls39{letter-spacing:25.432125pt;}
.ls2e{letter-spacing:26.060745pt;}
.ls40{letter-spacing:26.354398pt;}
.ls22{letter-spacing:26.563713pt;}
.ls42{letter-spacing:26.569047pt;}
.ls33{letter-spacing:28.252745pt;}
.ls21{letter-spacing:118.557778pt;}
.ls2{letter-spacing:135.792426pt;}
.ls4{letter-spacing:154.160853pt;}
.ls3{letter-spacing:154.163603pt;}
.ls0{letter-spacing:161.016936pt;}
.ws3b{word-spacing:-14.760588pt;}
.ws13{word-spacing:-13.652838pt;}
.ws7d{word-spacing:-13.581016pt;}
.ws87{word-spacing:-2.805468pt;}
.ws4e{word-spacing:-2.699200pt;}
.ws4a{word-spacing:-2.433531pt;}
.wsc3{word-spacing:-2.426624pt;}
.ws107{word-spacing:-2.380397pt;}
.ws68{word-spacing:-2.327263pt;}
.wscc{word-spacing:-2.061594pt;}
.ws126{word-spacing:-1.902192pt;}
.ws28{word-spacing:-1.849059pt;}
.wsa{word-spacing:-1.793280pt;}
.ws131{word-spacing:-1.636523pt;}
.ws3a{word-spacing:-1.583389pt;}
.ws111{word-spacing:-1.370854pt;}
.wsa1{word-spacing:-1.317720pt;}
.ws142{word-spacing:-1.264586pt;}
.wsdb{word-spacing:-1.211452pt;}
.ws77{word-spacing:-1.052051pt;}
.ws10e{word-spacing:-0.998917pt;}
.ws2c{word-spacing:-0.839515pt;}
.ws41{word-spacing:-0.786381pt;}
.wsd1{word-spacing:-0.733247pt;}
.wsff{word-spacing:-0.680113pt;}
.ws57{word-spacing:-0.626980pt;}
.ws9b{word-spacing:-0.573846pt;}
.wsd0{word-spacing:-0.520712pt;}
.ws50{word-spacing:-0.467578pt;}
.ws165{word-spacing:-0.414444pt;}
.wscd{word-spacing:-0.361310pt;}
.ws125{word-spacing:-0.308176pt;}
.ws78{word-spacing:-0.255043pt;}
.wsb5{word-spacing:-0.148775pt;}
.ws55{word-spacing:-0.095641pt;}
.ws166{word-spacing:-0.076513pt;}
.ws39{word-spacing:-0.053134pt;}
.wse3{word-spacing:-0.044057pt;}
.ws72{word-spacing:-0.042507pt;}
.ws27{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.010627pt;}
.wsce{word-spacing:0.063761pt;}
.ws67{word-spacing:0.116895pt;}
.wsd7{word-spacing:0.133599pt;}
.wsb2{word-spacing:0.170028pt;}
.ws8{word-spacing:0.215194pt;}
.ws141{word-spacing:0.223162pt;}
.ws13a{word-spacing:0.276296pt;}
.ws5f{word-spacing:0.329430pt;}
.wsd6{word-spacing:0.382564pt;}
.ws54{word-spacing:0.435698pt;}
.wsc2{word-spacing:0.446324pt;}
.ws22{word-spacing:0.488832pt;}
.ws13d{word-spacing:0.499458pt;}
.wsd9{word-spacing:0.541965pt;}
.ws2e{word-spacing:0.595099pt;}
.ws6b{word-spacing:0.648233pt;}
.ws44{word-spacing:0.701367pt;}
.ws15c{word-spacing:0.754501pt;}
.ws153{word-spacing:0.807635pt;}
.ws104{word-spacing:0.913903pt;}
.ws23{word-spacing:0.967036pt;}
.ws12a{word-spacing:1.019814pt;}
.ws43{word-spacing:1.020170pt;}
.ws128{word-spacing:1.057977pt;}
.ws12c{word-spacing:1.073304pt;}
.wsd{word-spacing:1.123789pt;}
.wsf8{word-spacing:1.126438pt;}
.ws5e{word-spacing:1.179572pt;}
.ws5d{word-spacing:1.232706pt;}
.ws1c{word-spacing:1.285840pt;}
.ws34{word-spacing:1.338973pt;}
.ws51{word-spacing:1.392107pt;}
.ws52{word-spacing:1.445241pt;}
.ws46{word-spacing:1.498375pt;}
.ws21{word-spacing:1.551509pt;}
.ws84{word-spacing:1.604643pt;}
.ws4f{word-spacing:1.657777pt;}
.ws14f{word-spacing:1.817178pt;}
.ws85{word-spacing:1.870312pt;}
.ws2d{word-spacing:1.923446pt;}
.ws139{word-spacing:1.976580pt;}
.ws9a{word-spacing:2.029714pt;}
.ws89{word-spacing:2.082848pt;}
.ws6{word-spacing:2.189115pt;}
.ws56{word-spacing:2.242249pt;}
.ws25{word-spacing:2.295383pt;}
.ws79{word-spacing:2.348517pt;}
.ws164{word-spacing:2.359144pt;}
.ws6a{word-spacing:2.401651pt;}
.ws97{word-spacing:2.454785pt;}
.ws20{word-spacing:2.507919pt;}
.ws74{word-spacing:2.561052pt;}
.ws4d{word-spacing:2.614186pt;}
.wsb4{word-spacing:2.667320pt;}
.wse1{word-spacing:2.677947pt;}
.wsbf{word-spacing:2.720454pt;}
.wsc4{word-spacing:2.732882pt;}
.ws106{word-spacing:2.773588pt;}
.ws9{word-spacing:2.797517pt;}
.ws2f{word-spacing:2.879856pt;}
.wsb3{word-spacing:2.890482pt;}
.ws5{word-spacing:2.932989pt;}
.ws2b{word-spacing:2.986123pt;}
.ws14d{word-spacing:2.996750pt;}
.ws3c{word-spacing:3.039257pt;}
.wsf2{word-spacing:3.092391pt;}
.ws15e{word-spacing:3.145525pt;}
.wsaa{word-spacing:3.198659pt;}
.ws2a{word-spacing:3.251793pt;}
.wsbe{word-spacing:3.262419pt;}
.ws8a{word-spacing:3.304927pt;}
.wsf7{word-spacing:3.358060pt;}
.wsb{word-spacing:3.371366pt;}
.wsc6{word-spacing:3.411194pt;}
.ws15d{word-spacing:3.421821pt;}
.ws38{word-spacing:3.464328pt;}
.ws66{word-spacing:3.517462pt;}
.ws33{word-spacing:3.570596pt;}
.ws40{word-spacing:3.623730pt;}
.ws13c{word-spacing:3.634356pt;}
.ws75{word-spacing:3.676864pt;}
.ws152{word-spacing:3.687490pt;}
.ws156{word-spacing:3.729997pt;}
.ws37{word-spacing:3.783131pt;}
.ws35{word-spacing:3.836265pt;}
.ws24{word-spacing:3.889399pt;}
.ws138{word-spacing:3.919148pt;}
.ws105{word-spacing:3.942533pt;}
.ws53{word-spacing:3.995667pt;}
.ws115{word-spacing:4.048801pt;}
.ws6c{word-spacing:4.101935pt;}
.ws14e{word-spacing:4.112561pt;}
.ws10d{word-spacing:4.151549pt;}
.ws90{word-spacing:4.155068pt;}
.wsf1{word-spacing:4.208202pt;}
.ws7a{word-spacing:4.261336pt;}
.ws83{word-spacing:4.314470pt;}
.ws69{word-spacing:4.367604pt;}
.ws30{word-spacing:4.420738pt;}
.wsaf{word-spacing:4.473872pt;}
.wsed{word-spacing:4.494610pt;}
.wsad{word-spacing:4.512900pt;}
.wse{word-spacing:4.519066pt;}
.wsb0{word-spacing:4.527005pt;}
.ws36{word-spacing:4.580139pt;}
.ws61{word-spacing:4.633273pt;}
.wsdc{word-spacing:4.686407pt;}
.ws3e{word-spacing:4.845809pt;}
.ws29{word-spacing:4.898943pt;}
.ws7f{word-spacing:4.936793pt;}
.ws135{word-spacing:4.950668pt;}
.ws17{word-spacing:4.952076pt;}
.wsb6{word-spacing:5.004567pt;}
.wsb8{word-spacing:5.005210pt;}
.wsa7{word-spacing:5.058344pt;}
.ws114{word-spacing:5.111478pt;}
.wse7{word-spacing:5.139943pt;}
.ws108{word-spacing:5.154263pt;}
.ws9c{word-spacing:5.164612pt;}
.wsbb{word-spacing:5.217746pt;}
.ws15f{word-spacing:5.228372pt;}
.ws8e{word-spacing:5.270880pt;}
.wsd8{word-spacing:5.322179pt;}
.wscb{word-spacing:5.324013pt;}
.ws71{word-spacing:5.377147pt;}
.ws151{word-spacing:5.387774pt;}
.ws148{word-spacing:5.430281pt;}
.ws112{word-spacing:5.440908pt;}
.ws101{word-spacing:5.483415pt;}
.wsa0{word-spacing:5.536549pt;}
.ws49{word-spacing:5.589683pt;}
.ws103{word-spacing:5.642817pt;}
.wsba{word-spacing:5.695951pt;}
.ws8b{word-spacing:5.759711pt;}
.ws116{word-spacing:5.802218pt;}
.wse2{word-spacing:5.847235pt;}
.ws95{word-spacing:5.855352pt;}
.ws10a{word-spacing:5.908486pt;}
.ws31{word-spacing:5.961620pt;}
.ws8f{word-spacing:5.972247pt;}
.wseb{word-spacing:6.014754pt;}
.ws58{word-spacing:6.067888pt;}
.wsac{word-spacing:6.121021pt;}
.wsc0{word-spacing:6.138928pt;}
.ws9f{word-spacing:6.174155pt;}
.ws12b{word-spacing:6.222161pt;}
.ws4c{word-spacing:6.227289pt;}
.ws1d{word-spacing:6.280423pt;}
.ws137{word-spacing:6.291050pt;}
.wse9{word-spacing:6.333557pt;}
.ws62{word-spacing:6.386691pt;}
.ws11{word-spacing:6.431898pt;}
.ws92{word-spacing:6.439825pt;}
.wsca{word-spacing:6.492959pt;}
.ws13b{word-spacing:6.503585pt;}
.ws7{word-spacing:6.527539pt;}
.ws32{word-spacing:6.546092pt;}
.ws91{word-spacing:6.556719pt;}
.ws129{word-spacing:6.586483pt;}
.ws48{word-spacing:6.599226pt;}
.wsef{word-spacing:6.637493pt;}
.ws1e{word-spacing:6.652360pt;}
.ws7c{word-spacing:6.705494pt;}
.wsf9{word-spacing:6.769255pt;}
.ws59{word-spacing:6.811762pt;}
.wsee{word-spacing:6.822388pt;}
.wsae{word-spacing:6.875522pt;}
.ws13f{word-spacing:6.918029pt;}
.ws63{word-spacing:6.971163pt;}
.ws94{word-spacing:7.024297pt;}
.ws109{word-spacing:7.034924pt;}
.ws149{word-spacing:7.077431pt;}
.ws12{word-spacing:7.101389pt;}
.wsb9{word-spacing:7.183699pt;}
.ws3f{word-spacing:7.236833pt;}
.ws136{word-spacing:7.247459pt;}
.wsf4{word-spacing:7.300593pt;}
.wsb7{word-spacing:7.353727pt;}
.wsa2{word-spacing:7.396234pt;}
.wse8{word-spacing:7.406861pt;}
.wsf{word-spacing:7.436134pt;}
.ws18{word-spacing:7.449368pt;}
.ws60{word-spacing:7.555636pt;}
.ws15b{word-spacing:7.608770pt;}
.ws100{word-spacing:7.715037pt;}
.ws147{word-spacing:7.725664pt;}
.ws64{word-spacing:7.821305pt;}
.ws1b{word-spacing:7.874439pt;}
.ws42{word-spacing:7.927573pt;}
.ws1a{word-spacing:7.980707pt;}
.ws117{word-spacing:8.044467pt;}
.wsa9{word-spacing:8.086975pt;}
.ws140{word-spacing:8.122424pt;}
.ws65{word-spacing:8.140108pt;}
.ws19{word-spacing:8.246376pt;}
.ws73{word-spacing:8.299510pt;}
.wsa3{word-spacing:8.405778pt;}
.ws154{word-spacing:8.458912pt;}
.wsa6{word-spacing:8.565179pt;}
.ws14a{word-spacing:8.575806pt;}
.wsa5{word-spacing:8.618313pt;}
.ws93{word-spacing:8.628940pt;}
.wsdd{word-spacing:8.671447pt;}
.ws3d{word-spacing:8.724581pt;}
.wse0{word-spacing:8.767088pt;}
.ws155{word-spacing:8.776748pt;}
.ws12f{word-spacing:8.777715pt;}
.ws15a{word-spacing:8.791990pt;}
.ws12d{word-spacing:8.802769pt;}
.ws9d{word-spacing:8.830849pt;}
.ws157{word-spacing:8.883983pt;}
.wsf5{word-spacing:8.937116pt;}
.wsbd{word-spacing:8.947743pt;}
.wsda{word-spacing:9.043384pt;}
.wsd4{word-spacing:9.092084pt;}
.ws8d{word-spacing:9.092123pt;}
.ws5b{word-spacing:9.096518pt;}
.ws13e{word-spacing:9.107145pt;}
.wsd2{word-spacing:9.107459pt;}
.ws10b{word-spacing:9.149652pt;}
.ws5c{word-spacing:9.202786pt;}
.ws76{word-spacing:9.309053pt;}
.wsfd{word-spacing:9.362187pt;}
.wscf{word-spacing:9.372814pt;}
.ws113{word-spacing:9.415321pt;}
.ws82{word-spacing:9.468455pt;}
.wsc5{word-spacing:9.479082pt;}
.wsf3{word-spacing:9.521589pt;}
.ws80{word-spacing:9.627857pt;}
.wse5{word-spacing:9.655760pt;}
.wsec{word-spacing:9.685923pt;}
.ws47{word-spacing:9.734124pt;}
.ws88{word-spacing:9.840392pt;}
.ws150{word-spacing:9.893526pt;}
.ws132{word-spacing:9.946660pt;}
.wsc1{word-spacing:10.004846pt;}
.ws10f{word-spacing:10.025331pt;}
.wsb1{word-spacing:10.052928pt;}
.wsa8{word-spacing:10.106061pt;}
.wsc{word-spacing:10.114099pt;}
.wsf6{word-spacing:10.159195pt;}
.ws7b{word-spacing:10.318597pt;}
.wse6{word-spacing:10.331257pt;}
.ws124{word-spacing:10.371731pt;}
.wsbc{word-spacing:10.424865pt;}
.ws7e{word-spacing:10.485282pt;}
.ws102{word-spacing:10.637400pt;}
.ws143{word-spacing:10.796802pt;}
.ws130{word-spacing:10.807428pt;}
.ws10{word-spacing:10.879232pt;}
.ws5a{word-spacing:10.956203pt;}
.ws14b{word-spacing:11.009337pt;}
.ws162{word-spacing:11.062471pt;}
.ws8c{word-spacing:11.073098pt;}
.wsab{word-spacing:11.115605pt;}
.ws118{word-spacing:11.180146pt;}
.ws127{word-spacing:11.275007pt;}
.wsfa{word-spacing:11.381274pt;}
.ws96{word-spacing:11.402928pt;}
.wsa4{word-spacing:11.487542pt;}
.ws4b{word-spacing:11.502348pt;}
.ws9e{word-spacing:11.540676pt;}
.wse4{word-spacing:11.551303pt;}
.ws110{word-spacing:11.556846pt;}
.ws133{word-spacing:11.593810pt;}
.ws146{word-spacing:11.657570pt;}
.wsfe{word-spacing:11.753211pt;}
.wsea{word-spacing:11.887949pt;}
.wsf0{word-spacing:12.166813pt;}
.ws145{word-spacing:12.337684pt;}
.ws98{word-spacing:12.504866pt;}
.ws158{word-spacing:12.810343pt;}
.ws163{word-spacing:12.879649pt;}
.ws160{word-spacing:13.134692pt;}
.wsfb{word-spacing:13.198452pt;}
.wsc9{word-spacing:13.294093pt;}
.ws161{word-spacing:13.772298pt;}
.wsd5{word-spacing:14.279549pt;}
.wsd3{word-spacing:14.282179pt;}
.ws10c{word-spacing:14.308846pt;}
.ws12e{word-spacing:14.351949pt;}
.ws159{word-spacing:14.473665pt;}
.ws26{word-spacing:15.047549pt;}
.ws14c{word-spacing:15.366314pt;}
.ws45{word-spacing:15.408327pt;}
.ws134{word-spacing:17.160155pt;}
.ws144{word-spacing:17.652279pt;}
.wsdf{word-spacing:19.083378pt;}
.wsde{word-spacing:19.086563pt;}
.ws99{word-spacing:20.297137pt;}
.ws119{word-spacing:20.350271pt;}
.ws2{word-spacing:20.712738pt;}
.ws4{word-spacing:20.716039pt;}
.ws1{word-spacing:20.722347pt;}
.wsc8{word-spacing:23.548930pt;}
.ws86{word-spacing:23.846639pt;}
.ws15{word-spacing:26.703060pt;}
.ws0{word-spacing:27.636455pt;}
.ws16{word-spacing:28.615887pt;}
.ws14{word-spacing:33.742262pt;}
.wsfc{word-spacing:34.175703pt;}
.wsc7{word-spacing:65.833440pt;}
.ws121{word-spacing:74.856399pt;}
.ws6d{word-spacing:80.349661pt;}
.ws81{word-spacing:86.000687pt;}
.ws11e{word-spacing:87.251066pt;}
.ws120{word-spacing:100.536399pt;}
.ws11f{word-spacing:126.254639pt;}
.ws11a{word-spacing:128.131036pt;}
.ws122{word-spacing:140.959165pt;}
.ws6e{word-spacing:142.268157pt;}
.ws11b{word-spacing:154.244498pt;}
.ws70{word-spacing:157.766345pt;}
.ws6f{word-spacing:159.607945pt;}
.ws3{word-spacing:196.873616pt;}
.ws123{word-spacing:215.091973pt;}
.ws11d{word-spacing:217.401831pt;}
.ws11c{word-spacing:241.653573pt;}
._8f{margin-left:-26.620067pt;}
._8e{margin-left:-23.536388pt;}
._0{margin-left:-7.161606pt;}
._62{margin-left:-6.089153pt;}
._2{margin-left:-5.155038pt;}
._6{margin-left:-3.842860pt;}
._1{margin-left:-2.479018pt;}
._5{margin-left:-1.487748pt;}
._7b{width:0.892084pt;}
._3{width:1.785310pt;}
._e{width:2.773606pt;}
._3f{width:4.572822pt;}
._65{width:5.929634pt;}
._64{width:7.239066pt;}
._46{width:11.128451pt;}
._19{width:13.549136pt;}
._14{width:14.636487pt;}
._1a{width:15.554261pt;}
._66{width:16.580734pt;}
._44{width:17.747764pt;}
._13{width:19.510797pt;}
._7{width:21.070672pt;}
._12{width:22.326410pt;}
._8{width:23.915703pt;}
._a{width:25.463165pt;}
._17{width:27.152459pt;}
._4{width:28.493533pt;}
._15{width:29.701831pt;}
._43{width:31.104554pt;}
._d{width:32.103697pt;}
._16{width:34.091980pt;}
._b{width:35.643692pt;}
._10{width:37.548477pt;}
._11{width:38.575187pt;}
._18{width:40.263428pt;}
._60{width:41.395825pt;}
._45{width:42.684637pt;}
._9{width:43.793216pt;}
._8c{width:45.004385pt;}
._c{width:46.051401pt;}
._63{width:47.629186pt;}
._61{width:49.414496pt;}
._90{width:52.868197pt;}
._8d{width:59.757411pt;}
._49{width:66.000162pt;}
._42{width:71.731200pt;}
._5f{width:82.742340pt;}
._f{width:86.077200pt;}
._3d{width:87.288957pt;}
._48{width:88.322736pt;}
._7d{width:92.833582pt;}
._54{width:96.029273pt;}
._1c{width:100.231708pt;}
._3c{width:101.332214pt;}
._58{width:102.991276pt;}
._4d{width:109.647412pt;}
._56{width:114.482607pt;}
._4c{width:116.247891pt;}
._5e{width:117.542985pt;}
._68{width:119.089582pt;}
._34{width:120.265821pt;}
._55{width:126.868609pt;}
._4a{width:130.349273pt;}
._47{width:131.407449pt;}
._2d{width:133.781867pt;}
._4b{width:136.958909pt;}
._41{width:139.413605pt;}
._33{width:140.420042pt;}
._7f{width:141.694667pt;}
._28{width:143.458981pt;}
._57{width:145.284866pt;}
._4e{width:149.737545pt;}
._38{width:151.492267pt;}
._85{width:155.286290pt;}
._3e{width:157.774239pt;}
._40{width:158.728048pt;}
._20{width:161.086933pt;}
._24{width:164.041600pt;}
._39{width:167.371545pt;}
._21{width:168.552851pt;}
._51{width:170.804934pt;}
._27{width:172.526933pt;}
._59{width:176.217520pt;}
._2a{width:177.488133pt;}
._81{width:180.791208pt;}
._5c{width:183.648538pt;}
._8b{width:187.762482pt;}
._29{width:189.719245pt;}
._36{width:193.536539pt;}
._1b{width:195.102507pt;}
._22{width:197.235993pt;}
._1f{width:202.771733pt;}
._6d{width:206.967657pt;}
._2b{width:209.709807pt;}
._6b{width:213.634676pt;}
._2c{width:216.057067pt;}
._37{width:222.924312pt;}
._3a{width:226.836284pt;}
._3b{width:228.331545pt;}
._82{width:230.734161pt;}
._35{width:240.124605pt;}
._52{width:243.136533pt;}
._2f{width:246.032364pt;}
._23{width:253.776866pt;}
._25{width:255.453337pt;}
._4f{width:256.416533pt;}
._26{width:260.055085pt;}
._1e{width:263.361825pt;}
._5d{width:269.408502pt;}
._31{width:275.549403pt;}
._5a{width:282.985067pt;}
._1d{width:286.688314pt;}
._53{width:289.387200pt;}
._70{width:297.910302pt;}
._50{width:302.674133pt;}
._2e{width:311.438870pt;}
._5b{width:315.959467pt;}
._6a{width:341.853290pt;}
._80{width:343.259635pt;}
._30{width:352.014184pt;}
._32{width:363.448314pt;}
._6f{width:391.800178pt;}
._7a{width:414.238610pt;}
._7e{width:437.149511pt;}
._6c{width:448.164584pt;}
._67{width:456.729763pt;}
._6e{width:482.091610pt;}
._78{width:495.979738pt;}
._77{width:507.330197pt;}
._89{width:512.873276pt;}
._75{width:515.316217pt;}
._7c{width:528.335096pt;}
._69{width:534.799353pt;}
._79{width:542.175387pt;}
._74{width:543.364533pt;}
._72{width:544.852281pt;}
._86{width:560.665551pt;}
._76{width:563.874193pt;}
._71{width:565.166387pt;}
._73{width:570.813488pt;}
._88{width:587.524720pt;}
._83{width:590.201614pt;}
._87{width:615.886525pt;}
._84{width:669.448155pt;}
._8a{width:711.662239pt;}
.fs7{font-size:31.880533pt;}
.fs9{font-size:34.646189pt;}
.fsa{font-size:35.121155pt;}
.fsb{font-size:35.791398pt;}
.fsd{font-size:35.792978pt;}
.fs3{font-size:37.193600pt;}
.fs8{font-size:40.945496pt;}
.fsc{font-size:42.300789pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:35.740000pt;}
.y9a{bottom:75.590667pt;}
.yf6{bottom:77.164000pt;}
.y6c{bottom:77.232000pt;}
.y228{bottom:78.670667pt;}
.y1e6{bottom:79.538667pt;}
.y116{bottom:80.089333pt;}
.y147{bottom:80.884000pt;}
.y2e{bottom:81.080000pt;}
.y1ff{bottom:81.909333pt;}
.y1aa{bottom:82.136000pt;}
.y151{bottom:83.886667pt;}
.yaf{bottom:86.692565pt;}
.y1da{bottom:87.790667pt;}
.y99{bottom:91.530667pt;}
.yf5{bottom:93.104000pt;}
.y6b{bottom:93.172000pt;}
.y227{bottom:94.612000pt;}
.y1e5{bottom:95.478667pt;}
.y115{bottom:96.030667pt;}
.y146{bottom:96.824000pt;}
.y1fe{bottom:97.849333pt;}
.y1a9{bottom:98.076000pt;}
.y24a{bottom:98.485333pt;}
.y150{bottom:99.826667pt;}
.y2d{bottom:100.701333pt;}
.yab{bottom:102.583798pt;}
.y1d9{bottom:103.730667pt;}
.y98{bottom:107.470667pt;}
.yae{bottom:108.163640pt;}
.yf4{bottom:109.044000pt;}
.y6a{bottom:109.112000pt;}
.y1e4{bottom:111.418667pt;}
.y114{bottom:111.970667pt;}
.y145{bottom:112.764000pt;}
.y1fd{bottom:113.789333pt;}
.y1a8{bottom:114.016000pt;}
.y249{bottom:114.425333pt;}
.y14f{bottom:115.766667pt;}
.y2c{bottom:116.641333pt;}
.y1d8{bottom:119.670667pt;}
.y226{bottom:121.178667pt;}
.ybf{bottom:123.410667pt;}
.yf3{bottom:124.984000pt;}
.y69{bottom:125.052000pt;}
.y1e3{bottom:127.358667pt;}
.y113{bottom:127.910667pt;}
.y144{bottom:128.704000pt;}
.y1a7{bottom:129.956000pt;}
.y14e{bottom:131.708000pt;}
.y2b{bottom:132.581333pt;}
.y97{bottom:133.564000pt;}
.y1d7{bottom:135.612000pt;}
.y225{bottom:137.118667pt;}
.ybe{bottom:139.350667pt;}
.y184{bottom:140.442667pt;}
.yf2{bottom:140.925333pt;}
.y68{bottom:140.992000pt;}
.y248{bottom:140.993333pt;}
.y1fc{bottom:143.013333pt;}
.y1e2{bottom:143.300000pt;}
.y112{bottom:143.850667pt;}
.y143{bottom:144.644000pt;}
.y1a6{bottom:145.897333pt;}
.y14d{bottom:147.648000pt;}
.y2a{bottom:148.522667pt;}
.y1d6{bottom:151.552000pt;}
.ybd{bottom:155.292000pt;}
.y183{bottom:156.382667pt;}
.yf1{bottom:156.865333pt;}
.y67{bottom:156.933333pt;}
.y1fb{bottom:158.953333pt;}
.y1e1{bottom:159.240000pt;}
.y111{bottom:159.790667pt;}
.y96{bottom:159.893333pt;}
.y142{bottom:160.584000pt;}
.y1a5{bottom:161.837333pt;}
.y14c{bottom:163.588000pt;}
.y224{bottom:163.685333pt;}
.y29{bottom:164.462667pt;}
.y1d5{bottom:167.492000pt;}
.ybc{bottom:171.232000pt;}
.yf0{bottom:172.805333pt;}
.y66{bottom:172.873333pt;}
.y1fa{bottom:174.893333pt;}
.y1e0{bottom:175.180000pt;}
.y110{bottom:175.732000pt;}
.y95{bottom:175.833333pt;}
.y141{bottom:176.525333pt;}
.y1a4{bottom:177.777333pt;}
.y14b{bottom:179.528000pt;}
.y223{bottom:179.626667pt;}
.y28{bottom:180.402667pt;}
.y1d4{bottom:183.432000pt;}
.y247{bottom:183.500000pt;}
.y182{bottom:185.477333pt;}
.ybb{bottom:187.172000pt;}
.yef{bottom:188.745333pt;}
.y65{bottom:188.813333pt;}
.y1f9{bottom:190.833333pt;}
.y1df{bottom:191.120000pt;}
.y10f{bottom:191.672000pt;}
.y140{bottom:192.465333pt;}
.y1a3{bottom:193.717333pt;}
.y14a{bottom:195.468000pt;}
.y222{bottom:195.566667pt;}
.y27{bottom:196.342667pt;}
.y1d3{bottom:199.372000pt;}
.y246{bottom:199.440000pt;}
.y94{bottom:202.164000pt;}
.yba{bottom:203.112000pt;}
.yee{bottom:204.685333pt;}
.y64{bottom:204.753333pt;}
.y1f8{bottom:206.773333pt;}
.y10e{bottom:207.612000pt;}
.y13f{bottom:208.405333pt;}
.ya9{bottom:208.488001pt;}
.y1a2{bottom:209.657333pt;}
.y149{bottom:211.408000pt;}
.y26{bottom:212.282667pt;}
.y1d2{bottom:215.313333pt;}
.y245{bottom:215.380000pt;}
.y93{bottom:218.104000pt;}
.yb9{bottom:219.052000pt;}
.yed{bottom:220.626667pt;}
.y63{bottom:220.693333pt;}
.y221{bottom:222.133333pt;}
.y1f7{bottom:222.714667pt;}
.y10d{bottom:223.552000pt;}
.y13e{bottom:224.345333pt;}
.y1a1{bottom:225.597333pt;}
.y25{bottom:228.222667pt;}
.y181{bottom:229.405333pt;}
.y1d1{bottom:231.253333pt;}
.y244{bottom:231.321333pt;}
.yb8{bottom:234.993333pt;}
.y1de{bottom:235.753333pt;}
.yec{bottom:236.566667pt;}
.y62{bottom:236.634667pt;}
.y220{bottom:238.073333pt;}
.y1f6{bottom:238.654667pt;}
.y10c{bottom:239.492000pt;}
.y24{bottom:244.164000pt;}
.y92{bottom:244.433333pt;}
.y180{bottom:245.345333pt;}
.y1d0{bottom:247.193333pt;}
.y13d{bottom:248.864000pt;}
.y1a0{bottom:250.117333pt;}
.yb7{bottom:250.933333pt;}
.y1dd{bottom:251.693333pt;}
.yeb{bottom:252.506667pt;}
.y61{bottom:252.574667pt;}
.y1f5{bottom:254.594667pt;}
.y10b{bottom:255.432000pt;}
.y148{bottom:256.041333pt;}
.y243{bottom:257.888000pt;}
.y23{bottom:260.104000pt;}
.y91{bottom:260.373333pt;}
.y17f{bottom:261.286667pt;}
.yb6{bottom:266.873333pt;}
.y21f{bottom:267.168000pt;}
.y1dc{bottom:267.633333pt;}
.yea{bottom:268.446667pt;}
.y60{bottom:268.514667pt;}
.y1f4{bottom:270.534667pt;}
.y10a{bottom:271.373333pt;}
.y242{bottom:273.828000pt;}
.yad{bottom:275.220806pt;}
.y22{bottom:276.044000pt;}
.y17e{bottom:277.226667pt;}
.y171{bottom:279.028000pt;}
.yaa{bottom:281.008163pt;}
.y1cf{bottom:281.804000pt;}
.yb5{bottom:282.813333pt;}
.y1db{bottom:283.573333pt;}
.ye9{bottom:284.386667pt;}
.y5f{bottom:284.454667pt;}
.y13c{bottom:286.049333pt;}
.y1f3{bottom:286.474667pt;}
.y90{bottom:286.704000pt;}
.y19f{bottom:287.301333pt;}
.y109{bottom:287.313333pt;}
.y21{bottom:291.984000pt;}
.y17d{bottom:293.166667pt;}
.y170{bottom:294.968000pt;}
.ye8{bottom:300.326667pt;}
.y5e{bottom:300.394667pt;}
.yac{bottom:300.978919pt;}
.y1ce{bottom:301.464000pt;}
.y13b{bottom:301.989333pt;}
.y1f2{bottom:302.414667pt;}
.ya8{bottom:303.148955pt;}
.y19e{bottom:303.241333pt;}
.y108{bottom:303.253333pt;}
.yb4{bottom:307.332000pt;}
.y20{bottom:307.924000pt;}
.y17c{bottom:309.106667pt;}
.y21e{bottom:311.096000pt;}
.y8f{bottom:313.033333pt;}
.ye7{bottom:316.268000pt;}
.y5d{bottom:316.334667pt;}
.y241{bottom:316.336000pt;}
.y13a{bottom:317.929333pt;}
.y1cd{bottom:317.934667pt;}
.y19d{bottom:319.182667pt;}
.y107{bottom:319.193333pt;}
.y16f{bottom:321.084000pt;}
.y1f{bottom:323.864000pt;}
.y17b{bottom:325.046667pt;}
.y21d{bottom:327.036000pt;}
.y8e{bottom:328.973333pt;}
.y1f1{bottom:331.509333pt;}
.ye6{bottom:332.208000pt;}
.y5c{bottom:332.276000pt;}
.y139{bottom:333.869333pt;}
.y1cc{bottom:334.406667pt;}
.y19c{bottom:335.122667pt;}
.y106{bottom:335.133333pt;}
.y16e{bottom:337.024000pt;}
.y1e{bottom:339.805333pt;}
.y17a{bottom:340.986667pt;}
.y240{bottom:342.902667pt;}
.y260{bottom:346.998667pt;}
.ye5{bottom:348.148000pt;}
.y5b{bottom:348.216000pt;}
.y138{bottom:349.810667pt;}
.y1cb{bottom:350.878667pt;}
.y19b{bottom:351.062667pt;}
.y105{bottom:351.073333pt;}
.y8d{bottom:355.066667pt;}
.y21c{bottom:356.260000pt;}
.y179{bottom:356.928000pt;}
.y23f{bottom:358.842667pt;}
.yb3{bottom:361.154667pt;}
.y25f{bottom:362.938667pt;}
.y16d{bottom:363.140000pt;}
.y5a{bottom:364.156000pt;}
.y19a{bottom:367.002667pt;}
.y104{bottom:367.014667pt;}
.y1ca{bottom:367.349333pt;}
.y1d{bottom:368.900000pt;}
.y8c{bottom:371.006667pt;}
.y21b{bottom:372.200000pt;}
.ye4{bottom:372.666667pt;}
.y178{bottom:372.868000pt;}
.y23e{bottom:374.782667pt;}
.y1f0{bottom:375.437333pt;}
.y137{bottom:376.377333pt;}
.yb2{bottom:377.094667pt;}
.y25e{bottom:378.878667pt;}
.y16c{bottom:379.080000pt;}
.y59{bottom:380.096000pt;}
.y199{bottom:382.942667pt;}
.y103{bottom:382.954667pt;}
.y1c9{bottom:383.821333pt;}
.y8b{bottom:386.946667pt;}
.y177{bottom:388.808000pt;}
.y23d{bottom:390.722667pt;}
.y1ef{bottom:391.377333pt;}
.y136{bottom:392.317333pt;}
.yb1{bottom:393.034667pt;}
.y25d{bottom:394.818667pt;}
.y16b{bottom:395.020000pt;}
.y58{bottom:396.036000pt;}
.y21a{bottom:398.766667pt;}
.y198{bottom:398.882667pt;}
.y102{bottom:398.894667pt;}
.y1c8{bottom:400.293333pt;}
.y8a{bottom:402.886667pt;}
.y176{bottom:404.748000pt;}
.y1ee{bottom:407.318667pt;}
.yb0{bottom:408.976000pt;}
.ye3{bottom:409.852000pt;}
.y25c{bottom:410.760000pt;}
.y16a{bottom:410.960000pt;}
.y57{bottom:411.976000pt;}
.y1c{bottom:412.826667pt;}
.y219{bottom:414.708000pt;}
.y197{bottom:414.824000pt;}
.y101{bottom:414.834667pt;}
.y1c7{bottom:416.764000pt;}
.y23c{bottom:417.290667pt;}
.y89{bottom:418.828000pt;}
.y135{bottom:418.884000pt;}
.y175{bottom:420.688000pt;}
.y1ed{bottom:423.258667pt;}
.ye2{bottom:425.792000pt;}
.y25b{bottom:426.700000pt;}
.y56{bottom:427.917333pt;}
.y196{bottom:430.764000pt;}
.y100{bottom:430.774667pt;}
.y1b{bottom:431.158667pt;}
.y23b{bottom:433.230667pt;}
.y1c6{bottom:433.236000pt;}
.ya7{bottom:433.417333pt;}
.y88{bottom:434.768000pt;}
.y174{bottom:436.628000pt;}
.y169{bottom:439.056000pt;}
.y1ec{bottom:439.198667pt;}
.y218{bottom:441.274667pt;}
.ye1{bottom:441.732000pt;}
.y25a{bottom:442.640000pt;}
.y55{bottom:443.857333pt;}
.y134{bottom:445.452000pt;}
.y195{bottom:446.704000pt;}
.yff{bottom:446.714667pt;}
.y23a{bottom:449.170667pt;}
.y1c5{bottom:449.708000pt;}
.y87{bottom:450.708000pt;}
.y168{bottom:454.996000pt;}
.y1eb{bottom:455.138667pt;}
.ye0{bottom:457.672000pt;}
.y54{bottom:459.797333pt;}
.y194{bottom:462.644000pt;}
.yfe{bottom:462.656000pt;}
.y1c4{bottom:465.648000pt;}
.y86{bottom:466.648000pt;}
.y1a{bottom:470.186667pt;}
.y217{bottom:470.498667pt;}
.y1ea{bottom:471.078667pt;}
.y259{bottom:471.734667pt;}
.y133{bottom:472.018667pt;}
.ydf{bottom:473.612000pt;}
.y53{bottom:475.737333pt;}
.y193{bottom:478.584000pt;}
.yfd{bottom:478.596000pt;}
.y173{bottom:481.261333pt;}
.y1c3{bottom:482.120000pt;}
.y85{bottom:482.588000pt;}
.y19{bottom:484.798667pt;}
.y216{bottom:486.438667pt;}
.y132{bottom:487.958667pt;}
.y167{bottom:488.624000pt;}
.yde{bottom:489.553333pt;}
.y52{bottom:491.677333pt;}
.y192{bottom:494.524000pt;}
.yfc{bottom:494.536000pt;}
.y18{bottom:499.410667pt;}
.y131{bottom:503.898667pt;}
.y166{bottom:504.564000pt;}
.ydd{bottom:505.493333pt;}
.y51{bottom:507.617333pt;}
.y191{bottom:510.465333pt;}
.yfb{bottom:510.476000pt;}
.y1c2{bottom:511.874667pt;}
.y17{bottom:514.022667pt;}
.y215{bottom:515.533333pt;}
.y258{bottom:515.662667pt;}
.y1e9{bottom:515.712000pt;}
.y84{bottom:516.962667pt;}
.y239{bottom:518.245333pt;}
.y130{bottom:519.838667pt;}
.ydc{bottom:521.433333pt;}
.y50{bottom:523.558667pt;}
.y190{bottom:526.405333pt;}
.yfa{bottom:526.416000pt;}
.y1c1{bottom:527.814667pt;}
.y16{bottom:528.634667pt;}
.y7e{bottom:529.826667pt;}
.y7f{bottom:531.606667pt;}
.y1e8{bottom:531.652000pt;}
.y83{bottom:532.902667pt;}
.y238{bottom:534.185333pt;}
.y12f{bottom:535.780000pt;}
.ydb{bottom:537.373333pt;}
.y165{bottom:538.214667pt;}
.y4f{bottom:539.498667pt;}
.y18f{bottom:542.345333pt;}
.y15{bottom:543.245333pt;}
.y257{bottom:544.757333pt;}
.y1e7{bottom:547.592000pt;}
.y82{bottom:548.842667pt;}
.y237{bottom:550.125333pt;}
.yf9{bottom:550.936000pt;}
.y12e{bottom:551.720000pt;}
.yda{bottom:553.313333pt;}
.y4e{bottom:555.438667pt;}
.y1c0{bottom:557.496000pt;}
.y14{bottom:557.857333pt;}
.y18e{bottom:558.285333pt;}
.y214{bottom:559.461333pt;}
.y81{bottom:564.782667pt;}
.yd9{bottom:569.253333pt;}
.y4d{bottom:571.378667pt;}
.y13{bottom:572.469333pt;}
.y1bf{bottom:573.436000pt;}
.y18d{bottom:574.225333pt;}
.y164{bottom:575.054667pt;}
.y213{bottom:575.401333pt;}
.y236{bottom:576.692000pt;}
.y80{bottom:580.722667pt;}
.yd8{bottom:585.194667pt;}
.y12{bottom:587.081333pt;}
.y4c{bottom:587.318667pt;}
.y256{bottom:588.684000pt;}
.y1be{bottom:589.376000pt;}
.y18c{bottom:590.166667pt;}
.y235{bottom:592.632000pt;}
.y12d{bottom:596.884000pt;}
.y7d{bottom:600.382667pt;}
.yd7{bottom:601.134667pt;}
.y11{bottom:601.693333pt;}
.y4b{bottom:603.260000pt;}
.y212{bottom:604.496000pt;}
.y255{bottom:604.625333pt;}
.y1bd{bottom:605.316000pt;}
.yf8{bottom:606.260000pt;}
.y234{bottom:608.573333pt;}
.y163{bottom:612.366667pt;}
.y79{bottom:613.274667pt;}
.y12c{bottom:613.354667pt;}
.y18b{bottom:614.685333pt;}
.y10{bottom:616.305333pt;}
.y7c{bottom:616.322667pt;}
.y4a{bottom:619.200000pt;}
.y254{bottom:620.565333pt;}
.y1bc{bottom:621.257333pt;}
.yf7{bottom:622.200000pt;}
.y233{bottom:624.513333pt;}
.y160{bottom:627.042667pt;}
.y12b{bottom:629.826667pt;}
.yf{bottom:630.917333pt;}
.y7b{bottom:632.262667pt;}
.y49{bottom:635.140000pt;}
.y1bb{bottom:637.197333pt;}
.ye{bottom:645.529333pt;}
.yd6{bottom:646.298667pt;}
.y7a{bottom:648.202667pt;}
.y211{bottom:648.424000pt;}
.y162{bottom:649.206667pt;}
.y253{bottom:649.660000pt;}
.y48{bottom:651.080000pt;}
.y1ba{bottom:653.137333pt;}
.y18a{bottom:659.317333pt;}
.y12a{bottom:662.238667pt;}
.yd5{bottom:662.769333pt;}
.y210{bottom:664.364000pt;}
.yd{bottom:666.350667pt;}
.y47{bottom:667.020000pt;}
.y78{bottom:667.862667pt;}
.y1b9{bottom:669.077333pt;}
.y189{bottom:675.258667pt;}
.y77{bottom:675.833333pt;}
.y129{bottom:678.710667pt;}
.yd4{bottom:679.241333pt;}
.y20f{bottom:680.304000pt;}
.y46{bottom:682.960000pt;}
.y1b8{bottom:685.017333pt;}
.y161{bottom:686.509333pt;}
.y188{bottom:691.198667pt;}
.y72{bottom:692.636000pt;}
.y252{bottom:693.588000pt;}
.yc{bottom:694.246667pt;}
.y128{bottom:695.181333pt;}
.yd3{bottom:695.713333pt;}
.y20e{bottom:696.244000pt;}
.y45{bottom:698.901333pt;}
.y76{bottom:699.742667pt;}
.y1b7{bottom:700.957333pt;}
.y187{bottom:707.138667pt;}
.y232{bottom:709.528000pt;}
.y15d{bottom:711.381333pt;}
.y127{bottom:711.653333pt;}
.yd2{bottom:712.184000pt;}
.y44{bottom:714.841333pt;}
.yb{bottom:715.006667pt;}
.y75{bottom:715.684000pt;}
.y1b6{bottom:716.898667pt;}
.y186{bottom:723.078667pt;}
.y231{bottom:725.468000pt;}
.ya{bottom:726.126667pt;}
.y20d{bottom:728.124000pt;}
.y126{bottom:728.125333pt;}
.yd1{bottom:728.656000pt;}
.y15f{bottom:729.061333pt;}
.y43{bottom:730.781333pt;}
.y74{bottom:731.624000pt;}
.y1b5{bottom:732.838667pt;}
.y185{bottom:739.018667pt;}
.y230{bottom:741.408000pt;}
.y20c{bottom:744.065333pt;}
.y125{bottom:744.596000pt;}
.yd0{bottom:745.128000pt;}
.y42{bottom:746.721333pt;}
.y9{bottom:746.888000pt;}
.y73{bottom:747.564000pt;}
.y1b4{bottom:748.778667pt;}
.y251{bottom:757.348000pt;}
.y8{bottom:758.008000pt;}
.y20b{bottom:760.005333pt;}
.y124{bottom:761.068000pt;}
.ycf{bottom:761.598667pt;}
.y41{bottom:762.661333pt;}
.y1b3{bottom:764.718667pt;}
.y15e{bottom:766.366667pt;}
.y71{bottom:767.224000pt;}
.y22f{bottom:767.974667pt;}
.ya6{bottom:769.792000pt;}
.y250{bottom:773.288000pt;}
.y172{bottom:774.456000pt;}
.y20a{bottom:775.945333pt;}
.y123{bottom:777.540000pt;}
.yce{bottom:778.070667pt;}
.y40{bottom:778.601333pt;}
.y7{bottom:778.768000pt;}
.y1b2{bottom:780.658667pt;}
.y22e{bottom:783.916000pt;}
.ya5{bottom:785.733333pt;}
.y24f{bottom:789.229333pt;}
.y209{bottom:791.885333pt;}
.y122{bottom:794.010667pt;}
.y3f{bottom:794.542667pt;}
.y1b1{bottom:796.600000pt;}
.y70{bottom:796.978667pt;}
.y22d{bottom:799.856000pt;}
.y15c{bottom:800.488000pt;}
.ya4{bottom:801.673333pt;}
.y208{bottom:807.825333pt;}
.y3e{bottom:810.482667pt;}
.ycd{bottom:811.013333pt;}
.y1b0{bottom:812.540000pt;}
.y6f{bottom:812.918667pt;}
.y24e{bottom:815.796000pt;}
.ya3{bottom:817.613333pt;}
.y3d{bottom:826.422667pt;}
.y121{bottom:826.954667pt;}
.ycc{bottom:827.485333pt;}
.y1af{bottom:828.480000pt;}
.y15b{bottom:828.584000pt;}
.y6e{bottom:828.858667pt;}
.y24d{bottom:831.736000pt;}
.ya2{bottom:833.553333pt;}
.y6{bottom:836.380000pt;}
.y207{bottom:837.049333pt;}
.y3c{bottom:842.362667pt;}
.y120{bottom:843.425333pt;}
.ycb{bottom:843.957333pt;}
.y1ae{bottom:844.420000pt;}
.y15a{bottom:844.524000pt;}
.y6d{bottom:844.798667pt;}
.y24c{bottom:847.676000pt;}
.ya1{bottom:849.493333pt;}
.y206{bottom:852.989333pt;}
.y3b{bottom:858.302667pt;}
.y11f{bottom:859.365333pt;}
.y1ad{bottom:860.360000pt;}
.yca{bottom:860.428000pt;}
.ya0{bottom:865.433333pt;}
.y5{bottom:867.641333pt;}
.y205{bottom:868.929333pt;}
.y159{bottom:870.638667pt;}
.y3a{bottom:874.242667pt;}
.y24b{bottom:874.244000pt;}
.y11e{bottom:875.837333pt;}
.y1ac{bottom:876.300000pt;}
.yc9{bottom:876.900000pt;}
.y9f{bottom:881.374667pt;}
.y204{bottom:884.870667pt;}
.y158{bottom:886.580000pt;}
.y39{bottom:890.184000pt;}
.y11d{bottom:892.309333pt;}
.yc8{bottom:893.372000pt;}
.y4{bottom:894.188000pt;}
.y9e{bottom:897.314667pt;}
.y203{bottom:900.810667pt;}
.y1ab{bottom:900.820000pt;}
.y157{bottom:902.520000pt;}
.y38{bottom:906.124000pt;}
.y11c{bottom:908.780000pt;}
.yc7{bottom:909.842667pt;}
.y9d{bottom:913.254667pt;}
.y22c{bottom:916.750667pt;}
.y3{bottom:920.736000pt;}
.y37{bottom:922.064000pt;}
.y11b{bottom:924.721333pt;}
.yc6{bottom:926.314667pt;}
.y202{bottom:927.377333pt;}
.y156{bottom:928.634667pt;}
.y9c{bottom:929.194667pt;}
.y22b{bottom:932.690667pt;}
.y36{bottom:938.004000pt;}
.y2{bottom:939.332000pt;}
.y11a{bottom:941.192000pt;}
.y201{bottom:943.317333pt;}
.y155{bottom:944.576000pt;}
.y35{bottom:953.944000pt;}
.yc5{bottom:956.069333pt;}
.y119{bottom:957.132000pt;}
.y9b{bottom:958.289333pt;}
.y200{bottom:959.257333pt;}
.y154{bottom:960.516000pt;}
.y34{bottom:969.885333pt;}
.yc4{bottom:972.010667pt;}
.y118{bottom:973.604000pt;}
.y22a{bottom:975.198667pt;}
.y1{bottom:977.854667pt;}
.y33{bottom:985.825333pt;}
.yc3{bottom:987.950667pt;}
.y153{bottom:988.610667pt;}
.y117{bottom:990.076000pt;}
.y229{bottom:991.138667pt;}
.y32{bottom:1001.765333pt;}
.yc2{bottom:1003.890667pt;}
.y152{bottom:1004.550667pt;}
.y31{bottom:1017.705333pt;}
.yc1{bottom:1019.830667pt;}
.y30{bottom:1033.645333pt;}
.yc0{bottom:1035.770667pt;}
.hc{height:14.922402pt;}
.h10{height:25.240290pt;}
.h11{height:25.586310pt;}
.h6{height:25.812358pt;}
.h14{height:26.078130pt;}
.h12{height:28.595733pt;}
.hf{height:29.829434pt;}
.h13{height:30.816786pt;}
.h8{height:33.474560pt;}
.h9{height:34.239693pt;}
.h7{height:39.850400pt;}
.h16{height:43.976550pt;}
.h15{height:45.015313pt;}
.h5{height:45.525402pt;}
.h17{height:46.492133pt;}
.h4{height:52.635997pt;}
.h3{height:52.641330pt;}
.ha{height:53.865199pt;}
.hb{height:54.018225pt;}
.h2{height:64.454458pt;}
.hd{height:71.727733pt;}
.he{height:318.902400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.937600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:26.899751pt;}
.x23{left:28.941369pt;}
.x25{left:35.171309pt;}
.x26{left:71.607394pt;}
.xb{left:113.385333pt;}
.x7{left:116.509333pt;}
.x9{left:118.309333pt;}
.x36{left:120.028000pt;}
.x2a{left:121.886667pt;}
.x1{left:123.488000pt;}
.x2b{left:126.098667pt;}
.x10{left:128.176000pt;}
.x22{left:129.621333pt;}
.x12{left:132.229333pt;}
.xf{left:133.310667pt;}
.x2c{left:135.054667pt;}
.x37{left:140.690667pt;}
.x35{left:143.205333pt;}
.xe{left:146.594667pt;}
.x30{left:153.226667pt;}
.x13{left:155.438667pt;}
.x3{left:158.582667pt;}
.x1d{left:161.985333pt;}
.xd{left:165.025333pt;}
.x2{left:168.669333pt;}
.x2d{left:175.201333pt;}
.x20{left:185.894667pt;}
.x1c{left:187.094667pt;}
.x21{left:196.946667pt;}
.x17{left:199.418667pt;}
.x19{left:201.281333pt;}
.x1e{left:204.400000pt;}
.x1f{left:205.377333pt;}
.x1a{left:210.358667pt;}
.x15{left:212.296000pt;}
.x16{left:213.864000pt;}
.x14{left:214.878667pt;}
.x1b{left:217.738667pt;}
.x4{left:221.449333pt;}
.x29{left:224.554612pt;}
.x27{left:228.848165pt;}
.x28{left:230.041251pt;}
.x31{left:251.253333pt;}
.x5{left:297.792000pt;}
.x8{left:326.189333pt;}
.x6{left:342.438667pt;}
.x2e{left:350.413333pt;}
.xc{left:369.792000pt;}
.x32{left:375.020000pt;}
.xa{left:377.229333pt;}
.x34{left:390.208000pt;}
.x11{left:393.529333pt;}
.x2f{left:414.189333pt;}
.x33{left:467.706667pt;}
.x18{left:512.268000pt;}
}




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