
    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_fc68b763de5cc6d174d932eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3430fe2935b3279c8f7c3058.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_63867126fd883b17fa07be87.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9179ff9031530e3375104481.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dd6d3dfd281126592b28c6d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_16b2e25c0ea5e87cb125bd14.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_369b796719128427ab2333b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948000;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_50c1bff1be0a4cebf37e1c14.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ebcf3b0659dc264674f4532d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093000;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_fa2e56a45c5a7195568cf72e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093000;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_a1eebf65bbda9763c1efa4bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.024902;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_44af26a0e8967c8cced2b66e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.873535;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_3a0c7d37cffdb09646abf66e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.024902;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_f35184543369b1f7838109e4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.862793;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_cd72ffb0c00b92c4c876f7ad.woff2')format("woff");}.fff{font-family:fff;line-height:0.941000;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_3763225b292f1202958c82fa.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_969a137a3e4561f9ff7c6ec0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;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_dbe1392a059c91f6c6279038.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.709961;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_4b3c5589bdaaaca5a791f7f3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.924316;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_e5c62ea3f836122156ceb918.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.946777;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_d54e6137674e9445888be94b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.946777;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_321f0397abb8c83a96c9afd1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e8aa174c90a346cb64021cb7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.726074;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_ad86e6605ffbb6f75e6b5c96.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.726074;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_a6215b6775949727291d9e16.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.873535;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_d57ff651da2d763ce65043e8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.709961;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_559412051609b385888b94f7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.718750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_2831da8d1b988239d77a0952.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.677246;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_7b8b8436971d646decfdfccd.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.946777;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_8116bda1294052929d6518f0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.924316;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;}
