
    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_0fab9bfbd48540e632736b46.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ffaa415a7df237d645d51fba.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_127159fc226a6b987dd83972.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_51a4846ab2b51a9432902836.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_4856916cf8fa766e07296237.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0de7eec0756b31e4a2f83a32.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_548038dfa606a984e7ddedb9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_5b8cd395b6c2104b69c74a51.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a6af9f449262c14accd79a6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_684dcccf9a8784ff9ec1b166.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_9c8a1d5c6de505171ccdc10f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d5e180745fd7952c135cf34c.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_ff3b3b284a6eb48665cb1bc6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_74f1ff9bdda914491d8512ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861816;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;}
.m1e{transform:matrix(0.183753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183753,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.183983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183983,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.184689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184689,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.185118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185118,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.185267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185267,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.187939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187939,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.189211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189211,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.189232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189232,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.196287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196287,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.196311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196311,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.196679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196679,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.200572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200572,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.202148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202148,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.202723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202723,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.202748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202748,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.204416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204416,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.204499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204499,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.204752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204752,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.205227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205227,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.206618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206618,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.216386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216386,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.218268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218268,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.241748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241748,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.255798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255798,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.256024,0.000000,-0.085333,0.234986,0,0);-ms-transform:matrix(0.256024,0.000000,-0.085333,0.234986,0,0);-webkit-transform:matrix(0.256024,0.000000,-0.085333,0.234986,0,0);}
.m13{transform:matrix(0.256051,0.000000,-0.085342,0.234982,0,0);-ms-transform:matrix(0.256051,0.000000,-0.085342,0.234982,0,0);-webkit-transform:matrix(0.256051,0.000000,-0.085342,0.234982,0,0);}
.m23{transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.256663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256663,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.256883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256883,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.257091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257091,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.257102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257102,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.257910,0.000000,-0.085961,0.234757,0,0);-ms-transform:matrix(0.257910,0.000000,-0.085961,0.234757,0,0);-webkit-transform:matrix(0.257910,0.000000,-0.085961,0.234757,0,0);}
.m2c{transform:matrix(0.262592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262592,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.263396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263396,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.263929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263929,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.268560,0.000000,-0.089511,0.233426,0,0);-ms-transform:matrix(0.268560,0.000000,-0.089511,0.233426,0,0);-webkit-transform:matrix(0.268560,0.000000,-0.089511,0.233426,0,0);}
.m16{transform:matrix(0.272383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272383,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.272416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272416,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.274657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274657,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.278329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278329,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.281406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281406,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.282130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282130,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.284679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284679,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.287290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287290,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.287629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287629,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.289786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289786,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.297051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297051,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.323751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323751,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-72.720000px;}
.v13{vertical-align:-63.362409px;}
.v6{vertical-align:-44.898720px;}
.v10{vertical-align:-32.274158px;}
.v9{vertical-align:-26.829955px;}
.v12{vertical-align:-25.805123px;}
.vc{vertical-align:-18.044922px;}
.vd{vertical-align:-14.920918px;}
.v1{vertical-align:-9.360000px;}
.v11{vertical-align:-2.799936px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:14.865245px;}
.v4{vertical-align:23.197005px;}
.v2{vertical-align:27.540000px;}
.v5{vertical-align:42.998245px;}
.v3{vertical-align:59.598459px;}
.va{vertical-align:60.669538px;}
.ve{vertical-align:62.352879px;}
.vf{vertical-align:72.861848px;}
.v8{vertical-align:74.447083px;}
.ls2d{letter-spacing:-2.335894px;}
.ls2e{letter-spacing:-2.335795px;}
.ls2a{letter-spacing:-1.905226px;}
.ls3f{letter-spacing:-1.814199px;}
.ls2c{letter-spacing:-1.808001px;}
.ls3b{letter-spacing:-1.359461px;}
.ls3a{letter-spacing:-1.129694px;}
.ls54{letter-spacing:-0.990000px;}
.ls43{letter-spacing:-0.961537px;}
.ls39{letter-spacing:-0.942000px;}
.ls3e{letter-spacing:-0.875314px;}
.ls3c{letter-spacing:-0.856263px;}
.ls4c{letter-spacing:-0.811608px;}
.ls24{letter-spacing:-0.672000px;}
.ls4d{letter-spacing:-0.375903px;}
.lse{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.269400px;}
.ls2b{letter-spacing:-0.267017px;}
.ls4b{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls27{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.106560px;}
.ls25{letter-spacing:0.106800px;}
.ls26{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls53{letter-spacing:0.314400px;}
.ls42{letter-spacing:0.352401px;}
.ls5{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.613440px;}
.ls10{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.773280px;}
.lsf{letter-spacing:0.900000px;}
.ls29{letter-spacing:1.054764px;}
.ls3d{letter-spacing:2.559627px;}
.ls1a{letter-spacing:5.220000px;}
.ls4{letter-spacing:7.380000px;}
.ls4f{letter-spacing:8.586720px;}
.ls19{letter-spacing:8.820000px;}
.ls4e{letter-spacing:11.466720px;}
.ls51{letter-spacing:14.669280px;}
.ls44{letter-spacing:15.066720px;}
.ls52{letter-spacing:15.300000px;}
.ls41{letter-spacing:17.946720px;}
.ls32{letter-spacing:18.066720px;}
.ls33{letter-spacing:23.699072px;}
.ls40{letter-spacing:26.820000px;}
.ls1b{letter-spacing:27.465254px;}
.ls50{letter-spacing:38.429280px;}
.ls12{letter-spacing:39.546720px;}
.ls21{letter-spacing:39.666720px;}
.ls18{letter-spacing:51.786720px;}
.ls13{letter-spacing:53.946720px;}
.ls2f{letter-spacing:62.586720px;}
.ls37{letter-spacing:63.540000px;}
.ls7{letter-spacing:64.026720px;}
.ls20{letter-spacing:71.460000px;}
.ls23{letter-spacing:71.875274px;}
.ls2{letter-spacing:73.386720px;}
.ls45{letter-spacing:87.066720px;}
.ls48{letter-spacing:107.431333px;}
.ls1c{letter-spacing:135.427684px;}
.ls22{letter-spacing:150.744465px;}
.ls1e{letter-spacing:277.606499px;}
.ls34{letter-spacing:382.500000px;}
.ls47{letter-spacing:390.674810px;}
.ls49{letter-spacing:394.405672px;}
.ls46{letter-spacing:413.429557px;}
.ls35{letter-spacing:431.460000px;}
.ls38{letter-spacing:522.900000px;}
.ls4a{letter-spacing:529.334166px;}
.ls36{letter-spacing:565.441744px;}
.ls31{letter-spacing:612.900000px;}
.ls1d{letter-spacing:682.920000px;}
.ls1f{letter-spacing:853.560000px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.ws1e{word-spacing:-49.141282px;}
.ws41{word-spacing:-34.339842px;}
.ws4a{word-spacing:-33.877260px;}
.ws2b{word-spacing:-33.284165px;}
.ws54{word-spacing:-33.010173px;}
.ws32{word-spacing:-32.945770px;}
.ws26{word-spacing:-32.808240px;}
.ws15{word-spacing:-25.422910px;}
.ws17{word-spacing:-25.279824px;}
.ws18{word-spacing:-25.274533px;}
.ws12{word-spacing:-25.257310px;}
.ws53{word-spacing:-19.636248px;}
.ws1f{word-spacing:-19.099440px;}
.ws8{word-spacing:-15.606000px;}
.wsc{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.wse{word-spacing:-15.093600px;}
.wsd{word-spacing:-15.046800px;}
.ws2e{word-spacing:-15.002627px;}
.ws1{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws64{word-spacing:-14.838494px;}
.ws11{word-spacing:-14.833200px;}
.ws1c{word-spacing:-14.733600px;}
.ws5b{word-spacing:-14.680200px;}
.ws6b{word-spacing:-14.617257px;}
.ws3e{word-spacing:-14.600757px;}
.ws47{word-spacing:-14.551489px;}
.ws2f{word-spacing:-13.643166px;}
.ws4{word-spacing:-13.518000px;}
.ws3{word-spacing:-13.500000px;}
.ws5f{word-spacing:-13.354950px;}
.ws1d{word-spacing:-12.558772px;}
.ws0{word-spacing:-12.420000px;}
.ws6f{word-spacing:-12.374400px;}
.ws7{word-spacing:-12.060000px;}
.ws27{word-spacing:-11.909528px;}
.ws6e{word-spacing:-11.700000px;}
.ws28{word-spacing:-11.118000px;}
.wsf{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.711360px;}
.ws24{word-spacing:-8.743616px;}
.ws5c{word-spacing:-7.479047px;}
.ws4e{word-spacing:-7.403101px;}
.ws56{word-spacing:-7.383088px;}
.ws42{word-spacing:-7.329507px;}
.ws44{word-spacing:-7.157828px;}
.ws50{word-spacing:-7.016580px;}
.ws35{word-spacing:-7.009790px;}
.ws3c{word-spacing:-7.009118px;}
.ws33{word-spacing:-6.975249px;}
.ws3a{word-spacing:-6.968341px;}
.ws4d{word-spacing:-6.415322px;}
.ws4b{word-spacing:-5.836642px;}
.ws38{word-spacing:-5.766310px;}
.ws19{word-spacing:-1.113293px;}
.ws25{word-spacing:-0.072288px;}
.ws52{word-spacing:-0.071031px;}
.ws4f{word-spacing:-0.070801px;}
.ws4c{word-spacing:-0.070590px;}
.ws37{word-spacing:-0.061327px;}
.ws55{word-spacing:-0.060128px;}
.ws23{word-spacing:-0.059674px;}
.ws14{word-spacing:-0.058737px;}
.ws1a{word-spacing:-0.058530px;}
.ws6d{word-spacing:-0.058469px;}
.ws40{word-spacing:-0.058403px;}
.ws68{word-spacing:-0.057573px;}
.ws21{word-spacing:-0.034790px;}
.wsa{word-spacing:0.000000px;}
.ws29{word-spacing:30.993885px;}
.ws46{word-spacing:51.777775px;}
.ws5a{word-spacing:62.102614px;}
.ws58{word-spacing:62.818829px;}
.ws51{word-spacing:63.112037px;}
.ws34{word-spacing:64.872774px;}
.ws65{word-spacing:74.570905px;}
.ws59{word-spacing:75.981662px;}
.ws62{word-spacing:76.056043px;}
.ws39{word-spacing:93.788849px;}
.ws31{word-spacing:103.886063px;}
.ws45{word-spacing:104.014882px;}
.ws43{word-spacing:104.191699px;}
.ws13{word-spacing:107.554581px;}
.ws6a{word-spacing:110.258577px;}
.ws69{word-spacing:110.449263px;}
.ws2a{word-spacing:123.392489px;}
.ws20{word-spacing:130.651188px;}
.ws57{word-spacing:148.880723px;}
.ws5d{word-spacing:159.046767px;}
.ws3b{word-spacing:177.474157px;}
.ws63{word-spacing:197.937874px;}
.ws66{word-spacing:236.580392px;}
.ws5e{word-spacing:237.656349px;}
.ws60{word-spacing:243.341245px;}
.ws3f{word-spacing:254.681986px;}
.ws36{word-spacing:264.549144px;}
.ws16{word-spacing:304.569719px;}
.ws2d{word-spacing:355.115016px;}
.ws1b{word-spacing:360.394398px;}
.ws48{word-spacing:366.338793px;}
.ws49{word-spacing:371.574694px;}
.ws30{word-spacing:382.495352px;}
.ws61{word-spacing:390.295264px;}
.ws67{word-spacing:412.614684px;}
.ws3d{word-spacing:425.725194px;}
.ws2c{word-spacing:475.237054px;}
.ws22{word-spacing:534.136453px;}
.ws6c{word-spacing:576.123409px;}
._58{margin-left:-568.937050px;}
._36{margin-left:-433.073453px;}
._8d{margin-left:-376.922392px;}
._5f{margin-left:-362.261335px;}
._63{margin-left:-331.777522px;}
._86{margin-left:-323.966898px;}
._5e{margin-left:-312.519967px;}
._47{margin-left:-305.661860px;}
._7d{margin-left:-299.406069px;}
._82{margin-left:-295.216139px;}
._1f{margin-left:-293.590127px;}
._26{margin-left:-288.465373px;}
._7e{margin-left:-273.354137px;}
._60{margin-left:-270.631407px;}
._84{margin-left:-269.009960px;}
._88{margin-left:-265.331052px;}
._6e{margin-left:-261.494683px;}
._89{margin-left:-259.448215px;}
._7b{margin-left:-239.913698px;}
._80{margin-left:-233.611468px;}
._61{margin-left:-231.423195px;}
._4b{margin-left:-229.103267px;}
._71{margin-left:-222.760461px;}
._53{margin-left:-216.431044px;}
._49{margin-left:-209.375913px;}
._3f{margin-left:-206.237174px;}
._46{margin-left:-204.880217px;}
._55{margin-left:-202.048265px;}
._5b{margin-left:-198.869016px;}
._44{margin-left:-195.298146px;}
._48{margin-left:-193.624247px;}
._73{margin-left:-186.414902px;}
._52{margin-left:-184.186826px;}
._50{margin-left:-170.051907px;}
._4f{margin-left:-164.850106px;}
._3d{margin-left:-163.390943px;}
._2d{margin-left:-157.994471px;}
._54{margin-left:-153.628084px;}
._28{margin-left:-151.857616px;}
._75{margin-left:-149.989405px;}
._8b{margin-left:-147.272877px;}
._2b{margin-left:-146.240033px;}
._45{margin-left:-144.055708px;}
._3b{margin-left:-136.257981px;}
._43{margin-left:-132.308190px;}
._40{margin-left:-126.877232px;}
._4c{margin-left:-125.786887px;}
._29{margin-left:-124.767701px;}
._5a{margin-left:-116.960943px;}
._27{margin-left:-114.647241px;}
._77{margin-left:-106.476603px;}
._65{margin-left:-102.900530px;}
._2c{margin-left:-99.242352px;}
._70{margin-left:-98.037968px;}
._20{margin-left:-96.707158px;}
._3a{margin-left:-95.674170px;}
._64{margin-left:-93.608165px;}
._76{margin-left:-91.526693px;}
._4e{margin-left:-89.054528px;}
._83{margin-left:-87.107110px;}
._66{margin-left:-86.029515px;}
._5c{margin-left:-84.927278px;}
._6f{margin-left:-83.608057px;}
._62{margin-left:-80.186301px;}
._72{margin-left:-77.433717px;}
._39{margin-left:-74.063902px;}
._38{margin-left:-72.504990px;}
._59{margin-left:-70.363728px;}
._7a{margin-left:-69.267391px;}
._87{margin-left:-67.879002px;}
._6d{margin-left:-65.776891px;}
._37{margin-left:-64.745999px;}
._7c{margin-left:-62.675882px;}
._35{margin-left:-58.064852px;}
._21{margin-left:-56.042213px;}
._2f{margin-left:-54.849636px;}
._30{margin-left:-51.311606px;}
._2e{margin-left:-45.737398px;}
._4a{margin-left:-34.428004px;}
._31{margin-left:-13.500000px;}
._7f{margin-left:-4.002124px;}
._8c{margin-left:-2.872184px;}
._0{margin-left:-1.688400px;}
._1{width:1.302480px;}
._2{width:2.421120px;}
._4{width:3.573840px;}
._3{width:5.094000px;}
._5{width:6.849840px;}
._f{width:8.127360px;}
._8{width:9.450000px;}
._9{width:10.746000px;}
._a{width:12.204000px;}
._16{width:13.206960px;}
._6{width:15.120000px;}
._7{width:16.247520px;}
._d{width:17.989920px;}
._12{width:19.242720px;}
._15{width:20.813520px;}
._17{width:21.946800px;}
._14{width:22.947840px;}
._13{width:24.800400px;}
._3e{width:25.891200px;}
._10{width:26.892000px;}
._b{width:28.681920px;}
._c{width:30.144000px;}
._11{width:32.088720px;}
._1c{width:33.180960px;}
._1a{width:34.183200px;}
._19{width:35.198160px;}
._32{width:37.970529px;}
._4d{width:40.443708px;}
._42{width:43.564560px;}
._78{width:45.895680px;}
._8f{width:52.050960px;}
._68{width:53.463360px;}
._67{width:55.079760px;}
._6b{width:56.300831px;}
._e{width:70.020000px;}
._18{width:71.580000px;}
._6a{width:110.272594px;}
._24{width:114.180072px;}
._23{width:120.300660px;}
._1e{width:131.886059px;}
._69{width:138.203915px;}
._34{width:156.721492px;}
._74{width:164.340000px;}
._6c{width:173.604949px;}
._56{width:206.860347px;}
._51{width:239.828883px;}
._5d{width:259.293766px;}
._25{width:303.388389px;}
._2a{width:311.377047px;}
._1d{width:317.603522px;}
._33{width:363.186388px;}
._8e{width:376.020000px;}
._79{width:394.517129px;}
._8a{width:588.600000px;}
._57{width:614.671021px;}
._3c{width:671.400000px;}
._81{width:695.160000px;}
._85{width:700.200000px;}
._1b{width:731.100000px;}
._22{width:907.560000px;}
._41{width:1068.096000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3e{font-size:33.622231px;}
.fs42{font-size:34.037717px;}
.fs22{font-size:34.048720px;}
.fs7{font-size:34.243538px;}
.fsd{font-size:34.789508px;}
.fs18{font-size:35.035262px;}
.fs31{font-size:35.125404px;}
.fs15{font-size:35.374665px;}
.fs1c{font-size:35.826147px;}
.fs27{font-size:36.046323px;}
.fs33{font-size:37.406207px;}
.fs1f{font-size:38.115233px;}
.fs1e{font-size:38.115770px;}
.fs4{font-size:38.880000px;}
.fs14{font-size:42.176732px;}
.fs11{font-size:42.178513px;}
.fs0{font-size:48.240000px;}
.fs38{font-size:53.419800px;}
.fs3{font-size:54.000000px;}
.fs3f{font-size:57.573072px;}
.fs23{font-size:58.403030px;}
.fs41{font-size:58.469028px;}
.fsa{font-size:58.529876px;}
.fs8{font-size:58.737196px;}
.fs3c{font-size:59.353977px;}
.fse{font-size:59.673687px;}
.fs3a{font-size:59.733192px;}
.fs2{font-size:59.760000px;}
.fs17{font-size:60.010509px;}
.fs32{font-size:60.127819px;}
.fs16{font-size:60.626894px;}
.fs1d{font-size:61.327355px;}
.fs28{font-size:61.707213px;}
.fs24{font-size:62.549803px;}
.fs2d{font-size:64.896655px;}
.fs37{font-size:70.526400px;}
.fs2a{font-size:70.590450px;}
.fs2c{font-size:70.801077px;}
.fs13{font-size:72.284621px;}
.fs10{font-size:72.287673px;}
.fs36{font-size:73.042200px;}
.fs40{font-size:77.207214px;}
.fs43{font-size:77.760000px;}
.fs3b{font-size:78.360876px;}
.fs2f{font-size:79.763684px;}
.fs20{font-size:80.157496px;}
.fs9{font-size:80.375835px;}
.fs5{font-size:80.616135px;}
.fs1a{font-size:81.354951px;}
.fs26{font-size:81.502030px;}
.fsb{font-size:81.901459px;}
.fs2e{font-size:82.692224px;}
.fs19{font-size:83.844087px;}
.fs25{font-size:84.436044px;}
.fs3d{font-size:86.705212px;}
.fs21{font-size:87.604544px;}
.fs6{font-size:88.105794px;}
.fsc{font-size:89.510531px;}
.fs39{font-size:89.955512px;}
.fs30{font-size:90.252740px;}
.fs1b{font-size:92.053261px;}
.fs34{font-size:96.520050px;}
.fs29{font-size:96.797550px;}
.fs35{font-size:96.808045px;}
.fs2b{font-size:97.086373px;}
.fsf{font-size:98.840705px;}
.fs12{font-size:99.120691px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y120{bottom:2.502486px;}
.yfe{bottom:2.983680px;}
.y14a{bottom:3.075338px;}
.yeb{bottom:3.142247px;}
.y1a1{bottom:3.203091px;}
.y13c{bottom:3.266992px;}
.ybf{bottom:3.593085px;}
.y1f3{bottom:3.737670px;}
.y14d{bottom:3.814602px;}
.yb3{bottom:4.342004px;}
.y1f7{bottom:4.953896px;}
.y151{bottom:5.529694px;}
.y1d7{bottom:5.538750px;}
.y1d5{bottom:5.565000px;}
.y1d6{bottom:5.617500px;}
.yef{bottom:5.831285px;}
.y142{bottom:5.942814px;}
.y1e4{bottom:6.154026px;}
.y1e3{bottom:6.241524px;}
.y121{bottom:6.286006px;}
.y157{bottom:6.479282px;}
.y158{bottom:6.509844px;}
.y164{bottom:6.702362px;}
.y1e5{bottom:6.854010px;}
.yb6{bottom:6.988841px;}
.yc2{bottom:7.097086px;}
.ybe{bottom:7.126781px;}
.y15f{bottom:7.319062px;}
.y162{bottom:7.340901px;}
.y15e{bottom:7.353750px;}
.y161{bottom:7.375692px;}
.y12d{bottom:7.490064px;}
.yfd{bottom:7.494720px;}
.yf5{bottom:7.495036px;}
.yfc{bottom:7.530240px;}
.yf4{bottom:7.530558px;}
.y16e{bottom:7.560000px;}
.y1f2{bottom:8.157614px;}
.y1de{bottom:8.715241px;}
.y1dd{bottom:8.774528px;}
.y1ea{bottom:9.648121px;}
.y20b{bottom:12.420000px;}
.y93{bottom:12.780000px;}
.y1b7{bottom:13.140000px;}
.y149{bottom:13.661597px;}
.yee{bottom:13.686903px;}
.yea{bottom:13.958828px;}
.y96{bottom:14.040000px;}
.y19f{bottom:14.093602px;}
.y1f9{bottom:14.327736px;}
.y13a{bottom:14.374766px;}
.y20e{bottom:14.385000px;}
.y159{bottom:14.486696px;}
.y103{bottom:14.565000px;}
.yb1{bottom:14.959094px;}
.yc0{bottom:15.797698px;}
.y14c{bottom:15.849818px;}
.y1ec{bottom:16.041801px;}
.y1f4{bottom:16.967836px;}
.y14f{bottom:17.032640px;}
.y148{bottom:17.062210px;}
.yf0{bottom:17.403214px;}
.ye9{bottom:17.433428px;}
.y1a3{bottom:17.571243px;}
.y19e{bottom:17.632255px;}
.y13e{bottom:17.921786px;}
.y138{bottom:17.952900px;}
.y139{bottom:17.984014px;}
.yc4{bottom:18.321766px;}
.yb4{bottom:18.349426px;}
.ybd{bottom:18.351461px;}
.yb0{bottom:18.379165px;}
.y16d{bottom:18.900000px;}
.y1fa{bottom:19.459616px;}
.y1eb{bottom:19.497844px;}
.y1f6{bottom:19.578273px;}
.y1a4{bottom:22.391133px;}
.y141{bottom:22.837831px;}
.y20a{bottom:23.580000px;}
.y1b9{bottom:23.940000px;}
.yec{bottom:24.110703px;}
.y1b6{bottom:24.480000px;}
.y14e{bottom:25.223684px;}
.y20d{bottom:25.545000px;}
.y95{bottom:25.560000px;}
.y102{bottom:25.905000px;}
.y150{bottom:26.288224px;}
.yed{bottom:26.709099px;}
.y92{bottom:27.210000px;}
.yb5{bottom:27.449789px;}
.y140{bottom:27.504963px;}
.y99{bottom:27.885000px;}
.yc1{bottom:28.002310px;}
.y1fb{bottom:28.596144px;}
.y1f1{bottom:28.685136px;}
.y1f8{bottom:28.952112px;}
.yc3{bottom:29.071327px;}
.y1a2{bottom:29.437934px;}
.y13d{bottom:29.994100px;}
.y1f5{bottom:30.168338px;}
.y14b{bottom:31.877059px;}
.y1a0{bottom:32.854565px;}
.yb2{bottom:33.249040px;}
.y13b{bottom:33.510006px;}
.y1a5{bottom:35.111981px;}
.y13f{bottom:35.750229px;}
.y91{bottom:38.010000px;}
.y98{bottom:39.045000px;}
.y20c{bottom:173.385000px;}
.y101{bottom:176.085000px;}
.y97{bottom:185.445000px;}
.y36{bottom:186.870000px;}
.y1b4{bottom:187.410000px;}
.y198{bottom:188.310000px;}
.y24a{bottom:189.210000px;}
.y235{bottom:193.710000px;}
.y5f{bottom:198.390000px;}
.y16b{bottom:201.270000px;}
.y1b3{bottom:204.690000px;}
.y35{bottom:204.870000px;}
.y197{bottom:206.490000px;}
.y234{bottom:211.890000px;}
.y5e{bottom:214.770000px;}
.y12b{bottom:215.490000px;}
.y16a{bottom:219.270000px;}
.y1b2{bottom:221.970000px;}
.y34{bottom:223.050000px;}
.y249{bottom:223.770000px;}
.y196{bottom:224.490000px;}
.y233{bottom:229.890000px;}
.y5d{bottom:231.150000px;}
.y12a{bottom:232.770000px;}
.y169{bottom:237.450000px;}
.y1b1{bottom:239.250000px;}
.y33{bottom:241.050000px;}
.y195{bottom:242.670000px;}
.y5c{bottom:247.530000px;}
.y232{bottom:248.070000px;}
.y129{bottom:250.050000px;}
.y168{bottom:255.450000px;}
.y1b0{bottom:256.530000px;}
.y248{bottom:258.150000px;}
.y32{bottom:259.230000px;}
.y194{bottom:260.850000px;}
.y5b{bottom:263.910000px;}
.y231{bottom:266.250000px;}
.y128{bottom:267.330000px;}
.y167{bottom:273.630000px;}
.y247{bottom:275.430000px;}
.y31{bottom:277.410000px;}
.y193{bottom:278.850000px;}
.y5a{bottom:280.290000px;}
.y127{bottom:284.610000px;}
.y230{bottom:287.850000px;}
.y1af{bottom:290.910000px;}
.y166{bottom:291.810000px;}
.y246{bottom:292.710000px;}
.y30{bottom:295.410000px;}
.y59{bottom:296.670000px;}
.y192{bottom:297.030000px;}
.y126{bottom:301.890000px;}
.y1ae{bottom:308.190000px;}
.y165{bottom:309.810000px;}
.y245{bottom:309.990000px;}
.y2f{bottom:313.590000px;}
.y58{bottom:314.310000px;}
.y22f{bottom:315.030000px;}
.y191{bottom:315.210000px;}
.y125{bottom:318.990000px;}
.y160{bottom:323.355000px;}
.y1ad{bottom:325.470000px;}
.y244{bottom:327.270000px;}
.y163{bottom:330.870000px;}
.y2e{bottom:331.770000px;}
.y57{bottom:332.490000px;}
.y190{bottom:333.210000px;}
.y124{bottom:336.270000px;}
.y1ac{bottom:342.750000px;}
.y243{bottom:344.370000px;}
.y15d{bottom:348.405000px;}
.y2d{bottom:349.770000px;}
.y56{bottom:350.490000px;}
.y22e{bottom:351.210000px;}
.y123{bottom:353.550000px;}
.y18f{bottom:354.990000px;}
.y15c{bottom:355.890000px;}
.y1ab{bottom:356.280000px;}
.y242{bottom:361.650000px;}
.y1aa{bottom:363.810000px;}
.y2c{bottom:367.950000px;}
.y11f{bottom:367.980000px;}
.y55{bottom:368.670000px;}
.y22d{bottom:369.390000px;}
.y122{bottom:375.510000px;}
.y15b{bottom:377.130000px;}
.y241{bottom:378.930000px;}
.y1a9{bottom:381.180000px;}
.y18e{bottom:381.270000px;}
.y2b{bottom:385.950000px;}
.y54{bottom:386.670000px;}
.y22c{bottom:387.390000px;}
.y1a8{bottom:388.650000px;}
.y156{bottom:391.605000px;}
.y1d9{bottom:393.870000px;}
.y11e{bottom:394.050000px;}
.y240{bottom:396.210000px;}
.y18d{bottom:398.595000px;}
.y208{bottom:398.775000px;}
.y15a{bottom:399.135000px;}
.y2a{bottom:404.175000px;}
.y53{bottom:404.895000px;}
.y22b{bottom:405.615000px;}
.y1d4{bottom:408.330000px;}
.y1a7{bottom:409.935000px;}
.y11d{bottom:412.095000px;}
.y23f{bottom:413.535000px;}
.y94{bottom:413.715000px;}
.y18c{bottom:415.695000px;}
.y1d8{bottom:415.875000px;}
.y207{bottom:416.955000px;}
.y155{bottom:419.655000px;}
.y29{bottom:422.355000px;}
.y52{bottom:423.075000px;}
.y22a{bottom:423.795000px;}
.y19d{bottom:424.380000px;}
.y11c{bottom:430.275000px;}
.y23e{bottom:430.815000px;}
.ycc{bottom:431.355000px;}
.y18b{bottom:432.975000px;}
.y1d3{bottom:434.235000px;}
.y206{bottom:435.135000px;}
.y154{bottom:436.935000px;}
.y100{bottom:438.735000px;}
.y28{bottom:440.355000px;}
.y51{bottom:441.075000px;}
.y229{bottom:441.795000px;}
.y1a6{bottom:445.395000px;}
.y23d{bottom:447.915000px;}
.y11b{bottom:448.455000px;}
.ycb{bottom:449.535000px;}
.y18a{bottom:450.255000px;}
.y205{bottom:452.235000px;}
.y1d2{bottom:452.415000px;}
.y153{bottom:454.215000px;}
.yff{bottom:457.815000px;}
.y27{bottom:458.535000px;}
.y50{bottom:459.255000px;}
.y228{bottom:459.975000px;}
.y23c{bottom:465.195000px;}
.y11a{bottom:466.455000px;}
.y189{bottom:467.535000px;}
.yca{bottom:467.715000px;}
.y147{bottom:468.630000px;}
.y204{bottom:469.515000px;}
.y1d1{bottom:470.595000px;}
.yfb{bottom:472.380000px;}
.y19c{bottom:474.015000px;}
.y26{bottom:476.535000px;}
.y4f{bottom:477.255000px;}
.y227{bottom:478.155000px;}
.yfa{bottom:479.955000px;}
.y23b{bottom:482.475000px;}
.y119{bottom:484.635000px;}
.y188{bottom:484.815000px;}
.yc9{bottom:485.715000px;}
.y203{bottom:486.795000px;}
.y1d0{bottom:488.595000px;}
.y152{bottom:489.675000px;}
.y19b{bottom:492.015000px;}
.y25{bottom:494.715000px;}
.y4e{bottom:495.435000px;}
.y226{bottom:496.155000px;}
.y23a{bottom:499.755000px;}
.y187{bottom:502.095000px;}
.yf9{bottom:502.275000px;}
.y118{bottom:502.815000px;}
.yc8{bottom:503.895000px;}
.y202{bottom:504.075000px;}
.y1cf{bottom:506.775000px;}
.y19a{bottom:510.195000px;}
.y24{bottom:512.895000px;}
.y4d{bottom:513.615000px;}
.y225{bottom:514.335000px;}
.y239{bottom:517.035000px;}
.y186{bottom:519.195000px;}
.y117{bottom:520.815000px;}
.y201{bottom:521.355000px;}
.yf8{bottom:521.535000px;}
.yc7{bottom:521.895000px;}
.y1ce{bottom:524.775000px;}
.y145{bottom:528.030000px;}
.y199{bottom:528.375000px;}
.y4c{bottom:531.615000px;}
.y224{bottom:532.335000px;}
.y238{bottom:534.315000px;}
.y23{bottom:536.115000px;}
.y185{bottom:536.475000px;}
.y200{bottom:538.635000px;}
.yf7{bottom:538.815000px;}
.y116{bottom:538.995000px;}
.y1b8{bottom:541.875000px;}
.y1cd{bottom:546.555000px;}
.y146{bottom:549.075000px;}
.y4b{bottom:549.795000px;}
.y223{bottom:550.515000px;}
.y237{bottom:551.415000px;}
.y184{bottom:553.755000px;}
.y1ff{bottom:555.735000px;}
.yf6{bottom:556.095000px;}
.y115{bottom:556.995000px;}
.yc6{bottom:558.255000px;}
.y288{bottom:565.815000px;}
.y4a{bottom:567.975000px;}
.y222{bottom:568.695000px;}
.yf3{bottom:569.580000px;}
.y183{bottom:571.035000px;}
.ybc{bottom:572.655000px;}
.y1fe{bottom:573.015000px;}
.y22{bottom:573.555000px;}
.y1cc{bottom:573.735000px;}
.y236{bottom:574.635000px;}
.y114{bottom:575.175000px;}
.yf2{bottom:577.155000px;}
.y144{bottom:577.695000px;}
.y49{bottom:585.975000px;}
.y221{bottom:586.695000px;}
.y182{bottom:588.315000px;}
.y21{bottom:589.035000px;}
.y1fd{bottom:590.295000px;}
.y1cb{bottom:591.915000px;}
.y137{bottom:592.305000px;}
.y113{bottom:593.355000px;}
.yc5{bottom:595.155000px;}
.ye8{bottom:596.055000px;}
.y268{bottom:599.295000px;}
.y220{bottom:604.875000px;}
.y181{bottom:605.595000px;}
.y1fc{bottom:607.575000px;}
.y48{bottom:609.195000px;}
.y1ca{bottom:609.915000px;}
.y112{bottom:611.355000px;}
.y267{bottom:612.795000px;}
.y143{bottom:613.335000px;}
.yf1{bottom:617.115000px;}
.y20{bottom:619.635000px;}
.ybb{bottom:620.175000px;}
.y1f0{bottom:621.105000px;}
.y180{bottom:622.695000px;}
.y21f{bottom:622.875000px;}
.y90{bottom:626.295000px;}
.y1c9{bottom:628.095000px;}
.y111{bottom:629.535000px;}
.y287{bottom:630.255000px;}
.yb9{bottom:634.755000px;}
.y1f{bottom:635.115000px;}
.y47{bottom:639.435000px;}
.y17f{bottom:639.975000px;}
.y21e{bottom:641.055000px;}
.y8f{bottom:641.595000px;}
.ye7{bottom:642.855000px;}
.y286{bottom:643.575000px;}
.y266{bottom:643.755000px;}
.y1ef{bottom:645.015000px;}
.y1c8{bottom:646.125000px;}
.y110{bottom:647.745000px;}
.y1e{bottom:650.625000px;}
.y265{bottom:657.105000px;}
.yba{bottom:657.285000px;}
.y46{bottom:657.465000px;}
.y8e{bottom:658.365000px;}
.y21d{bottom:659.265000px;}
.y136{bottom:660.885000px;}
.ye6{bottom:661.065000px;}
.y1c7{bottom:664.305000px;}
.y10f{bottom:665.745000px;}
.y1d{bottom:666.105000px;}
.y264{bottom:670.605000px;}
.y1ee{bottom:671.145000px;}
.y17e{bottom:674.565000px;}
.y8d{bottom:674.745000px;}
.y45{bottom:675.645000px;}
.y21c{bottom:677.265000px;}
.ye5{bottom:679.065000px;}
.yb8{bottom:681.225000px;}
.y1c{bottom:681.765000px;}
.y1c6{bottom:682.485000px;}
.y10e{bottom:683.925000px;}
.y263{bottom:684.105000px;}
.y285{bottom:687.885000px;}
.y1ed{bottom:689.505000px;}
.y8c{bottom:691.125000px;}
.y17d{bottom:691.845000px;}
.y44{bottom:693.645000px;}
.y21b{bottom:695.445000px;}
.yaf{bottom:695.805000px;}
.y135{bottom:697.065000px;}
.y1b{bottom:697.245000px;}
.y1c5{bottom:700.485000px;}
.y284{bottom:701.385000px;}
.y262{bottom:701.565000px;}
.y1e9{bottom:703.905000px;}
.y10d{bottom:706.965000px;}
.y8b{bottom:707.505000px;}
.y17c{bottom:709.125000px;}
.y43{bottom:711.825000px;}
.y1a{bottom:712.725000px;}
.y21a{bottom:713.625000px;}
.y261{bottom:714.885000px;}
.y134{bottom:715.245000px;}
.ye4{bottom:715.425000px;}
.y1e8{bottom:715.965000px;}
.yb7{bottom:718.305000px;}
.y1c4{bottom:718.665000px;}
.y8a{bottom:723.885000px;}
.y10c{bottom:724.245000px;}
.y17b{bottom:726.225000px;}
.y19{bottom:728.205000px;}
.y42{bottom:730.005000px;}
.y219{bottom:731.625000px;}
.y283{bottom:731.985000px;}
.y260{bottom:732.345000px;}
.ye3{bottom:733.425000px;}
.y1c3{bottom:735.945000px;}
.y1e7{bottom:736.305000px;}
.y89{bottom:740.265000px;}
.yae{bottom:742.965000px;}
.y17a{bottom:743.505000px;}
.y18{bottom:743.865000px;}
.y282{bottom:745.485000px;}
.y25f{bottom:745.665000px;}
.y41{bottom:748.005000px;}
.y218{bottom:749.805000px;}
.y133{bottom:751.425000px;}
.ye2{bottom:751.605000px;}
.y1c2{bottom:753.045000px;}
.y10b{bottom:754.485000px;}
.y1e6{bottom:754.665000px;}
.y88{bottom:756.645000px;}
.y25e{bottom:759.165000px;}
.y17{bottom:759.345000px;}
.y179{bottom:760.785000px;}
.yad{bottom:761.145000px;}
.y281{bottom:762.945000px;}
.y40{bottom:766.185000px;}
.y217{bottom:767.805000px;}
.y1e2{bottom:769.080000px;}
.ye1{bottom:769.605000px;}
.y1c1{bottom:770.325000px;}
.y10a{bottom:772.665000px;}
.y87{bottom:773.025000px;}
.y16{bottom:774.825000px;}
.y280{bottom:776.265000px;}
.y1e1{bottom:776.625000px;}
.y178{bottom:778.065000px;}
.yac{bottom:779.145000px;}
.y3f{bottom:784.365000px;}
.y216{bottom:785.985000px;}
.y132{bottom:787.605000px;}
.ye0{bottom:787.785000px;}
.y27f{bottom:789.765000px;}
.y25d{bottom:789.945000px;}
.y15{bottom:790.305000px;}
.y86{bottom:790.665000px;}
.y1e0{bottom:794.265000px;}
.y177{bottom:795.345000px;}
.yab{bottom:797.325000px;}
.y3e{bottom:802.365000px;}
.y25c{bottom:803.445000px;}
.y215{bottom:804.165000px;}
.y1c0{bottom:804.885000px;}
.y14{bottom:805.785000px;}
.ydf{bottom:805.965000px;}
.y27e{bottom:807.225000px;}
.y85{bottom:808.665000px;}
.y109{bottom:808.845000px;}
.y176{bottom:812.445000px;}
.y1df{bottom:812.625000px;}
.yaa{bottom:815.505000px;}
.y25b{bottom:816.945000px;}
.y3d{bottom:820.545000px;}
.y13{bottom:821.445000px;}
.y1bf{bottom:822.165000px;}
.yde{bottom:823.965000px;}
.y84{bottom:826.845000px;}
.y1dc{bottom:826.980000px;}
.y175{bottom:829.725000px;}
.ya9{bottom:833.505000px;}
.y27d{bottom:834.045000px;}
.y25a{bottom:834.225000px;}
.y12{bottom:836.925000px;}
.y1db{bottom:837.465000px;}
.y3c{bottom:838.545000px;}
.y1be{bottom:839.445000px;}
.y214{bottom:840.345000px;}
.y131{bottom:841.965000px;}
.ydd{bottom:842.145000px;}
.y83{bottom:845.025000px;}
.y174{bottom:847.005000px;}
.y259{bottom:847.545000px;}
.y27c{bottom:851.505000px;}
.ya8{bottom:851.685000px;}
.y11{bottom:852.405000px;}
.y1da{bottom:855.465000px;}
.y1bd{bottom:856.545000px;}
.y3b{bottom:856.725000px;}
.y213{bottom:858.345000px;}
.y130{bottom:860.145000px;}
.ydc{bottom:860.325000px;}
.y258{bottom:861.045000px;}
.y82{bottom:863.025000px;}
.y108{bottom:863.205000px;}
.y173{bottom:864.285000px;}
.y27b{bottom:864.825000px;}
.y10{bottom:867.885000px;}
.ya7{bottom:869.685000px;}
.y1bc{bottom:873.825000px;}
.y3a{bottom:874.905000px;}
.y212{bottom:876.525000px;}
.ydb{bottom:878.325000px;}
.y257{bottom:878.505000px;}
.y107{bottom:881.205000px;}
.y172{bottom:882.465000px;}
.yf{bottom:883.545000px;}
.ya6{bottom:887.865000px;}
.y81{bottom:888.945000px;}
.y1bb{bottom:891.105000px;}
.y70{bottom:891.825000px;}
.y39{bottom:892.950000px;}
.y211{bottom:894.750000px;}
.yda{bottom:896.550000px;}
.ye{bottom:899.070000px;}
.y106{bottom:899.430000px;}
.y12f{bottom:899.970000px;}
.y171{bottom:900.510000px;}
.y80{bottom:905.370000px;}
.ya5{bottom:906.090000px;}
.y1ba{bottom:908.430000px;}
.y27a{bottom:909.330000px;}
.y6f{bottom:909.870000px;}
.y38{bottom:911.130000px;}
.y210{bottom:912.750000px;}
.yd{bottom:914.550000px;}
.y105{bottom:917.610000px;}
.y170{bottom:918.690000px;}
.y7f{bottom:921.750000px;}
.y209{bottom:921.930000px;}
.y279{bottom:922.650000px;}
.ya4{bottom:924.090000px;}
.y12c{bottom:927.105000px;}
.y12e{bottom:927.150000px;}
.y256{bottom:927.330000px;}
.y6e{bottom:928.050000px;}
.y37{bottom:929.130000px;}
.yc{bottom:930.030000px;}
.y20f{bottom:930.930000px;}
.yd9{bottom:932.730000px;}
.y104{bottom:935.610000px;}
.y278{bottom:936.150000px;}
.y16f{bottom:936.690000px;}
.y7e{bottom:938.130000px;}
.ya3{bottom:942.270000px;}
.y24b{bottom:944.430000px;}
.y6d{bottom:946.230000px;}
.y16c{bottom:949.290000px;}
.y1b5{bottom:950.550000px;}
.yd8{bottom:950.910000px;}
.y277{bottom:953.610000px;}
.y7d{bottom:954.510000px;}
.ya2{bottom:960.450000px;}
.y255{bottom:962.610000px;}
.yb{bottom:963.690000px;}
.y6c{bottom:964.230000px;}
.y276{bottom:966.930000px;}
.yd7{bottom:968.910000px;}
.y7c{bottom:970.890000px;}
.ya1{bottom:978.450000px;}
.y254{bottom:980.790000px;}
.ya{bottom:980.970000px;}
.y6b{bottom:982.410000px;}
.y275{bottom:984.210000px;}
.yd6{bottom:987.090000px;}
.y7b{bottom:987.270000px;}
.ya0{bottom:996.630000px;}
.y274{bottom:997.530000px;}
.y9{bottom:998.250000px;}
.y253{bottom:998.790000px;}
.y6a{bottom:1000.410000px;}
.y7a{bottom:1003.650000px;}
.yd5{bottom:1005.090000px;}
.y9f{bottom:1014.630000px;}
.y273{bottom:1014.990000px;}
.y8{bottom:1015.530000px;}
.y252{bottom:1016.970000px;}
.y69{bottom:1018.590000px;}
.y79{bottom:1020.030000px;}
.yd4{bottom:1026.870000px;}
.y272{bottom:1028.310000px;}
.y7{bottom:1032.630000px;}
.y9e{bottom:1032.810000px;}
.y251{bottom:1035.150000px;}
.y78{bottom:1036.590000px;}
.y68{bottom:1036.770000px;}
.yd3{bottom:1044.150000px;}
.y271{bottom:1045.770000px;}
.y6{bottom:1049.910000px;}
.y9d{bottom:1050.990000px;}
.y77{bottom:1052.970000px;}
.y250{bottom:1053.150000px;}
.y67{bottom:1058.550000px;}
.y270{bottom:1059.090000px;}
.y9c{bottom:1068.990000px;}
.y76{bottom:1069.350000px;}
.yd2{bottom:1070.430000px;}
.y24f{bottom:1071.330000px;}
.y26f{bottom:1072.590000px;}
.y5{bottom:1076.190000px;}
.y75{bottom:1085.730000px;}
.y9b{bottom:1087.170000px;}
.yd1{bottom:1087.710000px;}
.y24e{bottom:1089.330000px;}
.y26e{bottom:1090.050000px;}
.y66{bottom:1093.470000px;}
.y74{bottom:1102.110000px;}
.y26d{bottom:1103.370000px;}
.yd0{bottom:1104.990000px;}
.y4{bottom:1106.610000px;}
.y9a{bottom:1108.950000px;}
.y65{bottom:1109.850000px;}
.y26c{bottom:1116.870000px;}
.y73{bottom:1118.490000px;}
.ycf{bottom:1122.090000px;}
.y24d{bottom:1123.890000px;}
.y64{bottom:1126.230000px;}
.y26b{bottom:1134.330000px;}
.yce{bottom:1140.300000px;}
.y72{bottom:1141.020000px;}
.y24c{bottom:1141.200000px;}
.y63{bottom:1142.640000px;}
.y26a{bottom:1147.680000px;}
.y3{bottom:1148.040000px;}
.y71{bottom:1158.300000px;}
.ycd{bottom:1158.480000px;}
.y62{bottom:1159.020000px;}
.y269{bottom:1161.180000px;}
.y61{bottom:1183.860000px;}
.y2{bottom:1195.380000px;}
.y60{bottom:1197.720000px;}
.y1{bottom:1209.240000px;}
.h6d{height:18.900000px;}
.h74{height:20.999520px;}
.h33{height:21.449880px;}
.h5a{height:21.600030px;}
.h36{height:22.499796px;}
.h50{height:24.450120px;}
.h71{height:24.900688px;}
.h54{height:24.975000px;}
.h57{height:25.049520px;}
.h2d{height:25.574400px;}
.h2a{height:25.575480px;}
.h78{height:28.800360px;}
.h47{height:31.538292px;}
.h12{height:31.718746px;}
.h23{height:32.224462px;}
.h61{height:32.535591px;}
.h7a{height:32.998381px;}
.h3c{height:33.184669px;}
.h4d{height:33.400332px;}
.h4a{height:33.416957px;}
.h85{height:33.518320px;}
.h16{height:33.591439px;}
.h14{height:33.608160px;}
.h27{height:34.127013px;}
.h25{height:34.144000px;}
.h63{height:34.456512px;}
.h66{height:34.473663px;}
.h65{height:34.648229px;}
.h34{height:34.718300px;}
.h40{height:35.143911px;}
.h3e{height:35.161404px;}
.h43{height:35.304979px;}
.h42{height:35.305476px;}
.h53{height:35.377495px;}
.h30{height:41.373562px;}
.h44{height:41.398778px;}
.h9{height:41.522695px;}
.h20{height:42.299479px;}
.hf{height:42.825240px;}
.h19{height:43.948482px;}
.h5d{height:45.148334px;}
.h38{height:46.049033px;}
.h7b{height:46.275917px;}
.h2{height:47.344922px;}
.h84{height:49.583118px;}
.h70{height:52.428612px;}
.h6{height:52.971680px;}
.h83{height:53.156250px;}
.h48{height:54.096947px;}
.h7d{height:54.158079px;}
.h1c{height:54.214441px;}
.h5{height:54.421875px;}
.h77{height:55.423765px;}
.h62{height:55.694567px;}
.h4e{height:57.290863px;}
.h4b{height:57.319380px;}
.h7f{height:57.355604px;}
.h7e{height:57.384153px;}
.h1d{height:57.415293px;}
.h1e{height:57.443872px;}
.h17{height:57.618665px;}
.h15{height:57.647346px;}
.h4f{height:57.937976px;}
.h76{height:58.252682px;}
.h29{height:58.537323px;}
.h26{height:58.566461px;}
.h1f{height:58.621992px;}
.h73{height:58.624861px;}
.h4{height:58.651172px;}
.h37{height:58.897033px;}
.h64{height:58.982807px;}
.h67{height:59.012166px;}
.h35{height:59.501981px;}
.h8{height:59.614102px;}
.h41{height:60.159500px;}
.h3f{height:60.189445px;}
.h7{height:61.423863px;}
.h5b{height:63.660830px;}
.h6f{height:65.326455px;}
.he{height:65.518594px;}
.hd{height:65.698594px;}
.h6e{height:67.656764px;}
.h24{height:67.983583px;}
.h56{height:69.246198px;}
.h59{height:69.452814px;}
.h6a{height:69.487385px;}
.h31{height:70.908107px;}
.h2c{height:70.911101px;}
.h2f{height:70.943402px;}
.h7c{height:71.514690px;}
.h75{height:72.583291px;}
.h28{height:73.402569px;}
.h5f{height:73.882670px;}
.h45{height:74.247446px;}
.h1b{height:74.449687px;}
.h10{height:74.672270px;}
.h3a{height:75.356612px;}
.h52{height:75.492847px;}
.h21{height:75.862826px;}
.h5e{height:76.595288px;}
.h39{height:77.662224px;}
.h51{height:78.210535px;}
.h79{height:80.312396px;}
.h11{height:81.609712px;}
.h72{height:83.323050px;}
.h60{height:83.598363px;}
.h3b{height:85.266131px;}
.h68{height:89.403581px;}
.h55{height:89.660621px;}
.h69{height:89.670342px;}
.h58{height:89.928149px;}
.h2b{height:91.553134px;}
.h2e{height:91.812476px;}
.h4c{height:92.778007px;}
.h49{height:92.794632px;}
.h18{height:93.189898px;}
.h13{height:93.206619px;}
.h3d{height:97.514284px;}
.h46{height:104.400141px;}
.h22{height:106.671544px;}
.h1a{height:117.447932px;}
.h3{height:141.257812px;}
.h5c{height:207.570000px;}
.hb{height:207.885000px;}
.h32{height:209.880000px;}
.h81{height:213.660000px;}
.h6b{height:220.170000px;}
.hc{height:225.030000px;}
.h82{height:228.450000px;}
.h80{height:250.950000px;}
.ha{height:256.530000px;}
.h6c{height:408.675000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w14{width:16.950074px;}
.w13{width:32.775465px;}
.w11{width:35.474969px;}
.w12{width:39.450961px;}
.w9{width:52.575467px;}
.w18{width:55.800811px;}
.w17{width:65.550232px;}
.wb{width:68.551843px;}
.w5{width:129.978456px;}
.w7{width:143.480991px;}
.w1a{width:145.425935px;}
.w1c{width:152.693671px;}
.w1b{width:153.893569px;}
.w1d{width:180.603361px;}
.wc{width:182.320762px;}
.w6{width:186.146637px;}
.w8{width:188.997593px;}
.w10{width:197.254553px;}
.we{width:227.698733px;}
.w1e{width:233.707370px;}
.wd{width:239.918107px;}
.w16{width:308.184626px;}
.wf{width:319.637684px;}
.w19{width:409.605000px;}
.w2{width:439.305000px;}
.w3{width:775.035000px;}
.wa{width:777.735000px;}
.w4{width:778.455000px;}
.w15{width:778.635000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:3.286003px;}
.x7b{left:5.769339px;}
.x91{left:9.513671px;}
.x1e{left:11.542322px;}
.x3d{left:13.563125px;}
.x25{left:15.603700px;}
.x76{left:17.898898px;}
.x73{left:19.155745px;}
.x77{left:23.012452px;}
.x4c{left:26.748331px;}
.x34{left:28.696198px;}
.x41{left:30.961985px;}
.x3e{left:32.938881px;}
.x42{left:36.000065px;}
.x99{left:37.589426px;}
.x8c{left:38.767173px;}
.x5c{left:40.625620px;}
.x31{left:41.960911px;}
.x24{left:43.664352px;}
.x89{left:45.266357px;}
.x1a{left:46.804500px;}
.x18{left:50.044500px;}
.x7d{left:51.844500px;}
.x7e{left:53.763732px;}
.x5{left:55.080000px;}
.xa0{left:57.244500px;}
.x62{left:58.250049px;}
.x4b{left:61.092165px;}
.x1f{left:63.770760px;}
.x6f{left:65.364984px;}
.x22{left:66.749538px;}
.x4{left:69.840000px;}
.x20{left:73.247580px;}
.x11{left:75.600000px;}
.x7{left:78.480000px;}
.x9{left:82.080000px;}
.x3{left:83.520000px;}
.x39{left:85.831816px;}
.x3c{left:86.886110px;}
.x49{left:88.200000px;}
.x3a{left:92.188871px;}
.x30{left:93.192901px;}
.x3b{left:97.627671px;}
.x2e{left:100.140991px;}
.x97{left:101.756046px;}
.x21{left:103.136949px;}
.x33{left:106.017488px;}
.x32{left:109.097014px;}
.x36{left:114.477382px;}
.x35{left:117.286061px;}
.x23{left:118.300403px;}
.x27{left:120.249667px;}
.x52{left:121.316569px;}
.x2c{left:123.239052px;}
.x92{left:125.172366px;}
.x29{left:126.500322px;}
.x69{left:128.129966px;}
.x28{left:129.727607px;}
.x2b{left:131.833363px;}
.x5a{left:136.090566px;}
.x54{left:137.717957px;}
.x5d{left:139.220039px;}
.x9d{left:142.422305px;}
.x4d{left:144.936000px;}
.x5e{left:147.803489px;}
.x4f{left:151.713519px;}
.x55{left:152.757762px;}
.x81{left:154.863143px;}
.x50{left:157.978974px;}
.x2a{left:159.651362px;}
.xb{left:164.190000px;}
.x70{left:166.168553px;}
.x66{left:167.779845px;}
.x9b{left:170.604179px;}
.x98{left:173.417006px;}
.x2d{left:174.808997px;}
.x65{left:177.714089px;}
.xa{left:179.490000px;}
.x26{left:185.070000px;}
.x12{left:187.050000px;}
.x6{left:188.310000px;}
.x59{left:195.897183px;}
.x5f{left:197.229518px;}
.x37{left:198.570000px;}
.xa1{left:199.830000px;}
.x8{left:200.910000px;}
.x51{left:204.210438px;}
.x60{left:206.151967px;}
.x1d{left:207.390000px;}
.x58{left:209.553705px;}
.x53{left:213.595059px;}
.x57{left:215.900530px;}
.x4a{left:219.450000px;}
.x93{left:221.790000px;}
.x9c{left:223.089309px;}
.x56{left:226.261585px;}
.x6c{left:227.970473px;}
.x80{left:232.308120px;}
.x2f{left:241.230000px;}
.x68{left:242.245845px;}
.x19{left:253.330500px;}
.x84{left:259.870328px;}
.x64{left:261.978246px;}
.x7f{left:268.181889px;}
.x67{left:271.531450px;}
.x6b{left:275.001631px;}
.x6d{left:278.934503px;}
.x83{left:282.083644px;}
.x85{left:284.603924px;}
.x82{left:292.365849px;}
.x6a{left:294.271342px;}
.x63{left:311.173164px;}
.x90{left:442.365000px;}
.x8f{left:446.655000px;}
.x13{left:460.155000px;}
.x38{left:481.785000px;}
.x14{left:487.545000px;}
.x79{left:492.945000px;}
.xd{left:497.085000px;}
.xf{left:500.685000px;}
.x16{left:503.025000px;}
.x72{left:504.615000px;}
.x40{left:506.940000px;}
.x1{left:510.945000px;}
.x47{left:514.185000px;}
.x17{left:524.625000px;}
.x87{left:534.345000px;}
.x74{left:540.105000px;}
.x43{left:559.545000px;}
.x7a{left:561.690000px;}
.x7c{left:578.625000px;}
.xc{left:589.605000px;}
.x9f{left:591.585000px;}
.x10{left:598.065000px;}
.x15{left:603.465000px;}
.x8b{left:605.040000px;}
.xe{left:619.485000px;}
.x75{left:630.615000px;}
.x96{left:634.425000px;}
.x94{left:635.685000px;}
.x3f{left:649.185000px;}
.x95{left:659.805000px;}
.x8d{left:660.885000px;}
.x9a{left:662.325000px;}
.x4e{left:663.810000px;}
.x88{left:664.815000px;}
.x78{left:670.110000px;}
.x44{left:672.015000px;}
.x71{left:678.750000px;}
.x2{left:680.910000px;}
.x61{left:709.170000px;}
.x9e{left:715.470000px;}
.x5b{left:721.410000px;}
.x46{left:724.650000px;}
.x8a{left:730.410000px;}
.x86{left:768.390000px;}
.x48{left:771.625500px;}
.x1b{left:775.225500px;}
.x8e{left:778.105500px;}
.x1c{left:779.185500px;}
.x6e{left:801.150000px;}
@media print{
.v7{vertical-align:-64.640000pt;}
.v13{vertical-align:-56.322142pt;}
.v6{vertical-align:-39.909973pt;}
.v10{vertical-align:-28.688141pt;}
.v9{vertical-align:-23.848849pt;}
.v12{vertical-align:-22.937887pt;}
.vc{vertical-align:-16.039931pt;}
.vd{vertical-align:-13.263038pt;}
.v1{vertical-align:-8.320000pt;}
.v11{vertical-align:-2.488832pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:13.213551pt;}
.v4{vertical-align:20.619560pt;}
.v2{vertical-align:24.480000pt;}
.v5{vertical-align:38.220662pt;}
.v3{vertical-align:52.976408pt;}
.va{vertical-align:53.928478pt;}
.ve{vertical-align:55.424782pt;}
.vf{vertical-align:64.766087pt;}
.v8{vertical-align:66.175185pt;}
.ls2d{letter-spacing:-2.076350pt;}
.ls2e{letter-spacing:-2.076262pt;}
.ls2a{letter-spacing:-1.693534pt;}
.ls3f{letter-spacing:-1.612621pt;}
.ls2c{letter-spacing:-1.607112pt;}
.ls3b{letter-spacing:-1.208410pt;}
.ls3a{letter-spacing:-1.004172pt;}
.ls54{letter-spacing:-0.880000pt;}
.ls43{letter-spacing:-0.854700pt;}
.ls39{letter-spacing:-0.837333pt;}
.ls3e{letter-spacing:-0.778057pt;}
.ls3c{letter-spacing:-0.761123pt;}
.ls4c{letter-spacing:-0.721430pt;}
.ls24{letter-spacing:-0.597333pt;}
.ls4d{letter-spacing:-0.334136pt;}
.lse{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.239467pt;}
.ls2b{letter-spacing:-0.237348pt;}
.ls4b{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls27{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.094720pt;}
.ls25{letter-spacing:0.094933pt;}
.ls26{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls53{letter-spacing:0.279467pt;}
.ls42{letter-spacing:0.313245pt;}
.ls5{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.545280pt;}
.ls10{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.687360pt;}
.lsf{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.937568pt;}
.ls3d{letter-spacing:2.275224pt;}
.ls1a{letter-spacing:4.640000pt;}
.ls4{letter-spacing:6.560000pt;}
.ls4f{letter-spacing:7.632640pt;}
.ls19{letter-spacing:7.840000pt;}
.ls4e{letter-spacing:10.192640pt;}
.ls51{letter-spacing:13.039360pt;}
.ls44{letter-spacing:13.392640pt;}
.ls52{letter-spacing:13.600000pt;}
.ls41{letter-spacing:15.952640pt;}
.ls32{letter-spacing:16.059307pt;}
.ls33{letter-spacing:21.065842pt;}
.ls40{letter-spacing:23.840000pt;}
.ls1b{letter-spacing:24.413559pt;}
.ls50{letter-spacing:34.159360pt;}
.ls12{letter-spacing:35.152640pt;}
.ls21{letter-spacing:35.259307pt;}
.ls18{letter-spacing:46.032640pt;}
.ls13{letter-spacing:47.952640pt;}
.ls2f{letter-spacing:55.632640pt;}
.ls37{letter-spacing:56.480000pt;}
.ls7{letter-spacing:56.912640pt;}
.ls20{letter-spacing:63.520000pt;}
.ls23{letter-spacing:63.889133pt;}
.ls2{letter-spacing:65.232640pt;}
.ls45{letter-spacing:77.392640pt;}
.ls48{letter-spacing:95.494518pt;}
.ls1c{letter-spacing:120.380164pt;}
.ls22{letter-spacing:133.995080pt;}
.ls1e{letter-spacing:246.761332pt;}
.ls34{letter-spacing:340.000000pt;}
.ls47{letter-spacing:347.266498pt;}
.ls49{letter-spacing:350.582819pt;}
.ls46{letter-spacing:367.492940pt;}
.ls35{letter-spacing:383.520000pt;}
.ls38{letter-spacing:464.800000pt;}
.ls4a{letter-spacing:470.519259pt;}
.ls36{letter-spacing:502.614884pt;}
.ls31{letter-spacing:544.800000pt;}
.ls1d{letter-spacing:607.040000pt;}
.ls1f{letter-spacing:758.720000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws1e{word-spacing:-43.681139pt;}
.ws41{word-spacing:-30.524304pt;}
.ws4a{word-spacing:-30.113120pt;}
.ws2b{word-spacing:-29.585924pt;}
.ws54{word-spacing:-29.342376pt;}
.ws32{word-spacing:-29.285128pt;}
.ws26{word-spacing:-29.162880pt;}
.ws15{word-spacing:-22.598142pt;}
.ws17{word-spacing:-22.470955pt;}
.ws18{word-spacing:-22.466252pt;}
.ws12{word-spacing:-22.450942pt;}
.ws53{word-spacing:-17.454442pt;}
.ws1f{word-spacing:-16.977280pt;}
.ws8{word-spacing:-13.872000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.416533pt;}
.wsd{word-spacing:-13.374933pt;}
.ws2e{word-spacing:-13.335669pt;}
.ws1{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws64{word-spacing:-13.189773pt;}
.ws11{word-spacing:-13.185067pt;}
.ws1c{word-spacing:-13.096533pt;}
.ws5b{word-spacing:-13.049067pt;}
.ws6b{word-spacing:-12.993117pt;}
.ws3e{word-spacing:-12.978451pt;}
.ws47{word-spacing:-12.934657pt;}
.ws2f{word-spacing:-12.127259pt;}
.ws4{word-spacing:-12.016000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5f{word-spacing:-11.871067pt;}
.ws1d{word-spacing:-11.163353pt;}
.ws0{word-spacing:-11.040000pt;}
.ws6f{word-spacing:-10.999467pt;}
.ws7{word-spacing:-10.720000pt;}
.ws27{word-spacing:-10.586247pt;}
.ws6e{word-spacing:-10.400000pt;}
.ws28{word-spacing:-9.882667pt;}
.wsf{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.632320pt;}
.ws24{word-spacing:-7.772104pt;}
.ws5c{word-spacing:-6.648041pt;}
.ws4e{word-spacing:-6.580534pt;}
.ws56{word-spacing:-6.562745pt;}
.ws42{word-spacing:-6.515118pt;}
.ws44{word-spacing:-6.362513pt;}
.ws50{word-spacing:-6.236960pt;}
.ws35{word-spacing:-6.230924pt;}
.ws3c{word-spacing:-6.230327pt;}
.ws33{word-spacing:-6.200221pt;}
.ws3a{word-spacing:-6.194081pt;}
.ws4d{word-spacing:-5.702509pt;}
.ws4b{word-spacing:-5.188126pt;}
.ws38{word-spacing:-5.125608pt;}
.ws19{word-spacing:-0.989594pt;}
.ws25{word-spacing:-0.064256pt;}
.ws52{word-spacing:-0.063139pt;}
.ws4f{word-spacing:-0.062934pt;}
.ws4c{word-spacing:-0.062747pt;}
.ws37{word-spacing:-0.054513pt;}
.ws55{word-spacing:-0.053447pt;}
.ws23{word-spacing:-0.053043pt;}
.ws14{word-spacing:-0.052211pt;}
.ws1a{word-spacing:-0.052027pt;}
.ws6d{word-spacing:-0.051972pt;}
.ws40{word-spacing:-0.051914pt;}
.ws68{word-spacing:-0.051176pt;}
.ws21{word-spacing:-0.030924pt;}
.wsa{word-spacing:0.000000pt;}
.ws29{word-spacing:27.550120pt;}
.ws46{word-spacing:46.024689pt;}
.ws5a{word-spacing:55.202324pt;}
.ws58{word-spacing:55.838959pt;}
.ws51{word-spacing:56.099589pt;}
.ws34{word-spacing:57.664688pt;}
.ws65{word-spacing:66.285249pt;}
.ws59{word-spacing:67.539255pt;}
.ws62{word-spacing:67.605372pt;}
.ws39{word-spacing:83.367866pt;}
.ws31{word-spacing:92.343167pt;}
.ws45{word-spacing:92.457673pt;}
.ws43{word-spacing:92.614843pt;}
.ws13{word-spacing:95.604072pt;}
.ws6a{word-spacing:98.007624pt;}
.ws69{word-spacing:98.177123pt;}
.ws2a{word-spacing:109.682213pt;}
.ws20{word-spacing:116.134389pt;}
.ws57{word-spacing:132.338420pt;}
.ws5d{word-spacing:141.374904pt;}
.ws3b{word-spacing:157.754806pt;}
.ws63{word-spacing:175.944777pt;}
.ws66{word-spacing:210.293682pt;}
.ws5e{word-spacing:211.250088pt;}
.ws60{word-spacing:216.303329pt;}
.ws3f{word-spacing:226.383988pt;}
.ws36{word-spacing:235.154795pt;}
.ws16{word-spacing:270.728639pt;}
.ws2d{word-spacing:315.657792pt;}
.ws1b{word-spacing:320.350576pt;}
.ws48{word-spacing:325.634483pt;}
.ws49{word-spacing:330.288617pt;}
.ws30{word-spacing:339.995868pt;}
.ws61{word-spacing:346.929123pt;}
.ws67{word-spacing:366.768608pt;}
.ws3d{word-spacing:378.422395pt;}
.ws2c{word-spacing:422.432937pt;}
.ws22{word-spacing:474.787958pt;}
.ws6c{word-spacing:512.109697pt;}
._58{margin-left:-505.721822pt;}
._36{margin-left:-384.954180pt;}
._8d{margin-left:-335.042126pt;}
._5f{margin-left:-322.010076pt;}
._63{margin-left:-294.913353pt;}
._86{margin-left:-287.970576pt;}
._5e{margin-left:-277.795526pt;}
._47{margin-left:-271.699431pt;}
._7d{margin-left:-266.138728pt;}
._82{margin-left:-262.414346pt;}
._1f{margin-left:-260.969002pt;}
._26{margin-left:-256.413665pt;}
._7e{margin-left:-242.981455pt;}
._60{margin-left:-240.561251pt;}
._84{margin-left:-239.119964pt;}
._88{margin-left:-235.849824pt;}
._6e{margin-left:-232.439718pt;}
._89{margin-left:-230.620636pt;}
._7b{margin-left:-213.256620pt;}
._80{margin-left:-207.654638pt;}
._61{margin-left:-205.709507pt;}
._4b{margin-left:-203.647349pt;}
._71{margin-left:-198.009298pt;}
._53{margin-left:-192.383150pt;}
._49{margin-left:-186.111923pt;}
._3f{margin-left:-183.321932pt;}
._46{margin-left:-182.115749pt;}
._55{margin-left:-179.598458pt;}
._5b{margin-left:-176.772458pt;}
._44{margin-left:-173.598352pt;}
._48{margin-left:-172.110441pt;}
._73{margin-left:-165.702135pt;}
._52{margin-left:-163.721623pt;}
._50{margin-left:-151.157250pt;}
._4f{margin-left:-146.533427pt;}
._3d{margin-left:-145.236394pt;}
._2d{margin-left:-140.439530pt;}
._54{margin-left:-136.558297pt;}
._28{margin-left:-134.984547pt;}
._75{margin-left:-133.323915pt;}
._8b{margin-left:-130.909224pt;}
._2b{margin-left:-129.991141pt;}
._45{margin-left:-128.049518pt;}
._3b{margin-left:-121.118206pt;}
._43{margin-left:-117.607280pt;}
._40{margin-left:-112.779762pt;}
._4c{margin-left:-111.810566pt;}
._29{margin-left:-110.904623pt;}
._5a{margin-left:-103.965282pt;}
._27{margin-left:-101.908658pt;}
._77{margin-left:-94.645869pt;}
._65{margin-left:-91.467138pt;}
._2c{margin-left:-88.215424pt;}
._70{margin-left:-87.144860pt;}
._20{margin-left:-85.961918pt;}
._3a{margin-left:-85.043706pt;}
._64{margin-left:-83.207258pt;}
._76{margin-left:-81.357061pt;}
._4e{margin-left:-79.159580pt;}
._83{margin-left:-77.428542pt;}
._66{margin-left:-76.470680pt;}
._5c{margin-left:-75.490914pt;}
._6f{margin-left:-74.318273pt;}
._62{margin-left:-71.276712pt;}
._72{margin-left:-68.829971pt;}
._39{margin-left:-65.834580pt;}
._38{margin-left:-64.448880pt;}
._59{margin-left:-62.545536pt;}
._7a{margin-left:-61.571014pt;}
._87{margin-left:-60.336890pt;}
._6d{margin-left:-58.468347pt;}
._37{margin-left:-57.551999pt;}
._7c{margin-left:-55.711895pt;}
._35{margin-left:-51.613202pt;}
._21{margin-left:-49.815300pt;}
._2f{margin-left:-48.755232pt;}
._30{margin-left:-45.610316pt;}
._2e{margin-left:-40.655465pt;}
._4a{margin-left:-30.602670pt;}
._31{margin-left:-12.000000pt;}
._7f{margin-left:-3.557443pt;}
._8c{margin-left:-2.553053pt;}
._0{margin-left:-1.500800pt;}
._1{width:1.157760pt;}
._2{width:2.152107pt;}
._4{width:3.176747pt;}
._3{width:4.528000pt;}
._5{width:6.088747pt;}
._f{width:7.224320pt;}
._8{width:8.400000pt;}
._9{width:9.552000pt;}
._a{width:10.848000pt;}
._16{width:11.739520pt;}
._6{width:13.440000pt;}
._7{width:14.442240pt;}
._d{width:15.991040pt;}
._12{width:17.104640pt;}
._15{width:18.500907pt;}
._17{width:19.508267pt;}
._14{width:20.398080pt;}
._13{width:22.044800pt;}
._3e{width:23.014400pt;}
._10{width:23.904000pt;}
._b{width:25.495040pt;}
._c{width:26.794667pt;}
._11{width:28.523307pt;}
._1c{width:29.494187pt;}
._1a{width:30.385067pt;}
._19{width:31.287253pt;}
._32{width:33.751581pt;}
._4d{width:35.949963pt;}
._42{width:38.724053pt;}
._78{width:40.796160pt;}
._8f{width:46.267520pt;}
._68{width:47.522987pt;}
._67{width:48.959787pt;}
._6b{width:50.045183pt;}
._e{width:62.240000pt;}
._18{width:63.626667pt;}
._6a{width:98.020083pt;}
._24{width:101.493397pt;}
._23{width:106.933920pt;}
._1e{width:117.232053pt;}
._69{width:122.847924pt;}
._34{width:139.307993pt;}
._74{width:146.080000pt;}
._6c{width:154.315510pt;}
._56{width:183.875864pt;}
._51{width:213.181230pt;}
._5d{width:230.483348pt;}
._25{width:269.678568pt;}
._2a{width:276.779597pt;}
._1d{width:282.314242pt;}
._33{width:322.832345pt;}
._8e{width:334.240000pt;}
._79{width:350.681892pt;}
._8a{width:523.200000pt;}
._57{width:546.374241pt;}
._3c{width:596.800000pt;}
._81{width:617.920000pt;}
._85{width:622.400000pt;}
._1b{width:649.866667pt;}
._22{width:806.720000pt;}
._41{width:949.418667pt;}
.fs3e{font-size:29.886428pt;}
.fs42{font-size:30.255748pt;}
.fs22{font-size:30.265529pt;}
.fs7{font-size:30.438700pt;}
.fsd{font-size:30.924007pt;}
.fs18{font-size:31.142455pt;}
.fs31{font-size:31.222581pt;}
.fs15{font-size:31.444147pt;}
.fs1c{font-size:31.845464pt;}
.fs27{font-size:32.041176pt;}
.fs33{font-size:33.249961pt;}
.fs1f{font-size:33.880207pt;}
.fs1e{font-size:33.880684pt;}
.fs4{font-size:34.560000pt;}
.fs14{font-size:37.490429pt;}
.fs11{font-size:37.492012pt;}
.fs0{font-size:42.880000pt;}
.fs38{font-size:47.484267pt;}
.fs3{font-size:48.000000pt;}
.fs3f{font-size:51.176064pt;}
.fs23{font-size:51.913804pt;}
.fs41{font-size:51.972469pt;}
.fsa{font-size:52.026556pt;}
.fs8{font-size:52.210841pt;}
.fs3c{font-size:52.759090pt;}
.fse{font-size:53.043278pt;}
.fs3a{font-size:53.096171pt;}
.fs2{font-size:53.120000pt;}
.fs17{font-size:53.342675pt;}
.fs32{font-size:53.446950pt;}
.fs16{font-size:53.890573pt;}
.fs1d{font-size:54.513204pt;}
.fs28{font-size:54.850856pt;}
.fs24{font-size:55.599825pt;}
.fs2d{font-size:57.685915pt;}
.fs37{font-size:62.690133pt;}
.fs2a{font-size:62.747067pt;}
.fs2c{font-size:62.934290pt;}
.fs13{font-size:64.252996pt;}
.fs10{font-size:64.255710pt;}
.fs36{font-size:64.926400pt;}
.fs40{font-size:68.628635pt;}
.fs43{font-size:69.120000pt;}
.fs3b{font-size:69.654112pt;}
.fs2f{font-size:70.901052pt;}
.fs20{font-size:71.251107pt;}
.fs9{font-size:71.445187pt;}
.fs5{font-size:71.658787pt;}
.fs1a{font-size:72.315512pt;}
.fs26{font-size:72.446249pt;}
.fsb{font-size:72.801297pt;}
.fs2e{font-size:73.504199pt;}
.fs19{font-size:74.528078pt;}
.fs25{font-size:75.054262pt;}
.fs3d{font-size:77.071299pt;}
.fs21{font-size:77.870706pt;}
.fs6{font-size:78.316261pt;}
.fsc{font-size:79.564917pt;}
.fs39{font-size:79.960455pt;}
.fs30{font-size:80.224658pt;}
.fs1b{font-size:81.825121pt;}
.fs34{font-size:85.795600pt;}
.fs29{font-size:86.042267pt;}
.fs35{font-size:86.051596pt;}
.fs2b{font-size:86.298998pt;}
.fsf{font-size:87.858404pt;}
.fs12{font-size:88.107281pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y120{bottom:2.224432pt;}
.yfe{bottom:2.652160pt;}
.y14a{bottom:2.733634pt;}
.yeb{bottom:2.793108pt;}
.y1a1{bottom:2.847192pt;}
.y13c{bottom:2.903993pt;}
.ybf{bottom:3.193854pt;}
.y1f3{bottom:3.322374pt;}
.y14d{bottom:3.390757pt;}
.yb3{bottom:3.859559pt;}
.y1f7{bottom:4.403463pt;}
.y151{bottom:4.915283pt;}
.y1d7{bottom:4.923333pt;}
.y1d5{bottom:4.946667pt;}
.y1d6{bottom:4.993333pt;}
.yef{bottom:5.183365pt;}
.y142{bottom:5.282502pt;}
.y1e4{bottom:5.470245pt;}
.y1e3{bottom:5.548021pt;}
.y121{bottom:5.587561pt;}
.y157{bottom:5.759362pt;}
.y158{bottom:5.786528pt;}
.y164{bottom:5.957655pt;}
.y1e5{bottom:6.092453pt;}
.yb6{bottom:6.212303pt;}
.yc2{bottom:6.308521pt;}
.ybe{bottom:6.334916pt;}
.y15f{bottom:6.505833pt;}
.y162{bottom:6.525245pt;}
.y15e{bottom:6.536667pt;}
.y161{bottom:6.556171pt;}
.y12d{bottom:6.657834pt;}
.yfd{bottom:6.661973pt;}
.yf5{bottom:6.662255pt;}
.yfc{bottom:6.693547pt;}
.yf4{bottom:6.693829pt;}
.y16e{bottom:6.720000pt;}
.y1f2{bottom:7.251212pt;}
.y1de{bottom:7.746881pt;}
.y1dd{bottom:7.799580pt;}
.y1ea{bottom:8.576107pt;}
.y20b{bottom:11.040000pt;}
.y93{bottom:11.360000pt;}
.y1b7{bottom:11.680000pt;}
.y149{bottom:12.143641pt;}
.yee{bottom:12.166136pt;}
.yea{bottom:12.407847pt;}
.y96{bottom:12.480000pt;}
.y19f{bottom:12.527646pt;}
.y1f9{bottom:12.735765pt;}
.y13a{bottom:12.777569pt;}
.y20e{bottom:12.786667pt;}
.y159{bottom:12.877063pt;}
.y103{bottom:12.946667pt;}
.yb1{bottom:13.296973pt;}
.yc0{bottom:14.042398pt;}
.y14c{bottom:14.088727pt;}
.y1ec{bottom:14.259378pt;}
.y1f4{bottom:15.082521pt;}
.y14f{bottom:15.140124pt;}
.y148{bottom:15.166409pt;}
.yf0{bottom:15.469524pt;}
.ye9{bottom:15.496380pt;}
.y1a3{bottom:15.618883pt;}
.y19e{bottom:15.673115pt;}
.y13e{bottom:15.930476pt;}
.y138{bottom:15.958133pt;}
.y139{bottom:15.985790pt;}
.yc4{bottom:16.286014pt;}
.yb4{bottom:16.310601pt;}
.ybd{bottom:16.312410pt;}
.yb0{bottom:16.337036pt;}
.y16d{bottom:16.800000pt;}
.y1fa{bottom:17.297437pt;}
.y1eb{bottom:17.331417pt;}
.y1f6{bottom:17.402909pt;}
.y1a4{bottom:19.903230pt;}
.y141{bottom:20.300294pt;}
.y20a{bottom:20.960000pt;}
.y1b9{bottom:21.280000pt;}
.yec{bottom:21.431736pt;}
.y1b6{bottom:21.760000pt;}
.y14e{bottom:22.421052pt;}
.y20d{bottom:22.706667pt;}
.y95{bottom:22.720000pt;}
.y102{bottom:23.026667pt;}
.y150{bottom:23.367310pt;}
.yed{bottom:23.741422pt;}
.y92{bottom:24.186667pt;}
.yb5{bottom:24.399813pt;}
.y140{bottom:24.448856pt;}
.y99{bottom:24.786667pt;}
.yc1{bottom:24.890942pt;}
.y1fb{bottom:25.418794pt;}
.y1f1{bottom:25.497898pt;}
.y1f8{bottom:25.735211pt;}
.yc3{bottom:25.841180pt;}
.y1a2{bottom:26.167052pt;}
.y13d{bottom:26.661422pt;}
.y1f5{bottom:26.816301pt;}
.y14b{bottom:28.335163pt;}
.y1a0{bottom:29.204057pt;}
.yb2{bottom:29.554703pt;}
.y13b{bottom:29.786672pt;}
.y1a5{bottom:31.210650pt;}
.y13f{bottom:31.777981pt;}
.y91{bottom:33.786667pt;}
.y98{bottom:34.706667pt;}
.y20c{bottom:154.120000pt;}
.y101{bottom:156.520000pt;}
.y97{bottom:164.840000pt;}
.y36{bottom:166.106667pt;}
.y1b4{bottom:166.586667pt;}
.y198{bottom:167.386667pt;}
.y24a{bottom:168.186667pt;}
.y235{bottom:172.186667pt;}
.y5f{bottom:176.346667pt;}
.y16b{bottom:178.906667pt;}
.y1b3{bottom:181.946667pt;}
.y35{bottom:182.106667pt;}
.y197{bottom:183.546667pt;}
.y234{bottom:188.346667pt;}
.y5e{bottom:190.906667pt;}
.y12b{bottom:191.546667pt;}
.y16a{bottom:194.906667pt;}
.y1b2{bottom:197.306667pt;}
.y34{bottom:198.266667pt;}
.y249{bottom:198.906667pt;}
.y196{bottom:199.546667pt;}
.y233{bottom:204.346667pt;}
.y5d{bottom:205.466667pt;}
.y12a{bottom:206.906667pt;}
.y169{bottom:211.066667pt;}
.y1b1{bottom:212.666667pt;}
.y33{bottom:214.266667pt;}
.y195{bottom:215.706667pt;}
.y5c{bottom:220.026667pt;}
.y232{bottom:220.506667pt;}
.y129{bottom:222.266667pt;}
.y168{bottom:227.066667pt;}
.y1b0{bottom:228.026667pt;}
.y248{bottom:229.466667pt;}
.y32{bottom:230.426667pt;}
.y194{bottom:231.866667pt;}
.y5b{bottom:234.586667pt;}
.y231{bottom:236.666667pt;}
.y128{bottom:237.626667pt;}
.y167{bottom:243.226667pt;}
.y247{bottom:244.826667pt;}
.y31{bottom:246.586667pt;}
.y193{bottom:247.866667pt;}
.y5a{bottom:249.146667pt;}
.y127{bottom:252.986667pt;}
.y230{bottom:255.866667pt;}
.y1af{bottom:258.586667pt;}
.y166{bottom:259.386667pt;}
.y246{bottom:260.186667pt;}
.y30{bottom:262.586667pt;}
.y59{bottom:263.706667pt;}
.y192{bottom:264.026667pt;}
.y126{bottom:268.346667pt;}
.y1ae{bottom:273.946667pt;}
.y165{bottom:275.386667pt;}
.y245{bottom:275.546667pt;}
.y2f{bottom:278.746667pt;}
.y58{bottom:279.386667pt;}
.y22f{bottom:280.026667pt;}
.y191{bottom:280.186667pt;}
.y125{bottom:283.546667pt;}
.y160{bottom:287.426667pt;}
.y1ad{bottom:289.306667pt;}
.y244{bottom:290.906667pt;}
.y163{bottom:294.106667pt;}
.y2e{bottom:294.906667pt;}
.y57{bottom:295.546667pt;}
.y190{bottom:296.186667pt;}
.y124{bottom:298.906667pt;}
.y1ac{bottom:304.666667pt;}
.y243{bottom:306.106667pt;}
.y15d{bottom:309.693333pt;}
.y2d{bottom:310.906667pt;}
.y56{bottom:311.546667pt;}
.y22e{bottom:312.186667pt;}
.y123{bottom:314.266667pt;}
.y18f{bottom:315.546667pt;}
.y15c{bottom:316.346667pt;}
.y1ab{bottom:316.693333pt;}
.y242{bottom:321.466667pt;}
.y1aa{bottom:323.386667pt;}
.y2c{bottom:327.066667pt;}
.y11f{bottom:327.093333pt;}
.y55{bottom:327.706667pt;}
.y22d{bottom:328.346667pt;}
.y122{bottom:333.786667pt;}
.y15b{bottom:335.226667pt;}
.y241{bottom:336.826667pt;}
.y1a9{bottom:338.826667pt;}
.y18e{bottom:338.906667pt;}
.y2b{bottom:343.066667pt;}
.y54{bottom:343.706667pt;}
.y22c{bottom:344.346667pt;}
.y1a8{bottom:345.466667pt;}
.y156{bottom:348.093333pt;}
.y1d9{bottom:350.106667pt;}
.y11e{bottom:350.266667pt;}
.y240{bottom:352.186667pt;}
.y18d{bottom:354.306667pt;}
.y208{bottom:354.466667pt;}
.y15a{bottom:354.786667pt;}
.y2a{bottom:359.266667pt;}
.y53{bottom:359.906667pt;}
.y22b{bottom:360.546667pt;}
.y1d4{bottom:362.960000pt;}
.y1a7{bottom:364.386667pt;}
.y11d{bottom:366.306667pt;}
.y23f{bottom:367.586667pt;}
.y94{bottom:367.746667pt;}
.y18c{bottom:369.506667pt;}
.y1d8{bottom:369.666667pt;}
.y207{bottom:370.626667pt;}
.y155{bottom:373.026667pt;}
.y29{bottom:375.426667pt;}
.y52{bottom:376.066667pt;}
.y22a{bottom:376.706667pt;}
.y19d{bottom:377.226667pt;}
.y11c{bottom:382.466667pt;}
.y23e{bottom:382.946667pt;}
.ycc{bottom:383.426667pt;}
.y18b{bottom:384.866667pt;}
.y1d3{bottom:385.986667pt;}
.y206{bottom:386.786667pt;}
.y154{bottom:388.386667pt;}
.y100{bottom:389.986667pt;}
.y28{bottom:391.426667pt;}
.y51{bottom:392.066667pt;}
.y229{bottom:392.706667pt;}
.y1a6{bottom:395.906667pt;}
.y23d{bottom:398.146667pt;}
.y11b{bottom:398.626667pt;}
.ycb{bottom:399.586667pt;}
.y18a{bottom:400.226667pt;}
.y205{bottom:401.986667pt;}
.y1d2{bottom:402.146667pt;}
.y153{bottom:403.746667pt;}
.yff{bottom:406.946667pt;}
.y27{bottom:407.586667pt;}
.y50{bottom:408.226667pt;}
.y228{bottom:408.866667pt;}
.y23c{bottom:413.506667pt;}
.y11a{bottom:414.626667pt;}
.y189{bottom:415.586667pt;}
.yca{bottom:415.746667pt;}
.y147{bottom:416.560000pt;}
.y204{bottom:417.346667pt;}
.y1d1{bottom:418.306667pt;}
.yfb{bottom:419.893333pt;}
.y19c{bottom:421.346667pt;}
.y26{bottom:423.586667pt;}
.y4f{bottom:424.226667pt;}
.y227{bottom:425.026667pt;}
.yfa{bottom:426.626667pt;}
.y23b{bottom:428.866667pt;}
.y119{bottom:430.786667pt;}
.y188{bottom:430.946667pt;}
.yc9{bottom:431.746667pt;}
.y203{bottom:432.706667pt;}
.y1d0{bottom:434.306667pt;}
.y152{bottom:435.266667pt;}
.y19b{bottom:437.346667pt;}
.y25{bottom:439.746667pt;}
.y4e{bottom:440.386667pt;}
.y226{bottom:441.026667pt;}
.y23a{bottom:444.226667pt;}
.y187{bottom:446.306667pt;}
.yf9{bottom:446.466667pt;}
.y118{bottom:446.946667pt;}
.yc8{bottom:447.906667pt;}
.y202{bottom:448.066667pt;}
.y1cf{bottom:450.466667pt;}
.y19a{bottom:453.506667pt;}
.y24{bottom:455.906667pt;}
.y4d{bottom:456.546667pt;}
.y225{bottom:457.186667pt;}
.y239{bottom:459.586667pt;}
.y186{bottom:461.506667pt;}
.y117{bottom:462.946667pt;}
.y201{bottom:463.426667pt;}
.yf8{bottom:463.586667pt;}
.yc7{bottom:463.906667pt;}
.y1ce{bottom:466.466667pt;}
.y145{bottom:469.360000pt;}
.y199{bottom:469.666667pt;}
.y4c{bottom:472.546667pt;}
.y224{bottom:473.186667pt;}
.y238{bottom:474.946667pt;}
.y23{bottom:476.546667pt;}
.y185{bottom:476.866667pt;}
.y200{bottom:478.786667pt;}
.yf7{bottom:478.946667pt;}
.y116{bottom:479.106667pt;}
.y1b8{bottom:481.666667pt;}
.y1cd{bottom:485.826667pt;}
.y146{bottom:488.066667pt;}
.y4b{bottom:488.706667pt;}
.y223{bottom:489.346667pt;}
.y237{bottom:490.146667pt;}
.y184{bottom:492.226667pt;}
.y1ff{bottom:493.986667pt;}
.yf6{bottom:494.306667pt;}
.y115{bottom:495.106667pt;}
.yc6{bottom:496.226667pt;}
.y288{bottom:502.946667pt;}
.y4a{bottom:504.866667pt;}
.y222{bottom:505.506667pt;}
.yf3{bottom:506.293333pt;}
.y183{bottom:507.586667pt;}
.ybc{bottom:509.026667pt;}
.y1fe{bottom:509.346667pt;}
.y22{bottom:509.826667pt;}
.y1cc{bottom:509.986667pt;}
.y236{bottom:510.786667pt;}
.y114{bottom:511.266667pt;}
.yf2{bottom:513.026667pt;}
.y144{bottom:513.506667pt;}
.y49{bottom:520.866667pt;}
.y221{bottom:521.506667pt;}
.y182{bottom:522.946667pt;}
.y21{bottom:523.586667pt;}
.y1fd{bottom:524.706667pt;}
.y1cb{bottom:526.146667pt;}
.y137{bottom:526.493333pt;}
.y113{bottom:527.426667pt;}
.yc5{bottom:529.026667pt;}
.ye8{bottom:529.826667pt;}
.y268{bottom:532.706667pt;}
.y220{bottom:537.666667pt;}
.y181{bottom:538.306667pt;}
.y1fc{bottom:540.066667pt;}
.y48{bottom:541.506667pt;}
.y1ca{bottom:542.146667pt;}
.y112{bottom:543.426667pt;}
.y267{bottom:544.706667pt;}
.y143{bottom:545.186667pt;}
.yf1{bottom:548.546667pt;}
.y20{bottom:550.786667pt;}
.ybb{bottom:551.266667pt;}
.y1f0{bottom:552.093333pt;}
.y180{bottom:553.506667pt;}
.y21f{bottom:553.666667pt;}
.y90{bottom:556.706667pt;}
.y1c9{bottom:558.306667pt;}
.y111{bottom:559.586667pt;}
.y287{bottom:560.226667pt;}
.yb9{bottom:564.226667pt;}
.y1f{bottom:564.546667pt;}
.y47{bottom:568.386667pt;}
.y17f{bottom:568.866667pt;}
.y21e{bottom:569.826667pt;}
.y8f{bottom:570.306667pt;}
.ye7{bottom:571.426667pt;}
.y286{bottom:572.066667pt;}
.y266{bottom:572.226667pt;}
.y1ef{bottom:573.346667pt;}
.y1c8{bottom:574.333333pt;}
.y110{bottom:575.773333pt;}
.y1e{bottom:578.333333pt;}
.y265{bottom:584.093333pt;}
.yba{bottom:584.253333pt;}
.y46{bottom:584.413333pt;}
.y8e{bottom:585.213333pt;}
.y21d{bottom:586.013333pt;}
.y136{bottom:587.453333pt;}
.ye6{bottom:587.613333pt;}
.y1c7{bottom:590.493333pt;}
.y10f{bottom:591.773333pt;}
.y1d{bottom:592.093333pt;}
.y264{bottom:596.093333pt;}
.y1ee{bottom:596.573333pt;}
.y17e{bottom:599.613333pt;}
.y8d{bottom:599.773333pt;}
.y45{bottom:600.573333pt;}
.y21c{bottom:602.013333pt;}
.ye5{bottom:603.613333pt;}
.yb8{bottom:605.533333pt;}
.y1c{bottom:606.013333pt;}
.y1c6{bottom:606.653333pt;}
.y10e{bottom:607.933333pt;}
.y263{bottom:608.093333pt;}
.y285{bottom:611.453333pt;}
.y1ed{bottom:612.893333pt;}
.y8c{bottom:614.333333pt;}
.y17d{bottom:614.973333pt;}
.y44{bottom:616.573333pt;}
.y21b{bottom:618.173333pt;}
.yaf{bottom:618.493333pt;}
.y135{bottom:619.613333pt;}
.y1b{bottom:619.773333pt;}
.y1c5{bottom:622.653333pt;}
.y284{bottom:623.453333pt;}
.y262{bottom:623.613333pt;}
.y1e9{bottom:625.693333pt;}
.y10d{bottom:628.413333pt;}
.y8b{bottom:628.893333pt;}
.y17c{bottom:630.333333pt;}
.y43{bottom:632.733333pt;}
.y1a{bottom:633.533333pt;}
.y21a{bottom:634.333333pt;}
.y261{bottom:635.453333pt;}
.y134{bottom:635.773333pt;}
.ye4{bottom:635.933333pt;}
.y1e8{bottom:636.413333pt;}
.yb7{bottom:638.493333pt;}
.y1c4{bottom:638.813333pt;}
.y8a{bottom:643.453333pt;}
.y10c{bottom:643.773333pt;}
.y17b{bottom:645.533333pt;}
.y19{bottom:647.293333pt;}
.y42{bottom:648.893333pt;}
.y219{bottom:650.333333pt;}
.y283{bottom:650.653333pt;}
.y260{bottom:650.973333pt;}
.ye3{bottom:651.933333pt;}
.y1c3{bottom:654.173333pt;}
.y1e7{bottom:654.493333pt;}
.y89{bottom:658.013333pt;}
.yae{bottom:660.413333pt;}
.y17a{bottom:660.893333pt;}
.y18{bottom:661.213333pt;}
.y282{bottom:662.653333pt;}
.y25f{bottom:662.813333pt;}
.y41{bottom:664.893333pt;}
.y218{bottom:666.493333pt;}
.y133{bottom:667.933333pt;}
.ye2{bottom:668.093333pt;}
.y1c2{bottom:669.373333pt;}
.y10b{bottom:670.653333pt;}
.y1e6{bottom:670.813333pt;}
.y88{bottom:672.573333pt;}
.y25e{bottom:674.813333pt;}
.y17{bottom:674.973333pt;}
.y179{bottom:676.253333pt;}
.yad{bottom:676.573333pt;}
.y281{bottom:678.173333pt;}
.y40{bottom:681.053333pt;}
.y217{bottom:682.493333pt;}
.y1e2{bottom:683.626667pt;}
.ye1{bottom:684.093333pt;}
.y1c1{bottom:684.733333pt;}
.y10a{bottom:686.813333pt;}
.y87{bottom:687.133333pt;}
.y16{bottom:688.733333pt;}
.y280{bottom:690.013333pt;}
.y1e1{bottom:690.333333pt;}
.y178{bottom:691.613333pt;}
.yac{bottom:692.573333pt;}
.y3f{bottom:697.213333pt;}
.y216{bottom:698.653333pt;}
.y132{bottom:700.093333pt;}
.ye0{bottom:700.253333pt;}
.y27f{bottom:702.013333pt;}
.y25d{bottom:702.173333pt;}
.y15{bottom:702.493333pt;}
.y86{bottom:702.813333pt;}
.y1e0{bottom:706.013333pt;}
.y177{bottom:706.973333pt;}
.yab{bottom:708.733333pt;}
.y3e{bottom:713.213333pt;}
.y25c{bottom:714.173333pt;}
.y215{bottom:714.813333pt;}
.y1c0{bottom:715.453333pt;}
.y14{bottom:716.253333pt;}
.ydf{bottom:716.413333pt;}
.y27e{bottom:717.533333pt;}
.y85{bottom:718.813333pt;}
.y109{bottom:718.973333pt;}
.y176{bottom:722.173333pt;}
.y1df{bottom:722.333333pt;}
.yaa{bottom:724.893333pt;}
.y25b{bottom:726.173333pt;}
.y3d{bottom:729.373333pt;}
.y13{bottom:730.173333pt;}
.y1bf{bottom:730.813333pt;}
.yde{bottom:732.413333pt;}
.y84{bottom:734.973333pt;}
.y1dc{bottom:735.093333pt;}
.y175{bottom:737.533333pt;}
.ya9{bottom:740.893333pt;}
.y27d{bottom:741.373333pt;}
.y25a{bottom:741.533333pt;}
.y12{bottom:743.933333pt;}
.y1db{bottom:744.413333pt;}
.y3c{bottom:745.373333pt;}
.y1be{bottom:746.173333pt;}
.y214{bottom:746.973333pt;}
.y131{bottom:748.413333pt;}
.ydd{bottom:748.573333pt;}
.y83{bottom:751.133333pt;}
.y174{bottom:752.893333pt;}
.y259{bottom:753.373333pt;}
.y27c{bottom:756.893333pt;}
.ya8{bottom:757.053333pt;}
.y11{bottom:757.693333pt;}
.y1da{bottom:760.413333pt;}
.y1bd{bottom:761.373333pt;}
.y3b{bottom:761.533333pt;}
.y213{bottom:762.973333pt;}
.y130{bottom:764.573333pt;}
.ydc{bottom:764.733333pt;}
.y258{bottom:765.373333pt;}
.y82{bottom:767.133333pt;}
.y108{bottom:767.293333pt;}
.y173{bottom:768.253333pt;}
.y27b{bottom:768.733333pt;}
.y10{bottom:771.453333pt;}
.ya7{bottom:773.053333pt;}
.y1bc{bottom:776.733333pt;}
.y3a{bottom:777.693333pt;}
.y212{bottom:779.133333pt;}
.ydb{bottom:780.733333pt;}
.y257{bottom:780.893333pt;}
.y107{bottom:783.293333pt;}
.y172{bottom:784.413333pt;}
.yf{bottom:785.373333pt;}
.ya6{bottom:789.213333pt;}
.y81{bottom:790.173333pt;}
.y1bb{bottom:792.093333pt;}
.y70{bottom:792.733333pt;}
.y39{bottom:793.733333pt;}
.y211{bottom:795.333333pt;}
.yda{bottom:796.933333pt;}
.ye{bottom:799.173333pt;}
.y106{bottom:799.493333pt;}
.y12f{bottom:799.973333pt;}
.y171{bottom:800.453333pt;}
.y80{bottom:804.773333pt;}
.ya5{bottom:805.413333pt;}
.y1ba{bottom:807.493333pt;}
.y27a{bottom:808.293333pt;}
.y6f{bottom:808.773333pt;}
.y38{bottom:809.893333pt;}
.y210{bottom:811.333333pt;}
.yd{bottom:812.933333pt;}
.y105{bottom:815.653333pt;}
.y170{bottom:816.613333pt;}
.y7f{bottom:819.333333pt;}
.y209{bottom:819.493333pt;}
.y279{bottom:820.133333pt;}
.ya4{bottom:821.413333pt;}
.y12c{bottom:824.093333pt;}
.y12e{bottom:824.133333pt;}
.y256{bottom:824.293333pt;}
.y6e{bottom:824.933333pt;}
.y37{bottom:825.893333pt;}
.yc{bottom:826.693333pt;}
.y20f{bottom:827.493333pt;}
.yd9{bottom:829.093333pt;}
.y104{bottom:831.653333pt;}
.y278{bottom:832.133333pt;}
.y16f{bottom:832.613333pt;}
.y7e{bottom:833.893333pt;}
.ya3{bottom:837.573333pt;}
.y24b{bottom:839.493333pt;}
.y6d{bottom:841.093333pt;}
.y16c{bottom:843.813333pt;}
.y1b5{bottom:844.933333pt;}
.yd8{bottom:845.253333pt;}
.y277{bottom:847.653333pt;}
.y7d{bottom:848.453333pt;}
.ya2{bottom:853.733333pt;}
.y255{bottom:855.653333pt;}
.yb{bottom:856.613333pt;}
.y6c{bottom:857.093333pt;}
.y276{bottom:859.493333pt;}
.yd7{bottom:861.253333pt;}
.y7c{bottom:863.013333pt;}
.ya1{bottom:869.733333pt;}
.y254{bottom:871.813333pt;}
.ya{bottom:871.973333pt;}
.y6b{bottom:873.253333pt;}
.y275{bottom:874.853333pt;}
.yd6{bottom:877.413333pt;}
.y7b{bottom:877.573333pt;}
.ya0{bottom:885.893333pt;}
.y274{bottom:886.693333pt;}
.y9{bottom:887.333333pt;}
.y253{bottom:887.813333pt;}
.y6a{bottom:889.253333pt;}
.y7a{bottom:892.133333pt;}
.yd5{bottom:893.413333pt;}
.y9f{bottom:901.893333pt;}
.y273{bottom:902.213333pt;}
.y8{bottom:902.693333pt;}
.y252{bottom:903.973333pt;}
.y69{bottom:905.413333pt;}
.y79{bottom:906.693333pt;}
.yd4{bottom:912.773333pt;}
.y272{bottom:914.053333pt;}
.y7{bottom:917.893333pt;}
.y9e{bottom:918.053333pt;}
.y251{bottom:920.133333pt;}
.y78{bottom:921.413333pt;}
.y68{bottom:921.573333pt;}
.yd3{bottom:928.133333pt;}
.y271{bottom:929.573333pt;}
.y6{bottom:933.253333pt;}
.y9d{bottom:934.213333pt;}
.y77{bottom:935.973333pt;}
.y250{bottom:936.133333pt;}
.y67{bottom:940.933333pt;}
.y270{bottom:941.413333pt;}
.y9c{bottom:950.213333pt;}
.y76{bottom:950.533333pt;}
.yd2{bottom:951.493333pt;}
.y24f{bottom:952.293333pt;}
.y26f{bottom:953.413333pt;}
.y5{bottom:956.613333pt;}
.y75{bottom:965.093333pt;}
.y9b{bottom:966.373333pt;}
.yd1{bottom:966.853333pt;}
.y24e{bottom:968.293333pt;}
.y26e{bottom:968.933333pt;}
.y66{bottom:971.973333pt;}
.y74{bottom:979.653333pt;}
.y26d{bottom:980.773333pt;}
.yd0{bottom:982.213333pt;}
.y4{bottom:983.653333pt;}
.y9a{bottom:985.733333pt;}
.y65{bottom:986.533333pt;}
.y26c{bottom:992.773333pt;}
.y73{bottom:994.213333pt;}
.ycf{bottom:997.413333pt;}
.y24d{bottom:999.013333pt;}
.y64{bottom:1001.093333pt;}
.y26b{bottom:1008.293333pt;}
.yce{bottom:1013.600000pt;}
.y72{bottom:1014.240000pt;}
.y24c{bottom:1014.400000pt;}
.y63{bottom:1015.680000pt;}
.y26a{bottom:1020.160000pt;}
.y3{bottom:1020.480000pt;}
.y71{bottom:1029.600000pt;}
.ycd{bottom:1029.760000pt;}
.y62{bottom:1030.240000pt;}
.y269{bottom:1032.160000pt;}
.y61{bottom:1052.320000pt;}
.y2{bottom:1062.560000pt;}
.y60{bottom:1064.640000pt;}
.y1{bottom:1074.880000pt;}
.h6d{height:16.800000pt;}
.h74{height:18.666240pt;}
.h33{height:19.066560pt;}
.h5a{height:19.200027pt;}
.h36{height:19.999819pt;}
.h50{height:21.733440pt;}
.h71{height:22.133944pt;}
.h54{height:22.200000pt;}
.h57{height:22.266240pt;}
.h2d{height:22.732800pt;}
.h2a{height:22.733760pt;}
.h78{height:25.600320pt;}
.h47{height:28.034037pt;}
.h12{height:28.194441pt;}
.h23{height:28.643966pt;}
.h61{height:28.920526pt;}
.h7a{height:29.331895pt;}
.h3c{height:29.497483pt;}
.h4d{height:29.689184pt;}
.h4a{height:29.703962pt;}
.h85{height:29.794062pt;}
.h16{height:29.859057pt;}
.h14{height:29.873920pt;}
.h27{height:30.335123pt;}
.h25{height:30.350222pt;}
.h63{height:30.628011pt;}
.h66{height:30.643256pt;}
.h65{height:30.798426pt;}
.h34{height:30.860711pt;}
.h40{height:31.239032pt;}
.h3e{height:31.254582pt;}
.h43{height:31.382204pt;}
.h42{height:31.382646pt;}
.h53{height:31.446662pt;}
.h30{height:36.776500pt;}
.h44{height:36.798913pt;}
.h9{height:36.909063pt;}
.h20{height:37.599537pt;}
.hf{height:38.066880pt;}
.h19{height:39.065318pt;}
.h5d{height:40.131852pt;}
.h38{height:40.932474pt;}
.h7b{height:41.134148pt;}
.h2{height:42.084375pt;}
.h84{height:44.073883pt;}
.h70{height:46.603211pt;}
.h6{height:47.085938pt;}
.h83{height:47.250000pt;}
.h48{height:48.086175pt;}
.h7d{height:48.140515pt;}
.h1c{height:48.190614pt;}
.h5{height:48.375000pt;}
.h77{height:49.265569pt;}
.h62{height:49.506282pt;}
.h4e{height:50.925211pt;}
.h4b{height:50.950560pt;}
.h7f{height:50.982759pt;}
.h7e{height:51.008136pt;}
.h1d{height:51.035816pt;}
.h1e{height:51.061220pt;}
.h17{height:51.216591pt;}
.h15{height:51.242085pt;}
.h4f{height:51.500423pt;}
.h76{height:51.780162pt;}
.h29{height:52.033176pt;}
.h26{height:52.059076pt;}
.h1f{height:52.108438pt;}
.h73{height:52.110988pt;}
.h4{height:52.134375pt;}
.h37{height:52.352918pt;}
.h64{height:52.429162pt;}
.h67{height:52.455259pt;}
.h35{height:52.890650pt;}
.h8{height:52.990313pt;}
.h41{height:53.475111pt;}
.h3f{height:53.501729pt;}
.h7{height:54.598989pt;}
.h5b{height:56.587404pt;}
.h6f{height:58.067960pt;}
.he{height:58.238750pt;}
.hd{height:58.398750pt;}
.h6e{height:60.139346pt;}
.h24{height:60.429852pt;}
.h56{height:61.552176pt;}
.h59{height:61.735835pt;}
.h6a{height:61.766564pt;}
.h31{height:63.029428pt;}
.h2c{height:63.032090pt;}
.h2f{height:63.060802pt;}
.h7c{height:63.568614pt;}
.h75{height:64.518481pt;}
.h28{height:65.246728pt;}
.h5f{height:65.673484pt;}
.h45{height:65.997730pt;}
.h1b{height:66.177500pt;}
.h10{height:66.375351pt;}
.h3a{height:66.983655pt;}
.h52{height:67.104753pt;}
.h21{height:67.433623pt;}
.h5e{height:68.084700pt;}
.h39{height:69.033088pt;}
.h51{height:69.520476pt;}
.h79{height:71.388796pt;}
.h11{height:72.541966pt;}
.h72{height:74.064933pt;}
.h60{height:74.309656pt;}
.h3b{height:75.792116pt;}
.h68{height:79.469850pt;}
.h55{height:79.698330pt;}
.h69{height:79.706971pt;}
.h58{height:79.936133pt;}
.h2b{height:81.380563pt;}
.h2e{height:81.611090pt;}
.h4c{height:82.469339pt;}
.h49{height:82.484117pt;}
.h18{height:82.835465pt;}
.h13{height:82.850328pt;}
.h3d{height:86.679363pt;}
.h46{height:92.800125pt;}
.h22{height:94.819150pt;}
.h1a{height:104.398162pt;}
.h3{height:125.562500pt;}
.h5c{height:184.506667pt;}
.hb{height:184.786667pt;}
.h32{height:186.560000pt;}
.h81{height:189.920000pt;}
.h6b{height:195.706667pt;}
.hc{height:200.026667pt;}
.h82{height:203.066667pt;}
.h80{height:223.066667pt;}
.ha{height:228.026667pt;}
.h6c{height:363.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w14{width:15.066732pt;}
.w13{width:29.133746pt;}
.w11{width:31.533305pt;}
.w12{width:35.067521pt;}
.w9{width:46.733748pt;}
.w18{width:49.600721pt;}
.w17{width:58.266873pt;}
.wb{width:60.934971pt;}
.w5{width:115.536405pt;}
.w7{width:127.538659pt;}
.w1a{width:129.267498pt;}
.w1c{width:135.727707pt;}
.w1b{width:136.794283pt;}
.w1d{width:160.536321pt;}
.wc{width:162.062899pt;}
.w6{width:165.463677pt;}
.w8{width:167.997861pt;}
.w10{width:175.337381pt;}
.we{width:202.398873pt;}
.w1e{width:207.739884pt;}
.wd{width:213.260540pt;}
.w16{width:273.941890pt;}
.wf{width:284.122386pt;}
.w19{width:364.093333pt;}
.w2{width:390.493333pt;}
.w3{width:688.920000pt;}
.wa{width:691.320000pt;}
.w4{width:691.960000pt;}
.w15{width:692.120000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:2.920892pt;}
.x7b{left:5.128301pt;}
.x91{left:8.456596pt;}
.x1e{left:10.259842pt;}
.x3d{left:12.056111pt;}
.x25{left:13.869956pt;}
.x76{left:15.910132pt;}
.x73{left:17.027329pt;}
.x77{left:20.455512pt;}
.x4c{left:23.776294pt;}
.x34{left:25.507732pt;}
.x41{left:27.521764pt;}
.x3e{left:29.279005pt;}
.x42{left:32.000058pt;}
.x99{left:33.412823pt;}
.x8c{left:34.459709pt;}
.x5c{left:36.111662pt;}
.x31{left:37.298587pt;}
.x24{left:38.812757pt;}
.x89{left:40.236762pt;}
.x1a{left:41.604000pt;}
.x18{left:44.484000pt;}
.x7d{left:46.084000pt;}
.x7e{left:47.789984pt;}
.x5{left:48.960000pt;}
.xa0{left:50.884000pt;}
.x62{left:51.777821pt;}
.x4b{left:54.304147pt;}
.x1f{left:56.685120pt;}
.x6f{left:58.102208pt;}
.x22{left:59.332922pt;}
.x4{left:62.080000pt;}
.x20{left:65.108960pt;}
.x11{left:67.200000pt;}
.x7{left:69.760000pt;}
.x9{left:72.960000pt;}
.x3{left:74.240000pt;}
.x39{left:76.294947pt;}
.x3c{left:77.232098pt;}
.x49{left:78.400000pt;}
.x3a{left:81.945664pt;}
.x30{left:82.838134pt;}
.x3b{left:86.780152pt;}
.x2e{left:89.014214pt;}
.x97{left:90.449818pt;}
.x21{left:91.677288pt;}
.x33{left:94.237767pt;}
.x32{left:96.975124pt;}
.x36{left:101.757673pt;}
.x35{left:104.254277pt;}
.x23{left:105.155913pt;}
.x27{left:106.888593pt;}
.x52{left:107.836950pt;}
.x2c{left:109.545824pt;}
.x92{left:111.264325pt;}
.x29{left:112.444731pt;}
.x69{left:113.893303pt;}
.x28{left:115.313429pt;}
.x2b{left:117.185212pt;}
.x5a{left:120.969392pt;}
.x54{left:122.415962pt;}
.x5d{left:123.751145pt;}
.x9d{left:126.597605pt;}
.x4d{left:128.832000pt;}
.x5e{left:131.380879pt;}
.x4f{left:134.856461pt;}
.x55{left:135.784677pt;}
.x81{left:137.656127pt;}
.x50{left:140.425755pt;}
.x2a{left:141.912322pt;}
.xb{left:145.946667pt;}
.x70{left:147.705381pt;}
.x66{left:149.137640pt;}
.x9b{left:151.648159pt;}
.x98{left:154.148450pt;}
.x2d{left:155.385776pt;}
.x65{left:157.968079pt;}
.xa{left:159.546667pt;}
.x26{left:164.506667pt;}
.x12{left:166.266667pt;}
.x6{left:167.386667pt;}
.x59{left:174.130829pt;}
.x5f{left:175.315127pt;}
.x37{left:176.506667pt;}
.xa1{left:177.626667pt;}
.x8{left:178.586667pt;}
.x51{left:181.520389pt;}
.x60{left:183.246193pt;}
.x1d{left:184.346667pt;}
.x58{left:186.269960pt;}
.x53{left:189.862275pt;}
.x57{left:191.911582pt;}
.x4a{left:195.066667pt;}
.x93{left:197.146667pt;}
.x9c{left:198.301608pt;}
.x56{left:201.121409pt;}
.x6c{left:202.640421pt;}
.x80{left:206.496107pt;}
.x2f{left:214.426667pt;}
.x68{left:215.329640pt;}
.x19{left:225.182667pt;}
.x84{left:230.995847pt;}
.x64{left:232.869552pt;}
.x7f{left:238.383901pt;}
.x67{left:241.361289pt;}
.x6b{left:244.445894pt;}
.x6d{left:247.941780pt;}
.x83{left:250.741017pt;}
.x85{left:252.981266pt;}
.x82{left:259.880755pt;}
.x6a{left:261.574526pt;}
.x63{left:276.598368pt;}
.x90{left:393.213333pt;}
.x8f{left:397.026667pt;}
.x13{left:409.026667pt;}
.x38{left:428.253333pt;}
.x14{left:433.373333pt;}
.x79{left:438.173333pt;}
.xd{left:441.853333pt;}
.xf{left:445.053333pt;}
.x16{left:447.133333pt;}
.x72{left:448.546667pt;}
.x40{left:450.613333pt;}
.x1{left:454.173333pt;}
.x47{left:457.053333pt;}
.x17{left:466.333333pt;}
.x87{left:474.973333pt;}
.x74{left:480.093333pt;}
.x43{left:497.373333pt;}
.x7a{left:499.280000pt;}
.x7c{left:514.333333pt;}
.xc{left:524.093333pt;}
.x9f{left:525.853333pt;}
.x10{left:531.613333pt;}
.x15{left:536.413333pt;}
.x8b{left:537.813333pt;}
.xe{left:550.653333pt;}
.x75{left:560.546667pt;}
.x96{left:563.933333pt;}
.x94{left:565.053333pt;}
.x3f{left:577.053333pt;}
.x95{left:586.493333pt;}
.x8d{left:587.453333pt;}
.x9a{left:588.733333pt;}
.x4e{left:590.053333pt;}
.x88{left:590.946667pt;}
.x78{left:595.653333pt;}
.x44{left:597.346667pt;}
.x71{left:603.333333pt;}
.x2{left:605.253333pt;}
.x61{left:630.373333pt;}
.x9e{left:635.973333pt;}
.x5b{left:641.253333pt;}
.x46{left:644.133333pt;}
.x8a{left:649.253333pt;}
.x86{left:683.013333pt;}
.x48{left:685.889333pt;}
.x1b{left:689.089333pt;}
.x8e{left:691.649333pt;}
.x1c{left:692.609333pt;}
.x6e{left:712.133333pt;}
}




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