
    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_d2003975bce36e0ef2e1c179.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_c4ecbca22f924f67fcfd224b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_0d134617285a7e25881b7276.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675000;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_ea0a2ac70dee35b9dc3f53a2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_06b7b159496961c77a44a495.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_48020b665641bf5a7a06aa31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_62804fcbc4b7ea298685e26d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.975586;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_6faa89213b696d28c8ba92fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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_48c533af7b3ae40d6449e311.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967773;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_bbf6bdec7df60e17c8a134e8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.967773;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_885c6d4f389897239082ffc4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.fff{font-family:fff;line-height:0.979980;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_96e028290049d34c175b996c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936523;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_65ac2531c773091af96cf3fd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.967773;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_885c6d4f389897239082ffc4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.979980;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_96e028290049d34c175b996c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936523;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_a7c08f72f758264c06109a87.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.967773;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_8a33da08d8b326e22ddf9405.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.967773;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_77900faa1c0cf467b68344b1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.979980;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_991e4658c8709e088dbca8ab.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.936523;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_6b8b45670009613b57097692.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.711000;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:ff1a;src:url('chunks/assets/font_99f014c7923504e51b9d43d4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.989000;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:ff1b;src:url('chunks/assets/font_ea380c7dabdb07de3d8fef8a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.980000;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:ff1c;src:url('chunks/assets/font_ae354406622ed7eaa95c6c71.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.967773;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:ff1d;src:url('chunks/assets/font_ae354406622ed7eaa95c6c71.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.967773;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:ff1e;src:url('chunks/assets/font_ba8328480d0022fc3b2a41a2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.942000;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;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff22;src:url('chunks/assets/font_cfeb19a882097928db086329.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.205000;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:ff23;src:url('chunks/assets/font_9d8b0d09b05b07537aa83edd.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.945000;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:ff24;src:url('chunks/assets/font_52bf3f9cbbf4dead7784f9ed.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff25{font-family:sans-serif;visibility:hidden;}
.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);}
.v1{vertical-align:-10.500000px;}
.v9{vertical-align:-8.904000px;}
.v2{vertical-align:-5.304000px;}
.v8{vertical-align:-2.871692px;}
.v4{vertical-align:-1.025145px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.234945px;}
.v5{vertical-align:10.505160px;}
.v6{vertical-align:17.570083px;}
.v7{vertical-align:48.212100px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000816px;}
.ls18{letter-spacing:0.001064px;}
.ls12{letter-spacing:0.001321px;}
.lsa{letter-spacing:0.017824px;}
.ls17{letter-spacing:5.977575px;}
.ls5{letter-spacing:8.181825px;}
.ls3{letter-spacing:16.363650px;}
.lse{letter-spacing:23.580720px;}
.ls13{letter-spacing:30.587732px;}
.ls14{letter-spacing:30.588020px;}
.ls16{letter-spacing:30.600816px;}
.ls8{letter-spacing:30.603242px;}
.ls7{letter-spacing:30.605184px;}
.lsd{letter-spacing:30.606816px;}
.ls11{letter-spacing:31.083390px;}
.ls10{letter-spacing:36.768816px;}
.lsf{letter-spacing:36.774041px;}
.ls19{letter-spacing:50.210496px;}
.ls2{letter-spacing:52.499421px;}
.ls1{letter-spacing:52.664496px;}
.ls6{letter-spacing:71.726496px;}
.lsc{letter-spacing:71.732496px;}
.ls9{letter-spacing:132.938496px;}
.ls15{letter-spacing:194.150496px;}
.ls4{letter-spacing:231.235351px;}
.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;}
}
.ws14{word-spacing:-24.545475px;}
.ws2{word-spacing:-16.363650px;}
.ws6a{word-spacing:-13.449600px;}
.wse{word-spacing:-13.165589px;}
.ws5{word-spacing:-12.622966px;}
.ws6b{word-spacing:-11.249686px;}
.ws6{word-spacing:-11.045078px;}
.ws9{word-spacing:-10.866286px;}
.ws2b{word-spacing:-8.880362px;}
.ws8{word-spacing:-8.149715px;}
.ws2a{word-spacing:-7.104724px;}
.wsd{word-spacing:-6.847958px;}
.wsc{word-spacing:-5.869709px;}
.ws77{word-spacing:-0.523637px;}
.ws7d{word-spacing:-0.458182px;}
.ws7e{word-spacing:-0.427884px;}
.ws79{word-spacing:-0.327273px;}
.ws5b{word-spacing:-0.065455px;}
.ws1a{word-spacing:-0.047821px;}
.ws7{word-spacing:-0.029316px;}
.wsf{word-spacing:-0.021870px;}
.ws81{word-spacing:-0.004195px;}
.ws5f{word-spacing:-0.003913px;}
.ws6f{word-spacing:-0.002812px;}
.ws70{word-spacing:-0.001769px;}
.ws7f{word-spacing:-0.001261px;}
.ws76{word-spacing:-0.001209px;}
.ws80{word-spacing:-0.000738px;}
.ws0{word-spacing:0.000000px;}
.ws75{word-spacing:0.000324px;}
.ws7c{word-spacing:0.000947px;}
.ws3{word-spacing:0.001568px;}
.ws60{word-spacing:0.003184px;}
.ws15{word-spacing:2.492964px;}
.ws78{word-spacing:2.728829px;}
.ws61{word-spacing:2.749093px;}
.ws13{word-spacing:16.295105px;}
.ws82{word-spacing:16.296881px;}
.ws12{word-spacing:16.297937px;}
.ws2d{word-spacing:30.553235px;}
.ws18{word-spacing:30.555443px;}
.ws31{word-spacing:30.556787px;}
.ws36{word-spacing:30.557075px;}
.ws1{word-spacing:30.557363px;}
.ws53{word-spacing:30.557891px;}
.ws28{word-spacing:30.558707px;}
.ws27{word-spacing:30.559235px;}
.ws1b{word-spacing:30.559811px;}
.ws2e{word-spacing:30.560627px;}
.ws20{word-spacing:30.561443px;}
.ws34{word-spacing:30.563075px;}
.ws4d{word-spacing:31.035569px;}
.ws10{word-spacing:31.581317px;}
.ws11{word-spacing:31.581324px;}
.ws38{word-spacing:32.074217px;}
.ws59{word-spacing:32.080078px;}
.ws2c{word-spacing:32.085113px;}
.ws17{word-spacing:32.087623px;}
.ws33{word-spacing:32.087724px;}
.ws26{word-spacing:32.088940px;}
.ws35{word-spacing:32.089811px;}
.ws4e{word-spacing:32.091443px;}
.ws1c{word-spacing:32.092259px;}
.ws3d{word-spacing:32.093075px;}
.ws37{word-spacing:32.093927px;}
.ws4f{word-spacing:32.114920px;}
.ws1f{word-spacing:32.852752px;}
.ws3c{word-spacing:33.283138px;}
.ws22{word-spacing:33.761344px;}
.ws3f{word-spacing:34.126259px;}
.ws1e{word-spacing:34.132259px;}
.ws3a{word-spacing:34.143908px;}
.ws21{word-spacing:34.383011px;}
.ws2f{word-spacing:34.395598px;}
.ws29{word-spacing:34.401598px;}
.ws58{word-spacing:34.526473px;}
.ws30{word-spacing:34.677443px;}
.ws3b{word-spacing:34.717756px;}
.ws41{word-spacing:34.729811px;}
.ws24{word-spacing:34.901075px;}
.ws51{word-spacing:34.901891px;}
.ws25{word-spacing:34.907075px;}
.ws32{word-spacing:34.907891px;}
.ws16{word-spacing:34.909038px;}
.ws52{word-spacing:35.193443px;}
.ws19{word-spacing:35.195962px;}
.ws1d{word-spacing:35.199443px;}
.ws5c{word-spacing:45.735445px;}
.ws63{word-spacing:53.796954px;}
.ws44{word-spacing:55.367238px;}
.ws67{word-spacing:59.773669px;}
.ws64{word-spacing:59.773692px;}
.ws66{word-spacing:59.774271px;}
.ws62{word-spacing:59.774965px;}
.ws43{word-spacing:61.192794px;}
.ws54{word-spacing:65.331443px;}
.ws55{word-spacing:65.799443px;}
.ws50{word-spacing:65.805443px;}
.ws4{word-spacing:69.236131px;}
.ws42{word-spacing:71.693126px;}
.ws3e{word-spacing:71.699126px;}
.wsa{word-spacing:82.427008px;}
.ws45{word-spacing:85.803627px;}
.ws5d{word-spacing:87.204977px;}
.ws46{word-spacing:91.624794px;}
.ws69{word-spacing:113.431692px;}
.ws47{word-spacing:116.240016px;}
.ws48{word-spacing:122.062794px;}
.ws39{word-spacing:132.905126px;}
.ws49{word-spacing:146.676405px;}
.ws68{word-spacing:150.781692px;}
.ws7b{word-spacing:150.926509px;}
.ws4a{word-spacing:152.500794px;}
.ws6c{word-spacing:156.005157px;}
.ws6e{word-spacing:156.782432px;}
.ws23{word-spacing:161.858572px;}
.ws4b{word-spacing:177.106794px;}
.ws6d{word-spacing:181.878633px;}
.ws4c{word-spacing:182.938794px;}
.ws56{word-spacing:194.117126px;}
.ws7a{word-spacing:217.081981px;}
.wsb{word-spacing:240.947204px;}
.ws65{word-spacing:246.037692px;}
.ws40{word-spacing:255.329126px;}
.ws57{word-spacing:285.929126px;}
.ws5a{word-spacing:316.535126px;}
.ws5e{word-spacing:360.498775px;}
.ws74{word-spacing:558.118668px;}
.ws73{word-spacing:601.711432px;}
.ws71{word-spacing:719.400413px;}
.ws72{word-spacing:724.635170px;}
._11{margin-left:-577.085783px;}
._17{margin-left:-8.181825px;}
._9{margin-left:-5.236368px;}
._1{margin-left:-4.123640px;}
._d{margin-left:-2.945457px;}
._0{margin-left:-1.505456px;}
._c{width:1.112728px;}
._4{width:2.117686px;}
._5{width:3.547123px;}
._2{width:4.658908px;}
._b{width:5.725274px;}
._3{width:7.094247px;}
._e{width:8.181825px;}
._1f{width:10.510547px;}
._20{width:12.852629px;}
._4b{width:13.963615px;}
._10{width:15.358659px;}
._18{width:16.976270px;}
._12{width:18.523652px;}
._8{width:20.094562px;}
._13{width:25.262763px;}
._f{width:27.294568px;}
._19{width:34.437139px;}
._1a{width:35.904872px;}
._15{width:41.890944px;}
._1e{width:45.538773px;}
._1d{width:64.294952px;}
._21{width:65.801146px;}
._1b{width:71.727588px;}
._1c{width:76.743913px;}
._7{width:80.410675px;}
._39{width:95.285876px;}
._33{width:98.129679px;}
._3d{width:100.508160px;}
._23{width:102.162888px;}
._41{width:104.115024px;}
._25{width:107.988444px;}
._3e{width:121.059149px;}
._36{width:125.386842px;}
._40{width:128.162160px;}
._26{width:132.605277px;}
._31{width:135.473679px;}
._27{width:138.426444px;}
._32{width:140.500842px;}
._3a{width:142.807478px;}
._3c{width:144.192758px;}
._3f{width:148.340160px;}
._38{width:160.560832px;}
._28{width:163.041666px;}
._29{width:168.864444px;}
._37{width:186.264340px;}
._2a{width:193.472055px;}
._2b{width:199.302444px;}
._4a{width:205.061197px;}
._47{width:207.220076px;}
._22{width:211.412106px;}
._48{width:221.885792px;}
._2c{width:223.908444px;}
._2e{width:230.735679px;}
._2f{width:235.756842px;}
._30{width:257.992842px;}
._49{width:264.755792px;}
._34{width:266.837679px;}
._42{width:307.017222px;}
._46{width:310.507435px;}
._43{width:318.753719px;}
._3b{width:336.392947px;}
._35{width:388.061421px;}
._45{width:455.162070px;}
._44{width:480.620422px;}
._24{width:497.382888px;}
._16{width:504.393148px;}
._4c{width:524.037994px;}
._2d{width:527.816055px;}
._a{width:597.716450px;}
._14{width:1092.482688px;}
._6{width:1109.162688px;}
._4d{width:1125.836688px;}
.fc12{color:rgb(150,115,166);}
.fc10{color:rgb(143,89,3);}
.fcf{color:rgb(0,0,207);}
.fce{color:rgb(79,153,5);}
.fcd{color:rgb(207,92,0);}
.fc13{color:rgb(110,110,110);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc8{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc11{color:rgb(235,109,93);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fca{color:rgb(180,68,57);}
.fc6{color:rgb(254,250,248);}
.fc9{color:rgb(210,32,39);}
.fc4{color:rgb(252,230,223);}
.fcb{color:rgb(232,103,88);}
.fcc{color:rgb(33,74,135);}
.fs11{font-size:18.516433px;}
.fs19{font-size:18.964200px;}
.fs10{font-size:21.602392px;}
.fs12{font-size:21.869749px;}
.fs17{font-size:22.412377px;}
.fs18{font-size:23.364000px;}
.fs7{font-size:23.530320px;}
.fs1c{font-size:25.845230px;}
.fsf{font-size:26.058240px;}
.fs14{font-size:26.742241px;}
.fs8{font-size:27.204766px;}
.fs16{font-size:28.013760px;}
.fs1f{font-size:28.716922px;}
.fsb{font-size:29.315520px;}
.fs13{font-size:30.562561px;}
.fs1d{font-size:31.588614px;}
.fsa{font-size:31.738730px;}
.fse{font-size:32.572800px;}
.fs1e{font-size:34.460306px;}
.fs4{font-size:35.865600px;}
.fs9{font-size:36.272891px;}
.fsc{font-size:39.087360px;}
.fs6{font-size:42.351660px;}
.fs1b{font-size:44.998744px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs1a{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs15{font-size:103.292400px;}
.fsd{font-size:124.069189px;}
.y1b1{bottom:-644.259000px;}
.y1b0{bottom:-623.935500px;}
.y1af{bottom:-603.612000px;}
.y1ae{bottom:-583.287000px;}
.y1ad{bottom:-562.963500px;}
.y1ac{bottom:-542.640000px;}
.y1ab{bottom:-522.316500px;}
.y1aa{bottom:-501.993000px;}
.y1a9{bottom:-481.669500px;}
.y1a8{bottom:-461.344500px;}
.y1a7{bottom:-441.021000px;}
.y1a6{bottom:-420.697500px;}
.y1a5{bottom:-400.374000px;}
.y1a4{bottom:-380.050500px;}
.y1a3{bottom:-359.725500px;}
.y1a2{bottom:-339.402000px;}
.y1a1{bottom:-319.078500px;}
.y1a0{bottom:-298.755000px;}
.y19f{bottom:-278.431500px;}
.y19e{bottom:-258.108000px;}
.y19d{bottom:-237.783000px;}
.y19c{bottom:-217.459500px;}
.y19b{bottom:-197.136000px;}
.y19a{bottom:-176.812500px;}
.y199{bottom:-156.489000px;}
.y198{bottom:-136.164000px;}
.y197{bottom:-115.840500px;}
.y196{bottom:-95.517000px;}
.y195{bottom:-75.193500px;}
.y194{bottom:-54.870000px;}
.y1cd{bottom:-44.677500px;}
.y193{bottom:-34.546500px;}
.y1cc{bottom:-30.481500px;}
.y1cb{bottom:-16.284000px;}
.y192{bottom:-14.221500px;}
.y1ca{bottom:-2.088000px;}
.y0{bottom:0.000000px;}
.y15f{bottom:2.626290px;}
.ya{bottom:3.873000px;}
.y27d{bottom:4.307537px;}
.y1da{bottom:4.622702px;}
.y191{bottom:6.102000px;}
.y234{bottom:9.482338px;}
.y1d7{bottom:10.138351px;}
.y1d9{bottom:11.104606px;}
.y1c9{bottom:12.109500px;}
.ye1{bottom:12.574588px;}
.y15d{bottom:14.837855px;}
.yf3{bottom:15.374646px;}
.y236{bottom:15.508852px;}
.y1db{bottom:16.223458px;}
.y27{bottom:16.317131px;}
.yef{bottom:16.324967px;}
.y27b{bottom:17.824500px;}
.y8{bottom:19.173000px;}
.y27e{bottom:19.383921px;}
.ya8{bottom:19.451197px;}
.y112{bottom:20.316000px;}
.y9{bottom:20.397402px;}
.y233{bottom:21.535364px;}
.y232{bottom:21.535366px;}
.yf4{bottom:21.876000px;}
.ye0{bottom:22.125389px;}
.y11d{bottom:22.444500px;}
.y80{bottom:22.466975px;}
.y2a4{bottom:22.848000px;}
.y151{bottom:22.980038px;}
.yee{bottom:23.159264px;}
.yac{bottom:24.084000px;}
.y22f{bottom:24.504000px;}
.y1e6{bottom:25.404000px;}
.y35{bottom:25.428000px;}
.y38{bottom:25.753500px;}
.y290{bottom:25.845229px;}
.y1c8{bottom:26.305500px;}
.y190{bottom:26.425500px;}
.y3b{bottom:26.850000px;}
.y235{bottom:27.561878px;}
.ya7{bottom:27.594397px;}
.y51{bottom:29.184000px;}
.y8e{bottom:29.488500px;}
.y30d{bottom:29.830500px;}
.yed{bottom:29.993561px;}
.y44{bottom:30.592500px;}
.y42{bottom:30.916585px;}
.y207{bottom:32.272500px;}
.y215{bottom:32.322000px;}
.y2be{bottom:32.410500px;}
.y2de{bottom:32.626500px;}
.y2f2{bottom:33.199500px;}
.y21{bottom:33.252000px;}
.y152{bottom:33.310795px;}
.yab{bottom:33.450000px;}
.y28a{bottom:33.742382px;}
.y27a{bottom:34.263000px;}
.y31f{bottom:34.405500px;}
.y50{bottom:35.367000px;}
.y1dc{bottom:35.507699px;}
.ya6{bottom:35.737597px;}
.y138{bottom:35.949000px;}
.yec{bottom:36.827857px;}
.y2a3{bottom:37.044000px;}
.y23e{bottom:37.119000px;}
.ye8{bottom:37.365091px;}
.y3d{bottom:38.332500px;}
.y231{bottom:40.016671px;}
.y1c7{bottom:40.503000px;}
.y22e{bottom:40.942500px;}
.y1d8{bottom:41.188944px;}
.y26e{bottom:41.667000px;}
.y1e5{bottom:41.842500px;}
.y129{bottom:41.860500px;}
.y2b1{bottom:42.553500px;}
.y3f{bottom:43.197000px;}
.yeb{bottom:43.662154px;}
.y153{bottom:43.682590px;}
.ya5{bottom:43.880797px;}
.ye7{bottom:44.199388px;}
.ye4{bottom:44.272207px;}
.y111{bottom:45.123000px;}
.y34{bottom:45.751500px;}
.y37{bottom:46.077000px;}
.y206{bottom:46.470000px;}
.y214{bottom:46.518000px;}
.y18f{bottom:46.749000px;}
.y322{bottom:47.005500px;}
.y3a{bottom:47.173500px;}
.y9d{bottom:47.472090px;}
.y7f{bottom:47.569738px;}
.y2ca{bottom:47.838000px;}
.y97{bottom:47.926426px;}
.y82{bottom:49.750663px;}
.y2dd{bottom:50.559000px;}
.y279{bottom:50.701500px;}
.ya3{bottom:51.805554px;}
.ya4{bottom:52.023997px;}
.y2a2{bottom:52.119000px;}
.y15e{bottom:52.300104px;}
.yea{bottom:52.546740px;}
.y2bd{bottom:52.735500px;}
.y30c{bottom:53.002500px;}
.ye6{bottom:53.083973px;}
.ye3{bottom:53.156793px;}
.yaa{bottom:53.775000px;}
.y154{bottom:54.013347px;}
.y8d{bottom:54.295500px;}
.y1c6{bottom:54.699000px;}
.y1dd{bottom:54.791940px;}
.y28f{bottom:55.997996px;}
.y9a{bottom:56.079133px;}
.y20{bottom:56.202000px;}
.y28c{bottom:56.715919px;}
.y22d{bottom:57.381000px;}
.y23d{bottom:57.442500px;}
.y1f9{bottom:57.456000px;}
.y180{bottom:57.946500px;}
.y1e4{bottom:58.281000px;}
.y150{bottom:58.560000px;}
.y16d{bottom:58.792500px;}
.y9c{bottom:58.934837px;}
.y31e{bottom:59.212500px;}
.y25b{bottom:59.223000px;}
.ye9{bottom:59.381036px;}
.ye5{bottom:59.918270px;}
.ye2{bottom:59.991090px;}
.y4f{bottom:60.174000px;}
.y205{bottom:60.666000px;}
.y213{bottom:60.715500px;}
.y137{bottom:60.754500px;}
.y2f1{bottom:60.994500px;}
.y81{bottom:61.086068px;}
.y11c{bottom:61.894500px;}
.y62{bottom:61.984248px;}
.y27f{bottom:62.459304px;}
.y2b0{bottom:62.878500px;}
.y298{bottom:63.177227px;}
.y96{bottom:63.408013px;}
.ya1{bottom:63.741727px;}
.y155{bottom:64.344105px;}
.y41{bottom:64.628769px;}
.y27c{bottom:66.255813px;}
.y2a1{bottom:66.315000px;}
.y26d{bottom:66.474000px;}
.y128{bottom:66.667500px;}
.y28b{bottom:66.766842px;}
.y18e{bottom:67.072500px;}
.y249{bottom:67.525500px;}
.y2c9{bottom:68.161500px;}
.y2dc{bottom:68.491500px;}
.y1c5{bottom:68.896500px;}
.y321{bottom:71.812500px;}
.y17f{bottom:72.144000px;}
.y2bc{bottom:73.059000px;}
.y61{bottom:73.319653px;}
.y295{bottom:73.946073px;}
.y2fe{bottom:73.998000px;}
.ya2{bottom:74.017330px;}
.y1de{bottom:74.076182px;}
.ya9{bottom:74.098500px;}
.y156{bottom:74.715898px;}
.y204{bottom:74.863500px;}
.y212{bottom:74.911500px;}
.y99{bottom:76.233553px;}
.y1f8{bottom:77.781000px;}
.y1d6{bottom:78.782342px;}
.y8c{bottom:79.102500px;}
.y25a{bottom:79.546500px;}
.y1f{bottom:81.009000px;}
.y2f0{bottom:81.916500px;}
.y23c{bottom:82.249500px;}
.y22c{bottom:82.929000px;}
.y1c4{bottom:83.092500px;}
.yd9{bottom:83.193698px;}
.y294{bottom:83.996995px;}
.y31d{bottom:84.019500px;}
.yb7{bottom:84.089086px;}
.y136{bottom:84.321000px;}
.y149{bottom:84.607500px;}
.y4e{bottom:84.981000px;}
.y157{bottom:85.046657px;}
.y1d5{bottom:85.318786px;}
.y17e{bottom:86.340000px;}
.y2db{bottom:86.425500px;}
.y11b{bottom:86.701500px;}
.y26c{bottom:86.797500px;}
.y28e{bottom:86.868687px;}
.y127{bottom:86.991000px;}
.y18d{bottom:87.397500px;}
.y248{bottom:87.849000px;}
.y2c8{bottom:88.485000px;}
.yc0{bottom:89.041583px;}
.y203{bottom:89.059500px;}
.y211{bottom:89.109000px;}
.y30b{bottom:89.794500px;}
.yd8{bottom:90.027994px;}
.y278{bottom:90.466500px;}
.ybd{bottom:90.565228px;}
.y9e{bottom:90.673358px;}
.y2af{bottom:90.673500px;}
.yb6{bottom:90.923383px;}
.y1df{bottom:93.360423px;}
.y2bb{bottom:93.382500px;}
.y158{bottom:95.384639px;}
.y320{bottom:96.540000px;}
.yd7{bottom:96.862291px;}
.y1c3{bottom:97.290000px;}
.ybc{bottom:97.399525px;}
.y28d{bottom:97.637533px;}
.yb5{bottom:97.757680px;}
.ybf{bottom:97.926169px;}
.y259{bottom:99.870000px;}
.y1e3{bottom:100.222500px;}
.y17d{bottom:100.537500px;}
.y1f7{bottom:100.953000px;}
.y2fd{bottom:101.793000px;}
.y1e{bottom:103.191000px;}
.y22b{bottom:103.252500px;}
.y202{bottom:103.257000px;}
.y210{bottom:103.305000px;}
.yd6{bottom:103.696588px;}
.y8b{bottom:103.911000px;}
.y30a{bottom:103.992000px;}
.ybb{bottom:104.233822px;}
.y2ef{bottom:104.332500px;}
.yb4{bottom:104.591976px;}
.ybe{bottom:104.760466px;}
.y148{bottom:104.931000px;}
.y8f{bottom:105.456000px;}
.y159{bottom:105.715397px;}
.y23b{bottom:107.058000px;}
.y18c{bottom:107.721000px;}
.y31c{bottom:109.221000px;}
.y25{bottom:109.777500px;}
.y4d{bottom:109.788000px;}
.yd5{bottom:110.530885px;}
.y43{bottom:110.689665px;}
.y277{bottom:110.791500px;}
.y2ae{bottom:110.833500px;}
.yba{bottom:111.068118px;}
.yb3{bottom:111.426273px;}
.y1c2{bottom:111.486000px;}
.y26b{bottom:111.604500px;}
.y2c7{bottom:111.657000px;}
.y126{bottom:111.798000px;}
.y11a{bottom:111.903000px;}
.y1e0{bottom:112.644664px;}
.y247{bottom:112.656000px;}
.y92{bottom:113.299486px;}
.y73{bottom:113.299818px;}
.y2ba{bottom:113.706000px;}
.y1d1{bottom:114.420000px;}
.y17c{bottom:114.733500px;}
.y250{bottom:114.865500px;}
.y15a{bottom:116.046154px;}
.y1ee{bottom:117.267000px;}
.y201{bottom:118.051500px;}
.y20f{bottom:118.099500px;}
.y309{bottom:118.188000px;}
.y297{bottom:118.457301px;}
.y1d4{bottom:119.377458px;}
.yd4{bottom:119.415470px;}
.yb9{bottom:119.952704px;}
.yb2{bottom:120.310859px;}
.y258{bottom:120.792000px;}
.y7{bottom:121.074000px;}
.y98{bottom:121.428313px;}
.y2fc{bottom:121.953000px;}
.y135{bottom:122.388000px;}
.y72{bottom:123.218425px;}
.y2ee{bottom:124.656000px;}
.y147{bottom:125.254500px;}
.y1c1{bottom:125.683500px;}
.y1d{bottom:126.139500px;}
.yd3{bottom:126.249767px;}
.y15b{bottom:126.421368px;}
.y2ad{bottom:126.538500px;}
.y5e{bottom:126.668534px;}
.yb8{bottom:126.787001px;}
.y74{bottom:126.880404px;}
.yb1{bottom:127.145155px;}
.y18b{bottom:128.044500px;}
.y296{bottom:128.508224px;}
.y17b{bottom:128.931000px;}
.y1e2{bottom:129.365416px;}
.y292{bottom:130.661993px;}
.y276{bottom:131.115000px;}
.y22a{bottom:131.895000px;}
.y26a{bottom:131.928000px;}
.y1e1{bottom:131.928905px;}
.y4c{bottom:134.598000px;}
.y24f{bottom:135.189000px;}
.y1ed{bottom:135.199500px;}
.y287{bottom:135.687454px;}
.y125{bottom:136.605000px;}
.y5d{bottom:136.709636px;}
.y15c{bottom:136.748706px;}
.y246{bottom:137.463000px;}
.y29a{bottom:137.841223px;}
.y2da{bottom:137.989500px;}
.y2b9{bottom:138.907500px;}
.y1c0{bottom:139.879500px;}
.y2fb{bottom:139.885500px;}
.y1f6{bottom:139.975500px;}
.y308{bottom:140.449500px;}
.y291{bottom:140.712916px;}
.y6{bottom:141.397500px;}
.y200{bottom:141.580500px;}
.y20e{bottom:141.630000px;}
.y17a{bottom:143.127000px;}
.ycf{bottom:144.336036px;}
.y146{bottom:145.579500px;}
.y286{bottom:145.738377px;}
.y2ac{bottom:146.698500px;}
.y1d3{bottom:147.113019px;}
.y134{bottom:147.195000px;}
.y1c{bottom:148.321500px;}
.y18a{bottom:148.368000px;}
.y299{bottom:148.610069px;}
.y229{bottom:148.930500px;}
.y2ed{bottom:149.464500px;}
.yce{bottom:151.170333px;}
.yc7{bottom:151.243152px;}
.y23a{bottom:151.602000px;}
.y21e{bottom:151.840500px;}
.y9b{bottom:152.190612px;}
.y6b{bottom:153.464239px;}
.y1d2{bottom:153.649463px;}
.y1bf{bottom:154.077000px;}
.y307{bottom:154.645500px;}
.y71{bottom:154.970405px;}
.ya0{bottom:155.013419px;}
.y257{bottom:155.335500px;}
.y275{bottom:155.922000px;}
.y1ec{bottom:156.121500px;}
.y269{bottom:156.735000px;}
.y179{bottom:157.324500px;}
.y119{bottom:157.732500px;}
.ycd{bottom:158.004629px;}
.ydf{bottom:158.077445px;}
.yc6{bottom:158.077449px;}
.y2c6{bottom:158.460000px;}
.y2fa{bottom:158.580000px;}
.y53{bottom:158.640324px;}
.y24e{bottom:159.997500px;}
.y1f5{bottom:160.299000px;}
.y39{bottom:161.064000px;}
.y124{bottom:161.415000px;}
.y5{bottom:161.722500px;}
.y36{bottom:162.159000px;}
.y33{bottom:162.484500px;}
.y2d9{bottom:162.796500px;}
.y6a{bottom:163.382846px;}
.y24{bottom:164.503500px;}
.ycc{bottom:164.838926px;}
.y70{bottom:164.889012px;}
.yde{bottom:164.911742px;}
.yc5{bottom:164.911745px;}
.y228{bottom:165.369000px;}
.y2ab{bottom:165.393000px;}
.y145{bottom:165.903000px;}
.y1be{bottom:168.273000px;}
.y77{bottom:168.468162px;}
.y52{bottom:168.681426px;}
.y189{bottom:168.691500px;}
.y306{bottom:168.843000px;}
.y93{bottom:169.676773px;}
.y21d{bottom:170.371500px;}
.y1b{bottom:171.270000px;}
.y178{bottom:171.520500px;}
.ycb{bottom:171.673223px;}
.ydd{bottom:171.746039px;}
.yc4{bottom:171.746042px;}
.y133{bottom:172.002000px;}
.y245{bottom:174.204000px;}
.y5c{bottom:174.865838px;}
.y2f9{bottom:175.018500px;}
.y274{bottom:176.245500px;}
.y239{bottom:176.409000px;}
.yd2{bottom:177.684950px;}
.y4b{bottom:177.777000px;}
.y2b8{bottom:177.903000px;}
.y76{bottom:178.386753px;}
.yca{bottom:178.507519px;}
.y1eb{bottom:178.537500px;}
.ydc{bottom:178.580335px;}
.yc3{bottom:178.580339px;}
.y2c5{bottom:178.785000px;}
.y256{bottom:180.537000px;}
.y1f4{bottom:180.624000px;}
.y268{bottom:181.545000px;}
.y227{bottom:181.807500px;}
.y1bd{bottom:182.470500px;}
.y94{bottom:182.502313px;}
.y118{bottom:182.539500px;}
.y7a{bottom:182.784260px;}
.y7d{bottom:183.523293px;}
.y2e6{bottom:185.325000px;}
.y177{bottom:185.718000px;}
.y20d{bottom:185.829000px;}
.y1ff{bottom:185.860500px;}
.yd1{bottom:186.569536px;}
.y144{bottom:186.823500px;}
.y55{bottom:186.915169px;}
.yc9{bottom:187.392105px;}
.ydb{bottom:187.464921px;}
.yc2{bottom:187.464925px;}
.y2d8{bottom:187.603500px;}
.y289{bottom:188.095836px;}
.y7e{bottom:188.145212px;}
.y21c{bottom:188.304000px;}
.y75{bottom:188.304860px;}
.y293{bottom:188.813760px;}
.y188{bottom:189.015000px;}
.y12b{bottom:189.334500px;}
.y305{bottom:189.973500px;}
.y2aa{bottom:190.200000px;}
.y40{bottom:192.628219px;}
.yd0{bottom:193.403833px;}
.y1a{bottom:193.819500px;}
.y79{bottom:194.119665px;}
.yc8{bottom:194.226402px;}
.yda{bottom:194.299218px;}
.yc1{bottom:194.299221px;}
.y7c{bottom:194.858698px;}
.y5a{bottom:194.948050px;}
.y244{bottom:195.126000px;}
.y132{bottom:195.175500px;}
.y1bc{bottom:196.666500px;}
.y2f8{bottom:196.672500px;}
.y56{bottom:196.956272px;}
.y281{bottom:197.428836px;}
.y288{bottom:198.146759px;}
.y2b7{bottom:198.226500px;}
.y226{bottom:198.246000px;}
.y1ea{bottom:198.861000px;}
.y176{bottom:199.914000px;}
.y24d{bottom:200.053500px;}
.y95{bottom:200.213773px;}
.y4{bottom:200.680500px;}
.y238{bottom:201.216000px;}
.y283{bottom:202.454297px;}
.y9f{bottom:202.491472px;}
.y4a{bottom:202.584000px;}
.y86{bottom:203.017500px;}
.y2c4{bottom:203.592000px;}
.y304{bottom:204.169500px;}
.y5b{bottom:204.989152px;}
.y78{bottom:205.455071px;}
.y1f3{bottom:205.743000px;}
.y7b{bottom:206.194104px;}
.y29{bottom:206.229000px;}
.y21b{bottom:206.236500px;}
.y2e5{bottom:206.247000px;}
.y280{bottom:206.761836px;}
.y54{bottom:206.997381px;}
.y117{bottom:207.348000px;}
.y123{bottom:208.684500px;}
.y187{bottom:209.340000px;}
.y285{bottom:209.633528px;}
.y2a9{bottom:210.523500px;}
.y20c{bottom:210.636000px;}
.y1fe{bottom:210.667500px;}
.y1bb{bottom:210.864000px;}
.y2d7{bottom:212.331000px;}
.y282{bottom:212.505220px;}
.y2f7{bottom:213.873000px;}
.y175{bottom:214.111500px;}
.y225{bottom:214.684500px;}
.y243{bottom:215.449500px;}
.y14f{bottom:216.163500px;}
.y12a{bottom:216.234000px;}
.y16c{bottom:216.396000px;}
.y303{bottom:218.367000px;}
.y2b6{bottom:218.550000px;}
.y273{bottom:218.596500px;}
.y64{bottom:219.047717px;}
.y91{bottom:219.146715px;}
.y23{bottom:219.231000px;}
.y284{bottom:219.684450px;}
.y24c{bottom:220.377000px;}
.y255{bottom:222.922500px;}
.y6f{bottom:223.751976px;}
.y2c3{bottom:223.915500px;}
.y21a{bottom:224.170500px;}
.y11{bottom:224.719500px;}
.y10b{bottom:224.950263px;}
.y1ba{bottom:225.060000px;}
.y104{bottom:225.487496px;}
.yfd{bottom:225.560316px;}
.y237{bottom:226.023000px;}
.y1e9{bottom:226.657500px;}
.y57{bottom:227.079586px;}
.y49{bottom:227.391000px;}
.y29c{bottom:227.581604px;}
.y85{bottom:227.824500px;}
.y174{bottom:228.307500px;}
.y131{bottom:228.385500px;}
.y260{bottom:228.814500px;}
.y186{bottom:229.663500px;}
.y14e{bottom:230.359500px;}
.y63{bottom:230.383123px;}
.y16b{bottom:230.592000px;}
.y2a8{bottom:230.848500px;}
.y28{bottom:230.956500px;}
.y20b{bottom:230.959500px;}
.y1fd{bottom:230.992500px;}
.y224{bottom:231.123000px;}
.y2e4{bottom:231.651000px;}
.y10a{bottom:231.784559px;}
.y103{bottom:232.321793px;}
.yfc{bottom:232.394613px;}
.y10c{bottom:232.799164px;}
.y6e{bottom:233.670575px;}
.y69{bottom:233.793081px;}
.y90{bottom:234.415213px;}
.y3{bottom:234.616500px;}
.y58{bottom:235.112976px;}
.y13d{bottom:235.260000px;}
.y242{bottom:235.773000px;}
.y2f6{bottom:236.289000px;}
.y122{bottom:236.479500px;}
.y29b{bottom:237.632526px;}
.y109{bottom:238.618856px;}
.y272{bottom:238.920000px;}
.y102{bottom:239.156090px;}
.yfb{bottom:239.228909px;}
.y1b9{bottom:239.257500px;}
.y24b{bottom:240.700500px;}
.y219{bottom:242.103000px;}
.y173{bottom:242.505000px;}
.y254{bottom:243.246000px;}
.y2b5{bottom:243.360000px;}
.y68{bottom:243.711680px;}
.y14d{bottom:244.557000px;}
.y1f2{bottom:244.765500px;}
.y16a{bottom:244.789500px;}
.y302{bottom:245.115000px;}
.y108{bottom:245.453153px;}
.y101{bottom:245.990386px;}
.yfa{bottom:246.063206px;}
.y10{bottom:246.100500px;}
.y130{bottom:246.319500px;}
.y223{bottom:247.560000px;}
.y1e8{bottom:247.578000px;}
.y2c2{bottom:248.722500px;}
.y25f{bottom:249.138000px;}
.y13c{bottom:249.456000px;}
.y2e3{bottom:249.583500px;}
.y185{bottom:249.987000px;}
.y48{bottom:252.198000px;}
.y107{bottom:252.287449px;}
.y84{bottom:252.631500px;}
.y100{bottom:252.824683px;}
.yf9{bottom:252.897503px;}
.y116{bottom:253.179000px;}
.y1b8{bottom:253.453500px;}
.y121{bottom:254.413500px;}
.y59{bottom:255.194685px;}
.y20a{bottom:255.687000px;}
.y1fc{bottom:255.718500px;}
.y2a7{bottom:255.813000px;}
.y241{bottom:256.098000px;}
.y2f5{bottom:256.612500px;}
.y172{bottom:256.701000px;}
.y2ce{bottom:257.466000px;}
.y14c{bottom:258.753000px;}
.y169{bottom:258.987000px;}
.y2a0{bottom:259.114500px;}
.y271{bottom:259.243500px;}
.y218{bottom:260.035500px;}
.y24a{bottom:261.025500px;}
.y106{bottom:261.172035px;}
.yff{bottom:261.709269px;}
.yf8{bottom:261.782088px;}
.y230{bottom:262.490527px;}
.y253{bottom:263.569500px;}
.y13b{bottom:263.653500px;}
.y222{bottom:263.998500px;}
.y12f{bottom:264.252000px;}
.y1f1{bottom:265.090500px;}
.y10e{bottom:266.515769px;}
.yf{bottom:267.481500px;}
.y1b7{bottom:267.651000px;}
.y6d{bottom:267.932839px;}
.y105{bottom:268.006332px;}
.y26{bottom:268.480500px;}
.yfe{bottom:268.543566px;}
.yf7{bottom:268.616385px;}
.y2c1{bottom:269.046000px;}
.y1e7{bottom:269.994000px;}
.y184{bottom:270.310500px;}
.y2e2{bottom:270.505500px;}
.y171{bottom:270.898500px;}
.y25e{bottom:273.945000px;}
.y22{bottom:273.957000px;}
.y10d{bottom:274.872720px;}
.y120{bottom:275.334000px;}
.y240{bottom:276.421500px;}
.y2f4{bottom:276.936000px;}
.y47{bottom:277.005000px;}
.y14b{bottom:277.432500px;}
.y168{bottom:277.666500px;}
.y2cd{bottom:277.789500px;}
.y13a{bottom:277.849500px;}
.y6c{bottom:277.851438px;}
.y115{bottom:277.986000px;}
.y217{bottom:278.566500px;}
.y29f{bottom:279.438000px;}
.y301{bottom:279.790500px;}
.y221{bottom:280.437000px;}
.y1b6{bottom:281.847000px;}
.y12e{bottom:282.184500px;}
.y2b4{bottom:282.510000px;}
.y270{bottom:283.971000px;}
.y67{bottom:283.998607px;}
.y252{bottom:284.491500px;}
.y170{bottom:285.094500px;}
.y1f0{bottom:285.414000px;}
.y2e1{bottom:288.438000px;}
.ye{bottom:288.864000px;}
.y1d0{bottom:290.365500px;}
.y183{bottom:290.634000px;}
.y139{bottom:292.047000px;}
.y60{bottom:293.827843px;}
.y2c0{bottom:293.853000px;}
.y66{bottom:293.917206px;}
.y1b5{bottom:296.044500px;}
.y23f{bottom:297.343500px;}
.y220{bottom:297.474000px;}
.y11f{bottom:297.750000px;}
.y2{bottom:298.228500px;}
.y2a6{bottom:298.516500px;}
.yf6{bottom:298.627115px;}
.y25d{bottom:298.752000px;}
.y209{bottom:298.866000px;}
.yf5{bottom:298.883404px;}
.y1fb{bottom:298.899000px;}
.y16f{bottom:299.292000px;}
.y46{bottom:300.570000px;}
.y2f3{bottom:301.746000px;}
.y14a{bottom:302.242500px;}
.y167{bottom:302.475000px;}
.y2cc{bottom:302.596500px;}
.y2b3{bottom:302.833500px;}
.y216{bottom:303.073500px;}
.y114{bottom:303.097500px;}
.y65{bottom:304.119976px;}
.y29e{bottom:304.245000px;}
.y300{bottom:304.597500px;}
.y5f{bottom:305.163249px;}
.yf2{bottom:305.461453px;}
.yf0{bottom:305.717739px;}
.yf1{bottom:305.717741px;}
.y1ef{bottom:305.737500px;}
.y1b4{bottom:310.240500px;}
.yd{bottom:310.245000px;}
.y2e0{bottom:310.854000px;}
.y182{bottom:310.959000px;}
.y1cf{bottom:312.183000px;}
.yb0{bottom:312.295708px;}
.yaf{bottom:312.295710px;}
.yae{bottom:312.551994px;}
.y26f{bottom:312.931500px;}
.y16e{bottom:313.488000px;}
.y3c{bottom:314.548500px;}
.y12d{bottom:317.182500px;}
.y2a5{bottom:318.841500px;}
.y2bf{bottom:319.054500px;}
.yad{bottom:319.130005px;}
.y11e{bottom:320.923500px;}
.y3e{bottom:322.288500px;}
.y21f{bottom:322.572000px;}
.y25c{bottom:323.560500px;}
.y208{bottom:323.674500px;}
.y1fa{bottom:323.707500px;}
.y1{bottom:323.931000px;}
.y1b3{bottom:324.438000px;}
.y29d{bottom:324.568500px;}
.y251{bottom:327.253500px;}
.y2cb{bottom:327.324000px;}
.y2b2{bottom:328.035000px;}
.y2ff{bottom:329.404500px;}
.yc{bottom:331.626000px;}
.y181{bottom:331.879500px;}
.y45{bottom:332.125500px;}
.y1ce{bottom:332.508000px;}
.y113{bottom:333.255000px;}
.y2df{bottom:335.818500px;}
.y83{bottom:337.000500px;}
.y12c{bottom:337.506000px;}
.y1b2{bottom:338.634000px;}
.yb{bottom:362.751000px;}
.y110{bottom:3020.354685px;}
.y2c{bottom:3025.466685px;}
.y2f{bottom:3025.792185px;}
.y32{bottom:3026.888685px;}
.y8a{bottom:3029.527185px;}
.y2d6{bottom:3032.665185px;}
.y2ec{bottom:3033.238185px;}
.y19{bottom:3033.290685px;}
.y318{bottom:3034.444185px;}
.y267{bottom:3041.705685px;}
.y10f{bottom:3045.161685px;}
.y2b{bottom:3045.790185px;}
.y2e{bottom:3046.115685px;}
.y311{bottom:3046.639185px;}
.y31b{bottom:3047.044185px;}
.y31{bottom:3047.212185px;}
.y2d5{bottom:3050.597685px;}
.y89{bottom:3054.334185px;}
.y18{bottom:3056.240685px;}
.y166{bottom:3058.831185px;}
.y314{bottom:3059.239185px;}
.y317{bottom:3059.251185px;}
.y2eb{bottom:3061.033185px;}
.y266{bottom:3066.512685px;}
.y2d4{bottom:3068.530185px;}
.y310{bottom:3071.446185px;}
.y31a{bottom:3071.851185px;}
.y88{bottom:3079.141185px;}
.y17{bottom:3081.047685px;}
.y2ea{bottom:3081.955185px;}
.y313{bottom:3084.046185px;}
.y316{bottom:3084.058185px;}
.y143{bottom:3084.646185px;}
.y2d3{bottom:3086.464185px;}
.y265{bottom:3086.836185px;}
.y30f{bottom:3096.253185px;}
.y319{bottom:3096.578685px;}
.y16{bottom:3103.229685px;}
.y87{bottom:3103.949685px;}
.y2e9{bottom:3104.371185px;}
.y142{bottom:3104.969685px;}
.y312{bottom:3108.772185px;}
.y315{bottom:3109.259685px;}
.y264{bottom:3111.643185px;}
.y30e{bottom:3121.454685px;}
.y2e8{bottom:3124.694685px;}
.y141{bottom:3125.293185px;}
.y15{bottom:3126.178185px;}
.y263{bottom:3131.966685px;}
.y2d2{bottom:3138.028185px;}
.y140{bottom:3145.618185px;}
.y14{bottom:3148.360185px;}
.y2e7{bottom:3149.503185px;}
.y262{bottom:3156.773685px;}
.y30{bottom:3161.102685px;}
.y2d{bottom:3162.197685px;}
.y2a{bottom:3162.523185px;}
.y2d1{bottom:3162.835185px;}
.y13f{bottom:3165.941685px;}
.y13{bottom:3171.308685px;}
.y261{bottom:3181.583685px;}
.y13e{bottom:3186.862185px;}
.y2d0{bottom:3187.642185px;}
.y12{bottom:3193.858185px;}
.y2cf{bottom:3212.369685px;}
.y165{bottom:3216.434685px;}
.y164{bottom:3230.630685px;}
.y163{bottom:3244.828185px;}
.y162{bottom:3259.025685px;}
.y161{bottom:3277.705185px;}
.y160{bottom:3302.513685px;}
.h2d{height:-2676.154185px;}
.h1d{height:14.068149px;}
.h22{height:15.387598px;}
.h21{height:15.387610px;}
.h1c{height:16.412755px;}
.h1f{height:16.615884px;}
.hf{height:16.706527px;}
.h1e{height:16.733348px;}
.h32{height:17.617742px;}
.h3c{height:18.816034px;}
.h1a{height:19.798155px;}
.h23{height:20.317835px;}
.h11{height:20.669246px;}
.h3f{height:20.906704px;}
.h2a{height:21.283892px;}
.h2f{height:21.705156px;}
.h16{height:21.722800px;}
.h15{height:22.272924px;}
.h3d{height:22.997375px;}
.h20{height:23.220383px;}
.h13{height:24.113996px;}
.h3e{height:25.088045px;}
.h7{height:25.392845px;}
.hd{height:26.648141px;}
.h19{height:27.371390px;}
.h2c{height:27.398067px;}
.h2b{height:27.533314px;}
.h12{height:27.558896px;}
.hc{height:28.206206px;}
.h17{height:28.963734px;}
.h30{height:31.702164px;}
.h41{height:33.411125px;}
.h40{height:33.417125px;}
.h34{height:33.856985px;}
.h33{height:35.187825px;}
.h6{height:35.259465px;}
.h4{height:35.530706px;}
.h8{height:35.841857px;}
.h28{height:35.961091px;}
.h35{height:38.089267px;}
.ha{height:41.037857px;}
.h38{height:41.578840px;}
.h25{height:42.321125px;}
.h27{height:44.413271px;}
.h3{height:46.341857px;}
.h24{height:48.632768px;}
.h36{height:51.108480px;}
.h42{height:56.786820px;}
.h37{height:60.666893px;}
.h2{height:60.942658px;}
.h9{height:62.181870px;}
.hb{height:72.840146px;}
.h26{height:73.131019px;}
.h39{height:89.790940px;}
.h5{height:91.054594px;}
.h18{height:91.935269px;}
.h3a{height:138.003049px;}
.h29{height:148.823100px;}
.h2e{height:163.847059px;}
.h31{height:163.850688px;}
.he{height:205.400085px;}
.h14{height:246.630013px;}
.h3b{height:249.837218px;}
.h10{height:312.275865px;}
.h1b{height:328.001922px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w9{width:-2674.055685px;}
.wa{width:178.669952px;}
.wb{width:218.467584px;}
.w4{width:291.677925px;}
.w8{width:297.646200px;}
.w3{width:333.363113px;}
.w2{width:416.724081px;}
.w5{width:583.333957px;}
.wd{width:595.158182px;}
.w7{width:595.267192px;}
.w6{width:595.276717px;}
.wc{width:656.488095px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1f{left:4.184426px;}
.x2f{left:6.145841px;}
.x69{left:7.176011px;}
.x77{left:9.366417px;}
.x80{left:11.944483px;}
.x55{left:14.106881px;}
.x7b{left:16.248000px;}
.xa{left:18.136500px;}
.x70{left:20.418000px;}
.x75{left:22.002018px;}
.x66{left:23.520573px;}
.x74{left:26.457820px;}
.x1c{left:28.347000px;}
.x73{left:30.913622px;}
.x72{left:33.143233px;}
.x19{left:36.141000px;}
.x67{left:37.465116px;}
.x68{left:39.189710px;}
.xac{left:40.910396px;}
.x10{left:42.519000px;}
.x76{left:44.291287px;}
.x43{left:45.470220px;}
.x21{left:48.475500px;}
.x84{left:53.536500px;}
.x85{left:54.792000px;}
.x11{left:57.912000px;}
.x59{left:60.995158px;}
.x83{left:62.869500px;}
.x32{left:72.515952px;}
.x97{left:73.596000px;}
.xb{left:75.247500px;}
.x65{left:76.922058px;}
.x8f{left:86.380013px;}
.x6c{left:92.069107px;}
.x99{left:94.077000px;}
.x12{left:95.596500px;}
.x14{left:96.786303px;}
.x52{left:98.638558px;}
.x47{left:100.108156px;}
.x7d{left:101.889931px;}
.x7f{left:106.619844px;}
.x6e{left:107.974500px;}
.x51{left:108.998260px;}
.x4d{left:112.735681px;}
.x81{left:114.111740px;}
.x9{left:120.988740px;}
.x82{left:125.155500px;}
.x35{left:126.453163px;}
.x36{left:129.382179px;}
.x48{left:130.472405px;}
.x8{left:131.812500px;}
.x2{left:135.441000px;}
.x4f{left:137.083325px;}
.x37{left:139.423284px;}
.xbc{left:140.701500px;}
.x15{left:141.831000px;}
.x4b{left:143.272681px;}
.x33{left:145.590030px;}
.x34{left:149.464385px;}
.x78{left:155.053700px;}
.x3e{left:159.505492px;}
.x3d{left:161.186963px;}
.x7c{left:163.392000px;}
.x5a{left:165.708040px;}
.x4{left:168.261000px;}
.xa0{left:171.213432px;}
.x13{left:173.481000px;}
.xaa{left:175.442444px;}
.x56{left:191.216674px;}
.xa4{left:193.233474px;}
.x5d{left:203.041017px;}
.x4c{left:204.346681px;}
.x2b{left:208.656567px;}
.x2a{left:218.697670px;}
.x4a{left:219.865680px;}
.x5b{left:224.969974px;}
.x94{left:226.620000px;}
.x28{left:230.173402px;}
.x2d{left:233.964587px;}
.x2e{left:238.835211px;}
.x29{left:240.214505px;}
.xa3{left:242.130768px;}
.x6{left:244.275000px;}
.x1a{left:250.866000px;}
.x22{left:252.216513px;}
.x5c{left:253.238935px;}
.x2c{left:255.259842px;}
.x27{left:258.288494px;}
.x1{left:259.869000px;}
.x9a{left:262.187743px;}
.x26{left:263.680989px;}
.x23{left:265.269952px;}
.x63{left:267.492704px;}
.xa9{left:269.916629px;}
.xb9{left:271.396500px;}
.x24{left:273.722098px;}
.xa8{left:277.387516px;}
.x3{left:278.695500px;}
.x6f{left:281.346000px;}
.x25{left:283.763201px;}
.xba{left:290.073000px;}
.x49{left:293.478826px;}
.x5{left:297.915000px;}
.x4e{left:299.402400px;}
.x89{left:308.691000px;}
.x7{left:314.581500px;}
.x44{left:316.363173px;}
.x7e{left:322.305000px;}
.xb2{left:323.466000px;}
.x3c{left:324.531684px;}
.x3b{left:326.910541px;}
.x3a{left:330.729966px;}
.x3f{left:332.895275px;}
.x54{left:335.157015px;}
.x39{left:337.116520px;}
.x45{left:338.293500px;}
.xae{left:342.236162px;}
.xb3{left:343.816500px;}
.x38{left:344.865230px;}
.x1d{left:354.331500px;}
.xad{left:355.585044px;}
.xaf{left:357.682721px;}
.x1e{left:358.813500px;}
.x53{left:362.978784px;}
.x86{left:364.252500px;}
.x46{left:371.020500px;}
.x9f{left:375.283057px;}
.x9e{left:380.768434px;}
.x98{left:384.298500px;}
.x96{left:385.387500px;}
.x87{left:389.520000px;}
.xb0{left:393.320874px;}
.x20{left:399.829500px;}
.x95{left:401.551500px;}
.x60{left:403.703647px;}
.x88{left:404.799000px;}
.x6b{left:406.091375px;}
.x5e{left:407.740153px;}
.xb1{left:409.719000px;}
.x5f{left:411.392232px;}
.xc1{left:413.862000px;}
.x91{left:415.427599px;}
.xa6{left:419.166103px;}
.x90{left:423.864718px;}
.xa7{left:429.934949px;}
.x8a{left:438.532500px;}
.x30{left:442.176875px;}
.x8d{left:444.208500px;}
.x50{left:446.079652px;}
.x8e{left:449.251500px;}
.x8b{left:455.715000px;}
.x42{left:460.755042px;}
.x40{left:462.785210px;}
.x1b{left:465.589500px;}
.x9d{left:467.300596px;}
.x31{left:469.815476px;}
.xab{left:471.125783px;}
.x8c{left:473.347500px;}
.x9c{left:475.646451px;}
.x41{left:485.752395px;}
.x58{left:487.238394px;}
.x62{left:492.609352px;}
.x6a{left:508.178734px;}
.xb4{left:509.733000px;}
.x9b{left:511.329474px;}
.x64{left:513.123337px;}
.x6d{left:514.190183px;}
.x61{left:516.420894px;}
.x57{left:517.763165px;}
.xa5{left:525.676714px;}
.xa2{left:528.918588px;}
.xb5{left:530.083500px;}
.xa1{left:534.403966px;}
.x93{left:594.615900px;}
.x92{left:607.070698px;}
.xbd{left:3028.385685px;}
.x16{left:3036.179685px;}
.xc{left:3042.557685px;}
.xd{left:3057.950685px;}
.xbe{left:3061.112685px;}
.xb8{left:3071.662185px;}
.xe{left:3075.286185px;}
.xf{left:3095.635185px;}
.xbb{left:3108.013185px;}
.x17{left:3250.904685px;}
.x71{left:3273.212685px;}
.x7a{left:3332.267685px;}
.x79{left:3354.370185px;}
.xb6{left:3399.497685px;}
.xbf{left:3413.900685px;}
.xb7{left:3419.848185px;}
.xc0{left:3446.627685px;}
.x18{left:3465.628185px;}
@media print{
.v1{vertical-align:-9.333333pt;}
.v9{vertical-align:-7.914667pt;}
.v2{vertical-align:-4.714667pt;}
.v8{vertical-align:-2.552615pt;}
.v4{vertical-align:-0.911240pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.875507pt;}
.v5{vertical-align:9.337920pt;}
.v6{vertical-align:15.617852pt;}
.v7{vertical-align:42.855200pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000725pt;}
.ls18{letter-spacing:0.000946pt;}
.ls12{letter-spacing:0.001174pt;}
.lsa{letter-spacing:0.015843pt;}
.ls17{letter-spacing:5.313400pt;}
.ls5{letter-spacing:7.272733pt;}
.ls3{letter-spacing:14.545467pt;}
.lse{letter-spacing:20.960640pt;}
.ls13{letter-spacing:27.189095pt;}
.ls14{letter-spacing:27.189351pt;}
.ls16{letter-spacing:27.200725pt;}
.ls8{letter-spacing:27.202882pt;}
.ls7{letter-spacing:27.204608pt;}
.lsd{letter-spacing:27.206059pt;}
.ls11{letter-spacing:27.629680pt;}
.ls10{letter-spacing:32.683392pt;}
.lsf{letter-spacing:32.688037pt;}
.ls19{letter-spacing:44.631552pt;}
.ls2{letter-spacing:46.666152pt;}
.ls1{letter-spacing:46.812885pt;}
.ls6{letter-spacing:63.756885pt;}
.lsc{letter-spacing:63.762219pt;}
.ls9{letter-spacing:118.167552pt;}
.ls15{letter-spacing:172.578219pt;}
.ls4{letter-spacing:205.542534pt;}
.ws14{word-spacing:-21.818200pt;}
.ws2{word-spacing:-14.545467pt;}
.ws6a{word-spacing:-11.955200pt;}
.wse{word-spacing:-11.702746pt;}
.ws5{word-spacing:-11.220414pt;}
.ws6b{word-spacing:-9.999721pt;}
.ws6{word-spacing:-9.817847pt;}
.ws9{word-spacing:-9.658921pt;}
.ws2b{word-spacing:-7.893655pt;}
.ws8{word-spacing:-7.244191pt;}
.ws2a{word-spacing:-6.315310pt;}
.wsd{word-spacing:-6.087074pt;}
.wsc{word-spacing:-5.217519pt;}
.ws77{word-spacing:-0.465455pt;}
.ws7d{word-spacing:-0.407273pt;}
.ws7e{word-spacing:-0.380341pt;}
.ws79{word-spacing:-0.290909pt;}
.ws5b{word-spacing:-0.058182pt;}
.ws1a{word-spacing:-0.042507pt;}
.ws7{word-spacing:-0.026058pt;}
.wsf{word-spacing:-0.019440pt;}
.ws81{word-spacing:-0.003729pt;}
.ws5f{word-spacing:-0.003478pt;}
.ws6f{word-spacing:-0.002499pt;}
.ws70{word-spacing:-0.001572pt;}
.ws7f{word-spacing:-0.001121pt;}
.ws76{word-spacing:-0.001075pt;}
.ws80{word-spacing:-0.000656pt;}
.ws0{word-spacing:0.000000pt;}
.ws75{word-spacing:0.000288pt;}
.ws7c{word-spacing:0.000842pt;}
.ws3{word-spacing:0.001394pt;}
.ws60{word-spacing:0.002830pt;}
.ws15{word-spacing:2.215968pt;}
.ws78{word-spacing:2.425626pt;}
.ws61{word-spacing:2.443638pt;}
.ws13{word-spacing:14.484538pt;}
.ws82{word-spacing:14.486117pt;}
.ws12{word-spacing:14.487055pt;}
.ws2d{word-spacing:27.158431pt;}
.ws18{word-spacing:27.160394pt;}
.ws31{word-spacing:27.161589pt;}
.ws36{word-spacing:27.161845pt;}
.ws1{word-spacing:27.162101pt;}
.ws53{word-spacing:27.162570pt;}
.ws28{word-spacing:27.163295pt;}
.ws27{word-spacing:27.163765pt;}
.ws1b{word-spacing:27.164277pt;}
.ws2e{word-spacing:27.165002pt;}
.ws20{word-spacing:27.165727pt;}
.ws34{word-spacing:27.167178pt;}
.ws4d{word-spacing:27.587173pt;}
.ws10{word-spacing:28.072282pt;}
.ws11{word-spacing:28.072288pt;}
.ws38{word-spacing:28.510415pt;}
.ws59{word-spacing:28.515625pt;}
.ws2c{word-spacing:28.520100pt;}
.ws17{word-spacing:28.522331pt;}
.ws33{word-spacing:28.522421pt;}
.ws26{word-spacing:28.523502pt;}
.ws35{word-spacing:28.524277pt;}
.ws4e{word-spacing:28.525727pt;}
.ws1c{word-spacing:28.526453pt;}
.ws3d{word-spacing:28.527178pt;}
.ws37{word-spacing:28.527935pt;}
.ws4f{word-spacing:28.546596pt;}
.ws1f{word-spacing:29.202446pt;}
.ws3c{word-spacing:29.585011pt;}
.ws22{word-spacing:30.010083pt;}
.ws3f{word-spacing:30.334453pt;}
.ws1e{word-spacing:30.339786pt;}
.ws3a{word-spacing:30.350141pt;}
.ws21{word-spacing:30.562677pt;}
.ws2f{word-spacing:30.573865pt;}
.ws29{word-spacing:30.579198pt;}
.ws58{word-spacing:30.690198pt;}
.ws30{word-spacing:30.824394pt;}
.ws3b{word-spacing:30.860227pt;}
.ws41{word-spacing:30.870943pt;}
.ws24{word-spacing:31.023178pt;}
.ws51{word-spacing:31.023903pt;}
.ws25{word-spacing:31.028511pt;}
.ws32{word-spacing:31.029237pt;}
.ws16{word-spacing:31.030256pt;}
.ws52{word-spacing:31.283061pt;}
.ws19{word-spacing:31.285299pt;}
.ws1d{word-spacing:31.288394pt;}
.ws5c{word-spacing:40.653729pt;}
.ws63{word-spacing:47.819515pt;}
.ws44{word-spacing:49.215323pt;}
.ws67{word-spacing:53.132150pt;}
.ws64{word-spacing:53.132171pt;}
.ws66{word-spacing:53.132685pt;}
.ws62{word-spacing:53.133302pt;}
.ws43{word-spacing:54.393595pt;}
.ws54{word-spacing:58.072394pt;}
.ws55{word-spacing:58.488394pt;}
.ws50{word-spacing:58.493727pt;}
.ws4{word-spacing:61.543227pt;}
.ws42{word-spacing:63.727223pt;}
.ws3e{word-spacing:63.732557pt;}
.wsa{word-spacing:73.268451pt;}
.ws45{word-spacing:76.269891pt;}
.ws5d{word-spacing:77.515535pt;}
.ws46{word-spacing:81.444261pt;}
.ws69{word-spacing:100.828171pt;}
.ws47{word-spacing:103.324459pt;}
.ws48{word-spacing:108.500261pt;}
.ws39{word-spacing:118.137890pt;}
.ws49{word-spacing:130.379027pt;}
.ws68{word-spacing:134.028171pt;}
.ws7b{word-spacing:134.156897pt;}
.ws4a{word-spacing:135.556261pt;}
.ws6c{word-spacing:138.671250pt;}
.ws6e{word-spacing:139.362162pt;}
.ws23{word-spacing:143.874286pt;}
.ws4b{word-spacing:157.428261pt;}
.ws6d{word-spacing:161.669896pt;}
.ws4c{word-spacing:162.612261pt;}
.ws56{word-spacing:172.548557pt;}
.ws7a{word-spacing:192.961761pt;}
.wsb{word-spacing:214.175293pt;}
.ws65{word-spacing:218.700171pt;}
.ws40{word-spacing:226.959223pt;}
.ws57{word-spacing:254.159223pt;}
.ws5a{word-spacing:281.364557pt;}
.ws5e{word-spacing:320.443355pt;}
.ws74{word-spacing:496.105483pt;}
.ws73{word-spacing:534.854606pt;}
.ws71{word-spacing:639.467034pt;}
.ws72{word-spacing:644.120151pt;}
._11{margin-left:-512.965140pt;}
._17{margin-left:-7.272733pt;}
._9{margin-left:-4.654549pt;}
._1{margin-left:-3.665458pt;}
._d{margin-left:-2.618184pt;}
._0{margin-left:-1.338183pt;}
._c{width:0.989092pt;}
._4{width:1.882387pt;}
._5{width:3.152999pt;}
._2{width:4.141252pt;}
._b{width:5.089132pt;}
._3{width:6.305997pt;}
._e{width:7.272733pt;}
._1f{width:9.342709pt;}
._20{width:11.424559pt;}
._4b{width:12.412102pt;}
._10{width:13.652141pt;}
._18{width:15.090018pt;}
._12{width:16.465468pt;}
._8{width:17.861833pt;}
._13{width:22.455789pt;}
._f{width:24.261838pt;}
._19{width:30.610790pt;}
._1a{width:31.915441pt;}
._15{width:37.236395pt;}
._1e{width:40.478909pt;}
._1d{width:57.151068pt;}
._21{width:58.489907pt;}
._1b{width:63.757856pt;}
._1c{width:68.216811pt;}
._7{width:71.476156pt;}
._39{width:84.698557pt;}
._33{width:87.226381pt;}
._3d{width:89.340587pt;}
._23{width:90.811456pt;}
._41{width:92.546688pt;}
._25{width:95.989728pt;}
._3e{width:107.608132pt;}
._36{width:111.454971pt;}
._40{width:113.921920pt;}
._26{width:117.871357pt;}
._31{width:120.421048pt;}
._27{width:123.045728pt;}
._32{width:124.889637pt;}
._3a{width:126.939981pt;}
._3c{width:128.171341pt;}
._3f{width:131.857920pt;}
._38{width:142.720739pt;}
._28{width:144.925925pt;}
._29{width:150.101728pt;}
._37{width:165.568302pt;}
._2a{width:171.975160pt;}
._2b{width:177.157728pt;}
._4a{width:182.276619pt;}
._47{width:184.195623pt;}
._22{width:187.921872pt;}
._48{width:197.231815pt;}
._2c{width:199.029728pt;}
._2e{width:205.098381pt;}
._2f{width:209.561637pt;}
._30{width:229.326971pt;}
._49{width:235.338482pt;}
._34{width:237.189048pt;}
._42{width:272.904197pt;}
._46{width:276.006609pt;}
._43{width:283.336639pt;}
._3b{width:299.015953pt;}
._35{width:344.943485pt;}
._45{width:404.588507pt;}
._44{width:427.218153pt;}
._24{width:442.118123pt;}
._16{width:448.349465pt;}
._4c{width:465.811550pt;}
._2d{width:469.169827pt;}
._a{width:531.303511pt;}
._14{width:971.095723pt;}
._6{width:985.922389pt;}
._4d{width:1000.743723pt;}
.fs11{font-size:16.459052pt;}
.fs19{font-size:16.857067pt;}
.fs10{font-size:19.202126pt;}
.fs12{font-size:19.439777pt;}
.fs17{font-size:19.922113pt;}
.fs18{font-size:20.768000pt;}
.fs7{font-size:20.915840pt;}
.fs1c{font-size:22.973537pt;}
.fsf{font-size:23.162880pt;}
.fs14{font-size:23.770881pt;}
.fs8{font-size:24.182015pt;}
.fs16{font-size:24.901120pt;}
.fs1f{font-size:25.526153pt;}
.fsb{font-size:26.058240pt;}
.fs13{font-size:27.166721pt;}
.fs1d{font-size:28.078768pt;}
.fsa{font-size:28.212204pt;}
.fse{font-size:28.953600pt;}
.fs1e{font-size:30.631383pt;}
.fs4{font-size:31.880533pt;}
.fs9{font-size:32.242570pt;}
.fsc{font-size:34.744320pt;}
.fs6{font-size:37.645920pt;}
.fs1b{font-size:39.998884pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs1a{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs15{font-size:91.815467pt;}
.fsd{font-size:110.283724pt;}
.y1b1{bottom:-572.674667pt;}
.y1b0{bottom:-554.609333pt;}
.y1af{bottom:-536.544000pt;}
.y1ae{bottom:-518.477333pt;}
.y1ad{bottom:-500.412000pt;}
.y1ac{bottom:-482.346667pt;}
.y1ab{bottom:-464.281333pt;}
.y1aa{bottom:-446.216000pt;}
.y1a9{bottom:-428.150667pt;}
.y1a8{bottom:-410.084000pt;}
.y1a7{bottom:-392.018667pt;}
.y1a6{bottom:-373.953333pt;}
.y1a5{bottom:-355.888000pt;}
.y1a4{bottom:-337.822667pt;}
.y1a3{bottom:-319.756000pt;}
.y1a2{bottom:-301.690667pt;}
.y1a1{bottom:-283.625333pt;}
.y1a0{bottom:-265.560000pt;}
.y19f{bottom:-247.494667pt;}
.y19e{bottom:-229.429333pt;}
.y19d{bottom:-211.362667pt;}
.y19c{bottom:-193.297333pt;}
.y19b{bottom:-175.232000pt;}
.y19a{bottom:-157.166667pt;}
.y199{bottom:-139.101333pt;}
.y198{bottom:-121.034667pt;}
.y197{bottom:-102.969333pt;}
.y196{bottom:-84.904000pt;}
.y195{bottom:-66.838667pt;}
.y194{bottom:-48.773333pt;}
.y1cd{bottom:-39.713333pt;}
.y193{bottom:-30.708000pt;}
.y1cc{bottom:-27.094667pt;}
.y1cb{bottom:-14.474667pt;}
.y192{bottom:-12.641333pt;}
.y1ca{bottom:-1.856000pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:2.334480pt;}
.ya{bottom:3.442667pt;}
.y27d{bottom:3.828922pt;}
.y1da{bottom:4.109068pt;}
.y191{bottom:5.424000pt;}
.y234{bottom:8.428745pt;}
.y1d7{bottom:9.011868pt;}
.y1d9{bottom:9.870761pt;}
.y1c9{bottom:10.764000pt;}
.ye1{bottom:11.177412pt;}
.y15d{bottom:13.189204pt;}
.yf3{bottom:13.666352pt;}
.y236{bottom:13.785646pt;}
.y1db{bottom:14.420852pt;}
.y27{bottom:14.504117pt;}
.yef{bottom:14.511082pt;}
.y27b{bottom:15.844000pt;}
.y8{bottom:17.042667pt;}
.y27e{bottom:17.230152pt;}
.ya8{bottom:17.289953pt;}
.y112{bottom:18.058667pt;}
.y9{bottom:18.131024pt;}
.y233{bottom:19.142546pt;}
.y232{bottom:19.142547pt;}
.yf4{bottom:19.445333pt;}
.ye0{bottom:19.667012pt;}
.y11d{bottom:19.950667pt;}
.y80{bottom:19.970645pt;}
.y2a4{bottom:20.309333pt;}
.y151{bottom:20.426700pt;}
.yee{bottom:20.586012pt;}
.yac{bottom:21.408000pt;}
.y22f{bottom:21.781333pt;}
.y1e6{bottom:22.581333pt;}
.y35{bottom:22.602667pt;}
.y38{bottom:22.892000pt;}
.y290{bottom:22.973537pt;}
.y1c8{bottom:23.382667pt;}
.y190{bottom:23.489333pt;}
.y3b{bottom:23.866667pt;}
.y235{bottom:24.499447pt;}
.ya7{bottom:24.528353pt;}
.y51{bottom:25.941333pt;}
.y8e{bottom:26.212000pt;}
.y30d{bottom:26.516000pt;}
.yed{bottom:26.660943pt;}
.y44{bottom:27.193333pt;}
.y42{bottom:27.481409pt;}
.y207{bottom:28.686667pt;}
.y215{bottom:28.730667pt;}
.y2be{bottom:28.809333pt;}
.y2de{bottom:29.001333pt;}
.y2f2{bottom:29.510667pt;}
.y21{bottom:29.557333pt;}
.y152{bottom:29.609596pt;}
.yab{bottom:29.733333pt;}
.y28a{bottom:29.993229pt;}
.y27a{bottom:30.456000pt;}
.y31f{bottom:30.582667pt;}
.y50{bottom:31.437333pt;}
.y1dc{bottom:31.562399pt;}
.ya6{bottom:31.766753pt;}
.y138{bottom:31.954667pt;}
.yec{bottom:32.735873pt;}
.y2a3{bottom:32.928000pt;}
.y23e{bottom:32.994667pt;}
.ye8{bottom:33.213415pt;}
.y3d{bottom:34.073333pt;}
.y231{bottom:35.570374pt;}
.y1c7{bottom:36.002667pt;}
.y22e{bottom:36.393333pt;}
.y1d8{bottom:36.612395pt;}
.y26e{bottom:37.037333pt;}
.y1e5{bottom:37.193333pt;}
.y129{bottom:37.209333pt;}
.y2b1{bottom:37.825333pt;}
.y3f{bottom:38.397333pt;}
.yeb{bottom:38.810804pt;}
.y153{bottom:38.828969pt;}
.ya5{bottom:39.005153pt;}
.ye7{bottom:39.288345pt;}
.ye4{bottom:39.353073pt;}
.y111{bottom:40.109333pt;}
.y34{bottom:40.668000pt;}
.y37{bottom:40.957333pt;}
.y206{bottom:41.306667pt;}
.y214{bottom:41.349333pt;}
.y18f{bottom:41.554667pt;}
.y322{bottom:41.782667pt;}
.y3a{bottom:41.932000pt;}
.y9d{bottom:42.197413pt;}
.y7f{bottom:42.284212pt;}
.y2ca{bottom:42.522667pt;}
.y97{bottom:42.601267pt;}
.y82{bottom:44.222812pt;}
.y2dd{bottom:44.941333pt;}
.y279{bottom:45.068000pt;}
.ya3{bottom:46.049381pt;}
.ya4{bottom:46.243553pt;}
.y2a2{bottom:46.328000pt;}
.y15e{bottom:46.488981pt;}
.yea{bottom:46.708213pt;}
.y2bd{bottom:46.876000pt;}
.y30c{bottom:47.113333pt;}
.ye6{bottom:47.185754pt;}
.ye3{bottom:47.250483pt;}
.yaa{bottom:47.800000pt;}
.y154{bottom:48.011864pt;}
.y8d{bottom:48.262667pt;}
.y1c6{bottom:48.621333pt;}
.y1dd{bottom:48.703947pt;}
.y28f{bottom:49.775997pt;}
.y9a{bottom:49.848118pt;}
.y20{bottom:49.957333pt;}
.y28c{bottom:50.414151pt;}
.y22d{bottom:51.005333pt;}
.y23d{bottom:51.060000pt;}
.y1f9{bottom:51.072000pt;}
.y180{bottom:51.508000pt;}
.y1e4{bottom:51.805333pt;}
.y150{bottom:52.053333pt;}
.y16d{bottom:52.260000pt;}
.y9c{bottom:52.386522pt;}
.y31e{bottom:52.633333pt;}
.y25b{bottom:52.642667pt;}
.ye9{bottom:52.783144pt;}
.ye5{bottom:53.260685pt;}
.ye2{bottom:53.325413pt;}
.y4f{bottom:53.488000pt;}
.y205{bottom:53.925333pt;}
.y213{bottom:53.969333pt;}
.y137{bottom:54.004000pt;}
.y2f1{bottom:54.217333pt;}
.y81{bottom:54.298728pt;}
.y11c{bottom:55.017333pt;}
.y62{bottom:55.097109pt;}
.y27f{bottom:55.519381pt;}
.y2b0{bottom:55.892000pt;}
.y298{bottom:56.157535pt;}
.y96{bottom:56.362678pt;}
.ya1{bottom:56.659313pt;}
.y155{bottom:57.194760pt;}
.y41{bottom:57.447795pt;}
.y27c{bottom:58.894056pt;}
.y2a1{bottom:58.946667pt;}
.y26d{bottom:59.088000pt;}
.y128{bottom:59.260000pt;}
.y28b{bottom:59.348304pt;}
.y18e{bottom:59.620000pt;}
.y249{bottom:60.022667pt;}
.y2c9{bottom:60.588000pt;}
.y2dc{bottom:60.881333pt;}
.y1c5{bottom:61.241333pt;}
.y321{bottom:63.833333pt;}
.y17f{bottom:64.128000pt;}
.y2bc{bottom:64.941333pt;}
.y61{bottom:65.173025pt;}
.y295{bottom:65.729842pt;}
.y2fe{bottom:65.776000pt;}
.ya2{bottom:65.793182pt;}
.y1de{bottom:65.845495pt;}
.ya9{bottom:65.865333pt;}
.y156{bottom:66.414132pt;}
.y204{bottom:66.545333pt;}
.y212{bottom:66.588000pt;}
.y99{bottom:67.763158pt;}
.y1f8{bottom:69.138667pt;}
.y1d6{bottom:70.028748pt;}
.y8c{bottom:70.313333pt;}
.y25a{bottom:70.708000pt;}
.y1f{bottom:72.008000pt;}
.y2f0{bottom:72.814667pt;}
.y23c{bottom:73.110667pt;}
.y22c{bottom:73.714667pt;}
.y1c4{bottom:73.860000pt;}
.yd9{bottom:73.949954pt;}
.y294{bottom:74.663996pt;}
.y31d{bottom:74.684000pt;}
.yb7{bottom:74.745854pt;}
.y136{bottom:74.952000pt;}
.y149{bottom:75.206667pt;}
.y4e{bottom:75.538667pt;}
.y157{bottom:75.597029pt;}
.y1d5{bottom:75.838921pt;}
.y17e{bottom:76.746667pt;}
.y2db{bottom:76.822667pt;}
.y11b{bottom:77.068000pt;}
.y26c{bottom:77.153333pt;}
.y28e{bottom:77.216611pt;}
.y127{bottom:77.325333pt;}
.y18d{bottom:77.686667pt;}
.y248{bottom:78.088000pt;}
.y2c8{bottom:78.653333pt;}
.yc0{bottom:79.148074pt;}
.y203{bottom:79.164000pt;}
.y211{bottom:79.208000pt;}
.y30b{bottom:79.817333pt;}
.yd8{bottom:80.024884pt;}
.y278{bottom:80.414667pt;}
.ybd{bottom:80.502425pt;}
.y9e{bottom:80.598540pt;}
.y2af{bottom:80.598667pt;}
.yb6{bottom:80.820785pt;}
.y1df{bottom:82.987042pt;}
.y2bb{bottom:83.006667pt;}
.y158{bottom:84.786346pt;}
.y320{bottom:85.813333pt;}
.yd7{bottom:86.099814pt;}
.y1c3{bottom:86.480000pt;}
.ybc{bottom:86.577356pt;}
.y28d{bottom:86.788918pt;}
.yb5{bottom:86.895715pt;}
.ybf{bottom:87.045484pt;}
.y259{bottom:88.773333pt;}
.y1e3{bottom:89.086667pt;}
.y17d{bottom:89.366667pt;}
.y1f7{bottom:89.736000pt;}
.y2fd{bottom:90.482667pt;}
.y1e{bottom:91.725333pt;}
.y22b{bottom:91.780000pt;}
.y202{bottom:91.784000pt;}
.y210{bottom:91.826667pt;}
.yd6{bottom:92.174745pt;}
.y8b{bottom:92.365333pt;}
.y30a{bottom:92.437333pt;}
.ybb{bottom:92.652286pt;}
.y2ef{bottom:92.740000pt;}
.yb4{bottom:92.970646pt;}
.ybe{bottom:93.120414pt;}
.y148{bottom:93.272000pt;}
.y8f{bottom:93.738667pt;}
.y159{bottom:93.969241pt;}
.y23b{bottom:95.162667pt;}
.y18c{bottom:95.752000pt;}
.y31c{bottom:97.085333pt;}
.y25{bottom:97.580000pt;}
.y4d{bottom:97.589333pt;}
.yd5{bottom:98.249675pt;}
.y43{bottom:98.390813pt;}
.y277{bottom:98.481333pt;}
.y2ae{bottom:98.518667pt;}
.yba{bottom:98.727216pt;}
.yb3{bottom:99.045576pt;}
.y1c2{bottom:99.098667pt;}
.y26b{bottom:99.204000pt;}
.y2c7{bottom:99.250667pt;}
.y126{bottom:99.376000pt;}
.y11a{bottom:99.469333pt;}
.y1e0{bottom:100.128590pt;}
.y247{bottom:100.138667pt;}
.y92{bottom:100.710654pt;}
.y73{bottom:100.710950pt;}
.y2ba{bottom:101.072000pt;}
.y1d1{bottom:101.706667pt;}
.y17c{bottom:101.985333pt;}
.y250{bottom:102.102667pt;}
.y15a{bottom:103.152137pt;}
.y1ee{bottom:104.237333pt;}
.y201{bottom:104.934667pt;}
.y20f{bottom:104.977333pt;}
.y309{bottom:105.056000pt;}
.y297{bottom:105.295379pt;}
.y1d4{bottom:106.113296pt;}
.yd4{bottom:106.147085pt;}
.yb9{bottom:106.624626pt;}
.yb2{bottom:106.942985pt;}
.y258{bottom:107.370667pt;}
.y7{bottom:107.621333pt;}
.y98{bottom:107.936278pt;}
.y2fc{bottom:108.402667pt;}
.y135{bottom:108.789333pt;}
.y72{bottom:109.527489pt;}
.y2ee{bottom:110.805333pt;}
.y147{bottom:111.337333pt;}
.y1c1{bottom:111.718667pt;}
.y1d{bottom:112.124000pt;}
.yd3{bottom:112.222015pt;}
.y15b{bottom:112.374549pt;}
.y2ad{bottom:112.478667pt;}
.y5e{bottom:112.594252pt;}
.yb8{bottom:112.699556pt;}
.y74{bottom:112.782581pt;}
.yb1{bottom:113.017916pt;}
.y18b{bottom:113.817333pt;}
.y296{bottom:114.229532pt;}
.y17b{bottom:114.605333pt;}
.y1e2{bottom:114.991481pt;}
.y292{bottom:116.143994pt;}
.y276{bottom:116.546667pt;}
.y22a{bottom:117.240000pt;}
.y26a{bottom:117.269333pt;}
.y1e1{bottom:117.270138pt;}
.y4c{bottom:119.642667pt;}
.y24f{bottom:120.168000pt;}
.y1ed{bottom:120.177333pt;}
.y287{bottom:120.611070pt;}
.y125{bottom:121.426667pt;}
.y5d{bottom:121.519677pt;}
.y15c{bottom:121.554406pt;}
.y246{bottom:122.189333pt;}
.y29a{bottom:122.525532pt;}
.y2da{bottom:122.657333pt;}
.y2b9{bottom:123.473333pt;}
.y1c0{bottom:124.337333pt;}
.y2fb{bottom:124.342667pt;}
.y1f6{bottom:124.422667pt;}
.y308{bottom:124.844000pt;}
.y291{bottom:125.078147pt;}
.y6{bottom:125.686667pt;}
.y200{bottom:125.849333pt;}
.y20e{bottom:125.893333pt;}
.y17a{bottom:127.224000pt;}
.ycf{bottom:128.298699pt;}
.y146{bottom:129.404000pt;}
.y286{bottom:129.545224pt;}
.y2ac{bottom:130.398667pt;}
.y1d3{bottom:130.767128pt;}
.y134{bottom:130.840000pt;}
.y1c{bottom:131.841333pt;}
.y18a{bottom:131.882667pt;}
.y299{bottom:132.097839pt;}
.y229{bottom:132.382667pt;}
.y2ed{bottom:132.857333pt;}
.yce{bottom:134.373629pt;}
.yc7{bottom:134.438357pt;}
.y23a{bottom:134.757333pt;}
.y21e{bottom:134.969333pt;}
.y9b{bottom:135.280544pt;}
.y6b{bottom:136.412657pt;}
.y1d2{bottom:136.577301pt;}
.y1bf{bottom:136.957333pt;}
.y307{bottom:137.462667pt;}
.y71{bottom:137.751471pt;}
.ya0{bottom:137.789706pt;}
.y257{bottom:138.076000pt;}
.y275{bottom:138.597333pt;}
.y1ec{bottom:138.774667pt;}
.y269{bottom:139.320000pt;}
.y179{bottom:139.844000pt;}
.y119{bottom:140.206667pt;}
.ycd{bottom:140.448559pt;}
.ydf{bottom:140.513285pt;}
.yc6{bottom:140.513288pt;}
.y2c6{bottom:140.853333pt;}
.y2fa{bottom:140.960000pt;}
.y53{bottom:141.013621pt;}
.y24e{bottom:142.220000pt;}
.y1f5{bottom:142.488000pt;}
.y39{bottom:143.168000pt;}
.y124{bottom:143.480000pt;}
.y5{bottom:143.753333pt;}
.y36{bottom:144.141333pt;}
.y33{bottom:144.430667pt;}
.y2d9{bottom:144.708000pt;}
.y6a{bottom:145.229197pt;}
.y24{bottom:146.225333pt;}
.ycc{bottom:146.523490pt;}
.y70{bottom:146.568011pt;}
.yde{bottom:146.588215pt;}
.yc5{bottom:146.588218pt;}
.y228{bottom:146.994667pt;}
.y2ab{bottom:147.016000pt;}
.y145{bottom:147.469333pt;}
.y1be{bottom:149.576000pt;}
.y77{bottom:149.749477pt;}
.y52{bottom:149.939045pt;}
.y189{bottom:149.948000pt;}
.y306{bottom:150.082667pt;}
.y93{bottom:150.823798pt;}
.y21d{bottom:151.441333pt;}
.y1b{bottom:152.240000pt;}
.y178{bottom:152.462667pt;}
.ycb{bottom:152.598420pt;}
.ydd{bottom:152.663146pt;}
.yc4{bottom:152.663149pt;}
.y133{bottom:152.890667pt;}
.y245{bottom:154.848000pt;}
.y5c{bottom:155.436300pt;}
.y2f9{bottom:155.572000pt;}
.y274{bottom:156.662667pt;}
.y239{bottom:156.808000pt;}
.yd2{bottom:157.942178pt;}
.y4b{bottom:158.024000pt;}
.y2b8{bottom:158.136000pt;}
.y76{bottom:158.566003pt;}
.yca{bottom:158.673351pt;}
.y1eb{bottom:158.700000pt;}
.ydc{bottom:158.738076pt;}
.yc3{bottom:158.738079pt;}
.y2c5{bottom:158.920000pt;}
.y256{bottom:160.477333pt;}
.y1f4{bottom:160.554667pt;}
.y268{bottom:161.373333pt;}
.y227{bottom:161.606667pt;}
.y1bd{bottom:162.196000pt;}
.y94{bottom:162.224278pt;}
.y118{bottom:162.257333pt;}
.y7a{bottom:162.474898pt;}
.y7d{bottom:163.131816pt;}
.y2e6{bottom:164.733333pt;}
.y177{bottom:165.082667pt;}
.y20d{bottom:165.181333pt;}
.y1ff{bottom:165.209333pt;}
.yd1{bottom:165.839588pt;}
.y144{bottom:166.065333pt;}
.y55{bottom:166.146817pt;}
.yc9{bottom:166.570760pt;}
.ydb{bottom:166.635485pt;}
.yc2{bottom:166.635488pt;}
.y2d8{bottom:166.758667pt;}
.y289{bottom:167.196299pt;}
.y7e{bottom:167.240188pt;}
.y21c{bottom:167.381333pt;}
.y75{bottom:167.382098pt;}
.y293{bottom:167.834453pt;}
.y188{bottom:168.013333pt;}
.y12b{bottom:168.297333pt;}
.y305{bottom:168.865333pt;}
.y2aa{bottom:169.066667pt;}
.y40{bottom:171.225084pt;}
.yd0{bottom:171.914518pt;}
.y1a{bottom:172.284000pt;}
.y79{bottom:172.550814pt;}
.yc8{bottom:172.645691pt;}
.yda{bottom:172.710416pt;}
.yc1{bottom:172.710419pt;}
.y7c{bottom:173.207732pt;}
.y5a{bottom:173.287155pt;}
.y244{bottom:173.445333pt;}
.y132{bottom:173.489333pt;}
.y1bc{bottom:174.814667pt;}
.y2f8{bottom:174.820000pt;}
.y56{bottom:175.072241pt;}
.y281{bottom:175.492299pt;}
.y288{bottom:176.130453pt;}
.y2b7{bottom:176.201333pt;}
.y226{bottom:176.218667pt;}
.y1ea{bottom:176.765333pt;}
.y176{bottom:177.701333pt;}
.y24d{bottom:177.825333pt;}
.y95{bottom:177.967798pt;}
.y4{bottom:178.382667pt;}
.y238{bottom:178.858667pt;}
.y283{bottom:179.959375pt;}
.y9f{bottom:179.992420pt;}
.y4a{bottom:180.074667pt;}
.y86{bottom:180.460000pt;}
.y2c4{bottom:180.970667pt;}
.y304{bottom:181.484000pt;}
.y5b{bottom:182.212580pt;}
.y78{bottom:182.626729pt;}
.y1f3{bottom:182.882667pt;}
.y7b{bottom:183.283648pt;}
.y29{bottom:183.314667pt;}
.y21b{bottom:183.321333pt;}
.y2e5{bottom:183.330667pt;}
.y280{bottom:183.788298pt;}
.y54{bottom:183.997672pt;}
.y117{bottom:184.309333pt;}
.y123{bottom:185.497333pt;}
.y187{bottom:186.080000pt;}
.y285{bottom:186.340914pt;}
.y2a9{bottom:187.132000pt;}
.y20c{bottom:187.232000pt;}
.y1fe{bottom:187.260000pt;}
.y1bb{bottom:187.434667pt;}
.y2d7{bottom:188.738667pt;}
.y282{bottom:188.893529pt;}
.y2f7{bottom:190.109333pt;}
.y175{bottom:190.321333pt;}
.y225{bottom:190.830667pt;}
.y243{bottom:191.510667pt;}
.y14f{bottom:192.145333pt;}
.y12a{bottom:192.208000pt;}
.y16c{bottom:192.352000pt;}
.y303{bottom:194.104000pt;}
.y2b6{bottom:194.266667pt;}
.y273{bottom:194.308000pt;}
.y64{bottom:194.709082pt;}
.y91{bottom:194.797080pt;}
.y23{bottom:194.872000pt;}
.y284{bottom:195.275067pt;}
.y24c{bottom:195.890667pt;}
.y255{bottom:198.153333pt;}
.y6f{bottom:198.890645pt;}
.y2c3{bottom:199.036000pt;}
.y21a{bottom:199.262667pt;}
.y11{bottom:199.750667pt;}
.y10b{bottom:199.955789pt;}
.y1ba{bottom:200.053333pt;}
.y104{bottom:200.433330pt;}
.yfd{bottom:200.498059pt;}
.y237{bottom:200.909333pt;}
.y1e9{bottom:201.473333pt;}
.y57{bottom:201.848521pt;}
.y49{bottom:202.125333pt;}
.y29c{bottom:202.294759pt;}
.y85{bottom:202.510667pt;}
.y174{bottom:202.940000pt;}
.y131{bottom:203.009333pt;}
.y260{bottom:203.390667pt;}
.y186{bottom:204.145333pt;}
.y14e{bottom:204.764000pt;}
.y63{bottom:204.784998pt;}
.y16b{bottom:204.970667pt;}
.y2a8{bottom:205.198667pt;}
.y28{bottom:205.294667pt;}
.y20b{bottom:205.297333pt;}
.y1fd{bottom:205.326667pt;}
.y224{bottom:205.442667pt;}
.y2e4{bottom:205.912000pt;}
.y10a{bottom:206.030719pt;}
.y103{bottom:206.508261pt;}
.yfc{bottom:206.572989pt;}
.y10c{bottom:206.932591pt;}
.y6e{bottom:207.707178pt;}
.y69{bottom:207.816072pt;}
.y90{bottom:208.369078pt;}
.y3{bottom:208.548000pt;}
.y58{bottom:208.989312pt;}
.y13d{bottom:209.120000pt;}
.y242{bottom:209.576000pt;}
.y2f6{bottom:210.034667pt;}
.y122{bottom:210.204000pt;}
.y29b{bottom:211.228912pt;}
.y109{bottom:212.105650pt;}
.y272{bottom:212.373333pt;}
.y102{bottom:212.583191pt;}
.yfb{bottom:212.647919pt;}
.y1b9{bottom:212.673333pt;}
.y24b{bottom:213.956000pt;}
.y219{bottom:215.202667pt;}
.y173{bottom:215.560000pt;}
.y254{bottom:216.218667pt;}
.y2b5{bottom:216.320000pt;}
.y68{bottom:216.632605pt;}
.y14d{bottom:217.384000pt;}
.y1f2{bottom:217.569333pt;}
.y16a{bottom:217.590667pt;}
.y302{bottom:217.880000pt;}
.y108{bottom:218.180580pt;}
.y101{bottom:218.658121pt;}
.yfa{bottom:218.722850pt;}
.y10{bottom:218.756000pt;}
.y130{bottom:218.950667pt;}
.y223{bottom:220.053333pt;}
.y1e8{bottom:220.069333pt;}
.y2c2{bottom:221.086667pt;}
.y25f{bottom:221.456000pt;}
.y13c{bottom:221.738667pt;}
.y2e3{bottom:221.852000pt;}
.y185{bottom:222.210667pt;}
.y48{bottom:224.176000pt;}
.y107{bottom:224.255511pt;}
.y84{bottom:224.561333pt;}
.y100{bottom:224.733052pt;}
.yf9{bottom:224.797780pt;}
.y116{bottom:225.048000pt;}
.y1b8{bottom:225.292000pt;}
.y121{bottom:226.145333pt;}
.y59{bottom:226.839720pt;}
.y20a{bottom:227.277333pt;}
.y1fc{bottom:227.305333pt;}
.y2a7{bottom:227.389333pt;}
.y241{bottom:227.642667pt;}
.y2f5{bottom:228.100000pt;}
.y172{bottom:228.178667pt;}
.y2ce{bottom:228.858667pt;}
.y14c{bottom:230.002667pt;}
.y169{bottom:230.210667pt;}
.y2a0{bottom:230.324000pt;}
.y271{bottom:230.438667pt;}
.y218{bottom:231.142667pt;}
.y24a{bottom:232.022667pt;}
.y106{bottom:232.152920pt;}
.yff{bottom:232.630461pt;}
.yf8{bottom:232.695190pt;}
.y230{bottom:233.324913pt;}
.y253{bottom:234.284000pt;}
.y13b{bottom:234.358667pt;}
.y222{bottom:234.665333pt;}
.y12f{bottom:234.890667pt;}
.y1f1{bottom:235.636000pt;}
.y10e{bottom:236.902906pt;}
.yf{bottom:237.761333pt;}
.y1b7{bottom:237.912000pt;}
.y6d{bottom:238.162523pt;}
.y105{bottom:238.227851pt;}
.y26{bottom:238.649333pt;}
.yfe{bottom:238.705392pt;}
.yf7{bottom:238.770120pt;}
.y2c1{bottom:239.152000pt;}
.y1e7{bottom:239.994667pt;}
.y184{bottom:240.276000pt;}
.y2e2{bottom:240.449333pt;}
.y171{bottom:240.798667pt;}
.y25e{bottom:243.506667pt;}
.y22{bottom:243.517333pt;}
.y10d{bottom:244.331306pt;}
.y120{bottom:244.741333pt;}
.y240{bottom:245.708000pt;}
.y2f4{bottom:246.165333pt;}
.y47{bottom:246.226667pt;}
.y14b{bottom:246.606667pt;}
.y168{bottom:246.814667pt;}
.y2cd{bottom:246.924000pt;}
.y13a{bottom:246.977333pt;}
.y6c{bottom:246.979056pt;}
.y115{bottom:247.098667pt;}
.y217{bottom:247.614667pt;}
.y29f{bottom:248.389333pt;}
.y301{bottom:248.702667pt;}
.y221{bottom:249.277333pt;}
.y1b6{bottom:250.530667pt;}
.y12e{bottom:250.830667pt;}
.y2b4{bottom:251.120000pt;}
.y270{bottom:252.418667pt;}
.y67{bottom:252.443206pt;}
.y252{bottom:252.881333pt;}
.y170{bottom:253.417333pt;}
.y1f0{bottom:253.701333pt;}
.y2e1{bottom:256.389333pt;}
.ye{bottom:256.768000pt;}
.y1d0{bottom:258.102667pt;}
.y183{bottom:258.341333pt;}
.y139{bottom:259.597333pt;}
.y60{bottom:261.180305pt;}
.y2c0{bottom:261.202667pt;}
.y66{bottom:261.259739pt;}
.y1b5{bottom:263.150667pt;}
.y23f{bottom:264.305333pt;}
.y220{bottom:264.421333pt;}
.y11f{bottom:264.666667pt;}
.y2{bottom:265.092000pt;}
.y2a6{bottom:265.348000pt;}
.yf6{bottom:265.446324pt;}
.y25d{bottom:265.557333pt;}
.y209{bottom:265.658667pt;}
.yf5{bottom:265.674137pt;}
.y1fb{bottom:265.688000pt;}
.y16f{bottom:266.037333pt;}
.y46{bottom:267.173333pt;}
.y2f3{bottom:268.218667pt;}
.y14a{bottom:268.660000pt;}
.y167{bottom:268.866667pt;}
.y2cc{bottom:268.974667pt;}
.y2b3{bottom:269.185333pt;}
.y216{bottom:269.398667pt;}
.y114{bottom:269.420000pt;}
.y65{bottom:270.328868pt;}
.y29e{bottom:270.440000pt;}
.y300{bottom:270.753333pt;}
.y5f{bottom:271.256221pt;}
.yf2{bottom:271.521292pt;}
.yf0{bottom:271.749102pt;}
.yf1{bottom:271.749103pt;}
.y1ef{bottom:271.766667pt;}
.y1b4{bottom:275.769333pt;}
.yd{bottom:275.773333pt;}
.y2e0{bottom:276.314667pt;}
.y182{bottom:276.408000pt;}
.y1cf{bottom:277.496000pt;}
.yb0{bottom:277.596185pt;}
.yaf{bottom:277.596187pt;}
.yae{bottom:277.823995pt;}
.y26f{bottom:278.161333pt;}
.y16e{bottom:278.656000pt;}
.y3c{bottom:279.598667pt;}
.y12d{bottom:281.940000pt;}
.y2a5{bottom:283.414667pt;}
.y2bf{bottom:283.604000pt;}
.yad{bottom:283.671116pt;}
.y11e{bottom:285.265333pt;}
.y3e{bottom:286.478667pt;}
.y21f{bottom:286.730667pt;}
.y25c{bottom:287.609333pt;}
.y208{bottom:287.710667pt;}
.y1fa{bottom:287.740000pt;}
.y1{bottom:287.938667pt;}
.y1b3{bottom:288.389333pt;}
.y29d{bottom:288.505333pt;}
.y251{bottom:290.892000pt;}
.y2cb{bottom:290.954667pt;}
.y2b2{bottom:291.586667pt;}
.y2ff{bottom:292.804000pt;}
.yc{bottom:294.778667pt;}
.y181{bottom:295.004000pt;}
.y45{bottom:295.222667pt;}
.y1ce{bottom:295.562667pt;}
.y113{bottom:296.226667pt;}
.y2df{bottom:298.505333pt;}
.y83{bottom:299.556000pt;}
.y12c{bottom:300.005333pt;}
.y1b2{bottom:301.008000pt;}
.yb{bottom:322.445333pt;}
.y110{bottom:2684.759720pt;}
.y2c{bottom:2689.303720pt;}
.y2f{bottom:2689.593053pt;}
.y32{bottom:2690.567720pt;}
.y8a{bottom:2692.913053pt;}
.y2d6{bottom:2695.702387pt;}
.y2ec{bottom:2696.211720pt;}
.y19{bottom:2696.258387pt;}
.y318{bottom:2697.283720pt;}
.y267{bottom:2703.738387pt;}
.y10f{bottom:2706.810387pt;}
.y2b{bottom:2707.369053pt;}
.y2e{bottom:2707.658387pt;}
.y311{bottom:2708.123720pt;}
.y31b{bottom:2708.483720pt;}
.y31{bottom:2708.633053pt;}
.y2d5{bottom:2711.642387pt;}
.y89{bottom:2714.963720pt;}
.y18{bottom:2716.658387pt;}
.y166{bottom:2718.961053pt;}
.y314{bottom:2719.323720pt;}
.y317{bottom:2719.334387pt;}
.y2eb{bottom:2720.918387pt;}
.y266{bottom:2725.789053pt;}
.y2d4{bottom:2727.582387pt;}
.y310{bottom:2730.174387pt;}
.y31a{bottom:2730.534387pt;}
.y88{bottom:2737.014387pt;}
.y17{bottom:2738.709053pt;}
.y2ea{bottom:2739.515720pt;}
.y313{bottom:2741.374387pt;}
.y316{bottom:2741.385053pt;}
.y143{bottom:2741.907720pt;}
.y2d3{bottom:2743.523720pt;}
.y265{bottom:2743.854387pt;}
.y30f{bottom:2752.225053pt;}
.y319{bottom:2752.514387pt;}
.y16{bottom:2758.426387pt;}
.y87{bottom:2759.066387pt;}
.y2e9{bottom:2759.441053pt;}
.y142{bottom:2759.973053pt;}
.y312{bottom:2763.353053pt;}
.y315{bottom:2763.786387pt;}
.y264{bottom:2765.905053pt;}
.y30e{bottom:2774.626387pt;}
.y2e8{bottom:2777.506387pt;}
.y141{bottom:2778.038387pt;}
.y15{bottom:2778.825053pt;}
.y263{bottom:2783.970387pt;}
.y2d2{bottom:2789.358387pt;}
.y140{bottom:2796.105053pt;}
.y14{bottom:2798.542387pt;}
.y2e7{bottom:2799.558387pt;}
.y262{bottom:2806.021053pt;}
.y30{bottom:2809.869053pt;}
.y2d{bottom:2810.842387pt;}
.y2a{bottom:2811.131720pt;}
.y2d1{bottom:2811.409053pt;}
.y13f{bottom:2814.170387pt;}
.y13{bottom:2818.941053pt;}
.y261{bottom:2828.074387pt;}
.y13e{bottom:2832.766387pt;}
.y2d0{bottom:2833.459720pt;}
.y12{bottom:2838.985053pt;}
.y2cf{bottom:2855.439720pt;}
.y165{bottom:2859.053053pt;}
.y164{bottom:2871.671720pt;}
.y163{bottom:2884.291720pt;}
.y162{bottom:2896.911720pt;}
.y161{bottom:2913.515720pt;}
.y160{bottom:2935.567720pt;}
.h2d{height:-2378.803720pt;}
.h1d{height:12.505022pt;}
.h22{height:13.677864pt;}
.h21{height:13.677876pt;}
.h1c{height:14.589115pt;}
.h1f{height:14.769675pt;}
.hf{height:14.850246pt;}
.h1e{height:14.874087pt;}
.h32{height:15.660215pt;}
.h3c{height:16.725363pt;}
.h1a{height:17.598360pt;}
.h23{height:18.060298pt;}
.h11{height:18.372663pt;}
.h3f{height:18.583737pt;}
.h2a{height:18.919015pt;}
.h2f{height:19.293472pt;}
.h16{height:19.309156pt;}
.h15{height:19.798155pt;}
.h3d{height:20.442111pt;}
.h20{height:20.640341pt;}
.h13{height:21.434663pt;}
.h3e{height:22.300485pt;}
.h7{height:22.571418pt;}
.hd{height:23.687236pt;}
.h19{height:24.330124pt;}
.h2c{height:24.353837pt;}
.h2b{height:24.474057pt;}
.h12{height:24.496796pt;}
.hc{height:25.072183pt;}
.h17{height:25.745541pt;}
.h30{height:28.179701pt;}
.h41{height:29.698778pt;}
.h40{height:29.704111pt;}
.h34{height:30.095098pt;}
.h33{height:31.278067pt;}
.h6{height:31.341747pt;}
.h4{height:31.582850pt;}
.h8{height:31.859428pt;}
.h28{height:31.965414pt;}
.h35{height:33.857126pt;}
.ha{height:36.478095pt;}
.h38{height:36.958969pt;}
.h25{height:37.618778pt;}
.h27{height:39.478463pt;}
.h3{height:41.192762pt;}
.h24{height:43.229127pt;}
.h36{height:45.429760pt;}
.h42{height:50.477173pt;}
.h37{height:53.926127pt;}
.h2{height:54.171251pt;}
.h9{height:55.272773pt;}
.hb{height:64.746796pt;}
.h26{height:65.005350pt;}
.h39{height:79.814169pt;}
.h5{height:80.937417pt;}
.h18{height:81.720239pt;}
.h3a{height:122.669377pt;}
.h29{height:132.287200pt;}
.h2e{height:145.641830pt;}
.h31{height:145.645056pt;}
.he{height:182.577853pt;}
.h14{height:219.226678pt;}
.h3b{height:222.077527pt;}
.h10{height:277.578546pt;}
.h1b{height:291.557264pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w9{width:-2376.938387pt;}
.wa{width:158.817735pt;}
.wb{width:194.193408pt;}
.w4{width:259.269267pt;}
.w8{width:264.574400pt;}
.w3{width:296.322767pt;}
.w2{width:370.421406pt;}
.w5{width:518.519073pt;}
.wd{width:529.029495pt;}
.w7{width:529.126393pt;}
.w6{width:529.134860pt;}
.wc{width:583.544973pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1f{left:3.719490pt;}
.x2f{left:5.462969pt;}
.x69{left:6.378677pt;}
.x77{left:8.325704pt;}
.x80{left:10.617318pt;}
.x55{left:12.539450pt;}
.x7b{left:14.442667pt;}
.xa{left:16.121333pt;}
.x70{left:18.149333pt;}
.x75{left:19.557349pt;}
.x66{left:20.907176pt;}
.x74{left:23.518062pt;}
.x1c{left:25.197333pt;}
.x73{left:27.478775pt;}
.x72{left:29.460651pt;}
.x19{left:32.125333pt;}
.x67{left:33.302325pt;}
.x68{left:34.835297pt;}
.xac{left:36.364796pt;}
.x10{left:37.794667pt;}
.x76{left:39.370033pt;}
.x43{left:40.417973pt;}
.x21{left:43.089333pt;}
.x84{left:47.588000pt;}
.x85{left:48.704000pt;}
.x11{left:51.477333pt;}
.x59{left:54.217918pt;}
.x83{left:55.884000pt;}
.x32{left:64.458624pt;}
.x97{left:65.418667pt;}
.xb{left:66.886667pt;}
.x65{left:68.375163pt;}
.x8f{left:76.782233pt;}
.x6c{left:81.839206pt;}
.x99{left:83.624000pt;}
.x12{left:84.974667pt;}
.x14{left:86.032269pt;}
.x52{left:87.678718pt;}
.x47{left:88.985028pt;}
.x7d{left:90.568828pt;}
.x7f{left:94.773194pt;}
.x6e{left:95.977333pt;}
.x51{left:96.887342pt;}
.x4d{left:100.209495pt;}
.x81{left:101.432658pt;}
.x9{left:107.545547pt;}
.x82{left:111.249333pt;}
.x35{left:112.402811pt;}
.x36{left:115.006382pt;}
.x48{left:115.975471pt;}
.x8{left:117.166667pt;}
.x2{left:120.392000pt;}
.x4f{left:121.851844pt;}
.x37{left:123.931808pt;}
.xbc{left:125.068000pt;}
.x15{left:126.072000pt;}
.x4b{left:127.353495pt;}
.x33{left:129.413360pt;}
.x34{left:132.857231pt;}
.x78{left:137.825511pt;}
.x3e{left:141.782660pt;}
.x3d{left:143.277300pt;}
.x7c{left:145.237333pt;}
.x5a{left:147.296036pt;}
.x4{left:149.565333pt;}
.xa0{left:152.189717pt;}
.x13{left:154.205333pt;}
.xaa{left:155.948839pt;}
.x56{left:169.970377pt;}
.xa4{left:171.763088pt;}
.x5d{left:180.480904pt;}
.x4c{left:181.641495pt;}
.x2b{left:185.472504pt;}
.x2a{left:194.397929pt;}
.x4a{left:195.436160pt;}
.x5b{left:199.973310pt;}
.x94{left:201.440000pt;}
.x28{left:204.598580pt;}
.x2d{left:207.968522pt;}
.x2e{left:212.297966pt;}
.x29{left:213.524004pt;}
.xa3{left:215.227349pt;}
.x6{left:217.133333pt;}
.x1a{left:222.992000pt;}
.x22{left:224.192456pt;}
.x5c{left:225.101275pt;}
.x2c{left:226.897637pt;}
.x27{left:229.589773pt;}
.x1{left:230.994667pt;}
.x9a{left:233.055771pt;}
.x26{left:234.383102pt;}
.x23{left:235.795513pt;}
.x63{left:237.771292pt;}
.xa9{left:239.925893pt;}
.xb9{left:241.241333pt;}
.x24{left:243.308532pt;}
.xa8{left:246.566681pt;}
.x3{left:247.729333pt;}
.x6f{left:250.085333pt;}
.x25{left:252.233956pt;}
.xba{left:257.842667pt;}
.x49{left:260.870068pt;}
.x5{left:264.813333pt;}
.x4e{left:266.135467pt;}
.x89{left:274.392000pt;}
.x7{left:279.628000pt;}
.x44{left:281.211709pt;}
.x7e{left:286.493333pt;}
.xb2{left:287.525333pt;}
.x3c{left:288.472608pt;}
.x3b{left:290.587148pt;}
.x3a{left:293.982192pt;}
.x3f{left:295.906911pt;}
.x54{left:297.917346pt;}
.x39{left:299.659129pt;}
.x45{left:300.705333pt;}
.xae{left:304.209922pt;}
.xb3{left:305.614667pt;}
.x38{left:306.546871pt;}
.x1d{left:314.961333pt;}
.xad{left:316.075594pt;}
.xaf{left:317.940197pt;}
.x1e{left:318.945333pt;}
.x53{left:322.647808pt;}
.x86{left:323.780000pt;}
.x46{left:329.796000pt;}
.x9f{left:333.584940pt;}
.x9e{left:338.460830pt;}
.x98{left:341.598667pt;}
.x96{left:342.566667pt;}
.x87{left:346.240000pt;}
.xb0{left:349.618554pt;}
.x20{left:355.404000pt;}
.x95{left:356.934667pt;}
.x60{left:358.847686pt;}
.x88{left:359.821333pt;}
.x6b{left:360.970111pt;}
.x5e{left:362.435692pt;}
.xb1{left:364.194667pt;}
.x5f{left:365.681984pt;}
.xc1{left:367.877333pt;}
.x91{left:369.268977pt;}
.xa6{left:372.592092pt;}
.x90{left:376.768638pt;}
.xa7{left:382.164399pt;}
.x8a{left:389.806667pt;}
.x30{left:393.046111pt;}
.x8d{left:394.852000pt;}
.x50{left:396.515246pt;}
.x8e{left:399.334667pt;}
.x8b{left:405.080000pt;}
.x42{left:409.560038pt;}
.x40{left:411.364631pt;}
.x1b{left:413.857333pt;}
.x9d{left:415.378308pt;}
.x31{left:417.613756pt;}
.xab{left:418.778474pt;}
.x8c{left:420.753333pt;}
.x9c{left:422.796846pt;}
.x41{left:431.779906pt;}
.x58{left:433.100795pt;}
.x62{left:437.874979pt;}
.x6a{left:451.714430pt;}
.xb4{left:453.096000pt;}
.x9b{left:454.515088pt;}
.x64{left:456.109633pt;}
.x6d{left:457.057940pt;}
.x61{left:459.040795pt;}
.x57{left:460.233924pt;}
.xa5{left:467.268190pt;}
.xa2{left:470.149856pt;}
.xb5{left:471.185333pt;}
.xa1{left:475.025747pt;}
.x93{left:528.547467pt;}
.x92{left:539.618398pt;}
.xbd{left:2691.898387pt;}
.x16{left:2698.826387pt;}
.xc{left:2704.495720pt;}
.xd{left:2718.178387pt;}
.xbe{left:2720.989053pt;}
.xb8{left:2730.366387pt;}
.xe{left:2733.587720pt;}
.xf{left:2751.675720pt;}
.xbb{left:2762.678387pt;}
.x17{left:2889.693053pt;}
.x71{left:2909.522387pt;}
.x7a{left:2962.015720pt;}
.x79{left:2981.662387pt;}
.xb6{left:3021.775720pt;}
.xbf{left:3034.578387pt;}
.xb7{left:3039.865053pt;}
.xc0{left:3063.669053pt;}
.x18{left:3080.558387pt;}
}




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