
    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_21b04fe15fc5f94b75072208.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_f6ef9147ed48298093b955f4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_221082ae3043765351d2aca5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e0728145891e287c52444dea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_c47675cd54939779c0a5c37a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_54027cfbecb9234d5e39249d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_820610bc4cb654c70dde479e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_dda5901f87d2ab45f7c89486.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_2ac30cbef06d7db08c16ca56.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c2a06cf2214c50a552515916.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_64d03cb4bbbe272a4f774880.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_57374f2994ac81b8995609a6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_055c86725b727b893d624700.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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_8b83331c1b3e363429ac5c69.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fc5c7a36f46dc028447c145f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;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_84802a396e89da3617d52ea2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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_24301e5a5b895a5deb8eac7e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_902633d6bac142826057caaf.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.311035;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_1a1101b700e9bcf325ac5e97.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;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_c7820c5e18c14db85a7a629e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_41c0f91023e8d984e7923d7e.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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_a1d3c90067ee56e97a98415f.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a2ba9954a200da4aac957327.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;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_7e75f2ac3e24813a28189e11.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;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_f11d075b14deea11a6f854d5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.311035;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_ed10e03d66ca1e9a8e6ab7b0.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_acb02533ed03e2b7ac728956.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284180;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_c5c182d8bb9bc088f9a77e8a.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_c1aef1e8abf045fbd9ede2b6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_670be9df2cec71e31a062f66.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_9ab7053658ae0e4c8340d730.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_e673ca1f78ddf34429392dae.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_49555e715bcb92bdf29625f9.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_3f622875c6470fdf2132dff4.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_3206884e526105a0dc9aaf8b.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.311035;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:ff26;src:url('chunks/assets/font_6ad9efe03d9ed8cc23368ce8.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.284180;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:ff27;src:url('chunks/assets/font_62da1d4ddea5905433974310.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.432129;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:ff28;src:url('chunks/assets/font_950912c959263951f1f8cdc2.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_b79a13d2dd19569679e1bb18.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.284180;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:ff2a;src:url('chunks/assets/font_0629c9dbc4bae8162006875d.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_88f591ad2935966af76397d7.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.311035;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:ff2c;src:url('chunks/assets/font_16d9190b01f391fb59ab2600.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.284180;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:ff2d;src:url('chunks/assets/font_d6875dcd88bfccbb805a7a13.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;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;}
.m79{transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m29{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m22{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m3{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.915000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915000,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(1.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.532500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(3.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.725000,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.000000px;}
.v2{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-28.385778px;}
._2{margin-left:-21.641157px;}
._3{margin-left:-10.615844px;}
._1{width:7.543095px;}
.fc0{color:transparent;}
.fsc{font-size:18.000000px;}
.fsa{font-size:30.000000px;}
.fsd{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs7{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.fse{font-size:126.000000px;}
.fs0{font-size:168.000000px;}
.fs9{font-size:180.000000px;}
.fs8{font-size:204.000000px;}
.y0{bottom:0.000000px;}
.y27f{bottom:50.773500px;}
.y19f{bottom:74.473500px;}
.y42{bottom:81.150000px;}
.y396{bottom:85.198500px;}
.y395{bottom:85.275000px;}
.y397{bottom:85.573500px;}
.y398{bottom:85.650000px;}
.y158{bottom:88.573500px;}
.y349{bottom:89.398500px;}
.y19e{bottom:90.298500px;}
.y98{bottom:90.598500px;}
.ydd{bottom:91.875000px;}
.y41{bottom:97.723500px;}
.y2dc{bottom:98.773500px;}
.y237{bottom:98.923500px;}
.y316{bottom:99.375000px;}
.y10e{bottom:102.448500px;}
.y10d{bottom:102.823500px;}
.y394{bottom:103.275000px;}
.y1f2{bottom:103.423500px;}
.y156{bottom:104.775000px;}
.y97{bottom:105.298500px;}
.y27e{bottom:105.448500px;}
.y157{bottom:106.275000px;}
.y348{bottom:106.650000px;}
.y19d{bottom:107.625000px;}
.ydb{bottom:108.750000px;}
.ydc{bottom:109.500000px;}
.y19c{bottom:109.723500px;}
.y40{bottom:114.298500px;}
.y2db{bottom:115.275000px;}
.y236{bottom:115.500000px;}
.y315{bottom:115.573500px;}
.y3f{bottom:115.650000px;}
.y3e{bottom:115.723500px;}
.y3d{bottom:116.025000px;}
.y2da{bottom:117.448500px;}
.y2d9{bottom:118.198500px;}
.y1ef{bottom:118.500000px;}
.y10c{bottom:118.723500px;}
.y38d{bottom:119.473500px;}
.y10b{bottom:119.698500px;}
.y235{bottom:119.775000px;}
.y38e{bottom:119.848500px;}
.y38f{bottom:120.223500px;}
.y1f0{bottom:120.298500px;}
.y390{bottom:120.525000px;}
.y391{bottom:120.900000px;}
.y27d{bottom:121.275000px;}
.y392{bottom:121.573500px;}
.y393{bottom:121.650000px;}
.y1f1{bottom:122.098500px;}
.y155{bottom:122.400000px;}
.y347{bottom:123.223500px;}
.y346{bottom:123.525000px;}
.y96{bottom:123.673500px;}
.y19b{bottom:124.875000px;}
.y95{bottom:125.098500px;}
.y19a{bottom:126.298500px;}
.yda{bottom:126.375000px;}
.y199{bottom:126.673500px;}
.y3c{bottom:131.848500px;}
.y314{bottom:132.150000px;}
.y2d8{bottom:132.298500px;}
.y313{bottom:132.448500px;}
.y312{bottom:132.823500px;}
.y2d7{bottom:135.073500px;}
.y10a{bottom:135.973500px;}
.y388{bottom:136.348500px;}
.y234{bottom:136.723500px;}
.y389{bottom:137.098500px;}
.y1ee{bottom:137.250000px;}
.y38a{bottom:137.848500px;}
.y93{bottom:138.073500px;}
.y38b{bottom:138.150000px;}
.y27c{bottom:138.223500px;}
.y92{bottom:138.375000px;}
.y94{bottom:138.448500px;}
.y38c{bottom:138.525000px;}
.y27b{bottom:139.275000px;}
.y154{bottom:139.423500px;}
.y91{bottom:139.875000px;}
.y197{bottom:140.323500px;}
.y345{bottom:140.775000px;}
.y198{bottom:141.375000px;}
.y90{bottom:141.598500px;}
.y196{bottom:141.823500px;}
.y8f{bottom:141.973500px;}
.y195{bottom:142.798500px;}
.yd9{bottom:143.698500px;}
.y3b{bottom:148.125000px;}
.y311{bottom:149.098500px;}
.y3a{bottom:149.173500px;}
.y310{bottom:149.400000px;}
.y233{bottom:149.698500px;}
.y30e{bottom:149.775000px;}
.y39{bottom:149.848500px;}
.y30f{bottom:150.073500px;}
.y2d6{bottom:150.973500px;}
.y109{bottom:152.173500px;}
.y107{bottom:152.848500px;}
.y108{bottom:152.923500px;}
.y387{bottom:154.048500px;}
.y152{bottom:154.500000px;}
.y27a{bottom:154.798500px;}
.y8e{bottom:155.698500px;}
.y153{bottom:156.598500px;}
.y343{bottom:157.348500px;}
.y344{bottom:157.723500px;}
.y8d{bottom:158.548500px;}
.y3cf{bottom:159.000000px;}
.y194{bottom:159.823500px;}
.yd8{bottom:160.650000px;}
.y37{bottom:164.250000px;}
.y38{bottom:164.625000px;}
.y232{bottom:165.900000px;}
.y36{bottom:166.125000px;}
.y2d5{bottom:166.423500px;}
.y30c{bottom:166.650000px;}
.y30d{bottom:166.723500px;}
.y231{bottom:168.750000px;}
.y383{bottom:169.798500px;}
.y1ed{bottom:170.025000px;}
.y3ce{bottom:170.098500px;}
.y230{bottom:170.173500px;}
.y14f{bottom:171.073500px;}
.y279{bottom:171.375000px;}
.y150{bottom:171.448500px;}
.y384{bottom:171.673500px;}
.y8c{bottom:172.573500px;}
.y151{bottom:172.875000px;}
.y8b{bottom:172.948500px;}
.y385{bottom:173.098500px;}
.y8a{bottom:173.323500px;}
.y386{bottom:173.473500px;}
.y89{bottom:174.073500px;}
.y342{bottom:174.298500px;}
.y3cd{bottom:174.525000px;}
.y88{bottom:174.823500px;}
.y87{bottom:175.125000px;}
.y193{bottom:175.275000px;}
.yd7{bottom:177.223500px;}
.y35{bottom:181.573500px;}
.y22f{bottom:182.098500px;}
.y34{bottom:182.250000px;}
.y2d4{bottom:182.625000px;}
.y33{bottom:183.298500px;}
.y30b{bottom:183.598500px;}
.y2d3{bottom:184.048500px;}
.y2d2{bottom:184.500000px;}
.y2d1{bottom:184.798500px;}
.y22e{bottom:185.025000px;}
.y2d0{bottom:185.848500px;}
.y22d{bottom:186.750000px;}
.y3cc{bottom:187.048500px;}
.y1ec{bottom:187.650000px;}
.y3cb{bottom:187.798500px;}
.y14d{bottom:187.948500px;}
.y278{bottom:188.625000px;}
.y14e{bottom:190.198500px;}
.y3ca{bottom:190.348500px;}
.y33f{bottom:190.875000px;}
.y340{bottom:191.173500px;}
.y86{bottom:191.698500px;}
.y341{bottom:191.923500px;}
.y192{bottom:192.223500px;}
.y191{bottom:193.198500px;}
.y190{bottom:193.650000px;}
.y3c9{bottom:193.875000px;}
.yd6{bottom:194.473500px;}
.y22b{bottom:198.973500px;}
.y22c{bottom:199.048500px;}
.y22a{bottom:199.348500px;}
.y32{bottom:199.573500px;}
.y30a{bottom:199.798500px;}
.y229{bottom:200.473500px;}
.y309{bottom:200.848500px;}
.y228{bottom:201.150000px;}
.y2cf{bottom:202.423500px;}
.y227{bottom:202.650000px;}
.y226{bottom:203.698500px;}
.y1eb{bottom:204.525000px;}
.y277{bottom:206.250000px;}
.y85{bottom:206.775000px;}
.y33a{bottom:207.375000px;}
.y33c{bottom:207.448500px;}
.y106{bottom:207.598500px;}
.y33b{bottom:207.750000px;}
.y33d{bottom:207.823500px;}
.y33e{bottom:208.875000px;}
.y18f{bottom:209.098500px;}
.yd3{bottom:210.973500px;}
.yd4{bottom:211.348500px;}
.yd5{bottom:211.798500px;}
.y225{bottom:216.000000px;}
.y31{bottom:216.525000px;}
.y307{bottom:217.048500px;}
.y2ce{bottom:217.198500px;}
.y308{bottom:217.423500px;}
.y30{bottom:217.500000px;}
.y224{bottom:217.723500px;}
.y223{bottom:218.400000px;}
.y222{bottom:218.848500px;}
.y221{bottom:220.198500px;}
.y220{bottom:220.275000px;}
.y21f{bottom:220.573500px;}
.y1ea{bottom:221.775000px;}
.y276{bottom:222.525000px;}
.y84{bottom:223.423500px;}
.y275{bottom:223.948500px;}
.y18d{bottom:225.598500px;}
.y18e{bottom:225.673500px;}
.y18c{bottom:226.423500px;}
.y105{bottom:227.400000px;}
.yd2{bottom:228.298500px;}
.y21e{bottom:232.875000px;}
.y21d{bottom:233.173500px;}
.y2cd{bottom:233.400000px;}
.y2f{bottom:234.523500px;}
.y21c{bottom:234.973500px;}
.y381{bottom:235.423500px;}
.y382{bottom:235.798500px;}
.y2cc{bottom:235.875000px;}
.y2cb{bottom:235.948500px;}
.y274{bottom:236.923500px;}
.y273{bottom:237.223500px;}
.y1e9{bottom:238.423500px;}
.y83{bottom:240.000000px;}
.y272{bottom:240.073500px;}
.y18b{bottom:241.125000px;}
.y18a{bottom:241.198500px;}
.y189{bottom:241.500000px;}
.y82{bottom:241.723500px;}
.y188{bottom:241.875000px;}
.y187{bottom:243.298500px;}
.yd0{bottom:244.500000px;}
.yd1{bottom:245.250000px;}
.y104{bottom:247.573500px;}
.y14c{bottom:248.473500px;}
.y21b{bottom:249.448500px;}
.y2e{bottom:249.973500px;}
.y21a{bottom:250.125000px;}
.y2c{bottom:251.023500px;}
.y2d{bottom:251.398500px;}
.y3c4{bottom:251.848500px;}
.y219{bottom:251.923500px;}
.y2ca{bottom:253.198500px;}
.y218{bottom:253.723500px;}
.y1e8{bottom:255.598500px;}
.y271{bottom:255.973500px;}
.y380{bottom:257.323500px;}
.y270{bottom:258.073500px;}
.y81{bottom:258.673500px;}
.y186{bottom:259.875000px;}
.y185{bottom:261.298500px;}
.ycd{bottom:261.375000px;}
.yce{bottom:261.823500px;}
.ycf{bottom:262.198500px;}
.y3c8{bottom:262.273500px;}
.y3c7{bottom:263.698500px;}
.y3c6{bottom:264.523500px;}
.y3c5{bottom:265.048500px;}
.y2c8{bottom:266.098500px;}
.y217{bottom:266.698500px;}
.y2c9{bottom:266.923500px;}
.y149{bottom:267.223500px;}
.y2b{bottom:267.298500px;}
.y103{bottom:267.673500px;}
.y14a{bottom:268.273500px;}
.y2a{bottom:268.648500px;}
.y216{bottom:268.875000px;}
.y14b{bottom:268.948500px;}
.y2c7{bottom:270.073500px;}
.y1e7{bottom:272.173500px;}
.y26f{bottom:273.598500px;}
.y80{bottom:274.198500px;}
.y37d{bottom:276.073500px;}
.y37e{bottom:278.173500px;}
.y339{bottom:279.073500px;}
.y37f{bottom:279.673500px;}
.y215{bottom:284.698500px;}
.y2c6{bottom:285.898500px;}
.y147{bottom:286.948500px;}
.y102{bottom:287.473500px;}
.y214{bottom:287.625000px;}
.y148{bottom:288.750000px;}
.y1e6{bottom:289.500000px;}
.y26e{bottom:290.173500px;}
.y7f{bottom:291.073500px;}
.y306{bottom:292.273500px;}
.y305{bottom:292.348500px;}
.y37c{bottom:297.298500px;}
.y338{bottom:299.250000px;}
.y2c5{bottom:301.125000px;}
.y3c3{bottom:301.198500px;}
.y1e3{bottom:302.773500px;}
.y213{bottom:304.875000px;}
.y1e4{bottom:306.073500px;}
.y7e{bottom:306.148500px;}
.y7d{bottom:306.523500px;}
.y26d{bottom:306.750000px;}
.y7c{bottom:306.898500px;}
.y101{bottom:307.273500px;}
.y7b{bottom:307.573500px;}
.y184{bottom:308.098500px;}
.y145{bottom:308.173500px;}
.y29{bottom:308.250000px;}
.y1e5{bottom:308.923500px;}
.y146{bottom:309.598500px;}
.y304{bottom:312.448500px;}
.y37b{bottom:317.773500px;}
.y2c4{bottom:318.000000px;}
.y212{bottom:318.898500px;}
.y2c3{bottom:319.048500px;}
.y337{bottom:319.348500px;}
.y1e1{bottom:319.723500px;}
.y2c2{bottom:319.798500px;}
.y3c2{bottom:321.000000px;}
.y1e2{bottom:321.898500px;}
.y79{bottom:323.098500px;}
.y7a{bottom:323.398500px;}
.y26c{bottom:323.625000px;}
.y100{bottom:327.148500px;}
.y183{bottom:327.523500px;}
.y182{bottom:327.898500px;}
.y28{bottom:328.798500px;}
.y144{bottom:329.098500px;}
.y27{bottom:329.848500px;}
.y303{bottom:332.625000px;}
.ycc{bottom:334.125000px;}
.y2c1{bottom:334.948500px;}
.y2c0{bottom:335.250000px;}
.y2bf{bottom:335.625000px;}
.y379{bottom:336.898500px;}
.y2be{bottom:337.048500px;}
.y3c1{bottom:338.323500px;}
.y26b{bottom:338.398500px;}
.y1e0{bottom:338.473500px;}
.y26a{bottom:338.773500px;}
.y336{bottom:339.148500px;}
.y78{bottom:340.423500px;}
.y37a{bottom:340.500000px;}
.y269{bottom:340.875000px;}
.yff{bottom:347.250000px;}
.y143{bottom:347.473500px;}
.y181{bottom:348.000000px;}
.y26{bottom:349.648500px;}
.y302{bottom:351.298500px;}
.y301{bottom:351.375000px;}
.y300{bottom:352.500000px;}
.yca{bottom:353.923500px;}
.ycb{bottom:354.298500px;}
.y3c0{bottom:354.823500px;}
.y1dc{bottom:354.973500px;}
.y3bf{bottom:355.573500px;}
.y3be{bottom:356.250000px;}
.y1dd{bottom:356.848500px;}
.y77{bottom:356.923500px;}
.y76{bottom:357.673500px;}
.y75{bottom:358.348500px;}
.y378{bottom:358.500000px;}
.y1de{bottom:358.948500px;}
.y334{bottom:359.023500px;}
.y268{bottom:359.250000px;}
.y3bd{bottom:359.923500px;}
.y1df{bottom:360.000000px;}
.y335{bottom:360.073500px;}
.y3bc{bottom:363.073500px;}
.yfe{bottom:367.048500px;}
.y180{bottom:368.173500px;}
.y25{bottom:368.398500px;}
.y142{bottom:370.500000px;}
.y1db{bottom:371.548500px;}
.y2ff{bottom:372.598500px;}
.y267{bottom:372.898500px;}
.y266{bottom:373.648500px;}
.y73{bottom:373.798500px;}
.y74{bottom:373.875000px;}
.yc9{bottom:374.098500px;}
.y72{bottom:374.625000px;}
.y265{bottom:375.148500px;}
.y211{bottom:375.750000px;}
.y1da{bottom:376.573500px;}
.y377{bottom:378.673500px;}
.y333{bottom:379.500000px;}
.y3bb{bottom:382.500000px;}
.yfd{bottom:387.223500px;}
.y17f{bottom:388.348500px;}
.y24{bottom:388.573500px;}
.y23{bottom:390.000000px;}
.y13f{bottom:390.298500px;}
.y264{bottom:390.898500px;}
.y140{bottom:391.723500px;}
.y71{bottom:391.875000px;}
.y141{bottom:392.098500px;}
.y2fe{bottom:393.073500px;}
.y1d8{bottom:393.523500px;}
.y210{bottom:393.750000px;}
.y1d9{bottom:393.898500px;}
.yc7{bottom:394.273500px;}
.yc8{bottom:394.573500px;}
.y3ba{bottom:395.848500px;}
.y3b9{bottom:396.973500px;}
.y374{bottom:398.398500px;}
.y331{bottom:399.000000px;}
.y332{bottom:399.298500px;}
.y3b8{bottom:400.198500px;}
.y375{bottom:400.273500px;}
.y376{bottom:400.948500px;}
.y1d5{bottom:403.948500px;}
.y1d6{bottom:404.323500px;}
.yfb{bottom:406.723500px;}
.yfc{bottom:407.398500px;}
.y263{bottom:407.548500px;}
.y17e{bottom:407.848500px;}
.y70{bottom:408.000000px;}
.y1d7{bottom:408.298500px;}
.y22{bottom:408.750000px;}
.y13e{bottom:410.098500px;}
.y2bd{bottom:413.023500px;}
.yc5{bottom:414.073500px;}
.y20f{bottom:414.298500px;}
.yc6{bottom:414.375000px;}
.y3b7{bottom:417.073500px;}
.y371{bottom:418.198500px;}
.y330{bottom:419.473500px;}
.y3b6{bottom:420.000000px;}
.y2fd{bottom:420.148500px;}
.y372{bottom:420.375000px;}
.y373{bottom:420.750000px;}
.y3b5{bottom:422.098500px;}
.y1d4{bottom:422.323500px;}
.y262{bottom:424.798500px;}
.y6f{bottom:424.948500px;}
.yfa{bottom:426.823500px;}
.y21{bottom:428.173500px;}
.y17d{bottom:428.698500px;}
.y17c{bottom:429.073500px;}
.y13d{bottom:430.648500px;}
.y2bc{bottom:433.198500px;}
.y2bb{bottom:433.573500px;}
.y20e{bottom:433.723500px;}
.yc4{bottom:434.250000px;}
.y2ba{bottom:434.625000px;}
.y3b4{bottom:438.000000px;}
.y370{bottom:438.750000px;}
.y32f{bottom:439.273500px;}
.y6e{bottom:440.098500px;}
.y1d3{bottom:441.073500px;}
.y261{bottom:441.375000px;}
.y3b3{bottom:443.023500px;}
.y3b2{bottom:443.398500px;}
.yf9{bottom:447.000000px;}
.y17b{bottom:448.500000px;}
.y20{bottom:448.648500px;}
.y138{bottom:450.375000px;}
.y139{bottom:450.750000px;}
.y13a{bottom:451.125000px;}
.y13b{bottom:451.875000px;}
.y13c{bottom:452.173500px;}
.y20d{bottom:453.898500px;}
.y2b9{bottom:454.048500px;}
.y2b8{bottom:455.098500px;}
.y2fc{bottom:456.073500px;}
.y6d{bottom:456.673500px;}
.y6c{bottom:457.723500px;}
.y1d2{bottom:458.023500px;}
.y260{bottom:458.323500px;}
.y36f{bottom:458.923500px;}
.y32e{bottom:459.375000px;}
.yf8{bottom:466.798500px;}
.yc3{bottom:467.323500px;}
.y17a{bottom:468.298500px;}
.y1f{bottom:468.448500px;}
.y3b1{bottom:468.598500px;}
.y1e{bottom:469.198500px;}
.y179{bottom:469.348500px;}
.y1d{bottom:470.250000px;}
.y137{bottom:470.923500px;}
.y1d0{bottom:471.673500px;}
.y2b7{bottom:473.173500px;}
.y6b{bottom:473.625000px;}
.y2b6{bottom:473.848500px;}
.y20c{bottom:474.073500px;}
.y6a{bottom:474.298500px;}
.y2b5{bottom:474.598500px;}
.y25f{bottom:475.198500px;}
.y1d1{bottom:475.648500px;}
.y36a{bottom:477.973500px;}
.y36b{bottom:478.723500px;}
.y36c{bottom:479.098500px;}
.y36d{bottom:479.773500px;}
.y36e{bottom:480.898500px;}
.yf7{bottom:487.273500px;}
.y1c{bottom:488.698500px;}
.y178{bottom:489.148500px;}
.y69{bottom:490.875000px;}
.y136{bottom:491.098500px;}
.y2fb{bottom:491.698500px;}
.y25e{bottom:491.773500px;}
.y2b4{bottom:495.448500px;}
.y32d{bottom:495.750000px;}
.y20b{bottom:496.348500px;}
.y369{bottom:499.273500px;}
.yc2{bottom:501.898500px;}
.y3b0{bottom:502.798500px;}
.yf6{bottom:506.698500px;}
.y68{bottom:507.750000px;}
.y67{bottom:508.198500px;}
.y177{bottom:508.273500px;}
.y2fa{bottom:510.448500px;}
.y135{bottom:510.598500px;}
.y25d{bottom:511.198500px;}
.y2b3{bottom:513.823500px;}
.y20a{bottom:514.348500px;}
.y2b2{bottom:514.573500px;}
.y1b{bottom:517.500000px;}
.y368{bottom:519.375000px;}
.ybf{bottom:521.698500px;}
.yc0{bottom:522.000000px;}
.yc1{bottom:522.375000px;}
.y66{bottom:524.398500px;}
.y25c{bottom:525.298500px;}
.y3af{bottom:526.500000px;}
.yf5{bottom:526.875000px;}
.y25b{bottom:527.023500px;}
.y25a{bottom:527.773500px;}
.y176{bottom:529.198500px;}
.y2f9{bottom:530.625000px;}
.y134{bottom:531.073500px;}
.y2b1{bottom:533.250000px;}
.y2b0{bottom:533.625000px;}
.y2af{bottom:534.000000px;}
.y209{bottom:534.223500px;}
.y2ae{bottom:534.375000px;}
.y2ad{bottom:535.048500px;}
.y364{bottom:538.500000px;}
.y365{bottom:538.798500px;}
.y366{bottom:539.250000px;}
.y32c{bottom:539.398500px;}
.y65{bottom:539.848500px;}
.y64{bottom:540.148500px;}
.y63{bottom:540.223500px;}
.y367{bottom:540.673500px;}
.ybd{bottom:541.875000px;}
.ybe{bottom:542.173500px;}
.y259{bottom:542.923500px;}
.y3ae{bottom:543.148500px;}
.yf4{bottom:547.048500px;}
.y175{bottom:548.923500px;}
.y2f8{bottom:550.048500px;}
.y133{bottom:550.500000px;}
.y2f7{bottom:551.473500px;}
.y1a{bottom:552.673500px;}
.y2ac{bottom:554.173500px;}
.y208{bottom:554.698500px;}
.y62{bottom:556.723500px;}
.y360{bottom:558.673500px;}
.y361{bottom:558.973500px;}
.y3ad{bottom:559.648500px;}
.y362{bottom:559.723500px;}
.y258{bottom:559.798500px;}
.y32b{bottom:560.250000px;}
.y1ce{bottom:560.923500px;}
.y363{bottom:561.148500px;}
.ybb{bottom:561.973500px;}
.ybc{bottom:562.348500px;}
.y3ac{bottom:563.250000px;}
.y1cf{bottom:563.848500px;}
.y3ab{bottom:566.473500px;}
.yf3{bottom:566.848500px;}
.y174{bottom:568.723500px;}
.y12f{bottom:570.673500px;}
.y2f6{bottom:570.898500px;}
.y130{bottom:570.973500px;}
.y131{bottom:571.723500px;}
.y132{bottom:572.098500px;}
.y61{bottom:573.673500px;}
.y60{bottom:573.973500px;}
.y2ab{bottom:574.273500px;}
.y207{bottom:574.875000px;}
.y35f{bottom:579.523500px;}
.y32a{bottom:580.048500px;}
.y1cb{bottom:581.473500px;}
.yba{bottom:581.773500px;}
.yb9{bottom:582.148500px;}
.yb8{bottom:582.223500px;}
.yb7{bottom:582.523500px;}
.y1cc{bottom:584.700000px;}
.y19{bottom:585.075000px;}
.y3aa{bottom:585.298500px;}
.yf2{bottom:587.023500px;}
.y1cd{bottom:587.548500px;}
.y173{bottom:588.898500px;}
.y171{bottom:589.200000px;}
.y172{bottom:589.273500px;}
.y2f5{bottom:590.098500px;}
.y5e{bottom:590.173500px;}
.y5f{bottom:590.250000px;}
.y5d{bottom:590.625000px;}
.y12e{bottom:590.773500px;}
.y2f4{bottom:591.825000px;}
.y2aa{bottom:594.825000px;}
.y2a9{bottom:595.575000px;}
.y206{bottom:596.098500px;}
.y35e{bottom:599.700000px;}
.y329{bottom:600.148500px;}
.y18{bottom:600.223500px;}
.y1c8{bottom:600.598500px;}
.yb6{bottom:601.273500px;}
.yb5{bottom:601.950000px;}
.yb4{bottom:602.325000px;}
.y1c9{bottom:603.375000px;}
.y3a9{bottom:603.598500px;}
.y1ca{bottom:605.250000px;}
.y5c{bottom:607.125000px;}
.yf1{bottom:607.200000px;}
.y170{bottom:609.375000px;}
.y12a{bottom:610.575000px;}
.y12b{bottom:610.950000px;}
.y2f3{bottom:611.250000px;}
.y12c{bottom:611.700000px;}
.y12d{bottom:612.000000px;}
.y2a8{bottom:614.250000px;}
.y2a7{bottom:614.548500px;}
.y2a6{bottom:614.625000px;}
.y2a5{bottom:615.000000px;}
.y205{bottom:615.148500px;}
.y35d{bottom:619.798500px;}
.y1c3{bottom:620.325000px;}
.y1c4{bottom:621.000000px;}
.y1c5{bottom:622.125000px;}
.yb3{bottom:622.200000px;}
.y1c6{bottom:623.625000px;}
.y3a8{bottom:623.698500px;}
.y5b{bottom:624.073500px;}
.y1c7{bottom:625.798500px;}
.yf0{bottom:627.000000px;}
.y16f{bottom:628.875000px;}
.y2f2{bottom:630.375000px;}
.y128{bottom:630.750000px;}
.y127{bottom:631.125000px;}
.y129{bottom:631.500000px;}
.y2a4{bottom:634.423500px;}
.y204{bottom:635.323500px;}
.y257{bottom:639.000000px;}
.y35c{bottom:639.673500px;}
.y327{bottom:639.750000px;}
.y5a{bottom:640.650000px;}
.y328{bottom:640.798500px;}
.y59{bottom:640.948500px;}
.y1be{bottom:641.173500px;}
.y58{bottom:641.323500px;}
.yb2{bottom:642.298500px;}
.y3a7{bottom:642.525000px;}
.y1bf{bottom:642.598500px;}
.y256{bottom:643.650000px;}
.y1c0{bottom:644.775000px;}
.y3a6{bottom:646.798500px;}
.y1c1{bottom:646.948500px;}
.yef{bottom:647.098500px;}
.y1c2{bottom:647.323500px;}
.y16e{bottom:648.298500px;}
.y16d{bottom:648.973500px;}
.y2f1{bottom:650.173500px;}
.y124{bottom:650.923500px;}
.y125{bottom:651.298500px;}
.y17{bottom:651.375000px;}
.y126{bottom:651.673500px;}
.y16{bottom:651.973500px;}
.y15{bottom:652.048500px;}
.y14{bottom:653.473500px;}
.y2a3{bottom:654.900000px;}
.y203{bottom:655.125000px;}
.y57{bottom:657.525000px;}
.y359{bottom:659.775000px;}
.y326{bottom:660.598500px;}
.y35a{bottom:660.900000px;}
.y35b{bottom:661.275000px;}
.y1ba{bottom:661.348500px;}
.yb1{bottom:662.098500px;}
.y255{bottom:662.400000px;}
.y1bb{bottom:662.473500px;}
.y254{bottom:663.073500px;}
.y1bc{bottom:665.025000px;}
.y3a5{bottom:665.173500px;}
.y1bd{bottom:667.198500px;}
.yee{bottom:667.275000px;}
.y16c{bottom:669.150000px;}
.y2f0{bottom:669.973500px;}
.y122{bottom:671.098500px;}
.y123{bottom:671.848500px;}
.y2ef{bottom:672.448500px;}
.y2a2{bottom:674.025000px;}
.y56{bottom:674.098500px;}
.y2a1{bottom:674.400000px;}
.y2a0{bottom:674.775000px;}
.y202{bottom:675.298500px;}
.y358{bottom:679.573500px;}
.y324{bottom:679.723500px;}
.y325{bottom:680.775000px;}
.y253{bottom:681.823500px;}
.yb0{bottom:681.900000px;}
.yaf{bottom:682.275000px;}
.yae{bottom:682.573500px;}
.y1b8{bottom:683.698500px;}
.y3a4{bottom:683.848500px;}
.y1b9{bottom:685.500000px;}
.yed{bottom:687.150000px;}
.y16b{bottom:687.223500px;}
.y16a{bottom:688.573500px;}
.y169{bottom:688.948500px;}
.y120{bottom:691.198500px;}
.y121{bottom:691.573500px;}
.y2ee{bottom:692.250000px;}
.y29f{bottom:694.500000px;}
.y29e{bottom:694.875000px;}
.y201{bottom:695.098500px;}
.y29d{bottom:695.250000px;}
.y29c{bottom:695.625000px;}
.y357{bottom:700.125000px;}
.y323{bottom:700.573500px;}
.y252{bottom:701.625000px;}
.yad{bottom:702.000000px;}
.yac{bottom:702.448500px;}
.yab{bottom:702.750000px;}
.y3a3{bottom:703.275000px;}
.y1b7{bottom:704.173500px;}
.y55{bottom:705.073500px;}
.y54{bottom:705.375000px;}
.yeb{bottom:706.875000px;}
.yec{bottom:708.298500px;}
.y168{bottom:709.125000px;}
.y2ed{bottom:709.500000px;}
.y2ec{bottom:709.875000px;}
.y11f{bottom:711.073500px;}
.y2ea{bottom:711.673500px;}
.y2eb{bottom:711.750000px;}
.y2e9{bottom:712.048500px;}
.y29b{bottom:714.000000px;}
.y29a{bottom:714.750000px;}
.y299{bottom:715.125000px;}
.y298{bottom:715.423500px;}
.y251{bottom:717.073500px;}
.y200{bottom:717.375000px;}
.y250{bottom:718.198500px;}
.y356{bottom:720.000000px;}
.y24f{bottom:720.375000px;}
.y1b6{bottom:724.348500px;}
.y53{bottom:724.798500px;}
.y52{bottom:725.173500px;}
.ye9{bottom:725.625000px;}
.yea{bottom:727.048500px;}
.y167{bottom:728.923500px;}
.y2e8{bottom:731.098500px;}
.y11d{bottom:731.250000px;}
.y11e{bottom:731.548500px;}
.y297{bottom:733.423500px;}
.y296{bottom:734.098500px;}
.y3a2{bottom:734.323500px;}
.yaa{bottom:735.525000px;}
.y1ff{bottom:735.750000px;}
.ya9{bottom:735.900000px;}
.y24e{bottom:737.625000px;}
.y24d{bottom:739.048500px;}
.y24c{bottom:740.473500px;}
.y322{bottom:740.548500px;}
.y1b0{bottom:741.298500px;}
.y1b1{bottom:741.973500px;}
.y1b2{bottom:742.348500px;}
.y1b3{bottom:743.400000px;}
.y1b4{bottom:744.525000px;}
.y13{bottom:744.598500px;}
.y51{bottom:744.973500px;}
.y11{bottom:745.348500px;}
.y10{bottom:745.723500px;}
.ye8{bottom:746.473500px;}
.y1b5{bottom:746.698500px;}
.yf{bottom:746.775000px;}
.yd{bottom:748.198500px;}
.yc{bottom:748.948500px;}
.y166{bottom:749.098500px;}
.y2e7{bottom:749.848500px;}
.y2e6{bottom:750.598500px;}
.y11c{bottom:751.423500px;}
.y2e5{bottom:751.723500px;}
.y295{bottom:751.798500px;}
.y294{bottom:753.598500px;}
.y1fe{bottom:756.298500px;}
.y24b{bottom:757.125000px;}
.y12{bottom:757.423500px;}
.y24a{bottom:758.173500px;}
.y249{bottom:759.598500px;}
.y355{bottom:759.823500px;}
.y354{bottom:759.900000px;}
.ye{bottom:760.125000px;}
.y248{bottom:760.348500px;}
.y247{bottom:761.400000px;}
.y246{bottom:761.698500px;}
.y1af{bottom:764.323500px;}
.y50{bottom:765.223500px;}
.ye6{bottom:765.598500px;}
.ye7{bottom:767.400000px;}
.y3a1{bottom:768.448500px;}
.y165{bottom:768.900000px;}
.y164{bottom:769.573500px;}
.ya8{bottom:770.098500px;}
.y2e4{bottom:771.073500px;}
.y11b{bottom:771.525000px;}
.y293{bottom:772.723500px;}
.y292{bottom:773.698500px;}
.y1fd{bottom:775.425000px;}
.y245{bottom:776.848500px;}
.y244{bottom:777.973500px;}
.y243{bottom:779.400000px;}
.y352{bottom:779.698500px;}
.y321{bottom:780.150000px;}
.y242{bottom:780.900000px;}
.y353{bottom:781.125000px;}
.y1ad{bottom:781.573500px;}
.y1ae{bottom:784.500000px;}
.y4f{bottom:785.698500px;}
.ye5{bottom:786.448500px;}
.y3a0{bottom:787.875000px;}
.ya7{bottom:789.525000px;}
.ya6{bottom:789.900000px;}
.y2e3{bottom:791.250000px;}
.y11a{bottom:791.698500px;}
.y291{bottom:792.150000px;}
.y290{bottom:792.823500px;}
.y28f{bottom:793.573500px;}
.y163{bottom:795.900000px;}
.y162{bottom:796.275000px;}
.y241{bottom:797.775000px;}
.yb{bottom:798.598500px;}
.y240{bottom:799.198500px;}
.ya{bottom:799.348500px;}
.y23f{bottom:799.948500px;}
.y351{bottom:800.250000px;}
.y320{bottom:800.323500px;}
.y23e{bottom:801.000000px;}
.y23d{bottom:801.300000px;}
.y1ac{bottom:804.300000px;}
.y4e{bottom:805.500000px;}
.ye4{bottom:807.300000px;}
.y39f{bottom:808.050000px;}
.ya5{bottom:809.698500px;}
.ya4{bottom:810.000000px;}
.y2e2{bottom:811.050000px;}
.y117{bottom:811.198500px;}
.y118{bottom:811.500000px;}
.y119{bottom:811.800000px;}
.y28e{bottom:812.250000px;}
.y39e{bottom:812.400000px;}
.y28d{bottom:813.375000px;}
.y28c{bottom:813.675000px;}
.y28b{bottom:814.050000px;}
.y1fc{bottom:815.698500px;}
.y31f{bottom:820.125000px;}
.y350{bottom:820.348500px;}
.y9{bottom:821.323500px;}
.y8{bottom:821.698500px;}
.y7{bottom:822.375000px;}
.y6{bottom:823.425000px;}
.y1a9{bottom:824.098500px;}
.y4d{bottom:824.550000px;}
.y4c{bottom:825.300000px;}
.y4b{bottom:825.675000px;}
.y4a{bottom:826.050000px;}
.ye3{bottom:827.175000px;}
.y1aa{bottom:827.250000px;}
.y1ab{bottom:827.698500px;}
.y39d{bottom:828.223500px;}
.ya3{bottom:829.125000px;}
.y161{bottom:829.723500px;}
.y2e1{bottom:831.223500px;}
.y115{bottom:831.598500px;}
.y116{bottom:831.973500px;}
.y28a{bottom:832.425000px;}
.y289{bottom:832.800000px;}
.y288{bottom:833.175000px;}
.y287{bottom:833.473500px;}
.y286{bottom:833.550000px;}
.y1fb{bottom:835.875000px;}
.y31d{bottom:839.550000px;}
.y31e{bottom:840.300000px;}
.y34f{bottom:840.525000px;}
.y49{bottom:840.750000px;}
.y48{bottom:840.823500px;}
.y1a8{bottom:844.198500px;}
.y47{bottom:845.473500px;}
.ye2{bottom:846.973500px;}
.y39c{bottom:848.400000px;}
.ya2{bottom:848.925000px;}
.ya1{bottom:849.300000px;}
.y160{bottom:849.598500px;}
.y114{bottom:851.473500px;}
.y23c{bottom:851.775000px;}
.y5{bottom:852.300000px;}
.y4{bottom:852.973500px;}
.y285{bottom:853.650000px;}
.y1fa{bottom:855.675000px;}
.y3{bottom:855.900000px;}
.y1f9{bottom:859.275000px;}
.y2e0{bottom:859.348500px;}
.y31a{bottom:860.098500px;}
.y34d{bottom:860.323500px;}
.y34e{bottom:860.698500px;}
.y31c{bottom:860.848500px;}
.y31b{bottom:861.150000px;}
.y1a7{bottom:864.073500px;}
.y46{bottom:865.198500px;}
.ye1{bottom:867.448500px;}
.y39b{bottom:867.823500px;}
.ya0{bottom:869.098500px;}
.y9f{bottom:869.473500px;}
.y15e{bottom:869.698500px;}
.y9e{bottom:869.775000px;}
.y15f{bottom:870.000000px;}
.y111{bottom:871.573500px;}
.y112{bottom:871.650000px;}
.y113{bottom:871.948500px;}
.y284{bottom:873.448500px;}
.y1f8{bottom:875.775000px;}
.y319{bottom:880.198500px;}
.y34c{bottom:880.500000px;}
.y1a2{bottom:882.375000px;}
.y1a3{bottom:882.750000px;}
.y1a4{bottom:883.198500px;}
.y1a5{bottom:884.175000px;}
.y45{bottom:885.375000px;}
.y1a6{bottom:886.348500px;}
.ye0{bottom:887.250000px;}
.y9d{bottom:888.900000px;}
.y15d{bottom:889.500000px;}
.y15c{bottom:889.800000px;}
.y2{bottom:890.400000px;}
.y283{bottom:893.323500px;}
.y1f7{bottom:895.275000px;}
.y2df{bottom:896.025000px;}
.y39a{bottom:897.375000px;}
.y318{bottom:900.000000px;}
.y34b{bottom:900.675000px;}
.y23b{bottom:902.175000px;}
.y110{bottom:902.250000px;}
.y23a{bottom:903.223500px;}
.y44{bottom:905.550000px;}
.y9c{bottom:908.698500px;}
.y9b{bottom:909.073500px;}
.y15b{bottom:909.675000px;}
.y9a{bottom:909.750000px;}
.y15a{bottom:910.050000px;}
.ydf{bottom:912.823500px;}
.y1f6{bottom:913.275000px;}
.y282{bottom:913.800000px;}
.y281{bottom:914.175000px;}
.y1f5{bottom:914.323500px;}
.y2de{bottom:914.400000px;}
.y1f4{bottom:916.875000px;}
.y1{bottom:917.025000px;}
.y1a1{bottom:921.300000px;}
.y399{bottom:932.250000px;}
.y10f{bottom:935.698500px;}
.y317{bottom:937.125000px;}
.y34a{bottom:938.098500px;}
.y43{bottom:939.750000px;}
.y99{bottom:942.900000px;}
.y159{bottom:944.250000px;}
.y280{bottom:948.000000px;}
.yde{bottom:948.150000px;}
.y1f3{bottom:949.650000px;}
.y2dd{bottom:952.198500px;}
.y239{bottom:954.750000px;}
.y238{bottom:955.125000px;}
.y1a0{bottom:955.500000px;}
.h14{height:17.666016px;}
.h15{height:19.206000px;}
.hf{height:30.234375px;}
.h21{height:41.200195px;}
.h11{height:47.085938px;}
.h12{height:47.109375px;}
.h1f{height:50.062500px;}
.h18{height:52.971680px;}
.h2{height:52.998047px;}
.h17{height:54.421875px;}
.he{height:56.214844px;}
.h7{height:56.320312px;}
.h1b{height:58.857422px;}
.h8{height:58.886719px;}
.h9{height:60.468750px;}
.h26{height:64.743164px;}
.h6{height:64.775391px;}
.ha{height:66.515625px;}
.h28{height:68.835938px;}
.h25{height:69.164062px;}
.h1d{height:70.628906px;}
.h5{height:70.664062px;}
.h1a{height:72.562500px;}
.h10{height:76.514648px;}
.h3{height:76.552734px;}
.h23{height:78.609375px;}
.h2b{height:81.351562px;}
.h16{height:88.330078px;}
.hb{height:90.703125px;}
.h4{height:94.218750px;}
.h27{height:123.662109px;}
.h1{height:169.312500px;}
.hd{height:176.660156px;}
.hc{height:200.214844px;}
.h13{height:994.500000px;}
.h0{height:1002.000000px;}
.h2a{height:1005.000000px;}
.h29{height:1006.500000px;}
.h1c{height:1014.000000px;}
.h1e{height:1015.500000px;}
.h19{height:1018.500000px;}
.h22{height:1026.000000px;}
.h20{height:1027.500000px;}
.h24{height:1029.000000px;}
.w1{width:649.500000px;}
.w7{width:652.500000px;}
.w6{width:663.000000px;}
.w0{width:666.000000px;}
.w9{width:667.500000px;}
.w2{width:669.000000px;}
.w8{width:675.000000px;}
.w3{width:679.500000px;}
.w4{width:685.500000px;}
.w5{width:693.000000px;}
.x0{left:0.000000px;}
.x64{left:52.200000px;}
.x3{left:54.000000px;}
.x1f{left:55.425000px;}
.x1b{left:56.848500px;}
.x24{left:57.975000px;}
.x2d{left:59.025000px;}
.xc{left:60.450000px;}
.xe5{left:63.750000px;}
.x5b{left:67.350000px;}
.x61{left:68.400000px;}
.x50{left:69.450000px;}
.x45{left:70.575000px;}
.x3e{left:72.000000px;}
.x3a{left:73.050000px;}
.x34{left:74.175000px;}
.xf5{left:75.600000px;}
.x73{left:77.400000px;}
.x86{left:78.825000px;}
.x6d{left:80.625000px;}
.x66{left:81.750000px;}
.x20{left:83.175000px;}
.x1c{left:84.225000px;}
.x31{left:85.350000px;}
.x81{left:87.150000px;}
.x14{left:88.575000px;}
.xad{left:90.000000px;}
.x82{left:91.050000px;}
.x4c{left:92.850000px;}
.x87{left:94.350000px;}
.x4f{left:95.775000px;}
.x46{left:96.823500px;}
.xa2{left:98.250000px;}
.x41{left:99.750000px;}
.x36{left:101.175000px;}
.x33{left:102.600000px;}
.xf4{left:103.650000px;}
.xf6{left:104.775000px;}
.x70{left:106.198500px;}
.xa9{left:107.250000px;}
.x21{left:108.375000px;}
.x8a{left:109.425000px;}
.x23{left:111.225000px;}
.xd{left:112.350000px;}
.x6e{left:113.400000px;}
.x8d{left:114.823500px;}
.x25{left:115.950000px;}
.xa4{left:117.750000px;}
.x3b{left:118.800000px;}
.xf1{left:119.850000px;}
.x56{left:121.650000px;}
.x49{left:123.150000px;}
.x10c{left:124.200000px;}
.x42{left:125.250000px;}
.xce{left:126.375000px;}
.x102{left:127.425000px;}
.x77{left:128.550000px;}
.x6{left:129.600000px;}
.xdc{left:132.450000px;}
.x8b{left:134.625000px;}
.x22{left:136.050000px;}
.xb1{left:137.850000px;}
.xa5{left:138.975000px;}
.x72{left:140.775000px;}
.x85{left:142.200000px;}
.x3c{left:144.375000px;}
.xac{left:145.800000px;}
.xbd{left:147.975000px;}
.x57{left:149.025000px;}
.x18{left:151.575000px;}
.xed{left:153.000000px;}
.x71{left:154.800000px;}
.x43{left:159.150000px;}
.x75{left:160.200000px;}
.x2e{left:162.375000px;}
.xf7{left:163.800000px;}
.x6f{left:165.600000px;}
.xae{left:166.650000px;}
.xf8{left:168.450000px;}
.x44{left:170.625000px;}
.xf3{left:172.425000px;}
.x10b{left:176.400000px;}
.xfb{left:177.450000px;}
.x2f{left:181.050000px;}
.x4d{left:183.975000px;}
.x115{left:185.775000px;}
.x58{left:186.825000px;}
.x4{left:189.000000px;}
.x88{left:194.023500px;}
.xa8{left:195.450000px;}
.x89{left:197.250000px;}
.x54{left:199.425000px;}
.xe6{left:202.648500px;}
.x4e{left:204.148500px;}
.x35{left:205.200000px;}
.xc1{left:207.375000px;}
.x1{left:210.600000px;}
.xb7{left:212.398500px;}
.xe{left:213.825000px;}
.xe1{left:214.950000px;}
.xeb{left:216.375000px;}
.xa{left:218.175000px;}
.x101{left:220.350000px;}
.x79{left:221.773500px;}
.x30{left:223.950000px;}
.xec{left:225.000000px;}
.x10f{left:226.800000px;}
.xd3{left:228.600000px;}
.x26{left:232.200000px;}
.xd9{left:237.975000px;}
.xd4{left:239.775000px;}
.xbe{left:240.825000px;}
.xf{left:243.750000px;}
.x37{left:245.850000px;}
.x74{left:248.025000px;}
.xd6{left:249.450000px;}
.x7{left:250.950000px;}
.x59{left:252.000000px;}
.x1d{left:255.225000px;}
.x2b{left:256.350000px;}
.x110{left:257.400000px;}
.xcf{left:259.575000px;}
.x55{left:261.375000px;}
.x9a{left:265.650000px;}
.xfc{left:268.200000px;}
.x52{left:270.375000px;}
.x1a{left:272.175000px;}
.x8{left:273.225000px;}
.xca{left:277.575000px;}
.x62{left:279.375000px;}
.x2c{left:281.175000px;}
.xa3{left:282.225000px;}
.xde{left:284.775000px;}
.x5a{left:285.825000px;}
.x2{left:288.375000px;}
.x15{left:290.175000px;}
.x19{left:291.225000px;}
.xbf{left:292.350000px;}
.xd5{left:294.450000px;}
.x1e{left:295.575000px;}
.xdf{left:297.750000px;}
.x32{left:298.800000px;}
.x63{left:302.025000px;}
.x116{left:303.450000px;}
.x7a{left:304.575000px;}
.x67{left:306.375000px;}
.xc8{left:309.225000px;}
.x84{left:310.650000px;}
.x16{left:312.450000px;}
.x118{left:313.575000px;}
.x40{left:315.000000px;}
.x7d{left:316.800000px;}
.x83{left:318.600000px;}
.xee{left:319.650000px;}
.xb{left:320.775000px;}
.x65{left:322.575000px;}
.xd8{left:323.625000px;}
.xd0{left:327.975000px;}
.xda{left:331.950000px;}
.xd7{left:333.375000px;}
.xc7{left:335.175000px;}
.x68{left:341.250000px;}
.x47{left:343.050000px;}
.x9c{left:345.600000px;}
.x8c{left:346.650000px;}
.x38{left:350.250000px;}
.xb8{left:351.750000px;}
.x48{left:354.600000px;}
.xc0{left:356.775000px;}
.x7e{left:357.825000px;}
.xc3{left:359.250000px;}
.x109{left:361.425000px;}
.xe2{left:362.550000px;}
.x51{left:366.150000px;}
.x10{left:369.375000px;}
.x95{left:372.225000px;}
.xf9{left:375.450000px;}
.x111{left:380.175000px;}
.xb9{left:384.825000px;}
.xe3{left:388.423500px;}
.x9{left:391.650000px;}
.xa0{left:395.625000px;}
.x5{left:397.048500px;}
.x27{left:399.225000px;}
.x106{left:401.400000px;}
.x3d{left:402.450000px;}
.x5c{left:403.950000px;}
.xfa{left:407.173500px;}
.x11{left:408.600000px;}
.x69{left:410.025000px;}
.x28{left:411.150000px;}
.x5d{left:415.798500px;}
.x107{left:419.400000px;}
.x7b{left:420.825000px;}
.xa6{left:421.950000px;}
.x10d{left:423.000000px;}
.xdd{left:424.048500px;}
.xe7{left:426.225000px;}
.xa7{left:427.350000px;}
.xfd{left:428.400000px;}
.x11a{left:429.825000px;}
.x7f{left:432.000000px;}
.x29{left:433.798500px;}
.x8e{left:435.225000px;}
.x6b{left:436.650000px;}
.x103{left:437.775000px;}
.xef{left:440.250000px;}
.x17{left:442.048500px;}
.x99{left:443.173500px;}
.x119{left:444.600000px;}
.x2a{left:445.650000px;}
.xb5{left:447.450000px;}
.xf0{left:449.250000px;}
.x112{left:451.423500px;}
.x10a{left:453.975000px;}
.xb6{left:455.400000px;}
.x117{left:456.825000px;}
.xe8{left:458.250000px;}
.x8f{left:460.800000px;}
.x6a{left:462.600000px;}
.xa1{left:465.825000px;}
.xea{left:467.250000px;}
.x10e{left:469.050000px;}
.x108{left:470.550000px;}
.xfe{left:471.600000px;}
.x9e{left:474.825000px;}
.x80{left:478.050000px;}
.x3f{left:480.975000px;}
.x4a{left:484.200000px;}
.x90{left:486.750000px;}
.x113{left:487.800000px;}
.x104{left:489.975000px;}
.x94{left:492.150000px;}
.xb2{left:493.200000px;}
.xe9{left:495.000000px;}
.x4b{left:496.050000px;}
.x9b{left:498.975000px;}
.x53{left:500.025000px;}
.x12{left:502.575000px;}
.xc9{left:504.375000px;}
.xab{left:505.800000px;}
.xaf{left:507.225000px;}
.x9d{left:508.350000px;}
.xe4{left:509.775000px;}
.xcc{left:511.575000px;}
.xdb{left:513.375000px;}
.x76{left:515.550000px;}
.xd1{left:518.025000px;}
.x6c{left:520.200000px;}
.xb3{left:527.400000px;}
.xcd{left:528.450000px;}
.x96{left:529.575000px;}
.x5e{left:531.000000px;}
.x11b{left:532.800000px;}
.xd2{left:533.850000px;}
.x105{left:535.650000px;}
.x92{left:537.150000px;}
.x97{left:539.625000px;}
.x100{left:541.425000px;}
.xc5{left:543.225000px;}
.xc6{left:544.650000px;}
.x5f{left:546.150000px;}
.xba{left:548.625000px;}
.xbb{left:550.050000px;}
.x78{left:551.175000px;}
.x9f{left:552.975000px;}
.x7c{left:554.025000px;}
.x39{left:555.150000px;}
.x13{left:559.425000px;}
.x114{left:560.850000px;}
.xf2{left:563.775000px;}
.xe0{left:565.575000px;}
.xff{left:567.000000px;}
.x60{left:568.425000px;}
.x93{left:570.225000px;}
.xc4{left:572.400000px;}
.x91{left:577.800000px;}
.x98{left:580.350000px;}
.xc2{left:582.450000px;}
.xb0{left:584.625000px;}
.xbc{left:586.050000px;}
.xaa{left:589.650000px;}
.xb4{left:593.250000px;}
.xcb{left:597.600000px;}
@media print{
.v1{vertical-align:-2.666667pt;}
.v2{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-25.231803pt;}
._2{margin-left:-19.236584pt;}
._3{margin-left:-9.436305pt;}
._1{width:6.704973pt;}
.fsc{font-size:16.000000pt;}
.fsa{font-size:26.666667pt;}
.fsd{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs7{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.fse{font-size:112.000000pt;}
.fs0{font-size:149.333333pt;}
.fs9{font-size:160.000000pt;}
.fs8{font-size:181.333333pt;}
.y0{bottom:0.000000pt;}
.y27f{bottom:45.132000pt;}
.y19f{bottom:66.198667pt;}
.y42{bottom:72.133333pt;}
.y396{bottom:75.732000pt;}
.y395{bottom:75.800000pt;}
.y397{bottom:76.065333pt;}
.y398{bottom:76.133333pt;}
.y158{bottom:78.732000pt;}
.y349{bottom:79.465333pt;}
.y19e{bottom:80.265333pt;}
.y98{bottom:80.532000pt;}
.ydd{bottom:81.666667pt;}
.y41{bottom:86.865333pt;}
.y2dc{bottom:87.798667pt;}
.y237{bottom:87.932000pt;}
.y316{bottom:88.333333pt;}
.y10e{bottom:91.065333pt;}
.y10d{bottom:91.398667pt;}
.y394{bottom:91.800000pt;}
.y1f2{bottom:91.932000pt;}
.y156{bottom:93.133333pt;}
.y97{bottom:93.598667pt;}
.y27e{bottom:93.732000pt;}
.y157{bottom:94.466667pt;}
.y348{bottom:94.800000pt;}
.y19d{bottom:95.666667pt;}
.ydb{bottom:96.666667pt;}
.ydc{bottom:97.333333pt;}
.y19c{bottom:97.532000pt;}
.y40{bottom:101.598667pt;}
.y2db{bottom:102.466667pt;}
.y236{bottom:102.666667pt;}
.y315{bottom:102.732000pt;}
.y3f{bottom:102.800000pt;}
.y3e{bottom:102.865333pt;}
.y3d{bottom:103.133333pt;}
.y2da{bottom:104.398667pt;}
.y2d9{bottom:105.065333pt;}
.y1ef{bottom:105.333333pt;}
.y10c{bottom:105.532000pt;}
.y38d{bottom:106.198667pt;}
.y10b{bottom:106.398667pt;}
.y235{bottom:106.466667pt;}
.y38e{bottom:106.532000pt;}
.y38f{bottom:106.865333pt;}
.y1f0{bottom:106.932000pt;}
.y390{bottom:107.133333pt;}
.y391{bottom:107.466667pt;}
.y27d{bottom:107.800000pt;}
.y392{bottom:108.065333pt;}
.y393{bottom:108.133333pt;}
.y1f1{bottom:108.532000pt;}
.y155{bottom:108.800000pt;}
.y347{bottom:109.532000pt;}
.y346{bottom:109.800000pt;}
.y96{bottom:109.932000pt;}
.y19b{bottom:111.000000pt;}
.y95{bottom:111.198667pt;}
.y19a{bottom:112.265333pt;}
.yda{bottom:112.333333pt;}
.y199{bottom:112.598667pt;}
.y3c{bottom:117.198667pt;}
.y314{bottom:117.466667pt;}
.y2d8{bottom:117.598667pt;}
.y313{bottom:117.732000pt;}
.y312{bottom:118.065333pt;}
.y2d7{bottom:120.065333pt;}
.y10a{bottom:120.865333pt;}
.y388{bottom:121.198667pt;}
.y234{bottom:121.532000pt;}
.y389{bottom:121.865333pt;}
.y1ee{bottom:122.000000pt;}
.y38a{bottom:122.532000pt;}
.y93{bottom:122.732000pt;}
.y38b{bottom:122.800000pt;}
.y27c{bottom:122.865333pt;}
.y92{bottom:123.000000pt;}
.y94{bottom:123.065333pt;}
.y38c{bottom:123.133333pt;}
.y27b{bottom:123.800000pt;}
.y154{bottom:123.932000pt;}
.y91{bottom:124.333333pt;}
.y197{bottom:124.732000pt;}
.y345{bottom:125.133333pt;}
.y198{bottom:125.666667pt;}
.y90{bottom:125.865333pt;}
.y196{bottom:126.065333pt;}
.y8f{bottom:126.198667pt;}
.y195{bottom:126.932000pt;}
.yd9{bottom:127.732000pt;}
.y3b{bottom:131.666667pt;}
.y311{bottom:132.532000pt;}
.y3a{bottom:132.598667pt;}
.y310{bottom:132.800000pt;}
.y233{bottom:133.065333pt;}
.y30e{bottom:133.133333pt;}
.y39{bottom:133.198667pt;}
.y30f{bottom:133.398667pt;}
.y2d6{bottom:134.198667pt;}
.y109{bottom:135.265333pt;}
.y107{bottom:135.865333pt;}
.y108{bottom:135.932000pt;}
.y387{bottom:136.932000pt;}
.y152{bottom:137.333333pt;}
.y27a{bottom:137.598667pt;}
.y8e{bottom:138.398667pt;}
.y153{bottom:139.198667pt;}
.y343{bottom:139.865333pt;}
.y344{bottom:140.198667pt;}
.y8d{bottom:140.932000pt;}
.y3cf{bottom:141.333333pt;}
.y194{bottom:142.065333pt;}
.yd8{bottom:142.800000pt;}
.y37{bottom:146.000000pt;}
.y38{bottom:146.333333pt;}
.y232{bottom:147.466667pt;}
.y36{bottom:147.666667pt;}
.y2d5{bottom:147.932000pt;}
.y30c{bottom:148.133333pt;}
.y30d{bottom:148.198667pt;}
.y231{bottom:150.000000pt;}
.y383{bottom:150.932000pt;}
.y1ed{bottom:151.133333pt;}
.y3ce{bottom:151.198667pt;}
.y230{bottom:151.265333pt;}
.y14f{bottom:152.065333pt;}
.y279{bottom:152.333333pt;}
.y150{bottom:152.398667pt;}
.y384{bottom:152.598667pt;}
.y8c{bottom:153.398667pt;}
.y151{bottom:153.666667pt;}
.y8b{bottom:153.732000pt;}
.y385{bottom:153.865333pt;}
.y8a{bottom:154.065333pt;}
.y386{bottom:154.198667pt;}
.y89{bottom:154.732000pt;}
.y342{bottom:154.932000pt;}
.y3cd{bottom:155.133333pt;}
.y88{bottom:155.398667pt;}
.y87{bottom:155.666667pt;}
.y193{bottom:155.800000pt;}
.yd7{bottom:157.532000pt;}
.y35{bottom:161.398667pt;}
.y22f{bottom:161.865333pt;}
.y34{bottom:162.000000pt;}
.y2d4{bottom:162.333333pt;}
.y33{bottom:162.932000pt;}
.y30b{bottom:163.198667pt;}
.y2d3{bottom:163.598667pt;}
.y2d2{bottom:164.000000pt;}
.y2d1{bottom:164.265333pt;}
.y22e{bottom:164.466667pt;}
.y2d0{bottom:165.198667pt;}
.y22d{bottom:166.000000pt;}
.y3cc{bottom:166.265333pt;}
.y1ec{bottom:166.800000pt;}
.y3cb{bottom:166.932000pt;}
.y14d{bottom:167.065333pt;}
.y278{bottom:167.666667pt;}
.y14e{bottom:169.065333pt;}
.y3ca{bottom:169.198667pt;}
.y33f{bottom:169.666667pt;}
.y340{bottom:169.932000pt;}
.y86{bottom:170.398667pt;}
.y341{bottom:170.598667pt;}
.y192{bottom:170.865333pt;}
.y191{bottom:171.732000pt;}
.y190{bottom:172.133333pt;}
.y3c9{bottom:172.333333pt;}
.yd6{bottom:172.865333pt;}
.y22b{bottom:176.865333pt;}
.y22c{bottom:176.932000pt;}
.y22a{bottom:177.198667pt;}
.y32{bottom:177.398667pt;}
.y30a{bottom:177.598667pt;}
.y229{bottom:178.198667pt;}
.y309{bottom:178.532000pt;}
.y228{bottom:178.800000pt;}
.y2cf{bottom:179.932000pt;}
.y227{bottom:180.133333pt;}
.y226{bottom:181.065333pt;}
.y1eb{bottom:181.800000pt;}
.y277{bottom:183.333333pt;}
.y85{bottom:183.800000pt;}
.y33a{bottom:184.333333pt;}
.y33c{bottom:184.398667pt;}
.y106{bottom:184.532000pt;}
.y33b{bottom:184.666667pt;}
.y33d{bottom:184.732000pt;}
.y33e{bottom:185.666667pt;}
.y18f{bottom:185.865333pt;}
.yd3{bottom:187.532000pt;}
.yd4{bottom:187.865333pt;}
.yd5{bottom:188.265333pt;}
.y225{bottom:192.000000pt;}
.y31{bottom:192.466667pt;}
.y307{bottom:192.932000pt;}
.y2ce{bottom:193.065333pt;}
.y308{bottom:193.265333pt;}
.y30{bottom:193.333333pt;}
.y224{bottom:193.532000pt;}
.y223{bottom:194.133333pt;}
.y222{bottom:194.532000pt;}
.y221{bottom:195.732000pt;}
.y220{bottom:195.800000pt;}
.y21f{bottom:196.065333pt;}
.y1ea{bottom:197.133333pt;}
.y276{bottom:197.800000pt;}
.y84{bottom:198.598667pt;}
.y275{bottom:199.065333pt;}
.y18d{bottom:200.532000pt;}
.y18e{bottom:200.598667pt;}
.y18c{bottom:201.265333pt;}
.y105{bottom:202.133333pt;}
.yd2{bottom:202.932000pt;}
.y21e{bottom:207.000000pt;}
.y21d{bottom:207.265333pt;}
.y2cd{bottom:207.466667pt;}
.y2f{bottom:208.465333pt;}
.y21c{bottom:208.865333pt;}
.y381{bottom:209.265333pt;}
.y382{bottom:209.598667pt;}
.y2cc{bottom:209.666667pt;}
.y2cb{bottom:209.732000pt;}
.y274{bottom:210.598667pt;}
.y273{bottom:210.865333pt;}
.y1e9{bottom:211.932000pt;}
.y83{bottom:213.333333pt;}
.y272{bottom:213.398667pt;}
.y18b{bottom:214.333333pt;}
.y18a{bottom:214.398667pt;}
.y189{bottom:214.666667pt;}
.y82{bottom:214.865333pt;}
.y188{bottom:215.000000pt;}
.y187{bottom:216.265333pt;}
.yd0{bottom:217.333333pt;}
.yd1{bottom:218.000000pt;}
.y104{bottom:220.065333pt;}
.y14c{bottom:220.865333pt;}
.y21b{bottom:221.732000pt;}
.y2e{bottom:222.198667pt;}
.y21a{bottom:222.333333pt;}
.y2c{bottom:223.132000pt;}
.y2d{bottom:223.465333pt;}
.y3c4{bottom:223.865333pt;}
.y219{bottom:223.932000pt;}
.y2ca{bottom:225.065333pt;}
.y218{bottom:225.532000pt;}
.y1e8{bottom:227.198667pt;}
.y271{bottom:227.532000pt;}
.y380{bottom:228.732000pt;}
.y270{bottom:229.398667pt;}
.y81{bottom:229.932000pt;}
.y186{bottom:231.000000pt;}
.y185{bottom:232.265333pt;}
.ycd{bottom:232.333333pt;}
.yce{bottom:232.732000pt;}
.ycf{bottom:233.065333pt;}
.y3c8{bottom:233.132000pt;}
.y3c7{bottom:234.398667pt;}
.y3c6{bottom:235.132000pt;}
.y3c5{bottom:235.598667pt;}
.y2c8{bottom:236.532000pt;}
.y217{bottom:237.065333pt;}
.y2c9{bottom:237.265333pt;}
.y149{bottom:237.532000pt;}
.y2b{bottom:237.598667pt;}
.y103{bottom:237.932000pt;}
.y14a{bottom:238.465333pt;}
.y2a{bottom:238.798667pt;}
.y216{bottom:239.000000pt;}
.y14b{bottom:239.065333pt;}
.y2c7{bottom:240.065333pt;}
.y1e7{bottom:241.932000pt;}
.y26f{bottom:243.198667pt;}
.y80{bottom:243.732000pt;}
.y37d{bottom:245.398667pt;}
.y37e{bottom:247.265333pt;}
.y339{bottom:248.065333pt;}
.y37f{bottom:248.598667pt;}
.y215{bottom:253.065333pt;}
.y2c6{bottom:254.132000pt;}
.y147{bottom:255.065333pt;}
.y102{bottom:255.532000pt;}
.y214{bottom:255.666667pt;}
.y148{bottom:256.666667pt;}
.y1e6{bottom:257.333333pt;}
.y26e{bottom:257.932000pt;}
.y7f{bottom:258.732000pt;}
.y306{bottom:259.798667pt;}
.y305{bottom:259.865333pt;}
.y37c{bottom:264.265333pt;}
.y338{bottom:266.000000pt;}
.y2c5{bottom:267.666667pt;}
.y3c3{bottom:267.732000pt;}
.y1e3{bottom:269.132000pt;}
.y213{bottom:271.000000pt;}
.y1e4{bottom:272.065333pt;}
.y7e{bottom:272.132000pt;}
.y7d{bottom:272.465333pt;}
.y26d{bottom:272.666667pt;}
.y7c{bottom:272.798667pt;}
.y101{bottom:273.132000pt;}
.y7b{bottom:273.398667pt;}
.y184{bottom:273.865333pt;}
.y145{bottom:273.932000pt;}
.y29{bottom:274.000000pt;}
.y1e5{bottom:274.598667pt;}
.y146{bottom:275.198667pt;}
.y304{bottom:277.732000pt;}
.y37b{bottom:282.465333pt;}
.y2c4{bottom:282.666667pt;}
.y212{bottom:283.465333pt;}
.y2c3{bottom:283.598667pt;}
.y337{bottom:283.865333pt;}
.y1e1{bottom:284.198667pt;}
.y2c2{bottom:284.265333pt;}
.y3c2{bottom:285.333333pt;}
.y1e2{bottom:286.132000pt;}
.y79{bottom:287.198667pt;}
.y7a{bottom:287.465333pt;}
.y26c{bottom:287.666667pt;}
.y100{bottom:290.798667pt;}
.y183{bottom:291.132000pt;}
.y182{bottom:291.465333pt;}
.y28{bottom:292.265333pt;}
.y144{bottom:292.532000pt;}
.y27{bottom:293.198667pt;}
.y303{bottom:295.666667pt;}
.ycc{bottom:297.000000pt;}
.y2c1{bottom:297.732000pt;}
.y2c0{bottom:298.000000pt;}
.y2bf{bottom:298.333333pt;}
.y379{bottom:299.465333pt;}
.y2be{bottom:299.598667pt;}
.y3c1{bottom:300.732000pt;}
.y26b{bottom:300.798667pt;}
.y1e0{bottom:300.865333pt;}
.y26a{bottom:301.132000pt;}
.y336{bottom:301.465333pt;}
.y78{bottom:302.598667pt;}
.y37a{bottom:302.666667pt;}
.y269{bottom:303.000000pt;}
.yff{bottom:308.666667pt;}
.y143{bottom:308.865333pt;}
.y181{bottom:309.333333pt;}
.y26{bottom:310.798667pt;}
.y302{bottom:312.265333pt;}
.y301{bottom:312.333333pt;}
.y300{bottom:313.333333pt;}
.yca{bottom:314.598667pt;}
.ycb{bottom:314.932000pt;}
.y3c0{bottom:315.398667pt;}
.y1dc{bottom:315.532000pt;}
.y3bf{bottom:316.065333pt;}
.y3be{bottom:316.666667pt;}
.y1dd{bottom:317.198667pt;}
.y77{bottom:317.265333pt;}
.y76{bottom:317.932000pt;}
.y75{bottom:318.532000pt;}
.y378{bottom:318.666667pt;}
.y1de{bottom:319.065333pt;}
.y334{bottom:319.132000pt;}
.y268{bottom:319.333333pt;}
.y3bd{bottom:319.932000pt;}
.y1df{bottom:320.000000pt;}
.y335{bottom:320.065333pt;}
.y3bc{bottom:322.732000pt;}
.yfe{bottom:326.265333pt;}
.y180{bottom:327.265333pt;}
.y25{bottom:327.465333pt;}
.y142{bottom:329.333333pt;}
.y1db{bottom:330.265333pt;}
.y2ff{bottom:331.198667pt;}
.y267{bottom:331.465333pt;}
.y266{bottom:332.132000pt;}
.y73{bottom:332.265333pt;}
.y74{bottom:332.333333pt;}
.yc9{bottom:332.532000pt;}
.y72{bottom:333.000000pt;}
.y265{bottom:333.465333pt;}
.y211{bottom:334.000000pt;}
.y1da{bottom:334.732000pt;}
.y377{bottom:336.598667pt;}
.y333{bottom:337.333333pt;}
.y3bb{bottom:340.000000pt;}
.yfd{bottom:344.198667pt;}
.y17f{bottom:345.198667pt;}
.y24{bottom:345.398667pt;}
.y23{bottom:346.666667pt;}
.y13f{bottom:346.932000pt;}
.y264{bottom:347.465333pt;}
.y140{bottom:348.198667pt;}
.y71{bottom:348.333333pt;}
.y141{bottom:348.532000pt;}
.y2fe{bottom:349.398667pt;}
.y1d8{bottom:349.798667pt;}
.y210{bottom:350.000000pt;}
.y1d9{bottom:350.132000pt;}
.yc7{bottom:350.465333pt;}
.yc8{bottom:350.732000pt;}
.y3ba{bottom:351.865333pt;}
.y3b9{bottom:352.865333pt;}
.y374{bottom:354.132000pt;}
.y331{bottom:354.666667pt;}
.y332{bottom:354.932000pt;}
.y3b8{bottom:355.732000pt;}
.y375{bottom:355.798667pt;}
.y376{bottom:356.398667pt;}
.y1d5{bottom:359.065333pt;}
.y1d6{bottom:359.398667pt;}
.yfb{bottom:361.532000pt;}
.yfc{bottom:362.132000pt;}
.y263{bottom:362.265333pt;}
.y17e{bottom:362.532000pt;}
.y70{bottom:362.666667pt;}
.y1d7{bottom:362.932000pt;}
.y22{bottom:363.333333pt;}
.y13e{bottom:364.532000pt;}
.y2bd{bottom:367.132000pt;}
.yc5{bottom:368.065333pt;}
.y20f{bottom:368.265333pt;}
.yc6{bottom:368.333333pt;}
.y3b7{bottom:370.732000pt;}
.y371{bottom:371.732000pt;}
.y330{bottom:372.865333pt;}
.y3b6{bottom:373.333333pt;}
.y2fd{bottom:373.465333pt;}
.y372{bottom:373.666667pt;}
.y373{bottom:374.000000pt;}
.y3b5{bottom:375.198667pt;}
.y1d4{bottom:375.398667pt;}
.y262{bottom:377.598667pt;}
.y6f{bottom:377.732000pt;}
.yfa{bottom:379.398667pt;}
.y21{bottom:380.598667pt;}
.y17d{bottom:381.065333pt;}
.y17c{bottom:381.398667pt;}
.y13d{bottom:382.798667pt;}
.y2bc{bottom:385.065333pt;}
.y2bb{bottom:385.398667pt;}
.y20e{bottom:385.532000pt;}
.yc4{bottom:386.000000pt;}
.y2ba{bottom:386.333333pt;}
.y3b4{bottom:389.333333pt;}
.y370{bottom:390.000000pt;}
.y32f{bottom:390.465333pt;}
.y6e{bottom:391.198667pt;}
.y1d3{bottom:392.065333pt;}
.y261{bottom:392.333333pt;}
.y3b3{bottom:393.798667pt;}
.y3b2{bottom:394.132000pt;}
.yf9{bottom:397.333333pt;}
.y17b{bottom:398.666667pt;}
.y20{bottom:398.798667pt;}
.y138{bottom:400.333333pt;}
.y139{bottom:400.666667pt;}
.y13a{bottom:401.000000pt;}
.y13b{bottom:401.666667pt;}
.y13c{bottom:401.932000pt;}
.y20d{bottom:403.465333pt;}
.y2b9{bottom:403.598667pt;}
.y2b8{bottom:404.532000pt;}
.y2fc{bottom:405.398667pt;}
.y6d{bottom:405.932000pt;}
.y6c{bottom:406.865333pt;}
.y1d2{bottom:407.132000pt;}
.y260{bottom:407.398667pt;}
.y36f{bottom:407.932000pt;}
.y32e{bottom:408.333333pt;}
.yf8{bottom:414.932000pt;}
.yc3{bottom:415.398667pt;}
.y17a{bottom:416.265333pt;}
.y1f{bottom:416.398667pt;}
.y3b1{bottom:416.532000pt;}
.y1e{bottom:417.065333pt;}
.y179{bottom:417.198667pt;}
.y1d{bottom:418.000000pt;}
.y137{bottom:418.598667pt;}
.y1d0{bottom:419.265333pt;}
.y2b7{bottom:420.598667pt;}
.y6b{bottom:421.000000pt;}
.y2b6{bottom:421.198667pt;}
.y20c{bottom:421.398667pt;}
.y6a{bottom:421.598667pt;}
.y2b5{bottom:421.865333pt;}
.y25f{bottom:422.398667pt;}
.y1d1{bottom:422.798667pt;}
.y36a{bottom:424.865333pt;}
.y36b{bottom:425.532000pt;}
.y36c{bottom:425.865333pt;}
.y36d{bottom:426.465333pt;}
.y36e{bottom:427.465333pt;}
.yf7{bottom:433.132000pt;}
.y1c{bottom:434.398667pt;}
.y178{bottom:434.798667pt;}
.y69{bottom:436.333333pt;}
.y136{bottom:436.532000pt;}
.y2fb{bottom:437.065333pt;}
.y25e{bottom:437.132000pt;}
.y2b4{bottom:440.398667pt;}
.y32d{bottom:440.666667pt;}
.y20b{bottom:441.198667pt;}
.y369{bottom:443.798667pt;}
.yc2{bottom:446.132000pt;}
.y3b0{bottom:446.932000pt;}
.yf6{bottom:450.398667pt;}
.y68{bottom:451.333333pt;}
.y67{bottom:451.732000pt;}
.y177{bottom:451.798667pt;}
.y2fa{bottom:453.732000pt;}
.y135{bottom:453.865333pt;}
.y25d{bottom:454.398667pt;}
.y2b3{bottom:456.732000pt;}
.y20a{bottom:457.198667pt;}
.y2b2{bottom:457.398667pt;}
.y1b{bottom:460.000000pt;}
.y368{bottom:461.666667pt;}
.ybf{bottom:463.732000pt;}
.yc0{bottom:464.000000pt;}
.yc1{bottom:464.333333pt;}
.y66{bottom:466.132000pt;}
.y25c{bottom:466.932000pt;}
.y3af{bottom:468.000000pt;}
.yf5{bottom:468.333333pt;}
.y25b{bottom:468.465333pt;}
.y25a{bottom:469.132000pt;}
.y176{bottom:470.398667pt;}
.y2f9{bottom:471.666667pt;}
.y134{bottom:472.065333pt;}
.y2b1{bottom:474.000000pt;}
.y2b0{bottom:474.333333pt;}
.y2af{bottom:474.666667pt;}
.y209{bottom:474.865333pt;}
.y2ae{bottom:475.000000pt;}
.y2ad{bottom:475.598667pt;}
.y364{bottom:478.666667pt;}
.y365{bottom:478.932000pt;}
.y366{bottom:479.333333pt;}
.y32c{bottom:479.465333pt;}
.y65{bottom:479.865333pt;}
.y64{bottom:480.132000pt;}
.y63{bottom:480.198667pt;}
.y367{bottom:480.598667pt;}
.ybd{bottom:481.666667pt;}
.ybe{bottom:481.932000pt;}
.y259{bottom:482.598667pt;}
.y3ae{bottom:482.798667pt;}
.yf4{bottom:486.265333pt;}
.y175{bottom:487.932000pt;}
.y2f8{bottom:488.932000pt;}
.y133{bottom:489.333333pt;}
.y2f7{bottom:490.198667pt;}
.y1a{bottom:491.265333pt;}
.y2ac{bottom:492.598667pt;}
.y208{bottom:493.065333pt;}
.y62{bottom:494.865333pt;}
.y360{bottom:496.598667pt;}
.y361{bottom:496.865333pt;}
.y3ad{bottom:497.465333pt;}
.y362{bottom:497.532000pt;}
.y258{bottom:497.598667pt;}
.y32b{bottom:498.000000pt;}
.y1ce{bottom:498.598667pt;}
.y363{bottom:498.798667pt;}
.ybb{bottom:499.532000pt;}
.ybc{bottom:499.865333pt;}
.y3ac{bottom:500.666667pt;}
.y1cf{bottom:501.198667pt;}
.y3ab{bottom:503.532000pt;}
.yf3{bottom:503.865333pt;}
.y174{bottom:505.532000pt;}
.y12f{bottom:507.265333pt;}
.y2f6{bottom:507.465333pt;}
.y130{bottom:507.532000pt;}
.y131{bottom:508.198667pt;}
.y132{bottom:508.532000pt;}
.y61{bottom:509.932000pt;}
.y60{bottom:510.198667pt;}
.y2ab{bottom:510.465333pt;}
.y207{bottom:511.000000pt;}
.y35f{bottom:515.132000pt;}
.y32a{bottom:515.598667pt;}
.y1cb{bottom:516.865333pt;}
.yba{bottom:517.132000pt;}
.yb9{bottom:517.465333pt;}
.yb8{bottom:517.532000pt;}
.yb7{bottom:517.798667pt;}
.y1cc{bottom:519.733333pt;}
.y19{bottom:520.066667pt;}
.y3aa{bottom:520.265333pt;}
.yf2{bottom:521.798667pt;}
.y1cd{bottom:522.265333pt;}
.y173{bottom:523.465333pt;}
.y171{bottom:523.733333pt;}
.y172{bottom:523.798667pt;}
.y2f5{bottom:524.532000pt;}
.y5e{bottom:524.598667pt;}
.y5f{bottom:524.666667pt;}
.y5d{bottom:525.000000pt;}
.y12e{bottom:525.132000pt;}
.y2f4{bottom:526.066667pt;}
.y2aa{bottom:528.733333pt;}
.y2a9{bottom:529.400000pt;}
.y206{bottom:529.865333pt;}
.y35e{bottom:533.066667pt;}
.y329{bottom:533.465333pt;}
.y18{bottom:533.532000pt;}
.y1c8{bottom:533.865333pt;}
.yb6{bottom:534.465333pt;}
.yb5{bottom:535.066667pt;}
.yb4{bottom:535.400000pt;}
.y1c9{bottom:536.333333pt;}
.y3a9{bottom:536.532000pt;}
.y1ca{bottom:538.000000pt;}
.y5c{bottom:539.666667pt;}
.yf1{bottom:539.733333pt;}
.y170{bottom:541.666667pt;}
.y12a{bottom:542.733333pt;}
.y12b{bottom:543.066667pt;}
.y2f3{bottom:543.333333pt;}
.y12c{bottom:543.733333pt;}
.y12d{bottom:544.000000pt;}
.y2a8{bottom:546.000000pt;}
.y2a7{bottom:546.265333pt;}
.y2a6{bottom:546.333333pt;}
.y2a5{bottom:546.666667pt;}
.y205{bottom:546.798667pt;}
.y35d{bottom:550.932000pt;}
.y1c3{bottom:551.400000pt;}
.y1c4{bottom:552.000000pt;}
.y1c5{bottom:553.000000pt;}
.yb3{bottom:553.066667pt;}
.y1c6{bottom:554.333333pt;}
.y3a8{bottom:554.398667pt;}
.y5b{bottom:554.732000pt;}
.y1c7{bottom:556.265333pt;}
.yf0{bottom:557.333333pt;}
.y16f{bottom:559.000000pt;}
.y2f2{bottom:560.333333pt;}
.y128{bottom:560.666667pt;}
.y127{bottom:561.000000pt;}
.y129{bottom:561.333333pt;}
.y2a4{bottom:563.932000pt;}
.y204{bottom:564.732000pt;}
.y257{bottom:568.000000pt;}
.y35c{bottom:568.598667pt;}
.y327{bottom:568.666667pt;}
.y5a{bottom:569.466667pt;}
.y328{bottom:569.598667pt;}
.y59{bottom:569.732000pt;}
.y1be{bottom:569.932000pt;}
.y58{bottom:570.065333pt;}
.yb2{bottom:570.932000pt;}
.y3a7{bottom:571.133333pt;}
.y1bf{bottom:571.198667pt;}
.y256{bottom:572.133333pt;}
.y1c0{bottom:573.133333pt;}
.y3a6{bottom:574.932000pt;}
.y1c1{bottom:575.065333pt;}
.yef{bottom:575.198667pt;}
.y1c2{bottom:575.398667pt;}
.y16e{bottom:576.265333pt;}
.y16d{bottom:576.865333pt;}
.y2f1{bottom:577.932000pt;}
.y124{bottom:578.598667pt;}
.y125{bottom:578.932000pt;}
.y17{bottom:579.000000pt;}
.y126{bottom:579.265333pt;}
.y16{bottom:579.532000pt;}
.y15{bottom:579.598667pt;}
.y14{bottom:580.865333pt;}
.y2a3{bottom:582.133333pt;}
.y203{bottom:582.333333pt;}
.y57{bottom:584.466667pt;}
.y359{bottom:586.466667pt;}
.y326{bottom:587.198667pt;}
.y35a{bottom:587.466667pt;}
.y35b{bottom:587.800000pt;}
.y1ba{bottom:587.865333pt;}
.yb1{bottom:588.532000pt;}
.y255{bottom:588.800000pt;}
.y1bb{bottom:588.865333pt;}
.y254{bottom:589.398667pt;}
.y1bc{bottom:591.133333pt;}
.y3a5{bottom:591.265333pt;}
.y1bd{bottom:593.065333pt;}
.yee{bottom:593.133333pt;}
.y16c{bottom:594.800000pt;}
.y2f0{bottom:595.532000pt;}
.y122{bottom:596.532000pt;}
.y123{bottom:597.198667pt;}
.y2ef{bottom:597.732000pt;}
.y2a2{bottom:599.133333pt;}
.y56{bottom:599.198667pt;}
.y2a1{bottom:599.466667pt;}
.y2a0{bottom:599.800000pt;}
.y202{bottom:600.265333pt;}
.y358{bottom:604.065333pt;}
.y324{bottom:604.198667pt;}
.y325{bottom:605.133333pt;}
.y253{bottom:606.065333pt;}
.yb0{bottom:606.133333pt;}
.yaf{bottom:606.466667pt;}
.yae{bottom:606.732000pt;}
.y1b8{bottom:607.732000pt;}
.y3a4{bottom:607.865333pt;}
.y1b9{bottom:609.333333pt;}
.yed{bottom:610.800000pt;}
.y16b{bottom:610.865333pt;}
.y16a{bottom:612.065333pt;}
.y169{bottom:612.398667pt;}
.y120{bottom:614.398667pt;}
.y121{bottom:614.732000pt;}
.y2ee{bottom:615.333333pt;}
.y29f{bottom:617.333333pt;}
.y29e{bottom:617.666667pt;}
.y201{bottom:617.865333pt;}
.y29d{bottom:618.000000pt;}
.y29c{bottom:618.333333pt;}
.y357{bottom:622.333333pt;}
.y323{bottom:622.732000pt;}
.y252{bottom:623.666667pt;}
.yad{bottom:624.000000pt;}
.yac{bottom:624.398667pt;}
.yab{bottom:624.666667pt;}
.y3a3{bottom:625.133333pt;}
.y1b7{bottom:625.932000pt;}
.y55{bottom:626.732000pt;}
.y54{bottom:627.000000pt;}
.yeb{bottom:628.333333pt;}
.yec{bottom:629.598667pt;}
.y168{bottom:630.333333pt;}
.y2ed{bottom:630.666667pt;}
.y2ec{bottom:631.000000pt;}
.y11f{bottom:632.065333pt;}
.y2ea{bottom:632.598667pt;}
.y2eb{bottom:632.666667pt;}
.y2e9{bottom:632.932000pt;}
.y29b{bottom:634.666667pt;}
.y29a{bottom:635.333333pt;}
.y299{bottom:635.666667pt;}
.y298{bottom:635.932000pt;}
.y251{bottom:637.398667pt;}
.y200{bottom:637.666667pt;}
.y250{bottom:638.398667pt;}
.y356{bottom:640.000000pt;}
.y24f{bottom:640.333333pt;}
.y1b6{bottom:643.865333pt;}
.y53{bottom:644.265333pt;}
.y52{bottom:644.598667pt;}
.ye9{bottom:645.000000pt;}
.yea{bottom:646.265333pt;}
.y167{bottom:647.932000pt;}
.y2e8{bottom:649.865333pt;}
.y11d{bottom:650.000000pt;}
.y11e{bottom:650.265333pt;}
.y297{bottom:651.932000pt;}
.y296{bottom:652.532000pt;}
.y3a2{bottom:652.732000pt;}
.yaa{bottom:653.800000pt;}
.y1ff{bottom:654.000000pt;}
.ya9{bottom:654.133333pt;}
.y24e{bottom:655.666667pt;}
.y24d{bottom:656.932000pt;}
.y24c{bottom:658.198667pt;}
.y322{bottom:658.265333pt;}
.y1b0{bottom:658.932000pt;}
.y1b1{bottom:659.532000pt;}
.y1b2{bottom:659.865333pt;}
.y1b3{bottom:660.800000pt;}
.y1b4{bottom:661.800000pt;}
.y13{bottom:661.865333pt;}
.y51{bottom:662.198667pt;}
.y11{bottom:662.532000pt;}
.y10{bottom:662.865333pt;}
.ye8{bottom:663.532000pt;}
.y1b5{bottom:663.732000pt;}
.yf{bottom:663.800000pt;}
.yd{bottom:665.065333pt;}
.yc{bottom:665.732000pt;}
.y166{bottom:665.865333pt;}
.y2e7{bottom:666.532000pt;}
.y2e6{bottom:667.198667pt;}
.y11c{bottom:667.932000pt;}
.y2e5{bottom:668.198667pt;}
.y295{bottom:668.265333pt;}
.y294{bottom:669.865333pt;}
.y1fe{bottom:672.265333pt;}
.y24b{bottom:673.000000pt;}
.y12{bottom:673.265333pt;}
.y24a{bottom:673.932000pt;}
.y249{bottom:675.198667pt;}
.y355{bottom:675.398667pt;}
.y354{bottom:675.466667pt;}
.ye{bottom:675.666667pt;}
.y248{bottom:675.865333pt;}
.y247{bottom:676.800000pt;}
.y246{bottom:677.065333pt;}
.y1af{bottom:679.398667pt;}
.y50{bottom:680.198667pt;}
.ye6{bottom:680.532000pt;}
.ye7{bottom:682.133333pt;}
.y3a1{bottom:683.065333pt;}
.y165{bottom:683.466667pt;}
.y164{bottom:684.065333pt;}
.ya8{bottom:684.532000pt;}
.y2e4{bottom:685.398667pt;}
.y11b{bottom:685.800000pt;}
.y293{bottom:686.865333pt;}
.y292{bottom:687.732000pt;}
.y1fd{bottom:689.266667pt;}
.y245{bottom:690.532000pt;}
.y244{bottom:691.532000pt;}
.y243{bottom:692.800000pt;}
.y352{bottom:693.065333pt;}
.y321{bottom:693.466667pt;}
.y242{bottom:694.133333pt;}
.y353{bottom:694.333333pt;}
.y1ad{bottom:694.732000pt;}
.y1ae{bottom:697.333333pt;}
.y4f{bottom:698.398667pt;}
.ye5{bottom:699.065333pt;}
.y3a0{bottom:700.333333pt;}
.ya7{bottom:701.800000pt;}
.ya6{bottom:702.133333pt;}
.y2e3{bottom:703.333333pt;}
.y11a{bottom:703.732000pt;}
.y291{bottom:704.133333pt;}
.y290{bottom:704.732000pt;}
.y28f{bottom:705.398667pt;}
.y163{bottom:707.466667pt;}
.y162{bottom:707.800000pt;}
.y241{bottom:709.133333pt;}
.yb{bottom:709.865333pt;}
.y240{bottom:710.398667pt;}
.ya{bottom:710.532000pt;}
.y23f{bottom:711.065333pt;}
.y351{bottom:711.333333pt;}
.y320{bottom:711.398667pt;}
.y23e{bottom:712.000000pt;}
.y23d{bottom:712.266667pt;}
.y1ac{bottom:714.933333pt;}
.y4e{bottom:716.000000pt;}
.ye4{bottom:717.600000pt;}
.y39f{bottom:718.266667pt;}
.ya5{bottom:719.732000pt;}
.ya4{bottom:720.000000pt;}
.y2e2{bottom:720.933333pt;}
.y117{bottom:721.065333pt;}
.y118{bottom:721.333333pt;}
.y119{bottom:721.600000pt;}
.y28e{bottom:722.000000pt;}
.y39e{bottom:722.133333pt;}
.y28d{bottom:723.000000pt;}
.y28c{bottom:723.266667pt;}
.y28b{bottom:723.600000pt;}
.y1fc{bottom:725.065333pt;}
.y31f{bottom:729.000000pt;}
.y350{bottom:729.198667pt;}
.y9{bottom:730.065333pt;}
.y8{bottom:730.398667pt;}
.y7{bottom:731.000000pt;}
.y6{bottom:731.933333pt;}
.y1a9{bottom:732.532000pt;}
.y4d{bottom:732.933333pt;}
.y4c{bottom:733.600000pt;}
.y4b{bottom:733.933333pt;}
.y4a{bottom:734.266667pt;}
.ye3{bottom:735.266667pt;}
.y1aa{bottom:735.333333pt;}
.y1ab{bottom:735.732000pt;}
.y39d{bottom:736.198667pt;}
.ya3{bottom:737.000000pt;}
.y161{bottom:737.532000pt;}
.y2e1{bottom:738.865333pt;}
.y115{bottom:739.198667pt;}
.y116{bottom:739.532000pt;}
.y28a{bottom:739.933333pt;}
.y289{bottom:740.266667pt;}
.y288{bottom:740.600000pt;}
.y287{bottom:740.865333pt;}
.y286{bottom:740.933333pt;}
.y1fb{bottom:743.000000pt;}
.y31d{bottom:746.266667pt;}
.y31e{bottom:746.933333pt;}
.y34f{bottom:747.133333pt;}
.y49{bottom:747.333333pt;}
.y48{bottom:747.398667pt;}
.y1a8{bottom:750.398667pt;}
.y47{bottom:751.532000pt;}
.ye2{bottom:752.865333pt;}
.y39c{bottom:754.133333pt;}
.ya2{bottom:754.600000pt;}
.ya1{bottom:754.933333pt;}
.y160{bottom:755.198667pt;}
.y114{bottom:756.865333pt;}
.y23c{bottom:757.133333pt;}
.y5{bottom:757.600000pt;}
.y4{bottom:758.198667pt;}
.y285{bottom:758.800000pt;}
.y1fa{bottom:760.600000pt;}
.y3{bottom:760.800000pt;}
.y1f9{bottom:763.800000pt;}
.y2e0{bottom:763.865333pt;}
.y31a{bottom:764.532000pt;}
.y34d{bottom:764.732000pt;}
.y34e{bottom:765.065333pt;}
.y31c{bottom:765.198667pt;}
.y31b{bottom:765.466667pt;}
.y1a7{bottom:768.065333pt;}
.y46{bottom:769.065333pt;}
.ye1{bottom:771.065333pt;}
.y39b{bottom:771.398667pt;}
.ya0{bottom:772.532000pt;}
.y9f{bottom:772.865333pt;}
.y15e{bottom:773.065333pt;}
.y9e{bottom:773.133333pt;}
.y15f{bottom:773.333333pt;}
.y111{bottom:774.732000pt;}
.y112{bottom:774.800000pt;}
.y113{bottom:775.065333pt;}
.y284{bottom:776.398667pt;}
.y1f8{bottom:778.466667pt;}
.y319{bottom:782.398667pt;}
.y34c{bottom:782.666667pt;}
.y1a2{bottom:784.333333pt;}
.y1a3{bottom:784.666667pt;}
.y1a4{bottom:785.065333pt;}
.y1a5{bottom:785.933333pt;}
.y45{bottom:787.000000pt;}
.y1a6{bottom:787.865333pt;}
.ye0{bottom:788.666667pt;}
.y9d{bottom:790.133333pt;}
.y15d{bottom:790.666667pt;}
.y15c{bottom:790.933333pt;}
.y2{bottom:791.466667pt;}
.y283{bottom:794.065333pt;}
.y1f7{bottom:795.800000pt;}
.y2df{bottom:796.466667pt;}
.y39a{bottom:797.666667pt;}
.y318{bottom:800.000000pt;}
.y34b{bottom:800.600000pt;}
.y23b{bottom:801.933333pt;}
.y110{bottom:802.000000pt;}
.y23a{bottom:802.865333pt;}
.y44{bottom:804.933333pt;}
.y9c{bottom:807.732000pt;}
.y9b{bottom:808.065333pt;}
.y15b{bottom:808.600000pt;}
.y9a{bottom:808.666667pt;}
.y15a{bottom:808.933333pt;}
.ydf{bottom:811.398667pt;}
.y1f6{bottom:811.800000pt;}
.y282{bottom:812.266667pt;}
.y281{bottom:812.600000pt;}
.y1f5{bottom:812.732000pt;}
.y2de{bottom:812.800000pt;}
.y1f4{bottom:815.000000pt;}
.y1{bottom:815.133333pt;}
.y1a1{bottom:818.933333pt;}
.y399{bottom:828.666667pt;}
.y10f{bottom:831.732000pt;}
.y317{bottom:833.000000pt;}
.y34a{bottom:833.865333pt;}
.y43{bottom:835.333333pt;}
.y99{bottom:838.133333pt;}
.y159{bottom:839.333333pt;}
.y280{bottom:842.666667pt;}
.yde{bottom:842.800000pt;}
.y1f3{bottom:844.133333pt;}
.y2dd{bottom:846.398667pt;}
.y239{bottom:848.666667pt;}
.y238{bottom:849.000000pt;}
.y1a0{bottom:849.333333pt;}
.h14{height:15.703125pt;}
.h15{height:17.072000pt;}
.hf{height:26.875000pt;}
.h21{height:36.622396pt;}
.h11{height:41.854167pt;}
.h12{height:41.875000pt;}
.h1f{height:44.500000pt;}
.h18{height:47.085938pt;}
.h2{height:47.109375pt;}
.h17{height:48.375000pt;}
.he{height:49.968750pt;}
.h7{height:50.062500pt;}
.h1b{height:52.317708pt;}
.h8{height:52.343750pt;}
.h9{height:53.750000pt;}
.h26{height:57.549479pt;}
.h6{height:57.578125pt;}
.ha{height:59.125000pt;}
.h28{height:61.187500pt;}
.h25{height:61.479167pt;}
.h1d{height:62.781250pt;}
.h5{height:62.812500pt;}
.h1a{height:64.500000pt;}
.h10{height:68.013021pt;}
.h3{height:68.046875pt;}
.h23{height:69.875000pt;}
.h2b{height:72.312500pt;}
.h16{height:78.515625pt;}
.hb{height:80.625000pt;}
.h4{height:83.750000pt;}
.h27{height:109.921875pt;}
.h1{height:150.500000pt;}
.hd{height:157.031250pt;}
.hc{height:177.968750pt;}
.h13{height:884.000000pt;}
.h0{height:890.666667pt;}
.h2a{height:893.333333pt;}
.h29{height:894.666667pt;}
.h1c{height:901.333333pt;}
.h1e{height:902.666667pt;}
.h19{height:905.333333pt;}
.h22{height:912.000000pt;}
.h20{height:913.333333pt;}
.h24{height:914.666667pt;}
.w1{width:577.333333pt;}
.w7{width:580.000000pt;}
.w6{width:589.333333pt;}
.w0{width:592.000000pt;}
.w9{width:593.333333pt;}
.w2{width:594.666667pt;}
.w8{width:600.000000pt;}
.w3{width:604.000000pt;}
.w4{width:609.333333pt;}
.w5{width:616.000000pt;}
.x0{left:0.000000pt;}
.x64{left:46.400000pt;}
.x3{left:48.000000pt;}
.x1f{left:49.266667pt;}
.x1b{left:50.532000pt;}
.x24{left:51.533333pt;}
.x2d{left:52.466667pt;}
.xc{left:53.733333pt;}
.xe5{left:56.666667pt;}
.x5b{left:59.866667pt;}
.x61{left:60.800000pt;}
.x50{left:61.733333pt;}
.x45{left:62.733333pt;}
.x3e{left:64.000000pt;}
.x3a{left:64.933333pt;}
.x34{left:65.933333pt;}
.xf5{left:67.200000pt;}
.x73{left:68.800000pt;}
.x86{left:70.066667pt;}
.x6d{left:71.666667pt;}
.x66{left:72.666667pt;}
.x20{left:73.933333pt;}
.x1c{left:74.866667pt;}
.x31{left:75.866667pt;}
.x81{left:77.466667pt;}
.x14{left:78.733333pt;}
.xad{left:80.000000pt;}
.x82{left:80.933333pt;}
.x4c{left:82.533333pt;}
.x87{left:83.866667pt;}
.x4f{left:85.133333pt;}
.x46{left:86.065333pt;}
.xa2{left:87.333333pt;}
.x41{left:88.666667pt;}
.x36{left:89.933333pt;}
.x33{left:91.200000pt;}
.xf4{left:92.133333pt;}
.xf6{left:93.133333pt;}
.x70{left:94.398667pt;}
.xa9{left:95.333333pt;}
.x21{left:96.333333pt;}
.x8a{left:97.266667pt;}
.x23{left:98.866667pt;}
.xd{left:99.866667pt;}
.x6e{left:100.800000pt;}
.x8d{left:102.065333pt;}
.x25{left:103.066667pt;}
.xa4{left:104.666667pt;}
.x3b{left:105.600000pt;}
.xf1{left:106.533333pt;}
.x56{left:108.133333pt;}
.x49{left:109.466667pt;}
.x10c{left:110.400000pt;}
.x42{left:111.333333pt;}
.xce{left:112.333333pt;}
.x102{left:113.266667pt;}
.x77{left:114.266667pt;}
.x6{left:115.200000pt;}
.xdc{left:117.733333pt;}
.x8b{left:119.666667pt;}
.x22{left:120.933333pt;}
.xb1{left:122.533333pt;}
.xa5{left:123.533333pt;}
.x72{left:125.133333pt;}
.x85{left:126.400000pt;}
.x3c{left:128.333333pt;}
.xac{left:129.600000pt;}
.xbd{left:131.533333pt;}
.x57{left:132.466667pt;}
.x18{left:134.733333pt;}
.xed{left:136.000000pt;}
.x71{left:137.600000pt;}
.x43{left:141.466667pt;}
.x75{left:142.400000pt;}
.x2e{left:144.333333pt;}
.xf7{left:145.600000pt;}
.x6f{left:147.200000pt;}
.xae{left:148.133333pt;}
.xf8{left:149.733333pt;}
.x44{left:151.666667pt;}
.xf3{left:153.266667pt;}
.x10b{left:156.800000pt;}
.xfb{left:157.733333pt;}
.x2f{left:160.933333pt;}
.x4d{left:163.533333pt;}
.x115{left:165.133333pt;}
.x58{left:166.066667pt;}
.x4{left:168.000000pt;}
.x88{left:172.465333pt;}
.xa8{left:173.733333pt;}
.x89{left:175.333333pt;}
.x54{left:177.266667pt;}
.xe6{left:180.132000pt;}
.x4e{left:181.465333pt;}
.x35{left:182.400000pt;}
.xc1{left:184.333333pt;}
.x1{left:187.200000pt;}
.xb7{left:188.798667pt;}
.xe{left:190.066667pt;}
.xe1{left:191.066667pt;}
.xeb{left:192.333333pt;}
.xa{left:193.933333pt;}
.x101{left:195.866667pt;}
.x79{left:197.132000pt;}
.x30{left:199.066667pt;}
.xec{left:200.000000pt;}
.x10f{left:201.600000pt;}
.xd3{left:203.200000pt;}
.x26{left:206.400000pt;}
.xd9{left:211.533333pt;}
.xd4{left:213.133333pt;}
.xbe{left:214.066667pt;}
.xf{left:216.666667pt;}
.x37{left:218.533333pt;}
.x74{left:220.466667pt;}
.xd6{left:221.733333pt;}
.x7{left:223.066667pt;}
.x59{left:224.000000pt;}
.x1d{left:226.866667pt;}
.x2b{left:227.866667pt;}
.x110{left:228.800000pt;}
.xcf{left:230.733333pt;}
.x55{left:232.333333pt;}
.x9a{left:236.133333pt;}
.xfc{left:238.400000pt;}
.x52{left:240.333333pt;}
.x1a{left:241.933333pt;}
.x8{left:242.866667pt;}
.xca{left:246.733333pt;}
.x62{left:248.333333pt;}
.x2c{left:249.933333pt;}
.xa3{left:250.866667pt;}
.xde{left:253.133333pt;}
.x5a{left:254.066667pt;}
.x2{left:256.333333pt;}
.x15{left:257.933333pt;}
.x19{left:258.866667pt;}
.xbf{left:259.866667pt;}
.xd5{left:261.733333pt;}
.x1e{left:262.733333pt;}
.xdf{left:264.666667pt;}
.x32{left:265.600000pt;}
.x63{left:268.466667pt;}
.x116{left:269.733333pt;}
.x7a{left:270.733333pt;}
.x67{left:272.333333pt;}
.xc8{left:274.866667pt;}
.x84{left:276.133333pt;}
.x16{left:277.733333pt;}
.x118{left:278.733333pt;}
.x40{left:280.000000pt;}
.x7d{left:281.600000pt;}
.x83{left:283.200000pt;}
.xee{left:284.133333pt;}
.xb{left:285.133333pt;}
.x65{left:286.733333pt;}
.xd8{left:287.666667pt;}
.xd0{left:291.533333pt;}
.xda{left:295.066667pt;}
.xd7{left:296.333333pt;}
.xc7{left:297.933333pt;}
.x68{left:303.333333pt;}
.x47{left:304.933333pt;}
.x9c{left:307.200000pt;}
.x8c{left:308.133333pt;}
.x38{left:311.333333pt;}
.xb8{left:312.666667pt;}
.x48{left:315.200000pt;}
.xc0{left:317.133333pt;}
.x7e{left:318.066667pt;}
.xc3{left:319.333333pt;}
.x109{left:321.266667pt;}
.xe2{left:322.266667pt;}
.x51{left:325.466667pt;}
.x10{left:328.333333pt;}
.x95{left:330.866667pt;}
.xf9{left:333.733333pt;}
.x111{left:337.933333pt;}
.xb9{left:342.066667pt;}
.xe3{left:345.265333pt;}
.x9{left:348.133333pt;}
.xa0{left:351.666667pt;}
.x5{left:352.932000pt;}
.x27{left:354.866667pt;}
.x106{left:356.800000pt;}
.x3d{left:357.733333pt;}
.x5c{left:359.066667pt;}
.xfa{left:361.932000pt;}
.x11{left:363.200000pt;}
.x69{left:364.466667pt;}
.x28{left:365.466667pt;}
.x5d{left:369.598667pt;}
.x107{left:372.800000pt;}
.x7b{left:374.066667pt;}
.xa6{left:375.066667pt;}
.x10d{left:376.000000pt;}
.xdd{left:376.932000pt;}
.xe7{left:378.866667pt;}
.xa7{left:379.866667pt;}
.xfd{left:380.800000pt;}
.x11a{left:382.066667pt;}
.x7f{left:384.000000pt;}
.x29{left:385.598667pt;}
.x8e{left:386.866667pt;}
.x6b{left:388.133333pt;}
.x103{left:389.133333pt;}
.xef{left:391.333333pt;}
.x17{left:392.932000pt;}
.x99{left:393.932000pt;}
.x119{left:395.200000pt;}
.x2a{left:396.133333pt;}
.xb5{left:397.733333pt;}
.xf0{left:399.333333pt;}
.x112{left:401.265333pt;}
.x10a{left:403.533333pt;}
.xb6{left:404.800000pt;}
.x117{left:406.066667pt;}
.xe8{left:407.333333pt;}
.x8f{left:409.600000pt;}
.x6a{left:411.200000pt;}
.xa1{left:414.066667pt;}
.xea{left:415.333333pt;}
.x10e{left:416.933333pt;}
.x108{left:418.266667pt;}
.xfe{left:419.200000pt;}
.x9e{left:422.066667pt;}
.x80{left:424.933333pt;}
.x3f{left:427.533333pt;}
.x4a{left:430.400000pt;}
.x90{left:432.666667pt;}
.x113{left:433.600000pt;}
.x104{left:435.533333pt;}
.x94{left:437.466667pt;}
.xb2{left:438.400000pt;}
.xe9{left:440.000000pt;}
.x4b{left:440.933333pt;}
.x9b{left:443.533333pt;}
.x53{left:444.466667pt;}
.x12{left:446.733333pt;}
.xc9{left:448.333333pt;}
.xab{left:449.600000pt;}
.xaf{left:450.866667pt;}
.x9d{left:451.866667pt;}
.xe4{left:453.133333pt;}
.xcc{left:454.733333pt;}
.xdb{left:456.333333pt;}
.x76{left:458.266667pt;}
.xd1{left:460.466667pt;}
.x6c{left:462.400000pt;}
.xb3{left:468.800000pt;}
.xcd{left:469.733333pt;}
.x96{left:470.733333pt;}
.x5e{left:472.000000pt;}
.x11b{left:473.600000pt;}
.xd2{left:474.533333pt;}
.x105{left:476.133333pt;}
.x92{left:477.466667pt;}
.x97{left:479.666667pt;}
.x100{left:481.266667pt;}
.xc5{left:482.866667pt;}
.xc6{left:484.133333pt;}
.x5f{left:485.466667pt;}
.xba{left:487.666667pt;}
.xbb{left:488.933333pt;}
.x78{left:489.933333pt;}
.x9f{left:491.533333pt;}
.x7c{left:492.466667pt;}
.x39{left:493.466667pt;}
.x13{left:497.266667pt;}
.x114{left:498.533333pt;}
.xf2{left:501.133333pt;}
.xe0{left:502.733333pt;}
.xff{left:504.000000pt;}
.x60{left:505.266667pt;}
.x93{left:506.866667pt;}
.xc4{left:508.800000pt;}
.x91{left:513.600000pt;}
.x98{left:515.866667pt;}
.xc2{left:517.733333pt;}
.xb0{left:519.666667pt;}
.xbc{left:520.933333pt;}
.xaa{left:524.133333pt;}
.xb4{left:527.333333pt;}
.xcb{left:531.200000pt;}
}




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