
    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_c3ff93e707c2a158abfb8b24.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_2279a6ce27e9794abc8f5f35.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_37c6ba73098eefe022456554.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_e485a6545dfe430cd307caf0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_95f3ea8c3fb4cf2c7c8dc714.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_248c87a6cc55ac19d18230c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.903809;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_121b7365436b6f381f7dec37.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_8c8aed8834aab6f09df5375d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_4b88fa097fd706af4a193b87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_624180aa15904085b6baaacd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_d45abf00aba6755e5adc4f3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700195;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_edce6f7d17cab91815289b9d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f392393f0ae3e09554f33178.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.903809;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_50d78e35eb8c9213810a3528.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_37c6ba73098eefe022456554.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_06d9122bd46dd1a7dc4bc285.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_1aae4add84ee66c6a8df6651.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_cd2216356417ec10b9ec54d2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_a062df103b3af76b59bbd73d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_1fd10a1af4bf282ca26f21b4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_624180aa15904085b6baaacd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_14359b9eabc73abebf0a4108.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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_ed43bf9ba7e9e0e93bf3a3bb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_fe9e0216a642af685017975b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.739746;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_174d0929e8ad8d49bf76df66.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.942383;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_cccef379c6ccd492fb949467.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.893066;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_541203a86bb33e6d0e2a6441.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.112305;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_62665e7b79b452748f776720.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.893066;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_a10fdef2bf1c33a196dfae3c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.112305;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_f03e0d1ea925d24cfa2b28c8.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.104004;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:ff1f;src:url('chunks/assets/font_82bc9373fcfaf6104b8da8e3.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.112305;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:ff20;src:url('chunks/assets/font_d35b0aa9380a2e1f1586f5f4.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.062988;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:ff21;src:url('chunks/assets/font_f9a70a38e9d1179e916e0f19.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;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:ff22;src:url('chunks/assets/font_32417cea01f0823f6efd3014.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.768068px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls13{letter-spacing:-0.397440px;}
.ls10{letter-spacing:-0.322560px;}
.ls12{letter-spacing:-0.293760px;}
.lsf{letter-spacing:-0.208656px;}
.lse{letter-spacing:-0.178848px;}
.ls11{letter-spacing:-0.167040px;}
.ls2{letter-spacing:-0.158976px;}
.ls5{letter-spacing:-0.125856px;}
.ls16{letter-spacing:-0.120960px;}
.ls4{letter-spacing:-0.119232px;}
.ls3{letter-spacing:-0.079488px;}
.ls6{letter-spacing:-0.059616px;}
.lsd{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.ls14{letter-spacing:0.040320px;}
.ls15{letter-spacing:0.063360px;}
.lsa{letter-spacing:0.625968px;}
.lsc{letter-spacing:0.884181px;}
.lsb{letter-spacing:3.076110px;}
.ls9{letter-spacing:13.393440px;}
.ls7{letter-spacing:14.247360px;}
.ls17{letter-spacing:14.994141px;}
.ls1a{letter-spacing:16.476562px;}
.ls8{letter-spacing:17.343360px;}
.ls1f{letter-spacing:18.000000px;}
.ls1e{letter-spacing:22.500000px;}
.ls1b{letter-spacing:22.500002px;}
.ls1d{letter-spacing:26.986973px;}
.ls18{letter-spacing:31.500000px;}
.ls19{letter-spacing:64.511718px;}
.ls1c{letter-spacing:84.023438px;}
.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;}
}
.ws7b{word-spacing:-40.605468px;}
.ws66{word-spacing:-37.221680px;}
.ws65{word-spacing:-33.837890px;}
.wsa{word-spacing:-30.533328px;}
.ws8{word-spacing:-29.728512px;}
.ws9{word-spacing:-29.698704px;}
.ws54{word-spacing:-24.363282px;}
.ws27{word-spacing:-22.605503px;}
.wsa3{word-spacing:-22.605502px;}
.ws39{word-spacing:-22.605491px;}
.ws46{word-spacing:-22.605483px;}
.ws28{word-spacing:-22.605480px;}
.wsaa{word-spacing:-22.605472px;}
.ws2b{word-spacing:-22.605471px;}
.ws29{word-spacing:-22.605470px;}
.ws24{word-spacing:-22.605468px;}
.ws53{word-spacing:-22.605467px;}
.ws87{word-spacing:-22.605459px;}
.ws72{word-spacing:-22.605457px;}
.ws5f{word-spacing:-22.605447px;}
.ws43{word-spacing:-22.605435px;}
.ws30{word-spacing:-20.756903px;}
.ws6b{word-spacing:-20.756850px;}
.ws8a{word-spacing:-20.756840px;}
.ws8e{word-spacing:-20.756838px;}
.ws8f{word-spacing:-20.756836px;}
.wsae{word-spacing:-20.756786px;}
.ws94{word-spacing:-20.756741px;}
.ws8d{word-spacing:-20.754209px;}
.ws8c{word-spacing:-20.754206px;}
.ws90{word-spacing:-20.754205px;}
.wsb0{word-spacing:-20.754188px;}
.ws8b{word-spacing:-20.751640px;}
.ws62{word-spacing:-20.746428px;}
.ws64{word-spacing:-20.745141px;}
.wsb2{word-spacing:-20.745068px;}
.ws58{word-spacing:-18.855484px;}
.ws59{word-spacing:-18.855467px;}
.ws7f{word-spacing:-18.105502px;}
.ws47{word-spacing:-18.105492px;}
.ws71{word-spacing:-18.105481px;}
.ws3a{word-spacing:-18.105480px;}
.ws6f{word-spacing:-18.105471px;}
.ws38{word-spacing:-18.105469px;}
.ws61{word-spacing:-18.105468px;}
.ws82{word-spacing:-18.105466px;}
.ws50{word-spacing:-18.105457px;}
.ws57{word-spacing:-18.105446px;}
.ws5d{word-spacing:-18.105436px;}
.ws0{word-spacing:-18.014400px;}
.ws7{word-spacing:-17.985600px;}
.wsd{word-spacing:-17.377920px;}
.wse{word-spacing:-17.216640px;}
.wsc{word-spacing:-17.043840px;}
.wsb{word-spacing:-17.015040px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.480512px;}
.ws3{word-spacing:-16.440768px;}
.ws5{word-spacing:-16.434144px;}
.ws1{word-spacing:-16.401024px;}
.ws40{word-spacing:-13.605503px;}
.ws3f{word-spacing:-13.605492px;}
.ws32{word-spacing:-13.605480px;}
.ws42{word-spacing:-13.605469px;}
.ws6d{word-spacing:-13.605468px;}
.ws49{word-spacing:-13.605467px;}
.ws60{word-spacing:-13.605458px;}
.ws3e{word-spacing:-13.605446px;}
.ws6c{word-spacing:-13.605435px;}
.ws48{word-spacing:-9.105492px;}
.ws75{word-spacing:-9.105491px;}
.ws3d{word-spacing:-9.105480px;}
.ws5a{word-spacing:-9.105471px;}
.ws7c{word-spacing:-9.105470px;}
.ws36{word-spacing:-9.105469px;}
.wsa4{word-spacing:-9.105466px;}
.ws4d{word-spacing:-9.105457px;}
.ws37{word-spacing:-9.105446px;}
.ws41{word-spacing:-9.105435px;}
.ws3b{word-spacing:-4.605491px;}
.ws3c{word-spacing:-4.605480px;}
.ws76{word-spacing:-4.605470px;}
.ws44{word-spacing:-4.605469px;}
.ws81{word-spacing:-4.605468px;}
.ws85{word-spacing:-4.605458px;}
.ws33{word-spacing:-4.605447px;}
.ws70{word-spacing:-4.605435px;}
.ws51{word-spacing:-0.105502px;}
.ws45{word-spacing:-0.105491px;}
.ws55{word-spacing:-0.105480px;}
.ws31{word-spacing:-0.105468px;}
.ws6e{word-spacing:-0.105458px;}
.ws68{word-spacing:-0.105447px;}
.ws98{word-spacing:-0.105435px;}
.ws23{word-spacing:-0.072000px;}
.ws88{word-spacing:-0.066000px;}
.wsb3{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws74{word-spacing:4.394508px;}
.ws73{word-spacing:4.394519px;}
.ws52{word-spacing:4.394520px;}
.ws96{word-spacing:4.394529px;}
.ws35{word-spacing:4.394531px;}
.ws84{word-spacing:4.394554px;}
.ws5c{word-spacing:4.394565px;}
.ws4c{word-spacing:8.894497px;}
.ws56{word-spacing:8.894509px;}
.ws34{word-spacing:8.894520px;}
.ws4a{word-spacing:8.894531px;}
.wsac{word-spacing:8.894532px;}
.ws9a{word-spacing:8.894534px;}
.wsa8{word-spacing:13.394498px;}
.ws67{word-spacing:13.394520px;}
.ws7d{word-spacing:13.394532px;}
.ws91{word-spacing:13.394553px;}
.ws9c{word-spacing:16.390966px;}
.ws2e{word-spacing:16.398741px;}
.wsb1{word-spacing:16.398793px;}
.ws95{word-spacing:16.398799px;}
.ws89{word-spacing:16.398841px;}
.ws93{word-spacing:16.398843px;}
.ws6a{word-spacing:16.398844px;}
.ws92{word-spacing:16.398847px;}
.ws2d{word-spacing:16.398858px;}
.ws2f{word-spacing:16.401409px;}
.ws63{word-spacing:16.404021px;}
.ws7a{word-spacing:17.894520px;}
.ws79{word-spacing:17.894531px;}
.wsab{word-spacing:17.894553px;}
.ws99{word-spacing:17.894565px;}
.wsad{word-spacing:17.927965px;}
.ws11{word-spacing:17.927977px;}
.ws2a{word-spacing:17.927986px;}
.ws83{word-spacing:17.927988px;}
.ws1f{word-spacing:17.927989px;}
.ws25{word-spacing:17.927997px;}
.wsaf{word-spacing:17.927998px;}
.ws1a{word-spacing:17.928000px;}
.ws16{word-spacing:17.928002px;}
.ws9f{word-spacing:17.928003px;}
.ws12{word-spacing:17.928022px;}
.ws9d{word-spacing:22.427977px;}
.ws15{word-spacing:22.427988px;}
.ws69{word-spacing:22.427998px;}
.ws19{word-spacing:22.428000px;}
.wsa2{word-spacing:22.428001px;}
.ws4f{word-spacing:22.428022px;}
.ws9e{word-spacing:22.428033px;}
.ws5e{word-spacing:23.906250px;}
.wsa1{word-spacing:23.922140px;}
.ws78{word-spacing:26.894519px;}
.ws77{word-spacing:26.894531px;}
.ws14{word-spacing:26.927988px;}
.ws21{word-spacing:26.927999px;}
.ws1d{word-spacing:26.928000px;}
.wsa5{word-spacing:26.928001px;}
.ws4e{word-spacing:26.928010px;}
.ws80{word-spacing:31.394509px;}
.ws1c{word-spacing:31.427988px;}
.ws10{word-spacing:31.428000px;}
.ws1b{word-spacing:31.428002px;}
.ws5b{word-spacing:31.428023px;}
.wsa7{word-spacing:31.428033px;}
.ws18{word-spacing:35.927988px;}
.ws7e{word-spacing:35.927997px;}
.ws13{word-spacing:35.927999px;}
.wsa0{word-spacing:35.928001px;}
.ws22{word-spacing:40.427988px;}
.wsa9{word-spacing:40.428000px;}
.ws20{word-spacing:40.428011px;}
.ws97{word-spacing:44.927978px;}
.ws17{word-spacing:44.927999px;}
.wsf{word-spacing:44.928000px;}
.ws4b{word-spacing:49.427975px;}
.ws9b{word-spacing:49.427986px;}
.ws1e{word-spacing:49.427989px;}
.wsa6{word-spacing:53.928003px;}
.ws86{word-spacing:67.394519px;}
.ws26{word-spacing:2110.638161px;}
.ws2c{word-spacing:2179.050536px;}
._3f{margin-left:-9.281248px;}
._39{margin-left:-7.980469px;}
._b{margin-left:-6.922428px;}
._28{margin-left:-5.765623px;}
._13{margin-left:-4.675768px;}
._15{margin-left:-3.599912px;}
._10{margin-left:-2.531247px;}
._a{margin-left:-1.038672px;}
._0{width:1.035072px;}
._8{width:4.215456px;}
._2{width:13.240656px;}
._1{width:14.248224px;}
._41{width:15.401152px;}
._6{width:16.675920px;}
._11{width:18.000110px;}
._4{width:21.375648px;}
._3{width:23.217120px;}
._7{width:25.433568px;}
._e{width:27.000020px;}
._5{width:28.791504px;}
._f{width:31.500012px;}
._9{width:33.370704px;}
._d{width:36.000002px;}
._12{width:40.500002px;}
._16{width:45.000002px;}
._c{width:49.500002px;}
._14{width:54.000001px;}
._3b{width:58.499999px;}
._3c{width:63.000022px;}
._3a{width:64.511718px;}
._3d{width:71.999999px;}
._3e{width:76.500002px;}
._38{width:84.023438px;}
._40{width:103.500049px;}
._20{width:185.763252px;}
._35{width:489.653789px;}
._29{width:505.087382px;}
._1d{width:671.798555px;}
._1f{width:678.689006px;}
._21{width:783.524877px;}
._17{width:807.009308px;}
._22{width:823.462377px;}
._33{width:861.536596px;}
._1e{width:1017.454566px;}
._30{width:1071.489722px;}
._2c{width:1207.474097px;}
._1b{width:1213.134265px;}
._27{width:1297.720219px;}
._2d{width:1424.880353px;}
._2b{width:1451.388159px;}
._25{width:1491.395973px;}
._24{width:1508.114341px;}
._2e{width:1559.353004px;}
._1c{width:1589.446754px;}
._26{width:1599.395972px;}
._2a{width:1659.407691px;}
._1a{width:1663.345191px;}
._31{width:1723.286598px;}
._32{width:1739.282692px;}
._34{width:1759.321755px;}
._19{width:1799.364723px;}
._2f{width:1803.196755px;}
._23{width:1813.392067px;}
._36{width:1831.040505px;}
._37{width:1867.075660px;}
._18{width:2032.083083px;}
.fc5{color:rgb(17,85,204);}
.fc2{color:rgb(15,36,62);}
.fc6{color:rgb(34,34,34);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(191,191,191);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fsd{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fsc{font-size:43.200002px;}
.fs3{font-size:54.720000px;}
.fsa{font-size:57.600000px;}
.fse{font-size:59.999999px;}
.fs0{font-size:60.480000px;}
.fsb{font-size:66.000002px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs6{font-size:80.640000px;}
.fs5{font-size:83.520000px;}
.fs9{font-size:99.360000px;}
.y0{bottom:0.000000px;}
.y39{bottom:5.791650px;}
.y333{bottom:11.115231px;}
.y335{bottom:11.121093px;}
.y1af{bottom:11.440429px;}
.y1bc{bottom:11.443356px;}
.y1b5{bottom:11.443360px;}
.y1b3{bottom:11.446290px;}
.y330{bottom:11.449219px;}
.y24d{bottom:11.765625px;}
.y214{bottom:11.768554px;}
.y232{bottom:11.771484px;}
.y2a1{bottom:11.771492px;}
.y1b1{bottom:14.288086px;}
.y338{bottom:22.113274px;}
.y27e{bottom:22.113276px;}
.y246{bottom:22.113277px;}
.y24b{bottom:22.113279px;}
.y253{bottom:22.113282px;}
.y342{bottom:22.113294px;}
.y229{bottom:22.116209px;}
.y22b{bottom:22.116212px;}
.y2c7{bottom:22.119127px;}
.y2b4{bottom:22.119129px;}
.y25f{bottom:22.119132px;}
.y250{bottom:22.119140px;}
.y219{bottom:22.119141px;}
.y27b{bottom:22.119142px;}
.y230{bottom:22.119144px;}
.y223{bottom:22.119147px;}
.y2a5{bottom:22.119155px;}
.y33e{bottom:22.125004px;}
.y332{bottom:28.365234px;}
.y1bb{bottom:30.416016px;}
.y2a0{bottom:32.466797px;}
.y345{bottom:49.388673px;}
.y27d{bottom:53.162106px;}
.y245{bottom:53.162107px;}
.y22f{bottom:53.162109px;}
.y252{bottom:53.162111px;}
.y262{bottom:53.162112px;}
.y289{bottom:53.162120px;}
.y2cd{bottom:53.162121px;}
.y228{bottom:53.165039px;}
.y218{bottom:53.165046px;}
.y298{bottom:53.167956px;}
.y2c6{bottom:53.167957px;}
.y25e{bottom:53.167962px;}
.y24f{bottom:53.167970px;}
.y290{bottom:53.167972px;}
.y222{bottom:53.167977px;}
.y4{bottom:56.851650px;}
.y126{bottom:60.039553px;}
.yc8{bottom:60.040093px;}
.ye6{bottom:60.040288px;}
.y193{bottom:60.041008px;}
.y3{bottom:76.651650px;}
.y2c5{bottom:84.210922px;}
.y2a7{bottom:84.210927px;}
.y217{bottom:84.210936px;}
.y244{bottom:84.210938px;}
.y236{bottom:84.210939px;}
.y23f{bottom:84.210942px;}
.y288{bottom:84.210950px;}
.y2cc{bottom:84.210951px;}
.y227{bottom:84.213868px;}
.y221{bottom:84.213882px;}
.y25d{bottom:84.216792px;}
.y2a4{bottom:84.216799px;}
.y28f{bottom:84.216802px;}
.y243{bottom:115.253902px;}
.y261{bottom:115.253907px;}
.y2c4{bottom:115.259752px;}
.y287{bottom:115.259764px;}
.y216{bottom:115.259766px;}
.y28e{bottom:115.259767px;}
.y235{bottom:115.259769px;}
.y220{bottom:115.259772px;}
.y226{bottom:115.259774px;}
.y2a3{bottom:115.265630px;}
.y5b{bottom:126.331650px;}
.y122{bottom:130.968753px;}
.y169{bottom:132.442378px;}
.y27c{bottom:133.558592px;}
.y268{bottom:133.810548px;}
.y37{bottom:134.251650px;}
.y2e8{bottom:135.462892px;}
.y237{bottom:135.539057px;}
.y55{bottom:143.251650px;}
.y21a{bottom:143.414057px;}
.y5a{bottom:143.971650px;}
.y2a6{bottom:144.164066px;}
.y177{bottom:145.817873px;}
.y242{bottom:146.302733px;}
.y234{bottom:146.302734px;}
.y2cb{bottom:146.302746px;}
.y225{bottom:146.305664px;}
.y2c3{bottom:146.308582px;}
.y25c{bottom:146.308587px;}
.y286{bottom:146.308594px;}
.y28d{bottom:146.308597px;}
.y23e{bottom:146.308602px;}
.y136{bottom:147.168457px;}
.y204{bottom:148.968753px;}
.y28a{bottom:150.685545px;}
.y2b6{bottom:150.685547px;}
.y346{bottom:151.330078px;}
.y24e{bottom:152.414058px;}
.y329{bottom:153.791008px;}
.y121{bottom:153.909300px;}
.y36{bottom:154.411650px;}
.y167{bottom:155.931158px;}
.y2f0{bottom:156.164062px;}
.y189{bottom:156.166988px;}
.ye5{bottom:156.168097px;}
.y105{bottom:156.168457px;}
.y101{bottom:157.215083px;}
.y1c0{bottom:160.438479px;}
.yc7{bottom:160.745002px;}
.y144{bottom:160.993658px;}
.yac{bottom:160.998323px;}
.y59{bottom:161.611650px;}
.y2e7{bottom:166.511722px;}
.y2ce{bottom:167.566411px;}
.y344{bottom:167.859370px;}
.y19b{bottom:172.215817px;}
.y2f9{bottom:172.218742px;}
.y35{bottom:172.411650px;}
.y54{bottom:173.131650px;}
.y328{bottom:175.599613px;}
.y2c2{bottom:177.351547px;}
.y241{bottom:177.351562px;}
.y23d{bottom:177.351567px;}
.y2ca{bottom:177.351576px;}
.y25b{bottom:177.357417px;}
.y28c{bottom:177.357428px;}
.y21f{bottom:177.357432px;}
.y135{bottom:178.215817px;}
.y58{bottom:179.251650px;}
.y233{bottom:183.462883px;}
.y203{bottom:184.819329px;}
.yab{bottom:186.196567px;}
.y14e{bottom:186.978517px;}
.y192{bottom:187.212892px;}
.y176{bottom:187.214362px;}
.ye4{bottom:187.215457px;}
.y104{bottom:187.215817px;}
.y32e{bottom:187.294918px;}
.y34{bottom:188.251650px;}
.y100{bottom:188.262457px;}
.yc6{bottom:191.792363px;}
.y143{bottom:192.041017px;}
.y1bf{bottom:196.289058px;}
.y57{bottom:196.891650px;}
.y2e6{bottom:197.560552px;}
.y2b5{bottom:198.609367px;}
.y53{bottom:203.011650px;}
.y19a{bottom:203.261722px;}
.y33{bottom:203.731650px;}
.y312{bottom:207.914062px;}
.y2c1{bottom:208.400377px;}
.y2c9{bottom:208.400391px;}
.y27a{bottom:208.400393px;}
.y2ae{bottom:208.400397px;}
.y21e{bottom:208.403328px;}
.y25a{bottom:208.406247px;}
.y134{bottom:209.263177px;}
.yaa{bottom:211.394813px;}
.y267{bottom:212.783198px;}
.y56{bottom:214.171650px;}
.y2c8{bottom:215.490227px;}
.y316{bottom:216.440921px;}
.y14d{bottom:218.025878px;}
.y188{bottom:218.261722px;}
.ye3{bottom:218.262817px;}
.y120{bottom:218.263177px;}
.y32{bottom:219.211650px;}
.yff{bottom:219.309817px;}
.y1ad{bottom:219.310552px;}
.y202{bottom:220.661129px;}
.y1ea{bottom:222.796867px;}
.yc5{bottom:222.839902px;}
.y142{bottom:223.088377px;}
.y326{bottom:225.949223px;}
.y2e5{bottom:228.609367px;}
.y175{bottom:228.610838px;}
.y24c{bottom:231.386723px;}
.y1be{bottom:232.130863px;}
.y199{bottom:234.310552px;}
.y31{bottom:234.691650px;}
.ya9{bottom:236.593043px;}
.y259{bottom:239.449212px;}
.y279{bottom:239.449223px;}
.y21d{bottom:239.449227px;}
.y52{bottom:239.731650px;}
.y133{bottom:240.310552px;}
.y343{bottom:241.652338px;}
.y1da{bottom:245.624992px;}
.y14c{bottom:249.073238px;}
.y187{bottom:249.309082px;}
.ye2{bottom:249.310178px;}
.y11f{bottom:249.310552px;}
.y30{bottom:250.171650px;}
.yfe{bottom:250.357178px;}
.y1ac{bottom:250.359367px;}
.y1e9{bottom:253.845698px;}
.yc4{bottom:253.887262px;}
.y141{bottom:254.135738px;}
.y201{bottom:256.511714px;}
.y325{bottom:256.992188px;}
.y2b3{bottom:258.005864px;}
.ya8{bottom:261.791287px;}
.y198{bottom:265.359367px;}
.y2f{bottom:265.651650px;}
.y1bd{bottom:267.981448px;}
.y174{bottom:270.007327px;}
.y2ad{bottom:270.492192px;}
.y2c0{bottom:270.498037px;}
.y258{bottom:270.498042px;}
.y278{bottom:270.498052px;}
.y23c{bottom:270.498057px;}
.y132{bottom:271.357913px;}
.y51{bottom:272.131650px;}
.y266{bottom:272.179693px;}
.y26a{bottom:274.623045px;}
.y1d9{bottom:276.673823px;}
.y166{bottom:280.120612px;}
.y14b{bottom:280.160161px;}
.y18c{bottom:280.356443px;}
.ye1{bottom:280.357538px;}
.y11e{bottom:280.357913px;}
.y2ef{bottom:280.359367px;}
.y2e{bottom:281.131650px;}
.y1ab{bottom:281.408197px;}
.y215{bottom:284.478512px;}
.y1e8{bottom:284.891603px;}
.y140{bottom:285.183112px;}
.y2a2{bottom:285.222648px;}
.ya7{bottom:286.989532px;}
.y324{bottom:288.046867px;}
.y24a{bottom:289.054693px;}
.y2e4{bottom:290.701178px;}
.y310{bottom:290.707028px;}
.y200{bottom:292.362309px;}
.y50{bottom:294.451650px;}
.y2f8{bottom:296.402347px;}
.y197{bottom:296.405272px;}
.y2d{bottom:296.611650px;}
.y277{bottom:301.541017px;}
.y2ac{bottom:301.541022px;}
.y2bf{bottom:301.546868px;}
.y257{bottom:301.546872px;}
.y21c{bottom:301.546883px;}
.y131{bottom:302.405272px;}
.y1ba{bottom:303.832027px;}
.y317{bottom:307.212883px;}
.y1d8{bottom:307.722652px;}
.y165{bottom:311.167973px;}
.y191{bottom:311.402347px;}
.y173{bottom:311.403802px;}
.ye0{bottom:311.404912px;}
.y11d{bottom:311.405272px;}
.ya6{bottom:312.187778px;}
.yfd{bottom:312.451898px;}
.y1aa{bottom:312.454102px;}
.y2c{bottom:312.811650px;}
.y1e7{bottom:315.937492px;}
.yc3{bottom:315.981998px;}
.y4f{bottom:316.771650px;}
.y323{bottom:319.089847px;}
.y341{bottom:320.619133px;}
.y2e3{bottom:321.749992px;}
.y1b9{bottom:322.807614px;}
.y196{bottom:327.451178px;}
.y2b{bottom:331.891650px;}
.y30f{bottom:332.103517px;}
.y2be{bottom:332.589832px;}
.y276{bottom:332.589848px;}
.y23b{bottom:332.589852px;}
.y28b{bottom:332.595697px;}
.y256{bottom:332.595702px;}
.y130{bottom:333.452633px;}
.y2b2{bottom:336.972662px;}
.ya5{bottom:337.386023px;}
.y1d7{bottom:338.768558px;}
.y4e{bottom:339.091650px;}
.y164{bottom:342.215332px;}
.y14a{bottom:342.333983px;}
.y186{bottom:342.451178px;}
.ydf{bottom:342.452272px;}
.y125{bottom:342.452633px;}
.yfc{bottom:343.499272px;}
.y1e6{bottom:346.986323px;}
.yc2{bottom:347.029357px;}
.y13f{bottom:347.277832px;}
.y322{bottom:350.144528px;}
.y2a{bottom:350.971650px;}
.y265{bottom:351.146476px;}
.y2e2{bottom:352.792973px;}
.y231{bottom:355.570318px;}
.y71{bottom:358.499542px;}
.y1ff{bottom:358.499992px;}
.y1b8{bottom:358.649414px;}
.ya4{bottom:362.584252px;}
.y2bd{bottom:363.638662px;}
.y275{bottom:363.638677px;}
.y23a{bottom:363.638680px;}
.y2ab{bottom:363.638682px;}
.y255{bottom:363.644527px;}
.y12f{bottom:364.499992px;}
.y249{bottom:368.021477px;}
.y303{bottom:368.847652px;}
.y29{bottom:369.331650px;}
.y1d6{bottom:369.814447px;}
.y149{bottom:373.381342px;}
.y172{bottom:373.498537px;}
.yde{bottom:373.499633px;}
.y11c{bottom:373.499992px;}
.yfb{bottom:374.546632px;}
.y1a9{bottom:374.548823px;}
.y1e5{bottom:378.035152px;}
.yc1{bottom:378.076717px;}
.y13e{bottom:378.325192px;}
.y321{bottom:381.187492px;}
.y168{bottom:382.144048px;}
.y2e1{bottom:383.841803px;}
.y28{bottom:384.811650px;}
.y2b1{bottom:384.896476px;}
.ya3{bottom:387.782497px;}
.y70{bottom:389.546902px;}
.y86{bottom:389.546992px;}
.y1fe{bottom:389.548823px;}
.y1b7{bottom:394.499999px;}
.y2bc{bottom:394.687492px;}
.y239{bottom:394.687507px;}
.y12e{bottom:395.547367px;}
.y264{bottom:399.070307px;}
.y340{bottom:399.580082px;}
.y27{bottom:400.291650px;}
.y1d5{bottom:400.863278px;}
.y163{bottom:404.310052px;}
.y148{bottom:404.428717px;}
.y2ee{bottom:404.542973px;}
.y171{bottom:404.545898px;}
.ydd{bottom:404.546992px;}
.y11b{bottom:404.547367px;}
.y4d{bottom:405.331650px;}
.yfa{bottom:405.593993px;}
.y1a8{bottom:405.597652px;}
.y1e4{bottom:409.081057px;}
.yc0{bottom:409.124078px;}
.y13d{bottom:409.372552px;}
.y302{bottom:410.244142px;}
.y327{bottom:412.236323px;}
.ya2{bottom:412.980742px;}
.y22e{bottom:413.244133px;}
.y274{bottom:414.521482px;}
.y2e0{bottom:414.890617px;}
.y30e{bottom:414.896483px;}
.y26{bottom:415.771650px;}
.y248{bottom:415.945307px;}
.y85{bottom:420.594368px;}
.y1fd{bottom:420.594727px;}
.y2f7{bottom:420.597652px;}
.y213{bottom:425.542968px;}
.y2bb{bottom:425.730458px;}
.y2aa{bottom:425.730477px;}
.y12d{bottom:426.594727px;}
.y1b6{bottom:430.350579px;}
.y25{bottom:431.251650px;}
.y1d4{bottom:431.912108px;}
.y2b0{bottom:432.820307px;}
.y162{bottom:435.357428px;}
.y147{bottom:435.476077px;}
.y190{bottom:435.591803px;}
.y170{bottom:435.593257px;}
.y11a{bottom:435.594727px;}
.yf9{bottom:436.641353px;}
.y1a7{bottom:436.643557px;}
.ya1{bottom:438.178987px;}
.y1e3{bottom:440.126947px;}
.ybf{bottom:440.171453px;}
.y13c{bottom:440.419927px;}
.y320{bottom:443.279302px;}
.y273{bottom:445.570312px;}
.y2df{bottom:445.939447px;}
.y24{bottom:446.731650px;}
.y263{bottom:446.994137px;}
.y33f{bottom:447.503898px;}
.y2b7{bottom:449.695320px;}
.y1fc{bottom:451.640617px;}
.y6f{bottom:451.641638px;}
.y30d{bottom:456.292973px;}
.y2ba{bottom:456.779287px;}
.y4c{bottom:457.171650px;}
.y29f{bottom:457.335936px;}
.y12c{bottom:457.642088px;}
.y23{bottom:462.211650px;}
.y1d3{bottom:462.958012px;}
.ya0{bottom:463.377232px;}
.y247{bottom:463.869136px;}
.y1b4{bottom:466.201173px;}
.y161{bottom:466.404788px;}
.y146{bottom:466.523438px;}
.y16f{bottom:466.640617px;}
.ydc{bottom:466.641727px;}
.y119{bottom:466.642088px;}
.y1a6{bottom:467.689447px;}
.y1e2{bottom:471.175777px;}
.ybe{bottom:471.218813px;}
.y13b{bottom:471.467287px;}
.y31f{bottom:474.328117px;}
.y272{bottom:476.619143px;}
.y2de{bottom:476.988278px;}
.y22{bottom:477.691650px;}
.y29e{bottom:478.037108px;}
.y2af{bottom:480.744136px;}
.yf8{bottom:482.688728px;}
.y6e{bottom:482.688998px;}
.y84{bottom:482.689088px;}
.y1fb{bottom:482.689448px;}
.y2b9{bottom:487.828117px;}
.y2a9{bottom:487.828133px;}
.y9f{bottom:488.575462px;}
.y12b{bottom:488.689448px;}
.y22d{bottom:492.210932px;}
.y301{bottom:493.037107px;}
.y21{bottom:493.531650px;}
.y1d2{bottom:494.003902px;}
.y260{bottom:494.917960px;}
.y160{bottom:497.452148px;}
.y145{bottom:497.610346px;}
.y185{bottom:497.687992px;}
.ydb{bottom:497.689088px;}
.y118{bottom:497.689448px;}
.y1a5{bottom:498.738277px;}
.y1b2{bottom:502.042963px;}
.y1e1{bottom:502.224608px;}
.y13a{bottom:502.514648px;}
.y31e{bottom:505.371098px;}
.y271{bottom:507.662107px;}
.y212{bottom:508.406242px;}
.y20{bottom:509.011650px;}
.y240{bottom:511.792965px;}
.y6d{bottom:513.736357px;}
.y83{bottom:513.736448px;}
.y1fa{bottom:513.738277px;}
.y9e{bottom:513.773708px;}
.y2b8{bottom:518.876947px;}
.y12a{bottom:519.736822px;}
.y1f{bottom:525.571650px;}
.y33d{bottom:526.476558px;}
.y15f{bottom:528.499508px;}
.y16e{bottom:528.735352px;}
.yda{bottom:528.736448px;}
.y117{bottom:528.736822px;}
.y2ed{bottom:528.738277px;}
.y1a4{bottom:529.787107px;}
.y1e0{bottom:533.270512px;}
.ybd{bottom:533.313532px;}
.y139{bottom:533.562008px;}
.y300{bottom:534.433598px;}
.y31d{bottom:536.425777px;}
.y29d{bottom:537.433589px;}
.y1b0{bottom:537.893547px;}
.y270{bottom:538.710937px;}
.y9d{bottom:538.971953px;}
.y2dd{bottom:539.080073px;}
.y30c{bottom:539.085938px;}
.y211{bottom:539.455072px;}
.y297{bottom:540.128911px;}
.y22c{bottom:540.134761px;}
.y1ae{bottom:540.741204px;}
.y2f6{bottom:544.781242px;}
.yf7{bottom:544.783447px;}
.y6c{bottom:544.783717px;}
.y82{bottom:544.783807px;}
.y1f9{bottom:544.784182px;}
.y1e{bottom:546.451650px;}
.y129{bottom:550.784182px;}
.y315{bottom:553.828118px;}
.y1d1{bottom:556.101562px;}
.y18f{bottom:559.781242px;}
.y16d{bottom:559.782713px;}
.yd9{bottom:559.783807px;}
.y124{bottom:559.784182px;}
.y4b{bottom:560.851650px;}
.y9c{bottom:564.170198px;}
.ybc{bottom:564.360908px;}
.y1d{bottom:566.971650px;}
.y31c{bottom:567.468742px;}
.y26f{bottom:569.759767px;}
.y2dc{bottom:570.128902px;}
.y210{bottom:570.500977px;}
.y285{bottom:571.177728px;}
.y1df{bottom:572.619129px;}
.y1f8{bottom:575.830073px;}
.yf6{bottom:575.830807px;}
.y6b{bottom:575.831092px;}
.y81{bottom:575.831182px;}
.y30b{bottom:580.482428px;}
.y128{bottom:581.831543px;}
.y9b{bottom:584.868442px;}
.y314{bottom:584.882812px;}
.y1d0{bottom:587.147467px;}
.y138{bottom:587.245608px;}
.y1c{bottom:587.851650px;}
.y22a{bottom:588.058596px;}
.y15e{bottom:590.594242px;}
.y16c{bottom:590.830073px;}
.yd8{bottom:590.831182px;}
.y116{bottom:590.831543px;}
.y1a3{bottom:591.878902px;}
.ybb{bottom:595.408267px;}
.y31b{bottom:598.523438px;}
.y26e{bottom:600.802733px;}
.y2db{bottom:601.171867px;}
.y20f{bottom:601.546867px;}
.y33c{bottom:605.455076px;}
.yf5{bottom:606.878168px;}
.y6a{bottom:606.878453px;}
.y80{bottom:606.878543px;}
.y1f7{bottom:606.878902px;}
.y137{bottom:607.665523px;}
.y1b{bottom:608.371650px;}
.y9a{bottom:610.066688px;}
.y4a{bottom:612.331650px;}
.y127{bottom:612.878902px;}
.y29c{bottom:616.400386px;}
.y1cf{bottom:618.193357px;}
.y15d{bottom:621.641602px;}
.y2a8{bottom:621.808585px;}
.y16b{bottom:621.877448px;}
.y103{bottom:621.878543px;}
.y115{bottom:621.878902px;}
.y1a2{bottom:622.927733px;}
.yba{bottom:626.455627px;}
.y1a{bottom:629.251650px;}
.y26d{bottom:631.851562px;}
.y2da{bottom:632.220698px;}
.y20e{bottom:632.595698px;}
.y99{bottom:635.264918px;}
.y254{bottom:635.976565px;}
.y224{bottom:635.979489px;}
.yf4{bottom:637.925543px;}
.y69{bottom:637.925813px;}
.y7f{bottom:637.925903px;}
.y2f5{bottom:637.927733px;}
.y1ce{bottom:649.242188px;}
.y19{bottom:649.771650px;}
.y15c{bottom:652.688963px;}
.y2ec{bottom:652.921867px;}
.y16a{bottom:652.924808px;}
.yd7{bottom:652.925903px;}
.y114{bottom:652.926263px;}
.y33b{bottom:653.373043px;}
.y1a1{bottom:653.976562px;}
.yb9{bottom:657.502988px;}
.y2ff{bottom:658.623052px;}
.y98{bottom:660.463163px;}
.y31a{bottom:660.615233px;}
.y26c{bottom:662.900392px;}
.y2d9{bottom:663.269527px;}
.y30a{bottom:663.275392px;}
.y20d{bottom:663.644527px;}
.y49{bottom:664.171650px;}
.y29b{bottom:664.324217px;}
.yf3{bottom:668.972902px;}
.y68{bottom:668.973172px;}
.y7e{bottom:668.973262px;}
.y1f6{bottom:668.973637px;}
.y2f4{bottom:668.976562px;}
.y18{bottom:670.651650px;}
.y1cd{bottom:680.291018px;}
.y296{bottom:681.193364px;}
.y15b{bottom:683.736322px;}
.y18e{bottom:683.970698px;}
.y184{bottom:683.972168px;}
.yd6{bottom:683.973262px;}
.y113{bottom:683.973637px;}
.y1a0{bottom:685.022467px;}
.y97{bottom:685.661407px;}
.yb8{bottom:688.550348px;}
.y17{bottom:690.091650px;}
.y319{bottom:691.658198px;}
.y26b{bottom:693.949222px;}
.y2d8{bottom:694.318358px;}
.y20c{bottom:694.690432px;}
.y1f5{bottom:700.019527px;}
.yf2{bottom:700.020263px;}
.y67{bottom:700.020533px;}
.y7d{bottom:700.020622px;}
.y309{bottom:704.671867px;}
.y16{bottom:705.571650px;}
.y96{bottom:706.359653px;}
.y1cc{bottom:711.336908px;}
.y29a{bottom:712.248047px;}
.y15a{bottom:714.783698px;}
.y238{bottom:714.949211px;}
.y183{bottom:715.019527px;}
.yd5{bottom:715.020622px;}
.y112{bottom:715.020998px;}
.y48{bottom:716.011650px;}
.y19f{bottom:716.068358px;}
.yb7{bottom:719.597722px;}
.y15{bottom:721.051650px;}
.y318{bottom:721.517578px;}
.y2d7{bottom:725.367188px;}
.y20b{bottom:725.736322px;}
.yf1{bottom:731.067622px;}
.y7c{bottom:731.067998px;}
.y1f4{bottom:731.068358px;}
.y95{bottom:731.557898px;}
.y33a{bottom:732.333977px;}
.y14{bottom:736.531650px;}
.y47{bottom:738.331650px;}
.y295{bottom:740.589843px;}
.y1cb{bottom:742.382812px;}
.y284{bottom:743.291017px;}
.y159{bottom:745.831058px;}
.y18b{bottom:746.066888px;}
.yd4{bottom:746.067998px;}
.y111{bottom:746.068358px;}
.y19e{bottom:747.117188px;}
.y13{bottom:752.011650px;}
.y2d6{bottom:756.410152px;}
.y94{bottom:756.756128px;}
.y20a{bottom:756.785152px;}
.y299{bottom:760.171875px;}
.yf0{bottom:762.114998px;}
.y66{bottom:762.115268px;}
.y1f3{bottom:762.117188px;}
.y46{bottom:766.411650px;}
.y12{bottom:767.491650px;}
.y1ca{bottom:773.431642px;}
.y158{bottom:776.878418px;}
.y182{bottom:777.114262px;}
.yd3{bottom:777.115358px;}
.y110{bottom:777.115718px;}
.y2eb{bottom:777.117188px;}
.y19d{bottom:778.166018px;}
.y339{bottom:780.269530px;}
.yb6{bottom:781.692442px;}
.y93{bottom:781.954373px;}
.y2fe{bottom:782.812492px;}
.y11{bottom:783.331650px;}
.y1de{bottom:785.088868px;}
.y2d5{bottom:787.458982px;}
.y308{bottom:787.464848px;}
.y209{bottom:787.833982px;}
.y2f3{bottom:793.160152px;}
.yef{bottom:793.162358px;}
.y65{bottom:793.162628px;}
.y7b{bottom:793.162718px;}
.y283{bottom:802.687500px;}
.y1c9{bottom:804.480473px;}
.y92{bottom:807.152618px;}
.y21b{bottom:808.089835px;}
.y18d{bottom:808.160152px;}
.y181{bottom:808.161623px;}
.yd2{bottom:808.162718px;}
.y10f{bottom:808.163092px;}
.y10{bottom:809.971650px;}
.yb5{bottom:812.739802px;}
.y2d4{bottom:818.507812px;}
.y45{bottom:819.331650px;}
.y294{bottom:819.562496px;}
.y1dd{bottom:823.039310px;}
.y19c{bottom:824.208982px;}
.yee{bottom:824.209718px;}
.y64{bottom:824.209988px;}
.y7a{bottom:824.210078px;}
.y337{bottom:828.187503px;}
.y307{bottom:828.861322px;}
.y91{bottom:832.350863px;}
.y1c8{bottom:835.526363px;}
.yf{bottom:837.331650px;}
.y157{bottom:838.973138px;}
.y180{bottom:839.208982px;}
.yd1{bottom:839.210078px;}
.y10e{bottom:839.210452px;}
.y32d{bottom:841.792973px;}
.yb4{bottom:843.787177px;}
.y2d3{bottom:849.550777px;}
.y208{bottom:849.925777px;}
.yed{bottom:855.257077px;}
.y63{bottom:855.257348px;}
.y79{bottom:855.257452px;}
.y1f2{bottom:855.257812px;}
.y90{bottom:857.549107px;}
.ye{bottom:860.731650px;}
.y2fd{bottom:865.605473px;}
.y293{bottom:867.480466px;}
.y156{bottom:870.020512px;}
.y17f{bottom:870.256343px;}
.yd0{bottom:870.257452px;}
.y10d{bottom:870.257812px;}
.y44{bottom:871.171650px;}
.y32c{bottom:872.847652px;}
.yb3{bottom:874.834538px;}
.yd{bottom:876.211650px;}
.y2d2{bottom:880.599608px;}
.y207{bottom:880.974607px;}
.y8f{bottom:882.747337px;}
.y1c7{bottom:884.499029px;}
.yec{bottom:886.304437px;}
.y62{bottom:886.304723px;}
.y78{bottom:886.304813px;}
.y1f1{bottom:886.306642px;}
.yc{bottom:892.771650px;}
.y43{bottom:897.091650px;}
.y155{bottom:901.067873px;}
.y2ea{bottom:901.300777px;}
.y17e{bottom:901.303717px;}
.ycf{bottom:901.304813px;}
.y10c{bottom:901.305173px;}
.yb2{bottom:905.881898px;}
.y2fc{bottom:907.001947px;}
.y336{bottom:907.160158px;}
.y38{bottom:907.500000px;}
.y8e{bottom:907.945583px;}
.y311{bottom:911.654302px;}
.y206{bottom:912.023438px;}
.yb{bottom:912.211650px;}
.y282{bottom:912.703126px;}
.y292{bottom:915.404296px;}
.yeb{bottom:917.351813px;}
.y61{bottom:917.352083px;}
.y77{bottom:917.352173px;}
.y1f0{bottom:917.352533px;}
.y2f2{bottom:917.355473px;}
.y1c6{bottom:920.349614px;}
.y8d{bottom:928.643828px;}
.y2d1{bottom:929.578125px;}
.y154{bottom:932.154781px;}
.y195{bottom:932.349608px;}
.y18a{bottom:932.351077px;}
.y102{bottom:932.352173px;}
.y10b{bottom:932.352533px;}
.y32b{bottom:933.755863px;}
.ya{bottom:934.891650px;}
.yb1{bottom:936.929257px;}
.y42{bottom:939.571650px;}
.y205{bottom:943.069342px;}
.y1ef{bottom:948.398438px;}
.y60{bottom:948.399443px;}
.y76{bottom:948.399533px;}
.y306{bottom:953.050777px;}
.y8c{bottom:953.842072px;}
.y1c5{bottom:956.200194px;}
.y9{bottom:956.851650px;}
.y281{bottom:960.626957px;}
.y41{bottom:962.251650px;}
.y291{bottom:963.328123px;}
.y17d{bottom:963.398438px;}
.yce{bottom:963.399533px;}
.y10a{bottom:963.399907px;}
.y8b{bottom:979.040318px;}
.y8{bottom:979.171650px;}
.yea{bottom:979.446532px;}
.y1ee{bottom:979.447267px;}
.y40{bottom:980.251650px;}
.y331{bottom:986.126952px;}
.yb0{bottom:988.609138px;}
.y2fb{bottom:989.794928px;}
.y1c4{bottom:992.050780px;}
.y153{bottom:994.328617px;}
.y269{bottom:994.376952px;}
.y17c{bottom:994.445798px;}
.ycd{bottom:994.446892px;}
.y109{bottom:994.447267px;}
.y32a{bottom:994.453117px;}
.y7{bottom:1000.051650px;}
.y334{bottom:1003.371093px;}
.y8a{bottom:1004.238556px;}
.y3f{bottom:1007.251650px;}
.y280{bottom:1008.550780px;}
.ye9{bottom:1010.493897px;}
.y5f{bottom:1010.494171px;}
.y75{bottom:1010.494263px;}
.y1ed{bottom:1010.496093px;}
.yaf{bottom:1017.069214px;}
.y6{bottom:1020.211650px;}
.y152{bottom:1025.375976px;}
.y251{bottom:1025.425780px;}
.y17b{bottom:1025.493164px;}
.ycc{bottom:1025.494263px;}
.y108{bottom:1025.494629px;}
.y2e9{bottom:1025.496093px;}
.y3e{bottom:1026.691650px;}
.y1c3{bottom:1027.892577px;}
.y89{bottom:1029.436798px;}
.y2fa{bottom:1031.191405px;}
.y305{bottom:1035.843750px;}
.y32f{bottom:1037.496093px;}
.y2d0{bottom:1039.593750px;}
.y2f1{bottom:1041.539062px;}
.ye8{bottom:1041.541260px;}
.y5e{bottom:1041.541535px;}
.y74{bottom:1041.541626px;}
.y1ec{bottom:1041.541992px;}
.y5{bottom:1042.171650px;}
.y3d{bottom:1044.691650px;}
.yae{bottom:1045.529296px;}
.y88{bottom:1054.635041px;}
.y151{bottom:1056.423340px;}
.y27f{bottom:1056.468748px;}
.y194{bottom:1056.539062px;}
.y17a{bottom:1056.540528px;}
.ycb{bottom:1056.541626px;}
.y123{bottom:1056.541992px;}
.y313{bottom:1056.544921px;}
.y1c2{bottom:1063.743164px;}
.y1eb{bottom:1072.587891px;}
.ye7{bottom:1072.588623px;}
.y5d{bottom:1072.588898px;}
.y73{bottom:1072.588989px;}
.y3c{bottom:1073.131650px;}
.yad{bottom:1073.989380px;}
.y304{bottom:1077.240234px;}
.y87{bottom:1079.833282px;}
.y150{bottom:1087.470704px;}
.y2cf{bottom:1087.517577px;}
.y179{bottom:1087.587891px;}
.yca{bottom:1087.588989px;}
.y107{bottom:1087.589355px;}
.y1dc{bottom:1091.578125px;}
.y3b{bottom:1096.171650px;}
.y1c1{bottom:1099.593748px;}
.y3a{bottom:1110.211650px;}
.y14f{bottom:1118.557616px;}
.y178{bottom:1118.635254px;}
.y72{bottom:1118.636169px;}
.y5c{bottom:1118.636260px;}
.yc9{bottom:1118.636352px;}
.y106{bottom:1118.636718px;}
.y1db{bottom:1120.037109px;}
.y2{bottom:1140.811650px;}
.y1{bottom:1154.131650px;}
.hb{height:24.000000px;}
.hf{height:25.913672px;}
.h3{height:27.833203px;}
.h1d{height:32.273438px;}
.h43{height:33.000000px;}
.h21{height:34.719726px;}
.h25{height:34.722657px;}
.h24{height:34.725587px;}
.h40{height:34.728516px;}
.h33{height:36.445312px;}
.h28{height:36.448242px;}
.h2f{height:36.451172px;}
.h8{height:36.471094px;}
.h23{height:37.567383px;}
.h2{height:40.310156px;}
.h42{height:40.664061px;}
.h7{height:41.040000px;}
.h15{height:42.468750px;}
.hd{height:44.149219px;}
.h27{height:44.730470px;}
.h9{height:45.345938px;}
.ha{height:46.025156px;}
.h39{height:46.792970px;}
.h2c{height:46.795899px;}
.h2d{height:46.798829px;}
.h4{height:47.988281px;}
.h16{height:48.761719px;}
.h13{height:49.992188px;}
.h10{height:50.027344px;}
.h41{height:50.244141px;}
.h11{height:51.827344px;}
.h26{height:53.695312px;}
.he{height:53.746875px;}
.h1e{height:53.789061px;}
.h5{height:54.000000px;}
.hc{height:55.666406px;}
.h18{height:55.913087px;}
.h3c{height:57.146484px;}
.h22{height:58.620119px;}
.h19{height:59.167970px;}
.h1f{height:60.996094px;}
.h6{height:63.949219px;}
.h17{height:64.546875px;}
.h1c{height:66.049807px;}
.h12{height:66.223828px;}
.h14{height:72.288281px;}
.h44{height:72.667970px;}
.h2e{height:77.841796px;}
.h34{height:77.847657px;}
.h35{height:108.890625px;}
.h1b{height:127.183590px;}
.h1a{height:127.183965px;}
.h20{height:127.185060px;}
.h37{height:139.933595px;}
.h29{height:139.939453px;}
.h30{height:170.982421px;}
.h2b{height:170.985351px;}
.h3a{height:170.988282px;}
.h32{height:202.031250px;}
.h3f{height:233.080078px;}
.h2a{height:326.226570px;}
.h3b{height:388.318365px;}
.h36{height:388.324215px;}
.h31{height:419.367195px;}
.h3d{height:512.507820px;}
.h3e{height:543.556635px;}
.h38{height:718.628910px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w17{width:52.875000px;}
.w15{width:60.750000px;}
.w14{width:60.750046px;}
.w16{width:66.375000px;}
.w6{width:126.000000px;}
.w7{width:126.000046px;}
.w9{width:141.750000px;}
.wd{width:142.875000px;}
.wa{width:144.000000px;}
.w10{width:174.375000px;}
.we{width:175.500000px;}
.w5{width:223.875047px;}
.w4{width:337.500000px;}
.wf{width:353.250090px;}
.w11{width:354.375090px;}
.wb{width:385.875090px;}
.w18{width:389.250000px;}
.w12{width:445.934055px;}
.w13{width:447.315945px;}
.w8{width:634.500000px;}
.w2{width:652.500000px;}
.wc{width:673.875000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.w3{width:894.000000px;}
.x0{left:0.000000px;}
.x31{left:6.749990px;}
.x41{left:12.046801px;}
.x67{left:13.377434px;}
.x63{left:15.649321px;}
.x49{left:18.479485px;}
.x47{left:24.662590px;}
.x45{left:25.785693px;}
.x3f{left:27.456464px;}
.x43{left:30.825568px;}
.x5a{left:32.449219px;}
.x4c{left:33.750000px;}
.x3d{left:34.947639px;}
.x36{left:36.292133px;}
.x30{left:39.098085px;}
.x5b{left:43.202637px;}
.x61{left:49.702149px;}
.x5d{left:54.922852px;}
.x48{left:59.692137px;}
.x4d{left:60.750000px;}
.x5f{left:67.952637px;}
.x60{left:71.450684px;}
.x5e{left:72.953613px;}
.x5c{left:74.456543px;}
.x39{left:79.775145px;}
.x32{left:83.897215px;}
.x35{left:88.019286px;}
.x3a{left:92.141355px;}
.x33{left:94.886719px;}
.x38{left:99.008790px;}
.x37{left:103.130859px;}
.x34{left:107.252930px;}
.x14{left:110.721372px;}
.x1d{left:127.559052px;}
.x3c{left:128.684052px;}
.x57{left:135.165986px;}
.x53{left:136.273408px;}
.x2e{left:137.517516px;}
.x11{left:139.500000px;}
.x3{left:148.521300px;}
.x52{left:150.854462px;}
.xc{left:152.718072px;}
.x20{left:154.559052px;}
.x55{left:155.996064px;}
.xa{left:157.222464px;}
.x54{left:166.753876px;}
.xd{left:170.265444px;}
.x21{left:181.559052px;}
.x2a{left:186.464238px;}
.x27{left:189.434052px;}
.x15{left:190.746528px;}
.x9{left:193.723440px;}
.x56{left:196.750946px;}
.x12{left:198.902040px;}
.x58{left:231.498505px;}
.x22{left:239.333825px;}
.x23{left:242.536151px;}
.x2c{left:244.419319px;}
.xb{left:254.504220px;}
.x3e{left:255.809055px;}
.x28{left:270.434052px;}
.x4a{left:271.559055px;}
.x4e{left:272.684055px;}
.x46{left:276.139058px;}
.x29{left:278.852669px;}
.xe{left:285.762516px;}
.x13{left:299.571216px;}
.x2d{left:302.116374px;}
.x4{left:325.010076px;}
.x1{left:339.921456px;}
.x8{left:343.264992px;}
.x5{left:348.520848px;}
.x3b{left:356.032793px;}
.x51{left:358.093827px;}
.x10{left:364.507404px;}
.x17{left:370.521312px;}
.x40{left:382.934055px;}
.x1e{left:397.444482px;}
.x1c{left:401.452295px;}
.x1f{left:413.950347px;}
.x4b{left:416.684055px;}
.x7{left:421.272420px;}
.x18{left:437.813700px;}
.x59{left:445.934055px;}
.x50{left:448.184055px;}
.x4f{left:449.309055px;}
.x16{left:450.390300px;}
.x6{left:465.771300px;}
.x19{left:485.361420px;}
.x42{left:510.059055px;}
.x25{left:513.723335px;}
.x62{left:519.059055px;}
.x2f{left:520.184055px;}
.xf{left:545.173260px;}
.x64{left:580.934055px;}
.x1b{left:581.982540px;}
.x1a{left:591.610020px;}
.x44{left:637.184055px;}
.x65{left:642.809055px;}
.x24{left:701.236816px;}
.x66{left:710.309055px;}
.x2b{left:748.866053px;}
.x26{left:757.110188px;}
.x2{left:783.021300px;}
@media print{
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls13{letter-spacing:-0.353280pt;}
.ls10{letter-spacing:-0.286720pt;}
.ls12{letter-spacing:-0.261120pt;}
.lsf{letter-spacing:-0.185472pt;}
.lse{letter-spacing:-0.158976pt;}
.ls11{letter-spacing:-0.148480pt;}
.ls2{letter-spacing:-0.141312pt;}
.ls5{letter-spacing:-0.111872pt;}
.ls16{letter-spacing:-0.107520pt;}
.ls4{letter-spacing:-0.105984pt;}
.ls3{letter-spacing:-0.070656pt;}
.ls6{letter-spacing:-0.052992pt;}
.lsd{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ls14{letter-spacing:0.035840pt;}
.ls15{letter-spacing:0.056320pt;}
.lsa{letter-spacing:0.556416pt;}
.lsc{letter-spacing:0.785939pt;}
.lsb{letter-spacing:2.734320pt;}
.ls9{letter-spacing:11.905280pt;}
.ls7{letter-spacing:12.664320pt;}
.ls17{letter-spacing:13.328125pt;}
.ls1a{letter-spacing:14.645833pt;}
.ls8{letter-spacing:15.416320pt;}
.ls1f{letter-spacing:16.000000pt;}
.ls1e{letter-spacing:20.000000pt;}
.ls1b{letter-spacing:20.000002pt;}
.ls1d{letter-spacing:23.988421pt;}
.ls18{letter-spacing:28.000000pt;}
.ls19{letter-spacing:57.343750pt;}
.ls1c{letter-spacing:74.687500pt;}
.ws7b{word-spacing:-36.093750pt;}
.ws66{word-spacing:-33.085938pt;}
.ws65{word-spacing:-30.078124pt;}
.wsa{word-spacing:-27.140736pt;}
.ws8{word-spacing:-26.425344pt;}
.ws9{word-spacing:-26.398848pt;}
.ws54{word-spacing:-21.656251pt;}
.ws27{word-spacing:-20.093780pt;}
.wsa3{word-spacing:-20.093780pt;}
.ws39{word-spacing:-20.093770pt;}
.ws46{word-spacing:-20.093762pt;}
.ws28{word-spacing:-20.093760pt;}
.wsaa{word-spacing:-20.093753pt;}
.ws2b{word-spacing:-20.093752pt;}
.ws29{word-spacing:-20.093751pt;}
.ws24{word-spacing:-20.093750pt;}
.ws53{word-spacing:-20.093748pt;}
.ws87{word-spacing:-20.093741pt;}
.ws72{word-spacing:-20.093740pt;}
.ws5f{word-spacing:-20.093730pt;}
.ws43{word-spacing:-20.093720pt;}
.ws30{word-spacing:-18.450581pt;}
.ws6b{word-spacing:-18.450534pt;}
.ws8a{word-spacing:-18.450524pt;}
.ws8e{word-spacing:-18.450523pt;}
.ws8f{word-spacing:-18.450521pt;}
.wsae{word-spacing:-18.450476pt;}
.ws94{word-spacing:-18.450436pt;}
.ws8d{word-spacing:-18.448185pt;}
.ws8c{word-spacing:-18.448183pt;}
.ws90{word-spacing:-18.448182pt;}
.wsb0{word-spacing:-18.448167pt;}
.ws8b{word-spacing:-18.445902pt;}
.ws62{word-spacing:-18.441269pt;}
.ws64{word-spacing:-18.440125pt;}
.wsb2{word-spacing:-18.440060pt;}
.ws58{word-spacing:-16.760430pt;}
.ws59{word-spacing:-16.760415pt;}
.ws7f{word-spacing:-16.093780pt;}
.ws47{word-spacing:-16.093770pt;}
.ws71{word-spacing:-16.093761pt;}
.ws3a{word-spacing:-16.093760pt;}
.ws6f{word-spacing:-16.093752pt;}
.ws38{word-spacing:-16.093750pt;}
.ws61{word-spacing:-16.093749pt;}
.ws82{word-spacing:-16.093748pt;}
.ws50{word-spacing:-16.093740pt;}
.ws57{word-spacing:-16.093730pt;}
.ws5d{word-spacing:-16.093721pt;}
.ws0{word-spacing:-16.012800pt;}
.ws7{word-spacing:-15.987200pt;}
.wsd{word-spacing:-15.447040pt;}
.wse{word-spacing:-15.303680pt;}
.wsc{word-spacing:-15.150080pt;}
.wsb{word-spacing:-15.124480pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.649344pt;}
.ws3{word-spacing:-14.614016pt;}
.ws5{word-spacing:-14.608128pt;}
.ws1{word-spacing:-14.578688pt;}
.ws40{word-spacing:-12.093781pt;}
.ws3f{word-spacing:-12.093770pt;}
.ws32{word-spacing:-12.093760pt;}
.ws42{word-spacing:-12.093750pt;}
.ws6d{word-spacing:-12.093749pt;}
.ws49{word-spacing:-12.093748pt;}
.ws60{word-spacing:-12.093740pt;}
.ws3e{word-spacing:-12.093730pt;}
.ws6c{word-spacing:-12.093720pt;}
.ws48{word-spacing:-8.093771pt;}
.ws75{word-spacing:-8.093770pt;}
.ws3d{word-spacing:-8.093760pt;}
.ws5a{word-spacing:-8.093752pt;}
.ws7c{word-spacing:-8.093751pt;}
.ws36{word-spacing:-8.093750pt;}
.wsa4{word-spacing:-8.093748pt;}
.ws4d{word-spacing:-8.093740pt;}
.ws37{word-spacing:-8.093730pt;}
.ws41{word-spacing:-8.093720pt;}
.ws3b{word-spacing:-4.093770pt;}
.ws3c{word-spacing:-4.093760pt;}
.ws76{word-spacing:-4.093752pt;}
.ws44{word-spacing:-4.093751pt;}
.ws81{word-spacing:-4.093749pt;}
.ws85{word-spacing:-4.093740pt;}
.ws33{word-spacing:-4.093730pt;}
.ws70{word-spacing:-4.093720pt;}
.ws51{word-spacing:-0.093780pt;}
.ws45{word-spacing:-0.093770pt;}
.ws55{word-spacing:-0.093760pt;}
.ws31{word-spacing:-0.093750pt;}
.ws6e{word-spacing:-0.093740pt;}
.ws68{word-spacing:-0.093730pt;}
.ws98{word-spacing:-0.093720pt;}
.ws23{word-spacing:-0.064000pt;}
.ws88{word-spacing:-0.058667pt;}
.wsb3{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws74{word-spacing:3.906230pt;}
.ws73{word-spacing:3.906239pt;}
.ws52{word-spacing:3.906240pt;}
.ws96{word-spacing:3.906248pt;}
.ws35{word-spacing:3.906249pt;}
.ws84{word-spacing:3.906270pt;}
.ws5c{word-spacing:3.906280pt;}
.ws4c{word-spacing:7.906219pt;}
.ws56{word-spacing:7.906230pt;}
.ws34{word-spacing:7.906240pt;}
.ws4a{word-spacing:7.906249pt;}
.wsac{word-spacing:7.906251pt;}
.ws9a{word-spacing:7.906252pt;}
.wsa8{word-spacing:11.906220pt;}
.ws67{word-spacing:11.906240pt;}
.ws7d{word-spacing:11.906250pt;}
.ws91{word-spacing:11.906270pt;}
.ws9c{word-spacing:14.569748pt;}
.ws2e{word-spacing:14.576659pt;}
.wsb1{word-spacing:14.576705pt;}
.ws95{word-spacing:14.576711pt;}
.ws89{word-spacing:14.576748pt;}
.ws93{word-spacing:14.576749pt;}
.ws6a{word-spacing:14.576751pt;}
.ws92{word-spacing:14.576753pt;}
.ws2d{word-spacing:14.576763pt;}
.ws2f{word-spacing:14.579030pt;}
.ws63{word-spacing:14.581352pt;}
.ws7a{word-spacing:15.906240pt;}
.ws79{word-spacing:15.906250pt;}
.wsab{word-spacing:15.906269pt;}
.ws99{word-spacing:15.906280pt;}
.wsad{word-spacing:15.935969pt;}
.ws11{word-spacing:15.935980pt;}
.ws2a{word-spacing:15.935987pt;}
.ws83{word-spacing:15.935989pt;}
.ws1f{word-spacing:15.935990pt;}
.ws25{word-spacing:15.935997pt;}
.wsaf{word-spacing:15.935999pt;}
.ws1a{word-spacing:15.936000pt;}
.ws16{word-spacing:15.936002pt;}
.ws9f{word-spacing:15.936003pt;}
.ws12{word-spacing:15.936020pt;}
.ws9d{word-spacing:19.935980pt;}
.ws15{word-spacing:19.935990pt;}
.ws69{word-spacing:19.935998pt;}
.ws19{word-spacing:19.936000pt;}
.wsa2{word-spacing:19.936001pt;}
.ws4f{word-spacing:19.936020pt;}
.ws9e{word-spacing:19.936030pt;}
.ws5e{word-spacing:21.250000pt;}
.wsa1{word-spacing:21.264124pt;}
.ws78{word-spacing:23.906239pt;}
.ws77{word-spacing:23.906250pt;}
.ws14{word-spacing:23.935990pt;}
.ws21{word-spacing:23.935999pt;}
.ws1d{word-spacing:23.936000pt;}
.wsa5{word-spacing:23.936001pt;}
.ws4e{word-spacing:23.936009pt;}
.ws80{word-spacing:27.906230pt;}
.ws1c{word-spacing:27.935990pt;}
.ws10{word-spacing:27.936000pt;}
.ws1b{word-spacing:27.936002pt;}
.ws5b{word-spacing:27.936020pt;}
.wsa7{word-spacing:27.936030pt;}
.ws18{word-spacing:31.935990pt;}
.ws7e{word-spacing:31.935998pt;}
.ws13{word-spacing:31.936000pt;}
.wsa0{word-spacing:31.936001pt;}
.ws22{word-spacing:35.935990pt;}
.wsa9{word-spacing:35.936000pt;}
.ws20{word-spacing:35.936010pt;}
.ws97{word-spacing:39.935980pt;}
.ws17{word-spacing:39.935999pt;}
.wsf{word-spacing:39.936000pt;}
.ws4b{word-spacing:43.935978pt;}
.ws9b{word-spacing:43.935988pt;}
.ws1e{word-spacing:43.935990pt;}
.wsa6{word-spacing:47.936003pt;}
.ws86{word-spacing:59.906239pt;}
.ws26{word-spacing:1876.122810pt;}
.ws2c{word-spacing:1936.933810pt;}
._3f{margin-left:-8.249998pt;}
._39{margin-left:-7.093750pt;}
._b{margin-left:-6.153269pt;}
._28{margin-left:-5.124999pt;}
._13{margin-left:-4.156238pt;}
._15{margin-left:-3.199921pt;}
._10{margin-left:-2.249997pt;}
._a{margin-left:-0.923264pt;}
._0{width:0.920064pt;}
._8{width:3.747072pt;}
._2{width:11.769472pt;}
._1{width:12.665088pt;}
._41{width:13.689913pt;}
._6{width:14.823040pt;}
._11{width:16.000098pt;}
._4{width:19.000576pt;}
._3{width:20.637440pt;}
._7{width:22.607616pt;}
._e{width:24.000018pt;}
._5{width:25.592448pt;}
._f{width:28.000011pt;}
._9{width:29.662848pt;}
._d{width:32.000002pt;}
._12{width:36.000001pt;}
._16{width:40.000002pt;}
._c{width:44.000002pt;}
._14{width:48.000001pt;}
._3b{width:51.999999pt;}
._3c{width:56.000020pt;}
._3a{width:57.343750pt;}
._3d{width:63.999999pt;}
._3e{width:68.000001pt;}
._38{width:74.687500pt;}
._40{width:92.000043pt;}
._20{width:165.122890pt;}
._35{width:435.247813pt;}
._29{width:448.966561pt;}
._1d{width:597.154271pt;}
._1f{width:603.279116pt;}
._21{width:696.466557pt;}
._17{width:717.341607pt;}
._22{width:731.966557pt;}
._33{width:765.810308pt;}
._1e{width:904.404058pt;}
._30{width:952.435308pt;}
._2c{width:1073.310308pt;}
._1b{width:1078.341569pt;}
._27{width:1153.529084pt;}
._2d{width:1266.560313pt;}
._2b{width:1290.122808pt;}
._25{width:1325.685309pt;}
._24{width:1340.546081pt;}
._2e{width:1386.091559pt;}
._1c{width:1412.841559pt;}
._26{width:1421.685309pt;}
._2a{width:1475.029059pt;}
._1a{width:1478.529059pt;}
._31{width:1531.810310pt;}
._32{width:1546.029059pt;}
._34{width:1563.841560pt;}
._19{width:1599.435309pt;}
._2f{width:1602.841560pt;}
._23{width:1611.904059pt;}
._36{width:1627.591560pt;}
._37{width:1659.622809pt;}
._18{width:1806.296074pt;}
.fsd{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fsc{font-size:38.400002pt;}
.fs3{font-size:48.640000pt;}
.fsa{font-size:51.200000pt;}
.fse{font-size:53.333332pt;}
.fs0{font-size:53.760000pt;}
.fsb{font-size:58.666668pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs6{font-size:71.680000pt;}
.fs5{font-size:74.240000pt;}
.fs9{font-size:88.320000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:5.148133pt;}
.y333{bottom:9.880206pt;}
.y335{bottom:9.885416pt;}
.y1af{bottom:10.169271pt;}
.y1bc{bottom:10.171872pt;}
.y1b5{bottom:10.171876pt;}
.y1b3{bottom:10.174480pt;}
.y330{bottom:10.177084pt;}
.y24d{bottom:10.458333pt;}
.y214{bottom:10.460937pt;}
.y232{bottom:10.463541pt;}
.y2a1{bottom:10.463548pt;}
.y1b1{bottom:12.700521pt;}
.y338{bottom:19.656244pt;}
.y27e{bottom:19.656245pt;}
.y246{bottom:19.656247pt;}
.y24b{bottom:19.656248pt;}
.y253{bottom:19.656251pt;}
.y342{bottom:19.656261pt;}
.y229{bottom:19.658852pt;}
.y22b{bottom:19.658855pt;}
.y2c7{bottom:19.661447pt;}
.y2b4{bottom:19.661448pt;}
.y25f{bottom:19.661451pt;}
.y250{bottom:19.661457pt;}
.y219{bottom:19.661459pt;}
.y27b{bottom:19.661460pt;}
.y230{bottom:19.661461pt;}
.y223{bottom:19.661464pt;}
.y2a5{bottom:19.661471pt;}
.y33e{bottom:19.666671pt;}
.y332{bottom:25.213542pt;}
.y1bb{bottom:27.036459pt;}
.y2a0{bottom:28.859375pt;}
.y345{bottom:43.901043pt;}
.y27d{bottom:47.255205pt;}
.y245{bottom:47.255207pt;}
.y22f{bottom:47.255208pt;}
.y252{bottom:47.255209pt;}
.y262{bottom:47.255211pt;}
.y289{bottom:47.255217pt;}
.y2cd{bottom:47.255219pt;}
.y228{bottom:47.257812pt;}
.y218{bottom:47.257819pt;}
.y298{bottom:47.260405pt;}
.y2c6{bottom:47.260407pt;}
.y25e{bottom:47.260411pt;}
.y24f{bottom:47.260417pt;}
.y290{bottom:47.260420pt;}
.y222{bottom:47.260424pt;}
.y4{bottom:50.534800pt;}
.y126{bottom:53.368492pt;}
.yc8{bottom:53.368972pt;}
.ye6{bottom:53.369145pt;}
.y193{bottom:53.369785pt;}
.y3{bottom:68.134800pt;}
.y2c5{bottom:74.854153pt;}
.y2a7{bottom:74.854157pt;}
.y217{bottom:74.854165pt;}
.y244{bottom:74.854167pt;}
.y236{bottom:74.854168pt;}
.y23f{bottom:74.854171pt;}
.y288{bottom:74.854177pt;}
.y2cc{bottom:74.854179pt;}
.y227{bottom:74.856772pt;}
.y221{bottom:74.856784pt;}
.y25d{bottom:74.859371pt;}
.y2a4{bottom:74.859377pt;}
.y28f{bottom:74.859380pt;}
.y243{bottom:102.447913pt;}
.y261{bottom:102.447917pt;}
.y2c4{bottom:102.453113pt;}
.y287{bottom:102.453124pt;}
.y216{bottom:102.453125pt;}
.y28e{bottom:102.453127pt;}
.y235{bottom:102.453128pt;}
.y220{bottom:102.453131pt;}
.y226{bottom:102.453132pt;}
.y2a3{bottom:102.458337pt;}
.y5b{bottom:112.294800pt;}
.y122{bottom:116.416670pt;}
.y169{bottom:117.726559pt;}
.y27c{bottom:118.718748pt;}
.y268{bottom:118.942709pt;}
.y37{bottom:119.334800pt;}
.y2e8{bottom:120.411460pt;}
.y237{bottom:120.479161pt;}
.y55{bottom:127.334800pt;}
.y21a{bottom:127.479161pt;}
.y5a{bottom:127.974800pt;}
.y2a6{bottom:128.145836pt;}
.y177{bottom:129.615887pt;}
.y242{bottom:130.046873pt;}
.y234{bottom:130.046875pt;}
.y2cb{bottom:130.046885pt;}
.y225{bottom:130.049479pt;}
.y2c3{bottom:130.052073pt;}
.y25c{bottom:130.052077pt;}
.y286{bottom:130.052084pt;}
.y28d{bottom:130.052087pt;}
.y23e{bottom:130.052091pt;}
.y136{bottom:130.816407pt;}
.y204{bottom:132.416669pt;}
.y28a{bottom:133.942707pt;}
.y2b6{bottom:133.942708pt;}
.y346{bottom:134.515625pt;}
.y24e{bottom:135.479163pt;}
.y329{bottom:136.703119pt;}
.y121{bottom:136.808267pt;}
.y36{bottom:137.254800pt;}
.y167{bottom:138.605473pt;}
.y2f0{bottom:138.812500pt;}
.y189{bottom:138.815100pt;}
.ye5{bottom:138.816087pt;}
.y105{bottom:138.816407pt;}
.y101{bottom:139.746740pt;}
.y1c0{bottom:142.611981pt;}
.yc7{bottom:142.884447pt;}
.y144{bottom:143.105473pt;}
.yac{bottom:143.109620pt;}
.y59{bottom:143.654800pt;}
.y2e7{bottom:148.010420pt;}
.y2ce{bottom:148.947921pt;}
.y344{bottom:149.208329pt;}
.y19b{bottom:153.080727pt;}
.y2f9{bottom:153.083327pt;}
.y35{bottom:153.254800pt;}
.y54{bottom:153.894800pt;}
.y328{bottom:156.088545pt;}
.y2c2{bottom:157.645820pt;}
.y241{bottom:157.645833pt;}
.y23d{bottom:157.645837pt;}
.y2ca{bottom:157.645845pt;}
.y25b{bottom:157.651037pt;}
.y28c{bottom:157.651047pt;}
.y21f{bottom:157.651051pt;}
.y135{bottom:158.414060pt;}
.y58{bottom:159.334800pt;}
.y233{bottom:163.078119pt;}
.y203{bottom:164.283848pt;}
.yab{bottom:165.508060pt;}
.y14e{bottom:166.203127pt;}
.y192{bottom:166.411460pt;}
.y176{bottom:166.412767pt;}
.ye4{bottom:166.413740pt;}
.y104{bottom:166.414060pt;}
.y32e{bottom:166.484372pt;}
.y34{bottom:167.334800pt;}
.y100{bottom:167.344407pt;}
.yc6{bottom:170.482100pt;}
.y143{bottom:170.703127pt;}
.y1bf{bottom:174.479163pt;}
.y57{bottom:175.014800pt;}
.y2e6{bottom:175.609380pt;}
.y2b5{bottom:176.541660pt;}
.y53{bottom:180.454800pt;}
.y19a{bottom:180.677087pt;}
.y33{bottom:181.094800pt;}
.y312{bottom:184.812500pt;}
.y2c1{bottom:185.244780pt;}
.y2c9{bottom:185.244792pt;}
.y27a{bottom:185.244793pt;}
.y2ae{bottom:185.244797pt;}
.y21e{bottom:185.247403pt;}
.y25a{bottom:185.249997pt;}
.y134{bottom:186.011713pt;}
.yaa{bottom:187.906500pt;}
.y267{bottom:189.140620pt;}
.y56{bottom:190.374800pt;}
.y2c8{bottom:191.546868pt;}
.y316{bottom:192.391930pt;}
.y14d{bottom:193.800780pt;}
.y188{bottom:194.010420pt;}
.ye3{bottom:194.011393pt;}
.y120{bottom:194.011713pt;}
.y32{bottom:194.854800pt;}
.yff{bottom:194.942060pt;}
.y1ad{bottom:194.942713pt;}
.y202{bottom:196.143225pt;}
.y1ea{bottom:198.041660pt;}
.yc5{bottom:198.079913pt;}
.y142{bottom:198.300780pt;}
.y326{bottom:200.843753pt;}
.y2e5{bottom:203.208327pt;}
.y175{bottom:203.209633pt;}
.y24c{bottom:205.677087pt;}
.y1be{bottom:206.338545pt;}
.y199{bottom:208.276047pt;}
.y31{bottom:208.614800pt;}
.ya9{bottom:210.304927pt;}
.y259{bottom:212.843744pt;}
.y279{bottom:212.843753pt;}
.y21d{bottom:212.843757pt;}
.y52{bottom:213.094800pt;}
.y133{bottom:213.609380pt;}
.y343{bottom:214.802079pt;}
.y1da{bottom:218.333327pt;}
.y14c{bottom:221.398433pt;}
.y187{bottom:221.608073pt;}
.ye2{bottom:221.609047pt;}
.y11f{bottom:221.609380pt;}
.y30{bottom:222.374800pt;}
.yfe{bottom:222.539713pt;}
.y1ac{bottom:222.541660pt;}
.y1e9{bottom:225.640620pt;}
.yc4{bottom:225.677567pt;}
.y141{bottom:225.898433pt;}
.y201{bottom:228.010412pt;}
.y325{bottom:228.437500pt;}
.y2b3{bottom:229.338545pt;}
.ya8{bottom:232.703367pt;}
.y198{bottom:235.874993pt;}
.y2f{bottom:236.134800pt;}
.y1bd{bottom:238.205732pt;}
.y174{bottom:240.006513pt;}
.y2ad{bottom:240.437504pt;}
.y2c0{bottom:240.442700pt;}
.y258{bottom:240.442704pt;}
.y278{bottom:240.442713pt;}
.y23c{bottom:240.442717pt;}
.y132{bottom:241.207033pt;}
.y51{bottom:241.894800pt;}
.y266{bottom:241.937505pt;}
.y26a{bottom:244.109373pt;}
.y1d9{bottom:245.932287pt;}
.y166{bottom:248.996100pt;}
.y14b{bottom:249.031254pt;}
.y18c{bottom:249.205727pt;}
.ye1{bottom:249.206700pt;}
.y11e{bottom:249.207033pt;}
.y2ef{bottom:249.208327pt;}
.y2e{bottom:249.894800pt;}
.y1ab{bottom:250.140620pt;}
.y215{bottom:252.869788pt;}
.y1e8{bottom:253.236980pt;}
.y140{bottom:253.496100pt;}
.y2a2{bottom:253.531243pt;}
.ya7{bottom:255.101807pt;}
.y324{bottom:256.041660pt;}
.y24a{bottom:256.937505pt;}
.y2e4{bottom:258.401047pt;}
.y310{bottom:258.406247pt;}
.y200{bottom:259.877608pt;}
.y50{bottom:261.734800pt;}
.y2f8{bottom:263.468753pt;}
.y197{bottom:263.471353pt;}
.y2d{bottom:263.654800pt;}
.y277{bottom:268.036460pt;}
.y2ac{bottom:268.036464pt;}
.y2bf{bottom:268.041660pt;}
.y257{bottom:268.041664pt;}
.y21c{bottom:268.041673pt;}
.y131{bottom:268.804687pt;}
.y1ba{bottom:270.072913pt;}
.y317{bottom:273.078119pt;}
.y1d8{bottom:273.531247pt;}
.y165{bottom:276.593753pt;}
.y191{bottom:276.802087pt;}
.y173{bottom:276.803380pt;}
.ye0{bottom:276.804367pt;}
.y11d{bottom:276.804687pt;}
.ya6{bottom:277.500247pt;}
.yfd{bottom:277.735020pt;}
.y1aa{bottom:277.736980pt;}
.y2c{bottom:278.054800pt;}
.y1e7{bottom:280.833327pt;}
.yc3{bottom:280.872887pt;}
.y4f{bottom:281.574800pt;}
.y323{bottom:283.635420pt;}
.y341{bottom:284.994785pt;}
.y2e3{bottom:285.999993pt;}
.y1b9{bottom:286.940101pt;}
.y196{bottom:291.067713pt;}
.y2b{bottom:295.014800pt;}
.y30f{bottom:295.203127pt;}
.y2be{bottom:295.635407pt;}
.y276{bottom:295.635420pt;}
.y23b{bottom:295.635424pt;}
.y28b{bottom:295.640620pt;}
.y256{bottom:295.640624pt;}
.y130{bottom:296.402340pt;}
.y2b2{bottom:299.531255pt;}
.ya5{bottom:299.898687pt;}
.y1d7{bottom:301.127607pt;}
.y4e{bottom:301.414800pt;}
.y164{bottom:304.191407pt;}
.y14a{bottom:304.296873pt;}
.y186{bottom:304.401047pt;}
.ydf{bottom:304.402020pt;}
.y125{bottom:304.402340pt;}
.yfc{bottom:305.332687pt;}
.y1e6{bottom:308.432287pt;}
.yc2{bottom:308.470540pt;}
.y13f{bottom:308.691407pt;}
.y322{bottom:311.239580pt;}
.y2a{bottom:311.974800pt;}
.y265{bottom:312.130201pt;}
.y2e2{bottom:313.593753pt;}
.y231{bottom:316.062505pt;}
.y71{bottom:318.666260pt;}
.y1ff{bottom:318.666660pt;}
.y1b8{bottom:318.799479pt;}
.ya4{bottom:322.297113pt;}
.y2bd{bottom:323.234367pt;}
.y275{bottom:323.234380pt;}
.y23a{bottom:323.234383pt;}
.y2ab{bottom:323.234384pt;}
.y255{bottom:323.239580pt;}
.y12f{bottom:323.999993pt;}
.y249{bottom:327.130201pt;}
.y303{bottom:327.864580pt;}
.y29{bottom:328.294800pt;}
.y1d6{bottom:328.723953pt;}
.y149{bottom:331.894527pt;}
.y172{bottom:331.998700pt;}
.yde{bottom:331.999673pt;}
.y11c{bottom:331.999993pt;}
.yfb{bottom:332.930340pt;}
.y1a9{bottom:332.932287pt;}
.y1e5{bottom:336.031247pt;}
.yc1{bottom:336.068193pt;}
.y13e{bottom:336.289060pt;}
.y321{bottom:338.833327pt;}
.y168{bottom:339.683599pt;}
.y2e1{bottom:341.192713pt;}
.y28{bottom:342.054800pt;}
.y2b1{bottom:342.130201pt;}
.ya3{bottom:344.695553pt;}
.y70{bottom:346.263913pt;}
.y86{bottom:346.263993pt;}
.y1fe{bottom:346.265620pt;}
.y1b7{bottom:350.666665pt;}
.y2bc{bottom:350.833327pt;}
.y239{bottom:350.833340pt;}
.y12e{bottom:351.597660pt;}
.y264{bottom:354.729161pt;}
.y340{bottom:355.182295pt;}
.y27{bottom:355.814800pt;}
.y1d5{bottom:356.322913pt;}
.y163{bottom:359.386713pt;}
.y148{bottom:359.492193pt;}
.y2ee{bottom:359.593753pt;}
.y171{bottom:359.596353pt;}
.ydd{bottom:359.597327pt;}
.y11b{bottom:359.597660pt;}
.y4d{bottom:360.294800pt;}
.yfa{bottom:360.527993pt;}
.y1a8{bottom:360.531247pt;}
.y1e4{bottom:363.627607pt;}
.yc0{bottom:363.665847pt;}
.y13d{bottom:363.886713pt;}
.y302{bottom:364.661460pt;}
.y327{bottom:366.432287pt;}
.ya2{bottom:367.093993pt;}
.y22e{bottom:367.328119pt;}
.y274{bottom:368.463540pt;}
.y2e0{bottom:368.791660pt;}
.y30e{bottom:368.796873pt;}
.y26{bottom:369.574800pt;}
.y248{bottom:369.729161pt;}
.y85{bottom:373.861660pt;}
.y1fd{bottom:373.861980pt;}
.y2f7{bottom:373.864580pt;}
.y213{bottom:378.260416pt;}
.y2bb{bottom:378.427073pt;}
.y2aa{bottom:378.427091pt;}
.y12d{bottom:379.195313pt;}
.y1b6{bottom:382.533848pt;}
.y25{bottom:383.334800pt;}
.y1d4{bottom:383.921873pt;}
.y2b0{bottom:384.729161pt;}
.y162{bottom:386.984380pt;}
.y147{bottom:387.089847pt;}
.y190{bottom:387.192713pt;}
.y170{bottom:387.194007pt;}
.y11a{bottom:387.195313pt;}
.yf9{bottom:388.125647pt;}
.y1a7{bottom:388.127607pt;}
.ya1{bottom:389.492433pt;}
.y1e3{bottom:391.223953pt;}
.ybf{bottom:391.263513pt;}
.y13c{bottom:391.484380pt;}
.y320{bottom:394.026047pt;}
.y273{bottom:396.062500pt;}
.y2df{bottom:396.390620pt;}
.y24{bottom:397.094800pt;}
.y263{bottom:397.328121pt;}
.y33f{bottom:397.781243pt;}
.y2b7{bottom:399.729173pt;}
.y1fc{bottom:401.458327pt;}
.y6f{bottom:401.459233pt;}
.y30d{bottom:405.593753pt;}
.y2ba{bottom:406.026033pt;}
.y4c{bottom:406.374800pt;}
.y29f{bottom:406.520832pt;}
.y12c{bottom:406.792967pt;}
.y23{bottom:410.854800pt;}
.y1d3{bottom:411.518233pt;}
.ya0{bottom:411.890873pt;}
.y247{bottom:412.328121pt;}
.y1b4{bottom:414.401043pt;}
.y161{bottom:414.582033pt;}
.y146{bottom:414.687500pt;}
.y16f{bottom:414.791660pt;}
.ydc{bottom:414.792647pt;}
.y119{bottom:414.792967pt;}
.y1a6{bottom:415.723953pt;}
.y1e2{bottom:418.822913pt;}
.ybe{bottom:418.861167pt;}
.y13b{bottom:419.082033pt;}
.y31f{bottom:421.624993pt;}
.y272{bottom:423.661460pt;}
.y2de{bottom:423.989580pt;}
.y22{bottom:424.614800pt;}
.y29e{bottom:424.921873pt;}
.y2af{bottom:427.328121pt;}
.yf8{bottom:429.056647pt;}
.y6e{bottom:429.056887pt;}
.y84{bottom:429.056967pt;}
.y1fb{bottom:429.057287pt;}
.y2b9{bottom:433.624993pt;}
.y2a9{bottom:433.625007pt;}
.y9f{bottom:434.289300pt;}
.y12b{bottom:434.390620pt;}
.y22d{bottom:437.520828pt;}
.y301{bottom:438.255207pt;}
.y21{bottom:438.694800pt;}
.y1d2{bottom:439.114580pt;}
.y260{bottom:439.927076pt;}
.y160{bottom:442.179687pt;}
.y145{bottom:442.320308pt;}
.y185{bottom:442.389327pt;}
.ydb{bottom:442.390300pt;}
.y118{bottom:442.390620pt;}
.y1a5{bottom:443.322913pt;}
.y1b2{bottom:446.260412pt;}
.y1e1{bottom:446.421873pt;}
.y13a{bottom:446.679687pt;}
.y31e{bottom:449.218753pt;}
.y271{bottom:451.255207pt;}
.y212{bottom:451.916660pt;}
.y20{bottom:452.454800pt;}
.y240{bottom:454.927080pt;}
.y6d{bottom:456.654540pt;}
.y83{bottom:456.654620pt;}
.y1fa{bottom:456.656247pt;}
.y9e{bottom:456.687740pt;}
.y2b8{bottom:461.223953pt;}
.y12a{bottom:461.988287pt;}
.y1f{bottom:467.174800pt;}
.y33d{bottom:467.979163pt;}
.y15f{bottom:469.777340pt;}
.y16e{bottom:469.986980pt;}
.yda{bottom:469.987953pt;}
.y117{bottom:469.988287pt;}
.y2ed{bottom:469.989580pt;}
.y1a4{bottom:470.921873pt;}
.y1e0{bottom:474.018233pt;}
.ybd{bottom:474.056473pt;}
.y139{bottom:474.277340pt;}
.y300{bottom:475.052087pt;}
.y31d{bottom:476.822913pt;}
.y29d{bottom:477.718745pt;}
.y1b0{bottom:478.127597pt;}
.y270{bottom:478.854167pt;}
.y9d{bottom:479.086180pt;}
.y2dd{bottom:479.182287pt;}
.y30c{bottom:479.187500pt;}
.y211{bottom:479.515620pt;}
.y297{bottom:480.114588pt;}
.y22c{bottom:480.119788pt;}
.y1ae{bottom:480.658848pt;}
.y2f6{bottom:484.249993pt;}
.yf7{bottom:484.251953pt;}
.y6c{bottom:484.252193pt;}
.y82{bottom:484.252273pt;}
.y1f9{bottom:484.252607pt;}
.y1e{bottom:485.734800pt;}
.y129{bottom:489.585940pt;}
.y315{bottom:492.291660pt;}
.y1d1{bottom:494.312500pt;}
.y18f{bottom:497.583327pt;}
.y16d{bottom:497.584633pt;}
.yd9{bottom:497.585607pt;}
.y124{bottom:497.585940pt;}
.y4b{bottom:498.534800pt;}
.y9c{bottom:501.484620pt;}
.ybc{bottom:501.654140pt;}
.y1d{bottom:503.974800pt;}
.y31c{bottom:504.416660pt;}
.y26f{bottom:506.453127pt;}
.y2dc{bottom:506.781247pt;}
.y210{bottom:507.111980pt;}
.y285{bottom:507.713536pt;}
.y1df{bottom:508.994781pt;}
.y1f8{bottom:511.848953pt;}
.yf6{bottom:511.849607pt;}
.y6b{bottom:511.849860pt;}
.y81{bottom:511.849940pt;}
.y30b{bottom:515.984380pt;}
.y128{bottom:517.183593pt;}
.y9b{bottom:519.883060pt;}
.y314{bottom:519.895833pt;}
.y1d0{bottom:521.908860pt;}
.y138{bottom:521.996096pt;}
.y1c{bottom:522.534800pt;}
.y22a{bottom:522.718752pt;}
.y15e{bottom:524.972660pt;}
.y16c{bottom:525.182287pt;}
.yd8{bottom:525.183273pt;}
.y116{bottom:525.183593pt;}
.y1a3{bottom:526.114580pt;}
.ybb{bottom:529.251793pt;}
.y31b{bottom:532.020833pt;}
.y26e{bottom:534.046873pt;}
.y2db{bottom:534.374993pt;}
.y20f{bottom:534.708327pt;}
.y33c{bottom:538.182289pt;}
.yf5{bottom:539.447260pt;}
.y6a{bottom:539.447513pt;}
.y80{bottom:539.447593pt;}
.y1f7{bottom:539.447913pt;}
.y137{bottom:540.147132pt;}
.y1b{bottom:540.774800pt;}
.y9a{bottom:542.281500pt;}
.y4a{bottom:544.294800pt;}
.y127{bottom:544.781247pt;}
.y29c{bottom:547.911455pt;}
.y1cf{bottom:549.505207pt;}
.y15d{bottom:552.570313pt;}
.y2a8{bottom:552.718743pt;}
.y16b{bottom:552.779953pt;}
.y103{bottom:552.780927pt;}
.y115{bottom:552.781247pt;}
.y1a2{bottom:553.713540pt;}
.yba{bottom:556.849447pt;}
.y1a{bottom:559.334800pt;}
.y26d{bottom:561.645833pt;}
.y2da{bottom:561.973953pt;}
.y20e{bottom:562.307287pt;}
.y99{bottom:564.679927pt;}
.y254{bottom:565.312503pt;}
.y224{bottom:565.315101pt;}
.yf4{bottom:567.044927pt;}
.y69{bottom:567.045167pt;}
.y7f{bottom:567.045247pt;}
.y2f5{bottom:567.046873pt;}
.y1ce{bottom:577.104167pt;}
.y19{bottom:577.574800pt;}
.y15c{bottom:580.167967pt;}
.y2ec{bottom:580.374993pt;}
.y16a{bottom:580.377607pt;}
.yd7{bottom:580.378580pt;}
.y114{bottom:580.378900pt;}
.y33b{bottom:580.776039pt;}
.y1a1{bottom:581.312500pt;}
.yb9{bottom:584.447100pt;}
.y2ff{bottom:585.442713pt;}
.y98{bottom:587.078367pt;}
.y31a{bottom:587.213540pt;}
.y26c{bottom:589.244793pt;}
.y2d9{bottom:589.572913pt;}
.y30a{bottom:589.578127pt;}
.y20d{bottom:589.906247pt;}
.y49{bottom:590.374800pt;}
.y29b{bottom:590.510415pt;}
.yf3{bottom:594.642580pt;}
.y68{bottom:594.642820pt;}
.y7e{bottom:594.642900pt;}
.y1f6{bottom:594.643233pt;}
.y2f4{bottom:594.645833pt;}
.y18{bottom:596.134800pt;}
.y1cd{bottom:604.703127pt;}
.y296{bottom:605.505212pt;}
.y15b{bottom:607.765620pt;}
.y18e{bottom:607.973953pt;}
.y184{bottom:607.975260pt;}
.yd6{bottom:607.976233pt;}
.y113{bottom:607.976567pt;}
.y1a0{bottom:608.908860pt;}
.y97{bottom:609.476807pt;}
.yb8{bottom:612.044753pt;}
.y17{bottom:613.414800pt;}
.y319{bottom:614.807287pt;}
.y26b{bottom:616.843753pt;}
.y2d8{bottom:617.171873pt;}
.y20c{bottom:617.502607pt;}
.y1f5{bottom:622.239580pt;}
.yf2{bottom:622.240233pt;}
.y67{bottom:622.240473pt;}
.y7d{bottom:622.240553pt;}
.y309{bottom:626.374993pt;}
.y16{bottom:627.174800pt;}
.y96{bottom:627.875247pt;}
.y1cc{bottom:632.299473pt;}
.y29a{bottom:633.109375pt;}
.y15a{bottom:635.363287pt;}
.y238{bottom:635.510409pt;}
.y183{bottom:635.572913pt;}
.yd5{bottom:635.573887pt;}
.y112{bottom:635.574220pt;}
.y48{bottom:636.454800pt;}
.y19f{bottom:636.505207pt;}
.yb7{bottom:639.642420pt;}
.y15{bottom:640.934800pt;}
.y318{bottom:641.348959pt;}
.y2d7{bottom:644.770833pt;}
.y20b{bottom:645.098953pt;}
.yf1{bottom:649.837887pt;}
.y7c{bottom:649.838220pt;}
.y1f4{bottom:649.838540pt;}
.y95{bottom:650.273687pt;}
.y33a{bottom:650.963535pt;}
.y14{bottom:654.694800pt;}
.y47{bottom:656.294800pt;}
.y295{bottom:658.302083pt;}
.y1cb{bottom:659.895833pt;}
.y284{bottom:660.703127pt;}
.y159{bottom:662.960940pt;}
.y18b{bottom:663.170567pt;}
.yd4{bottom:663.171553pt;}
.y111{bottom:663.171873pt;}
.y19e{bottom:664.104167pt;}
.y13{bottom:668.454800pt;}
.y2d6{bottom:672.364580pt;}
.y94{bottom:672.672113pt;}
.y20a{bottom:672.697913pt;}
.y299{bottom:675.708333pt;}
.yf0{bottom:677.435553pt;}
.y66{bottom:677.435793pt;}
.y1f3{bottom:677.437500pt;}
.y46{bottom:681.254800pt;}
.y12{bottom:682.214800pt;}
.y1ca{bottom:687.494793pt;}
.y158{bottom:690.558593pt;}
.y182{bottom:690.768233pt;}
.yd3{bottom:690.769207pt;}
.y110{bottom:690.769527pt;}
.y2eb{bottom:690.770833pt;}
.y19d{bottom:691.703127pt;}
.y339{bottom:693.572916pt;}
.yb6{bottom:694.837727pt;}
.y93{bottom:695.070553pt;}
.y2fe{bottom:695.833327pt;}
.y11{bottom:696.294800pt;}
.y1de{bottom:697.856772pt;}
.y2d5{bottom:699.963540pt;}
.y308{bottom:699.968753pt;}
.y209{bottom:700.296873pt;}
.y2f3{bottom:705.031247pt;}
.yef{bottom:705.033207pt;}
.y65{bottom:705.033447pt;}
.y7b{bottom:705.033527pt;}
.y283{bottom:713.500000pt;}
.y1c9{bottom:715.093753pt;}
.y92{bottom:717.468993pt;}
.y21b{bottom:718.302076pt;}
.y18d{bottom:718.364580pt;}
.y181{bottom:718.365887pt;}
.yd2{bottom:718.366860pt;}
.y10f{bottom:718.367193pt;}
.y10{bottom:719.974800pt;}
.yb5{bottom:722.435380pt;}
.y2d4{bottom:727.562500pt;}
.y45{bottom:728.294800pt;}
.y294{bottom:728.499996pt;}
.y1dd{bottom:731.590498pt;}
.y19c{bottom:732.630207pt;}
.yee{bottom:732.630860pt;}
.y64{bottom:732.631100pt;}
.y7a{bottom:732.631180pt;}
.y337{bottom:736.166669pt;}
.y307{bottom:736.765620pt;}
.y91{bottom:739.867433pt;}
.y1c8{bottom:742.690100pt;}
.yf{bottom:744.294800pt;}
.y157{bottom:745.753900pt;}
.y180{bottom:745.963540pt;}
.yd1{bottom:745.964513pt;}
.y10e{bottom:745.964847pt;}
.y32d{bottom:748.260420pt;}
.yb4{bottom:750.033047pt;}
.y2d3{bottom:755.156247pt;}
.y208{bottom:755.489580pt;}
.yed{bottom:760.228513pt;}
.y63{bottom:760.228753pt;}
.y79{bottom:760.228847pt;}
.y1f2{bottom:760.229167pt;}
.y90{bottom:762.265873pt;}
.ye{bottom:765.094800pt;}
.y2fd{bottom:769.427087pt;}
.y293{bottom:771.093748pt;}
.y156{bottom:773.351567pt;}
.y17f{bottom:773.561193pt;}
.yd0{bottom:773.562180pt;}
.y10d{bottom:773.562500pt;}
.y44{bottom:774.374800pt;}
.y32c{bottom:775.864580pt;}
.yb3{bottom:777.630700pt;}
.yd{bottom:778.854800pt;}
.y2d2{bottom:782.755207pt;}
.y207{bottom:783.088540pt;}
.y8f{bottom:784.664300pt;}
.y1c7{bottom:786.221359pt;}
.yec{bottom:787.826167pt;}
.y62{bottom:787.826420pt;}
.y78{bottom:787.826500pt;}
.y1f1{bottom:787.828127pt;}
.yc{bottom:793.574800pt;}
.y43{bottom:797.414800pt;}
.y155{bottom:800.949220pt;}
.y2ea{bottom:801.156247pt;}
.y17e{bottom:801.158860pt;}
.ycf{bottom:801.159833pt;}
.y10c{bottom:801.160153pt;}
.yb2{bottom:805.228353pt;}
.y2fc{bottom:806.223953pt;}
.y336{bottom:806.364585pt;}
.y38{bottom:806.666667pt;}
.y8e{bottom:807.062740pt;}
.y311{bottom:810.359380pt;}
.y206{bottom:810.687500pt;}
.yb{bottom:810.854800pt;}
.y282{bottom:811.291668pt;}
.y292{bottom:813.692708pt;}
.yeb{bottom:815.423833pt;}
.y61{bottom:815.424073pt;}
.y77{bottom:815.424153pt;}
.y1f0{bottom:815.424473pt;}
.y2f2{bottom:815.427087pt;}
.y1c6{bottom:818.088545pt;}
.y8d{bottom:825.461180pt;}
.y2d1{bottom:826.291667pt;}
.y154{bottom:828.582027pt;}
.y195{bottom:828.755207pt;}
.y18a{bottom:828.756513pt;}
.y102{bottom:828.757487pt;}
.y10b{bottom:828.757807pt;}
.y32b{bottom:830.005212pt;}
.ya{bottom:831.014800pt;}
.yb1{bottom:832.826007pt;}
.y42{bottom:835.174800pt;}
.y205{bottom:838.283860pt;}
.y1ef{bottom:843.020833pt;}
.y60{bottom:843.021727pt;}
.y76{bottom:843.021807pt;}
.y306{bottom:847.156247pt;}
.y8c{bottom:847.859620pt;}
.y1c5{bottom:849.955728pt;}
.y9{bottom:850.534800pt;}
.y281{bottom:853.890628pt;}
.y41{bottom:855.334800pt;}
.y291{bottom:856.291665pt;}
.y17d{bottom:856.354167pt;}
.yce{bottom:856.355140pt;}
.y10a{bottom:856.355473pt;}
.y8b{bottom:870.258060pt;}
.y8{bottom:870.374800pt;}
.yea{bottom:870.619140pt;}
.y1ee{bottom:870.619793pt;}
.y40{bottom:871.334800pt;}
.y331{bottom:876.557291pt;}
.yb0{bottom:878.763679pt;}
.y2fb{bottom:879.817713pt;}
.y1c4{bottom:881.822916pt;}
.y153{bottom:883.847660pt;}
.y269{bottom:883.890624pt;}
.y17c{bottom:883.951820pt;}
.ycd{bottom:883.952793pt;}
.y109{bottom:883.953127pt;}
.y32a{bottom:883.958327pt;}
.y7{bottom:888.934800pt;}
.y334{bottom:891.885416pt;}
.y8a{bottom:892.656495pt;}
.y3f{bottom:895.334800pt;}
.y280{bottom:896.489583pt;}
.ye9{bottom:898.216797pt;}
.y5f{bottom:898.217041pt;}
.y75{bottom:898.217123pt;}
.y1ed{bottom:898.218749pt;}
.yaf{bottom:904.061524pt;}
.y6{bottom:906.854800pt;}
.y152{bottom:911.445312pt;}
.y251{bottom:911.489583pt;}
.y17b{bottom:911.549479pt;}
.ycc{bottom:911.550456pt;}
.y108{bottom:911.550781pt;}
.y2e9{bottom:911.552083pt;}
.y3e{bottom:912.614800pt;}
.y1c3{bottom:913.682291pt;}
.y89{bottom:915.054932pt;}
.y2fa{bottom:916.614583pt;}
.y305{bottom:920.750000pt;}
.y32f{bottom:922.218749pt;}
.y2d0{bottom:924.083333pt;}
.y2f1{bottom:925.812500pt;}
.ye8{bottom:925.814453pt;}
.y5e{bottom:925.814697pt;}
.y74{bottom:925.814779pt;}
.y1ec{bottom:925.815104pt;}
.y5{bottom:926.374800pt;}
.y3d{bottom:928.614800pt;}
.yae{bottom:929.359375pt;}
.y88{bottom:937.453369pt;}
.y151{bottom:939.042969pt;}
.y27f{bottom:939.083332pt;}
.y194{bottom:939.145833pt;}
.y17a{bottom:939.147136pt;}
.ycb{bottom:939.148112pt;}
.y123{bottom:939.148437pt;}
.y313{bottom:939.151041pt;}
.y1c2{bottom:945.549479pt;}
.y1eb{bottom:953.411459pt;}
.ye7{bottom:953.412109pt;}
.y5d{bottom:953.412353pt;}
.y73{bottom:953.412435pt;}
.y3c{bottom:953.894800pt;}
.yad{bottom:954.657227pt;}
.y304{bottom:957.546875pt;}
.y87{bottom:959.851807pt;}
.y150{bottom:966.640625pt;}
.y2cf{bottom:966.682291pt;}
.y179{bottom:966.744792pt;}
.yca{bottom:966.745768pt;}
.y107{bottom:966.746093pt;}
.y1dc{bottom:970.291667pt;}
.y3b{bottom:974.374800pt;}
.y1c1{bottom:977.416665pt;}
.y3a{bottom:986.854800pt;}
.y14f{bottom:994.273437pt;}
.y178{bottom:994.342448pt;}
.y72{bottom:994.343261pt;}
.y5c{bottom:994.343343pt;}
.yc9{bottom:994.343424pt;}
.y106{bottom:994.343749pt;}
.y1db{bottom:995.588541pt;}
.y2{bottom:1014.054800pt;}
.y1{bottom:1025.894800pt;}
.hb{height:21.333333pt;}
.hf{height:23.034375pt;}
.h3{height:24.740625pt;}
.h1d{height:28.687500pt;}
.h43{height:29.333333pt;}
.h21{height:30.861979pt;}
.h25{height:30.864584pt;}
.h24{height:30.867188pt;}
.h40{height:30.869792pt;}
.h33{height:32.395833pt;}
.h28{height:32.398437pt;}
.h2f{height:32.401041pt;}
.h8{height:32.418750pt;}
.h23{height:33.393229pt;}
.h2{height:35.831250pt;}
.h42{height:36.145832pt;}
.h7{height:36.480000pt;}
.h15{height:37.750000pt;}
.hd{height:39.243750pt;}
.h27{height:39.760418pt;}
.h9{height:40.307500pt;}
.ha{height:40.911250pt;}
.h39{height:41.593751pt;}
.h2c{height:41.596355pt;}
.h2d{height:41.598959pt;}
.h4{height:42.656250pt;}
.h16{height:43.343750pt;}
.h13{height:44.437500pt;}
.h10{height:44.468750pt;}
.h41{height:44.661459pt;}
.h11{height:46.068750pt;}
.h26{height:47.729167pt;}
.he{height:47.775000pt;}
.h1e{height:47.812499pt;}
.h5{height:48.000000pt;}
.hc{height:49.481250pt;}
.h18{height:49.700522pt;}
.h3c{height:50.796875pt;}
.h22{height:52.106772pt;}
.h19{height:52.593751pt;}
.h1f{height:54.218750pt;}
.h6{height:56.843750pt;}
.h17{height:57.375000pt;}
.h1c{height:58.710940pt;}
.h12{height:58.865625pt;}
.h14{height:64.256250pt;}
.h44{height:64.593751pt;}
.h2e{height:69.192708pt;}
.h34{height:69.197917pt;}
.h35{height:96.791667pt;}
.h1b{height:113.052080pt;}
.h1a{height:113.052413pt;}
.h20{height:113.053387pt;}
.h37{height:124.385417pt;}
.h29{height:124.390625pt;}
.h30{height:151.984375pt;}
.h2b{height:151.986979pt;}
.h3a{height:151.989584pt;}
.h32{height:179.583333pt;}
.h3f{height:207.182292pt;}
.h2a{height:289.979173pt;}
.h3b{height:345.171880pt;}
.h36{height:345.177080pt;}
.h31{height:372.770840pt;}
.h3d{height:455.562507pt;}
.h3e{height:483.161453pt;}
.h38{height:638.781253pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w17{width:47.000000pt;}
.w15{width:54.000000pt;}
.w14{width:54.000041pt;}
.w16{width:59.000000pt;}
.w6{width:112.000000pt;}
.w7{width:112.000041pt;}
.w9{width:126.000000pt;}
.wd{width:127.000000pt;}
.wa{width:128.000000pt;}
.w10{width:155.000000pt;}
.we{width:156.000000pt;}
.w5{width:199.000041pt;}
.w4{width:300.000000pt;}
.wf{width:314.000080pt;}
.w11{width:315.000080pt;}
.wb{width:343.000080pt;}
.w18{width:346.000000pt;}
.w12{width:396.385827pt;}
.w13{width:397.614173pt;}
.w8{width:564.000000pt;}
.w2{width:580.000000pt;}
.wc{width:599.000000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.w3{width:794.666667pt;}
.x0{left:0.000000pt;}
.x31{left:5.999991pt;}
.x41{left:10.708267pt;}
.x67{left:11.891052pt;}
.x63{left:13.910507pt;}
.x49{left:16.426208pt;}
.x47{left:21.922302pt;}
.x45{left:22.920616pt;}
.x3f{left:24.405746pt;}
.x43{left:27.400505pt;}
.x5a{left:28.843750pt;}
.x4c{left:30.000000pt;}
.x3d{left:31.064568pt;}
.x36{left:32.259674pt;}
.x30{left:34.753853pt;}
.x5b{left:38.402344pt;}
.x61{left:44.179688pt;}
.x5d{left:48.820313pt;}
.x48{left:53.059677pt;}
.x4d{left:54.000000pt;}
.x5f{left:60.402344pt;}
.x60{left:63.511719pt;}
.x5e{left:64.847656pt;}
.x5c{left:66.183594pt;}
.x39{left:70.911240pt;}
.x32{left:74.575302pt;}
.x35{left:78.239365pt;}
.x3a{left:81.903427pt;}
.x33{left:84.343750pt;}
.x38{left:88.007813pt;}
.x37{left:91.671875pt;}
.x34{left:95.335938pt;}
.x14{left:98.418997pt;}
.x1d{left:113.385824pt;}
.x3c{left:114.385824pt;}
.x57{left:120.147543pt;}
.x53{left:121.131918pt;}
.x2e{left:122.237792pt;}
.x11{left:124.000000pt;}
.x3{left:132.018933pt;}
.x52{left:134.092855pt;}
.xc{left:135.749397pt;}
.x20{left:137.385824pt;}
.x55{left:138.663168pt;}
.xa{left:139.753301pt;}
.x54{left:148.225668pt;}
.xd{left:151.347061pt;}
.x21{left:161.385824pt;}
.x2a{left:165.745989pt;}
.x27{left:168.385824pt;}
.x15{left:169.552469pt;}
.x9{left:172.198613pt;}
.x56{left:174.889730pt;}
.x12{left:176.801813pt;}
.x58{left:205.776449pt;}
.x22{left:212.741178pt;}
.x23{left:215.587690pt;}
.x2c{left:217.261617pt;}
.xb{left:226.225973pt;}
.x3e{left:227.385827pt;}
.x28{left:240.385824pt;}
.x4a{left:241.385827pt;}
.x4e{left:242.385827pt;}
.x46{left:245.456940pt;}
.x29{left:247.869039pt;}
.xe{left:254.011125pt;}
.x13{left:266.285525pt;}
.x2d{left:268.547888pt;}
.x4{left:288.897845pt;}
.x1{left:302.152405pt;}
.x8{left:305.124437pt;}
.x5{left:309.796309pt;}
.x3b{left:316.473594pt;}
.x51{left:318.305624pt;}
.x10{left:324.006581pt;}
.x17{left:329.352277pt;}
.x40{left:340.385827pt;}
.x1e{left:353.283984pt;}
.x1c{left:356.846484pt;}
.x1f{left:367.955864pt;}
.x4b{left:370.385827pt;}
.x7{left:374.464373pt;}
.x18{left:389.167733pt;}
.x59{left:396.385827pt;}
.x50{left:398.385827pt;}
.x4f{left:399.385827pt;}
.x16{left:400.346933pt;}
.x6{left:414.018933pt;}
.x19{left:431.432373pt;}
.x42{left:453.385827pt;}
.x25{left:456.642964pt;}
.x62{left:461.385827pt;}
.x2f{left:462.385827pt;}
.xf{left:484.598453pt;}
.x64{left:516.385827pt;}
.x1b{left:517.317813pt;}
.x1a{left:525.875573pt;}
.x44{left:566.385827pt;}
.x65{left:571.385827pt;}
.x24{left:623.321614pt;}
.x66{left:631.385827pt;}
.x2b{left:665.658714pt;}
.x26{left:672.986834pt;}
.x2{left:696.018933pt;}
}




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