.m7{transform:matrix(0.000000,-0.235745,0.236079,0.082260,0,0);-ms-transform:matrix(0.000000,-0.235745,0.236079,0.082260,0,0);-webkit-transform:matrix(0.000000,-0.235745,0.236079,0.082260,0,0);}
.m9{transform:matrix(0.000000,-0.235745,0.236079,0.082260,0,0);-ms-transform:matrix(0.000000,-0.235745,0.236079,0.082260,0,0);-webkit-transform:matrix(0.000000,-0.235745,0.236079,0.082260,0,0);}
.m11{transform:matrix(0.000000,-0.249521,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249521,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249521,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249757,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249757,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249757,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249763,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249763,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249763,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.250177,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250177,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250177,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249654,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);}
.m13{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250851,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251201,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-30.600480px;}
.v6{vertical-align:-16.266244px;}
.v5{vertical-align:-12.726000px;}
.v8{vertical-align:-8.837285px;}
.v2{vertical-align:-7.200000px;}
.vd{vertical-align:-4.323835px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.262399px;}
.v7{vertical-align:12.726000px;}
.v3{vertical-align:14.544000px;}
.v4{vertical-align:16.362000px;}
.v1{vertical-align:18.180000px;}
.v9{vertical-align:22.872972px;}
.vb{vertical-align:26.446969px;}
.ls3{letter-spacing:-25.500000px;}
.ls2{letter-spacing:-18.360000px;}
.ls9{letter-spacing:-7.196049px;}
.ls8{letter-spacing:-5.181192px;}
.lse{letter-spacing:-1.920000px;}
.ls4{letter-spacing:-1.380000px;}
.ls1{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-0.389436px;}
.lsb{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.169320px;}
.ls7{letter-spacing:-0.152388px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.001980px;}
.lsf{letter-spacing:0.003000px;}
.ls2b{letter-spacing:0.006000px;}
.ls13{letter-spacing:0.006900px;}
.ls34{letter-spacing:0.009720px;}
.ls35{letter-spacing:0.009780px;}
.ls12{letter-spacing:0.011940px;}
.ls11{letter-spacing:0.012000px;}
.ls1e{letter-spacing:0.013140px;}
.ls10{letter-spacing:0.015000px;}
.ls19{letter-spacing:0.023384px;}
.ls20{letter-spacing:0.033072px;}
.ls21{letter-spacing:0.033074px;}
.ls32{letter-spacing:0.046707px;}
.ls31{letter-spacing:0.046984px;}
.ls1b{letter-spacing:0.057098px;}
.lsd{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.064322px;}
.ls29{letter-spacing:0.074572px;}
.ls1c{letter-spacing:0.078940px;}
.ls28{letter-spacing:0.081588px;}
.ls27{letter-spacing:0.083493px;}
.ls18{letter-spacing:0.086143px;}
.ls33{letter-spacing:0.109159px;}
.ls1a{letter-spacing:0.112834px;}
.lsc{letter-spacing:0.120000px;}
.ls30{letter-spacing:0.140433px;}
.ls0{letter-spacing:0.426000px;}
.ls16{letter-spacing:0.624000px;}
.ls25{letter-spacing:1.140180px;}
.ls2d{letter-spacing:2.587920px;}
.ls2c{letter-spacing:2.601540px;}
.ls2e{letter-spacing:2.975940px;}
.ls14{letter-spacing:2.976000px;}
.ls2f{letter-spacing:2.990460px;}
.ls15{letter-spacing:3.024000px;}
.ls2a{letter-spacing:4.590000px;}
.ls23{letter-spacing:11.822160px;}
.ls22{letter-spacing:14.089505px;}
.ls26{letter-spacing:19.579380px;}
.ls24{letter-spacing:26.884500px;}
.ls1d{letter-spacing:79.161909px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-99.659180px;}
.ws1e{word-spacing:-91.869913px;}
.ws46{word-spacing:-54.000000px;}
.ws2a{word-spacing:-26.352000px;}
.ws4b{word-spacing:-22.247968px;}
.ws4d{word-spacing:-16.272000px;}
.ws1b{word-spacing:-15.879684px;}
.ws20{word-spacing:-15.879679px;}
.ws48{word-spacing:-14.161318px;}
.ws1d{word-spacing:-14.131301px;}
.ws17{word-spacing:-13.500000px;}
.ws1a{word-spacing:-12.794147px;}
.ws19{word-spacing:-12.708004px;}
.ws4c{word-spacing:-12.238320px;}
.ws12{word-spacing:-12.204000px;}
.ws26{word-spacing:-11.814444px;}
.ws3f{word-spacing:-11.198791px;}
.ws44{word-spacing:-11.193477px;}
.wsf{word-spacing:-10.848000px;}
.ws28{word-spacing:-10.838670px;}
.ws25{word-spacing:-10.688823px;}
.ws24{word-spacing:-10.624500px;}
.ws43{word-spacing:-10.538428px;}
.ws37{word-spacing:-10.478380px;}
.ws2f{word-spacing:-10.288220px;}
.ws4a{word-spacing:-10.076073px;}
.ws29{word-spacing:-9.519575px;}
.ws14{word-spacing:-9.492000px;}
.ws41{word-spacing:-9.477004px;}
.ws3d{word-spacing:-9.477000px;}
.ws2c{word-spacing:-9.467996px;}
.ws16{word-spacing:-9.000000px;}
.ws1c{word-spacing:-8.810883px;}
.ws31{word-spacing:-8.419317px;}
.ws11{word-spacing:-8.136000px;}
.ws3a{word-spacing:-8.013923px;}
.ws45{word-spacing:-7.620418px;}
.ws10{word-spacing:-7.500000px;}
.ws35{word-spacing:-7.401507px;}
.ws30{word-spacing:-6.877318px;}
.wse{word-spacing:-6.780000px;}
.ws21{word-spacing:-6.750000px;}
.ws34{word-spacing:-6.705688px;}
.ws3b{word-spacing:-6.407643px;}
.ws22{word-spacing:-6.102000px;}
.ws39{word-spacing:-5.814661px;}
.ws1{word-spacing:-4.910280px;}
.ws2{word-spacing:-4.571640px;}
.ws38{word-spacing:-3.778028px;}
.ws13{word-spacing:-2.498280px;}
.wsc{word-spacing:-0.120000px;}
.wsd{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.152388px;}
.wsb{word-spacing:0.180000px;}
.wsa{word-spacing:0.389436px;}
.ws0{word-spacing:1.080000px;}
.ws5{word-spacing:1.380000px;}
.ws8{word-spacing:5.181192px;}
.ws9{word-spacing:7.196049px;}
.ws36{word-spacing:14.366230px;}
.ws3{word-spacing:18.360000px;}
.ws3c{word-spacing:24.780636px;}
.ws2e{word-spacing:25.255559px;}
.ws4{word-spacing:25.500000px;}
.ws18{word-spacing:41.679093px;}
.ws2d{word-spacing:44.136654px;}
.ws2b{word-spacing:52.102386px;}
.ws32{word-spacing:67.137379px;}
.ws40{word-spacing:67.406485px;}
.ws23{word-spacing:70.699692px;}
.ws49{word-spacing:112.168718px;}
.ws27{word-spacing:117.087260px;}
.ws47{word-spacing:139.376869px;}
.ws33{word-spacing:513.456439px;}
.ws42{word-spacing:544.279373px;}
.ws3e{word-spacing:552.836458px;}
.ws1f{word-spacing:752.388899px;}
._26{margin-left:-2139.839880px;}
._6{margin-left:-111.000000px;}
._2b{margin-left:-79.161907px;}
._37{margin-left:-75.480806px;}
._30{margin-left:-51.932558px;}
._36{margin-left:-49.043025px;}
._f{margin-left:-31.323978px;}
._d{margin-left:-25.500000px;}
._8{margin-left:-14.250000px;}
._4{margin-left:-12.720000px;}
._9{margin-left:-7.500000px;}
._0{margin-left:-6.000000px;}
._7{margin-left:-4.500000px;}
._16{margin-left:-3.419400px;}
._1{margin-left:-2.400000px;}
._e{margin-left:-1.380000px;}
._2{width:1.080000px;}
._5{width:2.160000px;}
._3{width:3.240000px;}
._10{width:4.248000px;}
._a{width:5.340000px;}
._11{width:6.691140px;}
._18{width:8.500560px;}
._c{width:10.500000px;}
._b{width:13.500000px;}
._29{width:14.652660px;}
._15{width:15.812880px;}
._21{width:17.663760px;}
._14{width:19.305540px;}
._24{width:20.347320px;}
._1d{width:22.008420px;}
._23{width:23.656800px;}
._13{width:24.669960px;}
._12{width:25.899780px;}
._31{width:27.290160px;}
._25{width:28.483800px;}
._34{width:29.921520px;}
._2d{width:31.215780px;}
._32{width:32.358840px;}
._17{width:33.598440px;}
._19{width:34.669080px;}
._22{width:36.194700px;}
._2c{width:37.209660px;}
._1a{width:38.635740px;}
._1b{width:43.997340px;}
._3a{width:47.137140px;}
._35{width:49.701820px;}
._1c{width:53.332200px;}
._3b{width:57.834000px;}
._33{width:65.397840px;}
._2f{width:71.796262px;}
._2a{width:78.313456px;}
._2e{width:91.251229px;}
._39{width:113.345455px;}
._38{width:136.807282px;}
._1e{width:1061.639940px;}
._28{width:1403.424000px;}
._20{width:1407.408000px;}
._27{width:2501.700000px;}
._1f{width:2515.320000px;}
.fcd{color:rgb(177,119,222);}
.fc2{color:rgb(8,122,182);}
.fc1{color:rgb(46,51,55);}
.fc3{color:rgb(80,87,89);}
.fc5{color:rgb(255,255,255);}
.fc6{color:rgb(0,0,0);}
.fc0{color:rgb(45,57,58);}
.fcc{color:rgb(26,111,223);}
.fc4{color:transparent;}
.fc9{color:rgb(153,153,153);}
.fc7{color:rgb(0,0,255);}
.fc8{color:rgb(211,207,229);}
.fca{color:rgb(241,64,64);}
.fcb{color:rgb(55,173,107);}
.fs6{font-size:13.545600px;}
.fs36{font-size:13.590029px;}
.fs5{font-size:15.238800px;}
.fs4{font-size:16.932000px;}
.fs9{font-size:19.471800px;}
.fs37{font-size:20.916045px;}
.fs39{font-size:21.620296px;}
.fs45{font-size:24.563130px;}
.fs3b{font-size:25.630570px;}
.fs32{font-size:26.822754px;}
.fs15{font-size:27.000000px;}
.fs2e{font-size:27.509270px;}
.fs38{font-size:28.827061px;}
.fs2c{font-size:29.483030px;}
.fs34{font-size:29.606028px;}
.fs13{font-size:30.000000px;}
.fs40{font-size:30.481673px;}
.fs23{font-size:31.873501px;}
.fs2f{font-size:33.677268px;}
.fs3c{font-size:34.551014px;}
.fs21{font-size:34.559998px;}
.fs1c{font-size:34.565771px;}
.fs1b{font-size:35.243531px;}
.fsd{font-size:36.000000px;}
.fs2b{font-size:37.007987px;}
.fs30{font-size:37.475984px;}
.fs35{font-size:37.692015px;}
.fs29{font-size:37.871983px;}
.fs3d{font-size:37.907999px;}
.fs3e{font-size:37.908015px;}
.fs27{font-size:37.948341px;}
.fs26{font-size:38.078301px;}
.fs20{font-size:38.879998px;}
.fs25{font-size:38.988021px;}
.fs11{font-size:39.000000px;}
.fs31{font-size:39.482091px;}
.fs44{font-size:40.304290px;}
.fs1f{font-size:40.835032px;}
.fs1a{font-size:40.835049px;}
.fsf{font-size:42.000000px;}
.fs43{font-size:42.280195px;}
.fs24{font-size:42.444008px;}
.fs22{font-size:42.498001px;}
.fs33{font-size:43.472142px;}
.fs2d{font-size:43.775662px;}
.fs3a{font-size:44.582775px;}
.fs3f{font-size:44.773910px;}
.fs2a{font-size:44.795164px;}
.fs28{font-size:46.005865px;}
.fs12{font-size:48.000000px;}
.fs46{font-size:48.953280px;}
.fs17{font-size:50.832016px;}
.fs41{font-size:50.939993px;}
.fsc{font-size:54.000000px;}
.fs1d{font-size:59.981748px;}
.fs42{font-size:59.981769px;}
.fs18{font-size:59.981773px;}
.fsa{font-size:60.000000px;}
.fs7{font-size:60.955200px;}
.fs1e{font-size:63.518714px;}
.fs19{font-size:63.518738px;}
.fse{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs14{font-size:72.000000px;}
.fs8{font-size:84.659400px;}
.fs10{font-size:87.000000px;}
.fsb{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.fs16{font-size:138.000000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y225{bottom:0.244477px;}
.y22a{bottom:0.390959px;}
.y22d{bottom:0.526944px;}
.y2b5{bottom:2.589001px;}
.y22f{bottom:2.604092px;}
.y2bb{bottom:2.637552px;}
.y27{bottom:3.000000px;}
.y219{bottom:3.026417px;}
.y85{bottom:3.221995px;}
.y7a{bottom:3.345008px;}
.y2ab{bottom:3.353191px;}
.y26c{bottom:3.535362px;}
.y2be{bottom:3.977947px;}
.y2c0{bottom:4.021178px;}
.y2c2{bottom:4.021185px;}
.y201{bottom:4.480875px;}
.y24a{bottom:4.722006px;}
.y27e{bottom:4.829899px;}
.y208{bottom:4.841710px;}
.ye5{bottom:5.475667px;}
.y103{bottom:5.845584px;}
.y2f{bottom:5.924859px;}
.yf2{bottom:6.226869px;}
.y176{bottom:7.344910px;}
.y11c{bottom:8.164495px;}
.y115{bottom:8.164496px;}
.y10e{bottom:8.164497px;}
.y113{bottom:8.164499px;}
.y118{bottom:8.164501px;}
.y120{bottom:8.164503px;}
.y122{bottom:8.164505px;}
.y11a{bottom:8.164508px;}
.y24e{bottom:8.647493px;}
.y251{bottom:8.647502px;}
.y24c{bottom:8.647505px;}
.y226{bottom:8.738246px;}
.y16e{bottom:9.099619px;}
.y14f{bottom:9.664493px;}
.y155{bottom:9.664495px;}
.y151{bottom:9.664505px;}
.y14b{bottom:9.664506px;}
.y153{bottom:9.664507px;}
.y218{bottom:10.398074px;}
.y248{bottom:12.046506px;}
.y22c{bottom:12.839120px;}
.y229{bottom:13.463488px;}
.y222{bottom:13.474161px;}
.y211{bottom:13.490428px;}
.y87{bottom:13.856295px;}
.y30{bottom:13.856301px;}
.yc{bottom:13.993860px;}
.y2bc{bottom:14.009278px;}
.y2e{bottom:14.068905px;}
.ye6{bottom:14.068913px;}
.y275{bottom:14.528258px;}
.y264{bottom:14.531111px;}
.y1f9{bottom:15.464530px;}
.ye4{bottom:15.557085px;}
.y204{bottom:16.161801px;}
.y110{bottom:16.495497px;}
.y2b2{bottom:17.023649px;}
.y227{bottom:17.232014px;}
.yb{bottom:18.057540px;}
.y2a2{bottom:18.552014px;}
.y79{bottom:19.344008px;}
.y249{bottom:19.371006px;}
.y170{bottom:20.016017px;}
.y162{bottom:20.572429px;}
.y212{bottom:21.641454px;}
.y83{bottom:22.028999px;}
.ye8{bottom:22.113645px;}
.ya{bottom:22.121220px;}
.y276{bottom:22.773251px;}
.y265{bottom:22.776101px;}
.yf9{bottom:23.172750px;}
.y9{bottom:26.184900px;}
.yf3{bottom:28.129426px;}
.yf5{bottom:28.341257px;}
.y78{bottom:28.980008px;}
.y163{bottom:29.815744px;}
.y8{bottom:30.248193px;}
.ye9{bottom:33.169608px;}
.yfa{bottom:34.228713px;}
.y179{bottom:38.343657px;}
.y2c{bottom:38.695499px;}
.yef{bottom:39.313715px;}
.y100{bottom:40.372835px;}
.y172{bottom:40.419748px;}
.y108{bottom:41.470356px;}
.y213{bottom:42.440625px;}
.y277{bottom:42.548599px;}
.y22e{bottom:42.911343px;}
.y1fc{bottom:42.955243px;}
.y77{bottom:44.979008px;}
.y266{bottom:46.531781px;}
.y16d{bottom:46.917410px;}
.y105{bottom:47.061878px;}
.y272{bottom:47.233946px;}
.y7{bottom:47.433750px;}
.y164{bottom:50.781425px;}
.y207{bottom:51.232464px;}
.y200{bottom:52.076724px;}
.y178{bottom:56.443837px;}
.yf6{bottom:58.547306px;}
.y271{bottom:58.988021px;}
.y104{bottom:59.600442px;}
.y21f{bottom:61.218772px;}
.yea{bottom:61.635537px;}
.y2a9{bottom:61.983323px;}
.y278{bottom:62.355537px;}
.y1fd{bottom:62.427754px;}
.yfb{bottom:62.694643px;}
.y284{bottom:62.893737px;}
.y214{bottom:63.271027px;}
.y173{bottom:64.364891px;}
.y27d{bottom:65.357818px;}
.y2b4{bottom:65.591978px;}
.y2aa{bottom:67.120358px;}
.y267{bottom:70.255871px;}
.y270{bottom:70.742081px;}
.y165{bottom:71.747106px;}
.y26b{bottom:73.301441px;}
.y20d{bottom:74.181091px;}
.y283{bottom:74.645506px;}
.y2ad{bottom:77.151681px;}
.y2a8{bottom:77.776521px;}
.y2b9{bottom:78.540711px;}
.y84{bottom:78.675005px;}
.y1{bottom:79.535850px;}
.y1fe{bottom:80.890346px;}
.y20f{bottom:81.921928px;}
.y279{bottom:82.130884px;}
.y26f{bottom:82.496140px;}
.y215{bottom:84.070198px;}
.y21e{bottom:84.458233px;}
.y20c{bottom:85.655397px;}
.y282{bottom:86.397276px;}
.y174{bottom:88.017624px;}
.yeb{bottom:90.059106px;}
.yfc{bottom:91.118212px;}
.y205{bottom:91.515925px;}
.y166{bottom:92.677371px;}
.y2a7{bottom:93.569719px;}
.y268{bottom:94.011550px;}
.y26e{bottom:94.250215px;}
.y21d{bottom:96.077963px;}
.y20b{bottom:97.129703px;}
.y281{bottom:98.149046px;}
.y202{bottom:100.391672px;}
.y27a{bottom:101.906232px;}
.y216{bottom:104.869369px;}
.yf0{bottom:105.190871px;}
.y101{bottom:106.249977px;}
.y107{bottom:106.408257px;}
.y2b1{bottom:107.355678px;}
.y21c{bottom:107.697693px;}
.y20a{bottom:108.604009px;}
.y2a6{bottom:109.362917px;}
.y169{bottom:109.522147px;}
.y280{bottom:109.900800px;}
.y2b8{bottom:110.127107px;}
.y175{bottom:110.630676px;}
.y171{bottom:111.345456px;}
.y232{bottom:112.027440px;}
.y167{bottom:113.643052px;}
.y16c{bottom:115.435612px;}
.y269{bottom:117.735640px;}
.y26d{bottom:117.758350px;}
.y1ff{bottom:117.973329px;}
.yec{bottom:118.525035px;}
.y21b{bottom:119.317423px;}
.yfd{bottom:119.584141px;}
.y209{bottom:120.078330px;}
.y2ae{bottom:121.002526px;}
.y27b{bottom:121.713170px;}
.y231{bottom:122.709004px;}
.y2a5{bottom:125.156130px;}
.y16b{bottom:125.279573px;}
.y217{bottom:125.668540px;}
.y2b7{bottom:125.920320px;}
.y21a{bottom:130.937153px;}
.y223{bottom:132.165353px;}
.y230{bottom:133.390583px;}
.y27f{bottom:133.404339px;}
.yf4{bottom:133.405775px;}
.yf1{bottom:133.659965px;}
.y206{bottom:134.606274px;}
.y168{bottom:134.608733px;}
.y102{bottom:134.719071px;}
.y177{bottom:134.738269px;}
.y16a{bottom:135.123518px;}
.y20e{bottom:135.275109px;}
.y1fb{bottom:136.095556px;}
.y76{bottom:136.101487px;}
.ye2{bottom:136.492470px;}
.y75{bottom:136.735485px;}
.y240{bottom:137.830470px;}
.y1fa{bottom:138.273195px;}
.y2cb{bottom:140.542485px;}
.y1e3{bottom:140.548500px;}
.y106{bottom:140.931668px;}
.y27c{bottom:141.488517px;}
.y26a{bottom:141.491320px;}
.y2b6{bottom:141.713518px;}
.ybc{bottom:142.492470px;}
.y2d4{bottom:144.514485px;}
.y2f6{bottom:144.627030px;}
.y2b0{bottom:146.383543px;}
.yed{bottom:146.948605px;}
.yfe{bottom:148.007710px;}
.y149{bottom:149.287500px;}
.y193{bottom:150.651000px;}
.ye1{bottom:154.492485px;}
.y74{bottom:154.735485px;}
.y134{bottom:155.287485px;}
.y23f{bottom:155.830485px;}
.y2a4{bottom:156.742526px;}
.y2ca{bottom:158.542485px;}
.y1e2{bottom:158.548500px;}
.ybb{bottom:160.492470px;}
.y2af{bottom:162.176755px;}
.y2d3{bottom:162.514485px;}
.y2f5{bottom:162.627030px;}
.y18a{bottom:162.651000px;}
.y148{bottom:167.287500px;}
.y192{bottom:168.651000px;}
.ye0{bottom:172.492485px;}
.y73{bottom:172.735485px;}
.y133{bottom:173.287485px;}
.y23e{bottom:173.830485px;}
.yf7{bottom:173.978343px;}
.yee{bottom:175.414534px;}
.yff{bottom:176.473639px;}
.y2c9{bottom:176.542485px;}
.y1e1{bottom:176.548500px;}
.yba{bottom:178.492470px;}
.y2d2{bottom:180.514485px;}
.y2f4{bottom:180.627030px;}
.y189{bottom:180.651000px;}
.y2b3{bottom:180.899333px;}
.y2a3{bottom:181.026698px;}
.y2ac{bottom:182.130518px;}
.y7c{bottom:182.890503px;}
.y147{bottom:185.287500px;}
.y191{bottom:186.651000px;}
.ydf{bottom:190.492485px;}
.y72{bottom:190.735485px;}
.y132{bottom:191.287485px;}
.y23d{bottom:191.830485px;}
.y2c8{bottom:194.542485px;}
.y1e0{bottom:194.548500px;}
.yb9{bottom:196.492470px;}
.y2d1{bottom:198.514485px;}
.y2f3{bottom:198.627030px;}
.y188{bottom:198.651000px;}
.y146{bottom:203.287500px;}
.y190{bottom:204.651000px;}
.yde{bottom:208.492485px;}
.y71{bottom:208.735470px;}
.y131{bottom:209.287485px;}
.y23c{bottom:209.830485px;}
.y2c7{bottom:212.542485px;}
.y1df{bottom:212.548500px;}
.yb8{bottom:214.492470px;}
.y2d0{bottom:216.514485px;}
.y2f2{bottom:216.627030px;}
.y187{bottom:216.651000px;}
.y145{bottom:221.287500px;}
.y18f{bottom:222.651000px;}
.ydd{bottom:226.492485px;}
.y70{bottom:226.735470px;}
.y130{bottom:227.287485px;}
.y23b{bottom:227.830485px;}
.y2c6{bottom:230.542485px;}
.y1de{bottom:230.548515px;}
.yb7{bottom:232.492470px;}
.y2cf{bottom:234.514485px;}
.y2f1{bottom:234.627030px;}
.y186{bottom:234.651000px;}
.y144{bottom:239.287500px;}
.y18e{bottom:240.651000px;}
.ydc{bottom:244.492485px;}
.y6f{bottom:244.735485px;}
.y6{bottom:244.778700px;}
.y12f{bottom:245.287485px;}
.y23a{bottom:245.830485px;}
.y1dd{bottom:248.548515px;}
.yb6{bottom:250.492470px;}
.y2ce{bottom:252.514485px;}
.y2f0{bottom:252.627030px;}
.y185{bottom:252.651000px;}
.y13{bottom:253.418250px;}
.y59{bottom:255.763470px;}
.y2c5{bottom:255.776985px;}
.y143{bottom:257.287500px;}
.y18d{bottom:258.651000px;}
.ydb{bottom:262.492485px;}
.y6e{bottom:262.735485px;}
.y12{bottom:262.777200px;}
.y12e{bottom:263.287485px;}
.y239{bottom:263.830485px;}
.y1dc{bottom:266.548515px;}
.yb5{bottom:268.492470px;}
.y2cd{bottom:270.514485px;}
.y2ef{bottom:270.627030px;}
.y184{bottom:270.651000px;}
.y31c{bottom:271.864500px;}
.y58{bottom:273.763470px;}
.y142{bottom:275.287500px;}
.y18c{bottom:276.651000px;}
.yda{bottom:280.492485px;}
.y11{bottom:280.555800px;}
.y6d{bottom:280.735485px;}
.y12d{bottom:281.287485px;}
.y238{bottom:281.830485px;}
.y1db{bottom:284.548515px;}
.yb4{bottom:286.492470px;}
.y31b{bottom:286.864500px;}
.y2cc{bottom:288.514485px;}
.y2ee{bottom:288.627030px;}
.y183{bottom:288.651000px;}
.y57{bottom:291.763470px;}
.y141{bottom:293.287500px;}
.y18b{bottom:294.651000px;}
.yd9{bottom:298.492485px;}
.y6c{bottom:298.735485px;}
.y12c{bottom:299.287500px;}
.y237{bottom:299.830485px;}
.y31a{bottom:302.464485px;}
.y1da{bottom:302.548515px;}
.yb3{bottom:304.492470px;}
.y2ed{bottom:306.627030px;}
.y10{bottom:307.209630px;}
.y56{bottom:309.763470px;}
.y140{bottom:311.287500px;}
.yf{bottom:311.781270px;}
.y182{bottom:312.651000px;}
.ye{bottom:316.352910px;}
.yd8{bottom:316.492485px;}
.y6b{bottom:316.735485px;}
.y12b{bottom:317.287500px;}
.y236{bottom:317.830485px;}
.y319{bottom:320.464485px;}
.y1d9{bottom:320.548515px;}
.yd{bottom:320.924550px;}
.yb2{bottom:322.492470px;}
.y2c4{bottom:324.514485px;}
.y2ec{bottom:324.627030px;}
.y55{bottom:327.763470px;}
.y13f{bottom:329.287500px;}
.y24{bottom:331.854300px;}
.yd7{bottom:334.492485px;}
.y6a{bottom:334.735485px;}
.y12a{bottom:335.287500px;}
.y318{bottom:338.464500px;}
.y1d8{bottom:338.548515px;}
.y5{bottom:339.195000px;}
.yb1{bottom:340.492470px;}
.y2c3{bottom:342.514485px;}
.y2eb{bottom:342.627030px;}
.y54{bottom:345.763470px;}
.y13e{bottom:347.287500px;}
.y181{bottom:348.676500px;}
.y23{bottom:349.854300px;}
.yd6{bottom:352.492485px;}
.y69{bottom:352.735485px;}
.y129{bottom:353.287500px;}
.y261{bottom:353.485530px;}
.y235{bottom:353.830485px;}
.y317{bottom:356.464485px;}
.y1d7{bottom:356.548515px;}
.y2a1{bottom:357.602994px;}
.yb0{bottom:358.492470px;}
.y2ea{bottom:360.627030px;}
.y53{bottom:363.763470px;}
.y180{bottom:365.155500px;}
.y22{bottom:367.854300px;}
.yd5{bottom:370.492485px;}
.y68{bottom:370.735485px;}
.y128{bottom:371.287500px;}
.y234{bottom:371.830485px;}
.y316{bottom:374.464485px;}
.y1d6{bottom:374.548515px;}
.y138{bottom:376.410562px;}
.yaf{bottom:376.492485px;}
.y13a{bottom:377.249662px;}
.y13d{bottom:377.250562px;}
.y135{bottom:377.287500px;}
.y137{bottom:378.720735px;}
.y139{bottom:379.303140px;}
.y13b{bottom:379.304040px;}
.y136{bottom:379.304160px;}
.y17f{bottom:381.634500px;}
.y52{bottom:381.763470px;}
.y13c{bottom:383.971027px;}
.y21{bottom:385.854300px;}
.yd4{bottom:388.492485px;}
.y67{bottom:388.735485px;}
.y127{bottom:389.287500px;}
.y233{bottom:389.830485px;}
.y315{bottom:392.464485px;}
.y1d5{bottom:392.548515px;}
.yae{bottom:394.492485px;}
.y51{bottom:399.763470px;}
.y2e9{bottom:400.861500px;}
.y20{bottom:403.854300px;}
.yd3{bottom:406.492485px;}
.y66{bottom:406.735485px;}
.y126{bottom:407.287500px;}
.y314{bottom:410.464485px;}
.y1d4{bottom:410.548515px;}
.yad{bottom:412.492485px;}
.y50{bottom:417.763485px;}
.y220{bottom:420.709515px;}
.y210{bottom:420.991814px;}
.y221{bottom:421.593436px;}
.y1f{bottom:421.854300px;}
.yd2{bottom:424.492485px;}
.y65{bottom:424.735470px;}
.y125{bottom:425.287500px;}
.y313{bottom:428.464485px;}
.y1d3{bottom:428.548515px;}
.yac{bottom:430.492485px;}
.y4f{bottom:435.763485px;}
.y64{bottom:442.735470px;}
.y124{bottom:443.287500px;}
.y22b{bottom:445.591878px;}
.y312{bottom:446.464485px;}
.y1d2{bottom:446.548515px;}
.y228{bottom:446.785698px;}
.yab{bottom:448.492485px;}
.y2e8{bottom:451.599000px;}
.y1e{bottom:452.604300px;}
.y4e{bottom:453.763485px;}
.y63{bottom:460.735485px;}
.y123{bottom:461.287500px;}
.y2c1{bottom:463.870055px;}
.y311{bottom:464.464485px;}
.y1d1{bottom:464.548515px;}
.yaa{bottom:466.492485px;}
.y2e7{bottom:469.599000px;}
.y1d{bottom:470.604300px;}
.y4d{bottom:471.763485px;}
.y7d{bottom:473.655000px;}
.yd1{bottom:473.727000px;}
.y62{bottom:478.735485px;}
.y2bf{bottom:479.435919px;}
.y310{bottom:482.464485px;}
.y1d0{bottom:482.548515px;}
.ya9{bottom:484.492485px;}
.y2e6{bottom:487.599000px;}
.y4c{bottom:489.763485px;}
.y121{bottom:492.937480px;}
.y2bd{bottom:495.045020px;}
.y61{bottom:496.735485px;}
.y30f{bottom:500.464485px;}
.y1cf{bottom:500.548515px;}
.y1c{bottom:501.354300px;}
.ya8{bottom:502.492485px;}
.y2e5{bottom:505.599000px;}
.y4b{bottom:507.763485px;}
.y11f{bottom:509.599482px;}
.y2ba{bottom:510.783838px;}
.y60{bottom:514.735485px;}
.y30e{bottom:518.464485px;}
.y1ce{bottom:518.548515px;}
.y1b{bottom:519.354300px;}
.ya7{bottom:520.492485px;}
.y2e4{bottom:523.599000px;}
.y224{bottom:524.415780px;}
.yd0{bottom:524.464500px;}
.y4a{bottom:525.763485px;}
.y11e{bottom:526.261485px;}
.y5f{bottom:532.735485px;}
.y7e{bottom:534.570000px;}
.y30d{bottom:536.464500px;}
.y1cd{bottom:536.548515px;}
.y1a{bottom:537.354300px;}
.ya6{bottom:538.492485px;}
.y2e3{bottom:541.599000px;}
.ycf{bottom:542.464500px;}
.y11d{bottom:542.923487px;}
.y49{bottom:543.763485px;}
.y5e{bottom:550.735485px;}
.y30c{bottom:554.464485px;}
.y1cc{bottom:554.548515px;}
.y19{bottom:555.354300px;}
.y11b{bottom:559.585490px;}
.yce{bottom:560.464500px;}
.y48{bottom:561.763485px;}
.ya5{bottom:562.492485px;}
.y2e2{bottom:566.833515px;}
.y5d{bottom:568.735485px;}
.y1f7{bottom:569.278500px;}
.y203{bottom:569.836044px;}
.y1f8{bottom:569.849449px;}
.y30b{bottom:572.464485px;}
.y1a8{bottom:572.464500px;}
.y1cb{bottom:572.548515px;}
.y18{bottom:573.354300px;}
.y119{bottom:576.247492px;}
.y260{bottom:577.291485px;}
.ycd{bottom:578.464500px;}
.y2a0{bottom:578.782500px;}
.y47{bottom:579.763485px;}
.y5c{bottom:586.735485px;}
.y1a7{bottom:590.464500px;}
.y1ca{bottom:590.548500px;}
.y17{bottom:591.354300px;}
.y28d{bottom:591.963000px;}
.y117{bottom:592.909484px;}
.y25f{bottom:595.291485px;}
.y29f{bottom:596.782500px;}
.ya4{bottom:598.492485px;}
.ycc{bottom:602.464500px;}
.y5b{bottom:604.735485px;}
.y46{bottom:604.997985px;}
.y1a6{bottom:608.464485px;}
.y1ab{bottom:608.464500px;}
.y1c9{bottom:608.548500px;}
.y116{bottom:609.571486px;}
.y28c{bottom:609.963000px;}
.y25e{bottom:613.291485px;}
.y29e{bottom:614.782500px;}
.ya3{bottom:616.492485px;}
.y2e1{bottom:620.067015px;}
.y16{bottom:622.104300px;}
.y5a{bottom:622.735485px;}
.y114{bottom:626.233489px;}
.y30a{bottom:626.464485px;}
.y1a5{bottom:626.464500px;}
.y1c8{bottom:626.548500px;}
.y28b{bottom:627.963000px;}
.y25d{bottom:631.291485px;}
.y29d{bottom:632.782500px;}
.ya2{bottom:634.492485px;}
.ycb{bottom:638.464485px;}
.y15{bottom:640.104300px;}
.y112{bottom:642.895486px;}
.y2e0{bottom:643.754985px;}
.y309{bottom:644.464485px;}
.y1a4{bottom:644.464500px;}
.y1c7{bottom:644.548500px;}
.y28a{bottom:645.963000px;}
.y25c{bottom:649.291485px;}
.y29c{bottom:650.782500px;}
.ya1{bottom:652.492485px;}
.y45{bottom:655.735485px;}
.yca{bottom:656.464485px;}
.y14{bottom:658.104300px;}
.y111{bottom:659.557488px;}
.y308{bottom:662.464485px;}
.y1a3{bottom:662.464500px;}
.y1c6{bottom:662.548500px;}
.y289{bottom:663.963000px;}
.y25b{bottom:667.291485px;}
.y29b{bottom:668.782500px;}
.ya0{bottom:670.492500px;}
.y44{bottom:673.735485px;}
.yc9{bottom:674.464485px;}
.y10f{bottom:676.969488px;}
.y307{bottom:680.464485px;}
.y1a2{bottom:680.464500px;}
.y1c5{bottom:680.548500px;}
.y288{bottom:681.963000px;}
.y25a{bottom:685.291470px;}
.y2a{bottom:685.500000px;}
.y29a{bottom:686.782500px;}
.y7f{bottom:687.735000px;}
.y9f{bottom:688.492500px;}
.y43{bottom:691.735485px;}
.yc8{bottom:692.464485px;}
.y15f{bottom:693.580485px;}
.y10d{bottom:693.631488px;}
.y2df{bottom:694.492485px;}
.y306{bottom:698.464485px;}
.y1a1{bottom:698.464500px;}
.y1c4{bottom:698.548500px;}
.y17e{bottom:699.542985px;}
.y287{bottom:699.963000px;}
.y259{bottom:703.291470px;}
.y299{bottom:704.782500px;}
.y29{bottom:705.000000px;}
.y9e{bottom:706.492500px;}
.y42{bottom:709.735485px;}
.yc7{bottom:710.464500px;}
.y15e{bottom:711.580470px;}
.y2de{bottom:712.492470px;}
.y244{bottom:716.464485px;}
.y1a0{bottom:716.464500px;}
.y1c3{bottom:716.548500px;}
.y17d{bottom:717.542985px;}
.y258{bottom:721.291500px;}
.y298{bottom:722.782485px;}
.y9d{bottom:724.492500px;}
.y10c{bottom:725.143485px;}
.y41{bottom:727.735500px;}
.yc6{bottom:728.464500px;}
.y15d{bottom:729.580470px;}
.y2dd{bottom:730.492470px;}
.y243{bottom:734.464485px;}
.y19f{bottom:734.464500px;}
.y1c2{bottom:734.548500px;}
.y17c{bottom:735.542985px;}
.y286{bottom:735.963000px;}
.y257{bottom:739.291500px;}
.y1f6{bottom:740.548485px;}
.y297{bottom:740.782500px;}
.y9c{bottom:742.492500px;}
.y10b{bottom:743.143485px;}
.y40{bottom:745.735500px;}
.yc5{bottom:746.464500px;}
.y15c{bottom:747.580500px;}
.y2dc{bottom:748.492500px;}
.y242{bottom:752.464485px;}
.y19e{bottom:752.464500px;}
.y1c1{bottom:752.548500px;}
.y17b{bottom:753.542985px;}
.y285{bottom:753.963000px;}
.y256{bottom:757.291500px;}
.y1f5{bottom:758.548485px;}
.y296{bottom:758.782500px;}
.y9b{bottom:760.492500px;}
.y3f{bottom:763.735500px;}
.yc4{bottom:764.464500px;}
.y15b{bottom:765.580500px;}
.y2db{bottom:766.492500px;}
.y273{bottom:768.363000px;}
.y274{bottom:768.647760px;}
.y263{bottom:768.648711px;}
.y241{bottom:770.464485px;}
.y19d{bottom:770.464500px;}
.y1c0{bottom:770.548500px;}
.y17a{bottom:771.542985px;}
.y255{bottom:775.291500px;}
.y1f4{bottom:776.548485px;}
.y295{bottom:776.782500px;}
.y10a{bottom:777.622500px;}
.y9a{bottom:778.492500px;}
.y3e{bottom:781.735500px;}
.yc3{bottom:782.464500px;}
.y15a{bottom:783.580500px;}
.y2da{bottom:784.492500px;}
.y1aa{bottom:788.464485px;}
.y19c{bottom:788.464500px;}
.y1bf{bottom:788.548515px;}
.y254{bottom:793.291500px;}
.y161{bottom:793.537221px;}
.y1f3{bottom:794.548485px;}
.y16f{bottom:794.750821px;}
.y294{bottom:794.782500px;}
.y109{bottom:795.622500px;}
.y99{bottom:796.492500px;}
.y3d{bottom:799.735500px;}
.yc2{bottom:800.464500px;}
.y159{bottom:801.580500px;}
.y2d9{bottom:802.492500px;}
.y1a9{bottom:806.464485px;}
.y19b{bottom:806.464500px;}
.y1be{bottom:806.548500px;}
.y1f2{bottom:812.548485px;}
.y293{bottom:812.782500px;}
.y98{bottom:814.492500px;}
.y3c{bottom:817.735500px;}
.yc1{bottom:818.464500px;}
.yf8{bottom:819.022500px;}
.y158{bottom:819.580500px;}
.ye7{bottom:819.708648px;}
.y2d8{bottom:820.492500px;}
.y305{bottom:824.464485px;}
.y19a{bottom:824.464500px;}
.y1bd{bottom:824.548500px;}
.y253{bottom:824.941498px;}
.y1f1{bottom:830.548485px;}
.y292{bottom:830.782500px;}
.y97{bottom:832.492500px;}
.y3b{bottom:835.735500px;}
.yc0{bottom:836.464500px;}
.y157{bottom:837.580500px;}
.y2d7{bottom:838.492500px;}
.y304{bottom:842.464485px;}
.y199{bottom:842.464500px;}
.y1bc{bottom:842.548500px;}
.y1f0{bottom:848.548485px;}
.y252{bottom:848.566498px;}
.y291{bottom:848.782500px;}
.y3a{bottom:853.735500px;}
.ybf{bottom:854.464500px;}
.y156{bottom:855.580500px;}
.y96{bottom:856.492500px;}
.y303{bottom:860.464485px;}
.y198{bottom:860.464500px;}
.y1bb{bottom:860.548500px;}
.y2d6{bottom:863.727000px;}
.y1ef{bottom:866.548500px;}
.y290{bottom:866.782500px;}
.y39{bottom:871.735500px;}
.y250{bottom:872.191498px;}
.ybe{bottom:872.464500px;}
.y25{bottom:875.768850px;}
.y302{bottom:878.464485px;}
.y197{bottom:878.464500px;}
.y1ba{bottom:878.548500px;}
.y95{bottom:881.727000px;}
.y1ee{bottom:884.548500px;}
.y28f{bottom:884.782500px;}
.y154{bottom:887.230490px;}
.y38{bottom:889.735500px;}
.y24f{bottom:895.816492px;}
.y301{bottom:896.464485px;}
.ybd{bottom:896.464500px;}
.y1b9{bottom:896.548500px;}
.y1ed{bottom:902.548500px;}
.y28e{bottom:902.782500px;}
.y33{bottom:905.485485px;}
.y152{bottom:906.892493px;}
.y4{bottom:912.898650px;}
.y2d5{bottom:914.464485px;}
.y196{bottom:914.464500px;}
.y1b8{bottom:914.548500px;}
.y24d{bottom:919.441492px;}
.y1ec{bottom:920.548500px;}
.y37{bottom:922.735500px;}
.y150{bottom:926.554495px;}
.y94{bottom:932.464485px;}
.y195{bottom:932.464500px;}
.y32{bottom:932.485485px;}
.y1b7{bottom:932.548500px;}
.y1eb{bottom:938.548500px;}
.y262{bottom:938.782500px;}
.y24b{bottom:943.816495px;}
.y31{bottom:945.985485px;}
.y3{bottom:946.063200px;}
.y14e{bottom:946.216492px;}
.y93{bottom:950.464485px;}
.y194{bottom:950.464500px;}
.y1b6{bottom:950.548500px;}
.y36{bottom:954.976485px;}
.y1ea{bottom:956.548500px;}
.y14d{bottom:965.878495px;}
.y247{bottom:968.191494px;}
.y92{bottom:968.464485px;}
.y160{bottom:968.464500px;}
.y1b5{bottom:968.548500px;}
.y1e9{bottom:974.548500px;}
.y35{bottom:981.526485px;}
.y14c{bottom:985.540495px;}
.y300{bottom:986.464485px;}
.y91{bottom:986.464500px;}
.y1b4{bottom:986.548500px;}
.y1e8{bottom:992.548500px;}
.y2ff{bottom:1004.464485px;}
.y90{bottom:1004.464500px;}
.y1b3{bottom:1004.548500px;}
.y14a{bottom:1005.952494px;}
.y34{bottom:1008.076485px;}
.y2{bottom:1009.063200px;}
.y1e7{bottom:1010.548515px;}
.y246{bottom:1013.464500px;}
.y2fe{bottom:1022.464485px;}
.y8f{bottom:1022.464500px;}
.y1b2{bottom:1022.548500px;}
.y1e6{bottom:1028.548515px;}
.y2b{bottom:1028.785501px;}
.y245{bottom:1031.464500px;}
.y2fd{bottom:1040.464485px;}
.y8e{bottom:1040.464500px;}
.y1b1{bottom:1040.548500px;}
.y1e5{bottom:1046.548515px;}
.y2fc{bottom:1058.464485px;}
.y8d{bottom:1058.464500px;}
.y1b0{bottom:1064.548500px;}
.y1e4{bottom:1064.548515px;}
.y2fb{bottom:1076.464485px;}
.y8c{bottom:1076.464500px;}
.y2fa{bottom:1094.464485px;}
.y8b{bottom:1094.464500px;}
.y1af{bottom:1100.574000px;}
.y28{bottom:1109.295000px;}
.y2f9{bottom:1112.464485px;}
.y8a{bottom:1112.464500px;}
.y1ae{bottom:1117.053000px;}
.y26{bottom:1124.295000px;}
.y81{bottom:1130.295000px;}
.y2f8{bottom:1130.464485px;}
.y89{bottom:1130.464500px;}
.y1ad{bottom:1133.532000px;}
.y80{bottom:1142.295000px;}
.y2f7{bottom:1148.464485px;}
.y88{bottom:1148.464500px;}
.y1ac{bottom:1150.011000px;}
.y82{bottom:1162.864501px;}
.ye3{bottom:1218.226770px;}
.y2d{bottom:1221.203145px;}
.y86{bottom:1221.628350px;}
.y7b{bottom:1234.889985px;}
.h72{height:9.767834px;}
.h9{height:10.836480px;}
.h11{height:12.000000px;}
.h8{height:12.191040px;}
.h2b{height:13.500000px;}
.h7{height:13.545600px;}
.h74{height:15.033407px;}
.h8e{height:15.306432px;}
.hc{height:15.577440px;}
.hf{height:16.500000px;}
.h22{height:18.483398px;}
.h67{height:19.154404px;}
.h75{height:19.623805px;}
.h63{height:19.650554px;}
.h3b{height:19.662000px;}
.h76{height:20.719450px;}
.h50{height:21.243813px;}
.h4b{height:22.662000px;}
.h8c{height:22.700217px;}
.h79{height:23.028385px;}
.h68{height:23.449113px;}
.h37{height:23.489951px;}
.h47{height:24.131248px;}
.h62{height:24.665968px;}
.h6a{height:24.977890px;}
.h6f{height:25.121875px;}
.h5c{height:25.241825px;}
.h80{height:25.265830px;}
.h83{height:25.265840px;}
.h57{height:25.379336px;}
.h66{height:25.768257px;}
.h54{height:25.985668px;}
.h60{height:26.369848px;}
.h81{height:26.394925px;}
.h85{height:26.394936px;}
.h59{height:26.513504px;}
.h7d{height:26.625000px;}
.h64{height:26.942826px;}
.h44{height:27.147655px;}
.h71{height:27.426563px;}
.h70{height:27.440817px;}
.h5d{height:27.571839px;}
.h5e{height:27.632247px;}
.h8d{height:28.063436px;}
.h4e{height:28.325084px;}
.h55{height:28.384345px;}
.h23{height:28.751953px;}
.h73{height:29.154477px;}
.h3c{height:29.203125px;}
.h8b{height:29.439237px;}
.h51{height:29.553299px;}
.h52{height:29.590894px;}
.h6d{height:30.269177px;}
.h65{height:30.480515px;}
.h4f{height:30.939707px;}
.h77{height:31.042499px;}
.h5f{height:31.190383px;}
.h4c{height:31.499437px;}
.h12{height:31.788000px;}
.h58{height:32.033381px;}
.h8f{height:32.627552px;}
.h78{height:33.300012px;}
.h7b{height:33.375000px;}
.h7a{height:33.423000px;}
.h40{height:33.515625px;}
.h33{height:33.879737px;}
.h87{height:33.951705px;}
.h6c{height:34.845246px;}
.h36{height:35.393777px;}
.h7c{height:35.403375px;}
.h8a{height:35.468960px;}
.h19{height:35.560547px;}
.h3e{height:35.586352px;}
.h18{height:35.971650px;}
.h2d{height:36.310500px;}
.h3d{height:36.324000px;}
.h16{height:36.396855px;}
.h38{height:37.007098px;}
.h88{height:37.085708px;}
.h2c{height:37.086000px;}
.h30{height:37.546875px;}
.h42{height:37.705078px;}
.h31{height:39.373230px;}
.h84{height:39.563651px;}
.h1c{height:40.640625px;}
.h2e{height:41.718750px;}
.h39{height:41.764635px;}
.h89{height:41.764650px;}
.h34{height:41.764652px;}
.h24{height:43.260000px;}
.hd{height:43.440000px;}
.h3a{height:44.227386px;}
.h35{height:44.227402px;}
.h1e{height:45.720703px;}
.h5a{height:45.720763px;}
.h7e{height:46.842409px;}
.h1f{height:46.842469px;}
.h20{height:46.842529px;}
.h28{height:47.109375px;}
.h10{height:47.682000px;}
.h56{height:48.165690px;}
.ha{height:48.764160px;}
.h1d{height:50.062500px;}
.h2f{height:50.649000px;}
.h1b{height:51.200508px;}
.h6b{height:53.730510px;}
.h5{height:55.200000px;}
.h17{height:55.880859px;}
.h21{height:56.070000px;}
.h1a{height:60.492188px;}
.hb{height:67.727520px;}
.he{height:76.800000px;}
.h15{height:81.281250px;}
.h2{height:96.000000px;}
.h26{height:100.467773px;}
.h61{height:145.710448px;}
.h69{height:146.836183px;}
.h6e{height:147.685054px;}
.h82{height:148.504730px;}
.h7f{height:148.533774px;}
.h5b{height:149.099039px;}
.h4d{height:150.562250px;}
.h53{height:152.079180px;}
.h29{height:152.310000px;}
.h14{height:170.389500px;}
.h3{height:172.800000px;}
.h32{height:199.155826px;}
.h86{height:199.579465px;}
.h4{height:240.000000px;}
.h6{height:329.973000px;}
.h2a{height:343.635000px;}
.h46{height:385.864831px;}
.h4a{height:385.865723px;}
.h43{height:386.050647px;}
.h45{height:391.268648px;}
.h48{height:391.269540px;}
.h3f{height:391.269655px;}
.h41{height:392.109728px;}
.h49{height:392.586192px;}
.h27{height:443.970000px;}
.h25{height:897.218994px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.h13{height:1263.000000px;}
.w8{width:15.000000px;}
.w20{width:18.396720px;}
.w1e{width:19.041480px;}
.w24{width:21.228000px;}
.w23{width:24.855120px;}
.w1b{width:26.182500px;}
.w1d{width:26.235000px;}
.w22{width:26.733000px;}
.w21{width:27.166320px;}
.w1c{width:28.057500px;}
.w14{width:29.400000px;}
.w1f{width:29.586000px;}
.w2d{width:30.162927px;}
.w2f{width:31.233422px;}
.w2e{width:31.327876px;}
.w36{width:33.600000px;}
.w13{width:34.425000px;}
.w16{width:36.675000px;}
.w15{width:41.175000px;}
.w3a{width:45.046199px;}
.w34{width:48.075000px;}
.w4{width:53.310000px;}
.w3b{width:54.322955px;}
.w35{width:55.350000px;}
.w31{width:55.575000px;}
.w32{width:55.650000px;}
.wd{width:55.800000px;}
.w26{width:60.825000px;}
.w19{width:61.725000px;}
.w18{width:62.100000px;}
.w30{width:65.100000px;}
.w39{width:66.274868px;}
.we{width:74.850000px;}
.w9{width:78.045000px;}
.w33{width:81.825000px;}
.w11{width:88.650000px;}
.w12{width:88.950000px;}
.w1a{width:89.025000px;}
.wf{width:96.075000px;}
.w17{width:96.450000px;}
.w3{width:117.075000px;}
.wa{width:130.365000px;}
.w28{width:176.546052px;}
.w10{width:179.550000px;}
.w2a{width:182.555998px;}
.w37{width:182.774868px;}
.w2b{width:185.103160px;}
.w2c{width:185.952363px;}
.w29{width:186.801417px;}
.w27{width:192.196843px;}
.wb{width:250.149812px;}
.wc{width:250.151757px;}
.w38{width:250.178833px;}
.w2{width:251.949000px;}
.w25{width:318.599985px;}
.w6{width:373.090995px;}
.w7{width:879.224963px;}
.w0{width:892.914000px;}
.w5{width:893.024963px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x60{left:1.821562px;}
.x13{left:4.500000px;}
.x76{left:5.687999px;}
.x10{left:6.900004px;}
.x70{left:8.280651px;}
.x5{left:9.584250px;}
.x6f{left:10.823502px;}
.x11{left:12.000000px;}
.x25{left:13.511497px;}
.x34{left:14.738999px;}
.x35{left:15.864001px;}
.x1c{left:17.828295px;}
.x72{left:19.164002px;}
.x14{left:21.000000px;}
.x5b{left:22.533923px;}
.x1b{left:23.801411px;}
.x33{left:26.392502px;}
.x1a{left:29.774528px;}
.x78{left:31.789500px;}
.x36{left:32.792994px;}
.x37{left:34.978508px;}
.x38{left:36.304493px;}
.x19{left:37.738683px;}
.x2{left:40.644600px;}
.x3{left:41.707650px;}
.x20{left:44.854400px;}
.x68{left:48.704796px;}
.x61{left:52.543051px;}
.x69{left:56.132749px;}
.x7c{left:59.355904px;}
.x59{left:62.324999px;}
.xd{left:63.825000px;}
.x5d{left:65.091615px;}
.x84{left:68.149748px;}
.x1f{left:69.928795px;}
.xb{left:76.575000px;}
.x65{left:79.578850px;}
.x80{left:83.153334px;}
.x4{left:85.227000px;}
.x88{left:86.881046px;}
.x6{left:88.777800px;}
.x28{left:92.458279px;}
.x1d{left:95.426761px;}
.x83{left:99.498017px;}
.x62{left:101.190577px;}
.x87{left:106.197344px;}
.x26{left:119.485561px;}
.x85{left:141.356424px;}
.x2f{left:144.112501px;}
.x1e{left:145.660272px;}
.x79{left:147.454948px;}
.x21{left:149.091057px;}
.x5f{left:160.062211px;}
.x6c{left:162.495913px;}
.x66{left:165.957314px;}
.x64{left:168.330153px;}
.x5c{left:174.438471px;}
.x2a{left:176.287502px;}
.x18{left:192.545465px;}
.x7f{left:196.297767px;}
.x30{left:202.687500px;}
.x27{left:204.337670px;}
.x29{left:205.862720px;}
.x7{left:209.007750px;}
.x7e{left:220.739670px;}
.x82{left:222.857692px;}
.x22{left:224.030370px;}
.xe{left:229.725000px;}
.x7a{left:250.911000px;}
.x7b{left:254.206513px;}
.x31{left:268.012499px;}
.x2b{left:302.437506px;}
.x81{left:321.079529px;}
.xc{left:350.034015px;}
.x8{left:361.878600px;}
.x5a{left:378.674990px;}
.x2c{left:396.262510px;}
.x7d{left:436.981470px;}
.x23{left:443.382000px;}
.x71{left:453.524981px;}
.xf{left:455.024965px;}
.x63{left:458.320498px;}
.x24{left:464.010500px;}
.x8a{left:476.324985px;}
.x3a{left:483.134980px;}
.x3b{left:493.586557px;}
.x3c{left:505.910980px;}
.x32{left:514.087492px;}
.x3d{left:516.343011px;}
.x3e{left:522.226061px;}
.x3f{left:534.550478px;}
.x40{left:544.982509px;}
.x41{left:548.222986px;}
.x42{left:562.008924px;}
.x43{left:567.245562px;}
.x86{left:571.945534px;}
.x2d{left:573.562483px;}
.x44{left:579.569979px;}
.x45{left:590.002010px;}
.x46{left:593.242476px;}
.x47{left:607.028413px;}
.x1{left:609.497400px;}
.x48{left:612.265062px;}
.x73{left:620.849985px;}
.x49{left:624.589479px;}
.x4a{left:635.021511px;}
.x6a{left:640.411485px;}
.x6b{left:642.964497px;}
.x4b{left:646.385988px;}
.x5e{left:648.558001px;}
.x4c{left:657.317942px;}
.x2e{left:659.962492px;}
.x4d{left:673.697423px;}
.x4e{left:678.934061px;}
.x9{left:685.845000px;}
.xa{left:688.110000px;}
.x4f{left:691.258478px;}
.x16{left:698.040000px;}
.x74{left:699.674990px;}
.x50{left:701.690509px;}
.x51{left:713.054987px;}
.x52{left:723.986940px;}
.x53{left:729.223062px;}
.x54{left:741.547480px;}
.x75{left:744.749971px;}
.x89{left:746.383490px;}
.x15{left:750.360000px;}
.x55{left:751.979511px;}
.x56{left:761.032488px;}
.x6e{left:762.325322px;}
.x57{left:763.886988px;}
.x58{left:774.818941px;}
.x39{left:786.599990px;}
.x6d{left:792.204853px;}
.x77{left:797.099985px;}
.x17{left:812.369955px;}
.x67{left:828.241515px;}
.x12{left:871.945463px;}
@media print{
.vc{vertical-align:-27.200426pt;}
.v6{vertical-align:-14.458883pt;}
.v5{vertical-align:-11.312000pt;}
.v8{vertical-align:-7.855364pt;}
.v2{vertical-align:-6.400000pt;}
.vd{vertical-align:-3.843409pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.122133pt;}
.v7{vertical-align:11.312000pt;}
.v3{vertical-align:12.928000pt;}
.v4{vertical-align:14.544000pt;}
.v1{vertical-align:16.160000pt;}
.v9{vertical-align:20.331531pt;}
.vb{vertical-align:23.508417pt;}
.ls3{letter-spacing:-22.666667pt;}
.ls2{letter-spacing:-16.320000pt;}
.ls9{letter-spacing:-6.396488pt;}
.ls8{letter-spacing:-4.605504pt;}
.lse{letter-spacing:-1.706667pt;}
.ls4{letter-spacing:-1.226667pt;}
.ls1{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-0.346165pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.150507pt;}
.ls7{letter-spacing:-0.135456pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.001760pt;}
.lsf{letter-spacing:0.002667pt;}
.ls2b{letter-spacing:0.005333pt;}
.ls13{letter-spacing:0.006133pt;}
.ls34{letter-spacing:0.008640pt;}
.ls35{letter-spacing:0.008693pt;}
.ls12{letter-spacing:0.010613pt;}
.ls11{letter-spacing:0.010667pt;}
.ls1e{letter-spacing:0.011680pt;}
.ls10{letter-spacing:0.013333pt;}
.ls19{letter-spacing:0.020786pt;}
.ls20{letter-spacing:0.029398pt;}
.ls21{letter-spacing:0.029399pt;}
.ls32{letter-spacing:0.041517pt;}
.ls31{letter-spacing:0.041763pt;}
.ls1b{letter-spacing:0.050754pt;}
.lsd{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.057175pt;}
.ls29{letter-spacing:0.066287pt;}
.ls1c{letter-spacing:0.070169pt;}
.ls28{letter-spacing:0.072522pt;}
.ls27{letter-spacing:0.074216pt;}
.ls18{letter-spacing:0.076572pt;}
.ls33{letter-spacing:0.097030pt;}
.ls1a{letter-spacing:0.100296pt;}
.lsc{letter-spacing:0.106667pt;}
.ls30{letter-spacing:0.124829pt;}
.ls0{letter-spacing:0.378667pt;}
.ls16{letter-spacing:0.554667pt;}
.ls25{letter-spacing:1.013493pt;}
.ls2d{letter-spacing:2.300373pt;}
.ls2c{letter-spacing:2.312480pt;}
.ls2e{letter-spacing:2.645280pt;}
.ls14{letter-spacing:2.645333pt;}
.ls2f{letter-spacing:2.658187pt;}
.ls15{letter-spacing:2.688000pt;}
.ls2a{letter-spacing:4.080000pt;}
.ls23{letter-spacing:10.508587pt;}
.ls22{letter-spacing:12.524005pt;}
.ls26{letter-spacing:17.403893pt;}
.ls24{letter-spacing:23.897333pt;}
.ls1d{letter-spacing:70.366141pt;}
.ws15{word-spacing:-88.585938pt;}
.ws1e{word-spacing:-81.662145pt;}
.ws46{word-spacing:-48.000000pt;}
.ws2a{word-spacing:-23.424000pt;}
.ws4b{word-spacing:-19.775972pt;}
.ws4d{word-spacing:-14.464000pt;}
.ws1b{word-spacing:-14.115275pt;}
.ws20{word-spacing:-14.115270pt;}
.ws48{word-spacing:-12.587838pt;}
.ws1d{word-spacing:-12.561156pt;}
.ws17{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.372575pt;}
.ws19{word-spacing:-11.296004pt;}
.ws4c{word-spacing:-10.878507pt;}
.ws12{word-spacing:-10.848000pt;}
.ws26{word-spacing:-10.501728pt;}
.ws3f{word-spacing:-9.954481pt;}
.ws44{word-spacing:-9.949758pt;}
.wsf{word-spacing:-9.642667pt;}
.ws28{word-spacing:-9.634373pt;}
.ws25{word-spacing:-9.501176pt;}
.ws24{word-spacing:-9.444000pt;}
.ws43{word-spacing:-9.367492pt;}
.ws37{word-spacing:-9.314116pt;}
.ws2f{word-spacing:-9.145085pt;}
.ws4a{word-spacing:-8.956509pt;}
.ws29{word-spacing:-8.461845pt;}
.ws14{word-spacing:-8.437333pt;}
.ws41{word-spacing:-8.424003pt;}
.ws3d{word-spacing:-8.424000pt;}
.ws2c{word-spacing:-8.415996pt;}
.ws16{word-spacing:-8.000000pt;}
.ws1c{word-spacing:-7.831896pt;}
.ws31{word-spacing:-7.483837pt;}
.ws11{word-spacing:-7.232000pt;}
.ws3a{word-spacing:-7.123487pt;}
.ws45{word-spacing:-6.773705pt;}
.ws10{word-spacing:-6.666667pt;}
.ws35{word-spacing:-6.579117pt;}
.ws30{word-spacing:-6.113171pt;}
.wse{word-spacing:-6.026667pt;}
.ws21{word-spacing:-6.000000pt;}
.ws34{word-spacing:-5.960612pt;}
.ws3b{word-spacing:-5.695682pt;}
.ws22{word-spacing:-5.424000pt;}
.ws39{word-spacing:-5.168587pt;}
.ws1{word-spacing:-4.364693pt;}
.ws2{word-spacing:-4.063680pt;}
.ws38{word-spacing:-3.358247pt;}
.ws13{word-spacing:-2.220693pt;}
.wsc{word-spacing:-0.106667pt;}
.wsd{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.135456pt;}
.wsb{word-spacing:0.160000pt;}
.wsa{word-spacing:0.346165pt;}
.ws0{word-spacing:0.960000pt;}
.ws5{word-spacing:1.226667pt;}
.ws8{word-spacing:4.605504pt;}
.ws9{word-spacing:6.396488pt;}
.ws36{word-spacing:12.769982pt;}
.ws3{word-spacing:16.320000pt;}
.ws3c{word-spacing:22.027232pt;}
.ws2e{word-spacing:22.449386pt;}
.ws4{word-spacing:22.666667pt;}
.ws18{word-spacing:37.048083pt;}
.ws2d{word-spacing:39.232581pt;}
.ws2b{word-spacing:46.313232pt;}
.ws32{word-spacing:59.677670pt;}
.ws40{word-spacing:59.916876pt;}
.ws23{word-spacing:62.844171pt;}
.ws49{word-spacing:99.705527pt;}
.ws27{word-spacing:104.077565pt;}
.ws47{word-spacing:123.890550pt;}
.ws33{word-spacing:456.405723pt;}
.ws42{word-spacing:483.803887pt;}
.ws3e{word-spacing:491.410185pt;}
.ws1f{word-spacing:668.790133pt;}
._26{margin-left:-1902.079893pt;}
._6{margin-left:-98.666667pt;}
._2b{margin-left:-70.366140pt;}
._37{margin-left:-67.094050pt;}
._30{margin-left:-46.162274pt;}
._36{margin-left:-43.593800pt;}
._f{margin-left:-27.843536pt;}
._d{margin-left:-22.666667pt;}
._8{margin-left:-12.666667pt;}
._4{margin-left:-11.306667pt;}
._9{margin-left:-6.666667pt;}
._0{margin-left:-5.333333pt;}
._7{margin-left:-4.000000pt;}
._16{margin-left:-3.039467pt;}
._1{margin-left:-2.133333pt;}
._e{margin-left:-1.226667pt;}
._2{width:0.960000pt;}
._5{width:1.920000pt;}
._3{width:2.880000pt;}
._10{width:3.776000pt;}
._a{width:4.746667pt;}
._11{width:5.947680pt;}
._18{width:7.556053pt;}
._c{width:9.333333pt;}
._b{width:12.000000pt;}
._29{width:13.024587pt;}
._15{width:14.055893pt;}
._21{width:15.701120pt;}
._14{width:17.160480pt;}
._24{width:18.086507pt;}
._1d{width:19.563040pt;}
._23{width:21.028267pt;}
._13{width:21.928853pt;}
._12{width:23.022027pt;}
._31{width:24.257920pt;}
._25{width:25.318933pt;}
._34{width:26.596907pt;}
._2d{width:27.747360pt;}
._32{width:28.763413pt;}
._17{width:29.865280pt;}
._19{width:30.816960pt;}
._22{width:32.173067pt;}
._2c{width:33.075253pt;}
._1a{width:34.342880pt;}
._1b{width:39.108747pt;}
._3a{width:41.899680pt;}
._35{width:44.179395pt;}
._1c{width:47.406400pt;}
._3b{width:51.408000pt;}
._33{width:58.131413pt;}
._2f{width:63.818900pt;}
._2a{width:69.611961pt;}
._2e{width:81.112203pt;}
._39{width:100.751516pt;}
._38{width:121.606473pt;}
._1e{width:943.679947pt;}
._28{width:1247.488000pt;}
._20{width:1251.029333pt;}
._27{width:2223.733333pt;}
._1f{width:2235.840000pt;}
.fs6{font-size:12.040533pt;}
.fs36{font-size:12.080026pt;}
.fs5{font-size:13.545600pt;}
.fs4{font-size:15.050667pt;}
.fs9{font-size:17.308267pt;}
.fs37{font-size:18.592040pt;}
.fs39{font-size:19.218041pt;}
.fs45{font-size:21.833893pt;}
.fs3b{font-size:22.782729pt;}
.fs32{font-size:23.842448pt;}
.fs15{font-size:24.000000pt;}
.fs2e{font-size:24.452685pt;}
.fs38{font-size:25.624055pt;}
.fs2c{font-size:26.207137pt;}
.fs34{font-size:26.316469pt;}
.fs13{font-size:26.666667pt;}
.fs40{font-size:27.094821pt;}
.fs23{font-size:28.332001pt;}
.fs2f{font-size:29.935349pt;}
.fs3c{font-size:30.712012pt;}
.fs21{font-size:30.719998pt;}
.fs1c{font-size:30.725130pt;}
.fs1b{font-size:31.327583pt;}
.fsd{font-size:32.000000pt;}
.fs2b{font-size:32.895988pt;}
.fs30{font-size:33.311986pt;}
.fs35{font-size:33.504013pt;}
.fs29{font-size:33.663985pt;}
.fs3d{font-size:33.696000pt;}
.fs3e{font-size:33.696013pt;}
.fs27{font-size:33.731858pt;}
.fs26{font-size:33.847378pt;}
.fs20{font-size:34.559998pt;}
.fs25{font-size:34.656019pt;}
.fs11{font-size:34.666667pt;}
.fs31{font-size:35.095192pt;}
.fs44{font-size:35.826036pt;}
.fs1f{font-size:36.297806pt;}
.fs1a{font-size:36.297821pt;}
.fsf{font-size:37.333333pt;}
.fs43{font-size:37.582395pt;}
.fs24{font-size:37.728007pt;}
.fs22{font-size:37.776001pt;}
.fs33{font-size:38.641904pt;}
.fs2d{font-size:38.911700pt;}
.fs3a{font-size:39.629133pt;}
.fs3f{font-size:39.799031pt;}
.fs2a{font-size:39.817924pt;}
.fs28{font-size:40.894102pt;}
.fs12{font-size:42.666667pt;}
.fs46{font-size:43.514026pt;}
.fs17{font-size:45.184014pt;}
.fs41{font-size:45.279994pt;}
.fsc{font-size:48.000000pt;}
.fs1d{font-size:53.317109pt;}
.fs42{font-size:53.317128pt;}
.fs18{font-size:53.317132pt;}
.fsa{font-size:53.333333pt;}
.fs7{font-size:54.182400pt;}
.fs1e{font-size:56.461079pt;}
.fs19{font-size:56.461100pt;}
.fse{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs14{font-size:64.000000pt;}
.fs8{font-size:75.252800pt;}
.fs10{font-size:77.333333pt;}
.fsb{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.fs16{font-size:122.666667pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y225{bottom:0.217313pt;}
.y22a{bottom:0.347519pt;}
.y22d{bottom:0.468395pt;}
.y2b5{bottom:2.301334pt;}
.y22f{bottom:2.314748pt;}
.y2bb{bottom:2.344490pt;}
.y27{bottom:2.666667pt;}
.y219{bottom:2.690148pt;}
.y85{bottom:2.863995pt;}
.y7a{bottom:2.973341pt;}
.y2ab{bottom:2.980614pt;}
.y26c{bottom:3.142544pt;}
.y2be{bottom:3.535953pt;}
.y2c0{bottom:3.574380pt;}
.y2c2{bottom:3.574387pt;}
.y201{bottom:3.983000pt;}
.y24a{bottom:4.197338pt;}
.y27e{bottom:4.293244pt;}
.y208{bottom:4.303742pt;}
.ye5{bottom:4.867260pt;}
.y103{bottom:5.196075pt;}
.y2f{bottom:5.266541pt;}
.yf2{bottom:5.534995pt;}
.y176{bottom:6.528809pt;}
.y11c{bottom:7.257329pt;}
.y115{bottom:7.257330pt;}
.y10e{bottom:7.257331pt;}
.y113{bottom:7.257333pt;}
.y118{bottom:7.257335pt;}
.y120{bottom:7.257336pt;}
.y122{bottom:7.257338pt;}
.y11a{bottom:7.257340pt;}
.y24e{bottom:7.686660pt;}
.y251{bottom:7.686669pt;}
.y24c{bottom:7.686671pt;}
.y226{bottom:7.767330pt;}
.y16e{bottom:8.088550pt;}
.y14f{bottom:8.590660pt;}
.y155{bottom:8.590662pt;}
.y151{bottom:8.590671pt;}
.y14b{bottom:8.590672pt;}
.y153{bottom:8.590673pt;}
.y218{bottom:9.242732pt;}
.y248{bottom:10.708005pt;}
.y22c{bottom:11.412551pt;}
.y229{bottom:11.967545pt;}
.y222{bottom:11.977032pt;}
.y211{bottom:11.991491pt;}
.y87{bottom:12.316707pt;}
.y30{bottom:12.316712pt;}
.yc{bottom:12.438987pt;}
.y2bc{bottom:12.452691pt;}
.y2e{bottom:12.505693pt;}
.ye6{bottom:12.505700pt;}
.y275{bottom:12.914007pt;}
.y264{bottom:12.916543pt;}
.y1f9{bottom:13.746249pt;}
.ye4{bottom:13.828520pt;}
.y204{bottom:14.366045pt;}
.y110{bottom:14.662664pt;}
.y2b2{bottom:15.132133pt;}
.y227{bottom:15.317346pt;}
.yb{bottom:16.051147pt;}
.y2a2{bottom:16.490679pt;}
.y79{bottom:17.194674pt;}
.y249{bottom:17.218672pt;}
.y170{bottom:17.792015pt;}
.y162{bottom:18.286604pt;}
.y212{bottom:19.236848pt;}
.y83{bottom:19.581332pt;}
.ye8{bottom:19.656573pt;}
.ya{bottom:19.663307pt;}
.y276{bottom:20.242890pt;}
.y265{bottom:20.245423pt;}
.yf9{bottom:20.598000pt;}
.y9{bottom:23.275467pt;}
.yf3{bottom:25.003935pt;}
.yf5{bottom:25.192228pt;}
.y78{bottom:25.760007pt;}
.y163{bottom:26.502884pt;}
.y8{bottom:26.887283pt;}
.ye9{bottom:29.484096pt;}
.yfa{bottom:30.425523pt;}
.y179{bottom:34.083250pt;}
.y2c{bottom:34.395999pt;}
.yef{bottom:34.945525pt;}
.y100{bottom:35.886965pt;}
.y172{bottom:35.928665pt;}
.y108{bottom:36.862538pt;}
.y213{bottom:37.725000pt;}
.y277{bottom:37.820977pt;}
.y22e{bottom:38.143416pt;}
.y1fc{bottom:38.182438pt;}
.y77{bottom:39.981341pt;}
.y266{bottom:41.361583pt;}
.y16d{bottom:41.704364pt;}
.y105{bottom:41.832780pt;}
.y272{bottom:41.985730pt;}
.y7{bottom:42.163333pt;}
.y164{bottom:45.139044pt;}
.y207{bottom:45.539968pt;}
.y200{bottom:46.290421pt;}
.y178{bottom:50.172299pt;}
.yf6{bottom:52.042050pt;}
.y271{bottom:52.433796pt;}
.y104{bottom:52.978170pt;}
.y21f{bottom:54.416687pt;}
.yea{bottom:54.787144pt;}
.y2a9{bottom:55.096287pt;}
.y278{bottom:55.427144pt;}
.y1fd{bottom:55.491337pt;}
.yfb{bottom:55.728571pt;}
.y284{bottom:55.905544pt;}
.y214{bottom:56.240913pt;}
.y173{bottom:57.213236pt;}
.y27d{bottom:58.095838pt;}
.y2b4{bottom:58.303980pt;}
.y2aa{bottom:59.662540pt;}
.y267{bottom:62.449663pt;}
.y270{bottom:62.881849pt;}
.y165{bottom:63.775205pt;}
.y26b{bottom:65.156836pt;}
.y20d{bottom:65.938747pt;}
.y283{bottom:66.351561pt;}
.y2ad{bottom:68.579272pt;}
.y2a8{bottom:69.134686pt;}
.y2b9{bottom:69.813966pt;}
.y84{bottom:69.933338pt;}
.y1{bottom:70.698533pt;}
.y1fe{bottom:71.902530pt;}
.y20f{bottom:72.819492pt;}
.y279{bottom:73.005231pt;}
.y26f{bottom:73.329903pt;}
.y215{bottom:74.729065pt;}
.y21e{bottom:75.073985pt;}
.y20c{bottom:76.138130pt;}
.y282{bottom:76.797579pt;}
.y174{bottom:78.237888pt;}
.yeb{bottom:80.052539pt;}
.yfc{bottom:80.993966pt;}
.y205{bottom:81.347489pt;}
.y166{bottom:82.379886pt;}
.y2a7{bottom:83.173084pt;}
.y268{bottom:83.565823pt;}
.y26e{bottom:83.777969pt;}
.y21d{bottom:85.402634pt;}
.y20b{bottom:86.337513pt;}
.y281{bottom:87.243596pt;}
.y202{bottom:89.237042pt;}
.y27a{bottom:90.583317pt;}
.y216{bottom:93.217217pt;}
.yf0{bottom:93.502997pt;}
.y101{bottom:94.444424pt;}
.y107{bottom:94.585117pt;}
.y2b1{bottom:95.427269pt;}
.y21c{bottom:95.731283pt;}
.y20a{bottom:96.536897pt;}
.y2a6{bottom:97.211482pt;}
.y169{bottom:97.353020pt;}
.y280{bottom:97.689600pt;}
.y2b8{bottom:97.890762pt;}
.y175{bottom:98.338379pt;}
.y171{bottom:98.973739pt;}
.y232{bottom:99.579947pt;}
.y167{bottom:101.016046pt;}
.y16c{bottom:102.609433pt;}
.y269{bottom:104.653902pt;}
.y26d{bottom:104.674089pt;}
.y1ff{bottom:104.865182pt;}
.yec{bottom:105.355587pt;}
.y21b{bottom:106.059932pt;}
.yfd{bottom:106.297014pt;}
.y209{bottom:106.736293pt;}
.y2ae{bottom:107.557801pt;}
.y27b{bottom:108.189484pt;}
.y231{bottom:109.074670pt;}
.y2a5{bottom:111.249894pt;}
.y16b{bottom:111.359620pt;}
.y217{bottom:111.705369pt;}
.y2b7{bottom:111.929173pt;}
.y21a{bottom:116.388580pt;}
.y223{bottom:117.480314pt;}
.y230{bottom:118.569407pt;}
.y27f{bottom:118.581635pt;}
.yf4{bottom:118.582911pt;}
.yf1{bottom:118.808858pt;}
.y206{bottom:119.650022pt;}
.y168{bottom:119.652207pt;}
.y102{bottom:119.750285pt;}
.y177{bottom:119.767350pt;}
.y16a{bottom:120.109794pt;}
.y20e{bottom:120.244542pt;}
.y1fb{bottom:120.973828pt;}
.y76{bottom:120.979099pt;}
.ye2{bottom:121.326640pt;}
.y75{bottom:121.542653pt;}
.y240{bottom:122.515973pt;}
.y1fa{bottom:122.909507pt;}
.y2cb{bottom:124.926653pt;}
.y1e3{bottom:124.932000pt;}
.y106{bottom:125.272593pt;}
.y27c{bottom:125.767571pt;}
.y26a{bottom:125.770062pt;}
.y2b6{bottom:125.967572pt;}
.ybc{bottom:126.659973pt;}
.y2d4{bottom:128.457320pt;}
.y2f6{bottom:128.557360pt;}
.y2b0{bottom:130.118704pt;}
.yed{bottom:130.620982pt;}
.yfe{bottom:131.562409pt;}
.y149{bottom:132.700000pt;}
.y193{bottom:133.912000pt;}
.ye1{bottom:137.326653pt;}
.y74{bottom:137.542653pt;}
.y134{bottom:138.033320pt;}
.y23f{bottom:138.515987pt;}
.y2a4{bottom:139.326690pt;}
.y2ca{bottom:140.926653pt;}
.y1e2{bottom:140.932000pt;}
.ybb{bottom:142.659973pt;}
.y2af{bottom:144.157116pt;}
.y2d3{bottom:144.457320pt;}
.y2f5{bottom:144.557360pt;}
.y18a{bottom:144.578667pt;}
.y148{bottom:148.700000pt;}
.y192{bottom:149.912000pt;}
.ye0{bottom:153.326653pt;}
.y73{bottom:153.542653pt;}
.y133{bottom:154.033320pt;}
.y23e{bottom:154.515987pt;}
.yf7{bottom:154.647416pt;}
.yee{bottom:155.924030pt;}
.yff{bottom:156.865457pt;}
.y2c9{bottom:156.926653pt;}
.y1e1{bottom:156.932000pt;}
.yba{bottom:158.659973pt;}
.y2d2{bottom:160.457320pt;}
.y2f4{bottom:160.557360pt;}
.y189{bottom:160.578667pt;}
.y2b3{bottom:160.799407pt;}
.y2a3{bottom:160.912620pt;}
.y2ac{bottom:161.893794pt;}
.y7c{bottom:162.569336pt;}
.y147{bottom:164.700000pt;}
.y191{bottom:165.912000pt;}
.ydf{bottom:169.326653pt;}
.y72{bottom:169.542653pt;}
.y132{bottom:170.033320pt;}
.y23d{bottom:170.515987pt;}
.y2c8{bottom:172.926653pt;}
.y1e0{bottom:172.932000pt;}
.yb9{bottom:174.659973pt;}
.y2d1{bottom:176.457320pt;}
.y2f3{bottom:176.557360pt;}
.y188{bottom:176.578667pt;}
.y146{bottom:180.700000pt;}
.y190{bottom:181.912000pt;}
.yde{bottom:185.326653pt;}
.y71{bottom:185.542640pt;}
.y131{bottom:186.033320pt;}
.y23c{bottom:186.515987pt;}
.y2c7{bottom:188.926653pt;}
.y1df{bottom:188.932000pt;}
.yb8{bottom:190.659973pt;}
.y2d0{bottom:192.457320pt;}
.y2f2{bottom:192.557360pt;}
.y187{bottom:192.578667pt;}
.y145{bottom:196.700000pt;}
.y18f{bottom:197.912000pt;}
.ydd{bottom:201.326653pt;}
.y70{bottom:201.542640pt;}
.y130{bottom:202.033320pt;}
.y23b{bottom:202.515987pt;}
.y2c6{bottom:204.926653pt;}
.y1de{bottom:204.932013pt;}
.yb7{bottom:206.659973pt;}
.y2cf{bottom:208.457320pt;}
.y2f1{bottom:208.557360pt;}
.y186{bottom:208.578667pt;}
.y144{bottom:212.700000pt;}
.y18e{bottom:213.912000pt;}
.ydc{bottom:217.326653pt;}
.y6f{bottom:217.542653pt;}
.y6{bottom:217.581067pt;}
.y12f{bottom:218.033320pt;}
.y23a{bottom:218.515987pt;}
.y1dd{bottom:220.932013pt;}
.yb6{bottom:222.659973pt;}
.y2ce{bottom:224.457320pt;}
.y2f0{bottom:224.557360pt;}
.y185{bottom:224.578667pt;}
.y13{bottom:225.260667pt;}
.y59{bottom:227.345307pt;}
.y2c5{bottom:227.357320pt;}
.y143{bottom:228.700000pt;}
.y18d{bottom:229.912000pt;}
.ydb{bottom:233.326653pt;}
.y6e{bottom:233.542653pt;}
.y12{bottom:233.579733pt;}
.y12e{bottom:234.033320pt;}
.y239{bottom:234.515987pt;}
.y1dc{bottom:236.932013pt;}
.yb5{bottom:238.659973pt;}
.y2cd{bottom:240.457320pt;}
.y2ef{bottom:240.557360pt;}
.y184{bottom:240.578667pt;}
.y31c{bottom:241.657333pt;}
.y58{bottom:243.345307pt;}
.y142{bottom:244.700000pt;}
.y18c{bottom:245.912000pt;}
.yda{bottom:249.326653pt;}
.y11{bottom:249.382933pt;}
.y6d{bottom:249.542653pt;}
.y12d{bottom:250.033320pt;}
.y238{bottom:250.515987pt;}
.y1db{bottom:252.932013pt;}
.yb4{bottom:254.659973pt;}
.y31b{bottom:254.990667pt;}
.y2cc{bottom:256.457320pt;}
.y2ee{bottom:256.557360pt;}
.y183{bottom:256.578667pt;}
.y57{bottom:259.345307pt;}
.y141{bottom:260.700000pt;}
.y18b{bottom:261.912000pt;}
.yd9{bottom:265.326653pt;}
.y6c{bottom:265.542653pt;}
.y12c{bottom:266.033333pt;}
.y237{bottom:266.515987pt;}
.y31a{bottom:268.857320pt;}
.y1da{bottom:268.932013pt;}
.yb3{bottom:270.659973pt;}
.y2ed{bottom:272.557360pt;}
.y10{bottom:273.075227pt;}
.y56{bottom:275.345307pt;}
.y140{bottom:276.700000pt;}
.yf{bottom:277.138907pt;}
.y182{bottom:277.912000pt;}
.ye{bottom:281.202587pt;}
.yd8{bottom:281.326653pt;}
.y6b{bottom:281.542653pt;}
.y12b{bottom:282.033333pt;}
.y236{bottom:282.515987pt;}
.y319{bottom:284.857320pt;}
.y1d9{bottom:284.932013pt;}
.yd{bottom:285.266267pt;}
.yb2{bottom:286.659973pt;}
.y2c4{bottom:288.457320pt;}
.y2ec{bottom:288.557360pt;}
.y55{bottom:291.345307pt;}
.y13f{bottom:292.700000pt;}
.y24{bottom:294.981600pt;}
.yd7{bottom:297.326653pt;}
.y6a{bottom:297.542653pt;}
.y12a{bottom:298.033333pt;}
.y318{bottom:300.857333pt;}
.y1d8{bottom:300.932013pt;}
.y5{bottom:301.506667pt;}
.yb1{bottom:302.659973pt;}
.y2c3{bottom:304.457320pt;}
.y2eb{bottom:304.557360pt;}
.y54{bottom:307.345307pt;}
.y13e{bottom:308.700000pt;}
.y181{bottom:309.934667pt;}
.y23{bottom:310.981600pt;}
.yd6{bottom:313.326653pt;}
.y69{bottom:313.542653pt;}
.y129{bottom:314.033333pt;}
.y261{bottom:314.209360pt;}
.y235{bottom:314.515987pt;}
.y317{bottom:316.857320pt;}
.y1d7{bottom:316.932013pt;}
.y2a1{bottom:317.869328pt;}
.yb0{bottom:318.659973pt;}
.y2ea{bottom:320.557360pt;}
.y53{bottom:323.345307pt;}
.y180{bottom:324.582667pt;}
.y22{bottom:326.981600pt;}
.yd5{bottom:329.326653pt;}
.y68{bottom:329.542653pt;}
.y128{bottom:330.033333pt;}
.y234{bottom:330.515987pt;}
.y316{bottom:332.857320pt;}
.y1d6{bottom:332.932013pt;}
.y138{bottom:334.587166pt;}
.yaf{bottom:334.659987pt;}
.y13a{bottom:335.333033pt;}
.y13d{bottom:335.333833pt;}
.y135{bottom:335.366667pt;}
.y137{bottom:336.640653pt;}
.y139{bottom:337.158347pt;}
.y13b{bottom:337.159147pt;}
.y136{bottom:337.159253pt;}
.y17f{bottom:339.230667pt;}
.y52{bottom:339.345307pt;}
.y13c{bottom:341.307579pt;}
.y21{bottom:342.981600pt;}
.yd4{bottom:345.326653pt;}
.y67{bottom:345.542653pt;}
.y127{bottom:346.033333pt;}
.y233{bottom:346.515987pt;}
.y315{bottom:348.857320pt;}
.y1d5{bottom:348.932013pt;}
.yae{bottom:350.659987pt;}
.y51{bottom:355.345307pt;}
.y2e9{bottom:356.321333pt;}
.y20{bottom:358.981600pt;}
.yd3{bottom:361.326653pt;}
.y66{bottom:361.542653pt;}
.y126{bottom:362.033333pt;}
.y314{bottom:364.857320pt;}
.y1d4{bottom:364.932013pt;}
.yad{bottom:366.659987pt;}
.y50{bottom:371.345320pt;}
.y220{bottom:373.964013pt;}
.y210{bottom:374.214946pt;}
.y221{bottom:374.749721pt;}
.y1f{bottom:374.981600pt;}
.yd2{bottom:377.326653pt;}
.y65{bottom:377.542640pt;}
.y125{bottom:378.033333pt;}
.y313{bottom:380.857320pt;}
.y1d3{bottom:380.932013pt;}
.yac{bottom:382.659987pt;}
.y4f{bottom:387.345320pt;}
.y64{bottom:393.542640pt;}
.y124{bottom:394.033333pt;}
.y22b{bottom:396.081669pt;}
.y312{bottom:396.857320pt;}
.y1d2{bottom:396.932013pt;}
.y228{bottom:397.142843pt;}
.yab{bottom:398.659987pt;}
.y2e8{bottom:401.421333pt;}
.y1e{bottom:402.314933pt;}
.y4e{bottom:403.345320pt;}
.y63{bottom:409.542653pt;}
.y123{bottom:410.033333pt;}
.y2c1{bottom:412.328938pt;}
.y311{bottom:412.857320pt;}
.y1d1{bottom:412.932013pt;}
.yaa{bottom:414.659987pt;}
.y2e7{bottom:417.421333pt;}
.y1d{bottom:418.314933pt;}
.y4d{bottom:419.345320pt;}
.y7d{bottom:421.026667pt;}
.yd1{bottom:421.090667pt;}
.y62{bottom:425.542653pt;}
.y2bf{bottom:426.165261pt;}
.y310{bottom:428.857320pt;}
.y1d0{bottom:428.932013pt;}
.ya9{bottom:430.659987pt;}
.y2e6{bottom:433.421333pt;}
.y4c{bottom:435.345320pt;}
.y121{bottom:438.166649pt;}
.y2bd{bottom:440.040018pt;}
.y61{bottom:441.542653pt;}
.y30f{bottom:444.857320pt;}
.y1cf{bottom:444.932013pt;}
.y1c{bottom:445.648267pt;}
.ya8{bottom:446.659987pt;}
.y2e5{bottom:449.421333pt;}
.y4b{bottom:451.345320pt;}
.y11f{bottom:452.977318pt;}
.y2ba{bottom:454.030078pt;}
.y60{bottom:457.542653pt;}
.y30e{bottom:460.857320pt;}
.y1ce{bottom:460.932013pt;}
.y1b{bottom:461.648267pt;}
.ya7{bottom:462.659987pt;}
.y2e4{bottom:465.421333pt;}
.y224{bottom:466.147360pt;}
.yd0{bottom:466.190667pt;}
.y4a{bottom:467.345320pt;}
.y11e{bottom:467.787987pt;}
.y5f{bottom:473.542653pt;}
.y7e{bottom:475.173333pt;}
.y30d{bottom:476.857333pt;}
.y1cd{bottom:476.932013pt;}
.y1a{bottom:477.648267pt;}
.ya6{bottom:478.659987pt;}
.y2e3{bottom:481.421333pt;}
.ycf{bottom:482.190667pt;}
.y11d{bottom:482.598655pt;}
.y49{bottom:483.345320pt;}
.y5e{bottom:489.542653pt;}
.y30c{bottom:492.857320pt;}
.y1cc{bottom:492.932013pt;}
.y19{bottom:493.648267pt;}
.y11b{bottom:497.409324pt;}
.yce{bottom:498.190667pt;}
.y48{bottom:499.345320pt;}
.ya5{bottom:499.993320pt;}
.y2e2{bottom:503.852013pt;}
.y5d{bottom:505.542653pt;}
.y1f7{bottom:506.025333pt;}
.y203{bottom:506.520928pt;}
.y1f8{bottom:506.532844pt;}
.y30b{bottom:508.857320pt;}
.y1a8{bottom:508.857333pt;}
.y1cb{bottom:508.932013pt;}
.y18{bottom:509.648267pt;}
.y119{bottom:512.219993pt;}
.y260{bottom:513.147987pt;}
.ycd{bottom:514.190667pt;}
.y2a0{bottom:514.473333pt;}
.y47{bottom:515.345320pt;}
.y5c{bottom:521.542653pt;}
.y1a7{bottom:524.857333pt;}
.y1ca{bottom:524.932000pt;}
.y17{bottom:525.648267pt;}
.y28d{bottom:526.189333pt;}
.y117{bottom:527.030652pt;}
.y25f{bottom:529.147987pt;}
.y29f{bottom:530.473333pt;}
.ya4{bottom:531.993320pt;}
.ycc{bottom:535.524000pt;}
.y5b{bottom:537.542653pt;}
.y46{bottom:537.775987pt;}
.y1a6{bottom:540.857320pt;}
.y1ab{bottom:540.857333pt;}
.y1c9{bottom:540.932000pt;}
.y116{bottom:541.841321pt;}
.y28c{bottom:542.189333pt;}
.y25e{bottom:545.147987pt;}
.y29e{bottom:546.473333pt;}
.ya3{bottom:547.993320pt;}
.y2e1{bottom:551.170680pt;}
.y16{bottom:552.981600pt;}
.y5a{bottom:553.542653pt;}
.y114{bottom:556.651990pt;}
.y30a{bottom:556.857320pt;}
.y1a5{bottom:556.857333pt;}
.y1c8{bottom:556.932000pt;}
.y28b{bottom:558.189333pt;}
.y25d{bottom:561.147987pt;}
.y29d{bottom:562.473333pt;}
.ya2{bottom:563.993320pt;}
.ycb{bottom:567.523987pt;}
.y15{bottom:568.981600pt;}
.y112{bottom:571.462654pt;}
.y2e0{bottom:572.226653pt;}
.y309{bottom:572.857320pt;}
.y1a4{bottom:572.857333pt;}
.y1c7{bottom:572.932000pt;}
.y28a{bottom:574.189333pt;}
.y25c{bottom:577.147987pt;}
.y29c{bottom:578.473333pt;}
.ya1{bottom:579.993320pt;}
.y45{bottom:582.875987pt;}
.yca{bottom:583.523987pt;}
.y14{bottom:584.981600pt;}
.y111{bottom:586.273323pt;}
.y308{bottom:588.857320pt;}
.y1a3{bottom:588.857333pt;}
.y1c6{bottom:588.932000pt;}
.y289{bottom:590.189333pt;}
.y25b{bottom:593.147987pt;}
.y29b{bottom:594.473333pt;}
.ya0{bottom:595.993333pt;}
.y44{bottom:598.875987pt;}
.yc9{bottom:599.523987pt;}
.y10f{bottom:601.750656pt;}
.y307{bottom:604.857320pt;}
.y1a2{bottom:604.857333pt;}
.y1c5{bottom:604.932000pt;}
.y288{bottom:606.189333pt;}
.y25a{bottom:609.147973pt;}
.y2a{bottom:609.333333pt;}
.y29a{bottom:610.473333pt;}
.y7f{bottom:611.320000pt;}
.y9f{bottom:611.993333pt;}
.y43{bottom:614.875987pt;}
.yc8{bottom:615.523987pt;}
.y15f{bottom:616.515987pt;}
.y10d{bottom:616.561322pt;}
.y2df{bottom:617.326653pt;}
.y306{bottom:620.857320pt;}
.y1a1{bottom:620.857333pt;}
.y1c4{bottom:620.932000pt;}
.y17e{bottom:621.815987pt;}
.y287{bottom:622.189333pt;}
.y259{bottom:625.147973pt;}
.y299{bottom:626.473333pt;}
.y29{bottom:626.666667pt;}
.y9e{bottom:627.993333pt;}
.y42{bottom:630.875987pt;}
.yc7{bottom:631.524000pt;}
.y15e{bottom:632.515973pt;}
.y2de{bottom:633.326640pt;}
.y244{bottom:636.857320pt;}
.y1a0{bottom:636.857333pt;}
.y1c3{bottom:636.932000pt;}
.y17d{bottom:637.815987pt;}
.y258{bottom:641.148000pt;}
.y298{bottom:642.473320pt;}
.y9d{bottom:643.993333pt;}
.y10c{bottom:644.571987pt;}
.y41{bottom:646.876000pt;}
.yc6{bottom:647.524000pt;}
.y15d{bottom:648.515973pt;}
.y2dd{bottom:649.326640pt;}
.y243{bottom:652.857320pt;}
.y19f{bottom:652.857333pt;}
.y1c2{bottom:652.932000pt;}
.y17c{bottom:653.815987pt;}
.y286{bottom:654.189333pt;}
.y257{bottom:657.148000pt;}
.y1f6{bottom:658.265320pt;}
.y297{bottom:658.473333pt;}
.y9c{bottom:659.993333pt;}
.y10b{bottom:660.571987pt;}
.y40{bottom:662.876000pt;}
.yc5{bottom:663.524000pt;}
.y15c{bottom:664.516000pt;}
.y2dc{bottom:665.326667pt;}
.y242{bottom:668.857320pt;}
.y19e{bottom:668.857333pt;}
.y1c1{bottom:668.932000pt;}
.y17b{bottom:669.815987pt;}
.y285{bottom:670.189333pt;}
.y256{bottom:673.148000pt;}
.y1f5{bottom:674.265320pt;}
.y296{bottom:674.473333pt;}
.y9b{bottom:675.993333pt;}
.y3f{bottom:678.876000pt;}
.yc4{bottom:679.524000pt;}
.y15b{bottom:680.516000pt;}
.y2db{bottom:681.326667pt;}
.y273{bottom:682.989333pt;}
.y274{bottom:683.242454pt;}
.y263{bottom:683.243299pt;}
.y241{bottom:684.857320pt;}
.y19d{bottom:684.857333pt;}
.y1c0{bottom:684.932000pt;}
.y17a{bottom:685.815987pt;}
.y255{bottom:689.148000pt;}
.y1f4{bottom:690.265320pt;}
.y295{bottom:690.473333pt;}
.y10a{bottom:691.220000pt;}
.y9a{bottom:691.993333pt;}
.y3e{bottom:694.876000pt;}
.yc3{bottom:695.524000pt;}
.y15a{bottom:696.516000pt;}
.y2da{bottom:697.326667pt;}
.y1aa{bottom:700.857320pt;}
.y19c{bottom:700.857333pt;}
.y1bf{bottom:700.932013pt;}
.y254{bottom:705.148000pt;}
.y161{bottom:705.366418pt;}
.y1f3{bottom:706.265320pt;}
.y16f{bottom:706.445175pt;}
.y294{bottom:706.473333pt;}
.y109{bottom:707.220000pt;}
.y99{bottom:707.993333pt;}
.y3d{bottom:710.876000pt;}
.yc2{bottom:711.524000pt;}
.y159{bottom:712.516000pt;}
.y2d9{bottom:713.326667pt;}
.y1a9{bottom:716.857320pt;}
.y19b{bottom:716.857333pt;}
.y1be{bottom:716.932000pt;}
.y1f2{bottom:722.265320pt;}
.y293{bottom:722.473333pt;}
.y98{bottom:723.993333pt;}
.y3c{bottom:726.876000pt;}
.yc1{bottom:727.524000pt;}
.yf8{bottom:728.020000pt;}
.y158{bottom:728.516000pt;}
.ye7{bottom:728.629909pt;}
.y2d8{bottom:729.326667pt;}
.y305{bottom:732.857320pt;}
.y19a{bottom:732.857333pt;}
.y1bd{bottom:732.932000pt;}
.y253{bottom:733.281331pt;}
.y1f1{bottom:738.265320pt;}
.y292{bottom:738.473333pt;}
.y97{bottom:739.993333pt;}
.y3b{bottom:742.876000pt;}
.yc0{bottom:743.524000pt;}
.y157{bottom:744.516000pt;}
.y2d7{bottom:745.326667pt;}
.y304{bottom:748.857320pt;}
.y199{bottom:748.857333pt;}
.y1bc{bottom:748.932000pt;}
.y1f0{bottom:754.265320pt;}
.y252{bottom:754.281331pt;}
.y291{bottom:754.473333pt;}
.y3a{bottom:758.876000pt;}
.ybf{bottom:759.524000pt;}
.y156{bottom:760.516000pt;}
.y96{bottom:761.326667pt;}
.y303{bottom:764.857320pt;}
.y198{bottom:764.857333pt;}
.y1bb{bottom:764.932000pt;}
.y2d6{bottom:767.757333pt;}
.y1ef{bottom:770.265333pt;}
.y290{bottom:770.473333pt;}
.y39{bottom:774.876000pt;}
.y250{bottom:775.281331pt;}
.ybe{bottom:775.524000pt;}
.y25{bottom:778.461200pt;}
.y302{bottom:780.857320pt;}
.y197{bottom:780.857333pt;}
.y1ba{bottom:780.932000pt;}
.y95{bottom:783.757333pt;}
.y1ee{bottom:786.265333pt;}
.y28f{bottom:786.473333pt;}
.y154{bottom:788.649325pt;}
.y38{bottom:790.876000pt;}
.y24f{bottom:796.281326pt;}
.y301{bottom:796.857320pt;}
.ybd{bottom:796.857333pt;}
.y1b9{bottom:796.932000pt;}
.y1ed{bottom:802.265333pt;}
.y28e{bottom:802.473333pt;}
.y33{bottom:804.875987pt;}
.y152{bottom:806.126660pt;}
.y4{bottom:811.465467pt;}
.y2d5{bottom:812.857320pt;}
.y196{bottom:812.857333pt;}
.y1b8{bottom:812.932000pt;}
.y24d{bottom:817.281326pt;}
.y1ec{bottom:818.265333pt;}
.y37{bottom:820.209333pt;}
.y150{bottom:823.603996pt;}
.y94{bottom:828.857320pt;}
.y195{bottom:828.857333pt;}
.y32{bottom:828.875987pt;}
.y1b7{bottom:828.932000pt;}
.y1eb{bottom:834.265333pt;}
.y262{bottom:834.473333pt;}
.y24b{bottom:838.947995pt;}
.y31{bottom:840.875987pt;}
.y3{bottom:840.945067pt;}
.y14e{bottom:841.081327pt;}
.y93{bottom:844.857320pt;}
.y194{bottom:844.857333pt;}
.y1b6{bottom:844.932000pt;}
.y36{bottom:848.867987pt;}
.y1ea{bottom:850.265333pt;}
.y14d{bottom:858.558662pt;}
.y247{bottom:860.614662pt;}
.y92{bottom:860.857320pt;}
.y160{bottom:860.857333pt;}
.y1b5{bottom:860.932000pt;}
.y1e9{bottom:866.265333pt;}
.y35{bottom:872.467987pt;}
.y14c{bottom:876.035995pt;}
.y300{bottom:876.857320pt;}
.y91{bottom:876.857333pt;}
.y1b4{bottom:876.932000pt;}
.y1e8{bottom:882.265333pt;}
.y2ff{bottom:892.857320pt;}
.y90{bottom:892.857333pt;}
.y1b3{bottom:892.932000pt;}
.y14a{bottom:894.179995pt;}
.y34{bottom:896.067987pt;}
.y2{bottom:896.945067pt;}
.y1e7{bottom:898.265347pt;}
.y246{bottom:900.857333pt;}
.y2fe{bottom:908.857320pt;}
.y8f{bottom:908.857333pt;}
.y1b2{bottom:908.932000pt;}
.y1e6{bottom:914.265347pt;}
.y2b{bottom:914.476001pt;}
.y245{bottom:916.857333pt;}
.y2fd{bottom:924.857320pt;}
.y8e{bottom:924.857333pt;}
.y1b1{bottom:924.932000pt;}
.y1e5{bottom:930.265347pt;}
.y2fc{bottom:940.857320pt;}
.y8d{bottom:940.857333pt;}
.y1b0{bottom:946.265333pt;}
.y1e4{bottom:946.265347pt;}
.y2fb{bottom:956.857320pt;}
.y8c{bottom:956.857333pt;}
.y2fa{bottom:972.857320pt;}
.y8b{bottom:972.857333pt;}
.y1af{bottom:978.288000pt;}
.y28{bottom:986.040000pt;}
.y2f9{bottom:988.857320pt;}
.y8a{bottom:988.857333pt;}
.y1ae{bottom:992.936000pt;}
.y26{bottom:999.373333pt;}
.y81{bottom:1004.706667pt;}
.y2f8{bottom:1004.857320pt;}
.y89{bottom:1004.857333pt;}
.y1ad{bottom:1007.584000pt;}
.y80{bottom:1015.373333pt;}
.y2f7{bottom:1020.857320pt;}
.y88{bottom:1020.857333pt;}
.y1ac{bottom:1022.232000pt;}
.y82{bottom:1033.657334pt;}
.ye3{bottom:1082.868240pt;}
.y2d{bottom:1085.513907pt;}
.y86{bottom:1085.891867pt;}
.y7b{bottom:1097.679987pt;}
.h72{height:8.682519pt;}
.h9{height:9.632427pt;}
.h11{height:10.666667pt;}
.h8{height:10.836480pt;}
.h2b{height:12.000000pt;}
.h7{height:12.040533pt;}
.h74{height:13.363029pt;}
.h8e{height:13.605717pt;}
.hc{height:13.846613pt;}
.hf{height:14.666667pt;}
.h22{height:16.429688pt;}
.h67{height:17.026137pt;}
.h75{height:17.443383pt;}
.h63{height:17.467159pt;}
.h3b{height:17.477333pt;}
.h76{height:18.417289pt;}
.h50{height:18.883389pt;}
.h4b{height:20.144000pt;}
.h8c{height:20.177971pt;}
.h79{height:20.469676pt;}
.h68{height:20.843656pt;}
.h37{height:20.879957pt;}
.h47{height:21.449999pt;}
.h62{height:21.925305pt;}
.h6a{height:22.202569pt;}
.h6f{height:22.330556pt;}
.h5c{height:22.437177pt;}
.h80{height:22.458515pt;}
.h83{height:22.458524pt;}
.h57{height:22.559410pt;}
.h66{height:22.905117pt;}
.h54{height:23.098372pt;}
.h60{height:23.439864pt;}
.h81{height:23.462156pt;}
.h85{height:23.462165pt;}
.h59{height:23.567559pt;}
.h7d{height:23.666667pt;}
.h64{height:23.949179pt;}
.h44{height:24.131248pt;}
.h71{height:24.379167pt;}
.h70{height:24.391838pt;}
.h5d{height:24.508301pt;}
.h5e{height:24.561997pt;}
.h8d{height:24.945277pt;}
.h4e{height:25.177852pt;}
.h55{height:25.230529pt;}
.h23{height:25.557292pt;}
.h73{height:25.915091pt;}
.h3c{height:25.958333pt;}
.h8b{height:26.168211pt;}
.h51{height:26.269599pt;}
.h52{height:26.303017pt;}
.h6d{height:26.905935pt;}
.h65{height:27.093791pt;}
.h4f{height:27.501962pt;}
.h77{height:27.593332pt;}
.h5f{height:27.724785pt;}
.h4c{height:27.999500pt;}
.h12{height:28.256000pt;}
.h58{height:28.474116pt;}
.h8f{height:29.002268pt;}
.h78{height:29.600010pt;}
.h7b{height:29.666667pt;}
.h7a{height:29.709333pt;}
.h40{height:29.791667pt;}
.h33{height:30.115322pt;}
.h87{height:30.179293pt;}
.h6c{height:30.973552pt;}
.h36{height:31.461135pt;}
.h7c{height:31.469667pt;}
.h8a{height:31.527965pt;}
.h19{height:31.609375pt;}
.h3e{height:31.632313pt;}
.h18{height:31.974800pt;}
.h2d{height:32.276000pt;}
.h3d{height:32.288000pt;}
.h16{height:32.352760pt;}
.h38{height:32.895198pt;}
.h88{height:32.965074pt;}
.h2c{height:32.965333pt;}
.h30{height:33.375000pt;}
.h42{height:33.515625pt;}
.h31{height:34.998427pt;}
.h84{height:35.167690pt;}
.h1c{height:36.125000pt;}
.h2e{height:37.083333pt;}
.h39{height:37.124120pt;}
.h89{height:37.124133pt;}
.h34{height:37.124136pt;}
.h24{height:38.453333pt;}
.hd{height:38.613333pt;}
.h3a{height:39.313232pt;}
.h35{height:39.313247pt;}
.h1e{height:40.640625pt;}
.h5a{height:40.640678pt;}
.h7e{height:41.637697pt;}
.h1f{height:41.637750pt;}
.h20{height:41.637803pt;}
.h28{height:41.875000pt;}
.h10{height:42.384000pt;}
.h56{height:42.813946pt;}
.ha{height:43.345920pt;}
.h1d{height:44.500000pt;}
.h2f{height:45.021333pt;}
.h1b{height:45.511562pt;}
.h6b{height:47.760453pt;}
.h5{height:49.066667pt;}
.h17{height:49.671875pt;}
.h21{height:49.840000pt;}
.h1a{height:53.770833pt;}
.hb{height:60.202240pt;}
.he{height:68.266667pt;}
.h15{height:72.250000pt;}
.h2{height:85.333333pt;}
.h26{height:89.304688pt;}
.h61{height:129.520398pt;}
.h69{height:130.521052pt;}
.h6e{height:131.275603pt;}
.h82{height:132.004204pt;}
.h7f{height:132.030022pt;}
.h5b{height:132.532479pt;}
.h4d{height:133.833111pt;}
.h53{height:135.181493pt;}
.h29{height:135.386667pt;}
.h14{height:151.457333pt;}
.h3{height:153.600000pt;}
.h32{height:177.027400pt;}
.h86{height:177.403969pt;}
.h4{height:213.333333pt;}
.h6{height:293.309333pt;}
.h2a{height:305.453333pt;}
.h46{height:342.990961pt;}
.h4a{height:342.991754pt;}
.h43{height:343.156131pt;}
.h45{height:347.794353pt;}
.h48{height:347.795146pt;}
.h3f{height:347.795249pt;}
.h41{height:348.541981pt;}
.h49{height:348.965504pt;}
.h27{height:394.640000pt;}
.h25{height:797.527995pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.h13{height:1122.666667pt;}
.w8{width:13.333333pt;}
.w20{width:16.352640pt;}
.w1e{width:16.925760pt;}
.w24{width:18.869333pt;}
.w23{width:22.093440pt;}
.w1b{width:23.273333pt;}
.w1d{width:23.320000pt;}
.w22{width:23.762667pt;}
.w21{width:24.147840pt;}
.w1c{width:24.940000pt;}
.w14{width:26.133333pt;}
.w1f{width:26.298667pt;}
.w2d{width:26.811490pt;}
.w2f{width:27.763042pt;}
.w2e{width:27.847001pt;}
.w36{width:29.866667pt;}
.w13{width:30.600000pt;}
.w16{width:32.600000pt;}
.w15{width:36.600000pt;}
.w3a{width:40.041066pt;}
.w34{width:42.733333pt;}
.w4{width:47.386667pt;}
.w3b{width:48.287071pt;}
.w35{width:49.200000pt;}
.w31{width:49.400000pt;}
.w32{width:49.466667pt;}
.wd{width:49.600000pt;}
.w26{width:54.066667pt;}
.w19{width:54.866667pt;}
.w18{width:55.200000pt;}
.w30{width:57.866667pt;}
.w39{width:58.910994pt;}
.we{width:66.533333pt;}
.w9{width:69.373333pt;}
.w33{width:72.733333pt;}
.w11{width:78.800000pt;}
.w12{width:79.066667pt;}
.w1a{width:79.133333pt;}
.wf{width:85.400000pt;}
.w17{width:85.733333pt;}
.w3{width:104.066667pt;}
.wa{width:115.880000pt;}
.w28{width:156.929824pt;}
.w10{width:159.600000pt;}
.w2a{width:162.271999pt;}
.w37{width:162.466549pt;}
.w2b{width:164.536142pt;}
.w2c{width:165.290990pt;}
.w29{width:166.045704pt;}
.w27{width:170.841638pt;}
.wb{width:222.355389pt;}
.wc{width:222.357117pt;}
.w38{width:222.381184pt;}
.w2{width:223.954667pt;}
.w25{width:283.199987pt;}
.w6{width:331.636440pt;}
.w7{width:781.533301pt;}
.w0{width:793.701333pt;}
.w5{width:793.799967pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x60{left:1.619166pt;}
.x13{left:4.000000pt;}
.x76{left:5.055999pt;}
.x10{left:6.133337pt;}
.x70{left:7.360579pt;}
.x5{left:8.519333pt;}
.x6f{left:9.620891pt;}
.x11{left:10.666667pt;}
.x25{left:12.010220pt;}
.x34{left:13.101332pt;}
.x35{left:14.101334pt;}
.x1c{left:15.847373pt;}
.x72{left:17.034669pt;}
.x14{left:18.666667pt;}
.x5b{left:20.030154pt;}
.x1b{left:21.156810pt;}
.x33{left:23.460002pt;}
.x1a{left:26.466247pt;}
.x78{left:28.257333pt;}
.x36{left:29.149328pt;}
.x37{left:31.092007pt;}
.x38{left:32.270660pt;}
.x19{left:33.545496pt;}
.x2{left:36.128533pt;}
.x3{left:37.073467pt;}
.x20{left:39.870577pt;}
.x68{left:43.293152pt;}
.x61{left:46.704934pt;}
.x69{left:49.895777pt;}
.x7c{left:52.760803pt;}
.x59{left:55.399999pt;}
.xd{left:56.733333pt;}
.x5d{left:57.859213pt;}
.x84{left:60.577554pt;}
.x1f{left:62.158929pt;}
.xb{left:68.066667pt;}
.x65{left:70.736755pt;}
.x80{left:73.914074pt;}
.x4{left:75.757333pt;}
.x88{left:77.227596pt;}
.x6{left:78.913600pt;}
.x28{left:82.185137pt;}
.x1d{left:84.823787pt;}
.x83{left:88.442682pt;}
.x62{left:89.947180pt;}
.x87{left:94.397639pt;}
.x26{left:106.209387pt;}
.x85{left:125.650155pt;}
.x2f{left:128.100001pt;}
.x1e{left:129.475797pt;}
.x79{left:131.071065pt;}
.x21{left:132.525384pt;}
.x5f{left:142.277521pt;}
.x6c{left:144.440811pt;}
.x66{left:147.517613pt;}
.x64{left:149.626803pt;}
.x5c{left:155.056418pt;}
.x2a{left:156.700002pt;}
.x18{left:171.151524pt;}
.x7f{left:174.486904pt;}
.x30{left:180.166667pt;}
.x27{left:181.633484pt;}
.x29{left:182.989084pt;}
.x7{left:185.784667pt;}
.x7e{left:196.213040pt;}
.x82{left:198.095726pt;}
.x22{left:199.138106pt;}
.xe{left:204.200000pt;}
.x7a{left:223.032000pt;}
.x7b{left:225.961345pt;}
.x31{left:238.233332pt;}
.x2b{left:268.833338pt;}
.x81{left:285.404026pt;}
.xc{left:311.141347pt;}
.x8{left:321.669867pt;}
.x5a{left:336.599991pt;}
.x2c{left:352.233343pt;}
.x7d{left:388.427973pt;}
.x23{left:394.117333pt;}
.x71{left:403.133316pt;}
.xf{left:404.466636pt;}
.x63{left:407.395998pt;}
.x24{left:412.453778pt;}
.x8a{left:423.399987pt;}
.x3a{left:429.453316pt;}
.x3b{left:438.743607pt;}
.x3c{left:449.698649pt;}
.x32{left:456.966660pt;}
.x3d{left:458.971566pt;}
.x3e{left:464.200943pt;}
.x3f{left:475.155980pt;}
.x40{left:484.428897pt;}
.x41{left:487.309321pt;}
.x42{left:499.563488pt;}
.x43{left:504.218277pt;}
.x86{left:508.396030pt;}
.x2d{left:509.833318pt;}
.x44{left:515.173314pt;}
.x45{left:524.446231pt;}
.x46{left:527.326645pt;}
.x47{left:539.580812pt;}
.x1{left:541.775467pt;}
.x48{left:544.235611pt;}
.x73{left:551.866653pt;}
.x49{left:555.190648pt;}
.x4a{left:564.463565pt;}
.x6a{left:569.254653pt;}
.x6b{left:571.523997pt;}
.x4b{left:574.565323pt;}
.x5e{left:576.496001pt;}
.x4c{left:584.282615pt;}
.x2e{left:586.633326pt;}
.x4d{left:598.842154pt;}
.x4e{left:603.496943pt;}
.x9{left:609.640000pt;}
.xa{left:611.653333pt;}
.x4f{left:614.451981pt;}
.x16{left:620.480000pt;}
.x74{left:621.933324pt;}
.x50{left:623.724897pt;}
.x51{left:633.826655pt;}
.x52{left:643.543947pt;}
.x53{left:648.198278pt;}
.x54{left:659.153315pt;}
.x75{left:661.999975pt;}
.x89{left:663.451991pt;}
.x15{left:666.986667pt;}
.x55{left:668.426232pt;}
.x56{left:676.473323pt;}
.x6e{left:677.622509pt;}
.x57{left:679.010656pt;}
.x58{left:688.727948pt;}
.x39{left:699.199991pt;}
.x6d{left:704.182092pt;}
.x77{left:708.533320pt;}
.x17{left:722.106627pt;}
.x67{left:736.214680pt;}
.x12{left:775.062634pt;}
}




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